From owner-freebsd-ports Sun Oct 1 3:10: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3845D37B66C for ; Sun, 1 Oct 2000 03:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA31018; Sun, 1 Oct 2000 03:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from nodetree.net (nodetree.net [216.39.166.109]) by hub.freebsd.org (Postfix) with ESMTP id B376737B66C for ; Sun, 1 Oct 2000 03:08:18 -0700 (PDT) Received: (from brett@localhost) by nodetree.net (8.9.3/8.9.3) id DAA86653; Sun, 1 Oct 2000 03:07:23 -0700 (PDT) (envelope-from brett) Message-Id: <200010011007.DAA86653@nodetree.net> Date: Sun, 1 Oct 2000 03:07:23 -0700 (PDT) From: brett Reply-To: brett@nodetree.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21667: xbarcode port (shell archive) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21667 >Category: ports >Synopsis: new port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 03:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: brett >Release: FreeBSD 4.0-RELEASE i386 >Organization: Nodetree >Environment: >Description: New port # 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: # # xbarcode # xbarcode/files # xbarcode/files/md5 # xbarcode/Makefile # xbarcode/pkg # xbarcode/pkg/DESCR # xbarcode/pkg/PLIST # xbarcode/pkg/COMMENT # xbarcode/patches # xbarcode/patches/patch-aa # xbarcode/patches/patch-ab # echo c - xbarcode mkdir -p xbarcode > /dev/null 2>&1 echo c - xbarcode/files mkdir -p xbarcode/files > /dev/null 2>&1 echo x - xbarcode/files/md5 sed 's/^X//' >xbarcode/files/md5 << 'END-of-xbarcode/files/md5' XMD5 (xbarcode.zip) = 2c1ff32acbaf2369b90c2a4006048f51 END-of-xbarcode/files/md5 echo x - xbarcode/Makefile sed 's/^X//' >xbarcode/Makefile << 'END-of-xbarcode/Makefile' X# New ports collection makefile for: xbarcode X# Date created: 1 October 2000 X# Whom: brett X# X# $FreeBSD$ X# X XPORTNAME= xbarcode XPORTVERSION= 1.0 XCATEGORIES= x11 XMASTER_SITES= http://www.fmi.uni-passau.de/~laitenbe/ \ X http://www.nodetree.net/distfiles/ XDISTNAME= ${PORTNAME} X XMAINTAINER= brett@nodetree.net X XLIB_DEPENDS= xview.3:${PORTSDIR}/x11-toolkits/xview XRUN_DEPENDS= pnmfile:${PORTSDIR}/graphics/netpbm X XMAN1= XBarcode.1 XMLINKS= XBarcode.1 bar.1 XUSE_ZIP= yes XWRKSRC= ${WRKDIR}/XBarcode XALL_TARGET= XBarcode XUSE_XLIB= yes X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/XBarcode ${PREFIX}/bin X ${INSTALL_PROGRAM} ${WRKSRC}/bar ${PREFIX}/bin X ${INSTALL_MAN} ${WRKSRC}/XBarcode.1 ${MAN1PREFIX}/man/man1 X X.include END-of-xbarcode/Makefile echo c - xbarcode/pkg mkdir -p xbarcode/pkg > /dev/null 2>&1 echo x - xbarcode/pkg/DESCR sed 's/^X//' >xbarcode/pkg/DESCR << 'END-of-xbarcode/pkg/DESCR' XThis is a port of XBarcode, which will let you generate barcodes in a Xvariety of image formats. X XWWW: http://www.fmi.uni-passau.de/~laitenbe/download.shtml X X- brett Xbrett@nodetree.net END-of-xbarcode/pkg/DESCR echo x - xbarcode/pkg/PLIST sed 's/^X//' >xbarcode/pkg/PLIST << 'END-of-xbarcode/pkg/PLIST' Xbin/XBarcode Xbin/bar END-of-xbarcode/pkg/PLIST echo x - xbarcode/pkg/COMMENT sed 's/^X//' >xbarcode/pkg/COMMENT << 'END-of-xbarcode/pkg/COMMENT' XGenerate bar codes END-of-xbarcode/pkg/COMMENT echo c - xbarcode/patches mkdir -p xbarcode/patches > /dev/null 2>&1 echo x - xbarcode/patches/patch-aa sed 's/^X//' >xbarcode/patches/patch-aa << 'END-of-xbarcode/patches/patch-aa' X--- Makefile Tue Sep 13 19:15:08 1994 X+++ Makefile Sun Oct 1 02:21:12 2000 X@@ -4,13 +4,12 @@ X # X X OBJ = mainbarcode.o barcode.o fileio.o help.o X-OPTIONS = X-LIBPATH = /usr/openwin/lib # Pfad fuer XVIEW Library angeben !!! X+OPTIONS = -I${X11BASE}/include X+LIBPATH = ${X11BASE}/lib # Pfad fuer XVIEW Library angeben !!! X X XBarcode: $(OBJ) X gcc $(OPTIONS) bar.o fileio.o help.o barcode.o -o bar X gcc -o XBarcode $(OBJ) -lxview -lolgx -lX11 -L$(LIBPATH) X- cp XBarcode.1 /usr/man/cat1/XBarcode.1 X X mainbarcode.o: mainbarcode.c barcode.h german.h X gcc $(OPTIONS) -c mainbarcode.c END-of-xbarcode/patches/patch-aa echo x - xbarcode/patches/patch-ab sed 's/^X//' >xbarcode/patches/patch-ab << 'END-of-xbarcode/patches/patch-ab' X--- bar.c~ Tue Sep 13 18:25:32 1994 X+++ bar.c Sun Oct 1 02:35:31 2000 X@@ -40,6 +40,7 @@ X ywert=100; X xwert=100; X strcpy(Wert,""); X+ if(argc<2) { fprintf(stderr,"%s",ErrText4); exit(-1); } X if (strcmp(argv[1],"-HELP")==0) X { X help(); END-of-xbarcode/patches/patch-ab exit >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 3:29:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EC8EA37B503; Sun, 1 Oct 2000 03:29:10 -0700 (PDT) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA39905; Sun, 1 Oct 2000 03:29:10 -0700 (PDT) (envelope-from alex@FreeBSD.org) Date: Sun, 1 Oct 2000 03:29:10 -0700 (PDT) From: Message-Id: <200010011029.DAA39905@freefall.freebsd.org> To: brett@nodetree.net, alex@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21667: new port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port State-Changed-From-To: open->closed State-Changed-By: alex State-Changed-When: Sun Oct 1 03:26:36 PDT 2000 State-Changed-Why: The port is restricted, i.e. one cannot sell the software. I first have to contact the author to get the permission to put it on the CD's. In the meanwhil,ewhile, I'd like to ask you, if you can rename the tarball on your distfiles place to something beter, e.g. xbarcode-1.0.zip. (note that the version number is important). Please tell me iwhen you have done so. Thanks! (wow, my ssh connection to Freefall sucks :) http://www.freebsd.org/cgi/query-pr.cgi?pr=21667 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 3:29:47 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2BA5837B503; Sun, 1 Oct 2000 03:29:46 -0700 (PDT) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA40253; Sun, 1 Oct 2000 03:29:46 -0700 (PDT) (envelope-from alex@FreeBSD.org) Date: Sun, 1 Oct 2000 03:29:46 -0700 (PDT) From: Message-Id: <200010011029.DAA40253@freefall.freebsd.org> To: alex@FreeBSD.org, freebsd-ports@FreeBSD.org, alex@FreeBSD.org Subject: Re: ports/21667: new port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port Responsible-Changed-From-To: freebsd-ports->alex Responsible-Changed-By: alex Responsible-Changed-When: Sun Oct 1 03:29:20 PDT 2000 Responsible-Changed-Why: Hey, this is mine now! http://www.freebsd.org/cgi/query-pr.cgi?pr=21667 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 3:35: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from nodetree.net (nodetree.net [216.39.166.109]) by hub.freebsd.org (Postfix) with ESMTP id 1050137B66D; Sun, 1 Oct 2000 03:34:58 -0700 (PDT) Received: (from brett@localhost) by nodetree.net (8.9.3/8.9.3) id DAA86867; Sun, 1 Oct 2000 03:34:02 -0700 (PDT) (envelope-from brett@nodetree.net) X-Authentication-Warning: nodetree.net: brett set sender to brett@wasson.nodetree.net using -f MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14807.4890.353919.139554@wasson.nodetree.net> Date: Sun, 1 Oct 2000 03:34:02 -0700 From: Brett McCormick To: alex@FreeBSD.org Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21667: new port In-Reply-To: <200010011029.DAA39905@freefall.freebsd.org> References: <200010011029.DAA39905@freefall.freebsd.org> X-Mailer: VM 6.76 under Emacs 20.7.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sunday, 1 October 2000, at 03:29:10, alex@FreeBSD.org wrote: > The port is restricted, i.e. one cannot sell the software. > I first have to contact the author > to get the permission to put it on the CD's. Whoops, somehow I missed that. > > In the meanwhil,ewhile, I'd like to ask you, if you can rename the > tarball on your distfiles place to something beter, e.g. xbarcode-1.0.zip. > (note that the version number is important). Okay, done. Should I make it a tar file, or does anyone care about that? (Since I'm renaming it anyway... ;) --brett > > Please tell me iwhen you have done so. Thanks! > > (wow, my ssh connection to Freefall sucks :) > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=21667 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 3:39:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailout05.sul.t-online.com (mailout05.sul.t-online.com [194.25.134.82]) by hub.freebsd.org (Postfix) with ESMTP id 19A9137B503 for ; Sun, 1 Oct 2000 03:39:03 -0700 (PDT) Received: from fmrl02.sul.t-online.de by mailout05.sul.t-online.com with smtp id 13fgWA-0000Wl-00; Sun, 01 Oct 2000 12:38:50 +0200 Received: from neutron.cichlids.com (520050424122-0001@[62.225.195.108]) by fmrl02.sul.t-online.com with esmtp id 13fgW3-06SNCyC; Sun, 1 Oct 2000 12:38:43 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id 4E412AB91; Sun, 1 Oct 2000 12:39:26 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id 9408A14B0A; Sun, 1 Oct 2000 12:38:21 +0200 (CEST) Date: Sun, 1 Oct 2000 12:38:21 +0200 From: Alexander Langer To: Brett McCormick Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21667: new port Message-ID: <20001001123821.A2964@cichlids.cichlids.com> Mail-Followup-To: Alexander Langer , Brett McCormick , freebsd-ports@FreeBSD.org References: <200010011029.DAA39905@freefall.freebsd.org> <14807.4890.353919.139554@wasson.nodetree.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <14807.4890.353919.139554@wasson.nodetree.net>; from brett@nodetree.net on Sun, Oct 01, 2000 at 03:34:02AM -0700 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. X-Sender: 520050424122-0001@t-dialin.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Brett McCormick (brett@nodetree.net): > Okay, done. Should I make it a tar file, or does anyone care about > that? (Since I'm renaming it anyway... ;) Yes, could be cool. please write back if you've done it. make the name xbarcode-1.0.tar.gz then, please, and the subdir (where the src is in) xbarcode-1.0. I've contacted the author - the email address is invalid, so I'll makr the port as restricted so it won't be put on the CDs. Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 3:49:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from nodetree.net (nodetree.net [216.39.166.109]) by hub.freebsd.org (Postfix) with ESMTP id 85CFE37B503; Sun, 1 Oct 2000 03:49:21 -0700 (PDT) Received: (from brett@localhost) by nodetree.net (8.9.3/8.9.3) id DAA86947; Sun, 1 Oct 2000 03:48:22 -0700 (PDT) (envelope-from brett@nodetree.net) X-Authentication-Warning: nodetree.net: brett set sender to brett@wasson.nodetree.net using -f MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14807.5749.965379.629158@wasson.nodetree.net> Date: Sun, 1 Oct 2000 03:48:21 -0700 From: Brett McCormick To: Alexander Langer Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21667: new port In-Reply-To: <20001001123821.A2964@cichlids.cichlids.com> References: <200010011029.DAA39905@freefall.freebsd.org> <14807.4890.353919.139554@wasson.nodetree.net> <20001001123821.A2964@cichlids.cichlids.com> X-Mailer: VM 6.76 under Emacs 20.7.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sunday, 1 October 2000, at 12:38:21, Alexander Langer wrote: > Yes, could be cool. > > please write back if you've done it. > make the name xbarcode-1.0.tar.gz then, please, and the subdir (where > the src is in) xbarcode-1.0. Okay. One more thing -- the man page is pre-formatted, so I'm not sure if it should be installed normally or what.. thanks. --brett To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 4:28:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailout05.sul.t-online.com (mailout05.sul.t-online.com [194.25.134.82]) by hub.freebsd.org (Postfix) with ESMTP id C4DC037B502 for ; Sun, 1 Oct 2000 04:28:36 -0700 (PDT) Received: from fmrl03.sul.t-online.de by mailout05.sul.t-online.com with smtp id 13fhI3-0001k7-00; Sun, 01 Oct 2000 13:28:19 +0200 Received: from neutron.cichlids.com (520050424122-0001@[62.225.195.108]) by fmrl03.sul.t-online.com with esmtp id 13fhHs-0WlZKKC; Sun, 1 Oct 2000 13:28:08 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id A00FCAB91; Sun, 1 Oct 2000 13:28:51 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id A3B4114B09; Sun, 1 Oct 2000 13:27:54 +0200 (CEST) Date: Sun, 1 Oct 2000 13:27:54 +0200 From: Alexander Langer To: Brett McCormick Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21667: new port Message-ID: <20001001132754.A429@cichlids.cichlids.com> Mail-Followup-To: Alexander Langer , Brett McCormick , freebsd-ports@FreeBSD.org References: <200010011029.DAA39905@freefall.freebsd.org> <14807.4890.353919.139554@wasson.nodetree.net> <20001001123821.A2964@cichlids.cichlids.com> <14807.5749.965379.629158@wasson.nodetree.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <14807.5749.965379.629158@wasson.nodetree.net>; from brett@nodetree.net on Sun, Oct 01, 2000 at 03:48:21AM -0700 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. X-Sender: 520050424122-0001@t-dialin.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Brett McCormick (brett@nodetree.net): > Okay. One more thing -- the man page is pre-formatted, so I'm not > sure if it should be installed normally or what.. Well, just keep it :) Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 5:10: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 50BEA37B66D for ; Sun, 1 Oct 2000 05:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA88993; Sun, 1 Oct 2000 05:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from cartier.cirx.org (cartier.cirx.org [211.72.15.243]) by hub.freebsd.org (Postfix) with ESMTP id 7483F37B503 for ; Sun, 1 Oct 2000 05:02:00 -0700 (PDT) Received: (from clive@localhost) by cartier.cirx.org (8.11.0/8.11.0) id e91C1n042565; Sun, 1 Oct 2000 20:01:49 +0800 (CST) (envelope-from clive) Message-Id: <200010011201.e91C1n042565@cartier.cirx.org> Date: Sun, 1 Oct 2000 20:01:49 +0800 (CST) From: clive@CirX.ORG Reply-To: clive@CirX.ORG To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21668: update x11-wm/enlightenment to 0.16.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21668 >Category: ports >Synopsis: Update x11-wm/enlightenment >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 05:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Clive Lin >Release: FreeBSD 5.0-CURRENT i386 >Organization: This site doesnt' exist >Environment: Only tested on FreeBSD 5.0-CURRENT #0: Fri Sep 29 04:06:01 CST 2000 root@cartier.cirx.org:/home/nexus/obj/usr/local/src/sys/CARTIER >Description: Update Update x11-wm/enlightenment to 0.16.5. patches/patch-af deleted. >How-To-Repeat: Patch below. >Fix: begin 644 ediff.gz M'XL(")4FUSD``V5D:69F`-1=:7/;-K?^;/\*7#=M%BT6M9&RFTS=1$G]CI=> MVVGSSG1&I2A*9DV1*DG%<=/>WWX!;MH`$N>`[B29C"61.`_!YRP`#@_)B3.= MDD:PO""VYSJSV\CVYK87_=_AN7EG3QW7WMR>;]YO-!HBD;UK,R(GRQG1VO3_ M45L[ZAJDW6JU]FNUF@!O)3,@KDKU64^LWN_LUSM;>/GE]L*W3:'%T>$C_-C<.T_2#V>%B.3[49MQ+5+.2NAZZ9%+*R)$HW)'6N^HMZ8=C=0TIIG&^9L>>;8!T4@4T(S, MH#G[ZSEY22;]WD37[6Z[-;9TNSUHZT:OI?^1D$1"M133C M*(9(Y!OLX'GCN(^L'472]*-.+V]7XX"RQM?V@K3I"6E'/0K:RT]H'72K\_3$ M^TD[PGK?ZVE&7>N26O:%>2_)_C=LZ]8G3TQKY)$#RHEUYW@S,O4#,G']A>T1 MQR,-=^(>'#2;S;B==4"T5]_U,]&#O!]'O1XEG12!D%??,;^@**XS'GTT@Y>_ MQR`3]^GH:=KV;Q+:$_+TX=OF8:WQ[6BT&'W[]'-I4.#"# M!T9O9#H>VYQT;)>!%&63@>X6`V*\A(Q:^7F%MAE8MZ-$3'16-?$IB?I?X_6? MK\&DLS6"T%R-5*8Y0O^MG^4SRZ1]G3S?M$MBNR&+&(3U-C0_VJ.STQ^O7QX\ M81\'M#^"':21_&262LUU3M+MC5HL,%UZ5J:*7>%&C:.KEP>>3P]8RW!S2$(L M.M"^BGV8D=)D)V!_BLCWWP\OW]+=W[B.9Y->CXX**_4PN6\ M#(]2?R,)]SO,)Y$)T>=8Q0G_O0Z;(<6?_23,3AUZ1`:YB9B:SKH9LO..:8TW M;Y\\DXE/)3,+>^(DEBNR5W:40M-KU#+3ZW4V3(_N MX)M>[?`%N?QH!X%#=YG>`YE95IMV+[(#C[)&51#YTD\_T9W:R].MQQFV+^CC]G1A#4=SH=Q\E;M1X M/B@*"^]Z>]I^HHBA'_DP2)-29+(\IZ1"5__TU6W=X66!\.,[.*-[$SH+23 MHW@74T)\/K^:`9OM')'A^M0[.UH8NS,URF>3!\^<.Q9Q?7-B!\^S"=-!#D3C MQM@FX7*Q\(.(*HI.M1_\94`6KAG16#B/`^+!.7Y-IW^![R8SX0]1&'&FDYP)M=[:FHX5`*9FN0LR MT*`@N_,\MI/.]'8D!;/UZN9\#9DY7ZHFO9N,OX->DJ1HB*9Z#9(-F.R\R),/ M\>[X8##9WB*9M1'7L).IC9T*=T8NIZ[?Z&77;JF:C M!-D:)9+99:-HE#`&CS-*%!RSK[7^O1DMD9G1IN-23'5?2V:)_4XWHSH+)L5A MY'^7=O`P_$0#:4@C%#"2]#6=%P2$F*)@TN\8")SB>+(E_"6%E'Y;2Y35;?\K M(:7?[O%#2K_;_\I"2K_33JB+5T6KD+*I;5Q4Z7?Z_WY4Z>E?BWMFUQ$Z>U$@@)$83S1!V`43C2A.UDTV1']HF))/W4(HR,?2UB, MP,:2?E\02PS]:XLE>CIF#O(QLRUKAGR M\Q-J5W3M;'(=-]TG%53TULY:109:%%WT=AL/QPDS:0,6:O@X7U*\T5O)G%YO M]^7C37I:V)BCMP;\F*-W6E]9S-&U?D)?1\]C#E?IN,"CMQ]GD5(4>/2N]F4% MGHTIC)ZFSW6]NS:%R5->GY[8'DO;C/[R_7FSBI(#%P8H?6<2!0'DA*AD/XM00J`O*DCUDP66;@`66,DY MHF-47[#&THVO;8VEZ\F44A^LUE@BM2/#E/[OK[3TP9>\TC):1LRYT1XDG.]< M@LDO-Y"R-=C<#,/1GTO3BYS(L<.1/QV-V2;3M1-W?TM-;&9+Q29#VY[KR**+ M@I/1V2X&@"'N1J=D-PU.14!?4G@RTDF`L9H$E(:GY"0)-"P9[18_+!E=[2L+ M2T8[64(8W7P)4:!P7&`R.H\SERD*3$;O7RR5@`>F7C+?-_2^],*-HQ9J.+CX MT]O.Y$B""\./L7WQ"P0(BSX9SA<5?/K)A-@PNH\>?/JZ(/@8QM<6?-*K@,;J M*J!8W\C8HS].`JYT*::NR1+?&=%I?@3B5*?*<*);[3O9O;)?D/M3FB MD99QU&K1_Q1'STI\>QU2:]5;>8'OQ/\45UXWK:08EQ79LLK=3HM0V4[OJ-5; MJ_!=M=YJV&5MTX;L0,GUI/AOXM`O"'E]>7$Q?'US>GE!?CV]^8G<_#0DUY=O M;WX]N1J2RZOX]_OK^.LE_7Y%W@Q/SDXOWEV3TXN-QLT4,'8GYMR9JWY_;S%? M:=Z^8E5F]!MU6[*DRX*91Z,=\["DP2@ZWO!P>EJ)<\=;F;.3T6AX_F$T2LZF MK\5#3O*1!J@8;ON?Y45UXAPG#6+WWOSW(HS,@#9Y,74\)[RE7\*0_KE/J[`$ MJ/?6U)W5R7Q,/XZ3*C!>LVP_^QY&P=+::L+Z,[)<&B184=1JVW8?/7-N'V<- M,L(V^L/HBWGI:?4^Y:6GK?%"XN"2?#]D:F=#&YDOW<@9/T1)U#,M&B])TAC2ROM%!LBGQ'+HIM6IS2*QNXQW=AXQ;K/ M2H0NWI^=L2W4;)]G/?N<]3M>V_1[@ZS?>S0D/8O%[R,F_"P[[^>M6'IOU0WM M>.T\&[2?L1DFRE_KI;/V/=8Z2;N4=H'.7AAUNK[9!=?VR/>$'G1O[S-Q:K7C MN*+:\9;V<<;KG@RK*P83W*3WZ:E\3CYB;AF#FX9R;V5]'.AQ'P.TOZP#SV)V7A)O.7_.8O:S@HAZ-SO\^>ST^F8[U&7; MN3$TVPD*GKG0^@U!W:-.-Q=B/!B,!:/>;<4WGI"QXVW>0,/9U'0\JG3737F.0W>U[>.]W!N4X'#R/>I2A=A_J5I36?-/\R%Z=F49T64 MT7]^;B[_<,(J<.RE507,\/WK"F"@$$JL*I*YR2&Z[T@=J%&/8)S.PN*09"-) MWY$'\\Y%@%$O@E`#@"B`!R`KO#!G=I#\1>E@5QZJ`SX"@$`^`(!`+H"L,)VM M1?$?%'W;TE#R>/(`ZGCB`.(XXA!1-&,*9&'=7(UC/+T(9N?4D%7"*@<`S#0? M`L:X$$,1`:(!+H*T-)V?C^FR./W$*8.+`=:'$`5"IQ`$PJ@(1!9@ZEO+T'7" M:/4-1:P8!TIN,1*`X&(@`,F%0+(@=&7BVE&8?:)(YF-`"1:C`,@5@P"(%8+( M`DP-V\J\(`HMP M8%26(4F36@8D36\)$!1$B5U%2G'AH"H]J)$/91R1J!'*POC&)&D*A:79@B9H M-@21/*$IPAFC"J]82L%LHE(R1>)`=K'I&`D$)7EYUN&)F)5LEG)@&.'AV+3N MF@MO!A2&YG!*$(`*1.=O)"#DE8#*W>3BZ(1""0*,2GPR00)"FDI<(B$71Z<1 M2A!@5.)3"!(0TE3BT@>Y.#)Y4"@/HQ&;."@%D*90*6DP7D:1[X79)X)"/@*, M1#&&-(UB"&DBA1"2XI1_.V"*F,]]+_V)(;0`!TAK"9(\N25`\A07`\%`TD\% MBC<1<.3N8H!IW84`$[H#`1._NKPYN1F^43=:+A".6"$4F%\A$IAF$1(0I1*F M*V*Y&H:K85>9V9]/W@VO1E>G[WZZ46=8"(9CNA`.S'@A&ICY(C0,TMGP;64* MV,52X9^/AJ2?#X9DGPN&`*J(]\HHKXKMJHA6Y/A\>/%^]./EU9LJF!:"X?@N MA`.S7H@&YKX(#8;T[FHXO%#GG@.#8UT`!.9;@`-FFH\#PW@S?'OR_JR"&,X% MPO$LA`(S+40"^/P3*\M2=Q347CQIG90:1R M_P4$3DH34,`RAJ%X9;0#\=!8U:B@*N9!_B`/5`6,BL(4](0JPY`#0FL+5YPA MCX2A&EZRP4.9JU5O0"'1&B@#Q>BB#!.CE1),!;RJE%*=)I1CUR-HLC+U*>@, M438B`X/6&*:81!8'0S*TQ$2$H4YO%T%%FJE`*2KZ0-6K2"+A]8.M8H&! M506%TAN\S(4+@RU:D0?#:Q%=R@)#0]&/*G#A(2G=I00#1&M"[;XE.")&(_@[ MF7AHZ`HD>3"T-O!U23`TC!9PU4H\)'3ADCP86@/XGZ]2N8K8EQYF5&IQJK1E*R&W*5]'=FVTG.GRD'D-"0%4\JL%$HILS(H M0`050M5XA!EXB3A>&$XZF&OD;&A,FTHJ@#,.R;3+Q0&LH[*ZA=*RU,&SN!O2&+) MPO.$M$LE=M'$PCG%Y=Z+Y*$%3/?DCCR_"IDN7,,?&Z[!`+(K4(>6P)#GE-DSCJ7QV>J M2R"`?"IDI24PY/E$9J!S>6S>N1``R"4ZQUR*(,\C*I^<2ZMFD:6`@*PJ9XRE MD>195LH.[Z#`,Y,E$$B&$=E$"0PXJ]A,8B;/[E/"W6@DC85DN``-3G4!&)QS M,1@,2(%K)6J1*XD*3%Z%]C*6D]<3)5D'"68YS8O9%`@4,"B6`+47,L5O7]CV MSGX8.][$\>BTP?-G*9&H%&M%PN4,EDBC97H2TM%=CF*+2C*%8R:Y^\6;"NM4FMV^O4 M^_'[C@HP`C^ZO;==MQE%4WY#$0.PUI2O_0:"8(1,K$R,'#,>I!RRI[&'0`53 MCRRBGST\;[EHK,V.9)I;ONL'M"2ZOR#%[2C7JDS'VZM-0-M27?)6RL#VP!Z5ZHF33BBG44(K"^?3H3GV MEY%X!KC>DETYR>=^VJ`;3_YZO4'!Y&\WCT+'\EG@+[U)F#V`=^@YL[D9-BX_ MVEZCW?QC(>A*44X&+B$T,8G4#U).;'J2:2X%685>B\U3+J<(4LUA\CR?L^'U M]5IB$XBQ^P@5)$!JH7/SDS-W_K)'XUEN_^W6H*YIU/[[!LC^TR.3L$)5D[>/T0U+DK2`'\H MJO-10P#8?T'!DZ0"UO*?((G#\?THM10O(*?&*3_#2\I;LKCJ35$>8,W%%8"J&`"++BR)A"DC"[KQ M>Q)&$__>`T0T/LAR@8>P;FWK;N1/IWFT[G9;B67K79!E!^9L;`89[G*1>`YH M1LVI7,5+RINZN&!641Y@ZL7%PZH8`%,OK*:&*6,CA#)+QUG#+@QHDL*%80$] MZTUL](-.O=TB-:/=KFLM>:O?`H_\V(Z_`HP`*Y0?H]" M%3@`ERB]B0.JI-1:XM:@";P(8G0+<2S.32UX27D;$]]+HR@/L*WB^XI4,0`V M57BC%5`9V_$18PIJH9H+$T^:\P*:ME'7=1I@NWJ](ZYA*$.^\_SQZ".D9UMW MPR'%`%;.O_U.11ABW^+;#U4!5$\"XAS".T$EM9?>?@IL#E#RYOVM&"&(4G?O MW\4*8CL+4=[.K='R6EB]J32`^/BZY`QP675=D"Z*?/`QX7:&-#:\Q:F9G9KM M*5H1QY3DA.<;CT)`"87'?6`?DB'I MNBNY/!^]',\+*XKE,4:(W/8:V!81BO(8PZ_&!ZISA^H\HT(;%YJ[G,*2IQCA M+X9LR-\['IWD@Z7S9RCAI.1-B__()@59@!F)'U>E(@\P&>'SNN1(#UUG8OM+ M4/HTE\%)LR(W:'NPU/KSSQ`B\L;'>=`:5A!@=H('RZD(JW0<8*_\9_G!-+1V M[7@Y&;EF,+,!T8F/$LY-%Y+$X#[54$46;G+JME>-$59CC179E9J!15/?HW'M MH_.)KBF%=V3MR"4CY-R,K%N9>17GH:,G/UZ^OSD<3GQKO1:BWV[%Q<3&H"=Q M=8WW+-/=LN)H&?RY])W0'MT'CG?')ABE:^#BIZ2JR)9:O=0#6I41RJU>^J&U ME:!4IAHY]KM>+JR\'[:Y$]64!_LW5 MR<7UZ?!"OMY:[K'156`HN%UU[E>M&U;KCA6[4[5N!2SI!#X5'GV.J#)/Y&/P MJ\94,15\$2CN_0>*RLYRWZU&^707@%8EF-;(IT!ZMQT7&&FMEH:;`VUBQT*C M<=(.U6=@H:CDNS+`AH(J'@6^!*0J+(QWX4M+86]S02HO6SRR7S@SDBU;%JG/]&1J67G@FU6M&3@4!ES8*OTJ,K`A M((M=P6]:JPX-XSTJI;#0U^=A%9D72XTF.,OG`*F9YQI09^5$:6FLIG5TF=I8 M'GYD!_,\6X7J(JH^%O1:1;!1*-3,HMX@62TBQJM4*VHQKPO%*SB[I7V,\RX. M$,Z[P.6VTN]G!;.-+,$%OWZV.C2,F:H4Z$+?*8Q6I&KPYP`IFF<.Y&IY\!^T M]33X]S5<[G0+/G0EJG=_N&I@'I)4 MO6:!(,IH`)6;I>(X(P'6<$I!J)\*SAA@U<4"!-4UYT;A<)Q^_&A'CF6ZHUE@ M3APJK92/7(=?!/XLL,-PE-5$QV&Y:]2[<5C66W5M@(K+:\=874!6[[6*BRG[ M617.5I7'5>5VE;E-!;XS!Y2:EHICE+R#@-$R#P2E9BX01L\BH*I.#F4S.TC* M1J.Z).,AX2:]/*2.*E)EWE&IHU3M,X_A/H_A28_B"94YQ48Y-M8?_K^U,VEN MXTBB\%V_8B)\-&V1#8++;>@A1F($13I(>C2>2P<$019"`($``2W^]8->@*ZN M-=_+.EF2^WLHH#*[NS*SLGHB*U$OH+3*RU10-)F6^383[$,-R@@KS=,\XSM$ M];E4A?(3LB)=K$3Y!%>E[A$"*LYCM%;G4(U>MWRMDJS%8/>"711U\U?B!1NJ MUI@ M?X!HKVY,+HMS9?.RG.Z6V^]R.V!V!\KD25C!_YOQ\X_%]..TK?)_=W5SAUS? M%?%W7<:/+R^:4'MQ<7&4#.DSYQ])'^E4A,7(/B!E^0$F9>1A M+&G/$31ENG&4'W+2Q`.LP)IMDJC1=R3`ON("'K42OP1J-$$5V(;"2JA)A95@ M(_%+,39C]8&O>L+6/=)>X'M(4"J]5UXBM5R4W;%<)\7EH*GP.CTOTA5>(?WR M\>W5]:B\OG]_]_[JX;K\[?:/$6WZ;QY&H[ML-.PV'@'8:?P:N,L$=&"'">C@ M[N(18IREDCNS_*YJF460-V MCZ`,["0Q)=Q5HFJPPT35<+<)RC'.8XKY##:3&.%$'C'#L6M'.CT^;QWI_(QP MI/H3[NZ?;IYN^0<,=!9*DH8]B#@!1:B!>PUY[HE4!_<4[K23@,P^EE[%6,L/ M96O8$]RP8W*$T\7DMH:OG`^.BO.=KYQ5A>T MY)7@?,>CPCF07XCTHH`8YTH!,=*?/&JT4]5:.:SIX>;-6ZTYV1JD/7ED2(/R M*[$6%5`C32J@QMJ41XXWJEI,9U4/\H.=$BQL10X.6X]/`;<:KPIL+5X5W$H< M&<8Z*I$,RT2?#/%^:\GTEXC#B]/FS?9\P"P1#>W-X-/`O>(@`KA%2$EW#-"2H1W^*0H#VF%I"#ZO;%\7L1`^QV0'ETZG/AAF?VX3XJDN*)]=+RN?UQ`.S&A0 M0CZ700E@%KT:S/P==H\\E^/)9K:L3LN8CI^WJ_)YN5Z,T_63`L6J6\=Z_".C MXO3[;&/*-0^R\R:!5AP?(PFTUA.FB]4&J#+`^NR$,;'M,QUU4K#<[MG>.4D! MN7[0&,Q3&T7MEW"_G):(3R$X9*6^#$0+$% M<\UNTKCTS M),ED]:II_UI^G:XW\%,$;5@3`\6VSK6F2>-R6^>;T`@DY+9.MYMQ%#SG>N%& MX(H`]AX6Z2R^.#YI6@(6)P5B\9;VUWH+P!HV=K1!1PP4&SO7BB.-RXV=;[HA MD)`;.]U>PU6P32Q=OI[62->MIS4&AJ47ET?GE:$/!.=&QY6W*^WWVZZTWVZ[ M:KX;-M/[0[XF7^B/GRQWSS6:KH\1G,QGDR^"O>Y1$6L]M7L;;1JF%">GPW3# ME)#TRV2]G,_W3V]@A,@ND"`EOX?A_5`2+'#WXCJ?"'CE-P#N?%1CDPZ7M%IP MKI9/KKR50H`!)A-KE1#AR)$"DP8U4>AAYHVOV;+1G9&J%2G72[U0G7HP[F7# MRZJYR.Y>-H3N99[N)9(#'2T!V+HY$Z?M7&7L*HO7&2]KP0MY=X,`(YX7!Q-/ MC(^4SXR7%D]-B%:-73ZW#LY-+O=VYO+MVU6Y6*[31SE%=*8?9YOEVK@I75P< M%1?53:F*7,NK"EWE:M\@-3*=)^B=(HM_9'.5;%Z3SP%TOM!O9%&7MTZVZ_7N M4KFUA#7*#_,MX!!(.XP0)#8QO/%%')6;$]?B(H'+38=J9G&@Y9TG_(AX?FQ* M/#L>4#XW/E@\,P%8,W#YM-HT-:E[+ZZK.ZMU^NS3#R2*&A<"D@]QH:XXJ2BJ M,^:J:&IQ<0D$F1S]S72QFH\WT[+)*2-17Z8M2PK&W22#PV1RG4Q.E,L?=)XA M:FG3O_SURWAG2W7<;G?Q\Y=?OXV_,OAB]O(RFT]KO+'U89L&'DB.17G\/'O^ M4;=].-3TR.W3@+%"AAB8,NH$FS+H-)XT9H%$RI`%$DDC3F@(#-A4$)8UN(@& M]1_LL[M+#UL3/A6<4F+HB@_T,1FPB"&.`M;+%3)(!!`+YHL91"*(%=,%#1X- M^4$\$5C0"SE&=\?N%(/!26O1%X)3;DU1?0F#H886,<11P-:Y0@:)`&+K?#&# M2`2Q=;J@P:/1VL:OW[^N9A/I"0HRG70V5*9CY'M/+XHF7#6L?"(9KC+US4-S M)'UNPVRZLVV(?6D[DPKG.71*CPX'/(\_DTL1#BB$P-I'`APB'SB! MG57/]-W#_5(0:'/U*X^!AB7)B7NN1[Q"G@T/4I`78'GP*$F/%[)V*'MN@<%# M790:Y?.V,M,L4IOI=Z,&9'C>QM?.C@65N0']E\UXO=FN9'U['0W"Z%G+5YB_ MT@>4CJ"U:-ZL%_)DN)/E,K=)`<2`J>RMP5,I`%D6Q`8.B8S?IM-5E\4X*P9'@ZIJ^.ST M^.AD`-@J>)UV\(`(W5)P$B],&*D?@'`2(,"VB^!V+FK@-FYN.E] M@$&F&VMH'R6AB<:;U2=IU=BA^84;V7O@0_)^]Y>R.2[APPS*"T247A;C.?0P M]&I]GLY7E(C&@+66G,&D,]EV)B//9:U*L]U\VBVK7UZOEYO/WZ8[X]K]`\K^ M/5M_F4\1TCWLH7D,GYT>%>?U*V/[I^Y!/%].QO/IZ_7V]>V_RG>CQ\>K-Z/' M_@?]NEA:5[]\1:[>K.-7__+/C[/U>N']CJ-?/BXG+]%+)LOG3[._7J]FWR67 M5?6_VY7@RN@E[4_O.W"C/@F#A=U3+S(HT1+]]C#*\?3$M"K]!OJ9U+0RQOD4 M><;5"6J5S-:V6;2T(OO6ZWF&U*II9:HVUIE&5$GEF?[R_N[VSZP&52MJI1[? M7OU^Z"271TRK\N^;_XZNR\>;_XTR#:L3U"K9??&RZ>6PTS*_H=FR6KVF$6W. MNYBAJ)2B\5Y'*Z4*BV=YMNN>Z6W9HW8(E0A-V[V9M$)95%B\7\*F5*'QY>2+ M=@0["9KM5=PI55B\7TJE5*%QH^Y)I<'"74V,;A`''5:@WXQ"J4+C7?Y0(\&R M3G9)+\0JF.DHE08+VQN#U#JT@)E"48FPL!7/U,K0?!/Y(O%7/ZQ7+'+7],!8*,DC M`,3(O!]?G79$PO4R7+H*]_#08MG#RZ,3/OCFFAVWL8@F%<3+6P\+Q-1<&O4* MQK3E2SX3@A=H+HS^)%@DWB#%J02#D2Z:3`1>*[DP2%&OH5GNW.W;.T9!2X_0 M\Y!`009Z$0V^7A`LR!!OF[YW*`SS[VL"WQAZBVD"!>W.&O-FL4(_U/^E-:/@ M8'2RP*"%\SMC/Y-U!Z1@E*KNT]A/:<7U*!CU-?F"K*-$R[?Y=OJXF4Z!AUR' MC-"05I_$$#(E[^-!4)56CLAP/)%R#VEP\&$9H!H"M)AP\>J8S>J57C6&O0A' MPUDPOP*'/KZ[NKU5?7BMP*%4%C6LPN'_&3W\J?\5#BH_#,0Y_^778^HVU;#)J9=,KE?@"(3$P MC&7E4R@8I9H7(PRRDJ@\Y-HDX/DX&:-P[%F$I)3V-LZ1W?Q&H[? MAYPXNLU;L_`AXD8)H)1Q3\+(YL$`,9*K#S<;H-*F8_`Z&X>%(+C&ID]BA-V2 M>KW1B-[G02ZI^"@R$*K7?J@Q#AKBLX&L+, M=1/*84!_14B@$-.M6Q'*6IP3*,3@24D;Q9@J.@(!_<`/@4(,_J;IH%U8C*`Q M1OR.:B!U>!%!K.@I@6),/W/`H$X&1R5"T0_W3U=/H^O>RDFKHQ'(,`:.57XT M^;'-@K/9?:>=`EM+*Y)I+)+*C`!?9:1Z/TL&*:5&GI$H@A.]J5'*:/E,\98L M)NN)`&414\QTHZ*WF';9K1#(XD*Z"5)/"C7R.EYS=_]T\W2K^@5,'5Z@"8&H MQR$O@D^_<:A$*-IZT"LD-*SZUM5[X6$$VE!<^?CVZGI47M^_OWM_]:#Z6?R* ME,_A_`?7]+R)+?<'XU.=35'W97#\:[2`/RIL$>8/H MF2\MH/G),OSJ%.N6UNI4^%="]3LE1;8K>>)+8Q\'5WDY<0J$D1=JV?$:"&%J MK4+1+`*%&+Q(RXG508RPTBH4ZR10B,'+K)Q(+L)`95*AF#B!8@Q6(]6/]2.` MF\G@:`A#ZZ.L3`U"Q)-[.91T(LW36B6!OFGXDWL:!0[&*+3@S$H((P11;N9F MNR&(2,E[:J9('.*Z`B^$VO_A4%/&P!`TDFX\/!!-W07P]B51C_5587&\%B/: M'8;DX0J-<)L<%B9*#.(=@T@!M/`@W#N)A-V'N%J(50"+%((=M5@6+EV(=14C M<:>,7ZO#"J`;Y,/=YE@8+M*(]=PC<;QT(]9]D,6-?3(*"9J%RT-B72A)'"\: MD;4'U0G1>&\WF4J$I\W]/I*YU/42N4<5I8!A9J%9Y;-H9=Q:%H-:[-\'C6MC-LK/YN@5LG*">51 MT\KDM_J,!N^FL;()*I5HG`HUI<[!(27$VV/(GK3N%E`,(J(S[E95B,(C,=9> M7`QAHBZ>[<80!D=8K`W5$,)%4WR;QB$.C9STM\5C!!XE<;;\0Q`5$?$T-H`P M(OC@M&^`("+0X#2HP"`PJ-!OOH$1>`#!:2P"0=PRW^F>@D'PDMYN$`,RZ'+5 M;G\#,<12W6GO@T'TLCS4'XMB_9VA,D@I-?*,A,.IL$2D>1N%9YH4[83H)T,Q M$7!8(=`_D$+M_HDJ$9[6_P9=[S@*)X("P0YZ%.QTT]2I<#BQU`_V%*5@;N4< MZZW*\"#$K8V]#6DA<(3F]JRVNQ`B7W0?>B'%KI)7"4<_TSAK6'!9>]9P^LKH 1)>T1R)&1O_H_4)LH06S?`0"V ` end >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 6:30: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6ECC137B503 for ; Sun, 1 Oct 2000 06:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA28717; Sun, 1 Oct 2000 06:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from alchemy.oven.org (shiva4.ksl.co.il [199.203.25.39]) by hub.freebsd.org (Postfix) with ESMTP id 4E53E37B66C for ; Sun, 1 Oct 2000 06:24:16 -0700 (PDT) Received: (from mapc@localhost) by alchemy.oven.org (8.11.0/8.11.0) id e91DOcd35084; Sun, 1 Oct 2000 16:24:38 +0300 (IDT) (envelope-from mapc) Message-Id: <200010011324.e91DOcd35084@alchemy.oven.org> Date: Sun, 1 Oct 2000 16:24:38 +0300 (IDT) From: roman@xpert.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21669: MAINTAINER new port: graphics/xine Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21669 >Category: ports >Synopsis: MAINTAINER new port: graphics/xine >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 06:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Roman Shterenzon >Release: FreeBSD 4.1-STABLE i386 >Organization: Roman Shterenzon >Environment: ports >Description: This is a port of (still beta) freeware MPEG1/2 player >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # xine # xine/files # xine/files/md5 # xine/patches # xine/patches/patch-aa # xine/pkg # xine/pkg/DESCR # xine/pkg/COMMENT # xine/pkg/PLIST # xine/Makefile # echo c - xine mkdir -p xine > /dev/null 2>&1 echo c - xine/files mkdir -p xine/files > /dev/null 2>&1 echo x - xine/files/md5 sed 's/^X//' >xine/files/md5 << 'END-of-xine/files/md5' XMD5 (xine-0.2.0.tar.gz) = beed8106a2da997dc1ed5f4aa8214c6f END-of-xine/files/md5 echo c - xine/patches mkdir -p xine/patches > /dev/null 2>&1 echo x - xine/patches/patch-aa sed 's/^X//' >xine/patches/patch-aa << 'END-of-xine/patches/patch-aa' X--- configure.orig Sun Oct 1 15:20:17 2000 X+++ configure Sun Oct 1 15:27:25 2000 X@@ -2225,14 +2225,14 @@ X X X X-echo $ac_n "checking for pthread_create in -lc_r""... $ac_c" 1>&6 X-echo "configure:2230: checking for pthread_create in -lc_r" >&5 X+echo $ac_n "checking for pthread_create in -pthread""... $ac_c" 1>&6 X+echo "configure:2230: checking for pthread_create in -pthread" >&5 X ac_lib_var=`echo c_r'_'pthread_create | sed 'y%./+-%__p_%'` X if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X else X ac_save_LIBS="$LIBS" X-LIBS="-lc_r $LIBS" X+LIBS="-pthread $LIBS" X cat > conftest.$ac_ext <&6 X- THREAD_LIBS="-lc_r" X+ THREAD_LIBS="-pthread" X+ CFLAGS="$CFLAGS -D_REENTRANT" X else X echo "$ac_t""no" 1>&6 X echo $ac_n "checking for pthread_create in -lpthread""... $ac_c" 1>&6 X@@ -3581,7 +3582,6 @@ X EOF X X case "$host_alias" in X- i386-*) GLOBAL_CFLAGS="$GLOBAL_CFLAGS -march=pentiumpro";; X i486-*) GLOBAL_CFLAGS="$GLOBAL_CFLAGS -march=i486";; X i586-*) X GLOBAL_CFLAGS="$GLOBAL_CFLAGS -march=pentium";; X@@ -3595,7 +3595,7 @@ X *) echo "$host is not currently supported by xine"; exit 1;; X esac X X-GLOBAL_CFLAGS="$GLOBAL_CFLAGS -Wall -O3 -g -static -funroll-loops -finline-functions" X+GLOBAL_CFLAGS="$GLOBAL_CFLAGS $CFLAGS -Wall -static -funroll-loops -finline-functions" X X X if test x$prefix = xNONE; then END-of-xine/patches/patch-aa echo c - xine/pkg mkdir -p xine/pkg > /dev/null 2>&1 echo x - xine/pkg/DESCR sed 's/^X//' >xine/pkg/DESCR << 'END-of-xine/pkg/DESCR' Xxine is a free gpl-licensed video player for unix-like systems. XWe support mpeg-2 and mpeg-1 system (audio + video multiplexed) streams, Xeventually mpeg-4/divx and other formats might be added in the future. X Xxine plays the video and audio data of mpeg-2 videos and synchronizes Xthe playback of both. Depending on the properties of the mpeg stream, Xplayback will need more or less processor power, 100% frame rate Xhas been seen on a 667 MHz P III system. X Xxine tries to be straightforward and effective. ...no bells and Xwhistles are being developed at this time ;-) first we want to achieve Xgood playback of video. X XWWW: http://xine.sourceforge.net/ X XRoman Shterenzon END-of-xine/pkg/DESCR echo x - xine/pkg/COMMENT sed 's/^X//' >xine/pkg/COMMENT << 'END-of-xine/pkg/COMMENT' XMPEG1 and MPEG2 video player with sound support END-of-xine/pkg/COMMENT echo x - xine/pkg/PLIST sed 's/^X//' >xine/pkg/PLIST << 'END-of-xine/pkg/PLIST' Xbin/xine Xlib/xine/plugins/input_file.so Xlib/xine/plugins/input_file.la Xshare/xine/skins/default/bg.png Xshare/xine/skins/default/close.png Xshare/xine/skins/default/exit.png Xshare/xine/skins/default/next.png Xshare/xine/skins/default/play.png Xshare/xine/skins/default/stop.png Xshare/xine/skins/default/button.png Xshare/xine/skins/default/eject.png Xshare/xine/skins/default/letters.png Xshare/xine/skins/default/pause.png Xshare/xine/skins/default/prev.png Xshare/xine/skins/xine_logo.png X@dirrm lib/xine/plugins X@dirrm lib/xine X@dirrm share/xine/skins/default X@dirrm share/xine/skins X@dirrm share/xine END-of-xine/pkg/PLIST echo x - xine/Makefile sed 's/^X//' >xine/Makefile << 'END-of-xine/Makefile' X# New ports collection makefile for: xine X# Date Created: 1 Oct 2000 X# Whom: Roman Shterenzon X# X# $FreeBSD$ X# X XPORTNAME= xine XPORTVERSION= 0.2.0 XCATEGORIES= graphics XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= xine X XMAINTAINER= roman@xpert.com X XLIB_DEPENDS= Imlib.5:${PORTSDIR}/graphics/imlib X XUSE_X_PREFIX= yes X XGNU_CONFIGURE= yes XCONFIGURE_ARGS=-prefix=${X11BASE} X Xpost-install: X @${ECHO_MSG} X @${ECHO_MSG} "Make sure you've enough shared memory, the xine FAQ" X @${ECHO_MSG} "advises to have the following sysctl settings:" X @${ECHO_MSG} "kern.ipc.shmmax=67108864" X @${ECHO_MSG} "kern.ipc.shmall=32768" X @${ECHO_MSG} X X.include END-of-xine/Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 6:40:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A719B37B66C for ; Sun, 1 Oct 2000 06:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA33191; Sun, 1 Oct 2000 06:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from alchemy.oven.org (shiva4.ksl.co.il [199.203.25.39]) by hub.freebsd.org (Postfix) with ESMTP id 6D5B137B502 for ; Sun, 1 Oct 2000 06:32:07 -0700 (PDT) Received: (from mapc@localhost) by alchemy.oven.org (8.11.0/8.11.0) id e91DWU335890; Sun, 1 Oct 2000 16:32:30 +0300 (IDT) (envelope-from mapc) Message-Id: <200010011332.e91DWU335890@alchemy.oven.org> Date: Sun, 1 Oct 2000 16:32:30 +0300 (IDT) From: roman@xpert.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21670: MAINTAINER: new port: net/arping Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21670 >Category: ports >Synopsis: MAINTAINER: new port: net/arping >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 06:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Roman Shterenzon >Release: FreeBSD 4.1-STABLE i386 >Organization: Roman Shterenzon >Environment: ports >Description: From README: Arping is a util to find out it a specific IP address on the LAN is 'taken' and what MAC address owns it. Sure, you *could* just use 'ping' to find out if it's taken and even if the computer blocks ping (and everything else) you still get an entry in your arp cache. But what if you aren't on a routable net? Then you're screwed. Or you use arping. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # arping # arping/Makefile # arping/pkg # arping/pkg/DESCR # arping/pkg/COMMENT # arping/pkg/PLIST # arping/files # arping/files/md5 # echo c - arping mkdir -p arping > /dev/null 2>&1 echo x - arping/Makefile sed 's/^X//' >arping/Makefile << 'END-of-arping/Makefile' X# New ports collection makefile for: arping X# Date Created: 1 Oct 2000 X# Whom: Roman Shterenzon X# X# $FreeBSD$ X# X XPORTNAME= arping XPORTVERSION= 0.94 XCATEGORIES= net XMASTER_SITES= ftp://ftp.nss.nu/pub/synscan/ X XMAINTAINER= roman@xpert.com X XBUILD_DEPENDS= ${LOCALBASE}/lib/libnet.a:${PORTSDIR}/net/libnet X XALL_TARGET= freebsd X Xdo-install: X cd ${WRKSRC}; ${INSTALL_PROGRAM} arping ${PREFIX}/sbin X X.include END-of-arping/Makefile echo c - arping/pkg mkdir -p arping/pkg > /dev/null 2>&1 echo x - arping/pkg/DESCR sed 's/^X//' >arping/pkg/DESCR << 'END-of-arping/pkg/DESCR' XArping is a util to find out it a specific IP address on the LAN is 'taken' Xand what MAC address owns it. Sure, you *could* just use 'ping' to find out if Xit's taken and even if the computer blocks ping (and everything else) you still Xget an entry in your arp cache. But what if you aren't on a routable net? Then Xyou're screwed. Or you use arping. X XWWW: http://synscan.nss.nu/programs.php X XRoman Shterenzon END-of-arping/pkg/DESCR echo x - arping/pkg/COMMENT sed 's/^X//' >arping/pkg/COMMENT << 'END-of-arping/pkg/COMMENT' XARP level "ping" utility END-of-arping/pkg/COMMENT echo x - arping/pkg/PLIST sed 's/^X//' >arping/pkg/PLIST << 'END-of-arping/pkg/PLIST' Xsbin/arping END-of-arping/pkg/PLIST echo c - arping/files mkdir -p arping/files > /dev/null 2>&1 echo x - arping/files/md5 sed 's/^X//' >arping/files/md5 << 'END-of-arping/files/md5' XMD5 (arping-0.94.tar.gz) = 3907c8a7942eb8fa57da3e50ef9266bc END-of-arping/files/md5 exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 7: 0: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 58B5C37B503 for ; Sun, 1 Oct 2000 07:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA42555; Sun, 1 Oct 2000 07:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from alchemy.oven.org (shiva4.ksl.co.il [199.203.25.39]) by hub.freebsd.org (Postfix) with ESMTP id 86E7037B502 for ; Sun, 1 Oct 2000 06:57:39 -0700 (PDT) Received: (from mapc@localhost) by alchemy.oven.org (8.11.0/8.11.0) id e91Dw0K47598; Sun, 1 Oct 2000 16:58:00 +0300 (IDT) (envelope-from mapc) Message-Id: <200010011358.e91Dw0K47598@alchemy.oven.org> Date: Sun, 1 Oct 2000 16:58:00 +0300 (IDT) From: roman@xpert.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21671: MAINAINER update: net/gq Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21671 >Category: ports >Synopsis: MAINTAINET update net/gq from 0.2.3 to 0.3.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 07:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Roman Shterenzon >Release: FreeBSD 4.1-STABLE i386 >Organization: Roman Shterenzon >Environment: ports >Description: UPDATE net/gq from 0.2.3 to 0.3.0 >How-To-Repeat: >Fix: diff -urN /usr/ports/net/gq/Makefile gq/Makefile --- /usr/ports/net/gq/Makefile Mon Jul 10 06:46:32 2000 +++ gq/Makefile Sun Oct 1 16:53:59 2000 @@ -6,7 +6,7 @@ # PORTNAME= gq -PORTVERSION= 0.2.3 +PORTVERSION= 0.3.0 CATEGORIES= net MASTER_SITES= http://biot.com/gq/download/ @@ -20,6 +20,6 @@ GNU_CONFIGURE= yes GTK_CONFIG?= ${X11BASE}/bin/gtk12-config CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" -CONFIGURE_ARGS= --datadir=${PREFIX}/share --with-ldap=${LOCALBASE} +CONFIGURE_ARGS= --with-ldap=${LOCALBASE} .include diff -urN /usr/ports/net/gq/files/md5 gq/files/md5 --- /usr/ports/net/gq/files/md5 Mon Jul 10 06:46:35 2000 +++ gq/files/md5 Sun Oct 1 16:54:21 2000 @@ -1 +1 @@ -MD5 (gq-0.2.3.tar.gz) = e7996427088568630b41f9a8704f4c8b +MD5 (gq-0.3.0.tar.gz) = bab7703de4013ba3678bd37765e8bd60 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 7: 0:22 2000 Delivered-To: freebsd-ports@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 3AF9A37B503; Sun, 1 Oct 2000 07:00:20 -0700 (PDT) Received: from localhost (patrick@localhost) by fledge.watson.org (8.9.3/8.9.3) with SMTP id KAA53541; Sun, 1 Oct 2000 10:00:14 -0400 (EDT) (envelope-from patrick@watson.org) Date: Sun, 1 Oct 2000 10:00:13 -0400 (EDT) From: Patrick M Doane To: ade@FreeBSD.org Cc: freebsd-ports@FreeBSD.org, ortmann@sparc.isl.net Subject: Re: ports/20645: Update Objective Caml to 3.00 In-Reply-To: <200009171824.LAA32658@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Sorry for the delay in responding. There was a bit of confusion regarding this update as someone else submitting a patch without contacting the maintainer first. I've been in contact with the maintainer and we agreed that that the ownership of the port would transfer with the new version 3.00 for Objective Caml. It hasn't been a high priority for me to resolve this because the current port seems to be working just fine. The only change that needs to be made at this point is the change of maintainership. I could resubmit a one line diff if you'd like for this. Patrick On Sun, 17 Sep 2000 ade@FreeBSD.org wrote: > Synopsis: Update Objective Caml to 3.00 > > State-Changed-From-To: open->feedback > State-Changed-By: ade > State-Changed-When: Sun Sep 17 11:23:55 PDT 2000 > State-Changed-Why: > Has the current maintainer (ortmann@isl.net) approved this, > especially the change of maintainership that your sharball > shows. If so, please resubmit the update as unified diffs > against the current port, rather than a brand new sharball. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=20645 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 7:41:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp2.libero.it (smtp2.libero.it [193.70.192.52]) by hub.freebsd.org (Postfix) with ESMTP id AF9D937B503 for ; Sun, 1 Oct 2000 07:41:06 -0700 (PDT) Received: from darkstar.my.net (151.21.203.17) by smtp2.libero.it; 1 Oct 2000 16:40:59 +0200 Received: (from mmax88@localhost) by darkstar.my.net (8.11.0/8.11.0) id e91EdXK12086 for freebsd-ports@FreeBSD.org; Sun, 1 Oct 2000 16:39:33 +0200 (CEST) (envelope-from mmax88) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Sun, 01 Oct 2000 16:39:29 +0200 (CEST) From: Max To: freebsd-ports@FreeBSD.org Subject: port math/PDL fail to compile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, make fail to compile with the following message on my FreeBSD4.1.1-STABLE with XFree86-4.0.1_1 and Mesa-3.2.1_1 ports installed: ....... mkdir blib/script cp perldl blib/script/perldl /usr/bin/perl5.00503 -I/usr/libdata/perl/5.00503/mach -I/usr/libdata/perl/5.00503 -MExtUtils::MakeMaker -e "MY->fixin(shift)" blib/script/perldl cp pdldoc blib/script/pdldoc /usr/bin/perl5.00503 -I/usr/libdata/perl/5.00503/mach -I/usr/libdata/perl/5.00503 -MExtUtils::MakeMaker -e "MY->fixin(shift)" blib/script/pdldoc Manifying blib/man1/perldl.1 Manifying blib/man1/pdldoc.1 **** Not building PDL::Graphics::Karma, turn on WITH_KARMA if this is incorrect**** PERL_DL_NONLAZY=1 /usr/bin/perl5.00503 -Iblib/arch -Iblib/lib -I/usr/libdata/perl/5.00503/mach -I/usr/libdata/perl/5.00503 -e 'use Test::Harness qw(&runtests $verbose); $verbose=0; runtests @ARGV;' t/*.t t/aaa_load..........ok t/argtest...........ok t/autoload..........ok t/bess..............ok t/bool..............ok t/callext...........ok t/clump.............ok t/complex...........ok t/conv..............ok t/croak.............ok t/erf...............ok t/erfi..............ok t/familyfree........ok t/fastraw...........ok t/fft...............ok t/fftw..............ok t/flexraw...........ok t/flow..............ok t/foo...............ok t/func..............ok t/gauss.............ok t/gsl_rng...........ok, 18/18 subtests skipped t/hdrs..............ok t/hist..............ok t/howbig............ok t/ica...............ok t/image2d...........ok t/imagend...........ok t/imagergb..........ok t/interp............ok, 1/1 subtest skipped t/interp_slatec.....ok, 1/1 subtest skipped t/lut...............ok t/magic.............ok t/matmult...........ok t/misc..............ok t/ndf...............ok, 6/6 subtests skipped t/ones..............ok t/ops...............ok t/pdlchar...........ok t/physical..........ok t/picnorgb..........FAILED test 13 Failed 1/17 tests, 94.12% okay t/picrgb............FAILED test 9 Failed 1/12 tests, 91.67% okay t/pnm...............ok t/poly..............ok t/pptest............ok t/primitive.........ok t/primitive2........ok t/pthread...........ok t/quat..............ok t/refs..............ok t/scope.............ok t/slatec............ok t/slice.............ok t/subclass..........ok t/subclass2.........ok t/subclass3.........ok t/subclass4.........ok t/thread............ok t/thread_def........ok t/trig..............ok t/vaffine...........ok t/xvals.............ok Failed Test Status Wstat Total Fail Failed List of failed ------------------------------------------------------------------------------- t/picnorgb.t 17 1 5.88% 13 t/picrgb.t 12 1 8.33% 9 26 subtests skipped. Failed 2/62 test scripts, 96.77% okay. 2/501 subtests failed, 99.60% okay. *** Error code 2 Stop in /usr/ports/math/PDL/work/PDL-2.1.1. *** Error code 1 Stop in /usr/ports/math/PDL. *** Error code 1 Stop in /usr/ports/math/PDL. *** Error code 1 Stop in /usr/ports/math/PDL. Can someone help me? Regards, Max To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 7:50: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AF6A437B502; Sun, 1 Oct 2000 07:50:01 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA73421; Sun, 1 Oct 2000 07:50:01 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Sun, 1 Oct 2000 07:50:01 -0700 (PDT) From: Message-Id: <200010011450.HAA73421@freefall.freebsd.org> To: roman@xpert.com, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21671: MAINTAINET update net/gq from 0.2.3 to 0.3.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MAINTAINET update net/gq from 0.2.3 to 0.3.0 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sun Oct 1 07:49:44 PDT 2000 State-Changed-Why: Patches applied, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21671 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 8:16:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2A86F37B502; Sun, 1 Oct 2000 08:16:44 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA98807; Sun, 1 Oct 2000 08:16:44 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Sun, 1 Oct 2000 08:16:44 -0700 (PDT) From: Message-Id: <200010011516.IAA98807@freefall.freebsd.org> To: xaa@timewasters.nl, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21479: Port update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sun Oct 1 08:16:31 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21479 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 8:29:28 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8968F37B502; Sun, 1 Oct 2000 08:29:26 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA11184; Sun, 1 Oct 2000 08:29:26 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Sun, 1 Oct 2000 08:29:26 -0700 (PDT) From: Message-Id: <200010011529.IAA11184@freefall.freebsd.org> To: joseph.scott@owp.csus.edu, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21459: MASTER_SITES port update: games/powerpak Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MASTER_SITES port update: games/powerpak State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sun Oct 1 08:29:12 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21459 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 8:40: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B4D137B502; Sun, 1 Oct 2000 08:40:04 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA20258; Sun, 1 Oct 2000 08:40:04 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Sun, 1 Oct 2000 08:40:04 -0700 (PDT) From: Message-Id: <200010011540.IAA20258@freefall.freebsd.org> To: sam@inf.enst.fr, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21467: New version of net/adasockets Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New version of net/adasockets State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sun Oct 1 08:39:47 PDT 2000 State-Changed-Why: Patches applied, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21467 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 9:12:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D17637B503; Sun, 1 Oct 2000 09:12:57 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA47348; Sun, 1 Oct 2000 09:12:57 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Sun, 1 Oct 2000 09:12:57 -0700 (PDT) From: Message-Id: <200010011612.JAA47348@freefall.freebsd.org> To: makoto@pinpott.spnet.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21471: Update port: games/zangband (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/zangband (by maintainer) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sun Oct 1 09:12:42 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21471 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 9:18:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C122537B502; Sun, 1 Oct 2000 09:18:53 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA53191; Sun, 1 Oct 2000 09:18:53 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Sun, 1 Oct 2000 09:18:53 -0700 (PDT) From: Message-Id: <200010011618.JAA53191@freefall.freebsd.org> To: makoto@pinpott.spnet.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21472: Update port: japanese/zangband (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: japanese/zangband (by maintainer) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sun Oct 1 09:18:40 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21472 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 9:26:22 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sparc.isl.net (ppp-210.centerplacenet.com [208.29.63.210]) by hub.freebsd.org (Postfix) with ESMTP id 66A1437B66C; Sun, 1 Oct 2000 09:26:18 -0700 (PDT) Received: (from ortmann@localhost) by sparc.isl.net (8.9.3/8.9.3) id LAA00841; Sun, 1 Oct 2000 11:26:12 -0500 (CDT) (envelope-from ortmann) From: Daniel Ortmann Message-Id: <200010011626.LAA00841@sparc.isl.net> Subject: Re: ports/20645: Update Objective Caml to 3.00 To: patrick@watson.org (Patrick M Doane) Date: Sun, 1 Oct 2000 11:26:11 -0500 (CDT) Cc: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ortmann@sparc.isl.net In-Reply-To: from "Patrick M Doane" at Oct 01, 2000 10:00:13 AM X-Mailer: ELM [version 2.5 PL3] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Mr. Doane is now the maintainer. (I was surprised to see my name still there.) Thank, Patrick. > Sorry for the delay in responding. > > There was a bit of confusion regarding this update as someone else > submitting a patch without contacting the maintainer first. I've been in > contact with the maintainer and we agreed that that the ownership of the > port would transfer with the new version 3.00 for Objective Caml. > > It hasn't been a high priority for me to resolve this because the current > port seems to be working just fine. The only change that needs to be made > at this point is the change of maintainership. Maybe one other thing could be (optionally) done: The current port does not install tcl/tk ahead of the O'Caml port. The O'Caml configure just goes ahead and omits the LablTk module; users might be surprised at that. But the current port is still completely ok as it is, except for the maintainer line. > I could resubmit a one line diff if you'd like for this. > > Patrick > > On Sun, 17 Sep 2000 ade@FreeBSD.org wrote: > > > Synopsis: Update Objective Caml to 3.00 > > > > State-Changed-From-To: open->feedback > > State-Changed-By: ade > > State-Changed-When: Sun Sep 17 11:23:55 PDT 2000 > > State-Changed-Why: > > Has the current maintainer (ortmann@isl.net) approved this, > > especially the change of maintainership that your sharball > > shows. If so, please resubmit the update as unified diffs > > against the current port, rather than a brand new sharball. > > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=20645 -- Daniel Ortmann IBM Circuit Technology 2414 30 av NW, #D E315, bldg 040-2 Rochester, MN 55901 3605 Hwy 52 N 507.288.7732 (h) 507.253.6795 (w) ortmann@isl.net ortmann@us.ibm.com "The answers are so simple and we all know where to look, but it's easier just to avoid the question." -- Kansas To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 9:29: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from gw.nectar.com (gw.nectar.com [208.42.49.153]) by hub.freebsd.org (Postfix) with ESMTP id 47C3B37B502 for ; Sun, 1 Oct 2000 09:28:58 -0700 (PDT) Received: from hamlet.nectar.com (hamlet.nectar.com [10.0.1.102]) by gw.nectar.com (Postfix) with ESMTP id 8D39C1925D; Sun, 1 Oct 2000 11:28:57 -0500 (CDT) Received: (from nectar@localhost) by hamlet.nectar.com (8.9.3/8.9.3) id LAA24439; Sun, 1 Oct 2000 11:28:57 -0500 (CDT) (envelope-from nectar@spawn.nectar.com) Date: Sun, 1 Oct 2000 11:28:57 -0500 From: "Jacques A. Vidrine" To: Carl Johan Madestrand Cc: freebsd-ports@freebsd.org Subject: Re: py-gtk fails to compile Message-ID: <20001001112857.D17836@hamlet.nectar.com> Mail-Followup-To: "Jacques A. Vidrine" , Carl Johan Madestrand , freebsd-ports@freebsd.org References: <20001001002545.A397@214.norrgarden.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001001002545.A397@214.norrgarden.se>; from cj@vallcom.net on Sun, Oct 01, 2000 at 12:25:45AM +0200 X-Url: http://www.nectar.com/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Oct 01, 2000 at 12:25:45AM +0200, Carl Johan Madestrand wrote: > Greetings > > Just thought I would let you know /usr/ports/x11-toolkits/py-gtk > fails to compile on my system. Running 4.1-STABLE. > > ltconfig:1691: cc -o conftest -O -pipe -fno-builtin -fno-rtti -fno-exceptions > conftest.c conftstm.o 1>&5 > configure:1693: checking for python > configure:1727: checking local Python configuration > configure:1774: checking for headers required to compile python extensions > configure:1790: cc -E -I/include/python conftest.c >/dev/null 2>conftest.out > configure:1786: Python.h: No such file or directory > configure: failed program was: > #line 1785 "configure" > #include "confdefs.h" > #include > (end of "config.log") > *** Error code 1 > Stop in /usr/ports/x11-toolkits/py-gtk. > > Any ideas? Update your ports tree. There was a change made to bsd.python.mk on Sep 28 that broke this port. The port was fixed on Sep 30. -- Jacques Vidrine / n@nectar.com / jvidrine@verio.net / nectar@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 9:30:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7016737B66C for ; Sun, 1 Oct 2000 09:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA62116; Sun, 1 Oct 2000 09:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ci350185-a.athen1.ga.home.com (ci350185-a.athen1.ga.home.com [24.9.210.117]) by hub.freebsd.org (Postfix) with ESMTP id 902DC37B502 for ; Sun, 1 Oct 2000 09:22:01 -0700 (PDT) Received: (from chapmanb@localhost) by insomniac.athen1.ga.home.com (8.11.0/8.11.0) id e8RJWwi05708; Wed, 27 Sep 2000 15:32:58 -0400 (EDT) (envelope-from chapmanb) Message-Id: <200009271932.e8RJWwi05708@insomniac.athen1.ga.home.com> Date: Wed, 27 Sep 2000 15:32:58 -0400 (EDT) From: chapmanb@arches.uga.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21678: New port: biology/biojava Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21678 >Category: ports >Synopsis: New port: biology/biojava >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 09:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Brad Chapman >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: >Description: This is a new port of Biojava -- a set of java libraries for dealing with common tasks in bioinformatics. This is my first port, although it has been checked by a more experienced porter (to eliminate some of my really bad mistakes :-). Feedback on making the port or submission easier to deal with is very welcome. >How-To-Repeat: >Fix: begin 644 biojava.port.tar.gz M'XL(``E+TCD``^U=>W/;MK+/O_&GP&TS)^U,+=EYGJ9IIGK946/)&DFQ?6?N MG`Q(0A)BDF#YL*W3\7>_"X"4J)=-$JLS]\Z8;2R)Q/ZPNUCL+@`2M+CX3F]H M+1!A_&Q/Q_'1T;LW;\@S0H[?OSW*?\)Q_/K5T;OWA+P_AC)OWKY^=PSGCM\= MOWU&CO;%4/Y(HIB&A#RS9S3PJ&_])^K\/W3\2,8S'A'XGY)HQER7T-">\1M6 M(V1$;QCA,>$^7)QPE_U"0N8).$G]>3SC_I18;")"=O`CB26*RWTH0WT'?C*? M)'Y`[6N)8,T)\V,62I(?HID"^P%JZ(L8"*"`1^<`8H>,QHPX/&1V+$+.HM]4 MT4AAYDZ36PZ<6HR(6Y\Y$GXN$ED(0&:2:X=-:.+&)&"AQZ.("S^J'?QXD$J; MBDALX<>4^]$'>>FYI;O"\EN]1Z^9K#]W*KB>KOZJM\Y[O4Y_O':VW1FUAFOG M!F?=4;Z<$FW]=]USW@([S)X)8I-#DG'E78/\Y##(3I!/I.ZPF[J?@"9>??K' ML2:Y6Y(LV8]`1R^C^K^NZO67Y-/Z9?+Q(WG9Z;1P_=K+@ZL?29_=$ND? M(E"8ZT(;@#JAQ5)J,(`/"RZA=%LVH6Y)Y\/SX[=DQ(*8>18+R:NCHR-9Y'(F MO`_/GY^$C#5';=+D0N&S,"(_`=(?$[A@14[-9_'/4%Z2O$@+OU"_#ZX&Y\-Q MO]'K_+YH-G7JHC,<=<_[OS\_KAT='URU&N/.Z?FPVQFII!8]4PAD4A"F]5EU;U&MS^&?YVA`LUS*R\W MOW;/VM_:G0&H%*!?_/UGXZ+Q35I)H]^^__#B;\GGJ-T=WM<5,G2:Y.[PNW,M MB?]L?_F6D^%5[16<`_K%N45IP%V6O=>E`%16.!AV3KI7]W5=]6H1R];) M&%-\6-Q7O-C+,I+9K64DEXXXM!+N.A\.KI[_\9/MD!=_7PZ_C(:M^]_(_\"Y MG-"RKGNB2M>;\B\+:Q)F47#4&7?Z%_=DT!A__AUXAP^II'R]ZYA*D1JSEF(2 MZKJ__2QYJ_$)^2_H_N"*G)_ZYU+9[?/6Z.^+K(,LVRN:T9!IH[!=&D7@#!:%6X/[)41FE:#)L!+]G>>6H'V( M43CYY51VQ/O5N@Z'9-AIM'L=!9CY[7-,IMGVE)Y*C2K%@*&<^)P_\,FQ2.:WEKILEO5,FD^2G\K0T;- MN_YTL"-V;<10%;S7XZ@\62"6YB/]]G":*[$MHN8N0U`]#YA_J&.*"DC05,*- M9"PE02AL!BF+S*Y4R.(V=8E#8[HN:)ZGK0SK)&0WN^KZ+F;516!U#)8#$?I/ MR>4@%-_!/E2ZZ!.1$R)(KSA@A[8,_=+XX.0-=Z0D?ZK(443(FD[15(*7-;>P M)+:B/+B"))T'B4MC21RQOQ+F`]0ORK))0,,(THA?2.M\V&P``"05P&9(+>[R M>`[)J2WK!>8.KAHMUF[^0IRY3SUN2Y:F(?4\@-4Y;,2]`"#!GF,>Q8K!4"10 M+8MJ1)IC7C.NZM!SJ9DD8I/$56+2)!:>YC2>B0CR4LK=N4+W$M^A/CNX`OFY M#X5E.>A.,8VN`;\1J2Z;P<+%))12QAMU9NDP>":E;B:3=2'159Z6!/#G=L;M M&;%$#*DW9"LD$I/X5G97R8DM/(^%-@?Y9+Y.IY"47MG0OI;,HV^8"PIT:E+@ MR\O+#V06JV3I]O8VGRQMLTUM?ELM4Z?"NRU37=]EF>HB6.86%YD+C%NOIX%O MY5I*Y'BC;/C5\>_'KVNP3#%?8P`7$Y=ZMIQ M3F0L'8NN[["[0JREI"TU."I-IEHH:ZXRA&?@OH`NZOKEZARS*#YEOD7]Z\(T M"U5.-6'1>L8A]2-7N:Q2_$FS*L]H#RL-;'K&& MRZ>^5[1'`N$$DI?:1':1`H4O./1`BZM*BE:0NOC:+/8>5T$`[D%.ED#_ M2N#X)00I)G@T]RSA*L?1\"P^32#M+.:@EH0CE7F6\QT9N4RQR]9W'CHL[(_4 M"1DLRM*?T@!2Q.KTE]QWQ&UY!/;7#:16+*P7M)8E@0P;%^IKR9I4\Z0Q>`#Y M^Z/!!X;(=1KP^FG_O->I?_6O?7'K?Q9J(NP1'[Q*FCKNPQ@RRFJ4$QC>E"3] MEC+\[5P.HF(UCUX*(*6O6.N85^2W"QVH2:.*U*,XL2J)^9FY0=5VC1+/@Z%> M46(Y0:TS^$C8URQ&QREC9SM!2IG(*&B-A=7TLI!ZTG-O5LV9(:#C&H*"&;,)"-7C%P1O/`P0H%*[,G2\, M3U%!*KJ5'$)5AR('VC9K^+Z(]7B^*L1BKL,4H-TL#P'D'9>I]+L*;;5N8^`S MJ_I(H*OH?%K"]_7-`.5IP1-3JT1^MD)9E>&JB82)KZ_NV\U\N8'O-O75!K[9 MH%:CK*Q1I48@&K#0':@EITKD7X=GU>AB[A8>ARTI/U/?<2NRVKFS65"MKVM! M#0",XZ+D/PQ%!]D/9+NY!]!N+!%%B`:-*3NNT/`E7=;;`R2V M'O/F:02T;&HDF'*I[0-`F%Q4-1W-Y1$S-87.W<(F(.LPPL7E%U6/*HSDFBCDCV3&B`2-9 M;BZ>8TB7>5\L$=<3`TP>47O!)BYFVZ!@H0EJS$T^;)5;>WL`G-Y-'/>^C!D4Y,E)2<-'P1"D'(%#E=,>5\!,H<*TIS+\R0^GPRI M/V4(_.7`S#D+=!SE#I+R5O',^AZD,#),S1+O;`HK)*9+K6P-$X1"'+1Q> MRJ[X[,+`D4DAF.B)J`HR4TF`Z?I2UCPIK4ND5 M^5E/'SI33Z%TISX@#QG@.Y56RW8!5UWP>0RO]+K/+L#3DY.VL!-YLT6%-I)T`OR:M:C2X M\FO_18VA84L'T'#=?8"G>0BJW:U4,,H>*MQ?#>JQ8U3\RY`C@67B1XT(<%$0 MU1,AJ.X'.8+M"0XC9J'&JQZKCN$$^N:H"Q8+XPB_?);/2$DY&"/]R&?X1"QO MJ36"&/0H9,EW!A"==,,G4U9Z-+P6-ZJ]3-N[:\Z,NJS4B.532P_XK)3RT$>,VNK M)9AYNU\R/IW%QEVK/3`@;E@P_J5V;"Y-DR;>)7/MV8C*J(@"9#K\U^,G=,#`PY!_,3B*?V4>( M/]FC_T:=)7W@_G.O9^)I5=*($)4U$%9@U6@XX37%P@FR2V/"X0@A7BLPE*BK MD#"[BT9$BBPI.R@ML`0Q]5=YX=+GF8R\^F6O$1GUZ"O/Q>DW7==E4^KF5(4X M'#$<`DX3+A_@4B/HNMX2(!M0#YGOF$S?K$!CC)ZV`AJ-HU80TXD:5+'WHLLF MC;B]#VY3S*8K[.N]6@&"T6(9%)H=G8FI@'3$-YC6DC!I'XSGU0=:$J9)0R2& M\CLR24@CK'[#6+*!"S(9HXQ6MA5!`VJ*L.0ZW@:>SD)PK`"QOXW978Q@46JC MKZ\^EWLPKNSU98*',C67!S*;G)-(:++E@4R'J>MXIGGI#KR6``NYJYX+2MAL M`@--CRTA^Y5<]82.L-?6:>OM\-$;KM]`8_N4!FA8>B6])1(_CC`,2LT,8#&7 MCLKW!X^=UK1':!2%H'6JO^26L0M>T_U3NGI; M]]+[N6R!QNE1*U"&/4IA==MRWWB#/J3U5FG'F0>!$%6?SF$Q!XW-%K7E>X#0 M\#[3:(8&EC5I<]['LX_F_.NP;XHEMV%&;`7$O@\?^H9-L[MA4BBLOIZ#,N[K M\+'86?5$;;MOB*8V-&^SR`ZYFD$=,FHPX,Y`TWFO])4YABV:W8Z%(6XVED`6 M6.[(BM<<*$CIWN'S6^CR8%1>0/)WW66,MWDICB M!#-J57]*+8.)A<=MK7E#J%8HH@@\FI/8,1)W>4@4'D^XSV.&Q)UQR-,P*(+E M7OR"`63V6%[V8IKE&\G&)L\89*::IN58EI_"H6D.,NBQN&9^A,5@!J,2(630 M'O7!HYFV\#J:U.)E*-]E9(HL5_;E*SB1^MBF(Y$3VBA6WA:)Y6*YE#4P_1/) M\]TQYY([\0Q%ZHT75AEF`'[,P("0M+B.EOY&T>/"(%6O1#+/!4SV19H_-9L3 MT`E@_BY'1"BT M5D#.1T;R23";\;FP]7ZQI.#Z0>H=)[A_(X36[^<#Z22)*5LB^NV,:&T2X*&-,'::N8 M^"WSALTAZ$&),:*>/C8%"KDS95MV,5MTVX9#@ZIK&SO`C2WC$=SJUK(#>'W/ M>TSL=*YS#VI>WV]^/]A[1,[M;8UJV_M0R&AEV_`](>]/(7N`U.OF^&:]O'-M MC^"9JO?H_4S"LX8V?H?O@WB&WMG@]<\[T7(O6*Z")5^9&=6C&Z\>RV5#_>#W MD$U#IO86P(`T5=XNO,KZ6P=&9',VLFG%O4S6\5LN!65..`L[ M=VJ'E/V`JDF0Y6G$2BIUH$>UO`_,7N+&7([UH?$HB@HVJN@GKJL>]\"V14G,+?Z.$Q/9!!FEI!X M;A+104+,]TJ_PW,3!EISZ9@J[Y6Q@H?A1`!F+'<>-K38;,LR@QMU-\%,=BQ; MHBV6)9$;((>+H<'TL16,-FUS.A4^=1N.@PF'R.$9]QD-<9"B>)1X*%VA=V[P MG.H2I\_`;%$TWY>W^>O;GS'@!L*=^\+CU,5`&U('D.1+EU"4SZ>>X"A:TY.N M6&Y;KYM@.^\,%<-S@-TN1RLH%CP*Y/(!1K:Q@H1LSJ"^I=P(C8*:RF0QK/)^ M7XE\H7;=AG@J@XQ\L[WZ@@!EFF7M@*N<:NW`,VB&-<1&%+%0;S#!(8LV6DE9 M@QZ(*(8?CMJPK"_BGN$2U#I\R/#1[SR4]:U-,#.#RB,9VI*$NNJ=#1@+#6YH M7L%J\RB@<=4M#3;8,GC<3F,A:>K<^@Z^^2M\KXXA]X+D=H]Y%@L'+K4-[I?7 M@/(I$F<0BD#V6E;I/OY5)1E;N5Y.1^A[5;J*PP)P`W(9_M`ML6!.7=>6.0N+ MRAD)ET^"%RV,/9;>DFR>A*B1+)S;SELQ;.H9SG*2F4TG:!XC/F M!H?PJ[0L98P@DIN<13,&R:(=146;\9`NWM;QA\/#T",YNM0ZMEU:A62>`$R; M.5;!LM/)I&!)O5M`\<(%2SJJY8H5#0H6;'+1DBLV!8O+O9*+ZE;?=%)<"])Z M6%BL_..E,HM1BRG%BTOGIHRB'@G[FA70]Q9*%3J$];T2<1%SV"`K1])<6Z:K M1EV.*HL8%E]Y.XHQ2'6`(GUD%VU^9U,C%`/V"WF#G7>$J0P$S*XGM8'9]W1^(#9,T%L MKK&UN/CRX*K7?DM^RLM0BVE8F_[[9_([L=],7K/7O[Z?3-["?Z^M]\<.?6>_ M9N^M=_^T?K5^71=WR12[X_'!P;.GX^EX.IZ.I^/I>#J>CJ?CZ7@ZGHZGX^EX 1.IZ.I^/_Q_&_-T\X!0#(``#! ` end >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 9:30:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C5B9A37B66F for ; Sun, 1 Oct 2000 09:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA62135; Sun, 1 Oct 2000 09:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hcf.waterbinarytree.org (40bc256c.dsl.flashcom.net [64.188.37.108]) by hub.freebsd.org (Postfix) with ESMTP id 9E4EC37B66C for ; Sun, 1 Oct 2000 09:27:02 -0700 (PDT) Received: (from slk@localhost) by hcf.waterbinarytree.org (8.10.1/8.10.1) id e91GXj214521 for freebsd-gnats-submit@freebsd.org; Sun, 1 Oct 2000 09:33:45 -0700 (PDT) Message-Id: <20001001093345.A5715@hcf.waterbinarytree.org> Date: Sun, 1 Oct 2000 09:33:45 -0700 From: Simon Karpen Reply-To: slk@waterbinarytree.org To: freebsd-gnats-submit@freebsd.org Subject: ports/21680: FIX for ports/x11/XFree86-4 compile failure due to bad patch Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21680 >Category: ports >Synopsis: FIX for x11/XFree86-4 compile failure due to bad patch >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 09:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Simon Karpen >Release: FreeBSD 4.1.1-RELEASE i386 >Organization: Well Watered Binary Trees >Environment: Clean install of 4.1.1-RELEASE, cvsup'd ports to -STABLE >Description: In ports/x11/XFree86-4, patch-k fails to apply because it was created one directory level too high >How-To-Repeat: cd /usr/ports/X11/XFree86-4 make >Fix: --- patch-k.orig Sat Sep 30 22:44:01 2000 +++ patch-k Sat Sep 30 22:44:03 2000 @@ -1,5 +1,5 @@ -*** xc/programs/Xserver/hw/xfree86/input/mouse/mouse.c.orig Sat Jul 1 01:39 :02 2000 ---- xc/programs/Xserver/hw/xfree86/input/mouse/mouse.c Fri Sep 22 11:30:18 2000 +*** programs/Xserver/hw/xfree86/input/mouse/mouse.c.orig Sat Jul 1 01:39 :02 2000 +--- programs/Xserver/hw/xfree86/input/mouse/mouse.c Fri Sep 22 11:30:18 2000 *************** *** 584,591 **** { 0xc0, 0x00, 0x00, 0x00, 6, 0x00, 0xff, MPF_NONE }, /* NetScroll */ :02 2000 +--- programs/Xserver/hw/xfree86/input/mouse/mouse.c Fri Sep 22 11:30:18 2000 *************** *** 584,591 **** { 0xc0, 0x00, 0x00, 0x00, 6, 0x00, 0xff, MPF_NONE }, /* NetScroll */ @@ -19,8 +19,8 @@ }; /* -*** xc/programs/Xserver/hw/xfree86/os-support/bsd/bsd_mouse.c.orig Sat Feb 12 21:45:41 2000 ---- xc/programs/Xserver/hw/xfree86/os-support/bsd/bsd_mouse.c Fri Sep 22 11:30 :18 2000 +*** programs/Xserver/hw/xfree86/os-support/bsd/bsd_mouse.c.orig Sat Feb 12 21:45:41 2000 +--- programs/Xserver/hw/xfree86/os-support/bsd/bsd_mouse.c Fri Sep 22 11:30 :18 2000 *************** *** 165,171 **** --- 165,179 ---- -- Simon Karpen slk@waterbinarytree.org Bell Labs Unix -- Reach out and grep someone. >Release-Note: >Audit-Trail: >Unformatted: X-send-pr-version: 3.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 9:30:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A2CF137B66D for ; Sun, 1 Oct 2000 09:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA62126; Sun, 1 Oct 2000 09:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ci350185-a.athen1.ga.home.com (ci350185-a.athen1.ga.home.com [24.9.210.117]) by hub.freebsd.org (Postfix) with ESMTP id 7D01C37B502 for ; Sun, 1 Oct 2000 09:24:08 -0700 (PDT) Received: (from chapmanb@localhost) by ci350185-a.athen1.ga.home.com (8.11.0/8.11.0) id e91GO7513902; Sun, 1 Oct 2000 12:24:07 -0400 (EDT) (envelope-from chapmanb) Message-Id: <200010011624.e91GO7513902@ci350185-a.athen1.ga.home.com> Date: Sun, 1 Oct 2000 12:24:07 -0400 (EDT) From: chapmanb@arches.uga.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21679: New port: biology/biojava Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21679 >Category: ports >Synopsis: New port: biology/biojava >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 09:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Brad Chapman >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: >Description: This is a new port of Biojava -- a set of java libraries for dealing with common tasks in bioinformatics. This is my first port, although it has been checked by a more experienced porter (to eliminate some of my really bad mistakes :-). Feedback on making the port or submission easier to deal with is very welcome. >How-To-Repeat: >Fix: begin 644 biojava.port.tar.gz M'XL(``E+TCD``^U=>W/;MK+/O_&GP&TS)^U,+=EYGJ9IIGK946/)&DFQ?6?N MG`Q(0A)BDF#YL*W3\7>_"X"4J)=-$JLS]\Z8;2R)Q/ZPNUCL+@`2M+CX3F]H M+1!A_&Q/Q_'1T;LW;\@S0H[?OSW*?\)Q_/K5T;OWA+P_AC)OWKY^=PSGCM\= MOWU&CO;%4/Y(HIB&A#RS9S3PJ&_])^K\/W3\2,8S'A'XGY)HQER7T-">\1M6 M(V1$;QCA,>$^7)QPE_U"0N8).$G]>3SC_I18;")"=O`CB26*RWTH0WT'?C*? M)'Y`[6N)8,T)\V,62I(?HID"^P%JZ(L8"*"`1^<`8H>,QHPX/&1V+$+.HM]4 MT4AAYDZ36PZ<6HR(6Y\Y$GXN$ED(0&:2:X=-:.+&)&"AQZ.("S^J'?QXD$J; MBDALX<>4^]$'>>FYI;O"\EN]1Z^9K#]W*KB>KOZJM\Y[O4Y_O':VW1FUAFOG M!F?=4;Z<$FW]=]USW@([S)X)8I-#DG'E78/\Y##(3I!/I.ZPF[J?@"9>??K' ML2:Y6Y(LV8]`1R^C^K^NZO67Y-/Z9?+Q(WG9Z;1P_=K+@ZL?29_=$ND? M(E"8ZT(;@#JAQ5)J,(`/"RZA=%LVH6Y)Y\/SX[=DQ(*8>18+R:NCHR-9Y'(F MO`_/GY^$C#5';=+D0N&S,"(_`=(?$[A@14[-9_'/4%Z2O$@+OU"_#ZX&Y\-Q MO]'K_+YH-G7JHC,<=<_[OS\_KAT='URU&N/.Z?FPVQFII!8]4PAD4A"F]5EU;U&MS^&?YVA`LUS*R\W MOW;/VM_:G0&H%*!?_/UGXZ+Q35I)H]^^__#B;\GGJ-T=WM<5,G2:Y.[PNW,M MB?]L?_F6D^%5[16<`_K%N45IP%V6O=>E`%16.!AV3KI7]W5=]6H1R];) M&%-\6-Q7O-C+,I+9K64DEXXXM!+N.A\.KI[_\9/MD!=_7PZ_C(:M^]_(_\"Y MG-"RKGNB2M>;\B\+:Q)F47#4&7?Z%_=DT!A__AUXAP^II'R]ZYA*D1JSEF(2 MZKJ__2QYJ_$)^2_H_N"*G)_ZYU+9[?/6Z.^+K(,LVRN:T9!IH[!=&D7@#!:%6X/[)41FE:#)L!+]G>>6H'V( M43CYY51VQ/O5N@Z'9-AIM'L=!9CY[7-,IMGVE)Y*C2K%@*&<^)P_\,FQ2.:WEKILEO5,FD^2G\K0T;- MN_YTL"-V;<10%;S7XZ@\62"6YB/]]G":*[$MHN8N0U`]#YA_J&.*"DC05,*- M9"PE02AL!BF+S*Y4R.(V=8E#8[HN:)ZGK0SK)&0WN^KZ+F;516!U#)8#$?I/ MR>4@%-_!/E2ZZ!.1$R)(KSA@A[8,_=+XX.0-=Z0D?ZK(443(FD[15(*7-;>P M)+:B/+B"))T'B4MC21RQOQ+F`]0ORK))0,,(THA?2.M\V&P``"05P&9(+>[R M>`[)J2WK!>8.KAHMUF[^0IRY3SUN2Y:F(?4\@-4Y;,2]`"#!GF,>Q8K!4"10 M+8MJ1)IC7C.NZM!SJ9DD8I/$56+2)!:>YC2>B0CR4LK=N4+W$M^A/CNX`OFY M#X5E.>A.,8VN`;\1J2Z;P<+%))12QAMU9NDP>":E;B:3=2'159Z6!/#G=L;M M&;%$#*DW9"LD$I/X5G97R8DM/(^%-@?Y9+Y.IY"47MG0OI;,HV^8"PIT:E+@ MR\O+#V06JV3I]O8VGRQMLTUM?ELM4Z?"NRU37=]EF>HB6.86%YD+C%NOIX%O MY5I*Y'BC;/C5\>_'KVNP3#%?8P`7$Y=ZMIQ M3F0L'8NN[["[0JREI"TU."I-IEHH:ZXRA&?@OH`NZOKEZARS*#YEOD7]Z\(T M"U5.-6'1>L8A]2-7N:Q2_$FS*L]H#RL-;'K&& MRZ>^5[1'`N$$DI?:1':1`H4O./1`BZM*BE:0NOC:+/8>5T$`[D%.ED#_ M2N#X)00I)G@T]RSA*L?1\"P^32#M+.:@EH0CE7F6\QT9N4RQR]9W'CHL[(_4 M"1DLRM*?T@!2Q.KTE]QWQ&UY!/;7#:16+*P7M)8E@0P;%^IKR9I4\Z0Q>`#Y M^Z/!!X;(=1KP^FG_O->I?_6O?7'K?Q9J(NP1'[Q*FCKNPQ@RRFJ4$QC>E"3] MEC+\[5P.HF(UCUX*(*6O6.N85^2W"QVH2:.*U*,XL2J)^9FY0=5VC1+/@Z%> M46(Y0:TS^$C8URQ&QREC9SM!2IG(*&B-A=7TLI!ZTG-O5LV9(:#C&H*"&;,)"-7C%P1O/`P0H%*[,G2\, M3U%!*KJ5'$)5AR('VC9K^+Z(]7B^*L1BKL,4H-TL#P'D'9>I]+L*;;5N8^`S MJ_I(H*OH?%K"]_7-`.5IP1-3JT1^MD)9E>&JB82)KZ_NV\U\N8'O-O75!K[9 MH%:CK*Q1I48@&K#0':@EITKD7X=GU>AB[A8>ARTI/U/?<2NRVKFS65"MKVM! M#0",XZ+D/PQ%!]D/9+NY!]!N+!%%B`:-*3NNT/`E7=;;`R2V M'O/F:02T;&HDF'*I[0-`F%Q4-1W-Y1$S-87.W<(F(.LPPL7E%U6/*HSDFBCDCV3&B`2-9 M;BZ>8TB7>5\L$=<3`TP>47O!)BYFVZ!@H0EJS$T^;)5;>WL`G-Y-'/>^C!D4Y,E)2<-'P1"D'(%#E=,>5\!,H<*TIS+\R0^GPRI M/V4(_.7`S#D+=!SE#I+R5O',^AZD,#),S1+O;`HK)*9+K6P-$X1"'+1Q> MRJ[X[,+`D4DAF.B)J`HR4TF`Z?I2UCPIK4ND5 M^5E/'SI33Z%TISX@#QG@.Y56RW8!5UWP>0RO]+K/+L#3DY.VL!-YLT6%-I)T`OR:M:C2X M\FO_18VA84L'T'#=?8"G>0BJW:U4,,H>*MQ?#>JQ8U3\RY`C@67B1XT(<%$0 MU1,AJ.X'.8+M"0XC9J'&JQZKCN$$^N:H"Q8+XPB_?);/2$DY&"/]R&?X1"QO MJ36"&/0H9,EW!A"==,,G4U9Z-+P6-ZJ]3-N[:\Z,NJS4B.532P_XK)3RT$>,VNK M)9AYNU\R/IW%QEVK/3`@;E@P_J5V;"Y-DR;>)7/MV8C*J(@"9#K\U^,G=,#`PY!_,3B*?V4>( M/]FC_T:=)7W@_G.O9^)I5=*($)4U$%9@U6@XX37%P@FR2V/"X0@A7BLPE*BK MD#"[BT9$BBPI.R@ML`0Q]5=YX=+GF8R\^F6O$1GUZ"O/Q>DW7==E4^KF5(4X M'#$<`DX3+A_@4B/HNMX2(!M0#YGOF$S?K$!CC)ZV`AJ-HU80TXD:5+'WHLLF MC;B]#VY3S*8K[.N]6@&"T6(9%)H=G8FI@'3$-YC6DC!I'XSGU0=:$J9)0R2& M\CLR24@CK'[#6+*!"S(9HXQ6MA5!`VJ*L.0ZW@:>SD)PK`"QOXW978Q@46JC MKZ\^EWLPKNSU98*',C67!S*;G)-(:++E@4R'J>MXIGGI#KR6``NYJYX+2MAL M`@--CRTA^Y5<]82.L-?6:>OM\-$;KM]`8_N4!FA8>B6])1(_CC`,2LT,8#&7 MCLKW!X^=UK1':!2%H'6JO^26L0M>T_U3NGI; M]]+[N6R!QNE1*U"&/4IA==MRWWB#/J3U5FG'F0>!$%6?SF$Q!XW-%K7E>X#0 M\#[3:(8&EC5I<]['LX_F_.NP;XHEMV%&;`7$O@\?^H9-L[MA4BBLOIZ#,N[K M\+'86?5$;;MOB*8V-&^SR`ZYFD$=,FHPX,Y`TWFO])4YABV:W8Z%(6XVED`6 M6.[(BM<<*$CIWN'S6^CR8%1>0/)WW66,MWDICB M!#-J57]*+8.)A<=MK7E#J%8HH@@\FI/8,1)W>4@4'D^XSV.&Q)UQR-,P*(+E M7OR"`63V6%[V8IKE&\G&)L\89*::IN58EI_"H6D.,NBQN&9^A,5@!J,2(630 M'O7!HYFV\#J:U.)E*-]E9(HL5_;E*SB1^MBF(Y$3VBA6WA:)Y6*YE#4P_1/) M\]TQYY([\0Q%ZHT75AEF`'[,P("0M+B.EOY&T>/"(%6O1#+/!4SV19H_-9L3 MT`E@_BY'1"BT M5D#.1T;R23";\;FP]7ZQI.#Z0>H=)[A_(X36[^<#Z22)*5LB^NV,:&T2X*&-,'::N8 M^"WSALTAZ$&),:*>/C8%"KDS95MV,5MTVX9#@ZIK&SO`C2WC$=SJUK(#>'W/ M>TSL=*YS#VI>WV]^/]A[1,[M;8UJV_M0R&AEV_`](>]/(7N`U.OF^&:]O'-M MC^"9JO?H_4S"LX8V?H?O@WB&WMG@]<\[T7(O6*Z")5^9&=6C&Z\>RV5#_>#W MD$U#IO86P(`T5=XNO,KZ6P=&9',VLFG%O4S6\5LN!65..`L[ M=VJ'E/V`JDF0Y6G$2BIUH$>UO`_,7N+&7([UH?$HB@HVJN@GKJL>]\"V14G,+?Z.$Q/9!!FEI!X M;A+104+,]TJ_PW,3!EISZ9@J[Y6Q@H?A1`!F+'<>-K38;,LR@QMU-\%,=BQ; MHBV6)9$;((>+H<'TL16,-FUS.A4^=1N.@PF'R.$9]QD-<9"B>)1X*%VA=V[P MG.H2I\_`;%$TWY>W^>O;GS'@!L*=^\+CU,5`&U('D.1+EU"4SZ>>X"A:TY.N M6&Y;KYM@.^\,%<-S@-TN1RLH%CP*Y/(!1K:Q@H1LSJ"^I=P(C8*:RF0QK/)^ M7XE\H7;=AG@J@XQ\L[WZ@@!EFF7M@*N<:NW`,VB&-<1&%+%0;S#!(8LV6DE9 M@QZ(*(8?CMJPK"_BGN$2U#I\R/#1[SR4]:U-,#.#RB,9VI*$NNJ=#1@+#6YH M7L%J\RB@<=4M#3;8,GC<3F,A:>K<^@Z^^2M\KXXA]X+D=H]Y%@L'+K4-[I?7 M@/(I$F<0BD#V6E;I/OY5)1E;N5Y.1^A[5;J*PP)P`W(9_M`ML6!.7=>6.0N+ MRAD)ET^"%RV,/9;>DFR>A*B1+)S;SELQ;.H9SG*2F4TG:!XC/F M!H?PJ[0L98P@DIN<13,&R:(=146;\9`NWM;QA\/#T",YNM0ZMEU:A62>`$R; M.5;!LM/)I&!)O5M`\<(%2SJJY8H5#0H6;'+1DBLV!8O+O9*+ZE;?=%)<"])Z M6%BL_..E,HM1BRG%BTOGIHRB'@G[FA70]Q9*%3J$];T2<1%SV"`K1])<6Z:K M1EV.*HL8%E]Y.XHQ2'6`(GUD%VU^9U,C%`/V"WF#G7>$J0P$S*XGM8'9]W1^(#9,T%L MKK&UN/CRX*K7?DM^RLM0BVE8F_[[9_([L=],7K/7O[Z?3-["?Z^M]\<.?6>_ M9N^M=_^T?K5^71=WR12[X_'!P;.GX^EX.IZ.I^/I>#J>CJ?CZ7@ZGHZGX^EX 1.IZ.I^/_Q_&_-T\X!0#(``#! ` end >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 9:31:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 943FA37B502; Sun, 1 Oct 2000 09:31:47 -0700 (PDT) Received: (from jmz@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA63858; Sun, 1 Oct 2000 09:31:47 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Date: Sun, 1 Oct 2000 09:31:47 -0700 (PDT) From: Message-Id: <200010011631.JAA63858@freefall.freebsd.org> To: slk@waterbinarytree.org, jmz@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21680: FIX for x11/XFree86-4 compile failure due to bad patch Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: FIX for x11/XFree86-4 compile failure due to bad patch State-Changed-From-To: open->closed State-Changed-By: jmz State-Changed-When: Sun Oct 1 09:31:16 PDT 2000 State-Changed-Why: Already fixed. http://www.freebsd.org/cgi/query-pr.cgi?pr=21680 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 11:10:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 686DC37B503 for ; Sun, 1 Oct 2000 11:10:08 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA33084; Sun, 1 Oct 2000 11:10:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freebird.and.or.jp (freebird.and.or.jp [210.161.153.96]) by hub.freebsd.org (Postfix) with ESMTP id 6F5E437B66C for ; Sun, 1 Oct 2000 11:01:24 -0700 (PDT) Received: (from sa2c@localhost) by freebird.and.or.jp (8.11.0/8.11.0) id e91I1N376469; Mon, 2 Oct 2000 03:01:23 +0900 (JST) (envelope-from sa2c) Message-Id: <200010011801.e91I1N376469@freebird.and.or.jp> Date: Mon, 2 Oct 2000 03:01:23 +0900 (JST) From: NIIMI Satoshi Reply-To: sa2c@and.or.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21681: the startup elisp file of PSGML port has a load-path problem Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21681 >Category: ports >Synopsis: the startup elisp file of PSGML port has a load-path problem >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 11:10:07 PDT 2000 >Closed-Date: >Last-Modified: >Originator: NIIMI Satoshi >Release: FreeBSD 4.1.1-RELEASE i386 >Organization: >Environment: FreeBSD freebird.and.or.jp 4.1.1-RELEASE FreeBSD 4.1.1-RELEASE #0: Wed Sep 27 06:24:15 JST 2000 sa2c@freebird.and.or.jp:/usr/obj/usr/src/sys/GENERIC i386 >Description: PSGML port comes from a startup lisp file that defines load-path and some other environments. >How-To-Repeat: Emacs 20 works fine. But use emacs 19 or mule to repeat this problem. >Fix: Index: files/psgml-startup.el.in =================================================================== RCS file: /home/ncvs/ports/editors/psgml-emacs/files/psgml-startup.el.in,v retrieving revision 1.3 diff -u -r1.3 psgml-startup.el.in --- files/psgml-startup.el.in 2000/02/09 13:26:40 1.3 +++ files/psgml-startup.el.in 2000/10/01 17:37:48 @@ -3,7 +3,7 @@ ;; -- by shige@FreeBSD.ORG ;; setup load-path -(if (fboundp 'normal-top-level-add-subdirs-to-load-path) +(if (not (fboundp 'normal-top-level-add-subdirs-to-load-path)) (setq load-path (append '( "@@PREFIX@@/@@EMACS_LIBDIR@@/site-lisp/psgml" ) load-path))) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 11:20: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F11637B503 for ; Sun, 1 Oct 2000 11:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA38623; Sun, 1 Oct 2000 11:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 76C0437B66E; Sun, 1 Oct 2000 11:14:13 -0700 (PDT) Message-Id: <20001001181413.76C0437B66E@hub.freebsd.org> Date: Sun, 1 Oct 2000 11:14:13 -0700 (PDT) From: ats@first.gmd.de To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21682: ports/x11-wm/sapphire-themes missing checksum Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21682 >Category: ports >Synopsis: ports/x11-wm/sapphire-themes missing checksum >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 11:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Andreas Schulz >Release: 4.1-RELEASE >Organization: GMD-FIRST >Environment: FreeBSD freebsd.first.gmd.de 4.1-RELEASE FreeBSD 4.1-RELEASE #0: Wed Aug 30 10:5 2:12 CEST 2000 root@freebsd.first.gmd.de:/usr/src/sys/compile/FREEBSD i386 >Description: a make checksum gives No checksum recorded for ... Either the files/md5 needs to be corrected to search sapphire-themes without the subdir sapphire or the Makefile needs the addition of a DIST_SUBDIR= sapphire line. I think the second was the intention :-) >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 12:23:19 2000 Delivered-To: freebsd-ports@freebsd.org Received: from baerenklau.de.freebsd.org (baerenklau.de.freebsd.org [195.185.195.14]) by hub.freebsd.org (Postfix) with ESMTP id 558AE37B66C for ; Sun, 1 Oct 2000 12:22:13 -0700 (PDT) Received: (from uucp@localhost) by baerenklau.de.freebsd.org (8.8.8/8.8.8) with UUCP id VAA12446; Sun, 1 Oct 2000 21:22:11 +0200 (CEST) (envelope-from wosch@panke.de.freebsd.org) Received: (from wosch@localhost) by paula.panke.de.freebsd.org (8.9.3/8.8.8) id VAA00703; Sun, 1 Oct 2000 21:14:38 +0200 (CEST) (envelope-from wosch) Date: Sun, 1 Oct 2000 21:14:38 +0200 (CEST) Message-Id: <200010011914.VAA00703@paula.panke.de.freebsd.org> From: Wolfram Schneider To: ports@freebsd.org Subject: New ports added/updated last two weeks Reply-To: ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Introduction - ------------ The FreeBSD Ports Collection offers a simple way for users and administrators to install applications. Each "port" listed here contains any patches necessary to make the original application source code compile and run on FreeBSD. Installing an application is as simple as downloading the port, unpacking it and typing make in the port directory. The Makefile automatically fetches the application source code, either from a local disk or via ftp, unpacks it on your system, applies the patches, and compiles. If all goes well, simply type make install to install the application. For more information about using ports, see the ports collection http://www.freebsd.org/handbook/ports.html and http://www.freebsd.org/ports/ There are currently 3944 ports in the FreeBSD Ports Collection. New ports added last two weeks - ------------------------------ Category audio (http://www.freebsd.org/ports/audio.html) ================================================================== autozen-1.2.1 Adjust brain waves with sound Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, gettext-0.10.35, glib-1.2.8, gtk-1.2.8 fcplay-0.0.1 Future Composer Reference Player Maintained by: anders@fix.no Requires: libsidplay-1.36.44 festdoc-1.4.0.1 Festival documentation Maintained by: trevor@jpj.net festival-1.4.1 Festival is an advanced multi-lingual speech synthesis system Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, esound-0.2.19, gettext-0.10.35, gmake-3.79.1, libaudiofile-0.1.9, nas-1.4.1 festlex-cmu-1.4.1 CMU American English pronunciation dictionary for Festival Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, esound-0.2.19, festival-1.4.1, libaudiofile-0.1.9, nas-1.4.1 festlex-oald-1.4.1 Oxford Advanced Learner's pronunciation dictionary for Festival Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, esound-0.2.19, festival-1.4.1, libaudiofile-0.1.9, nas-1.4.1 festlex-ogi-2.0 Composite pronunciation dictionary from ogi.edu for Festival Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, esound-0.2.19, festival-1.4.1, festlex-poslex-1.4.1, libaudiofile-0.1.9, nas-1.4.1 festlex-poslex-1.4.1 English lexicon for Festival Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, esound-0.2.19, festival-1.4.1, libaudiofile-0.1.9, nas-1.4.1 festogi-spanish-2.0 Festival Spanish (Mexican) language support routines (in scheme) Maintained by: trevor@jpj.net festvox-abc-2.0 Mexican Spanish male voice for the Festival speech synthesis system Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, esound-0.2.19, festival-1.4.1, festlex-ogi-2.0, festlex-poslex-1.4.1, festogi-spanish-2.0, libaudiofile-0.1.9, nas-1.4.1 festvox-don-1.4.0 British English male voice for the Festival speech synthesis system Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, esound-0.2.19, festival-1.4.1, festlex-oald-1.4.1, festlex-poslex-1.4.1, libaudiofile-0.1.9, nas-1.4.1 festvox-el11-1.4.0 Castilian Spanish male voice for Festival Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, esound-0.2.19, festival-1.4.1, libaudiofile-0.1.9, nas-1.4.1 festvox-hvs-2.0 Mexican Spanish female voice for the festival Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, esound-0.2.19, festival-1.4.1, festlex-ogi-2.0, festlex-poslex-1.4.1, festogi-spanish-2.0, libaudiofile-0.1.9, nas-1.4.1 festvox-jph-2.0 American English male voice for Festival Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, esound-0.2.19, festival-1.4.1, festlex-ogi-2.0, festlex-poslex-1.4.1, libaudiofile-0.1.9, nas-1.4.1 festvox-kal16-1.4.0 American English male voice, sampled at 16 kHz, for Festival Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, esound-0.2.19, festival-1.4.1, festlex-cmu-1.4.1, festlex-poslex-1.4.1, libaudiofile-0.1.9, nas-1.4.1 festvox-kal8-1.4.0 American English male voice, sampled at 8 kHz, for Festival Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, esound-0.2.19, festival-1.4.1, festlex-cmu-1.4.1, festlex-poslex-1.4.1, libaudiofile-0.1.9, nas-1.4.1 festvox-ked16-1.4.0 American English male voice, sampled at 16 kHz, for Festival Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, esound-0.2.19, festival-1.4.1, festlex-cmu-1.4.1, festlex-poslex-1.4.1, libaudiofile-0.1.9, nas-1.4.1 festvox-ked8-1.4.0 American English male voice, sampled at 8 kHz, for Festival Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, esound-0.2.19, festival-1.4.1, festlex-cmu-1.4.1, festlex-poslex-1.4.1, libaudiofile-0.1.9, nas-1.4.1 festvox-mwm-2.0 American English male voice for Festival Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, esound-0.2.19, festival-1.4.1, festlex-ogi-2.0, festlex-poslex-1.4.1, libaudiofile-0.1.9, nas-1.4.1 festvox-ogirab-2.0 British English male voice for Festival (non-commercial use only) Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, esound-0.2.19, festival-1.4.1, festlex-ogi-2.0, festlex-poslex-1.4.1, libaudiofile-0.1.9, nas-1.4.1 festvox-rab16-1.4.1 16 kHz British English male voice for the Festival speech synthesis system Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, esound-0.2.19, festival-1.4.1, festlex-oald-1.4.1, festlex-poslex-1.4.1, libaudiofile-0.1.9, nas-1.4.1 festvox-rab8-1.4.1 British English male voice, sampled at 8 kHz, for festival Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, esound-0.2.19, festival-1.4.1, festlex-oald-1.4.1, festlex-poslex-1.4.1, libaudiofile-0.1.9, nas-1.4.1 festvox-tll-2.0 American English female voice for Festival (no commercial use) Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, esound-0.2.19, festival-1.4.1, festlex-ogi-2.0, festlex-poslex-1.4.1, libaudiofile-0.1.9, nas-1.4.1 gkrellmms-0.5.4 GKrellM XMMS Plugin Maintained by: ume@FreeBSD.org Requires: XFree86-3.3.6_1, esound-0.2.19, gettext-0.10.35, gkrellm-0.10.5, glib-1.2.8, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libmikmod-3.1.9, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xmms-1.2.3_1 glame-0.2.0 A powerful, fast, stable, and easily extensible sound editor for GNOME Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, bzip2-1.0.1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomecontrolcenter-1.2.2, gnomecore-1.2.2.1, gnomelibs-1.2.4_2, gtk-1.2.8, guile-1.4, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k kdemultimedia-1.94 Utilities for the KDE integrated X11 desktop Maintained by: will@FreeBSD.org Also listed in: misc kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdelibs-1.94, kdesupport-1.94, libaudiofile-0.1.9, png-1.0.8_1, qt-2.2.0_1, tiff-3.5.5 openal-20000908 A 3D positional spatialized sound library Maintained by: ports@FreeBSD.org Requires: autoconf-2.13, m4-1.4 p5-MP3-ID3v1Tag-1.10 Edit ID3v1 Tags from an Audio MPEG Layer 3 Maintained by: leo@florida.sarang.net Also listed in: perl5 spiralsynth-0.1.5 MIDI-capable synthesizer for X Maintained by: trevor@jpj.net Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, fltk-1.0.9 sweep-0.0.9 A sound editor for GNOME desktop Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, bzip2-1.0.1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomecontrolcenter-1.2.2, gnomecore-1.2.2.1, gnomelibs-1.2.4_2, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k vorbis-20000821 MP3-comparable audio compression codec and tools Maintained by: t.vanklaveren@student.utwente.nl Requires: XFree86-3.3.6_1, autoconf-2.13, esound-0.2.19, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, libaudiofile-0.1.9, libgnugetopt-1.1, libmikmod-3.1.9, libxml-1.8.10, m4-1.4, xmms-1.2.3_1 Category chinese (http://www.freebsd.org/ports/chinese.html) ================================================================== zh-stardict-1.3 English-Chinese dictionary Maintained by: phj@cn.FreeBSD.org Requires: XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, xpm-3.4k zh-tin-1.5.6 Easy-to-use threaded newsreader with NOV/NNTP support Maintained by: ache@FreeBSD.org Requires: bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, uulib-0.5.13 zh-tintin-1.5.9 A client program to help playing muds Maintained by: jhp@cocoja.holywar.net Also listed in: net games zh-xmms-1.2.3_1 X Multimedia System --- An audio player with a Winamp GUI Maintained by: esk@ira.uka.de Requires: XFree86-3.3.6_1, esound-0.2.19, freetype-1.3.1, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, ja-p5-jcode.pl-2.11, libaudiofile-0.1.9, libmikmod-3.1.9, libtool-1.3.4_1, libxml-1.8.10, perlftlib-1.2, xtt-common-1.3.0, zh-arphicttf-2.11 Category converters (http://www.freebsd.org/ports/converters.html) ================================================================== p5-Unicode-Map8-0.10 Perl class that implement efficient mapping tables between 8-bit charsets and Unicode Maintained by: ilia@cgu.chel.su Also listed in: perl5 Requires: p5-Unicode-String-2.06 p5-Unicode-String-2.06 These are experimental Perl5 modules to handle various Unicode issues Maintained by: ilia@cgu.chel.su Also listed in: perl5 Requires: p5-MIME-Base64-2.11 Category databases (http://www.freebsd.org/ports/databases.html) ================================================================== dbmetrix-0.1.9 Another GTK+ frontend for mysql Maintained by: joseph@randomnetworks.com Requires: XFree86-3.3.6_1, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, mysql-client-3.22.32 p5-DBD-XBase-0.161 Provides access to XBase (dBase, Fox*) database files through DBI Maintained by: ilia@cgu.chel.su Also listed in: perl5 Requires: p5-DBI-1.14 Category deskutils (http://www.freebsd.org/ports/deskutils.html) ================================================================== notebook-1.0.1 Organizer for storing information and to-do lists Maintained by: lioux@linf.unb.br Requires: JX-1.5.3_1, XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, libjtoolbar-0.5.4_1, libjtree-1.1.7_1, png-1.0.8_1, xpm-3.4k Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== clanlib-0.4.4 Cross-platform game SDK Maintained by: sobomax@FreeBSD.org Requires: Hermes-1.3.2, Mesa-3.2.1_1, XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, png-1.0.8_1, svgalib-1.4.2 code_medic-1.0.4 Provides an elegant graphical interface to gdb Maintained by: lioux@linf.unb.br Requires: JX-1.5.3_1, XFree86-3.3.6_1, bison-1.28, gettext-0.10.35, gmake-3.79.1, libjsearch-0.5.6_1, libjtree-1.1.7_1, png-1.0.8_1, xpm-3.4k cons-test-2.0.2 A test bed for `Cons' development Maintained by: rv@FreeBSD.org Requires: cons-2.0.2, p5-MD5-1.7 fnorb-1.1 A CORBA 2.0 ORB written in Python Maintained by: johann@egenetics.com Also listed in: python Requires: python-1.6 gpasm-0.8.9 GPASM is the GNU Pic 12c508 and 16c84 microcontrollers family Maintained by: sam@inf.enst.fr gtranslator-0.21 A GNOME application for developing ".pot" files used with GNU Gettext Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, bzip2-1.0.1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomecontrolcenter-1.2.2, gnomecore-1.2.2.1, gnomelibs-1.2.4_2, gnomemc-4.5.51, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, oaf-0.5.1, png-1.0.8_1, popt-1.5, tiff-3.5.5, xpm-3.4k p5-Tie-DB_FileLock-0.10 Locking access to Berkeley DB v1.x Maintained by: josh@zipperup.org Also listed in: perl5 projectcenter.app-0.1.0 A development environment for GNUstep Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, gnustep-0.6.6, jpeg-6b, tiff-3.5.5 titano-0.0.5b_1 An IDE for GNOME desktop Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, esound-0.2.19, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomelibs-1.2.4_2, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k Category editors (http://www.freebsd.org/ports/editors.html) ================================================================== iiimecf-emacs20-0.2 Internet/Intranet Input Method Emacs Client Framework for GNU Emacs 20 Maintained by: okazaki@be.to Also listed in: elisp Requires: XFree86-3.3.6_1, emacs-20.7, mule-ucs-emacs20-0.82 vim+ruby-6.0h Vi IMproved version 6 with embedded Ruby interpreter Maintained by: obrien@FreeBSD.org Also listed in: ruby Requires: XFree86-3.3.6_1, autoconf-2.13, m4-1.4, python-1.6, ruby-1.6.1, tcl-8.0.5, xpm-3.4k Category emulators (http://www.freebsd.org/ports/emulators.html) ================================================================== dgen-sdl-1.20a A wonderful Sega Genesis/MegaDrive emulator Maintained by: sobomax@FreeBSD.org Requires: XFree86-3.3.6_1, esound-0.2.19, libaudiofile-0.1.9, nasm-0.98, sdl-1.0.8_1, svgalib-1.4.2 Category french (http://www.freebsd.org/ports/french.html) ================================================================== fr-ispell-1.4 An interactive spelling checker for multiple languages Maintained by: jmz@FreeBSD.org Also listed in: textproc elisp fr-staroffice-5.2 Suite bureautique integree Maintained by: mb@imp.ch Also listed in: editors linux Requires: linux_base-6.1 Category games (http://www.freebsd.org/ports/games.html) ================================================================== bomberinstinct-0.8.21 A nice Bomberman-like multiplayer game Maintained by: sobomax@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, aalib-1.2, esound-0.2.19, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, libaudiofile-0.1.9, libmikmod-3.1.9, sdl-devel-1.1.5, sdl_mixer-1.0.6, smpeg-0.4.0, svgalib-1.4.2 clanbomber-1.01 A bomberman-like multiplayer game Maintained by: sobomax@FreeBSD.org Requires: Hermes-1.3.2, Mesa-3.2.1_1, XFree86-3.3.6_1, clanlib-0.4.4, png-1.0.8_1, svgalib-1.4.2 gomoku.app-1.0.2 An extended TicTacToe game for GNUstep Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, gnustep-0.6.6, jpeg-6b, tiff-3.5.5 madbomber-0.1.8 A clone of Activision's classic Atari 2600 console game "Kaboom!" Maintained by: sobomax@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, aalib-1.2, esound-0.2.19, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, jpeg-6b, libaudiofile-0.1.9, libmikmod-3.1.9, png-1.0.8_1, sdl-devel-1.1.5, sdl_image-1.0.10, sdl_mixer-1.0.6, smpeg-0.4.0, svgalib-1.4.2, tiff-3.5.5 pysol-cardsets-4.40 Collection of free cardsets adapted for use with PySol Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_1, py-tkinter-1.6, pysol-4.60, python-1.6, tcl-8.3.1, tk-8.3.1 pysol-music-4.40 Collection of background music for use with PySol Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_1, py-tkinter-1.6, pysol-4.60, python-1.6, tcl-8.3.1, tk-8.3.1 Category german (http://www.freebsd.org/ports/german.html) ================================================================== de-ispell-alt-19991219 An interactive spelling checker for multiple languages Maintained by: jmz@FreeBSD.org Also listed in: textproc elisp de-ispell-neu-19991219 An interactive spelling checker for multiple languages Maintained by: jmz@FreeBSD.org Also listed in: textproc elisp de-ispell-19991219 An interactive spelling checker for multiple languages Maintained by: jmz@FreeBSD.org Also listed in: textproc elisp de-staroffice-5.2 Integrated wordprocessor/dbase/spreadheet/drawing/chart/browser Maintained by: mb@imp.ch Also listed in: editors linux Requires: linux_base-6.1 Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== avifile-0.47.1 An MPEG-4 (DivX) video player Maintained by: holger@eit.uni-kl.de Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, aalib-1.2, esound-0.2.19, gettext-0.10.35, gmake-3.79.1, jpeg-6b, libaudiofile-0.1.9, png-1.0.8_1, qt-2.2.0_1, sdl-devel-1.1.5, svgalib-1.4.2, unzip-5.41 guilib-1.1.0 A very simple GUI framework for use with SDL Maintained by: sobomax@FreeBSD.org Requires: XFree86-3.3.6_1, esound-0.2.19, gettext-0.10.35, gmake-3.79.1, libaudiofile-0.1.9, libtool-1.3.4_1, sdl-1.0.8_1, svgalib-1.4.2 kdegraphics-1.94 Utilities for the KDE integrated X11 desktop Maintained by: will@FreeBSD.org Also listed in: kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdelibs-1.94, kdesupport-1.94, libaudiofile-0.1.9, png-1.0.8_1, qt-2.2.0_1, tiff-3.5.5 linux-png-1.0.3 RPM of png lib Maintained by: ports@FreeBSD.org Also listed in: linux Requires: linux_base-6.1, rpm-2.5.6 panorama-0.13.2 GNU framework for 3D graphics production Maintained by: avh4@usa.net Requires: gettext-0.10.35, gmake-3.79.1 ruby-libpng-0.3.3_2 A libpng wrapper class for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: png-1.0.8_1, ruby-1.6.1, ruby-amstd-1.9.5, ruby-optparse-0.7.5, ruby-racc-runtime-1.2.4, ruby-rdtool-0.6.5, ruby-strscan-0.5.8 sdl_image-1.0.10 A simple library to load images of various formats as SDL surfaces Maintained by: sobomax@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, aalib-1.2, esound-0.2.19, gettext-0.10.35, gmake-3.79.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, png-1.0.8_1, sdl-devel-1.1.5, svgalib-1.4.2, tiff-3.5.5 sdl_ttf-1.2.2 A library to use TrueType fonts to render text in SDL applications Maintained by: sobomax@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, aalib-1.2, esound-0.2.19, freetype-1.3.1, gettext-0.10.35, gmake-3.79.1, libaudiofile-0.1.9, libtool-1.3.4_1, sdl-devel-1.1.5, svgalib-1.4.2 Category irc (http://www.freebsd.org/ports/irc.html) ================================================================== xchat-1.5.7 An X11 IRC client using the GTK+ toolkit, and optionally, GNOME Maintained by: jim@FreeBSD.org Also listed in: gnome Requires: XFree86-3.3.6_1, bzip2-1.0.1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-ruby-tk-1.6.1 Ruby interface to the Tk widget set Maintained by: knu@FreeBSD.org Also listed in: x11-toolkits ruby tk80 Requires: XFree86-3.3.6_1, ja-ruby-tcltklib-1.6.1, ja-tcl-8.0.5, ja-tk-8.0.5, ruby-1.6.1 ja-ruby14-tk-1.4.6 Ruby interface to the Tk widget set Maintained by: yasuf@bsdclub.org Also listed in: x11-toolkits ruby tk80 Requires: XFree86-3.3.6_1, ja-ruby14-tcltklib-1.4.6, ja-tcl-8.0.5, ja-tk-8.0.5, ruby-1.4.6 Category java (http://www.freebsd.org/ports/java.html) ================================================================== openjit-1.1.15 A high-performance reflective Java Just-In-Time (JIT) bytecode compiler Maintained by: sobomax@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1, javavmwrapper-1.1, jdk-1.1.8 Category korean (http://www.freebsd.org/ports/korean.html) ================================================================== ko-texinfo-0.4.1 Korean enabled Texinfo formatter Maintained by: cjh@FreeBSD.org Also listed in: print Requires: XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, ko-HLaTeX-0.991, libwww-5.3.1, png-1.0.8_1, teTeX-1.0.7 Category mail (http://www.freebsd.org/ports/mail.html) ================================================================== arrow-1.0.8 Mail Reader for X: view, compose and organize; e.g, PGP, GnuPG, POP & APOP Maintained by: lioux@linf.unb.br Requires: JX-1.5.3_1, XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, libjsearch-0.5.6_1, libjtoolbar-0.5.4_1, libjtree-1.1.7_1, png-1.0.8_1, xpm-3.4k qmail-ldap-1.03.20000701 A SECURE, reliable, efficient, simple, and FAST MTA for UNIX systems Maintained by: lioux@linf.unb.br Requires: openldap-1.2.11 qmailadmin-0.35 CGI program for administering Qmail with vchkpw/vpopmail Maintained by: nbm@FreeBSD.org Also listed in: www Requires: autorespond-1.0.0, ezmlm-idx-0.40, gettext-0.10.35, gmake-3.79.1, qmail-1.03, ucspi-tcp-0.88, vpopmail-4.9 sqwebmail-1.0 CGI Webmail client for Maildirs Maintained by: nbm@FreeBSD.org Also listed in: www vpopmail-4.9 Easy virtual domain and authentication package for use with qmail Maintained by: nbm@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1, qmail-1.03, ucspi-tcp-0.88 vrfy-1.0 Verify mail address Maintained by: kaz@kobe1995.net Category math (http://www.freebsd.org/ports/math.html) ================================================================== p5-Math-Expr-0.4 Perl module for parsing mathematical expressions into a tree structure Maintained by: lioux@linf.unb.br Also listed in: perl5 p5-Math-Logic-1.19 Perl module providing pure 2, 3 or multi-value logic Maintained by: lioux@linf.unb.br Also listed in: perl5 thx_1138-1.0.5 Electronic Paper for Calculations and Graphs Maintained by: lioux@linf.unb.br Requires: JX-1.5.3_1, XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, libj2dplot-0.6.5, libjparser-1.1.8, png-1.0.8_1, xpm-3.4k Category misc (http://www.freebsd.org/ports/misc.html) ================================================================== bogosort-0.3.1 Sort (or not) stdin using the bogo-sort algorithm Maintained by: roam@orbitel.bg Requires: autoconf-2.13, automake-1.4, gettext-0.10.35, gmake-3.79.1, m4-1.4 gnomepm-0.9.1 A small GNOME app that collects stock information from Yahoo!(c) Finance Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, bzip2-1.0.1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gnomecontrolcenter-1.2.2, gnomecore-1.2.2.1, gnomelibs-1.2.4_2, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libghttp-1.0.7, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k moviedb-3.8 The Internet Movie Database package Maintained by: user@unknown.nu nsf-1.0 NAKAMURA's Shell Form input Maintained by: kaz@kobe1995.net porteasy-1.6 A tool for fetching and building ports Maintained by: des@FreeBSD.org quranref-1.01 An interactive Quran (Koran) Maintained by: user@unknown.nu Requires: icon-9.3.2 Category net (http://www.freebsd.org/ports/net.html) ================================================================== airport-1.2 Apple Airport / Lucent RG-1000 configuration program Maintained by: nsayer@freebsd.org Also listed in: java Requires: javavmwrapper-1.1, jdk-1.1.8, jfc-1.1.1, unzip-5.41 djbdns-1.02 A collection of secure and reliable DNS tools Maintained by: nbm@FreeBSD.org Requires: daemontools-0.70 mmucl-1.4.1 Powerful GUI MUD client written in TCL Maintained by: matt@LUCIDA.QC.CA Requires: XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, tcl-8.2.3, tk-8.2.3 ruby-ldap-0.2 Ruby interface to LDAP API based on RFC1823 Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: openldap-1.2.11, ruby-1.6.1 sdl_net-1.1.1 A small sample cross-platform networking library Maintained by: sobomax@FreeBSD.org Requires: XFree86-3.3.6_1, esound-0.2.19, gettext-0.10.35, gmake-3.79.1, guilib-1.1.0, libaudiofile-0.1.9, libtool-1.3.4_1, sdl-1.0.8_1, svgalib-1.4.2 sntop-1.2.0 Monitor status of network nodes using fping Maintained by: matt@gsicomp.on.ca Requires: fping-2.2b1 tintin-1.8.3 A client program to help playing muds Maintained by: jhp@cocoja.holywar.net Also listed in: games Category print (http://www.freebsd.org/ports/print.html) ================================================================== sgf2tex-3.2 Convert a Go game record in SGF format into TeX and provide fonts to make a dvi Maintained by: spcoltri@code.cs.unm.edu Requires: XFree86-3.3.6_1, libwww-5.3.1, png-1.0.8_1, teTeX-1.0.7 Category security (http://www.freebsd.org/ports/security.html) ================================================================== acid-0.9.4 Analysis Console for Intrusion Databases (ACID) with Snort and MySQL Maintained by: foxfair@FreeBSD.org Requires: apache-1.3.12, mod_php-3.0.16, mysql-client-3.22.32, mysql-server-3.22.32, snort-1.6.3 mindterm-binary-1.2.1 A full vt220 compatible Java SSH client (not only for website) Maintained by: alex@FreeBSD.org Requires: unzip-5.41 p5-Crypt-Blowfish-2.06 Perl5 interface to the Blowfish encryption alogorithm Maintained by: patrick@mindstep.com Also listed in: perl5 uvscan-4.07e Evaluation version of a DOS/Windows file virus scanner Maintained by: kris@FreeBSD.org Requires: uvscan_dat-4096 Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== cdiff-1.0 Diff readability enhancher for color terminals Maintained by: eivind@FreeBSD.org Category www (http://www.freebsd.org/ports/www.html) ================================================================== glibwww-0.2 A library for people wanting to use libwww with gtk/gnome Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, esound-0.2.19, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomelibs-1.2.4_2, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libwww-5.3.1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k knowledgekit-1.6.7 A mechanism for the automatic creation and maintenance of Knowledge Bases Maintained by: nbm@FreeBSD.org Requires: zope-2.2.2 oops-1.4.16 Oops - caching web proxy server. Maintained by: ozz@FreeBSD.org.ru Requires: db-2.7.7 znavigator-2.00 A Zope product to simplify the construction of navigation bars Maintained by: nbm@FreeBSD.org Requires: zope-2.2.2 Category x11-fm (http://www.freebsd.org/ports/x11-fm.html) ================================================================== systemg-1.0.1 UNIX File Manager based on the design of the Macintosh System 7 Maintained by: lioux@linf.unb.br Requires: JX-1.5.3_1, XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, libjtoolbar-0.5.4_1, libjtree-1.1.7_1, png-1.0.8_1, xpm-3.4k Category x11-fonts (http://www.freebsd.org/ports/x11-fonts.html) ================================================================== nucleus-0.77 Another font package for X Maintained by: olgeni@uli.it Requires: XFree86-3.3.6_1 urwfonts-1.0 Another font package for X Maintained by: olgeni@uli.it Requires: XFree86-3.3.6_1 Category x11-toolkits (http://www.freebsd.org/ports/x11-toolkits.html) ================================================================== libgtkeditor-0.1.8 A source code editor widget for GTK+ Maintained by: sobomax@FreeBSD.org Also listed in: editors Requires: XFree86-3.3.6_1, automake-1.4, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, libtool-1.3.4_1, libunicode-0.4_2 Category x11-wm (http://www.freebsd.org/ports/x11-wm.html) ================================================================== sapphire-themes-1.0 Themes for sapphire Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1, jpeg-6b, png-1.0.8_1, sapphire-0.14.2, xli-1.17.0, xloadimage-4.1 Category x11 (http://www.freebsd.org/ports/x11.html) ================================================================== rxvt-devel-2.7.3 A low memory usage xterm replacement that supports color Maintained by: lioux@linf.unb.br Requires: XFree86-3.3.6_1, bzip2-1.0.1, xpm-3.4k wrapper-1.0 Wrapper for X server Maintained by: trevor@jpj.net Requires: XFree86-3.3.6_1 Updated ports last two weeks - ----------------------------------- Category archivers (http://www.freebsd.org/ports/archivers.html) ================================================================== ruby-zlib-0.4.0 An extension library to use zlib from Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.1 Category astro (http://www.freebsd.org/ports/astro.html) ================================================================== openuniverse-1.0.b3 OpenGL Solar System simulator for X Window System Maintained by: will@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, jpeg-6b Category audio (http://www.freebsd.org/ports/audio.html) ================================================================== gnapster-1.3.12 GNOME client for the online mp3 community called napster Maintained by: cpiazza@FreeBSD.org Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, esound-0.2.19, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomelibs-1.2.4_2, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k linux-realplayer-7.cs1 Linux RealPlayer 7.0 from RealNetworks Maintained by: vns@delta.odessa.ua Also listed in: graphics linux Requires: linux_base-6.1, rpm2cpio-1.0 mpg123.el-1.13 Front-end to mpg123 audio player for Emacsen Maintained by: taoka@FreeBSD.org Also listed in: elisp Requires: mpg123-0.59r TekNap-1.2 Console napster client Maintained by: cj@vallcom.net Requires: gettext-0.10.35, gmake-3.79.1 xhippo-2.6 A Generic music player for UNIX systems Maintained by: rod@zort.on.ca Requires: XFree86-3.3.6_1, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, mpg123-0.59r xmms-1.2.3_1 X Multimedia System --- An audio player with a Winamp GUI Maintained by: esk@ira.uka.de Requires: XFree86-3.3.6_1, esound-0.2.19, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, libaudiofile-0.1.9, libmikmod-3.1.9, libtool-1.3.4_1, libxml-1.8.10 xmp-2.0.2 A player for many different Amiga and PC module formats Maintained by: anders@fix.no Requires: XFree86-3.3.6_1, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1 xsidplay-1.3.9 Graphical front end for libsidplay Maintained by: anders@fix.no Also listed in: emulators Requires: XFree86-3.3.6_1, libsidplay-1.36.44, qt-1.45 Category biology (http://www.freebsd.org/ports/biology.html) ================================================================== xdrawchem-0.83 Chemical drawing program Maintained by: trevor@jpj.net Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, png-1.0.8_1, qt-2.2.0_1 Category chinese (http://www.freebsd.org/ports/chinese.html) ================================================================== zh-xcin-2.5.2p5_2 Chinese input method server under X Maintained by: keith@freebsd.sinica.edu.tw Also listed in: x11 Requires: XFree86-3.3.6_1, db-2.7.7, gettext-0.10.35, zh-kcfonts-1.05, zh-libtabe-0.1.6 Category comms (http://www.freebsd.org/ports/comms.html) ================================================================== hylafax-4.1.b2_1 Fax software Maintained by: ports@FreeBSD.org Requires: afm-1.0, bash-2.04, jpeg-6b, tiff-3.5.5 minicom-1.83.1_1 An MS-DOS Telix serial communication program "workalike" Maintained by: obrien@FreeBSD.org Requires: lrzsz-0.12.20 Category converters (http://www.freebsd.org/ports/converters.html) ================================================================== dumpasn1-20000222 Dumps the contents of an ASN.1 encoded file, e.g. an SSL certificate Maintained by: kris@FreeBSD.org Also listed in: security iconv-extra-1.1 Additional charset modules for the iconv library (from Unicode site) Maintained by: Konstantin.Chuguev@dante.org.uk Requires: iconv-1.1 iconv-rfc1345-1.1 Additional charset modules for the iconv library (from RFC1345) Maintained by: Konstantin.Chuguev@dante.org.uk Requires: iconv-1.1 iconv-1.1 Charset conversion library and utility Maintained by: Konstantin.Chuguev@dante.org.uk kdesupport-1.94 Mime and UUENCODE/DECODE libraries for the KDE integrated X11 desktop Maintained by: will@FreeBSD.org Also listed in: kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, iso8879-1986, jade-1.2.1, jpeg-6b, linuxdoc-1.1, png-1.0.8_1, qt-2.2.0_1 mule-ucs-emacs20-0.82 Universal encoding system for GNU Emacs 20 Maintained by: okazaki@be.to Also listed in: elisp Requires: XFree86-3.3.6_1, emacs-20.7 ruby-iconv-0.4.2 An iconv wrapper class for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: iconv-1.1, ruby-1.6.1, ruby-amstd-1.9.5, ruby-optparse-0.7.5, ruby-racc-runtime-1.2.4, ruby-rdtool-0.6.5, ruby-strscan-0.5.8 Category databases (http://www.freebsd.org/ports/databases.html) ================================================================== db3-3.1.17 The Berkeley DB package, revision 3 Maintained by: ozz@FreeBSD.org.ru Requires: libtool-1.3.4_1 gnats-3.113 Cygnus GNATS bug tracking system Maintained by: pst@FreeBSD.org Also listed in: elisp Requires: bison-1.28, gettext-0.10.35, gmake-3.79.1, m4-1.4 ruby-gdbm-1.6.1 A Ruby extension to GDBM library Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: gdbm-1.8.0, ruby-1.6.1 tcl-sql-20000114_1 TCL module for accessing MySQL databases Maintained by: mi@aldan.algebra.com Also listed in: tcl83 Requires: mysql-client-3.22.32, tcl-8.3.1 Category deskutils (http://www.freebsd.org/ports/deskutils.html) ================================================================== gnofin-0.8.1 Light-weight GNOME based financial management program Maintained by: jedgar@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, esound-0.2.19, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomelibs-1.2.4_2, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== ORBit-0.5.3_1 High-performance CORBA ORB with support for the C language Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: gettext-0.10.35, glib-1.2.8, gmake-3.79.1, libtool-1.3.4_1 swig-1.3a5 Simplified Wrapper and Interface Generator Maintained by: knu@FreeBSD.org Also listed in: perl5 python ruby tcl82 Requires: libtool-1.3.4_1, python-1.5.2, ruby-1.6.1, tcl-8.2.3 swig-1.1p5_1 Simplified Wrapper and Interface Generator Maintained by: knu@FreeBSD.org Also listed in: perl5 python tcl82 Requires: python-1.5.2, tcl-8.2.3 bonobo-0.18_1 The component and compound document system for GNOME Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomecontrolcenter-1.2.2, gnomelibs-1.2.4_2, gnomeprint-0.24, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, oaf-0.5.1, png-1.0.8_1, popt-1.5, tiff-3.5.5, xpm-3.4k cdk-4.9.10_1 Curses Development Kit for speedy development of full screen programs Maintained by: obrien@FreeBSD.org code_crusader-2.1.4_1 A UNIX IDE for X inspired by MetroWerks CodeWarrior Maintained by: lioux@linf.unb.br Requires: JX-1.5.3_1, XFree86-3.3.6_1, ctags-4.0.2, gettext-0.10.35, gmake-3.79.1, libjtoolbar-0.5.4_1, libjtree-1.1.7_1, png-1.0.8_1, xpm-3.4k CommonC++-1.2.1_1 GNU project portable class framework for C++ Maintained by: dyfet@gnu.org Requires: gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1 cons-2.0.2 A Perl-based Make Replacement Maintained by: rv@gnu.org Requires: p5-MD5-1.7 cvs2cl-2.29 CVS-log-message-to-ChangeLog conversion script Maintained by: knu@FreeBSD.org cvs2html-1.68 Perl script to turn ``cvs log'' output into HTML Maintained by: ports@FreeBSD.org Also listed in: perl5 cvsweb-1.103.1.26 WWW CGI script to browse CVS repository trees (Zeller's version + enhancements) Maintained by: knu@FreeBSD.org Also listed in: www ddd-3.2.1_1 Data Display Debugger -- a common graphical front-end for GDB/DBX/XDB Maintained by: obrien@FreeBSD.org Requires: XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, xpm-3.4k i386-rtems-binutils-2.10_2 FSF binutils-2.9.5.0.25 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: gettext-0.10.35, gmake-3.79.1 i386-rtems-chill-2.95.2_9 FSF CHILL-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, i386-rtems-binutils-2.10_2, i386-rtems-gcc-2.95.2_9, m4-1.4 i386-rtems-g77-2.95.2_9 FSF F77-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, i386-rtems-binutils-2.10_2, i386-rtems-gcc-2.95.2_9, m4-1.4 i386-rtems-gcc-2.95.2_9 FSF C/C++-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, i386-rtems-binutils-2.10_2, m4-1.4 i386-rtems-gcj-2.95.2_9 FSF JAVA-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, i386-rtems-binutils-2.10_2, i386-rtems-gcc-2.95.2_9, m4-1.4 i386-rtems-gdb-5.0_2 FSF gdb-4.18 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: gettext-0.10.35, gmake-3.79.1, i386-rtems-binutils-2.10_2 i386-rtems-objc-2.95.2_9 FSF OBJC-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, i386-rtems-binutils-2.10_2, i386-rtems-gcc-2.95.2_9, m4-1.4 i960-rtems-binutils-2.10_2 FSF binutils-2.9.5.0.25 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: gettext-0.10.35, gmake-3.79.1 i960-rtems-gcc-2.95.2_9 FSF C/C++-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, i960-rtems-binutils-2.10_2, m4-1.4 i960-rtems-gdb-5.0_2 FSF gdb-4.18 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: gettext-0.10.35, gmake-3.79.1, i960-rtems-binutils-2.10_2 libtool-1.3.4_1 Generic shared library support script Maintained by: reg@FreeBSD.org libunicode-0.4_2 A library for manipulating Unicode characters and strings Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1 m68k-rtems-binutils-2.10_2 FSF binutils-2.9.5.0.25 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: gettext-0.10.35, gmake-3.79.1 m68k-rtems-chill-2.95.2_9 FSF CHILL-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, m68k-rtems-binutils-2.10_2, m68k-rtems-gcc-2.95.2_9 m68k-rtems-g77-2.95.2_9 FSF F77-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, m68k-rtems-binutils-2.10_2, m68k-rtems-gcc-2.95.2_9 m68k-rtems-gcc-2.95.2_9 FSF C/C++-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, m68k-rtems-binutils-2.10_2 m68k-rtems-gcj-2.95.2_9 FSF JAVA-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, m68k-rtems-binutils-2.10_2, m68k-rtems-gcc-2.95.2_9 m68k-rtems-gdb-5.0_2 FSF gdb-4.18 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: gettext-0.10.35, gmake-3.79.1, m68k-rtems-binutils-2.10_2 m68k-rtems-objc-2.95.2_9 FSF OBJC-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, m68k-rtems-binutils-2.10_2, m68k-rtems-gcc-2.95.2_9 mips64orion-rtems-binutils-2.10_2 FSF binutils-2.9.5.0.25 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: gettext-0.10.35, gmake-3.79.1 mips64orion-rtems-chill-2.95.2_9 FSF CHILL-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, mips64orion-rtems-binutils-2.10_2, mips64orion-rtems-gcc-2.95.2_9 mips64orion-rtems-g77-2.95.2_9 FSF F77-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, mips64orion-rtems-binutils-2.10_2, mips64orion-rtems-gcc-2.95.2_9 mips64orion-rtems-gcc-2.95.2_9 FSF C/C++-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, mips64orion-rtems-binutils-2.10_2 mips64orion-rtems-gcj-2.95.2_9 FSF JAVA-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, mips64orion-rtems-binutils-2.10_2, mips64orion-rtems-gcc-2.95.2_9 mips64orion-rtems-gdb-5.0_2 FSF gdb-4.18 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: gettext-0.10.35, gmake-3.79.1, mips64orion-rtems-binutils-2.10_2 mips64orion-rtems-objc-2.95.2_9 FSF OBJC-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, mips64orion-rtems-binutils-2.10_2, mips64orion-rtems-gcc-2.95.2_9 omniORB-3.0.1 A CORBA 2 implementation Maintained by: ejc@bazzle.com Requires: gettext-0.10.35, gmake-3.79.1, python-1.5.2, python-1.6 p5-Storable-1.0.0 Persistency for perl data structures Maintained by: jfitz@FreeBSD.org Also listed in: perl5 p5-String-Approx-3.13 Perl extension for approximate matching (fuzzy matching) Maintained by: ilia@cgu.chel.su Also listed in: perl5 powerpc-rtems-binutils-2.10_2 FSF binutils-2.9.5.0.25 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: gettext-0.10.35, gmake-3.79.1 powerpc-rtems-chill-2.95.2_9 FSF CHILL-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, powerpc-rtems-binutils-2.10_2, powerpc-rtems-gcc-2.95.2_9 powerpc-rtems-g77-2.95.2_9 FSF F77-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, powerpc-rtems-binutils-2.10_2, powerpc-rtems-gcc-2.95.2_9 powerpc-rtems-gcc-2.95.2_9 FSF C/C++-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, powerpc-rtems-binutils-2.10_2 powerpc-rtems-gcj-2.95.2_9 FSF JAVA-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, powerpc-rtems-binutils-2.10_2, powerpc-rtems-gcc-2.95.2_9 powerpc-rtems-gdb-5.0_2 FSF gdb-4.18 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: gettext-0.10.35, gmake-3.79.1, powerpc-rtems-binutils-2.10_2 powerpc-rtems-objc-2.95.2_9 FSF OBJC-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, powerpc-rtems-binutils-2.10_2, powerpc-rtems-gcc-2.95.2_9 qtez-0.93.2 Qt Rapid Application Development Environment for X Window System Maintained by: ports@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, autoconf-2.13, automake-1.4, bzip2-1.0.1, jpeg-6b, libtool-1.3.4_1, m4-1.4, png-1.0.8_1, qt-2.2.0_1 ruby-date2-2.1 An alternative date class for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.1 ruby-racc-runtime-1.2.4 Runtime libraries for Racc, an LALR(1) parser generator for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.1, ruby-amstd-1.9.5 ruby-racc-1.2.4 An LALR(1) parser generator for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.1, ruby-amstd-1.9.5, ruby-racc-runtime-1.2.4 ruby-slang-0.33.a_1 S-Lang extension module for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: libslang-1.4.2, ruby-1.6.1 sdl-devel-1.1.5 Cross-platform multi-media development API (developm. vers.) Maintained by: sobomax@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, aalib-1.2, esound-0.2.19, gettext-0.10.35, gmake-3.79.1, libaudiofile-0.1.9, libtool-1.3.4_1, nasm-0.98, svgalib-1.4.2 sdl-1.0.8_1 Cross-platform multi-media development API Maintained by: sobomax@FreeBSD.org Requires: XFree86-3.3.6_1, esound-0.2.19, gettext-0.10.35, gmake-3.79.1, libaudiofile-0.1.9, libtool-1.3.4_1, nasm-0.98, svgalib-1.4.2 sh-rtems-binutils-2.10_2 FSF binutils-2.9.5.0.25 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: gettext-0.10.35, gmake-3.79.1 sh-rtems-chill-2.95.2_9 FSF CHILL-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, sh-rtems-binutils-2.10_2, sh-rtems-gcc-2.95.2_9 sh-rtems-g77-2.95.2_9 FSF F77-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, sh-rtems-binutils-2.10_2, sh-rtems-gcc-2.95.2_9 sh-rtems-gcc-2.95.2_9 FSF C/C++-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, sh-rtems-binutils-2.10_2 sh-rtems-gcj-2.95.2_9 FSF JAVA-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, sh-rtems-binutils-2.10_2, sh-rtems-gcc-2.95.2_9 sh-rtems-gdb-5.0_2 FSF gdb-4.18 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: gettext-0.10.35, gmake-3.79.1, sh-rtems-binutils-2.10_2 sh-rtems-objc-2.95.2_9 FSF OBJC-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, sh-rtems-binutils-2.10_2, sh-rtems-gcc-2.95.2_9 sparc-rtems-binutils-2.10_2 FSF binutils-2.9.5.0.25 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: gettext-0.10.35, gmake-3.79.1 sparc-rtems-chill-2.95.2_9 FSF CHILL-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, sparc-rtems-binutils-2.10_2, sparc-rtems-gcc-2.95.2_9 sparc-rtems-g77-2.95.2_9 FSF F77-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, sparc-rtems-binutils-2.10_2, sparc-rtems-gcc-2.95.2_9 sparc-rtems-gcc-2.95.2_9 FSF C/C++-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, sparc-rtems-binutils-2.10_2 sparc-rtems-gcj-2.95.2_9 FSF JAVA-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, sparc-rtems-binutils-2.10_2, sparc-rtems-gcc-2.95.2_9 sparc-rtems-gdb-5.0_2 FSF gdb-4.18 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: gettext-0.10.35, gmake-3.79.1, sparc-rtems-binutils-2.10_2 sparc-rtems-objc-2.95.2_9 FSF OBJC-gcc-2.95.2 base-port for RTEMS development Maintained by: jim@thehousleys.net Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, sparc-rtems-binutils-2.10_2, sparc-rtems-gcc-2.95.2_9 veepee-0.3 A user orientated scripting environment for embedding in applications Maintained by: sobomax@FreeBSD.org Also listed in: python gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, esound-0.2.19, gd-1.8.3, gettext-0.10.35, glib-1.2.8, gnomelibs-1.2.4_2, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, python-1.5.2, tiff-3.5.5, xpm-3.4k Category editors (http://www.freebsd.org/ports/editors.html) ================================================================== gedit-0.9.1 A small but powerful text editor for Gnome Desktop Environment Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomecontrolcenter-1.2.2, gnomelibs-1.2.4_2, gnomeprint-0.24, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.14, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k glimmer-0.9.19_1 A full featured code editor for GNOME desktop with many advanced features Maintained by: sobomax@FreeBSD.org Also listed in: gnome python Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, bzip2-1.0.1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gnomecontrolcenter-1.2.2, gnomecore-1.2.2.1, gnomelibs-1.2.4_2, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, python-1.6, tiff-3.5.5, xpm-3.4k koffice-1.94 Office suite for KDE2 Maintained by: will@FreeBSD.org Also listed in: kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, autoconf-2.13, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, iconv-1.1, jpeg-6b, kdelibs-1.94, kdesupport-1.94, libaudiofile-0.1.9, m4-1.4, png-1.0.8_1, qt-2.2.0_1, tiff-3.5.5 Category emulators (http://www.freebsd.org/ports/emulators.html) ================================================================== rtc-2000.09.22 Kernel module which provides /dev/rtc device support Maintained by: freebsd-emulation@FreeBSD.org Also listed in: linux uae-0.8.15_1 Amiga emulator Maintained by: simond@irrelevant.org Requires: XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1 vmware2-2.0.2.621_2 A virtual machine emulator - a full PC in a window Maintained by: vns@delta.odessa.ua Also listed in: linux Requires: XFree86-3.3.6_1, linux_base-6.1, rtc-2000.09.22 wine-2000.08.21 MS-Windows 3.1/95/NT emulator for Unix (Alpha release) Maintained by: pfeifer@dbai.tuwien.ac.at Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, bison-1.28, gettext-0.10.35, xpm-3.4k Category games (http://www.freebsd.org/ports/games.html) ================================================================== bombermaze-0.6.3 A Bomberman clone for GNOME Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, bzip2-1.0.1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomecontrolcenter-1.2.2, gnomecore-1.2.2.1, gnomelibs-1.2.4_2, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k gcompris-0.3.1 A simple Gnome-based education game for children starting at 3 Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, automake-1.4, bzip2-1.0.1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.2.1, gnomelibs-1.2.4_2, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k heroes-0.6 A game of yore similar to the "Tron" and "Nibbles" Maintained by: sobomax@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, aalib-1.2, esound-0.2.19, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, libaudiofile-0.1.9, libgnugetopt-1.1, libmikmod-3.1.9, sdl-devel-1.1.5, sdl_mixer-1.0.6, smpeg-0.4.0, svgalib-1.4.2 kdegames-1.94 Games for the KDE integrated X11 desktop Maintained by: will@FreeBSD.org Also listed in: kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, autoconf-2.13, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdelibs-1.94, kdesupport-1.94, libaudiofile-0.1.9, m4-1.4, png-1.0.8_1, qt-2.2.0_1, tiff-3.5.5 pysol-4.60 Solitaire game, written in Python Maintained by: tg@FreeBSD.org Requires: XFree86-3.3.6_1, bzip2-1.0.1, py-tkinter-1.6, python-1.6, tcl-8.3.1, tk-8.3.1 zangband-2.4.0_1 Zangband (Zelazny Angband) with color, X11 support Maintained by: makoto@pinpott.spnet.ne.jp Requires: XFree86-3.3.6_1, unzip-5.41 Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== gimp-1.1.26 Developer's beta release of the GNU Image Manipulation Program Maintained by: vanilla@FreeBSD.org Also listed in: gnome Requires: XFree86-3.3.6_1, aalib-1.2, bzip2-1.0.1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, jpeg-6b, libtool-1.3.4_1, mpeg_lib-1.3.1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k png-1.0.8_1 Library for manipulating PNG images Maintained by: ache@FreeBSD.org ruby-opengl-0.31_1 OpenGL/GLU/GLUT interface modules for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, ruby-1.6.1 sane-1.0.3 API for access to scanners, digitals camera, frame grabbers etc Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, jpeg-6b, libtool-1.3.4_1 sodipodi-0.19 A small vector based drawing program with GNOME libraries Maintained by: nakai@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, bonobo-0.18_1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomecontrolcenter-1.2.2, gnomelibs-1.2.4_2, gnomeprint-0.24, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.14, libungif-4.1.0b1, libxml-1.8.10, oaf-0.5.1, png-1.0.8_1, popt-1.5, tiff-3.5.5, xpm-3.4k xmovie-1.3.1_1 A movie player for MPEG-2 and Quicktime movies Maintained by: sanpei@FreeBSD.org Also listed in: linux Requires: XFree86-3.3.6_1, linux-jpeg-6b.9, linux-png-1.0.3, linux_base-6.1 xsane-0.61 Gtk-based X11 frontend for SANE (Scanner Access Now Easy) Maintained by: domi@saargate.de Requires: XFree86-3.3.6_1, autoconf-2.13, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, jpeg-6b, m4-1.4, png-1.0.8_1, sane-1.0.3, tiff-3.5.5 zimg-4.2.2 Image-generator that uses ASCII input files to create PNGs/EDFs Maintained by: ports@FreeBSD.org Requires: gd-1.8.3, jpeg-6b, png-1.0.8_1 Category irc (http://www.freebsd.org/ports/irc.html) ================================================================== kvirc-2.0.0 IRC client for X Maintained by: trevor@jpj.net Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, autoconf-2.13, automake-1.4, gettext-0.10.35, gmake-3.79.1, jpeg-6b, libtool-1.3.4_1, m4-1.4, png-1.0.8_1, qt-2.2.0_1 Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-esecanna-module-wnn6-1.0.0_1 Esecanna module for Wnn6 Maintained by: knu@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, ja-Wnn6-lib-98.10.28, ja-esecanna-1.0.1, m4-1.4 ja-esecanna-1.0.1 Pseudo cannaserver which wraps some other input engines Maintained by: knu@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4 ja-ng-1.4 A very light Emacs-clone with japanese support Maintained by: ginga@athena.club.ne.jp Also listed in: editors ja-rskkserv-2.3.2 An alternative implementation of skkserv written in Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ja-skk-jisyoL-9.6, ruby-1.6.1, ruby-tcpwrap-0.1 ja-ruby-slang-0.33.a_1 S-Lang-jp extension module for Ruby Maintained by: knu@FreeBSD.org Also listed in: devel ruby Requires: ja-libslang-1.4.2.j0, ruby-1.6.1 ja-ruby-tcltklib-1.6.1 A Ruby interface to Tcl/Tk libraries Maintained by: knu@FreeBSD.org Also listed in: lang x11-toolkits ruby tcl80 tk80 Requires: XFree86-3.3.6_1, ja-tcl-8.0.5, ja-tk-8.0.5, ruby-1.6.1 ja-samba-2.0.7.j1.3 A free SMB and CIFS client and server for UNIX Maintained by: nakaji@jp.FreeBSD.org Also listed in: net Requires: autoconf-2.13, gettext-0.10.35, m4-1.4 ja-tkstep-8.0.5 The Tk toolkit with a NeXTSTEP look and more Maintained by: kiri@pis.toba-cmt.ac.jp Also listed in: tk80 Requires: XFree86-3.3.6_1, autoconf-2.13, ja-tcl-8.0.5, m4-1.4, xpm-3.4k ja-zangband-2.4.0.j000901_1 Zangband (Zelazny Angband) with japanese, color, X11 support Maintained by: makoto@pinpott.spnet.ne.jp Also listed in: games Requires: XFree86-3.3.6_1, unzip-5.41 Category java (http://www.freebsd.org/ports/java.html) ================================================================== shujit-0.6.7 A Just In Time java bytecode compiler Maintained by: sobomax@FreeBSD.org Requires: gdbm-1.8.0, gettext-0.10.35, gmake-3.79.1, javavmwrapper-1.1, jdk-1.1.8, ruby-1.6.1 Category korean (http://www.freebsd.org/ports/korean.html) ================================================================== ko-baekmukfonts-bdf-2.0_1 Free Hangul fonts for X11(baekmuk) Maintained by: cjh@freebsd.org Also listed in: x11-fonts Requires: XFree86-3.3.6_1 Category lang (http://www.freebsd.org/ports/lang.html) ================================================================== ccscript-1.2.2 State-event driven class extendible C++ script interpreter Maintained by: dyfet@gnu.org Requires: CommonC++-1.2.1_1, autoconf-2.13, gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1, m4-1.4 gcc-devel-20000828 EGCS enhanced version of the GNU compiler suite (inprogress version) Maintained by: obrien@FreeBSD.org Also listed in: java Requires: bison-1.28, gettext-0.10.35, gmake-3.79.1 librep-0.13 An Emacs Lisp like runtime library Maintained by: sobomax@FreeBSD.org Requires: gdbm-1.8.0, gettext-0.10.35, gmake-3.79.1 python-2.0b2 An interpreted object-oriented programming language Maintained by: tg@FreeBSD.org Also listed in: python ruby-perl-0.2.7 A Ruby extension module to use the functions of Perl from Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby perl5 Requires: ruby-1.6.1 ruby-tcltklib-1.6.1 A Ruby interface to Tcl/Tk libraries Maintained by: knu@FreeBSD.org Also listed in: x11-toolkits ruby tcl82 tk82 Requires: XFree86-3.3.6_1, ruby-1.6.1, tcl-8.2.3, tk-8.2.3 ruby-usersguide-20000927 Ruby users guide, in HTML format Maintained by: knu@FreeBSD.org Also listed in: ruby ruby-1.6.1 An object-oriented interpreted scripting language Maintained by: knu@FreeBSD.org Also listed in: ruby ipv6 Requires: autoconf-2.13, m4-1.4 yabasic-2.64 Yet another Basic for Unix and Windows Maintained by: elwood@mc5sys.in-berlin.de Requires: XFree86-3.3.6_1, bison-1.28, gettext-0.10.35 Category mail (http://www.freebsd.org/ports/mail.html) ================================================================== balsa-0.9.5_1 A mail reader for the gnome interface Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, bzip2-1.0.1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2, gnomecore-1.2.2.1, gnomelibs-1.2.4_2, gnomeprint-0.24, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libproplist-0.10.1, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, pspell-0.11.2, tiff-3.5.5, xpm-3.4k bbmail-0.6.9 A tool intended for Blackbox that checks for new mail Maintained by: patseal@hyperhost.net Requires: XFree86-3.3.6_1 courier-imap-1.0_1 IMAP server that provides access to Maildir mailboxes Maintained by: nbm@FreeBSD.org Also listed in: ipv6 Requires: gettext-0.10.35, gmake-3.79.1 evolution-0.5.1_2 An integrated mail, calendar and address book distributed suite Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, bonobo-0.18_1, bzip2-1.0.1, esound-0.2.19, gconf-0.8, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomecontrolcenter-1.2.2, gnomecore-1.2.2.1, gnomelibs-1.2.4_2, gnomepilot-0.1.52, gnomeprint-0.24, gnomevfs-0.3.1, gtk-1.2.8, gtkhtml-0.6.1_1, guile-1.4, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.14, libtool-1.3.4_1, libungif-4.1.0b1, libunicode-0.4_2, libwww-5.3.1, libxml-1.8.10, oaf-0.5.1, openldap-1.2.11, pilot-link-0.9.3, png-1.0.8_1, popt-1.5, pspell-0.11.2, tcl-8.2.3, tiff-3.5.5, tk-8.2.3, xpm-3.4k fetchmail-5.5.2 Batch mail retrieval/forwarding utility for pop2, pop3, apop, imap Maintained by: ve@sci.fi Also listed in: ipv6 Requires: gettext-0.10.35 mailman-2.0b5_1 Software to help manage email discussion lists Maintained by: ports@FreeBSD.org Requires: apache-1.3.12, python-1.6 pgp4pine-1.75.6 Tool to use PGP 2/5/6 or GPG with Pine Maintained by: holger@flatline.de ruby-net-imap-0.1.2 IMAP client library for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.1 ruby-tmail-0.8.13 A mail manipulating library for Ruby, with RFC822 and MIME multipart support Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.1, ruby-amstd-1.9.5, ruby-racc-runtime-1.2.4, ruby-strscan-0.5.8 sylpheed-0.4.0 A GTK+ based, lightweight, and fast e-mail client Maintained by: shigeri@m10.alpha-net.ne.jp Requires: XFree86-3.3.6_1, bzip2-1.0.1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, libtool-1.3.4_1 Category math (http://www.freebsd.org/ports/math.html) ================================================================== gnumeric-0.56_1 The GNOME spreadsheet Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, bzip2-1.0.1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomebasic-0.0.12, gnomecontrolcenter-1.2.2, gnomecore-1.2.2.1, gnomelibs-1.2.4_2, gnomeprint-0.24, gtk-1.2.8, guile-1.4, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.14, libole2-0.1.6, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, python-1.6, tiff-3.5.5, xpm-3.4k py-numeric-16.1.1 The Numeric Extension to Python Maintained by: tg@FreeBSD.org Also listed in: python Requires: lapack-3.0, python-1.6 pari-2.0.20b_1 Mathmatics library and advanced calculator package Maintained by: yoshiaki@kt.rim.or.jp Requires: gettext-0.10.35, gmake-3.79.1 spin-3.4.1 An on-the-fly verification system for asynchronous concurrent systems Maintained by: jhanna@home.com xgraph-11.3.2.20000910 A program that helps you plot graphs Maintained by: sanpei@FreeBSD.org Also listed in: print Requires: XFree86-3.3.6_1 Category mbone (http://www.freebsd.org/ports/mbone.html) ================================================================== rat-4.2.9_1 Multicast and unicast robust audio conferencing tool Maintained by: O.Hodson@cs.ucl.ac.uk Also listed in: audio ipv6 Requires: XFree86-3.3.6_1, autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, tcl-8.2.3, tk-8.2.3 Category misc (http://www.freebsd.org/ports/misc.html) ================================================================== cassowary-0.60 Constraint solving toolkit Maintained by: nakai@FreeBSD.org Requires: bison-1.28, gettext-0.10.35, gmake-3.79.1, gtl-0.3.3, guile-1.4 gtl-0.3.3 C++ STL-based support for graphs and graph algorithms Maintained by: nakai@FreeBSD.org kdeutils-1.94 Utilities for the KDE integrated X11 desktop Maintained by: will@FreeBSD.org Also listed in: kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdelibs-1.94, kdesupport-1.94, libaudiofile-0.1.9, png-1.0.8_1, qt-2.2.0_1, tiff-3.5.5 qhacc-0.6 Simple QT2-based financial manager Maintained by: ports@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, jpeg-6b, png-1.0.8_1, qt-2.2.0_1 screen-3.9.8_2 A multi-screen window manager Maintained by: ache@FreeBSD.org xtail-2.1 Watches the growth of files or directories Maintained by: gmarco@giovannelli.it Category net (http://www.freebsd.org/ports/net.html) ================================================================== adns-1.0 Easy to use, asynchronous-capable DNS client library and utilities Maintained by: lukin@okbmei.msk.su Requires: gettext-0.10.35, gmake-3.79.1 arla-0.34.2_1 A free AFS client implementation Maintained by: assar@freebsd.org gaim-0.10.1 Gtk+ open-source 'clone' of AOL's Instant Messenger client Maintained by: jim@FreeBSD.org Requires: XFree86-3.3.6_1, bzip2-1.0.1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8 gnut-0.4.14 Text-mode client for connecting to the Gnutella distributed network Maintained by: kris@FreeBSD.org Also listed in: audio Requires: autoconf-2.13, m4-1.4 icqlib-1.0.0 A library required by kicq (not libicq) Maintained by: lioux@linf.unb.br Requires: gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1 iplog-2.2.1 TCP/IP traffic logging tool Maintained by: ust@cert.siemens.de Requires: gettext-0.10.35, gmake-3.79.1 isc-dhcp3-3.0.b2.5 ISC Dynamic Host Configuration Protocol client and server code Maintained by: obrien@FreeBSD.org Requires: bind-8.2.2.p5 kdenetwork-1.94 Network modules for KDE2 Maintained by: will@FreeBSD.org Also listed in: news kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, autoconf-2.13, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdelibs-1.94, kdesupport-1.94, libaudiofile-0.1.9, m4-1.4, png-1.0.8_1, qt-2.2.0_1, tiff-3.5.5, uulib-0.5.13 kicq-1.0.0 KDE/Qt based ICQ clone Maintained by: lioux@linf.unb.br Also listed in: kde Requires: XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, icqlib-1.0.0, jpeg-6b, kdelibs-1.1.2.1, png-1.0.8_1, qt-1.45, tiff-3.5.5 mpd-3.1 Multi-link PPP daemon based on netgraph(4) Maintained by: archie@freebsd.org netatalk-1.4b2+asun2.1.3_1 File and print server for AppleTalk networks, with improvements by A. Sun Maintained by: stb@freebsd.org Also listed in: print netatalk-1.4b2_1 File and print server for AppleTalk networks Maintained by: stb@freebsd.org Also listed in: print ruby-drb-1.2.2 Distributed Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.1, ruby-acl-1.0 tintin-1.5.9 A client program to help playing muds Maintained by: jhp@cocoja.holywar.net Also listed in: games Category news (http://www.freebsd.org/ports/news.html) ================================================================== inn-2.3.0 InterNetNews -- the Internet meets Netnews Maintained by: des@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1 pan-0.8.1b5_1 Threaded GNOME newsreader based on Agent for Windows Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, bzip2-1.0.1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gnomecontrolcenter-1.2.2, gnomelibs-1.2.4_2, gnomeprint-0.24, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libunicode-0.4_2, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, uulib-0.5.13, xpm-3.4k slrn-0.9.6.3 SLang-based newsreader Maintained by: xaa+ports@madison-gurkha.com Requires: bzip2-1.0.1, libslang-1.4.2 Category palm (http://www.freebsd.org/ports/palm.html) ================================================================== coldsync-1.4.5 Synchronize a PalmPilot with a Unix workstation Maintained by: arensb+freebsd-ports@ooblick.com Also listed in: comms Requires: p5-Palm-1.2.2 Category print (http://www.freebsd.org/ports/print.html) ================================================================== a2ps-a4-4.13 Formats an ascii file for printing on a postscript printer Maintained by: chuckr@FreeBSD.org a2ps-letter-4.13 Formats an ascii file for printing on a postscript printer Maintained by: chuckr@FreeBSD.org a2ps-letterdj-4.13 Formats an ascii file for printing on a postscript printer Maintained by: chuckr@FreeBSD.org gnomeprint-0.24 Gnome print support library Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01, glib-1.2.8, gmake-3.79.1, gnomelibs-1.2.4_2, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k Category russian (http://www.freebsd.org/ports/russian.html) ================================================================== ru-apache+mod_ssl-1.3.12+29.7+2.6.6 The Russian Apache webserver with SSL/TLS functionality Maintained by: dima@Chg.RU Also listed in: www security Requires: mm-1.1.3 Category security (http://www.freebsd.org/ports/security.html) ================================================================== bugs-3.3.2 Great cryptography library and sample programs Maintained by: stephane.legrand@bigfoot.com cyrus-sasl-1.5.24_1 RFC 2222 SASL (Simple Authentication and Security Layer) Maintained by: hetzels@westbend.net Requires: autoconf-2.13, automake-1.4, libtool-1.3.4_1, m4-1.4 gnupg-rsa-1.0.1_1 Extensions gnupg: rsa idea Maintained by: dirk.meyer@dinoex.sub.org Requires: gnupg-1.0.3 gnupg-1.0.3 The GNU Privacy Guard Maintained by: kuriyama@FreeBSD.org heimdal-0.3c A re-implementation of Kerberos V Maintained by: nectar@FreeBSD.ORG Also listed in: ipv6 Requires: XFree86-3.3.6_1 openssl-0.9.5a_1 SSL and crypto library Maintained by: dirk@FreeBSD.org Also listed in: devel p5-GnuPG-Interface-0.11 Perl module for interfacing with GnuPG Maintained by: trevor@jpj.net Also listed in: perl5 Requires: gnupg-1.0.3, p5-Class-MethodMaker-0.96 pad-0.7 A command-line utility to encrypt files Maintained by: trevor@jpj.net pgp-2.6.3i PGP MIT or International version - Public-Key encryption for the masses Maintained by: ache@FreeBSD.org pscan-1.3 Security C code scanner for misuse of format strings Maintained by: kris@FreeBSD.org ssh-1.2.27_1 Secure shell client and server (remote login program) Maintained by: kris@FreeBSD.org Also listed in: ipv6 Requires: XFree86-3.3.6_1, autoconf-2.13, m4-1.4 uvscan_dat-4096 AntiVirus DAT file for uvscan Maintained by: kris@FreeBSD.org Category sysutils (http://www.freebsd.org/ports/sysutils.html) ================================================================== gnomecontrolcenter-1.2.2 Control center for GNOME project Maintained by: vanilla@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomelibs-1.2.4_2, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k gpart-0.1g Tries to recover lost partition tables and file systems Maintained by: andrew@ugh.net.au Requires: gettext-0.10.35, gmake-3.79.1 healthd-0.6.0 A daemon to monitor vital motherboard parameters Maintained by: jim@thehousleys.net skill-4.0 SuperKILL, kill or renice processes by pid, name, tty or uid Maintained by: jonny@jonny.eng.br wmapm-3.1 Laptop battery status display for WindowMaker Maintained by: taoka@FreeBSD.org Also listed in: windowmaker Requires: XFree86-3.3.6_1, xpm-3.4k Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== catdoc-0.91.4 Convert MS Word/Excel documents to plain ASCII or TeX. TK viewer included Maintained by: brion@queeg.com eruby-0.1.1 Interprets Ruby code embedded in a text file just like PHP, ePerl, ASP, or JSP Maintained by: knu@FreeBSD.org Also listed in: www ruby Requires: ruby-1.6.1 libxml2-2.2.3 Xml parser library for GNOME Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: libtool-1.3.4_1 ruby-xmlparser-0.5.19_1 Ruby module to access James Clark's XML Parser ToolKit ("expat") Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: expat-1.1, p5-XML-Parser-2.29, ruby-1.6.1, ruby-amstd-1.9.5, ruby-optparse-0.7.5, ruby-racc-runtime-1.2.4, ruby-rdtool-0.6.5, ruby-strscan-0.5.8 Category www (http://www.freebsd.org/ports/www.html) ================================================================== apache+mod_ssl-1.3.12+2.6.6_1 The Apache 1.3 webserver with SSL/TLS functionality Maintained by: rse@engelschall.com Also listed in: security Requires: mm-1.1.3 cgiparse-0.9b C library to parse CGI Forms Maintained by: jmg@FreeBSD.org Also listed in: devel Requires: mime-1.0 galeon-0.7.5 A GNOME Web browser based on gecko (the Mozilla rendering engine) Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, bzip2-1.0.1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gnomecontrolcenter-1.2.2, gnomecore-1.2.2.1, gnomelibs-1.2.4_2, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.14, libungif-4.1.0b1, libxml-1.8.10, mozilla-embedded-M17, png-1.0.8_1, tiff-3.5.5, xpm-3.4k gtkhtml-0.6.1_1 Lightweight HTML rendering/printing/editing engine Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, bonobo-0.18_1, esound-0.2.19, gconf-0.8, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomecontrolcenter-1.2.2, gnomelibs-1.2.4_2, gnomeprint-0.24, gtk-1.2.8, guile-1.4, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libwww-5.3.1, libxml-1.8.10, oaf-0.5.1, png-1.0.8_1, popt-1.5, pspell-0.11.2, tiff-3.5.5, xpm-3.4k linbot-1.0_1 View structure of a web site, get a list of problems like broken links Maintained by: billf@FreeBSD.org Also listed in: python Requires: python-1.6 mathopd-1.3p6 A very small, yet very fast HTTP server Maintained by: tobez@tobez.org mod_ruby-0.2.0 An Apache module that embeds Ruby interpreter within Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: apache-1.3.12, eruby-0.1.1, ruby-1.6.1 p5-HTML-Mason-0.89 High-performance, dynamic web site authoring system Maintained by: dsh@vlink.ru Also listed in: perl5 Requires: p5-MLDBM-2.00 peacock-0.2 A GUI-based HTML Editor for GTK+/GNOME Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, bzip2-1.0.1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomecontrolcenter-1.2.2, gnomecore-1.2.2.1, gnomelibs-1.2.4_2, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k surfraw-1.0.1 Command line interface to popular WWW search engines Maintained by: naddy@mips.inka.de webalizer-2.01.02 A web server log file analysis program Maintained by: ache@FreeBSD.org Requires: bzip2-1.0.1, gd-1.8.3, jpeg-6b, png-1.0.8_1 wml-2.0.4 Website META Language, webdesign toolkit for HTML generation Maintained by: rse@engelschall.com Also listed in: lang zope-2.2.2 An object-based web application platform with database access Maintained by: nbm@FreeBSD.org Also listed in: python Requires: python-1.5.2 Category x11-clocks (http://www.freebsd.org/ports/x11-clocks.html) ================================================================== kdetoys-1.94 Small applications for KDE2 Maintained by: will@FreeBSD.org Also listed in: kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, autoconf-2.13, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdelibs-1.94, kdesupport-1.94, libaudiofile-0.1.9, m4-1.4, png-1.0.8_1, qt-2.2.0_1, tiff-3.5.5 Category x11-fm (http://www.freebsd.org/ports/x11-fm.html) ================================================================== nautilus-0.1.0_1 GNOME file manager and graphical shell developed by Eazel Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, bonobo-0.18_1, bzip2-1.0.1, esound-0.2.19, gconf-0.8, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomecontrolcenter-1.2.2, gnomelibs-1.2.4_2, gnomeprint-0.24, gnomevfs-0.3.1, gtk-1.2.8, gtkhtml-0.6.1_1, guile-1.4, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libghttp-1.0.7, libtool-1.3.4_1, libungif-4.1.0b1, libwww-5.3.1, libxml-1.8.10, medusa-0.2, oaf-0.5.1, png-1.0.8_1, popt-1.5, pspell-0.11.2, rpm-2.5.6, tiff-3.5.5, xpm-3.4k xfm-1.4.2.4 The X File Manager Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_1, Xaw3d-1.5, xpm-3.4k Category x11-fonts (http://www.freebsd.org/ports/x11-fonts.html) ================================================================== freefonts-0.10_1 A collection of ATM fonts from the CICA archives Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_1 Category x11-toolkits (http://www.freebsd.org/ports/x11-toolkits.html) ================================================================== clean-theme-gtk-0.4 The Clean GTK theme engine Maintained by: sobomax@FreeBSD.org Requires: XFree86-3.3.6_1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, libtool-1.3.4_1 JX-1.5.3_1 A C++ application framework and widget library for X Windows Maintained by: lioux@linf.unb.br Requires: XFree86-3.3.6_1, autoconf-2.13, bison-1.28, gettext-0.10.35, gmake-3.79.1, m4-1.4, png-1.0.8_1, xpm-3.4k libjsearch-0.5.6_1 An additional library for the JX widget library Maintained by: lioux@linf.unb.br Requires: JX-1.5.3_1, XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, png-1.0.8_1, xpm-3.4k libjtoolbar-0.5.4_1 An additional library for the JX widget library Maintained by: lioux@linf.unb.br Requires: JX-1.5.3_1, XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, libjtree-1.1.7_1, png-1.0.8_1, xpm-3.4k libjtree-1.1.7_1 An additional library for the JX widget library Maintained by: lioux@linf.unb.br Requires: JX-1.5.3_1, XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, png-1.0.8_1, xpm-3.4k open-motif-2.1.30_1 Motif X11 Toolkit (industry standard GUI (IEEE 1295)) Maintained by: steve@FreeBSD.org Requires: XFree86-3.3.6_1, imake-4.0.1 qt-2.2.0_1 A C++ X GUI toolkit Maintained by: will@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, png-1.0.8_1 rep-gtk-0.14 GTK+ binding for rep Lisp interpreter Maintained by: sobomax@FreeBSD.org Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, esound-0.2.19, gdbm-1.8.0, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomelibs-1.2.4_2, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.14, librep-0.13, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k ruby-qt-i18n-0.13 Qt extension for Ruby (for qt-i18n) Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, qt-i18n-1.45, ruby-1.6.1 ruby-qt-0.13 Qt extension for Ruby (for qt145) Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, qt-1.45, ruby-1.6.1 ruby-tk-1.6.1 Ruby interface to the Tk widget set Maintained by: knu@FreeBSD.org Also listed in: ruby tk82 Requires: XFree86-3.3.6_1, ruby-1.6.1, ruby-tcltklib-1.6.1, tcl-8.2.3, tk-8.2.3 ruby14-tk-1.4.6 Ruby interface to the Tk widget set Maintained by: yasuf@bsdclub.org Also listed in: ruby tk82 Requires: XFree86-3.3.6_1, ruby-1.4.6, ruby14-tcltklib-1.4.6, tcl-8.2.3, tk-8.2.3 vdk-1.2.3 C++ wrapper for GTK+ toolkit Maintained by: nakai@FreeBSD.org Requires: XFree86-3.3.6_1, gettext-0.10.35, glib-1.2.8, gtk-1.2.8 vdkbuilder-1.2.3 A general ide tool for GTK+/VDK Maintained by: nakai@FreeBSD.org Requires: XFree86-3.3.6_1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, vdk-1.2.3 wxgtk-2.2.2 The wxWindows GUI toolkit with GTK+ bindings Maintained by: nectar@FreeBSD.org Requires: XFree86-3.3.6_1, autoconf-2.13, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, jpeg-6b, m4-1.4, png-1.0.8_1, tiff-3.5.5 Category x11-wm (http://www.freebsd.org/ports/x11-wm.html) ================================================================== amaterus-0.32.9 A GTK+ window manager Maintained by: nakai@FreeBSD.org Requires: XFree86-3.3.6_1, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, libxml-1.8.10 flwm-1.00 The Fast Light Window Manager Maintained by: dima@chg.ru Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, fltk-1.0.9 sawfish-0.31 Lisp configurable window manager Maintained by: sobomax@FreeBSD.org Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, autoconf-2.13, esound-0.2.19, gdbm-1.8.0, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomecontrolcenter-1.2.2, gnomelibs-1.2.4_2, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.14, librep-0.13, libungif-4.1.0b1, libxml-1.8.10, m4-1.4, png-1.0.8_1, rep-gtk-0.14, tiff-3.5.5, xpm-3.4k Category x11 (http://www.freebsd.org/ports/x11.html) ================================================================== XFree86-4.0.1_1 X11R6.4/XFree86 core distribution Maintained by: jmz@FreeBSD.org XFree86-3.3.6_1 X11R6.3/XFree86 core distribution Maintained by: jmz@FreeBSD.org gdm-2.0b4_1 GNOME version of xdm display manager Maintained by: nakai@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, bzip2-1.0.1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomecontrolcenter-1.2.2, gnomecore-1.2.2.1, gnomelibs-1.2.4_2, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k gnomeapplets-1.2.2 Applets components for the Gnome Desktop Environment Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, bzip2-1.0.1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomecontrolcenter-1.2.2, gnomecore-1.2.2.1, gnomelibs-1.2.4_2, gtk-1.2.8, guile-1.4, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libghttp-1.0.7, libgtop-1.0.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k gnomecore-1.2.2.1 Core component for the Gnome Desktop Environment Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, bzip2-1.0.1, esound-0.2.19, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomecontrolcenter-1.2.2, gnomelibs-1.2.4_2, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k gnomelibs-1.2.4_2 Libraries for GNOME, a GNU desktop environment Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.3_1, XFree86-3.3.6_1, esound-0.2.19, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k kde-1.94 The "meta-port" for KDE 2 Maintained by: will@FreeBSD.org Also listed in: kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, gettext-0.10.35, iconv-1.1, jpeg-6b, kdebase-1.94, kdegames-1.94, kdegraphics-1.94, kdelibs-1.94, kdemultimedia-1.94, kdenetwork-1.94, kdesupport-1.94, kdeutils-1.94, koffice-1.94, libaudiofile-0.1.9, png-1.0.8_1, qt-2.2.0_1, tiff-3.5.5, uulib-0.5.13, xpm-3.4k kdebase-1.94 Base modules for the KDE integrated X11 desktop Maintained by: will@FreeBSD.org Also listed in: kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, autoconf-2.13, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdelibs-1.94, kdesupport-1.94, libaudiofile-0.1.9, m4-1.4, png-1.0.8_1, qt-2.2.0_1, tiff-3.5.5, xpm-3.4k kdelibs-1.94 Libraries for KDE2 Maintained by: will@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_1, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdesupport-1.94, libaudiofile-0.1.9, png-1.0.8_1, qt-2.2.0_1, tiff-3.5.5 ruby-kde-i18n-0.13 KDE extension for Ruby (for kde11-i18n) Maintained by: knu@FreeBSD.org Also listed in: kde ruby Requires: XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdelibs-i18n-1.1.2, kdesupport-i18n-1.1.2, png-1.0.8_1, qt-i18n-1.45, ruby-1.6.1, ruby-qt-i18n-0.13, tiff-3.5.5 ruby-kde-0.13 KDE extension for Ruby (for kde11) Maintained by: knu@FreeBSD.org Also listed in: kde ruby Requires: XFree86-3.3.6_1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdelibs-1.1.2.1, png-1.0.8_1, qt-1.45, ruby-1.6.1, ruby-qt-0.13, tiff-3.5.5 rxvt-2.6.3 A low memory usage xterm replacement that supports color Maintained by: lioux@linf.unb.br Requires: XFree86-3.3.6_1, bzip2-1.0.1, xpm-3.4k _________________________________________________________________ © 1996-2000 by Wolfram Schneider. All rights reserved. Please direct questions about this service to www@FreeBSD.org General questions about FreeBSD ports should be sent to ports@FreeBSD.org Last database update: 2000-09-28 23:31:15 UTC; based on revision 1.298 _________________________________________________________________ This information was produced by http://www.freebsd.org/cgi/ports.cgi -----BEGIN PGP SIGNATURE----- Version: 2.6.3ia Charset: noconv iQCVAwUBOdeM1DmN/mkrcYGtAQGskAP+NqA6IPKTxiph70ehRhJuCl9B0RmSs7Dp fwssNURV8yA4aHO7vbB6W9d766lhZof3ezUqWw/MhP44xTp6d9RjtdRWdi3LgPTC gO0AAv0fH9O5G6eAl+sq9i/5n/GqIzn1lqhnTYRwggRPaGlvbPGcOaX76h8vDtf0 AHj6VNseplE= =bgaZ -----END PGP SIGNATURE----- -- Wolfram Schneider http://wolfram.schneider.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 13: 0: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 452FD37B66C for ; Sun, 1 Oct 2000 13:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA96018; Sun, 1 Oct 2000 13:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from 200-227-201-106-as.acessonet.com.br (200-227-201-106-as.acessonet.com.br [200.227.201.106]) by hub.freebsd.org (Postfix) with ESMTP id 8F9EC37B66E for ; Sun, 1 Oct 2000 12:51:53 -0700 (PDT) Received: (qmail 85256 invoked by uid 1001); 1 Oct 2000 19:51:46 -0000 Message-Id: <20001001195146.85255.qmail@Fedaykin.here> Date: 1 Oct 2000 19:51:46 -0000 From: "Mario Sergio Fujikawa Ferreira" Reply-To: lioux@uol.com.br To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21684: Port update: Makefile cleaning on astro/xearth Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21684 >Category: ports >Synopsis: Port update: Makefile cleaning on astro/xearth >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 13:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mario Sergio Fujikawa Ferreira >Release: FreeBSD 4.0-STABLE i386 >Organization: >Environment: FreeBSD Fedaykin.here 4.1-STABLE FreeBSD 4.1-STABLE #10: Sun Sep 24 15:18:36 BRT 2000 lioux@Fedaykin.here:/usr/src/sys/compile/LIOUX i386 >Description: The CP command is inadequate for ports style. It was replaced by INSTALL_DATA. Besides, it is dependant on the user umask, for some systems this means that it will install it with wrong permissions for most users. For the same reason, I added the CHMOD to make sure the other file is correct. >How-To-Repeat: do a umask 077 and then, install it you are going to get permissions such as 0600 for most files. This proves impossivel for users other than the installing one to use the marker files. >Fix: --- Makefile.orig Sun Oct 1 17:43:50 2000 +++ Makefile Sun Oct 1 17:45:00 2000 @@ -22,11 +22,12 @@ # Copy the list of FreeBSD sites post-install: ${MKDIR} ${PREFIX}/lib/X11/xearth - ${CP} ${FILESDIR}/freebsd.core.markers ${PREFIX}/lib/X11/xearth - ${CP} ${FILESDIR}/freebsd.committers.markers ${PREFIX}/lib/X11/xearth - ${CP} ${FILESDIR}/freebsd.ftp.markers ${PREFIX}/lib/X11/xearth + ${INSTALL_DATA} ${FILESDIR}/freebsd.core.markers ${PREFIX}/lib/X11/xearth + ${INSTALL_DATA} ${FILESDIR}/freebsd.committers.markers ${PREFIX}/lib/X11/xearth + ${INSTALL_DATA} ${FILESDIR}/freebsd.ftp.markers ${PREFIX}/lib/X11/xearth ${ECHO} "# All of FreeBSD's committers, including core :)" > \ ${PREFIX}/lib/X11/xearth/freebsd.core_and_committers.markers + ${CHMOD} 0444 ${PREFIX}/lib/X11/xearth/freebsd.core_and_committers.markers ${GREP} -hv '^[[:space:]]*#' ${FILESDIR}/freebsd.core.markers \ ${FILESDIR}/freebsd.committers.markers >> \ ${PREFIX}/lib/X11/xearth/freebsd.core_and_committers.markers >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 15: 1:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from femail4.sdc1.sfba.home.com (femail4.sdc1.sfba.home.com [24.0.95.84]) by hub.freebsd.org (Postfix) with ESMTP id A5A1437B503 for ; Sun, 1 Oct 2000 15:01:39 -0700 (PDT) Received: from home.com ([24.12.186.185]) by femail4.sdc1.sfba.home.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20001001220036.BRUL4031.femail4.sdc1.sfba.home.com@home.com> for ; Sun, 1 Oct 2000 15:00:36 -0700 Message-ID: <39D751F0.7964C004@home.com> Date: Sun, 01 Oct 2000 15:02:08 +0000 From: rob X-Mailer: Mozilla 4.74 [en] (X11; U; FreeBSD 4.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: newby porter question Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've tried porting a few Linux programs with no success. Is there somewhere a doc or tutorial showing a step by step process to get a working port, esp from Linux? I've looked at the FreeBSD porters manual, but it seems to mainly be concerned with getting a port to comply with the FreeBSD specs. Thanks, Rob. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 16:19:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from turtle.looksharp.net (cc360882-a.strhg1.mi.home.com [24.2.221.22]) by hub.freebsd.org (Postfix) with ESMTP id 76E2537B66C; Sun, 1 Oct 2000 16:19:44 -0700 (PDT) Received: from localhost (bsdx@localhost) by turtle.looksharp.net (8.9.3/8.9.3) with ESMTP id TAA24460; Sun, 1 Oct 2000 19:20:01 -0400 (EDT) (envelope-from bsdx@looksharp.net) Date: Sun, 1 Oct 2000 19:20:01 -0400 (EDT) From: Adam To: ports@freebsd.org, ade@freebsd.org Subject: cant get sane port to build Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-381857022-970442401=:23091" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-381857022-970442401=:23091 Content-Type: TEXT/PLAIN; charset=US-ASCII Hello, I have tried this on 5-current just past SMPng as well as a fresh reinstall of the computer today with 4.1-release upgraded to 4.1.1-stable with mergemaster and all new ports. I still get the compile bomb on sane, logfile attached. Curious as to why the package building logs on bento only show xsane broken but not sane, which it depends on and actually does seem broken. Any help would be appreciated, thanks. --0-381857022-970442401=:23091 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=saneerror Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=saneerror KGNkIC5saWJzICYmIHJtIC1mIGxpYnNhbmUubGEgJiYgbG4gLXMgLi4vbGli c2FuZS5sYSBsaWJzYW5lLmxhKQ0KZ21ha2VbMV06IExlYXZpbmcgZGlyZWN0 b3J5IGAvdXNyL3BvcnRzL2dyYXBoaWNzL3NhbmUvd29yay9zYW5lLTEuMC4z L2JhY2tlbmQnDQptYWtpbmcgYWxsIGluIGZyb250ZW5kDQpnbWFrZVsxXTog RW50ZXJpbmcgZGlyZWN0b3J5IGAvdXNyL3BvcnRzL2dyYXBoaWNzL3NhbmUv d29yay9zYW5lLTEuMC4zL2Zyb250ZW5kJw0KY2MgLWMgLURIQVZFX0NPTkZJ R19IIC1JLiAtSS4gLUkuLi9pbmNsdWRlIC1JLi4vaW5jbHVkZSAtSS91c3Iv bG9jYWwvaW5jbHVkZSAtSS91c3IvWDExUjYvaW5jbHVkZS9ndGsxMiAtSS91 c3IvbG9jYWwvaW5jbHVkZS9nbGliMTIgLQ0KSS91c3IvbG9jYWwvaW5jbHVk ZSAtSS91c3IvWDExUjYvaW5jbHVkZSAtSS91c3IvbG9jYWwvaW5jbHVkZSAt RF9HTlVfU09VUkNFIC1EUEFUSF9TQU5FX0NPTkZJR19ESVI9L3Vzci9sb2Nh bC9ldGMvc2FuZS5kICAgICAgICAgIC1EUA0KQVRIX1NBTkVfREFUQV9ESVI9 L3Vzci9sb2NhbC9zaGFyZSAgICAgICAgLURWX01BSk9SPTEgLURWX01JTk9S PTAgLU8gLXBpcGUgLVcgLVdhbGwgLURTQ1NJQlVGRkVSU0laRT0xMzEwNzIg c2NhbmltYWdlLmMNCnNjYW5pbWFnZS5jOiBJbiBmdW5jdGlvbiBgc2lnaGFu ZGxlcic6DQpzY2FuaW1hZ2UuYzoxMDA6IHdhcm5pbmc6IHVudXNlZCBwYXJh bWV0ZXIgYHNpZ251bScNCnNjYW5pbWFnZS5jOiBJbiBmdW5jdGlvbiBgcHJp bnRfb3B0aW9uJzoNCnNjYW5pbWFnZS5jOjE2NTogd2FybmluZzogY29tcGFy aXNvbiBiZXR3ZWVuIHNpZ25lZCBhbmQgdW5zaWduZWQNCnNjYW5pbWFnZS5j OjE3NTogd2FybmluZzogY29tcGFyaXNvbiBiZXR3ZWVuIHNpZ25lZCBhbmQg dW5zaWduZWQNCnNjYW5pbWFnZS5jOjE4Nzogd2FybmluZzogY29tcGFyaXNv biBiZXR3ZWVuIHNpZ25lZCBhbmQgdW5zaWduZWQNCnNjYW5pbWFnZS5jOjIx MDogd2FybmluZzogY29tcGFyaXNvbiBiZXR3ZWVuIHNpZ25lZCBhbmQgdW5z aWduZWQNCnNjYW5pbWFnZS5jOiBJbiBmdW5jdGlvbiBgcGFyc2VfdmVjdG9y JzoNCnNjYW5pbWFnZS5jOjQzOTogd2FybmluZzogY29tcGFyaXNvbiBiZXR3 ZWVuIHNpZ25lZCBhbmQgdW5zaWduZWQNCnNjYW5pbWFnZS5jOjQ4Nzogd2Fy bmluZzogY29tcGFyaXNvbiBiZXR3ZWVuIHNpZ25lZCBhbmQgdW5zaWduZWQN CmNjIC1jIC1ESEFWRV9DT05GSUdfSCAtSS4gLUkuIC1JLi4vaW5jbHVkZSAt SS4uL2luY2x1ZGUgLUkvdXNyL2xvY2FsL2luY2x1ZGUgLUkvdXNyL1gxMVI2 L2luY2x1ZGUvZ3RrMTIgLUkvdXNyL2xvY2FsL2luY2x1ZGUvZ2xpYjEyIC0N CkkvdXNyL2xvY2FsL2luY2x1ZGUgLUkvdXNyL1gxMVI2L2luY2x1ZGUgLUkv dXNyL2xvY2FsL2luY2x1ZGUgLURfR05VX1NPVVJDRSAtRFBBVEhfU0FORV9D T05GSUdfRElSPS91c3IvbG9jYWwvZXRjL3NhbmUuZCAgICAgICAgICAtRFAN CkFUSF9TQU5FX0RBVEFfRElSPS91c3IvbG9jYWwvc2hhcmUgICAgICAgIC1E Vl9NQUpPUj0xIC1EVl9NSU5PUj0wIC1PIC1waXBlIC1XIC1XYWxsIC1EU0NT SUJVRkZFUlNJWkU9MTMxMDcyIHN0aWZmLmMNCm1rZGlyIC5saWJzDQpjYyAt TC91c3IvWDExUjYvbGliIC1ML3Vzci9YMTFSNi9saWIgLUwvdXNyL2xvY2Fs L2xpYiAtV2wsLUUgLW8gLmxpYnMvc2NhbmltYWdlIHNjYW5pbWFnZS5vIHN0 aWZmLm8gLi4vYmFja2VuZC8ubGlicy9saWJzYW5lLnNvIC4uL2xpDQpiL2xp YmxpYi5hIC1sanBlZyAtbGludGwgLWxtIC1sY2FtIC1ML3Vzci9sb2NhbC9s aWIgIC1XbCwtLXJwYXRoIC1XbCwvdXNyL2xvY2FsL2xpYg0KY3JlYXRpbmcg c2NhbmltYWdlDQpjYyAtYyAtREhBVkVfQ09ORklHX0ggLUkuIC1JLiAtSS4u L2luY2x1ZGUgLUkuLi9pbmNsdWRlIC1JL3Vzci9sb2NhbC9pbmNsdWRlIC1J L3Vzci9YMTFSNi9pbmNsdWRlL2d0azEyIC1JL3Vzci9sb2NhbC9pbmNsdWRl L2dsaWIxMiAtDQpJL3Vzci9sb2NhbC9pbmNsdWRlIC1JL3Vzci9YMTFSNi9p bmNsdWRlIC1JL3Vzci9sb2NhbC9pbmNsdWRlIC1EX0dOVV9TT1VSQ0UgLURQ QVRIX1NBTkVfQ09ORklHX0RJUj0vdXNyL2xvY2FsL2V0Yy9zYW5lLmQgICAg ICAgICAgLURQDQpBVEhfU0FORV9EQVRBX0RJUj0vdXNyL2xvY2FsL3NoYXJl ICAgICAgICAtRFZfTUFKT1I9MSAtRFZfTUlOT1I9MCAtTyAtcGlwZSAtVyAt V2FsbCAtRFNDU0lCVUZGRVJTSVpFPTEzMTA3MiB4c2NhbmltYWdlLmMNCnhz Y2FuaW1hZ2UuYzo2Mzogc3ludGF4IGVycm9yIGJlZm9yZSBgR1BhcmFtJw0K eHNjYW5pbWFnZS5jOjY2OiBzeW50YXggZXJyb3IgYmVmb3JlIGBQTFVHX0lO X0lORk8nDQp4c2NhbmltYWdlLmM6NjY6IHdhcm5pbmc6IHR5cGUgZGVmYXVs dHMgdG8gYGludCcgaW4gZGVjbGFyYXRpb24gb2YgYFBMVUdfSU5fSU5GTycN CnhzY2FuaW1hZ2UuYzo2ODogd2FybmluZzogaW5pdGlhbGl6YXRpb24gbWFr ZXMgaW50ZWdlciBmcm9tIHBvaW50ZXIgd2l0aG91dCBhIGNhc3QNCnhzY2Fu aW1hZ2UuYzo2OTogd2FybmluZzogZXhjZXNzIGVsZW1lbnRzIGluIHNjYWxh ciBpbml0aWFsaXplcg0KeHNjYW5pbWFnZS5jOjY5OiB3YXJuaW5nOiAobmVh ciBpbml0aWFsaXphdGlvbiBmb3IgYFBMVUdfSU5fSU5GTycpDQp4c2Nhbmlt YWdlLmM6NzA6IHdhcm5pbmc6IGV4Y2VzcyBlbGVtZW50cyBpbiBzY2FsYXIg aW5pdGlhbGl6ZXINCnhzY2FuaW1hZ2UuYzo3MDogd2FybmluZzogKG5lYXIg aW5pdGlhbGl6YXRpb24gZm9yIGBQTFVHX0lOX0lORk8nKQ0KeHNjYW5pbWFn ZS5jOjcxOiB3YXJuaW5nOiBleGNlc3MgZWxlbWVudHMgaW4gc2NhbGFyIGlu aXRpYWxpemVyDQp4c2NhbmltYWdlLmM6NzE6IHdhcm5pbmc6IChuZWFyIGlu aXRpYWxpemF0aW9uIGZvciBgUExVR19JTl9JTkZPJykNCnhzY2FuaW1hZ2Uu Yzo3Mjogd2FybmluZzogZGF0YSBkZWZpbml0aW9uIGhhcyBubyB0eXBlIG9y IHN0b3JhZ2UgY2xhc3MNCnhzY2FuaW1hZ2UuYzoxMDM6IHN5bnRheCBlcnJv ciBiZWZvcmUgYEdEcmF3YWJsZScNCnhzY2FuaW1hZ2UuYzoxMDY6IHN5bnRh eCBlcnJvciBiZWZvcmUgYEdQaXhlbFJnbicNCnhzY2FuaW1hZ2UuYzoxMjI6 IHdhcm5pbmc6IG1pc3NpbmcgaW5pdGlhbGl6ZXINCnhzY2FuaW1hZ2UuYzox MjI6IHdhcm5pbmc6IChuZWFyIGluaXRpYWxpemF0aW9uIGZvciBgbG9uZ19v cHRpb25zWzJdLmhhc19hcmcnKQ0KeHNjYW5pbWFnZS5jOiBJbiBmdW5jdGlv biBgcXVlcnknOg0KeHNjYW5pbWFnZS5jOjIzNDogc3ludGF4IGVycm9yIGJl Zm9yZSBgYXJncycNCnhzY2FuaW1hZ2UuYzogQXQgdG9wIGxldmVsOg0KeHNj YW5pbWFnZS5jOjY0OiB3YXJuaW5nOiBgcnVuJyBkZWNsYXJlZCBgc3RhdGlj JyBidXQgbmV2ZXIgZGVmaW5lZA0KeHNjYW5pbWFnZS5jOjExMDogd2Fybmlu ZzogYHNjYW5fd2luJyBkZWZpbmVkIGJ1dCBub3QgdXNlZA0KeHNjYW5pbWFn ZS5jOjExMjogd2FybmluZzogYHByb2dfbmFtZScgZGVmaW5lZCBidXQgbm90 IHVzZWQNCnhzY2FuaW1hZ2UuYzoxMTM6IHdhcm5pbmc6IGBjaG9vc2VfZGV2 aWNlX2RpYWxvZycgZGVmaW5lZCBidXQgbm90IHVzZWQNCnhzY2FuaW1hZ2Uu YzoxMTQ6IHdhcm5pbmc6IGBkaWFsb2cnIGRlZmluZWQgYnV0IG5vdCB1c2Vk DQp4c2NhbmltYWdlLmM6MTE1OiB3YXJuaW5nOiBgZGV2bGlzdCcgZGVmaW5l ZCBidXQgbm90IHVzZWQNCnhzY2FuaW1hZ2UuYzoxMTY6IHdhcm5pbmc6IGBz ZWxkZXYnIGRlZmluZWQgYnV0IG5vdCB1c2VkDQp4c2NhbmltYWdlLmM6MTE3 OiB3YXJuaW5nOiBgbmRldnMnIGRlZmluZWQgYnV0IG5vdCB1c2VkDQp4c2Nh bmltYWdlLmM6MTE4OiB3YXJuaW5nOiBgbG9uZ19vcHRpb25zJyBkZWZpbmVk IGJ1dCBub3QgdXNlZA0KeHNjYW5pbWFnZS5jOjEyOTogd2FybmluZzogYGlu dGVyZmFjZScgZGVjbGFyZWQgYHN0YXRpYycgYnV0IG5ldmVyIGRlZmluZWQN CnhzY2FuaW1hZ2UuYzoxMzA6IHdhcm5pbmc6IGBzY2FuX3N0YXJ0JyBkZWNs YXJlZCBgc3RhdGljJyBidXQgbmV2ZXIgZGVmaW5lZA0KeHNjYW5pbWFnZS5j OjEzMTogd2FybmluZzogYHNjYW5fZG9uZScgZGVjbGFyZWQgYHN0YXRpYycg YnV0IG5ldmVyIGRlZmluZWQNCnhzY2FuaW1hZ2UuYzoxMzc6IHdhcm5pbmc6 IGBlbmNvZGVfZGV2bmFtZScgZGVmaW5lZCBidXQgbm90IHVzZWQNCnhzY2Fu aW1hZ2UuYzoxODI6IHdhcm5pbmc6IGBkZWNvZGVfZGV2bmFtZScgZGVmaW5l ZCBidXQgbm90IHVzZWQNCmdtYWtlWzFdOiAqKiogW3hzY2FuaW1hZ2Uub10g RXJyb3IgMQ0KZ21ha2VbMV06IExlYXZpbmcgZGlyZWN0b3J5IGAvdXNyL3Bv cnRzL2dyYXBoaWNzL3NhbmUvd29yay9zYW5lLTEuMC4zL2Zyb250ZW5kJw0K Z21ha2U6ICoqKiBbYWxsLXJlY3Vyc2l2ZV0gRXJyb3IgMQ0KKioqIEVycm9y IGNvZGUgMg0KDQpTdG9wIGluIC91c3IvcG9ydHMvZ3JhcGhpY3Mvc2FuZS4N CioqKiBFcnJvciBjb2RlIDENCg0KU3RvcCBpbiAvdXNyL3BvcnRzL2dyYXBo aWNzL3NhbmUuDQoqKiogRXJyb3IgY29kZSAxDQoNClN0b3AgaW4gL3Vzci9w b3J0cy9ncmFwaGljcy9zYW5lLg0KKioqIEVycm9yIGNvZGUgMQ0KDQpTdG9w IGluIC91c3IvcG9ydHMvZ3JhcGhpY3Mvc2FuZS4NCioqKiBFcnJvciBjb2Rl IDENCg0KU3RvcCBpbiAvdXNyL3BvcnRzL2dyYXBoaWNzL3hzYW5lLg0KKioq IEVycm9yIGNvZGUgMQ0KDQpTdG9wIGluIC91c3IvcG9ydHMvZ3JhcGhpY3Mv eHNhbmUuDQoqKiogRXJyb3IgY29kZSAxDQoNClN0b3AgaW4gL3Vzci9wb3J0 cy9ncmFwaGljcy94c2FuZS4NCioqKiBFcnJvciBjb2RlIDENCg0KU3RvcCBp biAvdXNyL3BvcnRzL2dyYXBoaWNzL3hzYW5lLg0KKioqIEVycm9yIGNvZGUg MQ0KDQpTdG9wIGluIC91c3IvcG9ydHMvZ3JhcGhpY3MveHNhbmUuDQoqKiog RXJyb3IgY29kZSAxDQoNClN0b3AgaW4gL3Vzci9wb3J0cy9ncmFwaGljcy94 c2FuZS4NCioqKiBFcnJvciBjb2RlIDENCg0KU3RvcCBpbiAvdXNyL3BvcnRz L2dyYXBoaWNzL3hzYW5lLg0KKHVzZXIxKWFtZXRoeXN0Oi91c3IvcG9ydHMv Z3JhcGhpY3MveHNhbmUgJSANCg0KDQo= --0-381857022-970442401=:23091-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 17:50: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 35C6237B66D for ; Sun, 1 Oct 2000 17:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA42103; Sun, 1 Oct 2000 17:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id B69B137B66D for ; Sun, 1 Oct 2000 17:47:48 -0700 (PDT) Received: from deneb.dbai.tuwien.ac.at (deneb [128.130.111.2]) by vexpert.dbai.tuwien.ac.at (8.9.3/8.9.3) with ESMTP id CAA02223; Mon, 2 Oct 2000 02:47:35 +0200 (MET DST) Received: (from pfeifer@localhost) by deneb.dbai.tuwien.ac.at (8.9.3/8.9.3) id CAA35923; Mon, 2 Oct 2000 02:47:34 +0200 (CEST) (envelope-from pfeifer) Message-Id: <200010020047.CAA35923@deneb.dbai.tuwien.ac.at> Date: Mon, 2 Oct 2000 02:47:34 +0200 (CEST) From: pfeifer@dbai.tuwien.ac.at (Gerald Pfeifer) Reply-To: pfeifer@dbai.tuwien.ac.at To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21687: rpm port is out-dated (2.5.6 instead of 3.0/4.0) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21687 >Category: ports >Synopsis: rpm port is out-dated (2.5.6 instead of 3.0/4.0) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 17:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Gerald Pfeifer >Release: FreeBSD 4.1-RELEASE i386 >Organization: >Environment: n/a >Description: The rpm port (misc/rpm-2.5.6) is out-dated. As rpm 3.0 (which is used by the Linux emulation) converts the database in a specific format that is not known to rpm 2.5, this means that the native version of rpm cannot be used after the Linux version has been used. >How-To-Repeat: n/a >Fix: Update port to rpm 3.0 or 4.0. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 20:50: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6893437B503 for ; Sun, 1 Oct 2000 20:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA23388; Sun, 1 Oct 2000 20:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id CA08037B66C for ; Sun, 1 Oct 2000 20:40:00 -0700 (PDT) Received: from home.dinoex.sub.org (home.dinoex.de [212.184.201.180]) by net2.dinoex.sub.org (8.11.1/8.11.1) with ESMTP id e923bjX07660 for ; Mon, 2 Oct 2000 05:37:45 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.11.1/8.11.1) id e923ZTL27264; Mon, 2 Oct 2000 05:35:29 +0200 (CEST) (envelope-from dm) Message-Id: <200010020335.e923ZTL27264@home.dinoex.sub.org> Date: Mon, 2 Oct 2000 05:35:29 +0200 (CEST) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21690: fix security/gnupg-rsa USA-RESIDENT (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21690 >Category: ports >Synopsis: fix security/gnupg-rsa USA-RESIDENT (by maintainer) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 01 20:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 4.1-STABLE i386 >Organization: privat >Environment: USA_RESIDENT to YES >Description: ..results in a failed attempt to patch idea.c for USA residents. The real problem is not that the patch fails and moves on, but that it prompts the user for a file to patch, having not found idea.c. >How-To-Repeat: cd /usr/ports/security/gnugg-rsa && make USA_RESIDENT=YES >Fix: apply the patch diff gnupg-rsa/Makefile gnupg-rsa/Makefile --- gnupg-rsa/Makefile Thu Sep 28 11:52:37 2000 +++ gnupg-rsa/Makefile Mon Oct 2 05:31:29 2000 @@ -45,7 +45,13 @@ @${RM} -rf ${WRKDIR} @${MKDIR} ${WRKDIR} .for i in ${DISTFILES} - ${CP} ${_DISTDIR}/${i} ${WRKSRC}/${i} + @${CP} ${_DISTDIR}/${i} ${WRKSRC}/${i} +.endfor + +do-patch: +.for i in ${CONTRIB} + @${ECHO_MSG} "===> Applying extra patch ${i}.c" + @${PATCH} ${PATCH_ARGS} < ${PATCHDIR}/patch-${i}.c .endfor do-build: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 21:41:19 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 79D2537B503; Sun, 1 Oct 2000 21:41:18 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA48406; Sun, 1 Oct 2000 21:41:18 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Sun, 1 Oct 2000 21:41:18 -0700 (PDT) From: Message-Id: <200010020441.VAA48406@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/21454: Port updates for JX family ports (MAINTAINER update) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port updates for JX family ports (MAINTAINER update) Responsible-Changed-From-To: freebsd-ports->lioux Responsible-Changed-By: will Responsible-Changed-When: Sun Oct 1 21:41:03 PDT 2000 Responsible-Changed-Why: Submitter is now a committer. http://www.freebsd.org/cgi/query-pr.cgi?pr=21454 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 21:41:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F26D37B502; Sun, 1 Oct 2000 21:41:47 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA48691; Sun, 1 Oct 2000 21:41:47 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Sun, 1 Oct 2000 21:41:47 -0700 (PDT) From: Message-Id: <200010020441.VAA48691@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/21493: Updated port emulators/spim 5.9 -> 6.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Updated port emulators/spim 5.9 -> 6.2 Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: will Responsible-Changed-When: Sun Oct 1 21:41:38 PDT 2000 Responsible-Changed-Why: Over to MAINTAINER. http://www.freebsd.org/cgi/query-pr.cgi?pr=21493 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 21:42:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0764E37B503; Sun, 1 Oct 2000 21:42:10 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA49009; Sun, 1 Oct 2000 21:42:10 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Sun, 1 Oct 2000 21:42:10 -0700 (PDT) From: Message-Id: <200010020442.VAA49009@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/21507: New port emulators/sope (Playstation(tm) emulator) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port emulators/sope (Playstation(tm) emulator) Responsible-Changed-From-To: freebsd-ports->lioux Responsible-Changed-By: will Responsible-Changed-When: Sun Oct 1 21:42:00 PDT 2000 Responsible-Changed-Why: Submitter is now a committer. http://www.freebsd.org/cgi/query-pr.cgi?pr=21507 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 21:42:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0137237B503; Sun, 1 Oct 2000 21:42:45 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA49354; Sun, 1 Oct 2000 21:42:44 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Sun, 1 Oct 2000 21:42:44 -0700 (PDT) From: Message-Id: <200010020442.VAA49354@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/21525: Update port: audio/lame (WWW: tag missing in DESCR) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: audio/lame (WWW: tag missing in DESCR) Responsible-Changed-From-To: freebsd-ports->lioux Responsible-Changed-By: will Responsible-Changed-When: Sun Oct 1 21:42:30 PDT 2000 Responsible-Changed-Why: Submitter is now a committer. http://www.freebsd.org/cgi/query-pr.cgi?pr=21525 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 21:43:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6145437B502; Sun, 1 Oct 2000 21:43:47 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA49924; Sun, 1 Oct 2000 21:43:47 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Sun, 1 Oct 2000 21:43:47 -0700 (PDT) From: Message-Id: <200010020443.VAA49924@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/21663: Update port: graphics/avifile to 0.48 (not fetching anyway) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/avifile to 0.48 (not fetching anyway) Responsible-Changed-From-To: freebsd-ports->lioux Responsible-Changed-By: will Responsible-Changed-When: Sun Oct 1 21:43:40 PDT 2000 Responsible-Changed-Why: Submitter is now a committer. http://www.freebsd.org/cgi/query-pr.cgi?pr=21663 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 21:44:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D57E437B502; Sun, 1 Oct 2000 21:44:09 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA50172; Sun, 1 Oct 2000 21:44:09 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Sun, 1 Oct 2000 21:44:09 -0700 (PDT) From: Message-Id: <200010020444.VAA50172@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/21684: Port update: Makefile cleaning on astro/xearth Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: Makefile cleaning on astro/xearth Responsible-Changed-From-To: freebsd-ports->lioux Responsible-Changed-By: will Responsible-Changed-When: Sun Oct 1 21:43:58 PDT 2000 Responsible-Changed-Why: Submitter is now a committer. http://www.freebsd.org/cgi/query-pr.cgi?pr=21684 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 21:46:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DC6C137B503; Sun, 1 Oct 2000 21:46:16 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA51617; Sun, 1 Oct 2000 21:46:16 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Sun, 1 Oct 2000 21:46:16 -0700 (PDT) From: Message-Id: <200010020446.VAA51617@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, dburr@FreeBSD.org Subject: Re: ports/21473: update devel/SN to 4.5.2, not from maintainer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update devel/SN to 4.5.2, not from maintainer Responsible-Changed-From-To: freebsd-ports->dburr Responsible-Changed-By: will Responsible-Changed-When: Sun Oct 1 21:45:58 PDT 2000 Responsible-Changed-Why: Over to MAINTAINER. http://www.freebsd.org/cgi/query-pr.cgi?pr=21473 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 21:46:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2CEFE37B502; Sun, 1 Oct 2000 21:46:56 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA52012; Sun, 1 Oct 2000 21:46:56 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Sun, 1 Oct 2000 21:46:56 -0700 (PDT) From: Message-Id: <200010020446.VAA52012@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, trevor@FreeBSD.org Subject: Re: ports/21474: new port x11/dynamag Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port x11/dynamag Responsible-Changed-From-To: freebsd-ports->trevor Responsible-Changed-By: will Responsible-Changed-When: Sun Oct 1 21:46:41 PDT 2000 Responsible-Changed-Why: Submitter is now a committer. http://www.freebsd.org/cgi/query-pr.cgi?pr=21474 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 21:47:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B9A037B503; Sun, 1 Oct 2000 21:47:47 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA52392; Sun, 1 Oct 2000 21:47:47 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Sun, 1 Oct 2000 21:47:47 -0700 (PDT) From: Message-Id: <200010020447.VAA52392@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, trevor@FreeBSD.org Subject: Re: ports/21505: new port x11-fm/xdiskusage Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port x11-fm/xdiskusage Responsible-Changed-From-To: freebsd-ports->trevor Responsible-Changed-By: will Responsible-Changed-When: Sun Oct 1 21:47:16 PDT 2000 Responsible-Changed-Why: Submitter is now a committer. http://www.freebsd.org/cgi/query-pr.cgi?pr=21505 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 21:48:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C1FC37B502; Sun, 1 Oct 2000 21:48:19 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA52633; Sun, 1 Oct 2000 21:48:19 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Sun, 1 Oct 2000 21:48:19 -0700 (PDT) From: Message-Id: <200010020448.VAA52633@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, trevor@FreeBSD.org Subject: Re: ports/21665: new port x11-toolkits/xclasses Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port x11-toolkits/xclasses Responsible-Changed-From-To: freebsd-ports->trevor Responsible-Changed-By: will Responsible-Changed-When: Sun Oct 1 21:48:10 PDT 2000 Responsible-Changed-Why: Submitter is now a committer. http://www.freebsd.org/cgi/query-pr.cgi?pr=21665 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 21:48:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F23637B502; Sun, 1 Oct 2000 21:48:53 -0700 (PDT) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA52967; Sun, 1 Oct 2000 21:48:53 -0700 (PDT) (envelope-from will@FreeBSD.org) Date: Sun, 1 Oct 2000 21:48:53 -0700 (PDT) From: Message-Id: <200010020448.VAA52967@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, trevor@FreeBSD.org Subject: Re: ports/21666: new port mail/xc-mail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port mail/xc-mail Responsible-Changed-From-To: freebsd-ports->trevor Responsible-Changed-By: will Responsible-Changed-When: Sun Oct 1 21:48:43 PDT 2000 Responsible-Changed-Why: Submitter is now a committer. http://www.freebsd.org/cgi/query-pr.cgi?pr=21666 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 22:39:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from patrol.bitsurf.net (c158457-a.frmt1.sfba.home.com [24.9.169.120]) by hub.freebsd.org (Postfix) with ESMTP id B92B437B679; Sun, 1 Oct 2000 22:39:44 -0700 (PDT) Received: (from mharo@localhost) by patrol.bitsurf.net (8.9.3/8.9.3) id WAA49233; Sun, 1 Oct 2000 22:39:42 -0700 (PDT) (envelope-from mharo) Date: Sun, 1 Oct 2000 22:39:42 -0700 From: Michael Haro To: Will Andrews , Satoshi - Ports Wraith - Asami , "Jeffrey J. Mountin" , ports@FreeBSD.ORG, mharo@FreeBSD.ORG, will@FreeBSD.ORG Subject: Re: RFC: Ports layout reorganization (Re: ports tree idea: Combine DESCR and COMMENT) Message-ID: <20001001223942.A49213@FreeBSD.org> Reply-To: mharo@FreeBSD.ORG References: <"Jeffrey <4.3.2.20000929140626.00c3fa00@207.227.119.2> <4.3.2.20000929220000.00e0d7e0@207.227.119.2> <20000930085603.V75085@puck.firepipe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Mutt/1.2.5i In-Reply-To: <20000930085603.V75085@puck.firepipe.net>; from will@physics.purdue.edu on Sat, Sep 30, 2000 at 08:56:03AM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Sep 30, 2000 at 08:56:03AM -0500, Will Andrews wrote: >=20 > I'll take care of it and review with Michael for portlint. That said, I > should probably add PORTREVISION/PORTEPOCH && INSTALLS_SHLIB. That sounds like a good plan to me =3D) BTW, I'm still alive. Just really busy at work. Michael To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Oct 1 23:53:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 55A2437B66C; Sun, 1 Oct 2000 23:53:42 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA14756; Sun, 1 Oct 2000 23:53:42 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Date: Sun, 1 Oct 2000 23:53:42 -0700 (PDT) From: Message-Id: <200010020653.XAA14756@freefall.freebsd.org> To: khera@kciLink.com, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21599: dia doesn't need gnome panel to run Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: dia doesn't need gnome panel to run State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Sun Oct 1 23:51:14 PDT 2000 State-Changed-Why: You are not quite correct - panel was added to RUN_DEPENDS to ensure correct removal of share/gnome/apps/* directory, which "belongs" to gnomecore. Try the following: $ cd /usr/ports/graphics/dia $ /usr/ports/Tools/scripts/gnomedepends.py and look at the output... http://www.freebsd.org/cgi/query-pr.cgi?pr=21599 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 0: 0:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5FC4537B66E for ; Mon, 2 Oct 2000 00:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA18373; Mon, 2 Oct 2000 00:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freebsd.sinica.edu.tw (freebsd.sinica.edu.tw [140.109.13.51]) by hub.freebsd.org (Postfix) with ESMTP id 659F537B503 for ; Sun, 1 Oct 2000 23:57:13 -0700 (PDT) Received: (from keith@localhost) by freebsd.sinica.edu.tw (8.9.3/8.9.3) id PAA63527; Mon, 2 Oct 2000 15:01:33 +0800 (CST) (envelope-from keith) Message-Id: <200010020701.PAA63527@freebsd.sinica.edu.tw> Date: Mon, 2 Oct 2000 15:01:33 +0800 (CST) From: keith@sinica.edu.tw Reply-To: keith@sinica.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21691: New port: chinese/linux_base Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21691 >Category: ports >Synopsis: New port: chinese/linux_base >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 00:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jing-Tang Keith Jang >Release: FreeBSD 4.0-20000406-STABLE i386 >Organization: >Environment: Tested under both 5-current and 4-stable. >Description: From pkg/DESCR: CLE(Chinese Linux Extension) is a project providing Chinese L10N for Linux, mainly the RedHat distribution. This port picks packages from a minimal CLE installation. In addition to Linux emulation, you can run L10N Linux applications like Netscape or (hopefully) Star Office. This port was CLE_base from the outta-port collection in Taiwan. >How-To-Repeat: Please commit this port, thanks. >Fix: begin 644 linux_base.tar.gz.uue M'XL("(TBV#D"`VQI;G5X7V)A=O_X.*=EZV++I@S8]*&*T,3GS MFQ$?,\,AQ76:Y/7S0X0X/7WQ1WTTQ_!=5WNA::;OFOWO]_/4^:3?_<9)2?OJGSK]IFIX-;,LS MK6_S_Z?,_ZK4<9''O^O2I@'>)KVMSE#)?V[]J]U*_[]\AV-$U#WM$CP0EL4 MO-*J0H-.50A7K?ZX8*)=0D>"J:Y!D\0CUSI:%&+S.H.>:PG7DARG-:%$X'+X M)^$M2#Z@5225\)+B)$X`^NN'%M.HU4^Z_KS,5GH[*NNNO$P+Z)]0=_)?X/\9 M^=W#[@'_=US'W,1_PQ;QW[9-_YO_?XW/U3M7>_5E,6-E=@J.698$87NC`>*W]K^9[OF=B1+W0Q]B*7=_P7()@HI!MQTY$3_J*I"6M>$4ST&/K M[I8VTW9#RPO\&!00;,;$L$/BF=2DH1%%MC?0)HRSU>;IQLP9Z4+$]K%-X]C` MV(L"Q_1#T[!F.]"5$A'DDCFT*!3M\O3$#KRUJCAP[0#9'C;BV'&M M",PT"!V;FA$*0\=%`U7S-(FP'"U[9ID#/98)HX08^FX4Q+Y)?1B_,*#( M0V38O8JR#*-R9AJZI?NS<-2]F.#8\&,71CLR_,")D>'!4!$+FU:$?&O8O21: MJ[-T`Z;1,@8-L\,XQ?$8>2$ MIFV&Q/0)\EU,$/$CTT'4`B7#`<]QS6#Z9B[,G#G4X\=&@"T'$6P;H,Z-B14; MA`B+@I%RAJ/]!;H&[1"#/9PSRW`L!!F$`WW"3N@3C%!@F5%@.YB"+0RT)'E< M@`$9T)R^#H<&"%N![_NV%WJF:R$71BZ`CC,,01&!QRJ!N%V(@(J+0B0D.P M\7CH:A'$;]D82Q@TS+EEC08HBAT<(,/`061X'@GB&$P*,G('ABKVXI%1D]GV M$'O4CCW/PU$$MN?2P*1QZ)K4#BWJ6HY%1AHBX?4!C,VP6Q&-J4V-*$`AHJ%) M3.AFZ/H(Q[$7A9&WY5R@Q=*]D18S-HD38QPY$'4L`QFAY;O(`7MQL(F(,_)V MG1=K5Q_JH;%C!F9(*7$,T[$CPPFB,`A,.R`P^B0>NQ4&D[%UTYK9PPFGKF.@ MR'-=VS!\0P2,P$K"N16,]O"+X^^_E;,$`#;W3"C%RC<`*8X\X-O9L MF"R,`\N/;((P'>H"WUQ/_-B<#8A:84A"WZ)>9!$:V8$#;8,8%K@X'!D0HXA` M$D!!#\2RT00OAZZQ(@L M!);LFY:+O`#'/G$]PX^&$0A6-5BZ$Y2*6.V.S`EBF1TB8B(K!D]S";@^)"*! M'V(+A>#,0TTIRN?2*JW1B)/0<0PO#@T#$AC#ID'@QEXH/(U$D>G:0S45JD`+ MF*0UQ#H(2I'EA79%!8XU\+#50.#`WD^M'"?PEI#+-]' M,?B&`8LTZ$90C[#KN@;Q MAL,LTV$Z@QI8T6B^P!9-QP@ALMK@()9#8)DV'-^TX3^'AL,Q>D;?XT=0XL]* M1H=N2[P(.TYL(9@B'Y(/UT2>'[@0#EQ80.SAJCJOEM^WP<@?CX[G!#[Q["B" M5@4^ALD.0L\+/.H&D6U@]^2_//_KY?_EAMY3\C"J-)+QB200;E2+7->U^`1K+@H&R!"]Y%VCD"3#2LB1/,I3*()3D M,#%IBEK1BUQ#A"2B)DYUFZ;2K&X`/VBKHM8PRD]8G3?M:A"H+-,$2PS7TF1) MM6O8#F!44JU@VJM%4=*X3M/5:^U.F,%-'(MCX9.33Y\^_:@MJJK\\53L:W3I M)GK!YGKU=/(7]O^K\[N[L_?G7]G_'7MK_7>-;_[_-3X7/3<3Z[]PWL9UFJQ` MGKM"(#B)P3?Y@A)=N]]`EI3E-)5IP0_-:Y>3#,93BZA&TPOI?.^$9^?^'RXN[^]_[&7O]WX7MM]?S?]\1_F]YW];_K_(! MKY0O6,2[R9.VLM@4K$TIJN>RC!=S5K8E<-6V5#SE3:EEM2H(JAJEI`%20#8% M8.)-[1-(6VTIEQ^94N2L+:4MX_.'N57#JNV+)1/#9UMNL&R]FLM MS,J&LCD7;&H-FJ>T?3:OJE536.58%JIUMZJBQFV)U/->3W@1!&[H MCIB8CPFK$8&F8T(Q)E0CPAR-"`LZ)K`QH1X3QNV`#LQ$#V:F/: M8HPE/H\[M=PF/+P_U^<4%J($Y0@C0K/57DPY'OWE>&S3\=AFRQ&A',\/&^M@ M]1;AX?;CE$7P\0/X^`'\MS&!;1&FM%>+,6$L6X^?_YAL$1[^>:U7^#&?9,"R M8^UD/B8<)\D>EFF:(^Z7Q)RB$Q1 M-C6N0]96//7JA.:-`W*:(MX5;5*NE=#I&V"1Z MPXHES2^;EQ?#!PZ9O>F6T/9D#8ZLBT5V:"#.=]^ M"-`&3P'C-A^:W'X'=L/;EMDQ*BU]!S;G$^"<;Z/E(KT;+UG;$K`#VXT'QAB] MI[,3?>V1K3YY]PCL&("'D;E(TNXAV34B:]I`?G*0=H]11QUH65!P)+)33.6XH8\T,FV M9Y\-9[T-F0.I/DW<(=K095.$-9A`[E1NZ`/-XF["UM,%L4%QD32W1WPSL6`U ME/7UK*;&(?^O.1,Y]*UWVNJX>'O>./\D!P+4%N_#^2_NA-B&!4.\Q;R[FI!J M&;MDH#(AM.;``&SS+J;ZM>;L?!9ZFI)J.3N?19^K*;$U:]*W+H,S5H7TD8X":1JG\\>.`LE1IPAW#!(]B!LXR2/MDR`# MQ,L2E%9]*A%7@0J\'-#JK!S7S<#MD]("D7Z]9*`7]J)]&J.X>*2L3Q+78+IZ MPOIEF0+R/D7NKS?U>E.D^;Q7[OI-G\M.8XQP5735.>)=G^915Z0Y[K4)JB2) MXUZ]DCEEKTY[`RCO@XICD@U!I+1=C15UV75)Y.Q)-VP):.X:WV?TYUU4<&\^ M1+TJ1,[;461(W=13TBL.RJ*U3D>0F>FH2FCFG%;#6G_H8),!%M"K9A8NDZZ/G/[6E6$-[$:7)U^ZOO.!%0R,7KP; MR^=\4._Z7J&>)U:4]LJ\TU$EN"L7/1!L^[I*OZ-BN[0I?^&PK<(=4YQR=@UZ M[+OETZ+HEU&6;*K/:%-_Z-3D-OSLW=7YU-< MO$#YG*XCW`X`S"]J4=;/IC$C:8QS?;$76I0TGS49]7Z=94(.('@RYPH0<(]I%%3`S1(V M6ZQ=8PBZN+Z[/[N\W,&Y.KN^^.G\;I@1V%5FR-N*O='*ZH MX2'&B0I71JNW'.R\VB0A"NB*@O)4#2W2;$4D7V#RC!,P13.5<%+T2&IH;-BRJ)5T<,M["H(UR=T9*B MRCH&K!C_UKL9%:#B\_D"J\89"5556T>P43H&JZA8''RJ(9\6J$JX*I;FF*IB MQ14J)>@S2A/$C["TYSC)R4&\6#/%/2J^+RO=@];W>VPG<#@KZK#KU5;':G@\ ML8G8`6W73E5X+)-$17![7J0*7XB#?F5LFBJW(U%6F^;*R.8X2!4NK^ZH@G-Q M34@5W)X0*<,I2X\T[8&(LGU+J6.,7`I$XM^C^I(<)2'.QXX"PV*MBIJGA64WF[35F@6JE"ZV.A[HPD)`G&)"Q'"_U\-C>%#E*,H/-SY$2RRHKCQ.!;4U$V7$R M)8-M176<#*,9*A^6=,6/E?NM3A@]3@C2$?*0H20]4DQDN4>*%#7#Q[9.OE8X M5J9:'2>Q>BC80_Z@;@Z/UI%>!P+J/@=@Q+!5(?9%$2[/)5%.%.$8I19!JV.Z MB\E"',:Z* MC56!F;B#4H!L549=!@[_?SE)&V.A*I0)]HQ-FCHGN)]P?9 M0Y54J9)U?.G=X)B"0HP3/U/7_%KA&Y']RJW%@15@6VI]G_TH*?$G,G'QK"ZD MD,$,\.)OA>A_*'7T.#1B0@*.-H_T+KFT\KTOQ%^_[#IW&D-V'3&O4W:]7EQ?7_W>W!R)G]#G*#D#$ MB_V=;KP&M7^[,:\IYX=AL'7=`X+E4QQ#[-/37E[;WR9(>2UQ'4#?-]A9PL6? M_.Y#+'%:Y'0_`OHE9WL& MD8HV[=<"*VCT>;:Y%[D;)&Y76.0Q.001\[H'\TSSY'DF#[/VMNG+N&?;OY$X MCK!;OUVG"M#?7+QW-ZC!;T.>GKVY^7@_N[Z\F^*/;L4-N>-K;B.NO(-VV;N# M-N0/KC4-6:.>#9GW/Y_U8\N(>?.NN\34_%0D."VAS_I@YEJ.N'234;WJ[?BZ MGW7YYG[75[1YST.<>?=3AW@^WGK[Y^/YN)V/S(*C-OQR`6(E,%E$<#Z^3V[NLO M%V?W9DAZ83&59*_D,<%\ZEKP\7I;?X3-(,K?=V(*^7X=X^6-$*HA+59*Q!G/ MC_H2;-!LT_7&G-=R&U8>Z7!_1=7^2Z>V0%BD;G-IM[FTUUS:;RX=U*6%O[!A M(=HC?1HN@6&F+9$Z,LI0O7^7X=J*L@]7%I/*8O,P1WMTL##4T&%V]U#-\#Y< MS_*>*)E331U%J8'-_XX?R&E%0VTSO\6,4 MKSU3O+4WBR-3C+4X5PU$U\\.:A+\N?7C5YBNV,E%,R_-'(,.:;9AEY<;30G+ MKSP8@M,X6"S\VIF`:CNL-[Y&I0U"[D52"6KVSFK_58B6;.4*K"R+^]`;?W>_ MK-XY45GYY.]QYG-RR/U@L4R=:9`J.[K*8U90>/S[OUFX\.^E# ME9^Z/0IC2!^C,'._"+S$HBG?7C(IBF?G@UYF?QUNY7GE=-8WOF5L$Q5O%2"9 M^NZQ556\;XIT]3>2+1I+2LI[RC91\6H%E%TVJ"_M168HJ[_3;!/9\N7MNO-& MJ14R6WK*F]-65=/4+#VH_MZU16.KV_K;V#:1+:U-@Z24U[6QJO;FMDUT?,)E M3=HG;50^Y25OJ\K2UIDG2[^!)/O,!-65-AL--&)OP@LIMTBE_\J)WTC:M22Y M>/\^._:PF4HI":P,I+B)-A9FU"!,_+[S<*Z2)2'Z[I&M3+E:-$BQD]B1_ MV)/+):*L10WF'Y-K>6$2S/W9JGC_M@R>/LX/0[+KW6JH2#B8^G'Z6H4_1BTO MR=["=*KKE4JH:PSM&D-[QM"^,71@#!T:0T>F4"4LNW%U&"JJQ5"T*M@U!W?- MP3US<-\&O%6O/A^0\D*"@:1>./?BN0&54[@A_PIR M,>IBU(.H!')>_:VP\9&_+^0CY:W3F_'EY#>Q<>IDSE0:'%]_G?1Z)X=$WKL[ M##V[[;C]-@CO@'`7A'=!>`^$H_P,0/@0A(],X<.N43X=MJD$ MOUX>!IY?G#G79^-#07K^Q;GY2M+..*07 M8Q)5P#&!$'V\=,:LN!G'%)?UHEN,'KY@9#K6V?6I<_;[W>75 MU>69`3^()KLQA_]R:P[_GNXN+ M+\[9V>7]/8!#Y^O5.6*'X9]OG;NOUZ&Z;1IL6;A9WVFW>P"X`P!Z MYD,8IPL9/NR"\!X([X-P<-RAN6CNJ`W".R`>=TC"-R_'70&QC# MZZL5O]YA"8L[E9'#2'8(ZSM@A^>7KY],/A\%?OEZ::D($CYP[$/YP M&'YU>G]YX^2;B@[%A_#Z5.[CS.$/9OWES?W7\>=#='-Z/W;.3TW;VPR-+SX: M-NOCT^M+Y]>QH3K'OY@R=G]L6BKNQ?0R,*VE#Y\-TTWV7V<=S;?E([5[)GX[ MNS$<5_SVZ8,QV)A-\=N7L7+HU;Q\M\!?/4ZR+[>^4#@-*>8TIC2A=&N@DN0> M]"^<&G-=XQ8<\OTZI!6@KS_#:".;"ZD5*!I^Q1HA"I M#JJ[&"7,1XPYHL8.XA:NXL:X&CN,"TJ8XA*6E]VRKP2`<#6UXCJVTD/*>R\] M8Z`:OW9'I8?"U1C19A;-_03WX4*@YJD,7!E#U02JVS$]<3OZ->ZUJ M"EDE.AAPM1M/^A#7D#K*ZQ`#K8PU=`+!\7R[7K_6\8^#>BEN\W1J#;B>M8HO M/#G5NZ;YAR2?]NN`_+JX:(?,1RTN7[*I@_SC)P?!R<:+9X->?L?ID%8^P@>A M\DCR72TGC(H'>$O)P;L^&BC?[JD%/XNA*WZ5#Z\M%2:MIN0K5,_R@T-&$,S] MY)#$_I_&&(5)@QI#KD]%_>3U4']:L!+UFHCZ342#!B)3T%/Q6E/UGE!)Q+^; M:)/J8<5;9&7(\^9I45697M$*=&O4?_%GK4TZR3_-)@/7GC3M#CM["_K]FPU[ M%IL"$T-@YPQ6J2&1RO3^N+,^A/(C=*9(\I-TQG!1 M"\9P^;RJ"4@[?5.XZ:B9':,AV)23^:,I,(C-H;D-OIF!RI]O#8'9^U"&X.S> MF2$\?#:%OFQ,VS521FZ*Z!^'$8Z@%CXI/[HT,X<4.]1#)4R)C:/8E#P.J7LM0 MV68%THNW=J`=*\F_F%N]*),4WQJI'/2S@/V+;]F?/ZJOHN1_%A_]2)9>[.M? MC'TN3[E,M+CZUI)?EFRB6TR?F&P79T_S09[]5Q4$G9$LOQ>OO4U2?W##Z9R, MNE9A3\@&(RPKGO6`@@^G5_>79QB/)[UAM\WXM\N+7\]/[T^A)G]^A.,.QR[' M78Y['/KGXXG;'N&>67\,II'(.;7)LH=F;*+LV9A&(OL!+\9V19-4'&LZ MV>,SC43VX]GKJ'SFQJJ[MRENK8J'+U8%R4?]L1RL(@F,\6@K/F&,\40,PI$S MPG.?\H0.5NT?U.&:H07+QWF@I'IZ!RKRAW@XIK'E(SV_3P;++.'_?A MN,=QGV.>M2&M&9=TDOS!((YYSD<\YR?\V">T8#VWS7&78YKS'N]N_38]]JAO MP1V.78[['-.M0'/VJ#+<8]C7K#!@.,1QR<4#WFU#'FU\`$\X@-X MQ(?@Z(0>^Z3=Y;C',7IS=X>=H_ M1$4D7YW\F:(&DG8#3;>!IM=`T[=K&I2J06X:9*9!7@9VR=`N&=DE)U22/]QF MDYS0AMP_;F51#7JTU-ES6?Q\NGP*RRJ0#W'91+3R)O+9O@^G8S:>"M7EW3>N M.>D.K0+'==Q^$]7I^3F5Y:/AGSY=V57CA]M;K,+U]\OE>'(V<%UY\6-PXOQR MVU1Y]]6J/)$=H$?.?C3AA\9"6G.:^//IS9NT;TG[R^D-+]UO;;>-9]=?'L:3 MR^,/G>-VVVTBZCK7IV?-A..+.UR=V?.'C(Z<.XX?,!Z?]0?=`>&_B9,27">U MIQ:;:,C:E3_B2#$YTZT>>,2*\1^3X?"D?XSGN.K12+N"=KOJ.4J[@J=S-KDY M:[?9:GXC9MOQ_06>!VX^3OZ8#%RGS1+9:^3)-JF@\:37[W=(*Y8*/$#(!8W; M>QQ-/H!*H7PZ%0LN;B;B;,=MMR7"`8=9_B!3.*98D05 M^7.RD#__98O,P5J4?ZD]R3]JC:#W./GC%,)X,H9PYDT. M+Q95,)F<_8'@W)N$_CA@L"SSP2>LYA7#PCZJ\GAM>,*AI/3!P(_ M_$K@V2F%_^0>]XD`5V$&CV?1F@@^?2#P\H+`FS\(?!@3^`';%((MYSN#%&8-C`C_=$_CYAL#KWPB\/67P@L'?"1Q_(_"!E?.!)?L- M9RB=7&"X)77[Z$TN83=Y#":':W0%H\E'V-B/,9ER!,2#.(/_5%F%`,5G`C_> M$8AGK(5'1O!B1>IPZ4\NX8!9QI//,$/+[>0SS%`PGUR>0Q@RF$PN86Z#E%2? M@)=PJ`4[4L[OWN3P;*N$3V(U@#%7Z>0*'G/U/+F"HVG]-+F&\WFX(EU0P!N8 MH3":W,">O5E-\*9ADTX^W!%X"\L91Y,[>,QX.[E[(/`!CJ;D:3*&-92L)F,X MO)-X\CL\9O),)@8!Q[#BT^7D'O:^-)[Y_OV7\ M^F(\/OUT,6Z-?Q]/:G^S*%]O+NY/[WXGDIN'ZXL[Y>*0KKB_O#9E2^Y;><$J M!2A8R=]0L"H*+E@IP04K%>:"S3PE3]*5^'@=F71BDJ<5L%>8*Z#BS2M@'P56 M0"6!%5`I0`4D2I[VWD+&6D@:UI:JR^SV&NCDDUUFF3CWX95?*4#EE_P-E5]% MP95?2G#EEPISY<\;]K[L_(Y6P%YAKH"*-Z^`?118`94$5D"E`!7@OZ'W:>+L M4?4F.EBK?K->JNE0+\W.LWDC50K02"5_0R-547`CE1+<2*4"-9+8+=D*5BA@ MP7+^IH(545C!<@DK6*Z`!3O[;"M8H8`%R_F;"E9$807+):Q@N0(6[-S:8N>6 M%CM_>XN=VUOLW-IBY[S%KAYL!2L4L&`Y?U/!BBBL8+F$%2Q7F`OFK]XP$6IB M.!'J.C01:CHX$687[FCM[Q7FVJ]X\]K?1X&U7TE@[5<*4/ORHB,O6*4`!2OY M&PI61<$%*R6X8*4"%NS#K[:"%0I8L)R_J6!%%%:P7,(*EBM@PSLE!;,LM7;*V#!WKK5VT=A!;-L]2H%+-BG#[:"%0I8 ML)R_J6!%%%:P7,(*EBM@P2XO;`6[O.`%N[QX<\$N+ZP%N[RP%>SR@A;L86PK MV,.8%^QA_.:"/8RM!7L8VPKV,*8%^\,Z*_YAF17_>/NL^(=]5OS#.BO^P6;% MMYS,:V*\BVAXTN\W/.G/[N?PVD_XI92*OZ'V$^NEE$J":S^AEU+\M&%%R3LR MO`(J!:B`DK^A`JHHN`)*":Z`4@$J8-NP`K;6'K"U](#MVWO`UMX#MM8>L*4] MX#%H5@&:#EU1R.ZQT7K:*\SU5/'F];2/`NNIDL!ZJA2@GN3]05ZP2@$*5O(W M%*R*@@M62G#!2@4H6/R&"5@3PPE8U\%>%3>;@#4=['VQ[;+/7@$:*7[S99]] M%-Q(L>VR3Z5`C60[=]@K8,'>>NZPC\(*9CEWJ!2X8)^M!?ML*=CGMQ?LL[U@ MGZT%^TP+]O'.5K"/=[Q@'^_>7+"/=]:"?;RS%>SC'2V8Y7K67@$+]M;K6?LH MK&"6ZUF5PERP1<,[&]F3%;0"]@IS!52\>07LH\`*J"2P`BH%J("W7-!;-+Q0 MMVAXH2Y[)(77ZHIOL"K^AEI=63=8E037ZHINL)8-E\+LR1I:`7N%N0(JWKP" M]E%@!5026`&5`E1`PRUV]O00KX!*`2J@Y&^H@"H*KH!2@BN@5)@K('NXB19L MKS`7K.+-"[:/`@M626#!*@4HF'PPBQ>L4H""E?P-!:NBX(*5$ERP4@$*EKYA M)@P:GD-K.C@39D^T\5I-^9:HXF^HU=2Z):HDN%93NB7*GL:S%>SRGA?L\O[- M!;N\MQ;L\MY6L$MRMSE[DI`7K%*`@I7\#06KHN""E1)ZCP$JM)+!2*X6Y4I^B-U2J)H8GW+H.5;ZF M@Y-0_K_:9Y15VG#*RYZ%I6VX5YC;L.+-VW`?!;9A)8%M6"G,;9@]Q\L+5BE` MP4K^AH)547#!2@DN6*DP%RQ[!ID6;*\P%ZSBS0NVCP(+5DE@P2J%N6#A6TYN MPH9/*X0-3X+"AB=!V4/>M/;W"G/M5[QY[>^CP-JO)+#V*P6J_\ M8#=7;R[8S96U8#=7MH+=D,D\?,MD'C:-!S4F@[M=[(W,6@C[17F1JIX\T;: M1X&-5$E@(U4*T$AO.9G:--Q99*^F\-JJ%*"V2OZ&VCJ(8BN,KL>=[E!J+7J# MKG<@A;VO4N*.4$IP1R@5J"-,;N]M;79[S]OL]O[-;79[;RW8[;VM8+=D-Q@W MG*^SMZ)H!>P5Y@JH>/,*V$>!%5!)8`54"E`!VS>,"DT,AT3<\+JAID,]/'OK M[#BWS^!MH`M!4VBR-[2('A,WC*;$[:,)43,)E;WLMD+_ORAM@V+:RT<+]G!J M*]C#*2_8P^F;"_9P:BW8PZFM8`_D]FCR](:!I8GA@-%T7OU*`\I?\#>6OHN#REQ)<_E(!RO_\EL[W MW+#S/3?L?,\-9XCG9HWT;'LH;*\`C?3\YH?"]E%P(SW;'@JK%*B1)N,+6\'& M%[Q@XXLW%VQ\82W8^,)6L#&Y7I.]UTX+ME>8"U;QY@7;1X$%JR2P8)4"%*S9 MM)*]NL_+7RE`^4O^AO)747#Y2PDN?ZDPEW_;<(^0V1/0"M@KS!50\>85L(\" M*Z"2P`JH%.8*V#6\2_5C^8;Y-_-K.,[]SVFE'0C-=:?+FE?A04Q8D[H25J@N M-->K4-W_>OPA6/1M%5"7P>+71&\JO"D>:6-%SZJJIF,559-IU;0)7G+;CI5_ M_+)9&TC^\4`I<%;1(G)>YNOC3;BH*5-OFOAI*TGGQL!9G!Z&/Z<=Q16\"NZJ MP<7W=EJ=5J>C>+/7R;#;=E9K$W1;[L#M8.+L5AB>8N294+?5'0V\%*"I,1N] M5J_M]OT7R(:0]3IM9V=B_5:_W>\`PF*I9G\*$36L>,!K\/SZ'/!!:]!6OORB M$6>^@/`%$QP-]H6,7=]_`AD=MH;M]HD+D"5FCGL="XX9YQ`<>]0:]3O&5CMI MG?3[SG**F;$;W+1NSN[<0?O;O1B)ORK^P*KFVWT'"FY;MQT7`N>:(.=7#"'J M08"/U6/'ZD&$#M4'X4,0/D+A\,@G*-P988)3,Y/?6K\YRXW\TT2]EN>:>YL@ M(P1.(/%Z;8/-IYBQ5*U=20CH@"9%LG4R7M[$GC>2L:1STNX`.%W#"5&@/D$^84O& MG&@U!WR6]B!!>9G/X_U'(0TTPQ@PM!P MA*&+D0<1CN3BDKDXBRY.L(M)AR#2)P0>8.01]!ZRGDN0$R:0HD[H;V+4`X,7 MLKO)H6/#I'J^H_`^W#A]'W4)0E6S2C'I0M*#I`_)$)/-#++(679.&/6]=(DY MC6R)FS@N@UT&>PSV"62'9$=D!V3'&S(&VV4]]1*"$F\>H?ES'2P\@IS1-$@9 M1PVVWKBPK3.V@]!_<5C<'//H<'Q)W!GV.76FA.-3I9R><,KRS;,M*(L,U]\P M].)I%).3LC`),'%FT2J*'=?QUR]65=>BXG3-6!"R3*ZC,"(8[CP$/$Y>$T[) MPE`HGC#N=4FQAD/,1NT7MV_!EG+GFMC;44FW;<'VH_2Z%FQ/HM^V8'L2@[8% M6Y)8$62)2GI08HM*NP]JNHWSC$\J-J@DFVBUBAB;=/JWG)]<49[-`TBQ6?D. MSK2DGL]H$L71C`FV9!>X%SC/4Z9Y#N;^BU7@6A5=JEC3BG!]"IT-P:,VHY>7 M%,XH]2E=H%$0KSOM-F..MZ9XQRF,G79'Z+0F]6*TH*2IVX7YE;"/H;R!0R$L M2XZ?.Q;,X_>&5WQPZ M'8K7C/8IY+7F\FJ'%YW3M$_&0;_=9\PAE2%.FST&YP1V,>N2L=?ODI;KLU'; MYZ.VST=MWS9J^ZP[]GEW[/=HH=PV&_&2.S9.QEK!K4GL+-B>@#47EA$O-1/7 M@GD^^Q1:BM"G:7=)$PY<#LF,DF$V!B7O6G@"\8",?L$<>+$BQ[A"!F0H"N9T MVMTGJX"G3VF?,=O1^_:CT[*3YLY:FQ[=M9>=#LYM62L3>%[1N$Q4PC>)Q#A:_""P2DW8Y:H#J$$ M[0BB1]S1[.YL&=Y9LKR#<(>!.:P2VF/TLO+2U0_/CKU%VS1.38OX"4+GQF-(76/VP2% M+!Y.M'O<:3,6TI@PW6475<\257J0+F)OLP1T9;XS($@TG7F()?,H`9N#/77" M:`HNNE8BGD:R\6*C8-::@8L1.7$Z&P)[#)JKOH(L<@^2$28LP9$S8I!D=63) M:L9IXCO&<-0N;):N^LFT8O``V"R!` MF9S/>OT!9$.WPYCC)S/&5RM,^RYA*$>+X0ELO\7,A015]#*.UEX:S!+``_2( MK&0IN,RL-X[X82SX3;(*91WD-'2C_T0C7%Y>V,"'S8I!,G,0[T@ M6J^C>12C4D?AS-^D%#I@MU\)\/)6<=S'2LG(QO$2L9>,[)*=8S_2SIY._$RR MDY@W?R5S@B1RUC;%:-0_H9JG*!!+HU426PY%Z:K#*8]-,V?)UP[#;ILQEFRO MRQB+V6\S9FO17,%;5&BRYK(K+$>BE#6HI#PVS1S-UZ#-F*P=&^>IV^INT*#N M!FU.6=T-+'4W:-/,T7Q%*SQ[I_ZJ2Z;?#'6L. M=GN"P'#P%IQ$YISGA$3KM#%AT3J8.,,I@23-'B8L6A\3EI4^2W/PGB"W3R!+ ME![10:>(->RP0_OO&6.']AU.:-"6E<\9%CV'YIFTP.R0)&('$Y:=#L].AV6G0R*Z[PF"'4I"LB"X;("5V6'ER16(5Q#8%+D&7E:#+2]"UEJ!K*T'76H*NK00] MGLF>-9,]6R9[UDSV+)EDLT\.G=EL1@2LB`4F1=PK&ARFB22Q"AJE$ML53=+9 M604\E1EMG)FU=6:6YIG9VV?6K(%F#5IH9FVB6:,VFMD;:=:LE6;69IHU:*=^ M&Q/2@(,V)F1Q&_"U=L`/22)V,&'9X6OM@*VU`[+6#O!:.V!K[8"MM0.RU@[8 M6CL@:^V`K;4#OM8.K&OMP+;6#JQK[<"VU@Y&!;B8=M3,CX&[+Q/H2G#Q+15,G2T^_W,<&)YA!6 M@,3LD#BB^:VEG)#L9)"E2K(C((XXPH1E9X2/-VI#@(B7>MG#$K#;"\':GP>> MVV=IP-?D0_'G(FG(8@BZ'5A>?^8\HQM*)<;G[QGN=CGN4=PCQP:O M@V=L%P(\W'H*AMYOV=`3Q8_#BSQ%UT%N8&5SXH1\',%^X@18N M01V"T.9D@7=?"[G=8<5`GF$E0^]9%OP%LDX7755U$G<&<'Q7W%F/N*37MG%K+GK6 MHPPM&1UV+;QGY99)U MIP^K53(TM-9DG5MWVW#O)U@/,E@#@J#]P7JV]-"*NIY#`!X`SUD7,U@?\Q3G M7C*8?_2PB6";;A>>U6Y&;@_=8TI@3Q?$0;%2!R\T&4-%(#N(E$:#*Q2N2T&< MQ$LPA4>3#R`F&(Y@M9`&PN,*96.'.M`.'7^'!O<.]=+=$P2.^>$BO^7/UAY> MS`H.?)H$74=I@M`6@/`9W,;)6)`$48@%FQXA;<)&F(T`B1<123/9Q$'*&'C[ M66#4LP1ZZ9C/"B6:^:N!2R%X`&S/=PSW*+2DW<-I^S-SY3^V'L$,DA-P1`D[ M;4P<\\WH"NX(A0QL0@KD`>;"XKEM?##!G@/&8$QO-8L(,OL+".B#RSH%0H?# M]EP"1G&Z#7T$$P10/F)QAARM*<3])>>XLQ6\PSEHS45KX:7F^;-`COG1ZSU- M&490;`\!67E)DJ:O@(;1V@0N1GVG!:84;<[5L+=%I M0(&F.P!Q-!KK!`+'PVA*4(+9`J-DO5UANB4('P\7`&?D"1/Y5PHQS(=[XCE/ M,V&A+(&0IC%#/\$8#LUU?SLQOG4OVPT>--4]#)D#"<*OM%2,N";7F&:L#/E^'%%\5.O3WG(HXXR)+0XK3(\F[-EB3RFTQI8"QR+I M6;DM!88'C#D=UX+AIK,4O/3:5!'R!#BU),Z:=L`JA)DRWLR.BB MHV#I2P>50&YOVY#U7,SZ)%Z_0YA+F1-&P,TA5_1=QL`YOL0N*&C0"CJ0=(%_ M0H;,MP8$ZL'TIC.SR[Y$:P=X&>?0;`&3L^0U2?UU!PI(,23L,SC@T#ECV&6P MRV`/0W?X`B'Z;F`!1QPZN([[K)8$[%%($AYT^ET*P>>:]OR$\AZ%/&-]"$?] M=I?!(8$=ET&6;*='(2G,:-#&<3WS\T0YVWB=`:,C"F>.HC[\9\F M\M0"%S8$\%[!$\@EVVRHQ M;)E2(#T]+&F`1X1J&#Z-*#3FSU9EP/Q@@D2@4TB$@/DIJ%5KY8&A(]&K^2*P M0$&X?2'(/&%7T`DIEY5NXRQCSLI+&5XS&`8P;XF'"6J3/37W\8SOI@"%Y@U8 M3F""&U0YV]##9#`RWH=;M]:N$YI'F6#>#`)S_C*TQ,1!/ID%AD,VXV)IB1*< M>OZ7M\)9"Q!($F3^MJ<=CEV`YRMP2T4PL0M,?=0P_GJ)=% M!>RU"?08(U47$`19&*3F&]45=%P+)M--+NEP.K5@X*69*UX(" M+/%20(Y02N!A4F>(2I;V^O#;(A*;(X:MD'VPKX:?".>Q2>19W!FTGS>;#><[ MBR![RB^T2AJDLFN0C#4WKCTWKCTW;H/^^WW M#2369`9MNX(EX@[:8J-&"I0+K"GLK$E8?$<2A),'/>$0L??SK@@^1ZP],U/ MUU?0DKY\O)ZG;W[1H(*6](7`DKY'6,28.(\`+R44"DK=$6,L5ZQ!NQW&6*J" MDM*R1NZU&6/'%)08S3='DUWR!AIF7YGQ!C-T681__0ZHM[#.:"C_A(03SXJ M@"#ZWHWX!WU(22+\(0OQSZ.T40<,W8@3_ZSF^)9[AAD#EVG%/^LX0FBS3;IA MYSV@<;"@&1()*C+Y=*AA[`*!DP5:QAG*],T.U:L"5^KVO!EO@6"AZ9*@6\]&Z?ILZ+WNW2 MR+C<:+$K&?B>B,2XP^)'/?84SH\5A]ULLXI@XN*TN\_8CL`18R1BM\\8B=AK M,\8B=ADC$?MMQDC$WWY#[`=<$?Q.!\X5?L=ES/SLKF1]6`1_0`XWZ#(&.Z,_ M;+?-MJDE1.,NP)T4OY*9P60-LY-#.`V5&*Y3A8#B'H7\V#W;L7L4LV*S;/4) M&Q(V8HSF%&\Y)#UAS!EQ2H^+MR!QU(4C(\&=/T%/=/UM_SM&>0+($D?`%@AXDYJ>*!=J:'Q+*21^@9_3UU)*]9W!#H$M8 MES'S<"WH"#/SFEJR]Q2"77:=LVQ)!<76^)QN*+1D?F,]^(9@ES268.\99!G+ M,3^PC8*'C>)6/)7?964,/6-5\1V@YN_72@!F@`+A!S>%P)]N$V3:+?$"G"67 M#,S6)78ME.,^H[TVI^\9'J#(Z<`UOX]:,M@\J?GE'D%>GE-,\%J:M)(>")]V M$'`1Z"(0(!!-9^:GN06<@<^-Y:B/D%CW?9ADA'8%$L:^'S)F;I:2N@QV,=Q! M#_V,F^_O"A1`IUT!HSB:$01.I4O:0W03A-BI7O"TCVIA&T+@=`AR"1MBYO8P MZQ)FWI/F;$:0V9DYASY!YB>&8?/#MA7><4JBAW-_/>C#*B]X M%V!S#\A`K]UQ&>PRV*/02=:,]RGDD5V6+9=ER^U3"*;G.G?,CQ_M)687LSWW M7RCW*.61:>:'],B==I]"X/U:<8_1P31>,3ZDT!+YA$(>F75^>:._S['Y.8"2 M=RD$*_J>\\1I9)9M-@+<-H5#"ATR+L"K[1*N_-A[Q1"\*2YA#-]P3(M?S5OJ M/447[_>*+A0L1.[P`0*\:`7#;A>C/D0]B/`J&)S`954B!Z]W&D)7V%0UB@/D9#B'IMC/"Q>L`I MJX0]"F$CY7C-Z`#"?J_3IA#N@W/\W+%@&M]M4_@^7%'NV#CHABT+8(3*$@\G/-DZZU([L&WH01ZZL`*WN#2;&`Q-C#_L?QV(!K> M"5VMLK=66J/1G<)^R5ROB>,PFSB!1^_W%U">:T2XN4P^B7ILA<(*>45R%`CT2MIE1 M.(]@-X3KKB!+B#IM@G!F,L@RXV*"CXAG$;Q*#CK'QEB[UBXV/Q"4DQU`B;1] M10R]C5*R-8"OSK!O=JK-X,G)XR+EU$,8[!(*]"=D;IL@!Q:SH,Z.+3'"_31`K4M]2I#XM4K_-H](B#=H$L3P/+'D6W.RDL*>6V%U.>6SPK$6) M:8WPE'>VR`2/^@2!^;RD-%F290EQW&X;$V<](Y"DB;N-0(Z-[AC&?2JGEL@[ MGFVIL`BZG.XLV';\KN7XHS:C/"[-FRUG/%\[TGF[>%[LTIFMRV:V#)*XPS9! M3J?=>>*\3_G%[1G#(8ULOCA44C)S=8>TNH:LNH:TNG`3]=DT0)N/M1YOO#[> M'/3AC:F2FC\9N:>;&><["^;QS8\`[ZDM]LZ">7S?BBV5)Q6T73+%SBK@:7!* M4RCFS"V!^-;L),3^*61''L6_DB01Q@^Y^.G M?"_;\U^WY+]?ML6?<<3&+0IY/D?6/-/%XJ26U/H MVK@M!4L5V*+S+C#J4TCV'CFW)$XSQ^?8Q.^V&2-+4(9IRJQG\!/>DN^X@'4< MRVEO(>C:N"4!2_D=2W3>,FSFZ%K&?9>/>\M9HA`,R<'[E-$^8\DVS[4MTWVV M5/`SI)SC:"N2L<$071^PC!+[\EA,G,#^K).@('@P]D2=1'#&$RR8I*9_$ M.$.K41>0U%NATI,6RMRE.@/H:5)*S,M!21(QA37[ MYA?H2XJ\*TL>^CN*>>IA3+&E\#&MVGA`J3]?>BE7;!@&7A8E?@XH18\0E8*7 MQ]CW1[0$+VM6=QW"6#PV&!+&2(7LS%]K_-'ZX8"G#@HTW0&(H]%8G38F.-8) M`"X&'B;.T\R9SCC?,A[:$@AY"E-`NJARP(--.4&/4DEZXG@0(=)'QQJUS1YN M`ODAS+L?]C&B20;IDC'8^!DE1:\XN!0L)*F#LI6^0.!TX"'3%_59NJ6_]I/6 MN?_H;5=I:Y$^R7^5F?A'%/I9[-/'.)AYK=-I,/^N?(GG0#&;Q1[C\WF03$ZG MWI2J5HO`CQ.F2-8^/=`';^T]1500+K8!%WS?KI@@2!)ORP0K+TQ?8Y])8N_' M#^\Y6*VH:OM]NYYN:8'/O"".*$^\J;^9=HZ86AGX@V7!#9%V^]X47Z(D+3:,MJ[DNP\%8!%80").PP M5]XB8L/O*IC&OJW77D5KBK=>.*>9V$Y%K_>294!%B>AQ1'`M*G0:4<%FFW)! MXL=LG%_+Z8QVD.MHX8F);TE3B<(X>@Y866[D&)^RZK@1\_/:#VDB@5"P(7PC MQM73;!FE*1%]W7JB2-%V$;$RW4:BMSHWT3.KW[$73>YY7[D/Q/3WE+)#WAJ+C86_A<)%:>%1CGE28-%ELN M$D%H$6VG7"`V[+,@"JDF?:)I?/#BJ3<',T:I\5?^VB((?M!Z^Q!YDV]! MDO*\1(O(I@@2?IRM'T9BEQ+$/BW2F;>>QL%\X4\^>*]<&,ZV(5?$WLRS'"T5 M>YIXYG'1JQ^&OD6R]GAFEN*_B\@B66Z])>^@9U$\CZ86B6C.R5U@*=4V\"SI M;&7]T2R?>[N$=_-<,3D3>P(ZR,_]\-F/N2*-HR"EDDA^\H67^V*^CL*49UIL M3BQV$I/[;?S$5=8*^+3UYOXJVFY\BRKUU][*EM2K]^G M[\]B*_?HO7#)LRT1<1(8)6+%H>/C,IP'(J'R_W(Q39KHOX312Q/=M:#AHE$6 MOOG/O,6;YW'['-!>9-;[P=5!&N:SRNYK(4+L10G7+8-$KR]+U378H@'$5>$GF43(R7;A"OB5,R4 M?VXMF?GAI2N^KEW[X3SB\Y:0R'G9Y\?R7X)9-#D+4MKFUS+/*SY[BTU_*DZD MYGYD4\6^M[)IQ'E*[-&^?./!:Q:EPM]-?H_X5'H3;((%+]@-VM!77)Q3+VE; MW(JNL;8I%F$0I]MPP66QW#D%4UK)MV+OK][+.I2(I<_QMLYM'(0SWZ:<1(^3 M\49U'C8*H\GI+/;MJF_^:LF+L/6E3FRGJ.Q.Y.E5J"R;F#LO?`K"R66X\FF? MNO,7EI.0NR@1U4_S-/;$"8]ETRDUT23;.-F$D9@IMWR]&\\BL;^?OHKSGSG5 M+8--',WH@!BGDU^B99A8-%^"-+5IKK:SP+-H[I?1VK,E]$WVT9"VW'@7/*83 ML7>.+<)[?R&RM?!6&YJU^^66+QE"$,[]V+:ANP^^;RU[FGLY(O@6[)LXZXJV MED[^+8@7?(3^N@Q27YS4\W/&7X,P##8^G8=^]YZV*9^??_?%+FWW%`:/YJ.% MJ3@#3(OKN>`JSEYS[CV#_5%-LY7G&.I[\?35-V<_">3%'097:P^L]QE> MHY/JC(HSC]<8XS]3L"@7-)KZ&"?+)W$6YCMIU,]B1$R^1*1B/D?/ MN,]^$9O5),#1YL5#Z.&[6(7$*4DX M9YWL8>6).=.C74UH0K%]3B,BB;?K/W%%?`M\>:H5XJ;XMO+F@1AU*5G6L[TL M&76_^T_2C3$(X2WO7!7[SZ!5Y-4K:FXO-$<_VG?_Z]-U#%S%+5;Y/ M_N1'XF2&IR=.##_[*W2'>*_RQ%F_N;:V21I[*[GQ/+NW".;^R@M`;5:J#W&0 MP-OG-54DAO_DLSA)X<(SN6.*0:U6JG,OWH'-4:7Y'$W%#H5KKCY?6@2!_(:0 M9SG4513/)Y^CG:42KOW5--K&MKJZ&?]J$8B3YR67W/I6R?_8^GZ8K-"J4>FR MSFF1O,Y#6W<3*X"HQ\#2L-^"F9@;;:I?_<32L+_+BP>BBY@'BGQL*UBUT&6[ M`I_[Y"IGH;GPS#DI,,KHV85Q[)V-[P=GYV;DR;M?U1`GDC.Q/L3FB\V%0F;: M&7N)F.)G2W]G[MTUK1\SQ76T%2?R`9/<^+M'H9JCSE;(;KU9\$C+UC#3OV^? MS+NELV6P\N5C<&D0BFH"M92)\H)?P@$B5&%V>OP=[-QS`=M:G8%G.R[,O>-B MC(+[%^9.<[%XW1C[WT5@[OD7Z:SUZ?J>H/=M!CL4\J@\KLLHA5T&>PSV&1PP M.&1PQ.`)@0ZK0*=#(8_*X[J4=BEE%>S0A&FZ-%G6;@YK-X>UF\/:S6'MANM> M?DYV%\R62/!P!L?BP_T91&&0V:FOD."/[M8^*Q8Y]LI+_>G8"IV`>!`2-B%P$+R1>RX0K$(QN9KU*4J\)\)OA)G$1$KS]5W4>+OX+92J8E$ MKZ2);%_\M=R#+XA(G-?%P9P*5BG+QG40FD^M2QZ%GOD6;R5(Q.Z5"+XF*Q;_ MUHL#UI=OY:.G;%3=!0M6P#OP=$"!L\M1'A7(\^LX"",JBKWO_C.5!.M'<3*_ MB5CW'#]%F^\TN]%C0'.;1K.G9;1BT^&]MQ*#@'6]^R`&9\DU0<*+\O!CN1"G M)*QO?O/FVQ^4RQMN+*/R`A,=9=^"51AL6?_ZU1.K#^N_?WB+V)]2P484],?R ME=78']L8K)T?/7D::3PC_?3!'.J@/3'8#\.],-RHH9T`W05\-F_ZY>V?)W#W MYW+FHY.6_,&[[,YK*"^H!>;A5[\;0@>QK\$EZ\OD]CS MC8.>/+CXB[&T^XFM%TTS:J`Q;N)O_C"'.F>?3XV5<"/V MFM^-/?KVSKAGOQW?CV[-%5I<$FF=;LQ+5,6WLR/3,S5H)Y!-"TZUY\BU%'[TG+WJ,J"3X'E"^#;U'\(9AJ?GDK<1``7/87K2> M!KS0\L%R;R6637-OK,EH[8I).UJ!4Z]2DSV'!MX9*#5?`CE5K3U>^"^1G%FH M@DT6I>C:^[Z-(ZZ(_]SZB4=K68RTG4?[Q(V8@6G5W`1;6APQXSQ&JR9W((G&?>BE4>S>AND,R^(:<7>BK.`C<\5<3JYSA]S9+H[+XY$EUG0 M@HV]`*P9>\4ZHDG<>\N`][E[L6??\31D/E-O0ZOO/M[29OS5>_(Y7X$W"TK% M[XI9TAY'7 MS#>_P-6[AW'K="5O9$#H;^4=?H3C0/R)(I.[/X)F=WZ*MV^(!-SP$?2S&-Y! M`&"1L#-.O=@\0(7H6ISH!`M8.G8W26!RBTA0.(.!BZ7T0NFOSOC!&&[>+*-K MJD$2=3N#P7%J?E-N$R7!2P.##E6';#I4%3?K4+78LD/50>,.18;M.S09,O'0 M9<#*0Y5!0P]51FP]5"$W]U"US.)#44*C#TW%[#Y4*3+]4%78^D/100,0366Q M`5'5Q`Q$%4)+$$7&C$$4(;,'483,)$018JL0168S#%'$Q#9$U1'S$%4(+40T M&38248303D1545,150JN'ZLB:#"BR9C-B"9%9B.*#%N.:#)D/*+)D/V(*L,F M)*J.69%H2FQ(H@B)+8FJ(^8DJA!:E*@R:E2B2"UV)8J6FY8H4F9=H@B9@8DJ MQ#8FJ@Z9F2@J9FE2""W&)IJ*V9OH4FQRHBNAU8DF9(8GNG0[;2(CYB>:,GUJ MD!XS0M&4R`[E0`9,430=LT;1I<@@1=C"YV8)4N,75=O4_L4< M"YG`F-7$"L8<`1K"&.6-\X[,830=MHA1A>1^JR9$=C&Z#)G&J#IB':,*L8&, MI@,V,IJ*F\GH8F8IHVJQL8RN@_8RA\)MTD3'K&9T+3:QQ-34QR-"6QRCE00L.<`R6TS3E08O.< M`RFQT-&T-B,=56ZQT]'$R%3G0,:L=30Q-MC1A-AF1Q52LQU-"BUW5!TWWM&T MQ'Y'51(3'DW(K7@*<0-#G@,EM.4Y5%K->0ZB7-O.M1L9]1QHL5W/@92;]AS* MD75/H6QFX%.(F8U/70+-?.JB-;^LPXU]ZB)D[Z-J@,E/7<2L?FHZ8OBCJ*#M MCZ)ZVEHET`*HKH)&0'41M@.JJZ`I4$W$K('J,F805-=AFZ":"IH%*1IL&527 M!2M;$:%]D*+!)D(U&;(2JDFPH5!=Q&R%%-VSK7\2BZ&ZBKQ?5),1NR%%A4V' MZC)F/53300,B14-LB!0=-"-25-"22%%A8Z*ZC-L3U946DR)%"JV*%!4R+*J) MKBU7GRWF18H*61C51=#(J"8B=D9U%3J:\A[_'49>[BSIL-V28H( MFR;59=@ZJ:Z"!DJ*"-LHU6703*DN0I9*-8W56*FNY?9*JI*8+-6%T&JI)J*& M2W4=MUVJ*8GY4EUELV!2M-"(J5#9[9@T(3%ETI38FNE`R`R:-#&V:=*$U*Q) MTQ++)DU)C9LTK=6^2==#DS>M*U MV.Y)5V+3)UT)K)\.9,0`ZD#+;*!T,36#TL7`$NI`AHRA="&TA]*%W"1*5T.K MJ`,A-(S2EX2M)9DEQU[V<&:91P-M+T,OEQ6*!K9=JA*;=ZDZ:.&ER(B1EZZ#=EZ:$)EZJ3)J[:5)L<&7*F0V M7YH2FWTI0F;YI0JI\9S1<@4Q22L$S:S2%#$V3--D MQ#9-52+S-$V%+-04&3524Y3(3DT385,U34BLU30E-%A3=,1FK=#16UW8IB"F9RJ@Y:S&FR8-N@R,1N3A9VJ M0A9VNFI%WX6TV-D5HLBR7!!KNUP!#.Y*^`7#!L]#V2SO#E6G;#&UV=\=JLZ: M)(>L\`Y5%TV2@[9XJ@R9XQVJKIL<%1GE':INFR2'3/,.5;^SY+"!7L[I579J MIE>38$N]O0@;ZU4:ZSWN!B9[BI#>UJ:&>Y7$;KM729GYWEYDO8O.C?@JC66N MIC='&MP8009]!66G4/1^2KP%KT3'P6*9-O#J4W7(JT]5<:\^58N]^E0=].I3 M9-BK3Y,AKSY=!KSZ5!GTZE-EQ*M/%7*O/E7+O/H4)?3JTU3,JT^5(J\^586] M^A0=].K35!:O/E5-O/I4(?3J4V3,JT\1,J\^1I3I>#6BRJ"7GV:C'GU:5+DU:?(L%>?)D-> M?9H,>?6I,NS5I^J85Y^FQ%Y]BI!X]:DZXM6G"J%7GRJC7GV*U.+5IVBY5Y\B M95Y]BI!Y]:E"[-6GZI!7GZ)B7GV%T.+5IZF85Y\NQ5Y]NA)Z]6E"YM6G2[?3 M)C+BU:?+F1>?9H6>O7I.NC5 MIPJQ5Y])A[WZ-#7TZM-UT*M/$Q*O/E7)O/HT)??JT\3$JT]5E2Y-6GZHA7GRY\;I8@ M]>I3M4V]^LRQD%>?64V\^LP1H%>?4=XX[\BK3]-AKSY52&[1:T+DU:?+D%>? MJB->?:H0>_5I.N#5IZFX5Y\N9EY]JA9[]>DZZ-5W*-PF373,JT_78J\^38F] M^@Z$V*M/EU*O/DU,O/HT)?7J.]0BK[Y#)?;J4[78JT_3$:\^38F]^C0A/Y&S M>_6I0NS5=Z!C7GVZF'GU:5KLU:<)K5Y]AWKJU7U_4=2+E7WZ$<>?45RF9>?868>?75)="KKRY:\\LZW*NO+D)>?:H&>/751?HL%>?759L+(5$7KU*1KLU5>3(:^^F@1[]=5%S*M/T3W;^B?QZJNKR*M_ M-1GQZE-4V*NO+F->?34=].I3-,2K3]%!KSY%!;WZ%!7VZJO+N%=?76GQZE.D MT*M/42&OOIKHVG+UV>+5IZB05U]=!+WZ:B+BU5=7<:^^FA)Y]=4DW*NO+F1> M?34=].JK:8A77UT%O?H.1.97+PYEHV:R$XL,>_4I(N+55]78:^^N@IZ]2DB[-57ET&OOKH(>?75-%:OOKJ6>_6I2N+5 M5Q="K[Z:B'KUU77K3YT:?TKM@O0]X]540O?)4")!77X$#-A*) M5Y\B,#M1J)).`TF39)JDX]HU#21=NZ1GE_3MDH%=,K1+1G;)B57BV)O`Z320 M-$FF23IN`TVW@<;>4$Z#0S4X4H,#V7N$8^\1CKU'./8>X=A[A*TEF5?,7O9P M9IE%P.MH-0%[)6TO0^^6%8H&7GVJ$GOUJ3KHU:?(B%>?KH->?9H0>?6I,NK5 MITFQ5Y\J9%Y]FA)[]2E"YM6G"JE7GR+%7GV*C'KU*4KFU:<([1?LFWGUJ5K@ MU:>(L%>?*F->?:H2>O6I,NK5ITBQ5Y\F6Z7V[$&O/E4%O?HT&?+J4V3(JT\1 M0:\^506]^A09\NI31?39+JM7GR9C7GV:%'OUJ4+JU:=*H5>?*D->?:J*>?4I M2N+5I^J@5]^!+&E27.;5IPBA5Y^F@EY]J@YZ]6DRZ-6GZ+!7GR+#7GV:C'GU MJ5+HU9?+B%=?+C![]97,X6=*]"S)I3E,BK3Q-AKSY-2+SZ-"7TZE-TQ*NO MT-%;7=BK+^?6%P&@5U^.J7%5+H%>?3F^9I=.KL<<(M^60M#`J^]`.6;/!=B] M^@I=`Z\^HW+46$E._,Q>?26#7GV%`'KUY1QX]140>]\4`HM7GZ8B7GVJDGCU MJ4+LU:?ID%>?)F->?:J4>/5I0N#5IZF(5Y^JI%Y]NA1Z]6E"[M5W(&[0,LRK M3U4RKSY5R;WZ-"WTZM-T]BG/[M6GZXA7GR:%7GVJ#GKU:;)@VZ#(Q*M/%R*O M/E5'O?ITZ?KN->?:J:>O6I4NS5I^N`_Y,JPUY]N@YY]6DZ MYM6G28%7GZI"7GVZ:D7?A;1X]16BR+)<$*^^7`&\^DKX!<,&ST/9O/H.5:=L M,;5Y]1VJSIHDA[SZ#E4739*#7GVJ#'GU':JNFQP5>?4=JFZ;)(>\^@Y5O[/D ML%=?SNE5=NK55Y-@K[Z]"'OU51KK/>X&7GV*D-[6IEY]E<3NU5=)F5??7F2] MB\Z]^BJ-9:ZF-T<:W!A!7GT%9:=0Z'Z*_.4X]:;OGKVX-9^*/'1\ MW/JMT[D;M*9!>/2?SUNRUL2O,O#=OVW#3!JO#T@]B:`[&C@B+^)TQ%D%X?:E M5)I#VRI#YJD/C"GWI(-FZXW MI5[\:D@E"\W"UD_S(#YR,OTTBE)#L)_.Y"$-1&9F'1VO` M'E?19O-J@-'&E`WYLJHA6!:GZJR4SRWQ@W"VVLY]JI%/!9KY7,P.`(D*!&0A MIH`$,%FY5CZ;B4XP!0J16?FORW&/XP'')QRCVDIBT:>R,=#Z\'!Y=6Z7W=U> MCUM>NI2F",W$-I6'DQ;.E73S^^G!W=C%N(+R].&LBDTB1`9O-*GQJ/:3!2IQV MRIHP<2VT_J=\J4J4IO7BO9\]&T`]:)$J*6V\]?%<"8@CN0=1`[-)N_JS_%69 MM*N@\M?:I+T/*&?J*J3\-9NI\U_SZ3G_/:E5G38_ZX'S?2S#3*R#6D:U.5D+ MK`=HQ\TGZMK?T:PEO40=][C=:YW]>O>@]`*S!%.M0"KT7[SU1E1\%C2?-A#. M(OG_U&\@?=R&LS2(PJ2!=A5YHM$1IH>?55LF06!YLT::X\%K/D M\@WR9[>)6)Q!I=N-(X=/D@U:_ZVQ['JL2+:;313C#GD`Q)9/S#B)@"?'_>/V ML7M0R-G*%_O+E>\EOM,^/MET=(',=)Y([[BMP\7)_2:.-`A1Y2G3O6S[.,HEX34;^):&`7:4':GW); M4@\JMM`=0YAK".L:PGJ&L+XA;&`(&QK"1H:P$T-8J(=M5L;HFY4>$F^-PGBK MA=3_U+<;^04>97NE[WB`#.)#$'1&84L^-[KV-@G`V2[81U3,>-(,*XA]G,1A M:)YFRWN<_'':NCJ;7%^,QZ>?+L901-+L8-$YDP MFC1+)"%HP1-SK\T3$0H,?6;)>(3-#F];YB(4#+ZX:)I M.A\N&#W[W#2=L\^,GC?.SSG-S]5#TW2N'B#U5XT2\5<$33[=-4Q$*#$-)Z?- M2I0I&?WP:]-T/OS*Z-EITW3.3AEM.*8R):.?/C1-Y],'1B\OFJ9S><'HP[AI M.@^4_M&XO?X@[=5L'O83@IJN")D2T[19(BE!DXN&;225F&Z;);(EJ'&=;%F= M/`:-$GD,")I\O&R8B%!B&DT^?FV6CE1B&C=+)":HZ=J4*1EM.%-E2DH_-T[G M,Z,?[YJF\_&.T89K7*:$=-%L7[3P"&HZ9V9*3)NMMHL504W'8Z:$=-FL]RYC M@B:?[QHF(I28-INCEEN")I\?&B8BE)!*.]_S1NED2DR3R66S-LJ4F#9;1X*4 MH*8C.E,R>GG?-)U+O!L/=I/+JV;I2"6DWYN-Z.]X1#^)O6BSG&1*3*-FB400 MK9JU\BHE:')UWS`1H<3T>7+UK5DZ4@GI^FERW6S'FRDA#9O-EN&*H*8K;*9D M].:J:3HWN+>$S7I+&!$TN?G:,!&AA'33K&XW*X(FMU<-$Q%*3)OU_TU*T.3# M7<-$A)+1V_NFZ=SB<10W:^4X(FAR][5A(D*):;.U-=X2-+E[./[R]7+DW#5, M:Q^!BYHGQ^C#:=-T'O#.-WEJE$CR1-!D_*5A(D*):;-QF:P(FHPO&R8BE)@V MVR$F,4&3WQ\:)B*4F#XW2^29H*;GCIF2T?%%TW3&>#U)EY/[9ONR3(EILS9* M8X(F]W<-$Q%*2+?-1M#VB:"F8SE30KIKMC?R&L%O"?B/,(VQ*V(RP.6$^88^$+0A;$A80 M]IVP)\)6A*T)"PF+"-L0]B=A,6$)86S\;0E[)FQ'V`MA/S`SD*6_]I/6N?_H M;<7Y<.WI0Z1!_#"\>O$B_^`Q$ZC?"+0KF:+Z>@D390HFD#[Q!)>VF412NHP2 M3>[S202YGR032'](SFE]7J2L#+E/"1'D#48$N7T`$^3O^!-%^3(25A0OHQ&% MZ2Y8!3=1$KS8.VDA:]Q5%;U=UZ3;%E);YRUDO`L7(GM'+H0-NG.NM';J7&;M MVH7,TL$K58.VX)V]T-BZ?"ZS=OQ<9NW^ASU:9==C4?(.;J!JT!1\V=44,**_+7H@CO67C? MP@>UE*#6P]LAO$:3\ MF;\CI03L7XQ2@]6_%_4_LY>E]G_NWY#:AV6O1>W_K+\+I84J`0=O1%6AM8!W M?_?S9_^3/?D]F7J)W]H\+5J7-^/[TZNK_]AC=-KM0:]W]'='1YUAOU/_?_XS M:`^.CH:=07_8:?>'/8&[O?;@[X[:_R>%1$(KJ6*T\^5K64?[VPM%C%!_MN\F[=S/QWZ.__ZO[]T+] M[O;NPBDZS7]]]Y?@\>C_.G)^'/W]_WI:S>7`.W*>C_[WD7Q7YLBY./K'+)G_ MXD7;]'_[J\?_^H__Z^^/_N]_.9(&SN_^\A=_MHR._O$J>\-\'USSXW_<:R)O'H2+/%='3WX<^JNC_(%Y$6-W?)QI16;^TY'(AWP3+)=6 MARK2N5_ZQC1FT78USXX]%0(1O3AZ$>TV>U6IR%>10);AM1=N1>V]BIJ<'\5^ M&K\6T5Z"]*@C?GL,WF7__LN_O/,3;_;N74;:[_X_,?Y+'XG_\&/P\=_IN`(6 MX]]MM]MR_+O]G^/__\SX/[KQ=T?RC;Y$=/O5RL_>R!0].>\+G MR?PX"4)Q=G/LS[?'Z>[=/PC=7S\*]&%\_E?QU[O;KW?W-Z?7%__ZE[_4#B5# MOUWGKW>7%6`05;[L<^>OM2GY++=OQWEOU^=GWV]^7CYJ?S[ MP^GXLUO^(83B]_\IYXH\0/Q;8]TJD4[[YF_O1.DN;^[%OQ=W_\JK^=W=P\WD M[N+VXN9;J]\G'[_>34[OSCY+:;;I MEB6:C!\^"+$(RLOY[N*W^[O3L_N)C/*O/F;H'_)WOP5M9B5AG_3W4&:K1/XM#U*/)G_WJITSU4G_WKH;IXC=1QM4R5 M_:(>17U3U.EH&1+_ZODYJMX1=4Z.!R^J_K=)5N6*_C)B-@5!7%[ M8B#L8V9C5*Z0^3P0%&^!^R)*DA[)_R1'8K&31T[$NBK6>G$66&X@_+F(/!4+ MX=%:=,BUMSK*QY:ZP9#F2=M:*EKD="EV`%DO$'DIQY-H^\27;S++ZAR)&LI/ MS[+&SP90EM/L#%B^%RRK[T`BBU%(!L=MIU<3E,=QJT&<-6@Q..4-B)FW<3JB MGQP/157K*8OJ+#6N:(V1X[;W?;,\=OZBM-/12.T-8*>CPQ]YAY,]:*`A>3HN M7XP6$56@O#9=[W@Y+M]@KO7@^A14CI:BZ/EKU@<'7\RGLIY'X@#F9&3U55-; M?1#_K:JQ))W/WK_/1J!(1:^P^FO,!T64;VV+"<<74/2'@]P=O%FN=(:RK;MY MGZJ]2GU0%OG)JD4VX-V#/,A]KD"BH[D:J=ZR%@U@JIM\8!85\9*-X-Z3XVH3 MA)CSY827W7!WQ"0L"G*0O^JE:T=,F`<-7;V2[@S5(7[^033$YVSVKE\"$(?] M>'7Z2:X#CA,LPBCVH^3(<>)(;(G%`I+-^7\3`?.IF/&7(BA/J"B)XX1B-[S) M8OB;E3?SQ:FE_$OLJ'-;K_R/\NUH<;A\A1'5(I><;&W*?RU6'['FW5U MW0AF?E(*HC02.ZULN7L45?=U7.QP_G;TW_[UJ"MWP)UL[OWLS9Z.TNAHY:?R MO$5.D=4,&1_%V_#X*)N?O5DJSCK*4YB9_"":?Q3-Q&P2^_,C[U&Z)O_#44^D MVQX=B5E73@89#-/L1&7GB_DWDQ5'_Z>CZ385P?\HPY-D*TJ\\:.-6`7$0>77 M4D1R2@J.R)0\%1+_>Q7G/5X2R5.CUR,Q2Z>1,Q?;Q..L1.=B3QGZ^;PNROX: M;8\6HG!K/TFD>UR^BJRBZ$DL+T]^%L5QQ'\NKCZ*DHL,BLXMLZEL-8J7\?,= MJM@4'+O9F5OVZ3P15[ZDOLU6F^BQ.J/U@GR1D:F_N[FX.+_Z>GI^=7GS172, M--[Z[X[]/[_[R[^)'OEU-%E9H><9XE&S% MLK_SCY;>L^B+1W)DML*MZ#I!F)5_MI2)B9[HA\]!'(5KT6O*DAYD2$3.P)W8 M_CJ/*LA2%73])*87`SJ:';E'KA#,EJ)VCP:#@2F^''3SK!_._TN]Y?^K.4-Y M3\O8E1BACAC%![38\A9]1E;,9=XHVC>91-,W_]]XNSSU]%KO]Z]R]9 M0-:8#[DVF\B+\X=\8BU4\RCTLW(5D=6SE+)+P%0.Y--8#`%_]7CDI$?Y19Q] M/4G#@\K_Q%@<]S^H."P7Q84NORD\#\F MY<*3<5\ M_BY&__I(7LCZZ[]GFXBL`LMTE.QD1_HH)E-Y6=4RXV0S7?QX..44TTG>W.=% M<^\W0?46/TSCKW\]UWO,1R6)K`1Z&O7X']5)HIS\RAV6VO9R#7FWB9)478[R MGOB/_RASL$[S5:QXZO1OJL!XZB_2R\[]?]ZE^?GS\^?GS\^?GS\_?W[^_/SY M^?/SY^?/SY^?/S]_?O[\_/GY\_/GY\_/GY\_/W]^_OS\:?[S_P":9%-4`$@# !`//S ` end >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 0:42:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1515C37B66C; Mon, 2 Oct 2000 00:42:16 -0700 (PDT) Received: (from trevor@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA41387; Mon, 2 Oct 2000 00:42:16 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Date: Mon, 2 Oct 2000 00:42:16 -0700 (PDT) From: Message-Id: <200010020742.AAA41387@freefall.freebsd.org> To: ats@first.gmd.de, trevor@FreeBSD.org, freebsd-ports@FreeBSD.org, trevor@FreeBSD.org Subject: Re: ports/21682: ports/x11-wm/sapphire-themes missing checksum Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/x11-wm/sapphire-themes missing checksum State-Changed-From-To: open->analyzed State-Changed-By: trevor State-Changed-When: Mon Oct 2 00:38:24 PDT 2000 State-Changed-Why: The DIST_SUBDIR needs to go (reported as a followup to PR 21044). Responsible-Changed-From-To: freebsd-ports->trevor Responsible-Changed-By: trevor Responsible-Changed-When: Mon Oct 2 00:38:24 PDT 2000 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=21682 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 1:58:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id B08EF37B670; Mon, 2 Oct 2000 01:28:36 -0700 (PDT) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id KAA80458; Mon, 2 Oct 2000 10:27:05 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id e928Qn212588; Mon, 2 Oct 2000 01:26:49 -0700 (PDT) (envelope-from reg) Date: Mon, 2 Oct 2000 01:26:49 -0700 From: Jeremy Lea To: freebsd-ports@FreeBSD.org Cc: Ade Lovett , "Vanilla I. Shu" , sobomax@FreeBSD.org Subject: HEADS UP: USE_GTK and USE_GNOME Message-ID: <20001002012649.G30468@shale.csir.co.za> Mail-Followup-To: Jeremy Lea , freebsd-ports@FreeBSD.org, Ade Lovett , "Vanilla I. Shu" , sobomax@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi all, Within the next week (before the tree is completely changed) I would like to get my USE_GTK and USE_GNOME patches into place (see http://people.FreeBSD.org/~reg/). I'm currently finnishing up test builds (of all 300+ ports), and I'm going to start committing some changes during the week. I'm hoping to get Satoshi to commit the bsd.port.mk changes on Tuesday or Wednesday (waiting for Ade's comments), and then there'll be a bunch of mega-commits for various types of support. My request is that, if at all possible you don't make changes to any GTK or Gnome ports over the next week. At the rate that the ports change, I've generally been having to merge and retest 4 ports a day... When you have 368 patched ports in your tree, this is a time comsumming task. People can live without a minor upgrade for a week. The first round of patches, hopefully starting tommorrow will be whitespace changes and PLIST sorting, to make the task to checking patches easier. Regards, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 2:30: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E34837B503 for ; Mon, 2 Oct 2000 02:30:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA47377; Mon, 2 Oct 2000 02:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 2 Oct 2000 02:30:04 -0700 (PDT) Message-Id: <200010020930.CAA47377@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jing-Tang Keith Jang Subject: Re: ports/21691: New port: chinese/linux_base Reply-To: Jing-Tang Keith Jang Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21691; it has been noted by GNATS. From: Jing-Tang Keith Jang To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/21691: New port: chinese/linux_base Date: Mon, 2 Oct 2000 17:26:54 +0800 The Originator's email should be keith@freebsd.sinica.edu.tw To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 3:18:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from atlas.snet.co.uk (atlas.snet.co.uk [212.87.76.6]) by hub.freebsd.org (Postfix) with ESMTP id 7C65037B688 for ; Mon, 2 Oct 2000 03:18:03 -0700 (PDT) Received: from element.office.snet.co.uk (element.office.snet.co.uk [212.87.76.147]) by atlas.snet.co.uk (8.11.0/8.11.0) with SMTP id e92AJXB02345 for ; Mon, 2 Oct 2000 11:19:34 +0100 (BST) From: Jamie Reply-To: hostmaster@snet.co.uk Organization: Stirling Networks Ltd. To: ports@freebsd.org Subject: Port audio/cd2mp3 query Date: Mon, 2 Oct 2000 11:14:14 +0100 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <00100211161303.00400@element.office.snet.co.uk> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Greetings! Don't mean to be rude, but when will the update I submitted to the GNATS database take effect for my port??? I have been waiting a while now, and have people complaining funnily enough :( I know you guys have a lot of work to do, but plz. could you do it when you get a spare few mins.? Would be very much appreciated :))) Regards, --- Jamie Heckford To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 3:20:19 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id C218037B503; Mon, 2 Oct 2000 03:20:11 -0700 (PDT) Received: from vic.sabbo.net (root@[193.193.218.95]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id NAA03827; Mon, 2 Oct 2000 13:19:56 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e92AKOF63668; Mon, 2 Oct 2000 13:20:24 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39D86165.C21837F1@FreeBSD.org> Date: Mon, 02 Oct 2000 13:20:22 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Jeremy Lea Cc: freebsd-ports@FreeBSD.org, Ade Lovett , "Vanilla I. Shu" Subject: Re: HEADS UP: USE_GTK and USE_GNOME References: <20001002012649.G30468@shale.csir.co.za> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jeremy Lea wrote: > Hi all, > > Within the next week (before the tree is completely changed) I would > like to get my USE_GTK and USE_GNOME patches into place (see > http://people.FreeBSD.org/~reg/). I'm currently finnishing up test > builds (of all 300+ ports), and I'm going to start committing some In general looks fine, however I would like to have a possibility for a more fine-grained selection of main GNOME components (libs, core, controlcenter, audio, print etc, something like USE_GNOMELIBS, USE_GNOMECORE, USE_GNOMEAUDIO etc). Also it would be nice to include common configure/Makefile.in regex hacks into bsd.gnome.mk, so it will be invoked automatically when USE_GNOME and GNU_CONFIGURE are defined (my experience suggests that those hacks are applicable in 90% of cases, for remaining 10% you can introduce NO_GNOMEHACK). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 3:53: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id B819637B502 for ; Mon, 2 Oct 2000 03:53:00 -0700 (PDT) Received: from vic.sabbo.net (root@[193.193.218.95]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id NAA04363; Mon, 2 Oct 2000 13:52:47 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e92ArFF63827; Mon, 2 Oct 2000 13:53:15 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39D86918.13828B5A@FreeBSD.org> Date: Mon, 02 Oct 2000 13:53:12 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: hostmaster@snet.co.uk Cc: ports@FreeBSD.org Subject: Re: Port audio/cd2mp3 query References: <00100211161303.00400@element.office.snet.co.uk> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jamie wrote: > Greetings! > > Don't mean to be rude, but when will the update I submitted > to the GNATS database take effect for my port??? > > I have been waiting a while now, and have people > complaining funnily enough :( > > I know you guys have a lot of work to do, but plz. could > you do it when you get a spare few mins.? > > Would be very much appreciated :))) Hmm, looking at ports/21620: Arrival-Date Thu Sep 28 08:50:01 PDT 2000 it's about 4 days old - while the average lifetime of PRs in our GNATS is about 2-4 weeks, so please be more patient. Also please resubmit patches against current cd2mp3 port instead of full shar archive in the follow-up to that PR (see Porter's Handbook for the rules on how to submit update to the existing port). Thanks! -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 4:30:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EB13437B66D for ; Mon, 2 Oct 2000 04:30:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA38245; Mon, 2 Oct 2000 04:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from iraun1.ira.uka.de (iraun1.ira.uka.de [129.13.10.90]) by hub.freebsd.org (Postfix) with ESMTP id 949B537B502 for ; Mon, 2 Oct 2000 04:26:27 -0700 (PDT) Received: from i30nb2.ira.uka.de by iraun1 (PP) with ESMTP; Mon, 2 Oct 2000 13:26:10 +0200 Received: (from esk@localhost) by i30nb2.ira.uka.de (8.9.3/8.9.3) id NAA02907; Mon, 2 Oct 2000 13:25:52 +0200 (CEST) (envelope-from esk) Message-Id: <200010021125.NAA02907@i30nb2.ira.uka.de> Date: Mon, 2 Oct 2000 13:25:52 +0200 (CEST) From: esk@ira.uka.de Reply-To: esk@ira.uka.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21698: Missing USE_X_PREFIX in xmms-liveice port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21698 >Category: ports >Synopsis: Missing USE_X_PREFIX in xmms-liveice port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 04:30:04 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Espen Skoglund >Release: FreeBSD 4.1-STABLE i386 >Organization: Universität Karlsruhe >Environment: >Description: The audio/xmms-liveice port is missing the USE_X_PREFIX in its makefile. This conflicts with the XMMS port itself which does install the program with this prefix. (Thanks to Tobias Reifenberger for pointing this out.) >How-To-Repeat: >Fix: --- xmms-liveice/Makefile.orig Mon Oct 2 13:14:12 2000 +++ xmms-liveice/Makefile Mon Oct 2 13:14:44 2000 @@ -17,6 +17,7 @@ RUN_DEPENDS= ${LOCALBASE}/bin/lame:${PORTSDIR}/audio/lame WRKSRC= ${WRKDIR}/LiveIce-1.0.0 +USE_X_PREFIX= yes USE_LIBTOOL= yes GTK_CONFIG?= ${X11BASE}/bin/gtk12-config >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 5:25:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DB62937B503; Mon, 2 Oct 2000 05:25:38 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA69522; Mon, 2 Oct 2000 05:25:38 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Date: Mon, 2 Oct 2000 05:25:38 -0700 (PDT) From: Message-Id: <200010021225.FAA69522@freefall.freebsd.org> To: esk@ira.uka.de, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21698: Missing USE_X_PREFIX in xmms-liveice port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Missing USE_X_PREFIX in xmms-liveice port State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Mon Oct 2 05:25:21 PDT 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21698 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 6:28:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from superman.imag.net (superman.imag.net [207.200.148.6]) by hub.freebsd.org (Postfix) with ESMTP id 65C5137B503 for ; Mon, 2 Oct 2000 06:28:11 -0700 (PDT) Received: from mymachine.imag.net (lon-p99.wwdc.com [207.200.138.100]) by superman.imag.net (8.10.2/8.10.2) with SMTP id e92DWgl15138 for ; Mon, 2 Oct 2000 06:32:42 -0700 (PDT) From: Mark Hendriks To: ports@freebsd.org Subject: qtez port: problem with patch? Date: Mon, 2 Oct 2000 09:19:16 -0400 X-Mailer: KMail [version 1.0.28] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <00100209263400.00797@mymachine.imag.net> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello I tried installing the port of qtez 0.93.2. All the dependancies installed okay, but when it got to qtez itself, this is what I got: ==> Patching for qtez-0.93.2 ==> Applying FreeBSD patches for qtez-0.93.2 File to patch: I had no idea what the answer should be, so the install failed. There are four patch files to apply. Is there a correct answer to the above question, or is this a problem with the port? Thanks for your help, Mark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 6:34:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.uni-kl.de (mail.uni-kl.de [131.246.137.52]) by hub.freebsd.org (Postfix) with ESMTP id C15C737B66C for ; Mon, 2 Oct 2000 06:34:36 -0700 (PDT) Received: from postamt.eit.uni-kl.de (root@postamt.eit.uni-kl.de [131.246.73.100]) by mail.uni-kl.de (8.11.0/8.11.0) with ESMTP id e92DYP900029; Mon, 2 Oct 2000 15:34:25 +0200 (MET DST) Received: from ernie.eit.uni-kl.de (root@fs.eit.uni-kl.de [131.246.12.176]) by postamt.eit.uni-kl.de (8.9.3/8.9.3) with ESMTP id PAA15066; Mon, 2 Oct 2000 15:34:26 +0200 Received: from ernie.eit.uni-kl.de (holger@ernie.eit.uni-kl.de [131.246.12.176]) by ernie.eit.uni-kl.de (8.9.3/8.9.3) with ESMTP id PAA08035; Mon, 2 Oct 2000 15:34:39 +0200 Date: Mon, 2 Oct 2000 15:34:39 +0200 (MEST) From: Holger Lamm To: Mario Sergio Fujikawa Ferreira Cc: ports@freebsd.org Subject: Re: ports/21663: Update port: graphics/avifile to 0.48 (not fetching anyway) In-Reply-To: <20001001000443.9627.qmail@Fedaykin.here> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 1 Oct 2000, Mario Sergio Fujikawa Ferreira wrote: >> Number: 21663 >> Category: ports >> Synopsis: Update port: graphics/avifile to 0.48 (not fetching anyway) >> Description: > The port is not able to fetch avifile-0.47.1.tar.gz > Therefore, I updated the port to the latest available version (0.48) > to fix this. Fine. But I wanted to do something about the Mastersite (also see PR 21442) and mirror the files myself, with version number for "binaries.zip" as well. So please take "http://ernie.eit.uni-kl.de/avifile/" as primary host. (Unfortunately the Mastersite is currently unreachable, so I don't have version 0.48 there yet, but I put it there ASAP.) Holger -- /"\ \ / ASCII Ribbon Campaign - Say NO to HTML in email and news X / \ -- PGP key available -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 7:14:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from yertle.kciLink.com (yertle.kciLink.com [205.252.34.9]) by hub.freebsd.org (Postfix) with ESMTP id D3D9037B671 for ; Mon, 2 Oct 2000 07:14:23 -0700 (PDT) Received: from onceler.kciLink.com (onceler.kciLink.com [205.252.34.3]) by yertle.kciLink.com (Postfix) with ESMTP id F233C2E444 for ; Mon, 2 Oct 2000 10:14:22 -0400 (EDT) Received: (from khera@localhost) by onceler.kciLink.com (8.11.0/8.11.0) id e92EEMY89904; Mon, 2 Oct 2000 10:14:22 -0400 (EDT) (envelope-from khera) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14808.38974.900507.94483@onceler.kciLink.com> Date: Mon, 2 Oct 2000 10:14:22 -0400 (EDT) To: freebsd-ports@FreeBSD.org Subject: Re: ports/21599: dia doesn't need gnome panel to run In-Reply-To: <200010020653.XAA14756@freefall.freebsd.org> References: <200010020653.XAA14756@freefall.freebsd.org> X-Mailer: VM 6.72 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "s" == sobomax writes: s> Synopsis: dia doesn't need gnome panel to run s> State-Changed-From-To: open->closed s> State-Changed-By: sobomax s> State-Changed-When: Sun Oct 1 23:51:14 PDT 2000 s> State-Changed-Why: s> You are not quite correct - panel was added to RUN_DEPENDS to ensure correct s> removal of share/gnome/apps/* directory, which "belongs" to gnomecore. Try s> the following: s> $ cd /usr/ports/graphics/dia s> $ /usr/ports/Tools/scripts/gnomedepends.py s> and look at the output... Interesting. I don't have any /usr/local/share/gnome/apps/* directory on my system after installing dia with the RUN_DEPENDS removed. Dia still works fine. Who installs that directory, and why would I have it on my system if I don't use gnome? -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Vivek Khera, Ph.D. Khera Communications, Inc. Internet: khera@kciLink.com Rockville, MD +1-301-545-6996 GPG & MIME spoken here http://www.khera.org/~vivek/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 7:23:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C05E37B502; Mon, 2 Oct 2000 07:23:31 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA12832; Mon, 2 Oct 2000 07:23:31 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Mon, 2 Oct 2000 07:23:31 -0700 (PDT) From: Message-Id: <200010021423.HAA12832@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21690: fix security/gnupg-rsa USA-RESIDENT (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix security/gnupg-rsa USA-RESIDENT (by maintainer) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Oct 2 07:23:09 PDT 2000 State-Changed-Why: Patche applied, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21690 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 7:42:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EAC1A37B66C; Mon, 2 Oct 2000 07:42:12 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA28973; Mon, 2 Oct 2000 07:42:12 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 2 Oct 2000 07:42:12 -0700 (PDT) From: Message-Id: <200010021442.HAA28973@freefall.freebsd.org> To: patrick@watson.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20645: Update Objective Caml to 3.00 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update Objective Caml to 3.00 State-Changed-From-To: feedback->closed State-Changed-By: ade State-Changed-When: Mon Oct 2 07:41:09 PDT 2000 State-Changed-Why: After a couple of email exchanges, maintainership of the lang/ocaml port has been handed over to the submitter, and the rest of of the PR chunked. http://www.freebsd.org/cgi/query-pr.cgi?pr=20645 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 8: 3:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hub.lovett.com (hub.lovett.com [216.60.121.161]) by hub.freebsd.org (Postfix) with ESMTP id 3DF5037B502 for ; Mon, 2 Oct 2000 08:03:41 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13g77z-0004xz-00; Mon, 02 Oct 2000 10:03:39 -0500 Date: Mon, 2 Oct 2000 10:03:39 -0500 From: Ade Lovett To: Adam Cc: ports@freebsd.org Subject: Re: cant get sane port to build Message-ID: <20001002100339.G15530@FreeBSD.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from bsdx@looksharp.net on Sun, Oct 01, 2000 at 07:20:01PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Oct 01, 2000 at 07:20:01PM -0400, Adam wrote: > Hello, I have tried this on 5-current just past SMPng as well as a fresh > reinstall of the computer today with 4.1-release upgraded to 4.1.1-stable > with mergemaster and all new ports. I still get the compile bomb on > sane, logfile attached. Curious as to why the package building logs on > bento only show xsane broken but not sane, which it depends on and > actually does seem broken. Any help would be appreciated, thanks. > > [snip] > cc -c -DHAVE_CONFIG_H -I. -I. -I../include -I../include -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 - > I/usr/local/include -I/usr/X11R6/include -I/usr/local/include -D_GNU_SOURCE -DPATH_SANE_CONFIG_DIR=/usr/local/etc/sane.d -DP > ATH_SANE_DATA_DIR=/usr/local/share -DV_MAJOR=1 -DV_MINOR=0 -O -pipe -W -Wall -DSCSIBUFFERSIZE=131072 xscanimage.c > xscanimage.c:63: syntax error before `GParam' > xscanimage.c:66: syntax error before `PLUG_IN_INFO' That looks very much like you've got a version of glib/gtk < 1.2.8 I've just rebuilt the port here on my RELENG_4 box (9/28) and it builds just fine, just like bento. -aDe -- Ade Lovett, Austin, TX. ade@FreeBSD.org FreeBSD: The Power to Serve http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 8:25:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hub.lovett.com (hub.lovett.com [216.60.121.161]) by hub.freebsd.org (Postfix) with ESMTP id E466F37B503; Mon, 2 Oct 2000 08:25:14 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13g7Sp-00050b-00; Mon, 02 Oct 2000 10:25:11 -0500 Date: Mon, 2 Oct 2000 10:25:11 -0500 From: Ade Lovett To: Maxim Sobolev Cc: Jeremy Lea , freebsd-ports@FreeBSD.org, "Vanilla I. Shu" Subject: Re: HEADS UP: USE_GTK and USE_GNOME Message-ID: <20001002102510.H15530@supernews.net> References: <20001002012649.G30468@shale.csir.co.za> <39D86165.C21837F1@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39D86165.C21837F1@FreeBSD.org>; from sobomax@FreeBSD.org on Mon, Oct 02, 2000 at 01:20:22PM +0300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Oct 02, 2000 at 01:20:22PM +0300, Maxim Sobolev wrote: > In general looks fine, however I would like to have a possibility for a more > fine-grained selection of main GNOME components (libs, core, controlcenter, > audio, print etc, something like USE_GNOMELIBS, USE_GNOMECORE, USE_GNOMEAUDIO > etc). Given that we're soon to have a massive reworking of the ports tree (I dunno, I'm ill for 72 hours and the whole world changes :), and given that GNOME 1.4 is likely to look a lot different than 1.2 (we're probably going to have two metaports, one containing all the basic functionality, and the other containing a bunch of "well-used" applications), I suggest that for now we go ahead with the singular USE_GNOME. It can always be fine-tuned later -- the important bit is to get the basic framework into the tree, instead of just sitting in Jeremy's tree (and my scratch tree, on occasion). Go for it. :) -aDe -- Ade Lovett, Critical Path (Supernews), Austin, TX. mailto:ade@supernews.net http://www.supernews.net/ mailto:ade@cp.net http://www.cp.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 8:26:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 61BB437B503 for ; Mon, 2 Oct 2000 08:26:44 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 228EA1921; Mon, 2 Oct 2000 10:26:42 -0500 (EST) Date: Mon, 2 Oct 2000 10:26:42 -0500 From: Will Andrews To: Mark Hendriks Cc: ports@FreeBSD.ORG Subject: Re: qtez port: problem with patch? Message-ID: <20001002102642.Z613@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Mark Hendriks , ports@FreeBSD.ORG References: <00100209263400.00797@mymachine.imag.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <00100209263400.00797@mymachine.imag.net>; from markh@lon.imag.net on Mon, Oct 02, 2000 at 09:19:16AM -0400 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Oct 02, 2000 at 09:19:16AM -0400, Mark Hendriks wrote: > ==> Patching for qtez-0.93.2 > ==> Applying FreeBSD patches for qtez-0.93.2 > File to patch: This is a problem with the port; it usually indicates there are patchfiles that are no longer needed. Either your copy of the port is outdated WRT the patches, or the repository is. -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 8:38:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 3D0B737B66C for ; Mon, 2 Oct 2000 08:38:13 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 406671921; Mon, 2 Oct 2000 10:38:09 -0500 (EST) Date: Mon, 2 Oct 2000 10:38:09 -0500 From: Will Andrews To: Jamie Cc: ports@FreeBSD.ORG Subject: Re: Port audio/cd2mp3 query Message-ID: <20001002103809.A613@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Jamie , ports@FreeBSD.ORG References: <00100211161303.00400@element.office.snet.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <00100211161303.00400@element.office.snet.co.uk>; from hostmaster@snet.co.uk on Mon, Oct 02, 2000 at 11:14:14AM +0100 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Oct 02, 2000 at 11:14:14AM +0100, Jamie wrote: > Don't mean to be rude, but when will the update I submitted > to the GNATS database take effect for my port??? > > I have been waiting a while now, and have people > complaining funnily enough :( > > I know you guys have a lot of work to do, but plz. could > you do it when you get a spare few mins.? > > Would be very much appreciated :))) Because you did not follow the instructions available on the Porter's Handbook, I had to mutilate your PR such: % cd ~/ports/audio % getpr 21620 [ creates a file `pr-patch' which contains your shar ] % mkdir cd2mp3 && mv pr-patch cd2mp3 % sh pr-patch && cd .. % cd /usr/ports/audio/cd2mp3 && cvs update -jHEAD % cd ~/ports/audio % diff -urN --exclude=CVS /usr/ports/audio/cd2mp3 cd2mp3 > /usr/ports/audio/cd2mp3/cd2mp3.diff % cd /usr/ports/audio/cd2mp3 Then I inspected the resulting cd2mp3.diff and found problems: 1) You do NOT change the $FreeBSD$ id tag. 2) You do NOT change the "Date Created" line. 3) You do NOT pollute the Makefile with spaces instead of tabs. 4) You forgot to bump PORTEPOCH due to down-versioning. As such, this update wasted my time and essentially this is why some PRs get taken care if in 10 minutes - because people that know what they're doing do it The Right Way (tm). The other PRs are lumped into "look at this when I have about an hour or so to waste" category and left alone for a few weeks or even months. -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 8:42:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id A789637B66C for ; Mon, 2 Oct 2000 08:42:36 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id B7BAC1921; Mon, 2 Oct 2000 10:42:34 -0500 (EST) Date: Mon, 2 Oct 2000 10:42:34 -0500 From: Will Andrews To: Will Andrews Cc: Jamie , ports@FreeBSD.ORG Subject: Re: Port audio/cd2mp3 query Message-ID: <20001002104234.B613@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Jamie , ports@FreeBSD.ORG References: <00100211161303.00400@element.office.snet.co.uk> <20001002103809.A613@puck.firepipe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001002103809.A613@puck.firepipe.net>; from will@physics.purdue.edu on Mon, Oct 02, 2000 at 10:38:09AM -0500 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Oct 02, 2000 at 10:38:09AM -0500, Will Andrews wrote: > As such, this update wasted my time and essentially this is why some PRs > get taken care if in 10 minutes - because people that know what they're > doing do it The Right Way (tm). The other PRs are lumped into "look at > this when I have about an hour or so to waste" category and left alone > for a few weeks or even months. I forgot in my tirade that you also forgot: 1) To actually test the fetch - host "download.cd2mp3.org" does not exist, and "cd2mp3.org" isn't even registered. 2) That you didn't need /${PORTVERSION}/ at the end of your MASTER_SITES since you already had that in MASTER_SITE_SUBDIR. -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 8:52:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from megadodo.segNET.COM (megadodo.segNET.COM [206.34.181.3]) by hub.freebsd.org (Postfix) with ESMTP id 246F437B502 for ; Mon, 2 Oct 2000 08:52:11 -0700 (PDT) Received: from segnet.com (tech-03.segNET.COM [208.169.201.192]) by megadodo.segNET.COM (8.9.1a/8.8.5a) with ESMTP id LAA02314; Mon, 2 Oct 2000 11:51:34 -0400 (EDT) Message-ID: <39D8AF05.D91E3AAE@segnet.com> Date: Mon, 02 Oct 2000 11:51:33 -0400 From: Ethan Pierce X-Mailer: Mozilla 4.72 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: vns@delta.odessa.ua Cc: ports@FreeBSD.org Subject: FreeBSD Port: vmware2-2.0.2.621 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Does the new port allow bridged networking under freebsd? Thanks for any info, Ethan Pierce System Operations segNET Technologies Shaker Meeting House Lower Shaker Village, Enfield, NH 03748 Ethan@segNET.COM http://www.segNET.COM voice@603.643.5883 x 126 fax@603.643.9854 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 9:10:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 532EF37B66D for ; Mon, 2 Oct 2000 09:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA13918; Mon, 2 Oct 2000 09:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freebsd.sinica.edu.tw (freebsd.sinica.edu.tw [140.109.13.51]) by hub.freebsd.org (Postfix) with ESMTP id 16F4137B503 for ; Mon, 2 Oct 2000 09:01:39 -0700 (PDT) Received: (from keith@localhost) by freebsd.sinica.edu.tw (8.9.3/8.9.3) id AAA77987; Tue, 3 Oct 2000 00:05:56 +0800 (CST) (envelope-from keith) Message-Id: <200010021605.AAA77987@freebsd.sinica.edu.tw> Date: Tue, 3 Oct 2000 00:05:56 +0800 (CST) From: keith@freebsd.sinica.edu.tw Reply-To: keith@freebsd.sinica.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21703: New port: chinese/moefonts-cid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21703 >Category: ports >Synopsis: New port: chinese/moefonts-cid >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 09:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jing-Tang Keith Jang >Release: FreeBSD 4.0-20000406-STABLE i386 >Organization: >Environment: Tested under both 4.x-stable and 5.0-current. >Description: From pkg/DESCR: This font collection is used by ghostscript, for printing Chinese documents. Chinese CID-Keyed fonts(MOEKai and MOESung) are provided by Adobe, and original 48x48 bitmap fonts is from Ministry of Education of Taiwan Government, prepared by Dynalab. These fonts are free to use. >How-To-Repeat: This port has already been in Taiwan's outta-port collection for some time. Please commit, thanks. >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # moefonts-cid # moefonts-cid/files # moefonts-cid/files/MOEKai-Regular-ETen-B5-H.gsf # moefonts-cid/files/MOEKai-Regular-ETen-B5-V.gsf # moefonts-cid/files/MOESung-Regular-ETen-B5-H.gsf # moefonts-cid/files/MOESung-Regular-ETen-B5-V.gsf # moefonts-cid/files/md5 # moefonts-cid/pkg # moefonts-cid/pkg/COMMENT # moefonts-cid/pkg/DEINSTALL # moefonts-cid/pkg/REQ # moefonts-cid/pkg/DESCR # moefonts-cid/pkg/INSTALL # moefonts-cid/pkg/PLIST # moefonts-cid/Makefile # echo c - moefonts-cid mkdir -p moefonts-cid > /dev/null 2>&1 echo c - moefonts-cid/files mkdir -p moefonts-cid/files > /dev/null 2>&1 echo x - moefonts-cid/files/MOEKai-Regular-ETen-B5-H.gsf sed 's/^X//' >moefonts-cid/files/MOEKai-Regular-ETen-B5-H.gsf << 'END-of-moefonts-cid/files/MOEKai-Regular-ETen-B5-H.gsf' X/MOEKai-Regular-ETen-B5-H X/MOEKai-Regular (MOEKai-Regular) X/ETen-B5-H (CMap/ETen-B5-H) X X1 index /CMap resourcestatus X{pop pop pop} X{runlibfile} ifelse X/CMap findresource X X3 1 roll X1 index /CIDFont resourcestatus X{pop pop pop} X{runlibfile} ifelse X/CIDFont findresource X X[ exch ] composefont pop END-of-moefonts-cid/files/MOEKai-Regular-ETen-B5-H.gsf echo x - moefonts-cid/files/MOEKai-Regular-ETen-B5-V.gsf sed 's/^X//' >moefonts-cid/files/MOEKai-Regular-ETen-B5-V.gsf << 'END-of-moefonts-cid/files/MOEKai-Regular-ETen-B5-V.gsf' X/MOEKai-Regular-ETen-B5-V X/MOEKai-Regular (MOEKai-Regular) X/ETen-B5-V (CMap/ETen-B5-V) X X1 index /CMap resourcestatus X{pop pop pop} X{runlibfile} ifelse X/CMap findresource X X3 1 roll X1 index /CIDFont resourcestatus X{pop pop pop} X{runlibfile} ifelse X/CIDFont findresource X X[ exch ] composefont pop END-of-moefonts-cid/files/MOEKai-Regular-ETen-B5-V.gsf echo x - moefonts-cid/files/MOESung-Regular-ETen-B5-H.gsf sed 's/^X//' >moefonts-cid/files/MOESung-Regular-ETen-B5-H.gsf << 'END-of-moefonts-cid/files/MOESung-Regular-ETen-B5-H.gsf' X/MOESung-Regular-ETen-B5-H X/MOESung-Regular (MOESung-Regular) X/ETen-B5-H (CMap/ETen-B5-H) X X1 index /CMap resourcestatus X{pop pop pop} X{runlibfile} ifelse X/CMap findresource X X3 1 roll X1 index /CIDFont resourcestatus X{pop pop pop} X{runlibfile} ifelse X/CIDFont findresource X X[ exch ] composefont pop END-of-moefonts-cid/files/MOESung-Regular-ETen-B5-H.gsf echo x - moefonts-cid/files/MOESung-Regular-ETen-B5-V.gsf sed 's/^X//' >moefonts-cid/files/MOESung-Regular-ETen-B5-V.gsf << 'END-of-moefonts-cid/files/MOESung-Regular-ETen-B5-V.gsf' X/MOESung-Regular-ETen-B5-V X/MOESung-Regular (MOESung-Regular) X/ETen-B5-V (CMap/ETen-B5-V) X X1 index /CMap resourcestatus X{pop pop pop} X{runlibfile} ifelse X/CMap findresource X X3 1 roll X1 index /CIDFont resourcestatus X{pop pop pop} X{runlibfile} ifelse X/CIDFont findresource X X[ exch ] composefont pop END-of-moefonts-cid/files/MOESung-Regular-ETen-B5-V.gsf echo x - moefonts-cid/files/md5 sed 's/^X//' >moefonts-cid/files/md5 << 'END-of-moefonts-cid/files/md5' XMD5 (MOEKai-Regular) = f8a94515e3058321c78149e862005459 XMD5 (MOESung-Regular) = 42a8801fb18a4b851a7ce1224b3b5bc3 XMD5 (ac13.tar.Z) = bfd28f5d6f6dd6f8e3ea9080e9aca359 XMD5 (ag13.tar.Z) = 8f664529e6a0fc0405a7c1520c532544 END-of-moefonts-cid/files/md5 echo c - moefonts-cid/pkg mkdir -p moefonts-cid/pkg > /dev/null 2>&1 echo x - moefonts-cid/pkg/COMMENT sed 's/^X//' >moefonts-cid/pkg/COMMENT << 'END-of-moefonts-cid/pkg/COMMENT' XMOE CIDFonts converted by Adobe END-of-moefonts-cid/pkg/COMMENT echo x - moefonts-cid/pkg/DEINSTALL sed 's/^X//' >moefonts-cid/pkg/DEINSTALL << 'END-of-moefonts-cid/pkg/DEINSTALL' X#!/bin/sh X XGSVER=6.01 XGSDIR=${PKG_PREFIX}/share/ghostscript XFONTMAP=${GSDIR}/${GSVER}/lib/Fontmap.GS XFONTMAPTMP=${FONTMAP}.tmp X X# Run just once. Xif [ "x$2" != "xDEINSTALL" ]; then X exit 0 Xfi X Xsed -e "/^\/MOE.*/d" ${FONTMAP} > ${FONTMAPTMP} Xmv -f ${FONTMAPTMP} ${FONTMAP} END-of-moefonts-cid/pkg/DEINSTALL echo x - moefonts-cid/pkg/REQ sed 's/^X//' >moefonts-cid/pkg/REQ << 'END-of-moefonts-cid/pkg/REQ' X#!/bin/sh X Xif [ "$2" != "INSTALL" ]; then X exit 0 Xfi X Xif [ ! -f /usr/local/share/ghostscript/6.01/lib/Fontmap.GS ]; then X echo === X echo You do not have Ghostscript 6.01 installed! X echo X echo This port is specifically for version 6.01 or later, for X echo it fixes many bugs wrt. CIDFonts. X echo === Xfi X END-of-moefonts-cid/pkg/REQ echo x - moefonts-cid/pkg/DESCR sed 's/^X//' >moefonts-cid/pkg/DESCR << 'END-of-moefonts-cid/pkg/DESCR' XMOE CIDFonts X============ X XThis font collection is used by ghostscript, for printing XChinese documents. X XChinese CID-Keyed fonts(MOEKai and MOESung) are provided by XAdobe, and original 48x48 bitmap fonts is from Ministry of XEducation of Taiwan Government, prepared by Dynalab. These Xfonts are free to use. X X-- XJing-Tang Keith Jang END-of-moefonts-cid/pkg/DESCR echo x - moefonts-cid/pkg/INSTALL sed 's/^X//' >moefonts-cid/pkg/INSTALL << 'END-of-moefonts-cid/pkg/INSTALL' X#!/bin/sh X XGSVER=6.01 XGSDIR=${PKG_PREFIX}/share/ghostscript XFONTMAP=${GSDIR}/${GSVER}/lib/Fontmap.GS X X# Run just once. Xif [ "x$2" != "xPOST-INSTALL" ]; then X exit 0 Xfi X Xecho "/MOEKai-Regular-ETen-B5-H (MOEKai-Regular-ETen-B5-H.gsf) ;" >> ${FONTMAP} Xecho "/MOEKai-Regular-ETen-B5-V (MOEKai-Regular-ETen-B5-V.gsf) ;" >> ${FONTMAP} Xecho "/MOESung-Regular-ETen-B5-H (MOESung-Regular-ETen-B5-H.gsf) ;" >> ${FONTMAP} Xecho "/MOESung-Regular-ETen-B5-V (MOESung-Regular-ETen-B5-V.gsf) ;" >> ${FONTMAP} END-of-moefonts-cid/pkg/INSTALL echo x - moefonts-cid/pkg/PLIST sed 's/^X//' >moefonts-cid/pkg/PLIST << 'END-of-moefonts-cid/pkg/PLIST' Xshare/ghostscript/fonts/CMap/Adobe-CNS1-0 Xshare/ghostscript/fonts/CMap/Adobe-CNS1-1 Xshare/ghostscript/fonts/CMap/Adobe-CNS1-2 Xshare/ghostscript/fonts/CMap/Adobe-CNS1-3 Xshare/ghostscript/fonts/CMap/Adobe-GB1-0 Xshare/ghostscript/fonts/CMap/Adobe-GB1-1 Xshare/ghostscript/fonts/CMap/Adobe-GB1-2 Xshare/ghostscript/fonts/CMap/Adobe-GB1-3 Xshare/ghostscript/fonts/CMap/B5-H Xshare/ghostscript/fonts/CMap/B5-V Xshare/ghostscript/fonts/CMap/B5pc-H Xshare/ghostscript/fonts/CMap/B5pc-V Xshare/ghostscript/fonts/CMap/CNS-EUC-H Xshare/ghostscript/fonts/CMap/CNS-EUC-V Xshare/ghostscript/fonts/CMap/CNS1-H Xshare/ghostscript/fonts/CMap/CNS1-V Xshare/ghostscript/fonts/CMap/CNS2-H Xshare/ghostscript/fonts/CMap/CNS2-V Xshare/ghostscript/fonts/CMap/ETHK-B5-H Xshare/ghostscript/fonts/CMap/ETHK-B5-V Xshare/ghostscript/fonts/CMap/ETen-B5-H Xshare/ghostscript/fonts/CMap/ETen-B5-V Xshare/ghostscript/fonts/CMap/GB-EUC-H Xshare/ghostscript/fonts/CMap/GB-EUC-V Xshare/ghostscript/fonts/CMap/GB-H Xshare/ghostscript/fonts/CMap/GB-V Xshare/ghostscript/fonts/CMap/GBK-EUC-H Xshare/ghostscript/fonts/CMap/GBK-EUC-V Xshare/ghostscript/fonts/CMap/GBKp-EUC-H Xshare/ghostscript/fonts/CMap/GBKp-EUC-V Xshare/ghostscript/fonts/CMap/GBT-EUC-H Xshare/ghostscript/fonts/CMap/GBT-EUC-V Xshare/ghostscript/fonts/CMap/GBT-H Xshare/ghostscript/fonts/CMap/GBT-V Xshare/ghostscript/fonts/CMap/GBTpc-EUC-H Xshare/ghostscript/fonts/CMap/GBTpc-EUC-V Xshare/ghostscript/fonts/CMap/GBpc-EUC-H Xshare/ghostscript/fonts/CMap/GBpc-EUC-V Xshare/ghostscript/fonts/CMap/HKdla-B5-H Xshare/ghostscript/fonts/CMap/HKdla-B5-V Xshare/ghostscript/fonts/CMap/HKdlb-B5-H Xshare/ghostscript/fonts/CMap/HKdlb-B5-V Xshare/ghostscript/fonts/CMap/HKgccs-B5-H Xshare/ghostscript/fonts/CMap/HKgccs-B5-V Xshare/ghostscript/fonts/CMap/HKm314-B5-H Xshare/ghostscript/fonts/CMap/HKm314-B5-V Xshare/ghostscript/fonts/CMap/HKm471-B5-H Xshare/ghostscript/fonts/CMap/HKm471-B5-V Xshare/ghostscript/fonts/CMap/HKscs-B5-H Xshare/ghostscript/fonts/CMap/HKscs-B5-V Xshare/ghostscript/fonts/CMap/UniCNS-UCS2-H Xshare/ghostscript/fonts/CMap/UniCNS-UCS2-V Xshare/ghostscript/fonts/CMap/UniCNS-UTF8-H Xshare/ghostscript/fonts/CMap/UniCNS-UTF8-V Xshare/ghostscript/fonts/CMap/UniGB-UCS2-H Xshare/ghostscript/fonts/CMap/UniGB-UCS2-V Xshare/ghostscript/fonts/CMap/UniGB-UTF8-H Xshare/ghostscript/fonts/CMap/UniGB-UTF8-V Xshare/ghostscript/fonts/MOEKai-Regular Xshare/ghostscript/fonts/MOEKai-Regular-ETen-B5-H.gsf Xshare/ghostscript/fonts/MOEKai-Regular-ETen-B5-V.gsf Xshare/ghostscript/fonts/MOESung-Regular Xshare/ghostscript/fonts/MOESung-Regular-ETen-B5-H.gsf Xshare/ghostscript/fonts/MOESung-Regular-ETen-B5-V.gsf X@dirrm share/ghostscript/fonts/CMap END-of-moefonts-cid/pkg/PLIST echo x - moefonts-cid/Makefile sed 's/^X//' >moefonts-cid/Makefile << 'END-of-moefonts-cid/Makefile' X# New ports collection makefile for: MOE CIDFonts X# Date created: 3 Mar 2000 X# Whom: Jing-Tang Keith Jang X# X# $FreeBSD$ X# X XPORTNAME= moefonts-cid XPORTVERSION= 1.0 XCATEGORIES= chinese print XMASTER_SITES= ftp://freebsd.sinica.edu.tw/pub/keith/moe_cidfonts/ \ X ftp://ftp.ora.com/pub/examples/nutshell/cjkv/adobe/ \ X ftp://ftp.ora.com/pub/examples/nutshell/cjkv/adobe/samples/ XDISTFILES= MOEKai-Regular MOESung-Regular ac13.tar.Z ag13.tar.Z X XMAINTAINER= keith@freebsd.sinica.edu.tw X XRUN_DEPENDS= gs:${PORTSDIR}/print/ghostscript6 X XNO_BUILD= YES X Xdo-extract: X @${MKDIR} ${WRKDIR} X @(cd ${WRKDIR} && \ X ${TAR} xzf ${DISTDIR}/ac13.tar.Z && \ X ${TAR} xzf ${DISTDIR}/ag13.tar.Z ) X Xdo-install: X @${INSTALL_DATA} ${DISTDIR}/MOEKai-Regular \ X ${DISTDIR}/MOESung-Regular \ X ${FILESDIR}/MOEKai-Regular-ETen-B5-H.gsf \ X ${FILESDIR}/MOEKai-Regular-ETen-B5-V.gsf \ X ${FILESDIR}/MOESung-Regular-ETen-B5-H.gsf \ X ${FILESDIR}/MOESung-Regular-ETen-B5-V.gsf \ X ${PREFIX}/share/ghostscript/fonts X @${MKDIR} ${PREFIX}/share/ghostscript/fonts/CMap X @${INSTALL_DATA} ${WRKDIR}/ac13/CMap/* \ X ${PREFIX}/share/ghostscript/fonts/CMap X @${INSTALL_DATA} ${WRKDIR}/ag13/CMap/* \ X ${PREFIX}/share/ghostscript/fonts/CMap X @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGDIR}/INSTALL ${PKGNAME} POST-INSTALL X X.include END-of-moefonts-cid/Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 9:38:29 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 3AF3837B502; Mon, 2 Oct 2000 09:38:23 -0700 (PDT) Received: from vic.sabbo.net (root@[193.193.218.98]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id TAA10614; Mon, 2 Oct 2000 19:38:00 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e92GcKF69821; Mon, 2 Oct 2000 19:38:20 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39D8B9F6.C55F8257@FreeBSD.org> Date: Mon, 02 Oct 2000 19:38:14 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Ade Lovett Cc: Jeremy Lea , freebsd-ports@FreeBSD.org, "Vanilla I. Shu" Subject: Re: HEADS UP: USE_GTK and USE_GNOME References: <20001002012649.G30468@shale.csir.co.za> <39D86165.C21837F1@FreeBSD.org> <20001002102510.H15530@supernews.net> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ade Lovett wrote: > On Mon, Oct 02, 2000 at 01:20:22PM +0300, Maxim Sobolev wrote: > > In general looks fine, however I would like to have a possibility for a more > > fine-grained selection of main GNOME components (libs, core, controlcenter, > > audio, print etc, something like USE_GNOMELIBS, USE_GNOMECORE, USE_GNOMEAUDIO > > etc). > > Given that we're soon to have a massive reworking of the ports tree > (I dunno, I'm ill for 72 hours and the whole world changes :), and given > that GNOME 1.4 is likely to look a lot different than 1.2 (we're probably > going to have two metaports, one containing all the basic functionality, > and the other containing a bunch of "well-used" applications), I suggest > that for now we go ahead with the singular USE_GNOME. > > It can always be fine-tuned later -- the important bit is to get the > basic framework into the tree, instead of just sitting in Jeremy's tree > (and my scratch tree, on occasion). Then at least we should leave `RUN_DEPENDS=panel:blabla' as is, and remove implied gnomecore LIB_DEPENDS from bsd.gnome.mk, because not all GNOME ports really require gnomecore, so if we will merge gnomecore and gnomelibs into single USE_GNOME we will loose information about exactly which ports require gnomecore and which doesn't. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 9:38:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from maynard.mail.mindspring.net (maynard.mail.mindspring.net [207.69.200.243]) by hub.freebsd.org (Postfix) with ESMTP id ABC4337B503 for ; Mon, 2 Oct 2000 09:38:29 -0700 (PDT) Received: from vtpr5 (user-33qtk61.dialup.mindspring.com [199.174.208.193]) by maynard.mail.mindspring.net (8.9.3/8.8.5) with SMTP id MAA09372; Mon, 2 Oct 2000 12:38:24 -0400 (EDT) Message-ID: <000801c02c75$ee06e940$c1c0fea9@vt.ny.us> From: "Vladimir Silyaev" To: "Ethan Pierce" Cc: References: <39D8AF05.D91E3AAE@segnet.com> Subject: Re: FreeBSD Port: vmware2-2.0.2.621 Date: Mon, 2 Oct 2000 09:37:36 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Yes, it allow. You have to use FreeBSD bridge or negraph bridge for -current or -stable and _hostonly_ networking in the VMware. Vladimir ----- Original Message ----- From: Ethan Pierce To: Cc: Sent: Monday, October 02, 2000 11:51 AM Subject: FreeBSD Port: vmware2-2.0.2.621 > Does the new port allow bridged networking under freebsd? Thanks for > any info, > > Ethan Pierce > System Operations > segNET Technologies > Shaker Meeting House > Lower Shaker Village, Enfield, NH 03748 > Ethan@segNET.COM http://www.segNET.COM > voice@603.643.5883 x 126 fax@603.643.9854 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 10:15: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from home.se (smtphost2.home.se [195.66.35.198]) by hub.freebsd.org (Postfix) with ESMTP id DA87337B503 for ; Mon, 2 Oct 2000 10:15:05 -0700 (PDT) Received: from wigren@home.se [212.75.64.196] by home.se with Novell Internet Messaging System Web Client; Mon, 02 Oct 2000 19:14:37 Subject: problems with my very first port From: Per Wigren To: freebsd-ports@freebsd.org Date: Mon, 02 Oct 2000 17:14:37 GMT X-Sender: Novell Internet Messaging System Web Client MIME-Version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-Id: <20001002171505.DA87337B503@hub.freebsd.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi! I'm attempting at xmess v0.37b7.1 as my first port as the current version is v0.2 which is almost two years old... The problem is that the filename is ftp://ftp.aros.net/pub/users/gold/xmame-0.37b7.1-with-xmess-UNOFFICIAL.tar.bz2 I have no ftp/webspace where I can put a 5MB file so can this please be put on the main site with the filename xmess-0.37b7.1.tar.bz2 or something? I want to become an active committer so I'd love to get some space of my own at freefall.... ;-) Another question: xmess and xmame is in the very same sourcefile so do we really need to have two copies of the very same file? You specify TARGET=mess or TARGET=mame in the Makefile to specify which one to build... Best regards Per Wigren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 10:17:29 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 4562037B503; Mon, 2 Oct 2000 10:17:22 -0700 (PDT) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id TAA84540; Mon, 2 Oct 2000 19:17:10 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id e92HGvR15578; Mon, 2 Oct 2000 10:16:57 -0700 (PDT) (envelope-from reg) Date: Mon, 2 Oct 2000 10:16:57 -0700 From: Jeremy Lea To: Maxim Sobolev Cc: Ade Lovett , freebsd-ports@FreeBSD.org, "Vanilla I. Shu" Subject: Re: HEADS UP: USE_GTK and USE_GNOME Message-ID: <20001002101657.J30468@shale.csir.co.za> Mail-Followup-To: Jeremy Lea , Maxim Sobolev , Ade Lovett , freebsd-ports@FreeBSD.org, "Vanilla I. Shu" References: <20001002012649.G30468@shale.csir.co.za> <39D86165.C21837F1@FreeBSD.org> <20001002102510.H15530@supernews.net> <39D8B9F6.C55F8257@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39D8B9F6.C55F8257@FreeBSD.org>; from sobomax@FreeBSD.org on Mon, Oct 02, 2000 at 07:38:14PM +0300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Mon, Oct 02, 2000 at 07:38:14PM +0300, Maxim Sobolev wrote: > Then at least we should leave `RUN_DEPENDS=panel:blabla' as is, and remove implied > gnomecore LIB_DEPENDS from bsd.gnome.mk, because not all GNOME ports really require > gnomecore, so if we will merge gnomecore and gnomelibs into single USE_GNOME we > will loose information about exactly which ports require gnomecore and which > doesn't. You're thinking the wrong way around this. Ports require Gnome. Not gnome-libs, gnome-controlcenter or gnome-core. USE_GNOME just implies that a port wants Gnome. The only ports which need any finer granularity within Gnome are those which are part of the base system. Whether a port actually uses any of the many libraries or programs supplied is not really relevant. The only reason for using a LIB_DEPENDS to pull in gnome-core is that it allows version bumps. Regards, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 10:25:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mailout01.sul.t-online.com (mailout01.sul.t-online.com [194.25.134.80]) by hub.freebsd.org (Postfix) with ESMTP id 3457037B503 for ; Mon, 2 Oct 2000 10:25:41 -0700 (PDT) Received: from fmrl02.sul.t-online.de by mailout01.sul.t-online.com with smtp id 13g9LN-0007Bm-01; Mon, 02 Oct 2000 19:25:37 +0200 Received: from neutron.cichlids.com (520050424122-0001@[62.158.39.8]) by fmrl02.sul.t-online.com with esmtp id 13g9LI-0j77U8C; Mon, 2 Oct 2000 19:25:32 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id 76757AB91; Mon, 2 Oct 2000 19:26:34 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id D53A914B23; Mon, 2 Oct 2000 19:25:31 +0200 (CEST) Date: Mon, 2 Oct 2000 19:25:31 +0200 To: Per Wigren Cc: freebsd-ports@FreeBSD.ORG Subject: Re: problems with my very first port Message-ID: <20001002192531.B13673@cichlids.cichlids.com> Mail-Followup-To: alex@cichlids.cichlids.com, Per Wigren , freebsd-ports@FreeBSD.ORG References: <20001002171505.DA87337B503@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001002171505.DA87337B503@hub.freebsd.org>; from wigren@home.se on Mon, Oct 02, 2000 at 05:14:37PM +0000 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. From: alex@big.endian.de (Alexander Langer) X-Sender: 520050424122-0001@t-dialin.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Per Wigren (wigren@home.se): > ftp://ftp.aros.net/pub/users/gold/xmame-0.37b7.1-with-xmess-UNOFFICIAL.tar.bz2 > I have no ftp/webspace where I can put a 5MB file so can > this please be put on the main site with the filename > xmess-0.37b7.1.tar.bz2 or something? You don't need webspace, if the file is available at the above location. > Another question: xmess and xmame is in the very same > sourcefile so do we really need to have two copies of the > very same file? You specify TARGET=mess or TARGET=mame in > the Makefile to specify which one to build... there won't be two copies in this case. I don't know where the difference between xmame and xmess is, but maybe you can create one master and one slave port. But since there are ports of those two already, you shouldn't have to worry. Just update the port and send-pr a unified diff, as described in the porters-handbook on http://www.freebsd.org/ Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 10:31:37 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 1CE2837B503; Mon, 2 Oct 2000 10:31:31 -0700 (PDT) Received: from vic.sabbo.net (root@[193.193.218.98]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id UAA11449; Mon, 2 Oct 2000 20:31:24 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e92HVsF70275; Mon, 2 Oct 2000 20:31:54 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39D8C684.8A438F60@FreeBSD.org> Date: Mon, 02 Oct 2000 20:31:48 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Jeremy Lea Cc: Ade Lovett , freebsd-ports@FreeBSD.org, "Vanilla I. Shu" Subject: Re: HEADS UP: USE_GTK and USE_GNOME References: <20001002012649.G30468@shale.csir.co.za> <39D86165.C21837F1@FreeBSD.org> <20001002102510.H15530@supernews.net> <39D8B9F6.C55F8257@FreeBSD.org> <20001002101657.J30468@shale.csir.co.za> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jeremy Lea wrote: > Hi, > > On Mon, Oct 02, 2000 at 07:38:14PM +0300, Maxim Sobolev wrote: > > Then at least we should leave `RUN_DEPENDS=panel:blabla' as is, and remove implied > > gnomecore LIB_DEPENDS from bsd.gnome.mk, because not all GNOME ports really require > > gnomecore, so if we will merge gnomecore and gnomelibs into single USE_GNOME we > > will loose information about exactly which ports require gnomecore and which > > doesn't. > > You're thinking the wrong way around this. Ports require Gnome. Not > gnome-libs, gnome-controlcenter or gnome-core. USE_GNOME just implies > that a port wants Gnome. The only ports which need any finer > granularity within Gnome are those which are part of the base system. > Whether a port actually uses any of the many libraries or programs > supplied is not really relevant. The only reason for using a LIB_DEPENDS > to pull in gnome-core is that it allows version bumps. Nope. Gnome is a developed as a component software, so the programmer is free to choose whether he wants to use full set of features provided by Gnome, or just a small set of it (for example nice widgets provided by gnomelibs). Therefore, IMHO it is just plain wrong to tell that any port that uses part of Gnome, no matter how small subset it is, requires full-blown Gnome metaport to be installed. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 10:45: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id DFD5637B503; Mon, 2 Oct 2000 10:44:55 -0700 (PDT) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id TAA84888; Mon, 2 Oct 2000 19:44:34 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id e92HiB544564; Mon, 2 Oct 2000 10:44:11 -0700 (PDT) (envelope-from reg) Date: Mon, 2 Oct 2000 10:44:11 -0700 From: Jeremy Lea To: Maxim Sobolev Cc: Ade Lovett , freebsd-ports@FreeBSD.org, "Vanilla I. Shu" Subject: Re: HEADS UP: USE_GTK and USE_GNOME Message-ID: <20001002104411.K30468@shale.csir.co.za> Mail-Followup-To: Jeremy Lea , Maxim Sobolev , Ade Lovett , freebsd-ports@FreeBSD.org, "Vanilla I. Shu" References: <20001002012649.G30468@shale.csir.co.za> <39D86165.C21837F1@FreeBSD.org> <20001002102510.H15530@supernews.net> <39D8B9F6.C55F8257@FreeBSD.org> <20001002101657.J30468@shale.csir.co.za> <39D8C684.8A438F60@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39D8C684.8A438F60@FreeBSD.org>; from sobomax@FreeBSD.org on Mon, Oct 02, 2000 at 08:31:48PM +0300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Mon, Oct 02, 2000 at 08:31:48PM +0300, Maxim Sobolev wrote: > Nope. Gnome is a developed as a component software, so the programmer is free to choose > whether he wants to use full set of features provided by Gnome, or just a small set of it > (for example nice widgets provided by gnomelibs). Therefore, IMHO it is just plain wrong > to tell that any port that uses part of Gnome, no matter how small subset it is, requires > full-blown Gnome metaport to be installed. Well, after patching 300 and something ports, there are no ports (outside of the ones below gnome-core) there are only a few ports which might want to only use USE_GNOMELIBS, but that is because they only install a single binary. If they were to ever grow a .desktop file, then they would be back to needing the panel (for correct directory maintainance)... But the bottom line on this is - whatever changes I've not landed by this weekend are going to be removed from my tree, to become historical points of interest. So if you want to change the functionality, then please have tested patches to me by Wednesday or so. I've now been working on this for over a year, and each time I'm read to commit someone comes with other ideas, and no patches and grinds the entire process to a halt. Regards, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 11: 0:30 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 85FED37B66C for ; Mon, 2 Oct 2000 11:00:20 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA97681 for freebsd-ports@freebsd.org; Mon, 2 Oct 2000 11:00:18 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 2 Oct 2000 11:00:18 -0700 (PDT) Message-Id: <200010021800.LAA97681@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Subject: Current unassigned ports problem reports Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2000/07/13] ports/19888 ports qpopper3 dumps core for APOP authetificat o [2000/09/21] ports/21465 ports nmh-1.0.4: multiple simultaneous "inc"s s o [2000/09/21] ports/21466 ports port xpaint-2.5.7 won't make install 3 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1998/12/21] kern/9163 ports [patch] squid does not join a multicast g f [2000/05/03] ports/18367 ports Staroffice personal dir cannot be on nfs o [2000/06/12] ports/19232 ports port name changed and being updated o [2000/08/03] ports/20392 ports Fixed new port: Perl5 data debugging tool o [2000/08/04] ports/20401 ports lang/erlang skips the build of crypto.app o [2000/08/11] ports/20554 ports java/perltools: New port o [2000/08/12] ports/20564 ports [PATCH] nethack-gtk md5 correction, typo o [2000/08/13] ports/20581 ports current cdrecord port fails to install s [2000/08/14] ports/20607 ports plugger fails to build o [2000/08/16] ports/20668 ports new port: databases/db3 (Berkeley DB rev. o [2000/08/17] ports/20679 ports Port of Tcpview-1.0 o [2000/08/17] ports/20680 ports ports that don't have man pages with NO_I o [2000/08/18] ports/20705 ports xwave port fails to build o [2000/08/20] ports/20727 ports new port: databases/db3 (Berkeley DB revi o [2000/08/21] ports/20759 ports new port: databases/db3 o [2000/08/21] ports/20762 ports o [2000/08/24] ports/20819 ports XFMail 1.4.0 dumps core w/signal 6 when c o [2000/08/25] ports/20850 ports security/portsentry patch o [2000/08/26] ports/20856 ports portsentry o [2000/08/28] ports/20905 ports new port: www/oops o [2000/08/28] ports/20913 ports ports not linking against -ljpeg o [2000/09/04] ports/21055 ports popper3 dumps core o [2000/09/07] ports/21095 ports MASTER_SITES_GNU are semi-broken [PATCH] o [2000/09/08] ports/21116 ports vmware2 does not compile on -current f [2000/09/08] ports/21126 ports httpd warnings regarding attempts to free o [2000/09/15] ports/21289 ports qpopauth doesn't work(qpopper ports) o [2000/09/16] ports/21306 ports New ports: GB2JIS, a tool to convert GB t o [2000/09/16] ports/21319 ports ports submission - wmx10 o [2000/09/16] ports/21320 ports ports submission - wmusic o [2000/09/16] ports/21322 ports ports/mbone/rat update to support newpcm o [2000/09/17] ports/21330 ports Update port: mbone/rat for newpcm mixer a o [2000/09/18] ports/21355 ports evg port fails to run - syntax error in a o [2000/09/18] ports/21360 ports kaffe port's PLIST file is inaccurate o [2000/09/18] ports/21386 ports compile fails on -current o [2000/09/20] ports/21416 ports Patch-ab for port emulators/xmame refer t o [2000/09/20] ports/21417 ports ports/news/trn/pkg/PLIST misses bin/inews o [2000/09/20] ports/21437 ports port update to correct mail/exmh2 support o [2000/09/21] ports/21448 ports msql2d.sh doesn't start the daemon o [2000/09/22] ports/21486 ports fetchmail KPOP does not work o [2000/09/23] ports/21508 ports Re: FIX: devel/pcre to install a working o [2000/09/25] ports/21548 ports libcoro.a (ports) should use MAP_STACK wh o [2000/09/25] ports/21554 ports linux_base-6.1 incorrectly enables NIS by o [2000/09/29] ports/21656 ports PGP6 port based on pgp-6.5.8 43 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [1999/11/18] ports/14991 ports new port: devel/tcl-trf - Tcl Data transf o [1999/12/14] ports/15477 ports wwwstat-2.01 port is not Y2K compliant: 1 f [2000/03/10] ports/17309 ports ports/audio/cdd doesn't support .wav outp o [2000/03/19] ports/17489 ports Zephyr port is broken with Kerberos enabl a [2000/03/30] ports/17693 ports new port: www/linux-djvuplugin f [2000/05/02] ports/18356 ports /usr/ports/net/pipsecd build fails f [2000/05/15] ports/18582 ports joe can't read @7 termcap capability and f [2000/05/18] ports/18652 ports New port: devel/libnspr a [2000/06/06] ports/19082 ports Can't build editors/aXe-6.1.2 o [2000/06/11] ports/19212 ports New port py-amk-crypto-0.13 o [2000/06/12] ports/19227 ports Installation problem: apache13-ssl port o [2000/06/13] misc/19246 ports Poor error message when fetching files wi o [2000/06/20] ports/19403 ports portsifying of the glide3 source for dri o [2000/06/29] ports/19591 ports ssh2 port ignores 'ignorenologin' from lo f [2000/07/02] ports/19659 ports erlang port: proposal for updating the mn f [2000/07/11] ports/19854 ports [PATCH] inclusion of full mozart-oz docum o [2000/07/20] ports/20061 ports New Port: Entity - a RAD that work. Its f f [2000/07/25] ports/20170 ports [PATCH] fvwm2-beta update o [2000/08/01] ports/20344 ports [PATCH] Port for QDraw-0.7.tar.gz o [2000/08/02] ports/20359 ports New port: Apache-mod_perl_guide o [2000/08/05] ports/20435 ports New port: Free EcmaScript Interpreter o [2000/08/07] ports/20464 ports Port update of grace to 5.1.1 (included u o [2000/08/11] ports/20542 ports New Port: Fugu-0.9.9d (http://gale.org/fu o [2000/08/13] ports/20587 ports Update port: upsd-2.0.1.6 o [2000/08/13] ports/20588 ports New port: upsd100-2.0.1.6(sysutils/upsd10 o [2000/08/14] ports/20601 ports DESTDIR and /etc/shells o [2000/08/14] ports/20602 ports New Ports: Manipulate / fetch info from M o [2000/08/14] ports/20610 ports New port of cgoban2 o [2000/08/16] ports/20644 ports Installation of port DAP requires compat3 o [2000/08/16] ports/20662 ports New port of viewkit f [2000/08/16] ports/20665 ports [PATCH] Update PORTVERSION for JadeTeX po f [2000/08/17] ports/20693 ports Two patches for fxtv o [2000/08/19] ports/20722 ports New port: x11-fonts/jmk-x11-fonts f [2000/08/20] ports/20737 ports audio/cdrdao test for pccts has a LOCALBA f [2000/08/21] ports/20760 ports unfetchable mail for a resource which is o [2000/08/22] ports/20793 ports (socket-server) of clisp does not create o [2000/08/25] ports/20837 ports new port: palm/palmpower - disassembler + o [2000/08/26] ports/20880 ports new fvwm2-beta port o [2000/08/27] ports/20885 ports new port request o [2000/08/27] ports/20892 ports new port : databases/mytop o [2000/08/31] ports/20964 ports New port: databases/hypersonicsql o [2000/08/31] ports/20968 ports Remove port: graphics/pnmtopng o [2000/08/31] ports/20975 ports update math/grace f [2000/09/02] ports/20997 ports [PATCH] Man page, install enhancements fo f [2000/09/02] ports/20998 ports [PATCH] Enhancements for Xfstt port o [2000/09/02] ports/21003 ports New Port, modification of tcopy a [2000/09/04] ports/21021 ports graphics/quickpics bogus colorspace error o [2000/09/07] ports/21097 ports new port: net/xtradius o [2000/09/08] ports/21113 ports New port; voicetronix unified telephony A o [2000/09/10] ports/21168 ports New port: www/apache-contrib f [2000/09/14] ports/21262 ports Fix port: mail/postfix-current o [2000/09/15] ports/21291 ports New port: Free EcmaScript Interpreter (fe o [2000/09/15] ports/21293 ports An emacs major mode for editing SGML and o [2000/09/16] ports/21307 ports New ports: dsssl-docbook-cygnus-1.44(text f [2000/09/16] ports/21313 ports vmwarIPv6 and vmware2 panic: Fatal trap 1 o [2000/09/17] ports/21327 ports Initial ports entry for Bayonne IVR serve o [2000/09/18] ports/21341 ports New port: devel/elib-emacs + devel/elib-e f [2000/09/18] ports/21345 ports ports/biology/molden has a checksum error f [2000/09/18] ports/21346 ports ports/biology/platon o [2000/09/18] ports/21356 ports New port: mbone/rat30 (rat-3.0.35), the s o [2000/09/18] ports/21382 ports lang/pike port update o [2000/09/18] ports/21389 ports g2c libraries and compatibility for DJGPP o [2000/09/18] ports/21392 ports New port: converters/tnef - Unpack data f o [2000/09/19] ports/21393 ports Update port: sysutils/lavaps o [2000/09/19] ports/21396 ports New port: net/ghtool - cmdline interface o [2000/09/19] ports/21401 ports Update port sysutils/wmtop to 0.83 with f o [2000/09/19] ports/21411 ports Cyrus-SASL autodetected DB3, but fails to o [2000/09/20] ports/21412 ports New port: net/yaz o [2000/09/20] ports/21413 ports New port: net/zebra-server o [2000/09/20] ports/21414 ports New port: www/mod_zap o [2000/09/20] ports/21415 ports update ports: mail/smapi (new version) o [2000/09/20] ports/21419 ports update ports: mail/smapi (fix PLIST file) o [2000/09/20] ports/21422 ports msql install fails looking for startup sc o [2000/09/20] ports/21435 ports New port Jakarta Ant (A Java based build o [2000/09/20] ports/21439 ports FIX: mail/postfix-current o [2000/09/20] ports/21441 ports FIX: devel/pcre to install a working pgre o [2000/09/21] ports/21442 ports Upgrade/fix port graphics/avifile (checks f [2000/09/21] ports/21455 ports update graphics/giram to 0.1.7 o [2000/09/21] ports/21458 ports MASTER_SITES port update games/crossfire o [2000/09/22] ports/21475 ports Port broken: xlockmore 4.17.2 o [2000/09/22] ports/21477 ports New port: xmms-crossfade o [2000/09/22] ports/21481 ports Update port math/abs o [2000/09/22] ports/21482 ports New port: games/gnurobots o [2000/09/22] ports/21485 ports Update: devel/camlp4 o [2000/09/22] ports/21488 ports New port: bmsync, a bookmark converter o [2000/09/23] ports/21497 ports New addition to ports/ o [2000/09/23] ports/21502 ports Upgrade ports/lang/ghc to version 4.08.1 o [2000/09/23] ports/21504 ports New port: korean/tin o [2000/09/23] ports/21511 ports Update port: security/pam-mysql o [2000/09/23] ports/21513 ports stunnel port should be compiled using non o [2000/09/24] ports/21515 ports pine4 complains about wrong permissions o o [2000/09/24] ports/21516 ports New FreeBSD port for Fuzz o [2000/09/24] ports/21517 ports start|stop script for upsd (/usr/local/et o [2000/09/24] ports/21520 ports Configure the synaptics touchpad. o [2000/09/24] ports/21532 ports No formal mechanism in place for discussi o [2000/09/24] ports/21533 ports A homebrewer's recipe calculator o [2000/09/25] ports/21541 ports Replacement for pr 21538 o [2000/09/25] ports/21545 ports emulators/vmware broken... o [2000/09/25] ports/21555 ports [PATCH] citrix_ica upgrade to version 6.0 o [2000/09/26] ports/21557 ports New port: MagicCube4D - four-dimensional o [2000/09/26] ports/21558 ports Skill fails to ID os and fails build o [2000/09/26] ports/21564 ports New port: security/sing o [2000/09/26] ports/21572 ports Update port: biology/clustalw o [2000/09/26] ports/21573 ports Update port: cad/qcad to 1.4.4 o [2000/09/26] ports/21574 ports Update port: devel/qtez o [2000/09/26] ports/21575 ports Update port: graphics/ImageMagick to 5.2. o [2000/09/26] ports/21576 ports Update port: graphics/gnofract4d to 1.3 o [2000/09/26] ports/21577 ports Update port: graphics/togl o [2000/09/26] ports/21579 ports Update port: graphics/vcg o [2000/09/26] ports/21581 ports Update port: misc/xpns o [2000/09/26] ports/21584 ports mpd whines if kernel has option NETGRAPH o [2000/09/26] ports/21585 ports New port: biology/nab o [2000/09/26] ports/21589 ports Update port: www/udmsearch o [2000/09/27] ports/21594 ports New port: command line SMTP agent o [2000/09/27] ports/21597 ports port of WMusic o [2000/09/27] ports/21598 ports port of wm x10 controller o [2000/09/27] ports/21602 ports misc/sls port lost distfile (by maintaine o [2000/09/27] ports/21604 ports new port: java/jad o [2000/09/28] ports/21607 ports Update port: biology/deft o [2000/09/28] ports/21608 ports Update port: biology/ortep3 o [2000/09/28] ports/21609 ports Update port: biology/povchem o [2000/09/28] ports/21610 ports Update port: databases/sqsh o [2000/09/28] ports/21611 ports Update port: games/gleyes o [2000/09/28] ports/21612 ports Update port: games/xbomber o [2000/09/28] ports/21613 ports Update port: games/xracer o [2000/09/28] ports/21614 ports Update port: graphics/4va o [2000/09/28] ports/21615 ports Update port: print/pdq o [2000/09/28] ports/21616 ports Update port: print/pstotext o [2000/09/28] ports/21617 ports Update port: sysutils/logrotate o [2000/09/28] ports/21618 ports Update port: sysutils/pwgen o [2000/09/28] ports/21619 ports Update port: x11/xkeywrap o [2000/09/28] ports/21620 ports Update port: audio/cd2mp3 o [2000/09/28] ports/21630 ports Update of games/KnightCap to recognize CC f [2000/09/28] ports/21638 ports Update: games/xlifegame o [2000/09/28] ports/21640 ports Update: games/xeji o [2000/09/28] ports/21641 ports Port update: fetchmail 5.5.3 o [2000/09/30] ports/21664 ports port of gmail gnome email-client o [2000/10/01] ports/21668 ports Update x11-wm/enlightenment o [2000/10/01] ports/21669 ports MAINTAINER new port: graphics/xine o [2000/10/01] ports/21670 ports MAINTAINER: new port: net/arping o [2000/10/01] ports/21678 ports New port: biology/biojava o [2000/10/01] ports/21679 ports New port: biology/biojava o [2000/10/01] ports/21681 ports the startup elisp file of PSGML port has o [2000/10/01] ports/21687 ports rpm port is out-dated (2.5.6 instead of 3 o [2000/10/02] ports/21691 ports New port: chinese/linux_base o [2000/10/02] ports/21703 ports New port: chinese/moefonts-cid 146 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 11:17:34 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 2B3B137B503; Mon, 2 Oct 2000 11:17:26 -0700 (PDT) Received: from vic.sabbo.net (root@[193.193.218.90]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id VAA12175; Mon, 2 Oct 2000 21:17:17 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e92IGsF70437; Mon, 2 Oct 2000 21:16:54 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39D8D115.C9C3C35B@FreeBSD.org> Date: Mon, 02 Oct 2000 21:16:53 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Jeremy Lea Cc: Ade Lovett , freebsd-ports@FreeBSD.org, "Vanilla I. Shu" Subject: Re: HEADS UP: USE_GTK and USE_GNOME References: <20001002012649.G30468@shale.csir.co.za> <39D86165.C21837F1@FreeBSD.org> <20001002102510.H15530@supernews.net> <39D8B9F6.C55F8257@FreeBSD.org> <20001002101657.J30468@shale.csir.co.za> <39D8C684.8A438F60@FreeBSD.org> <20001002104411.K30468@shale.csir.co.za> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jeremy Lea wrote: > Hi, > > On Mon, Oct 02, 2000 at 08:31:48PM +0300, Maxim Sobolev wrote: > > Nope. Gnome is a developed as a component software, so the programmer is free to choose > > whether he wants to use full set of features provided by Gnome, or just a small set of it > > (for example nice widgets provided by gnomelibs). Therefore, IMHO it is just plain wrong > > to tell that any port that uses part of Gnome, no matter how small subset it is, requires > > full-blown Gnome metaport to be installed. > > Well, after patching 300 and something ports, there are no ports > (outside of the ones below gnome-core) there are only a few ports which > might want to only use USE_GNOMELIBS, but that is because they only > install a single binary. If they were to ever grow a .desktop file, > then they would be back to needing the panel (for correct directory > maintainance)... > > But the bottom line on this is - whatever changes I've not landed by > this weekend are going to be removed from my tree, to become historical > points of interest. So if you want to change the functionality, then > please have tested patches to me by Wednesday or so. I've now been > working on this for over a year, and each time I'm read to commit > someone comes with other ideas, and no patches and grinds the entire > process to a halt. Hmm, I don't want to offend you, but I think that the entire approach taken by you is not quite optimal. Instead of maintaining your supermegapatch, which is going to change 300-some ports, you would be better to concentrate on lying down underlying infrastructure, facilitate its discussion between interested parties and come up with final version agreed among FreeBSD Gnome'rs. After it is in fact committed, each particular maintainer could change his ports to fit into new world order. Something like we had with bsd.python.mk. Instead now you have your Big Patch at hand and it's qute understandable that when somebody want to introduce changes into it it's like asking you to shot yourself in a foot. Just IMHO. I'll look into it, though, and will try to figure out how we can have USE_GNOMEFOO or at least determine list of ports which requires special attention, so we will be able to make appropriate changes after all those Huge Disturbances [tm] of the ports three are over. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 11:27: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hub.lovett.com (hub.lovett.com [216.60.121.161]) by hub.freebsd.org (Postfix) with ESMTP id BED7137B66C; Mon, 2 Oct 2000 11:26:57 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13gAIj-0005Hl-00; Mon, 02 Oct 2000 13:26:57 -0500 Date: Mon, 2 Oct 2000 13:26:56 -0500 From: Ade Lovett To: sobomax@FreeBSD.org Cc: reg@FreeBSD.org, freebsd-ports@FreeBSD.org, vanilla@FreeBSD.org Subject: Re: HEADS UP: USE_GTK and USE_GNOME Message-ID: <20001002132656.K15530@FreeBSD.org> References: <20001002012649.G30468@shale.csir.co.za> <39D86165.C21837F1@FreeBSD.org> <20001002102510.H15530@supernews.net> <39D8B9F6.C55F8257@FreeBSD.org> <20001002101657.J30468@shale.csir.co.za> <39D8C684.8A438F60@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39D8C684.8A438F60@FreeBSD.org>; from sobomax@FreeBSD.org on Mon, Oct 02, 2000 at 08:31:48PM +0300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [gah! wrap your lines at <75 characters please] On Mon, Oct 02, 2000 at 08:31:48PM +0300, Maxim Sobolev wrote: > Nope. Gnome is a developed as a component software, so the programmer is > free to choose whether he wants to use full set of features provided by > Gnome, or just a small set of it (for example nice widgets provided by > gnomelibs). Therefore, IMHO it is just plain wrong to tell that any port > that uses part of Gnome, no matter how small subset it is, requires > full-blown Gnome metaport to be installed. This is why, with Gnome 1.4, things are changing. There will be two meta-ports, one called x11/gnome, which will contain a "minimal" (if that means anything) installation. Almost certainly none of the applications that are currently present, just the core libraries, basic widget sets, etc.) - if a port is GNOMEish, then it will simply need to depend on this port. It may be possible for ports to use only parts of x11/gnome to actually run, but I (at least) will consider such ports to be "unsupported", and won't test them should x11/gnome (or its components) get updated. Alongside this will be a new meta-port, x11/gnome-extra sounds like a good name right now, which will initially be a list of RUN_DEPENDS of applications that are currently in x11/gnome, and possibly add a few more. Don't base any assumptions on the existing x11/gnome metaport, it's not going to be recognizable soon. -aDe -- Ade Lovett, Austin, TX. ade@FreeBSD.org FreeBSD: The Power to Serve http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 11:58:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A2E6537B502; Mon, 2 Oct 2000 11:58:41 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA35893; Mon, 2 Oct 2000 11:58:41 -0700 (PDT) (envelope-from peter@FreeBSD.org) Date: Mon, 2 Oct 2000 11:58:41 -0700 (PDT) From: Message-Id: <200010021858.LAA35893@freefall.freebsd.org> To: peter@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21689: Update Port: audio/cdindex to 1.2.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update Port: audio/cdindex to 1.2.0 Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: peter Responsible-Changed-When: Mon Oct 2 11:58:04 PDT 2000 Responsible-Changed-Why: misfiled http://www.freebsd.org/cgi/query-pr.cgi?pr=21689 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 12:30: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BE69D37B503 for ; Mon, 2 Oct 2000 12:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA56439; Mon, 2 Oct 2000 12:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from h132-197-97-45.gte.com (h132-197-97-45.gte.com [132.197.97.45]) by hub.freebsd.org (Postfix) with ESMTP id 6061937B502 for ; Mon, 2 Oct 2000 12:25:41 -0700 (PDT) Received: (from ak03@localhost) by h132-197-97-45.gte.com (8.11.0/8.11.0) id e92JPeA19141; Mon, 2 Oct 2000 15:25:40 -0400 (EDT) (envelope-from ak03) Message-Id: <200010021925.e92JPeA19141@h132-197-97-45.gte.com> Date: Mon, 2 Oct 2000 15:25:40 -0400 (EDT) From: ak03@gte.com Reply-To: ak03@gte.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21705: CSCOPE writes incorrect offset into index file Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21705 >Category: ports >Synopsis: CSCOPE writes incorrect offset into index file >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 12:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Alexander Kabaev >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: Ports tree cvsupped on Oct 2 2000, FreeBSD 5.0-CURRENT (not relevant) >Description: Due to the fact, that FreeBSD fputs does not return exact number of bytes written, wrong value for 'tailerofset' is getting written into the cross-reference file. That makes it impossible to reuse index file when running cscope under cbrowser control, for instance. Cbrowser runs cscope with the command which looks like: cscope -dl -f cscope.out where -d instructs cscope not to rebuild index file and assume it is up-to-date. While trying to reopen pre-existing data file cscope seeks at incorrect offset and then fails with an error message. >How-To-Repeat: Run cscope with above command line and watch it fail. >Fix: Add attached file to the patches directory. --- src/constants.h.orig Mon Oct 2 14:36:07 2000 +++ src/constants.h Mon Oct 2 14:37:09 2000 @@ -43,7 +43,7 @@ /* database output macros that update its offset */ #define dbputc(c) (++dboffset, (void) putc(c, newrefs)) -#if Linux || BSD && !sun +#if Linux || __FreeBSD__ || BSD && !sun #define dbfputs(s) (dboffset += strlen(s), fputs(s, newrefs)) #else #define dbfputs(s) (dboffset += fputs(s, newrefs)) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 13:10: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 05B2837B66F for ; Mon, 2 Oct 2000 13:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA77937; Mon, 2 Oct 2000 13:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from kenny.blue-box.net (kenny.blue-box.net [204.245.221.97]) by hub.freebsd.org (Postfix) with ESMTP id 124E637B502 for ; Mon, 2 Oct 2000 13:03:40 -0700 (PDT) Received: (from root@localhost) by kenny.blue-box.net (8.11.0/8.11.0/BBMX) id e92K3ea89839; Mon, 2 Oct 2000 13:03:40 -0700 (PDT) Message-Id: <200010022003.e92K3ea89839@kenny.blue-box.net> Date: Mon, 2 Oct 2000 13:03:40 -0700 (PDT) From: vince@blue-box.net Reply-To: vince@blue-box.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21707: update syslog-ng to 1.4.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21707 >Category: ports >Synopsis: update syslog-ng to 1.4.7 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 13:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Vince Valenti >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: >Description: update syslog-ng to 1.4.7 >How-To-Repeat: diff -ruN syslog-ng.old/Makefile syslog-ng/Makefile --- syslog-ng.old/Makefile Mon Oct 2 12:48:00 2000 +++ syslog-ng/Makefile Mon Oct 2 12:48:17 2000 @@ -6,7 +6,7 @@ # PORTNAME= syslog-ng -PORTVERSION= 1.4.5 +PORTVERSION= 1.4.7 CATEGORIES= sysutils MASTER_SITES= http://www.balabit.hu/downloads/syslog-ng/1.4/ diff -ruN syslog-ng.old/files/md5 syslog-ng/files/md5 --- syslog-ng.old/files/md5 Mon Oct 2 12:48:00 2000 +++ syslog-ng/files/md5 Mon Oct 2 12:49:14 2000 @@ -1 +1 @@ -MD5 (syslog-ng-1.4.5.tar.gz) = 623f421f6ff660482fc0805025d14c39 +MD5 (syslog-ng-1.4.7.tar.gz) = f3b57725842a8a98f8ac5998eff11913 >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 13:10:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D86CA37B66D for ; Mon, 2 Oct 2000 13:10:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA77928; Mon, 2 Oct 2000 13:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from kenny.blue-box.net (kenny.blue-box.net [204.245.221.97]) by hub.freebsd.org (Postfix) with ESMTP id CA30737B66C for ; Mon, 2 Oct 2000 13:01:51 -0700 (PDT) Received: (from root@localhost) by kenny.blue-box.net (8.11.0/8.11.0/BBMX) id e92K1oj89635; Mon, 2 Oct 2000 13:01:50 -0700 (PDT) Message-Id: <200010022001.e92K1oj89635@kenny.blue-box.net> Date: Mon, 2 Oct 2000 13:01:50 -0700 (PDT) From: vince@blue-box.net Reply-To: vince@blue-box.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21706: update libol to 0.2.20 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21706 >Category: ports >Synopsis: update libol to 0.2.20 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 13:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Vince Valenti >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: >Description: update libol to 0.2.20 >How-To-Repeat: diff -ruN libol.old/Makefile libol/Makefile --- libol.old/Makefile Mon Aug 21 03:07:28 2000 +++ libol/Makefile Mon Oct 2 12:04:38 2000 @@ -6,7 +6,7 @@ # PORTNAME= libol -PORTVERSION= 0.2.17 +PORTVERSION= 0.2.20 CATEGORIES= devel MASTER_SITES= http://www.balabit.hu/downloads/libol/0.2/ diff -ruN libol.old/files/md5 libol/files/md5 --- libol.old/files/md5 Sat Jul 1 20:24:03 2000 +++ libol/files/md5 Mon Oct 2 12:06:29 2000 @@ -1 +1 @@ -MD5 (libol-0.2.17.tar.gz) = d21ca333b81886e13f819a9c75ef17f0 +MD5 (libol-0.2.20.tar.gz) = b9edfae35cbe19a1f9a63f8d5bd2b5ee >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 13:40: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 51D2837B66D for ; Mon, 2 Oct 2000 13:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA94710; Mon, 2 Oct 2000 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from privatecube.privatelabs.com (privatecube.privatelabs.com [198.143.31.30]) by hub.freebsd.org (Postfix) with ESMTP id DD8E237B66E for ; Mon, 2 Oct 2000 13:30:51 -0700 (PDT) Received: from misha.privatelabs.com (root@misha.privatelabs.com [198.143.31.6]) by privatecube.privatelabs.com (8.9.3/8.9.2) with ESMTP id PAA10822 for ; Mon, 2 Oct 2000 15:49:49 -0400 Received: (from root@localhost) by misha.privatelabs.com (8.11.0/8.9.3) id e92KUI407459; Mon, 2 Oct 2000 16:30:18 -0400 (EDT) (envelope-from mi) Message-Id: <200010022030.e92KUI407459@misha.privatelabs.com> Date: Mon, 2 Oct 2000 16:30:18 -0400 (EDT) From: root@misha.privatelabs.com Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21709: textproc/wordnet MAINTAINER UPGRADE Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21709 >Category: ports >Synopsis: textproc/wordnet MAINTAINER UPGRADE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 13:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: The included patch fixes a bug documented on the software's site, documents one of the patch-files, bumps up the TCL/TK version in use to 8.3 and adds the WWW field to pkg/DESCR. >How-To-Repeat: >Fix: --- Makefile Mon Oct 2 16:24:44 2000 +++ Makefile Mon Oct 2 15:41:49 2000 @@ -17 +17 @@ -LIB_DEPENDS= tk82.1:${PORTSDIR}/x11-toolkits/tk82 +LIB_DEPENDS= tk83.1:${PORTSDIR}/x11-toolkits/tk83 @@ -27 +27 @@ -TCL_DVER= 8.2 +TCL_DVER= 8.3 --- files/src.wnb.Makefile Sun Apr 30 22:40:47 2000 +++ files/src.wnb.Makefile Mon Oct 2 15:54:39 2000 @@ -2 +2 @@ -TCL_DVER?= 8.2 +TCL_DVER?= 8.3 --- patches/patch-official Sun Apr 30 22:40:49 2000 +++ patches/patch-official Mon Oct 2 15:51:33 2000 @@ -0,0 +1,11 @@ +This patch mostly contains the differences between the search.c as in +the released version 1.6 vs. the later version found in + ftp://ftp.cogsci.princeton.edu/pub/wordnet/bugfixes/ + +I also modified the groupexc function to fix the problem documented in + ftp://ftp.cogsci.princeton.edu/pub/wordnet/README.bugs +(buf[8] vs. buf[9] -- point 5 at the bottom) and modified it to avoid +allocating 1Kb from the stack and needlessly strcpy the argument given. +Nothing gets written into the string anyway, and we can examine it +without making a duplicate copy. -mi + @@ -20,0 +32,21 @@ +@@ -1405,16 +1405,15 @@ + + static int groupexc(unsigned long off1, unsigned long off2) + { +- char buf[8], *p, linebuf[1024]; ++ char buf[9], *p, *line; + + sprintf(buf, "%8.8lu", (off1 < off2 ? off1 : off2)); + + if ((p = bin_search(buf, cousinexcfp)) != NULL) { + sprintf(buf, "%8.8lu", (off2 > off1 ? off2 : off1)); +- strcpy(linebuf, p + 9); /* don't copy key */ +- linebuf[strlen(linebuf) - 1] = '\0'; /* strip off newline */ +- p = strtok(linebuf, " "); +- while (p && strcmp(p, buf)) ++ line = p + 9; /* ignore the key */ ++ p = strtok(line, " "); ++ while (p && strncmp(p, buf, 8)) + p = strtok(NULL, " "); + } + return(p ? 1 : 0); --- pkg/DESCR Sun Apr 30 22:40:50 2000 +++ pkg/DESCR Mon Oct 2 15:57:22 2000 @@ -10,0 +11,2 @@ + +WWW: http://www.cogsci.princeton.edu/~wn/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 14: 0: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9495337B503 for ; Mon, 2 Oct 2000 14:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA05907; Mon, 2 Oct 2000 14:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from 214.norrgarden.se (214.norrgarden.se [195.100.133.214]) by hub.freebsd.org (Postfix) with ESMTP id 624B637B503 for ; Mon, 2 Oct 2000 13:53:19 -0700 (PDT) Received: (from root@localhost) by 214.norrgarden.se (8.11.0/8.11.0) id e92KrAp81664; Mon, 2 Oct 2000 22:53:10 +0200 (CEST) (envelope-from root) Message-Id: <200010022053.e92KrAp81664@214.norrgarden.se> Date: Mon, 2 Oct 2000 22:53:10 +0200 (CEST) From: cj@vallcom.net Reply-To: cj@vallcom.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21710: Update port: ftp/lftp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21710 >Category: ports >Synopsis: Update port: ftp/lftp >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 14:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Carl Johan Madestrand >Release: FreeBSD 4.1.1-RELEASE i386 >Organization: >Environment: >Description: update lftp >How-To-Repeat: >Fix: diff -urN /usr/ports/ftp/lftp/Makefile lftp/Makefile --- /usr/ports/ftp/lftp/Makefile Sun Oct 1 11:33:41 2000 +++ lftp/Makefile Mon Oct 2 22:13:42 2000 @@ -6,7 +6,7 @@ # PORTNAME= lftp -PORTVERSION= 2.3.2 +PORTVERSION= 2.3.3 CATEGORIES= ftp ipv6 MASTER_SITES= ftp://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/ \ ${MASTER_SITE_SUNSITE} diff -urN /usr/ports/ftp/lftp/files/md5 lftp/files/md5 --- /usr/ports/ftp/lftp/files/md5 Fri Sep 29 17:52:42 2000 +++ lftp/files/md5 Mon Oct 2 22:15:49 2000 @@ -1 +1 @@ -MD5 (lftp-2.3.2.tar.bz2) = fd407455645720f9a59038025c456d49 +MD5 (lftp-2.3.3.tar.bz2) = 94083d9a2e057e28743b85f81e63c4fd >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 14:50:19 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C015A37B66C for ; Mon, 2 Oct 2000 14:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA37022; Mon, 2 Oct 2000 14:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 62AC137B502; Mon, 2 Oct 2000 14:41:27 -0700 (PDT) Message-Id: <20001002214127.62AC137B502@hub.freebsd.org> Date: Mon, 2 Oct 2000 14:41:27 -0700 (PDT) From: wigren@home.se To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21711: New port: unadf - unzip-like tool for .adf files used by Amiga emulators Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21711 >Category: ports >Synopsis: New port: unadf - unzip-like tool for .adf files used by Amiga emulators >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 14:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Per Wigren >Release: 4.1.1-STABLE >Organization: >Environment: FreeBSD adbprwn.hempc.ds.sll.se 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Sun Oct 1 15:40:00 CEST 2000 root@adbprwn.hempc.ds.sll.se:/usr/obj/usr/src/sys/WIGRENS i386 >Description: This package includes unadf which extracts files from Amiga .adf diskfiles used by Amiga emulators like UAE. WWW: http://perso.club-internet.fr/lclevy/adflib/unadf.html >How-To-Repeat: There should really be an EASIER way to submit ports!!! ;-p I hope this will work... >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # unadf # unadf/files # unadf/files/md5 # unadf/pkg # unadf/pkg/COMMENT # unadf/pkg/DESCR # unadf/pkg/PLIST # unadf/Makefile # unadf/patches # unadf/patches/patch-aa # unadf/patches/patch-ab # unadf/patches/patch-ac # echo c - unadf mkdir -p unadf > /dev/null 2>&1 echo c - unadf/files mkdir -p unadf/files > /dev/null 2>&1 echo x - unadf/files/md5 sed 's/^X//' >unadf/files/md5 << 'END-of-unadf/files/md5' XMD5 (adflib.zip) = 28e8b58b14b1125725f1c229528f0eb7 END-of-unadf/files/md5 echo c - unadf/pkg mkdir -p unadf/pkg > /dev/null 2>&1 echo x - unadf/pkg/COMMENT sed 's/^X//' >unadf/pkg/COMMENT << 'END-of-unadf/pkg/COMMENT' XExtracts files from .adf-files used by Amiga emulators. END-of-unadf/pkg/COMMENT echo x - unadf/pkg/DESCR sed 's/^X//' >unadf/pkg/DESCR << 'END-of-unadf/pkg/DESCR' XThis package includes unadf which extracts files from Amiga .adf Xdiskfiles used by Amiga emulators like UAE. X XWWW: http://perso.club-internet.fr/lclevy/adflib/unadf.html X X- Per Wigren Xwigren@home.se END-of-unadf/pkg/DESCR echo x - unadf/pkg/PLIST sed 's/^X//' >unadf/pkg/PLIST << 'END-of-unadf/pkg/PLIST' Xbin/unadf END-of-unadf/pkg/PLIST echo x - unadf/Makefile sed 's/^X//' >unadf/Makefile << 'END-of-unadf/Makefile' X# New ports collection makefile for: unadf X# Date created: 1 October 2000 X# Whom: Per Wigren X# X# $FreeBSD$ X# X XPORTNAME= unadf XPORTVERSION= 1.0 XCATEGORIES= archivers XMASTER_SITES= http://perso.club-internet.fr/lclevy/adflib/ XDISTNAME= adflib XEXTRACT_SUFX= .zip X XMAINTAINER= wigren@home.se X XNO_WRKSUBDIR= yes X XUSE_ZIP= yes X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/Demo/unadf ${PREFIX}/bin X X.include END-of-unadf/Makefile echo c - unadf/patches mkdir -p unadf/patches > /dev/null 2>&1 echo x - unadf/patches/patch-aa sed 's/^X//' >unadf/patches/patch-aa << 'END-of-unadf/patches/patch-aa' X--- Makefile.orig Tue Oct 3 00:30:12 2000 X+++ Makefile Mon Oct 2 23:50:01 2000 X@@ -5,7 +5,7 @@ X DEMODIR=Demo X LIBNAME=libadf.a X X-all: tests lib demo X+all: lib demo X X lib: $(LIBDIR)/$(LIBNAME) X cp $(LIBDIR)/$(LIBNAME) ./Bin/Linux/ END-of-unadf/patches/patch-aa echo x - unadf/patches/patch-ab sed 's/^X//' >unadf/patches/patch-ab << 'END-of-unadf/patches/patch-ab' X--- Lib/Makefile.orig Tue Oct 3 00:30:54 2000 X+++ Lib/Makefile Tue Oct 3 00:35:59 2000 X@@ -27,7 +27,7 @@ X adf_util.o adf_env.o adf_nativ.o adf_dir.o adf_file.o adf_cache.o \ X adf_link.o adf_salv.o X X-libadf.a: $(OBJS) X+libadf.a: defendian.h $(OBJS) X $(AR) $@ $(OBJS) X -@ ($(RANLIB) $@ || true) >/dev/null 2>&1 X X@@ -41,7 +41,7 @@ X # to define LITT_ENDIAN on little endian machines (intel) X # checks for sizeof(long)=4, sizeof(short)=2, sizeof(int)=4 X defendian.h: myconf X- myconf X+ ./myconf X X adf_nativ.o: ${NATIV_DIR}/adf_nativ.c ${NATIV_DIR}/adf_nativ.h X $(CC) ${CFLAGS} -c ${NATIV_DIR}/adf_nativ.c X@@ -59,19 +59,14 @@ X X # DO NOT DELETE THIS LINE -- make depend depends on it. X X-adf_bitm.o: /usr/include/stdlib.h X # /usr/include/stdlib.h includes: X # features.h X # stddef.h X # sys/types.h X # alloca.h X-adf_bitm.o: /usr/include/features.h X # /usr/include/features.h includes: X # sys/cdefs.h X # gnu/stubs.h X-adf_bitm.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_bitm.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_bitm.o: /usr/include/sys/types.h X # /usr/include/sys/types.h includes: X # features.h X # bits/types.h X@@ -80,46 +75,35 @@ X # endian.h X # sys/select.h X # sys/sysmacros.h X-adf_bitm.o: /usr/include/bits/types.h X # /usr/include/bits/types.h includes: X # features.h X # stddef.h X-adf_bitm.o: /usr/include/time.h X # /usr/include/time.h includes: X # bits/types.h X-adf_bitm.o: /usr/include/endian.h X # /usr/include/endian.h includes: X # features.h X # bits/endian.h X-adf_bitm.o: /usr/include/bits/endian.h /usr/include/sys/select.h X # /usr/include/sys/select.h includes: X # features.h X # bits/types.h X # bits/select.h X # bits/sigset.h X # time.h X-adf_bitm.o: /usr/include/bits/select.h /usr/include/bits/sigset.h X-adf_bitm.o: /usr/include/sys/sysmacros.h X # /usr/include/sys/sysmacros.h includes: X # endian.h X-adf_bitm.o: /usr/include/alloca.h X # /usr/include/alloca.h includes: X # features.h X # stddef.h X-adf_bitm.o: /usr/include/string.h X # /usr/include/string.h includes: X # features.h X # stddef.h X-adf_bitm.o: adf_raw.h X # adf_raw.h includes: X # adf_str.h X-adf_bitm.o: adf_str.h X # adf_str.h includes: X # stdio.h X # adf_defs.h X # adf_blk.h X # adf_err.h X-adf_bitm.o: /usr/include/stdio.h X # /usr/include/stdio.h includes: X # features.h X # stddef.h X@@ -127,21 +111,15 @@ X # bits/types.h X # libio.h X # bits/stdio_lim.h X-adf_bitm.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_bitm.o: /usr/include/libio.h X # /usr/include/libio.h includes: X # _G_config.h X # stdarg.h X-adf_bitm.o: /usr/include/_G_config.h X # /usr/include/_G_config.h includes: X # bits/types.h X # stddef.h X-adf_bitm.o: /usr/include/bits/stdio_lim.h adf_defs.h adf_blk.h adf_err.h X-adf_bitm.o: adf_bitm.h X # adf_bitm.h includes: X # adf_str.h X # prefix.h X-adf_bitm.o: prefix.h adf_disk.h X # adf_disk.h includes: X # prefix.h X # adf_str.h X@@ -150,296 +128,50 @@ X # adf_util.h includes: X # prefix.h X # adf_str.h X-adf_bitm.o: defendian.h X-adf_bitm.o: adf_str.h /usr/include/stdio.h /usr/include/features.h X-adf_bitm.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_bitm.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_bitm.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_bitm.o: /usr/include/bits/types.h /usr/include/libio.h X-adf_bitm.o: /usr/include/_G_config.h /usr/include/bits/stdio_lim.h adf_defs.h X-adf_bitm.o: adf_blk.h adf_err.h prefix.h X-adf_cache.o: /usr/include/stdlib.h /usr/include/features.h X-adf_cache.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_cache.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_cache.o: /usr/include/sys/types.h /usr/include/bits/types.h X-adf_cache.o: /usr/include/time.h /usr/include/endian.h X-adf_cache.o: /usr/include/bits/endian.h /usr/include/sys/select.h X-adf_cache.o: /usr/include/bits/select.h /usr/include/bits/sigset.h X-adf_cache.o: /usr/include/sys/sysmacros.h /usr/include/alloca.h X-adf_cache.o: /usr/include/string.h adf_defs.h adf_str.h /usr/include/stdio.h X-adf_cache.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_cache.o: /usr/include/libio.h /usr/include/_G_config.h X-adf_cache.o: /usr/include/bits/stdio_lim.h adf_blk.h adf_err.h defendian.h X-adf_cache.o: adf_cache.h X # adf_cache.h includes: X # adf_str.h X-adf_cache.o: adf_raw.h adf_disk.h prefix.h adf_bitm.h adf_util.h adf_dir.h X # adf_dir.h includes: X # adf_str.h X # adf_err.h X # adf_defs.h X # prefix.h X-adf_cache.o: adf_str.h /usr/include/stdio.h /usr/include/features.h X-adf_cache.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_cache.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_cache.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_cache.o: /usr/include/bits/types.h /usr/include/libio.h X-adf_cache.o: /usr/include/_G_config.h /usr/include/bits/stdio_lim.h X-adf_cache.o: adf_defs.h adf_blk.h adf_err.h X-adf_dir.o: /usr/include/stdlib.h /usr/include/features.h X-adf_dir.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_dir.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_dir.o: /usr/include/sys/types.h /usr/include/bits/types.h X-adf_dir.o: /usr/include/time.h /usr/include/endian.h X-adf_dir.o: /usr/include/bits/endian.h /usr/include/sys/select.h X-adf_dir.o: /usr/include/bits/select.h /usr/include/bits/sigset.h X-adf_dir.o: /usr/include/sys/sysmacros.h /usr/include/alloca.h X-adf_dir.o: /usr/include/string.h /usr/include/ctype.h X # /usr/include/ctype.h includes: X # features.h X # bits/types.h X # endian.h X-adf_dir.o: adf_dir.h adf_str.h /usr/include/stdio.h X-adf_dir.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_dir.o: /usr/include/libio.h /usr/include/_G_config.h X-adf_dir.o: /usr/include/bits/stdio_lim.h adf_defs.h adf_blk.h adf_err.h X-adf_dir.o: prefix.h adf_util.h defendian.h adf_raw.h adf_disk.h adf_bitm.h X-adf_dir.o: adf_file.h X # adf_file.h includes: X # prefix.h X # adf_str.h X-adf_dir.o: adf_cache.h X-adf_dir.o: adf_str.h /usr/include/stdio.h /usr/include/features.h X-adf_dir.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_dir.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_dir.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_dir.o: /usr/include/bits/types.h /usr/include/libio.h X-adf_dir.o: /usr/include/_G_config.h /usr/include/bits/stdio_lim.h adf_defs.h X-adf_dir.o: adf_blk.h adf_err.h prefix.h X-adf_disk.o: /usr/include/limits.h X # /usr/include/limits.h includes: X # features.h X # bits/posix1_lim.h X # bits/posix2_lim.h X # limits.h X-adf_disk.o: /usr/include/features.h /usr/include/sys/cdefs.h X-adf_disk.o: /usr/include/gnu/stubs.h /usr/include/bits/posix1_lim.h X # /usr/include/bits/posix1_lim.h includes: X # bits/local_lim.h X-adf_disk.o: /usr/include/bits/local_lim.h X # /usr/include/bits/local_lim.h includes: X # linux/limits.h X-adf_disk.o: /usr/include/linux/limits.h /usr/include/bits/posix2_lim.h X-adf_disk.o: /usr/include/stdlib.h X-adf_disk.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_disk.o: /usr/include/sys/types.h /usr/include/bits/types.h X-adf_disk.o: /usr/include/time.h /usr/include/endian.h X-adf_disk.o: /usr/include/bits/endian.h /usr/include/sys/select.h X-adf_disk.o: /usr/include/bits/select.h /usr/include/bits/sigset.h X-adf_disk.o: /usr/include/sys/sysmacros.h /usr/include/alloca.h X-adf_disk.o: /usr/include/string.h adf_str.h /usr/include/stdio.h X-adf_disk.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_disk.o: /usr/include/libio.h /usr/include/_G_config.h X-adf_disk.o: /usr/include/bits/stdio_lim.h adf_defs.h adf_blk.h adf_err.h X-adf_disk.o: adf_disk.h prefix.h adf_raw.h adf_hd.h X # adf_hd.h includes: X # prefix.h X # adf_str.h X # hd_blk.h X # adf_err.h X-adf_disk.o: hd_blk.h X # hd_blk.h includes: X # adf_str.h X-adf_disk.o: adf_bitm.h adf_util.h ./Generic/adf_nativ.h X # ./Generic/adf_nativ.h includes: X # stdio.h X # adf_str.h X-adf_disk.o: adf_dump.h adf_cache.h X-adf_disk.o: prefix.h adf_str.h /usr/include/stdio.h /usr/include/features.h X-adf_disk.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_disk.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_disk.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_disk.o: /usr/include/bits/types.h /usr/include/libio.h X-adf_disk.o: /usr/include/_G_config.h /usr/include/bits/stdio_lim.h adf_defs.h X-adf_disk.o: adf_blk.h adf_err.h X-adf_dump.o: /usr/include/stdio.h /usr/include/features.h X-adf_dump.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_dump.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_dump.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_dump.o: /usr/include/bits/types.h /usr/include/libio.h X-adf_dump.o: /usr/include/_G_config.h /usr/include/bits/stdio_lim.h X-adf_dump.o: /usr/include/stdlib.h /usr/include/sys/types.h X-adf_dump.o: /usr/include/time.h /usr/include/endian.h X-adf_dump.o: /usr/include/bits/endian.h /usr/include/sys/select.h X-adf_dump.o: /usr/include/bits/select.h /usr/include/bits/sigset.h X-adf_dump.o: /usr/include/sys/sysmacros.h /usr/include/alloca.h X-adf_dump.o: /usr/include/errno.h X # /usr/include/errno.h includes: X # features.h X # bits/errno.h X-adf_dump.o: /usr/include/bits/errno.h X # /usr/include/bits/errno.h includes: X # linux/errno.h X-adf_dump.o: /usr/include/linux/errno.h X # /usr/include/linux/errno.h includes: X # asm/errno.h X-adf_dump.o: /usr/include/asm/errno.h adf_defs.h adf_str.h adf_blk.h adf_err.h X-adf_dump.o: adf_disk.h prefix.h ./Generic/adf_nativ.h X-adf_env.o: /usr/include/stdio.h /usr/include/features.h X-adf_env.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_env.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_env.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_env.o: /usr/include/bits/types.h /usr/include/libio.h X-adf_env.o: /usr/include/_G_config.h /usr/include/bits/stdio_lim.h X-adf_env.o: /usr/include/stdlib.h /usr/include/sys/types.h /usr/include/time.h X-adf_env.o: /usr/include/endian.h /usr/include/bits/endian.h X-adf_env.o: /usr/include/sys/select.h /usr/include/bits/select.h X-adf_env.o: /usr/include/bits/sigset.h /usr/include/sys/sysmacros.h X-adf_env.o: /usr/include/alloca.h adf_defs.h adf_str.h adf_blk.h adf_err.h X-adf_env.o: ./Generic/adf_nativ.h adf_env.h X # adf_env.h includes: X # prefix.h X-adf_env.o: prefix.h defendian.h X-adf_env.o: prefix.h X-adf_file.o: /usr/include/stdlib.h /usr/include/features.h X-adf_file.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_file.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_file.o: /usr/include/sys/types.h /usr/include/bits/types.h X-adf_file.o: /usr/include/time.h /usr/include/endian.h X-adf_file.o: /usr/include/bits/endian.h /usr/include/sys/select.h X-adf_file.o: /usr/include/bits/select.h /usr/include/bits/sigset.h X-adf_file.o: /usr/include/sys/sysmacros.h /usr/include/alloca.h X-adf_file.o: /usr/include/string.h adf_util.h prefix.h adf_str.h X-adf_file.o: /usr/include/stdio.h X-adf_file.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_file.o: /usr/include/libio.h /usr/include/_G_config.h X-adf_file.o: /usr/include/bits/stdio_lim.h adf_defs.h adf_blk.h adf_err.h X-adf_file.o: adf_file.h defendian.h adf_raw.h adf_disk.h adf_dir.h adf_bitm.h X-adf_file.o: adf_cache.h X-adf_file.o: prefix.h adf_str.h /usr/include/stdio.h /usr/include/features.h X-adf_file.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_file.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_file.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_file.o: /usr/include/bits/types.h /usr/include/libio.h X-adf_file.o: /usr/include/_G_config.h /usr/include/bits/stdio_lim.h adf_defs.h X-adf_file.o: adf_blk.h adf_err.h X-adf_hd.o: /usr/include/stdio.h /usr/include/features.h X-adf_hd.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_hd.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_hd.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_hd.o: /usr/include/bits/types.h /usr/include/libio.h X-adf_hd.o: /usr/include/_G_config.h /usr/include/bits/stdio_lim.h X-adf_hd.o: /usr/include/stdlib.h /usr/include/sys/types.h /usr/include/time.h X-adf_hd.o: /usr/include/endian.h /usr/include/bits/endian.h X-adf_hd.o: /usr/include/sys/select.h /usr/include/bits/select.h X-adf_hd.o: /usr/include/bits/sigset.h /usr/include/sys/sysmacros.h X-adf_hd.o: /usr/include/alloca.h /usr/include/string.h adf_str.h adf_defs.h X-adf_hd.o: adf_blk.h adf_err.h hd_blk.h adf_raw.h adf_hd.h prefix.h adf_util.h X-adf_hd.o: adf_disk.h ./Generic/adf_nativ.h adf_dump.h defendian.h X-adf_hd.o: prefix.h adf_str.h /usr/include/stdio.h /usr/include/features.h X-adf_hd.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_hd.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_hd.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_hd.o: /usr/include/bits/types.h /usr/include/libio.h X-adf_hd.o: /usr/include/_G_config.h /usr/include/bits/stdio_lim.h adf_defs.h X-adf_hd.o: adf_blk.h adf_err.h hd_blk.h X-adf_link.o: /usr/include/string.h /usr/include/features.h X-adf_link.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_link.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_link.o: adf_defs.h adf_str.h /usr/include/stdio.h X-adf_link.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_link.o: /usr/include/bits/types.h /usr/include/libio.h X-adf_link.o: /usr/include/_G_config.h /usr/include/bits/stdio_lim.h adf_blk.h X-adf_link.o: adf_err.h adf_link.h X # adf_link.h includes: X # prefix.h X-adf_link.o: prefix.h adf_dir.h X-adf_link.o: prefix.h X-adf_raw.o: /usr/include/limits.h /usr/include/features.h X-adf_raw.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_raw.o: /usr/include/bits/posix1_lim.h /usr/include/bits/local_lim.h X-adf_raw.o: /usr/include/linux/limits.h /usr/include/bits/posix2_lim.h X-adf_raw.o: /usr/include/stdlib.h X-adf_raw.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_raw.o: /usr/include/sys/types.h /usr/include/bits/types.h X-adf_raw.o: /usr/include/time.h /usr/include/endian.h X-adf_raw.o: /usr/include/bits/endian.h /usr/include/sys/select.h X-adf_raw.o: /usr/include/bits/select.h /usr/include/bits/sigset.h X-adf_raw.o: /usr/include/sys/sysmacros.h /usr/include/alloca.h X-adf_raw.o: /usr/include/string.h adf_str.h /usr/include/stdio.h X-adf_raw.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_raw.o: /usr/include/libio.h /usr/include/_G_config.h X-adf_raw.o: /usr/include/bits/stdio_lim.h adf_defs.h adf_blk.h adf_err.h X-adf_raw.o: adf_raw.h adf_disk.h prefix.h adf_util.h defendian.h X-adf_raw.o: adf_str.h /usr/include/stdio.h /usr/include/features.h X-adf_raw.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_raw.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_raw.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_raw.o: /usr/include/bits/types.h /usr/include/libio.h X-adf_raw.o: /usr/include/_G_config.h /usr/include/bits/stdio_lim.h adf_defs.h X-adf_raw.o: adf_blk.h adf_err.h X-adf_salv.o: /usr/include/string.h /usr/include/features.h X-adf_salv.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_salv.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_salv.o: /usr/include/stdlib.h /usr/include/sys/types.h X-adf_salv.o: /usr/include/bits/types.h /usr/include/time.h X-adf_salv.o: /usr/include/endian.h /usr/include/bits/endian.h X-adf_salv.o: /usr/include/sys/select.h /usr/include/bits/select.h X-adf_salv.o: /usr/include/bits/sigset.h /usr/include/sys/sysmacros.h X-adf_salv.o: /usr/include/alloca.h adf_salv.h X # adf_salv.h includes: X # prefix.h X # adf_str.h X-adf_salv.o: prefix.h adf_str.h /usr/include/stdio.h X-adf_salv.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_salv.o: /usr/include/libio.h /usr/include/_G_config.h X-adf_salv.o: /usr/include/bits/stdio_lim.h adf_defs.h adf_blk.h adf_err.h X-adf_salv.o: adf_bitm.h adf_util.h adf_disk.h adf_dir.h adf_file.h adf_cache.h X-adf_salv.o: prefix.h adf_str.h /usr/include/stdio.h /usr/include/features.h X-adf_salv.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_salv.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_salv.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_salv.o: /usr/include/bits/types.h /usr/include/libio.h X-adf_salv.o: /usr/include/_G_config.h /usr/include/bits/stdio_lim.h adf_defs.h X-adf_salv.o: adf_blk.h adf_err.h X-adf_str.o: /usr/include/stdio.h /usr/include/features.h X-adf_str.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_str.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_str.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_str.o: /usr/include/bits/types.h /usr/include/libio.h X-adf_str.o: /usr/include/_G_config.h /usr/include/bits/stdio_lim.h adf_defs.h X-adf_str.o: adf_blk.h adf_err.h X-adf_util.o: /usr/include/stdlib.h /usr/include/features.h X-adf_util.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_util.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_util.o: /usr/include/sys/types.h /usr/include/bits/types.h X-adf_util.o: /usr/include/time.h /usr/include/endian.h X-adf_util.o: /usr/include/bits/endian.h /usr/include/sys/select.h X-adf_util.o: /usr/include/bits/select.h /usr/include/bits/sigset.h X-adf_util.o: /usr/include/sys/sysmacros.h /usr/include/alloca.h adf_util.h X-adf_util.o: prefix.h adf_str.h /usr/include/stdio.h X-adf_util.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_util.o: /usr/include/libio.h /usr/include/_G_config.h X-adf_util.o: /usr/include/bits/stdio_lim.h adf_defs.h adf_blk.h adf_err.h X-adf_util.o: adf_disk.h X-adf_util.o: prefix.h adf_str.h /usr/include/stdio.h /usr/include/features.h X-adf_util.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adf_util.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adf_util.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adf_util.o: /usr/include/bits/types.h /usr/include/libio.h X-adf_util.o: /usr/include/_G_config.h /usr/include/bits/stdio_lim.h adf_defs.h X-adf_util.o: adf_blk.h adf_err.h X-adflib.o: adf_defs.h adf_str.h /usr/include/stdio.h /usr/include/features.h X-adflib.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-adflib.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-adflib.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-adflib.o: /usr/include/bits/types.h /usr/include/libio.h X-adflib.o: /usr/include/_G_config.h /usr/include/bits/stdio_lim.h adf_blk.h X-adflib.o: adf_err.h X-hd_blk.o: adf_str.h /usr/include/stdio.h /usr/include/features.h X-hd_blk.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-hd_blk.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-hd_blk.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-hd_blk.o: /usr/include/bits/types.h /usr/include/libio.h X-hd_blk.o: /usr/include/_G_config.h /usr/include/bits/stdio_lim.h adf_defs.h X-hd_blk.o: adf_blk.h adf_err.h END-of-unadf/patches/patch-ab echo x - unadf/patches/patch-ac sed 's/^X//' >unadf/patches/patch-ac << 'END-of-unadf/patches/patch-ac' X--- Demo/Makefile.orig Tue Oct 3 00:31:38 2000 X+++ Demo/Makefile Tue Oct 3 00:36:55 2000 X@@ -32,19 +32,14 @@ X X # DO NOT DELETE THIS LINE -- make depend depends on it. X X-unadf.o: /usr/include/stdlib.h X # /usr/include/stdlib.h includes: X # features.h X # stddef.h X # sys/types.h X # alloca.h X-unadf.o: /usr/include/features.h X # /usr/include/features.h includes: X # sys/cdefs.h X # gnu/stubs.h X-unadf.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h X-unadf.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stddef.h X-unadf.o: /usr/include/sys/types.h X # /usr/include/sys/types.h includes: X # features.h X # bits/types.h X@@ -53,54 +48,41 @@ X # endian.h X # sys/select.h X # sys/sysmacros.h X-unadf.o: /usr/include/bits/types.h X # /usr/include/bits/types.h includes: X # features.h X # stddef.h X-unadf.o: /usr/include/time.h X # /usr/include/time.h includes: X # bits/types.h X-unadf.o: /usr/include/endian.h X # /usr/include/endian.h includes: X # features.h X # bits/endian.h X-unadf.o: /usr/include/bits/endian.h /usr/include/sys/select.h X # /usr/include/sys/select.h includes: X # features.h X # bits/types.h X # bits/select.h X # bits/sigset.h X # time.h X-unadf.o: /usr/include/bits/select.h /usr/include/bits/sigset.h X-unadf.o: /usr/include/sys/sysmacros.h /usr/include/alloca.h X # /usr/include/alloca.h includes: X # features.h X # stddef.h X-unadf.o: /usr/include/errno.h X # /usr/include/errno.h includes: X # features.h X # bits/errno.h X-unadf.o: /usr/include/bits/errno.h X # /usr/include/bits/errno.h includes: X # linux/errno.h X-unadf.o: /usr/include/linux/errno.h X # /usr/include/linux/errno.h includes: X # asm/errno.h X-unadf.o: /usr/include/asm/errno.h /usr/include/string.h X # /usr/include/string.h includes: X # features.h X # stddef.h X-unadf.o: ../Lib/adflib.h X # ../Lib/adflib.h includes: X # adf_defs.h X # adf_str.h X-unadf.o: ../Lib/adf_defs.h ../Lib/adf_str.h X # ../Lib/adf_str.h includes: X # stdio.h X # adf_defs.h X # adf_blk.h X # adf_err.h X-unadf.o: /usr/include/stdio.h X # /usr/include/stdio.h includes: X # features.h X # stddef.h X@@ -108,13 +90,9 @@ X # bits/types.h X # libio.h X # bits/stdio_lim.h X-unadf.o: /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include/stdarg.h X-unadf.o: /usr/include/libio.h X # /usr/include/libio.h includes: X # _G_config.h X # stdarg.h X-unadf.o: /usr/include/_G_config.h X # /usr/include/_G_config.h includes: X # bits/types.h X # stddef.h X-unadf.o: /usr/include/bits/stdio_lim.h ../Lib/adf_blk.h ../Lib/adf_err.h END-of-unadf/patches/patch-ac exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 14:55:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3165437B503; Mon, 2 Oct 2000 14:55:32 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA41115; Mon, 2 Oct 2000 14:55:32 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Mon, 2 Oct 2000 14:55:32 -0700 (PDT) From: Message-Id: <200010022155.OAA41115@freefall.freebsd.org> To: vns@delta.odessa.ua, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21382: lang/pike port update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: lang/pike port update State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Mon Oct 2 14:53:32 PDT 2000 State-Changed-Why: Committed with minor corrections from portlint. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21382 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 15:11: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9866837B503; Mon, 2 Oct 2000 15:11:06 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA52919; Mon, 2 Oct 2000 15:11:06 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Mon, 2 Oct 2000 15:11:06 -0700 (PDT) From: Message-Id: <200010022211.PAA52919@freefall.freebsd.org> To: ade@FreeBSD.org, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20491: AbiWord-0.7.10 fails to compile on FreeBSD-4.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: AbiWord-0.7.10 fails to compile on FreeBSD-4.1 Responsible-Changed-From-To: ade->freebsd-ports Responsible-Changed-By: ade Responsible-Changed-When: Mon Oct 2 15:08:14 PDT 2000 Responsible-Changed-Why: I'm handing this back to the -ports community at large. AbiWord is a mess, including its own copies of libole2, expat, and iconv (which is the problem here). For this to be done right, appropriate LIB_DEPENDS need adding to the Makefile and incredible amounts of hackery will be needed in the various Makefiles to link against these external libraries. Oh, and an upgrade to 0.7.11 didn't help. http://www.freebsd.org/cgi/query-pr.cgi?pr=20491 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 15:15:20 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id 80BC737B502 for ; Mon, 2 Oct 2000 15:15:17 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e92MFFw24532; Mon, 2 Oct 2000 18:15:15 -0400 (EDT) Date: Mon, 2 Oct 2000 18:15:15 -0400 (EDT) From: Trevor Johnson To: Per Wigren Cc: freebsd-ports@FreeBSD.ORG Subject: Re: problems with my very first port In-Reply-To: <20001002171505.DA87337B503@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Hi! Hi, Per. > The problem is that the filename is > ftp://ftp.aros.net/pub/users/gold/xmame-0.37b7.1-with-xmess-UNOFFICIAL.tar.bz2 > > I have no ftp/webspace where I can put a 5MB file so can > this please be put on the main site with the filename > xmess-0.37b7.1.tar.bz2 or something? Try something resembling: DISTNAME= xmame-${PORTVERSION}-with-xmess-UNOFFICIAL (see http://www.freebsd.org/porters-handbook/x487.html). > Another question: xmess and xmame is in the very same > sourcefile so do we really need to have two copies of the > very same file? You specify TARGET=mess or TARGET=mame in > the Makefile to specify which one to build... The file won't get fetched a second time, unless the user deletes it in the meantime. -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 15:21:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from turtle.looksharp.net (cc360882-a.strhg1.mi.home.com [24.2.221.22]) by hub.freebsd.org (Postfix) with ESMTP id A73BE37B503; Mon, 2 Oct 2000 15:21:28 -0700 (PDT) Received: from localhost (bsdx@localhost) by turtle.looksharp.net (8.9.3/8.9.3) with ESMTP id SAA34847; Mon, 2 Oct 2000 18:21:54 -0400 (EDT) (envelope-from bsdx@looksharp.net) Date: Mon, 2 Oct 2000 18:21:54 -0400 (EDT) From: Adam To: Ade Lovett Cc: ports@FreeBSD.org Subject: Re: cant get sane port to build In-Reply-To: <20001002100339.G15530@FreeBSD.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org How can this be? I just did a completely fresh install of the machine, cvsupped and built -stable, cvsupped ports from scratch, installed gimp1 port, and typed make install clean in xsane? Contents of /var/db/pkg: Mesa-3.2.1_1 jpeg-6b XFree86-3.3.6_1 libaudiofile-0.1.9 aalib-1.2 libtool-1.3.4_1 autoconf-2.13 m4-1.4 automake-1.4 mpeg_lib-1.3.1 avifile-0.48 nasm-0.98 bsdi-netscape-navigator-4.75 netscape-remote-1.0 bzip2-1.0.1 netscape-wrapper-2000.07.07 cvsup-bin-16.1 png-1.0.8_1 esound-0.2.19 qt-2.2.0_1 gettext-0.10.35 sdl-devel-1.1.5 gimp-1.1.26 svgalib-1.4.2 glib-1.2.8 tiff-3.5.5 gmake-3.79.1 unzip-5.41 gtk-1.2.8 xmix-2.1 icewm-1.0.4 xpm-3.4k On Mon, 2 Oct 2000, Ade Lovett wrote: >On Sun, Oct 01, 2000 at 07:20:01PM -0400, Adam wrote: >> Hello, I have tried this on 5-current just past SMPng as well as a fresh >> reinstall of the computer today with 4.1-release upgraded to 4.1.1-stable >> with mergemaster and all new ports. I still get the compile bomb on >> sane, logfile attached. Curious as to why the package building logs on >> bento only show xsane broken but not sane, which it depends on and >> actually does seem broken. Any help would be appreciated, thanks. >> >> [snip] > > >> cc -c -DHAVE_CONFIG_H -I. -I. -I../include -I../include -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 - >> I/usr/local/include -I/usr/X11R6/include -I/usr/local/include -D_GNU_SOURCE -DPATH_SANE_CONFIG_DIR=/usr/local/etc/sane.d -DP >> ATH_SANE_DATA_DIR=/usr/local/share -DV_MAJOR=1 -DV_MINOR=0 -O -pipe -W -Wall -DSCSIBUFFERSIZE=131072 xscanimage.c >> xscanimage.c:63: syntax error before `GParam' >> xscanimage.c:66: syntax error before `PLUG_IN_INFO' > > >That looks very much like you've got a version of glib/gtk < 1.2.8 > >I've just rebuilt the port here on my RELENG_4 box (9/28) and it >builds just fine, just like bento. > >-aDe > >-- >Ade Lovett, Austin, TX. ade@FreeBSD.org >FreeBSD: The Power to Serve http://www.FreeBSD.org/ > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 17:15:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hecky.it.northwestern.edu (hecky.acns.nwu.edu [129.105.16.51]) by hub.freebsd.org (Postfix) with ESMTP id DD0A237B66C; Mon, 2 Oct 2000 17:15:07 -0700 (PDT) Received: (from mailnull@localhost) by hecky.it.northwestern.edu (8.8.7/8.8.7) id TAA27365; Mon, 2 Oct 2000 19:15:06 -0500 (CDT) Received: from confusion.net (dhcp089155.res-hall.nwu.edu [199.74.89.155]) by hecky.acns.nwu.edu via smap (V2.0) id xma027289; Mon, 2 Oct 00 19:14:41 -0500 Message-ID: <39D924D1.DA491E02@confusion.net> Date: Mon, 02 Oct 2000 19:14:09 -0500 From: Laurence Berland X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org, stable@freebsd.org Subject: KDE2 fails to compile in strangest possible way Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org All, Trying to compile KDE 4.1 on a somewhat recent 4.1-STABLE yields some strange results. All appears to be going well, until it begins compiling the file mcopidl.cc. The precise line is c++ -DHAVE_CONFIG_H -I. -I. -I../.. -I,,.,,.dcop -I../../kdecore -I../../kdeui -I../../kssl -I/usr/X11R6/include/qt2 -I/usr/X11R6/include -I/usr/local/include -I./../mcop -I/usr/local/include -I/usr/local/include -O -pipe -frtti -c mcopidl.cc It doesn't fail per se, but it's been working on this for at least 7 hours, with no sign of anything happening, though the activity lights are flashing. Top shows some activity involving this process, and it does seem to be using a large and oft-varied amount of memory (~50-70 MB). Just for reference the machine is a PPro 200 with 32 MB ram, 128MB swap, running a generic kernel. Anyone know how long this is gonna take? Thanks in advance, -- Laurence Berland Intern, Flooz.com Northwestern '04 stuyman@confusion.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 17:56: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 34E0837B66C; Mon, 2 Oct 2000 17:55:57 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 39B5818FD; Mon, 2 Oct 2000 19:55:59 -0500 (EST) Date: Mon, 2 Oct 2000 19:55:59 -0500 From: Will Andrews To: Laurence Berland Cc: ports@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Re: KDE2 fails to compile in strangest possible way Message-ID: <20001002195559.J613@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Laurence Berland , ports@FreeBSD.ORG, stable@FreeBSD.ORG References: <39D924D1.DA491E02@confusion.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39D924D1.DA491E02@confusion.net>; from stuyman@confusion.net on Mon, Oct 02, 2000 at 07:14:09PM -0500 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Oct 02, 2000 at 07:14:09PM -0500, Laurence Berland wrote: > Trying to compile KDE 4.1 on a somewhat recent 4.1-STABLE yields some > strange results. All appears to be going well, until it begins > compiling the file mcopidl.cc. The precise line is You mean KDE 1.94? > c++ -DHAVE_CONFIG_H -I. -I. -I../.. -I,,.,,.dcop -I../../kdecore > -I../../kdeui -I../../kssl -I/usr/X11R6/include/qt2 -I/usr/X11R6/include > -I/usr/local/include -I./../mcop -I/usr/local/include > -I/usr/local/include -O -pipe -frtti -c mcopidl.cc mcopidl.cc is a huge file. If you run low on swap, it may take forever or close to that. I recommend at least 200MB of memory minimum to compile the entire suite (including physical and swap). > MB). Just for reference the machine is a PPro 200 with 32 MB ram, 128MB > swap, running a generic kernel. Yeah, that's the bottleneck. For your system I suggest using packages. Unfortunately, mcopidl.cc obviously needs to be broken up, but hasn't. For reference, I have a dual PIII-500 w/ 512MB of memory, and the new box I'm building will have a dual PIII-600E w/ 640MB. The former takes approximately 5 hours to build the entire suite. -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 18: 1:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mass.osd.bsdi.com (adsl-63-202-176-106.dsl.snfc21.pacbell.net [63.202.176.106]) by hub.freebsd.org (Postfix) with ESMTP id 9651937B66E; Mon, 2 Oct 2000 18:01:46 -0700 (PDT) Received: from mass.osd.bsdi.com (localhost [127.0.0.1]) by mass.osd.bsdi.com (8.11.0/8.9.3) with ESMTP id e9313Oh04055; Mon, 2 Oct 2000 18:03:24 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Message-Id: <200010030103.e9313Oh04055@mass.osd.bsdi.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Will Andrews Cc: ports@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Re: KDE2 fails to compile in strangest possible way In-reply-to: Your message of "Mon, 02 Oct 2000 19:55:59 CDT." <20001002195559.J613@puck.firepipe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 02 Oct 2000 18:03:24 -0700 From: Mike Smith Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > For reference, I have a dual PIII-500 w/ 512MB of memory, and the new > box I'm building will have a dual PIII-600E w/ 640MB. The former takes > approximately 5 hours to build the entire suite. Have you ever tried going beyond that and actually run it? Is it meant to work? Specifically, startup is kinda flaky, kwrited starts and can't be (easily) killed, and konsole never starts a shell and dies after a few seconds. Aside from that, it's nice candy. 8) -- ... every activity meets with opposition, everyone who acts has his rivals and unfortunately opponents also. But not because people want to be opponents, rather because the tasks and relationships force people to take different points of view. [Dr. Fritz Todt] V I C T O R Y N O T V E N G E A N C E To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 18: 2:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hecky.it.northwestern.edu (hecky.acns.nwu.edu [129.105.16.51]) by hub.freebsd.org (Postfix) with ESMTP id 357FC37B502; Mon, 2 Oct 2000 18:02:26 -0700 (PDT) Received: (from mailnull@localhost) by hecky.it.northwestern.edu (8.8.7/8.8.7) id UAA14888; Mon, 2 Oct 2000 20:02:21 -0500 (CDT) Received: from confusion.net (dhcp089155.res-hall.nwu.edu [199.74.89.155]) by hecky.acns.nwu.edu via smap (V2.0) id xma014791; Mon, 2 Oct 00 20:02:04 -0500 Message-ID: <39D92FED.C129C748@confusion.net> Date: Mon, 02 Oct 2000 20:01:33 -0500 From: Laurence Berland X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Will Andrews Cc: ports@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Re: KDE2 fails to compile in strangest possible way References: <39D924D1.DA491E02@confusion.net> <20001002195559.J613@puck.firepipe.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Will Andrews wrote: > > On Mon, Oct 02, 2000 at 07:14:09PM -0500, Laurence Berland wrote: > > Trying to compile KDE 4.1 on a somewhat recent 4.1-STABLE yields some > > strange results. All appears to be going well, until it begins > > compiling the file mcopidl.cc. The precise line is > > You mean KDE 1.94? Yes, silly me...I need more sleep > > > c++ -DHAVE_CONFIG_H -I. -I. -I../.. -I,,.,,.dcop -I../../kdecore > > -I../../kdeui -I../../kssl -I/usr/X11R6/include/qt2 -I/usr/X11R6/include > > -I/usr/local/include -I./../mcop -I/usr/local/include > > -I/usr/local/include -O -pipe -frtti -c mcopidl.cc > > mcopidl.cc is a huge file. If you run low on swap, it may take forever > or close to that. I recommend at least 200MB of memory minimum to > compile the entire suite (including physical and swap). Unfortunately I can't get any more memory or swap right now, but I am perfectly content to wait long periods of time. I'm just glad I don't need the box just yet. > > > MB). Just for reference the machine is a PPro 200 with 32 MB ram, 128MB > > swap, running a generic kernel. > > Yeah, that's the bottleneck. For your system I suggest using packages. > Unfortunately, mcopidl.cc obviously needs to be broken up, but hasn't. I like ports...so I'll wait the days this may take. FWIW I don't see all of the swap being used, so it's not a serious issue, it'll just take a long long time I guess. THis was more to sanity check than anything else. Assuming it eventually finishes, which I guess it will, I guess I'm set. I'm just too used to the boxes at work, where huge amounts of memory and processing is standard. Oh, the joys of college computing... > > For reference, I have a dual PIII-500 w/ 512MB of memory, and the new > box I'm building will have a dual PIII-600E w/ 640MB. The former takes > approximately 5 hours to build the entire suite. Yeah, I guess I can probably expect it to take 2 or 3 days, not that I mind waiting... Thanks for your help, Laurence > > -- > Will Andrews - Physics Computer Network wench > The Universal Answer to All Problems - "It has something to do with physics." > -- Comic on door of Room 240, Physics Building, Purdue University > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- Laurence Berland Intern, Flooz.com Northwestern '04 stuyman@confusion.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 18:12: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E72E37B502; Mon, 2 Oct 2000 18:12:02 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA52657; Mon, 2 Oct 2000 18:12:01 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Mon, 2 Oct 2000 18:12:01 -0700 (PDT) From: Message-Id: <200010030112.SAA52657@freefall.freebsd.org> To: KATO@FreeBSD.ORG, Tsuguru@FreeBSD.ORG, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21572: Update port: biology/clustalw Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: biology/clustalw State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Mon Oct 2 18:10:44 PDT 2000 State-Changed-Why: Bumped PORTREVISION to 1 Commited. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21572 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 18:35:29 2000 Delivered-To: freebsd-ports@freebsd.org Received: from resstor.ndsu.nodak.edu (resstor.ndsu.NoDak.edu [134.129.111.204]) by hub.freebsd.org (Postfix) with ESMTP id 943B137B66C for ; Mon, 2 Oct 2000 18:35:26 -0700 (PDT) Received: from ndsu.nodak.edu (marathon.reed.ndsu.NoDak.edu [134.129.54.1]) by resstor.ndsu.nodak.edu (8.9.3/8.9.3) with ESMTP id UAA05041 for ; Mon, 2 Oct 2000 20:35:20 -0500 Message-ID: <39D937C2.787EA1BD@ndsu.nodak.edu> Date: Mon, 02 Oct 2000 20:34:58 -0500 From: Jeff Blaufuss X-Mailer: Mozilla 4.73 [en] (X11; I; FreeBSD 4.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: gopher port Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org when I try to make the gopher port, I get this error: ===> Extracting for gopher-2.3 >> Checksum mismatch for gopher2_3.tar.gz. Make sure the Makefile and md5 file (/usr/ports/net/gopher/files/md5) are up to date. If you are absolutely sure you want to override this "check, type make NO_CHECKSUM=yes [other args]". *** Error code 1 Stop in /usr/ports/net/gopher. *** Error code 1 Stop in /usr/ports/net/gopher. *** Error code 1 Stop in /usr/ports/net/gopher. *** Error code 1 Stop in /usr/ports/net/gopher. *** Error code 1 Stop in /usr/ports/net/gopher. *** Error code 1 Stop in /usr/ports/net/gopher. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 19:19:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 7BB0337B66C; Mon, 2 Oct 2000 19:19:41 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 8AE9D18FD; Mon, 2 Oct 2000 21:19:42 -0500 (EST) Date: Mon, 2 Oct 2000 21:19:42 -0500 From: Will Andrews To: Mike Smith Cc: Will Andrews , ports@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Re: KDE2 fails to compile in strangest possible way Message-ID: <20001002211942.K613@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Mike Smith , ports@FreeBSD.ORG, stable@FreeBSD.ORG References: <20001002195559.J613@puck.firepipe.net> <200010030103.e9313Oh04055@mass.osd.bsdi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010030103.e9313Oh04055@mass.osd.bsdi.com>; from msmith@FreeBSD.ORG on Mon, Oct 02, 2000 at 06:03:24PM -0700 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Oct 02, 2000 at 06:03:24PM -0700, Mike Smith wrote: > Have you ever tried going beyond that and actually run it? Is it meant > to work? Specifically, startup is kinda flaky, kwrited starts and can't > be (easily) killed, and konsole never starts a shell and dies after a few > seconds. Yes. I've tested it to some extent. Kwrited has problems, that's for sure... I don't use konsole though (kvt seems to be its usual self). Because of its current state, I've delayed deployment on heavy-traffic user workstations at Physics. I'm hoping they will fix the issues by the release time. > Aside from that, it's nice candy. 8) It certainly is. :) -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 19:24:30 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mass.osd.bsdi.com (adsl-63-202-176-106.dsl.snfc21.pacbell.net [63.202.176.106]) by hub.freebsd.org (Postfix) with ESMTP id 5FE7437B502; Mon, 2 Oct 2000 19:24:26 -0700 (PDT) Received: from mass.osd.bsdi.com (localhost [127.0.0.1]) by mass.osd.bsdi.com (8.11.0/8.9.3) with ESMTP id e932Q4h04320; Mon, 2 Oct 2000 19:26:04 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Message-Id: <200010030226.e932Q4h04320@mass.osd.bsdi.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Will Andrews Cc: ports@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Re: KDE2 fails to compile in strangest possible way In-reply-to: Your message of "Mon, 02 Oct 2000 21:19:42 CDT." <20001002211942.K613@puck.firepipe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 02 Oct 2000 19:26:04 -0700 From: Mike Smith Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > On Mon, Oct 02, 2000 at 06:03:24PM -0700, Mike Smith wrote: > > Have you ever tried going beyond that and actually run it? Is it meant > > to work? Specifically, startup is kinda flaky, kwrited starts and can't > > be (easily) killed, and konsole never starts a shell and dies after a few > > seconds. > > Yes. I've tested it to some extent. Kwrited has problems, that's for > sure... I don't use konsole though (kvt seems to be its usual self). It does? It's not part of KDE2 to the best of my ability to tell. 8) -- ... every activity meets with opposition, everyone who acts has his rivals and unfortunately opponents also. But not because people want to be opponents, rather because the tasks and relationships force people to take different points of view. [Dr. Fritz Todt] V I C T O R Y N O T V E N G E A N C E To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 19:33: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 7C49937B503; Mon, 2 Oct 2000 19:33:01 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id A074018FD; Mon, 2 Oct 2000 21:32:59 -0500 (EST) Date: Mon, 2 Oct 2000 21:32:59 -0500 From: Will Andrews To: Mike Smith Cc: Will Andrews , ports@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Re: KDE2 fails to compile in strangest possible way Message-ID: <20001002213259.A41798@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Mike Smith , ports@FreeBSD.ORG, stable@FreeBSD.ORG References: <20001002211942.K613@puck.firepipe.net> <200010030226.e932Q4h04320@mass.osd.bsdi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010030226.e932Q4h04320@mass.osd.bsdi.com>; from msmith@FreeBSD.ORG on Mon, Oct 02, 2000 at 07:26:04PM -0700 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Oct 02, 2000 at 07:26:04PM -0700, Mike Smith wrote: > It does? It's not part of KDE2 to the best of my ability to tell. 8) Dang... they're on to me. ;-) -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 20: 0: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DBBB437B503 for ; Mon, 2 Oct 2000 20:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA10979; Mon, 2 Oct 2000 20:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id B95BB37B66E; Mon, 2 Oct 2000 19:54:09 -0700 (PDT) Message-Id: <20001003025409.B95BB37B66E@hub.freebsd.org> Date: Mon, 2 Oct 2000 19:54:09 -0700 (PDT) From: wolfieee@wolf.dyns.cx To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21714: audio problem with nil Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21714 >Category: ports >Synopsis: audio problem with nil >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 20:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Michael Joyner >Release: 4.1 >Organization: me myself and i >Environment: FreeBSD host100.wolf.dyns.cx 4.1-RELEASE FreeBSD 4.1-RELEASE #0: Mon Sep 4 20:44:51 EDT 2000 root@:/usr/src/sys/compile/psychomouse i386 >Description: eh? S: debug: Sound system initialized, mixing 8138 channels at -1077937108Hz. have tried SDL_AUDIODRIVER=esd, SDL_AUDIODRIVER=dsp, SDL_AUDIODRIVER=dma >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 21:22:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ebola.biohz.net (ebola.biohz.net [206.80.1.35]) by hub.freebsd.org (Postfix) with ESMTP id 150BF37B502; Mon, 2 Oct 2000 21:22:40 -0700 (PDT) Received: from flu (localhost [127.0.0.1]) by ebola.biohz.net (Postfix) with SMTP id 585F93A2C9; Mon, 2 Oct 2000 21:22:34 -0700 (PDT) Message-ID: <00f101c02cf1$8ddbb2e0$0302010a@biohz.net> From: "Renaud Waldura" To: Cc: Subject: Problem Building ImageMagick Port Date: Mon, 2 Oct 2000 21:22:34 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm trying to build ImageMagick version 5.2.3 on FreeBSD 4.0 and it chokes on: ltconfig: unrecognized option `--build=i386--freebsd4.0' Any ideas? [snip] checking for object suffix... (cached) o checking for /usr/libexec/elf/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognise dependant libraries... (cached) pass_all checking for ranlib... (cached) ranlib checking for strip... (cached) strip updating cache ./config.cache ltconfig: unrecognized option `--build=i386--freebsd4.0' Try `ltconfig --help' for more information. configure: error: libtool configure failed ===> Script "configure" failed: here are the contents of "config.log" This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. configure:654: checking host system type configure:675: checking target system type configure:693: checking build system type configure:718: checking whether build environment is sane configure:773: checking for a BSD compatible install configure:860: checking for mawk [snip] --Renaud To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 22:20: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1465B37B66C for ; Mon, 2 Oct 2000 22:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA02466; Mon, 2 Oct 2000 22:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ganja.nubisci.net (ikhala.tcimet.net [198.109.166.215]) by hub.freebsd.org (Postfix) with ESMTP id C5B2A37B675 for ; Mon, 2 Oct 2000 22:12:59 -0700 (PDT) Received: (from dervish@localhost) by ganja.nubisci.net (8.11.0/8.11.0) id e935Cxf11168; Tue, 3 Oct 2000 01:12:59 -0400 (EDT) (envelope-from dervish) Message-Id: <200010030512.e935Cxf11168@ganja.nubisci.net> Date: Tue, 3 Oct 2000 01:12:59 -0400 (EDT) From: bush doctor To: bugs@ganja.nubisci.net X-Send-Pr-Version: 3.113 Subject: ports/21718: XFree86-4 (4.0.1) server does not start for Mach64 based video adapters Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21718 >Category: ports >Synopsis: XFree86-4 (4.0.1) server does not start for Mach64 based video adapter >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 22:20:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: bush doctor >Release: unknown-1.0 >Organization: NubiSci Software Labs >Environment: System: FreeBSD ganja.nubisci.net 5.0-CURRENT FreeBSD 5.0-CURRENT #52: Fri Sep 29 01:26:54 EDT 2000 root@ganja.nubisci.net:/usr/src/sys/compile/GANJA i386 >Description: XFree86-4 (4.0.1) server will fail to start for users of Mach64 based video adapters. Server will fail with the following diagnostic in /var/log/XFree86.0.log: "INVALID IO ALLOCATION" (or "Unsupported XCLK source" on ATI Mach64"). >How-To-Repeat: Type startx or XFree86 after building and installing the XFree86-4 port. >Fix: Apply the following patch retrived from XFree86.org (changed to diff -urN) http://www.xfree86.org/pipermail/newbie/2000-September/001134.html --- programs/Xserver/hw/xfree86/common/xf86pciBus.c.orig Tue Jun 20 21:23:12 2000 +++ programs/Xserver/hw/xfree86/common/xf86pciBus.c Wed Sep 27 21:13:47 2000 @@ -1207,10 +1207,8 @@ (*p_size)++; (*p_base) = H2B(tag,range.rBegin,type); -#ifdef DEBUG ErrorF("New PCI res %i base: 0x%lx, size: 0x%lx, type %s\n", res_n,(*p_base),(1 << (*p_size)),type | ResMem ? "Mem" : "Io"); -#endif if (res_n != 0xff) { pciWriteLong(tag,PCI_CMD_BASE_REG + res_n * sizeof(CARD32), @@ -1724,7 +1722,6 @@ resPtr tmp, avoid = NULL; if (!pvp->validate) continue; - avoid = xf86DupResList(pciAvoidRes); NonSys = xf86DupResList(Sys); m = n; while ((pvp1 = xf86PciVideoInfo[m++])) { >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 22:30: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D9A9B37B503 for ; Mon, 2 Oct 2000 22:30:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA08970; Mon, 2 Oct 2000 22:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from modemcable101.200-201-24.mtl.mc.videotron.ca (modemcable140.61-201-24.mtl.mc.videotron.ca [24.201.61.140]) by hub.freebsd.org (Postfix) with SMTP id 46DCC37B503 for ; Mon, 2 Oct 2000 22:22:30 -0700 (PDT) Received: (qmail 34504 invoked by alias); 3 Oct 2000 05:22:29 -0000 Received: (qmail 34500 invoked from network); 3 Oct 2000 05:22:29 -0000 Received: from nitro.local.mindstep.com (qmailr@192.168.10.2) by jacuzzi.local.mindstep.com with SMTP; 3 Oct 2000 05:22:29 -0000 Received: (qmail 37717 invoked by uid 0); 3 Oct 2000 05:26:08 -0000 Message-Id: <20001003052608.37716.qmail@nitro.local.mindstep.com> Date: 3 Oct 2000 05:26:08 -0000 From: patrick@mindstep.com Reply-To: patrick@mindstep.com To: freefall-gnats@mindstep.com X-Send-Pr-Version: 3.2 Subject: ports/21719: New Port: Courier Mail Suite Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21719 >Category: ports >Synopsis: New Port: Courier Mail Suite >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 22:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Patrick Bihan-Faou >Release: FreeBSD 4.1-STABLE i386 >Organization: MindStep Corporation >Environment: n/a >Description: This is a port for the Courier mail system. This package is a full features mail suite with a SMTP server, a POP3 and an IMAP server, a webmail application and a mailing list manager. >How-To-Repeat: n/a >Fix: begin 644 courier.tgz M'XL(`"QMV3D``^P]:W?BMK;]&GZ%RM`S21/`-A@(,YF53,*DK"8A"YC;TW5Z M+F-L`6[\JFWRN-/Y[W=OR4_>R6283FNM!-O2UI:T)>V7+%FUIZY.W?)W7S"0 MJE"79?(=(6)=EI+7,`B$U,5:3:K5JE49DB5!EKXC\I>L5!BFGJ^XA'SG*+ZK MJS=+X=:E?Z-!#?I_I!O4^T*C8//^EV$`5""Y(LJ5K/^W$=+];VI?@N:B(-2J MPHK^K\N\_^%/%B7L_YHH?D>$+U"7N?`/[__+,YGL!H.@*)2D1@G(41K_WQXY M(H)&&W)#'1TV:%VH5!N">J@)HEJO*=6*I#:TW->N?!8^.Z3G?_!4,GV7TF+_LE2#&%D2MCW_7=OV5\']3>=_V:,^\1\<>J3I+IE: MBDF/AKI%QM&=:6OT"`5XKI3;"09(;E&V("W(&CZ%V87KXIJ(;(]LMS:<[U%6I!=/14!X2R4^C?X+<4"'5 MUV\IN^7E)>D#?U][9&9A&R'D_Y?*#449\"7*6*/_U:N5A/TGUIC^)\B9_K>- M\()9_6MU>NW-UM(/::.[TI-\Z[W3;K=[1#G))HCNWM=SE2:_?Z@YZ M[3[&%SXFG@>]SOON:>M=IWO>^I1+);Q_>];NQH5!8ONJ#_\MB`RZ]]C4+N?7%P,^B=0 M8/]H1[=@0!E&T0-\3BY7TD?D>WJO>[ZW6YYZ;EFW5&.JT;+M4,OSC+*N4:4T MV_M'^T4SZXZ@_99ZR17HI:FCP(<&O2'1;5=++_=NVY=7.RQA%WL MJEUZ[[O`T/?(GW^ROMN%]JB3^%&UK9$^GKHTCAI.=4.+'LEN4/$]0/NV==Z^ M:N9VC@L?6Z<_=0:7O?-/)/_CDT-^#A7YU9X25;&(HFF$6LH0AIKG4,,@ZH2J M-[HUQI%'_`DE=W3(.IZ%1:AT"V3:2%$I&3X0D(L^YH[)5"*+PR)4_8GND3L= MJ@&E`T(L/Z"+PN:%/2(ZKR>07O?AP7KI+ZD5RT8U\D#]$FG'&3VB&#"#M(<8 MYH`\`#V6U4JSL1"+`B[?1C*I^N@!Z@:8;`>KM;B)BU`],2Q"U;I73,>@3?); MG@V@XEE,\[!EO^4W0_89(RN8)"5J>/1;GA"]].@'#30<^'>Z/PD'#Y\JVA^JGL`WT=UU;+/"UB51&S'``[A*S% M(M;>GOI%9>I/#$UQR&^@9::CS0?O#R,1SR(=Q9R-4MWY..=.FXWR)HIFW\W& M:@HU80+/Q$X]ZFK#(-9Q@'T$[NZUW[7]_"J*]!P]'"RC:<5(9;(+06@[` M-,57TC!0$9?.0!FVJA@PKD!^IF#34*Q^V/E8OZ,E:6/7GCHSB7Q\%.\4]T:! M9)!E1>!D1=U4G*)JZ&!)%(?3L1=66?<8.-J^13;TTFBFEJZ"^3"#FPX=Q?.. M+#L=/_%]QT.A>B4>@>6C6"HUP(8KB0PLJ*9IF.D(W_"""`WJ`'6%JFMQ#)#K M)GC")@/-<&XF8US;B1YO*'1"XLG4S1`6^M8`^1D\04?;+F9//5N:5"#(&KJI+`S4S7$@(,MO,?:_Q'=W]"TN9N(1^N8>HF8B0UJF*;9`&LE MXU,&<1P=VM)>$I;/[C""`VDJ-#>*8G5-Q`!V(]4R)%C8&&\Z-/40,H6;/SAW MI09TT$7[ZN?>T>R`AJ?TZ$Z,L>10C#LV9'E!&>D$SLY6)&D+TY`#+TQ@/'AA MBK.D!L!Y%\9S]KLP*46S=-*M.KEQPEP+!FLB:F:D1MW%;U3?*"T:R6P\P*U% M]?%D:+L+QXES)Z7'3#*15S$"R.5:_^YW3P9GG5/H[9/W_9\ZW1[+];9U=?K3 MY4GW9_YXVKG^M7UUSN_!&AK3"WO,G@+;@=U?M7[AX-W6R=EEB]WV.V<=&%#] M;JLU>->^:*&I@UJ]OESXB#+)&695T!`NF3=O_C'>KY`T3#W^0BO`\?HO6>3_)XGUWTI%K.+Z?UVL;WG]]Q_J M_Y_M?W8M*LISEK%F_4>2:_6@_R51%.%>K%:E2K;^LXU0+!9))#5*MJN/=R[! M3.JH/G0,D82F(#8%B7OW]O?W8]AY,*G&P8Z/25&2J_)!@^RS:XT<'^?("Y3S M-N8G8(+`D=Y971/4&&VA[^3 MH3;$BSK6"5H=HDBLJ0FZ!/'L^SL7;$Q3DPD\3TQ%):YB@18I2@T2FC/N2&U( M$EY$H2+C51*J+`.:&R30N$E@&P9Z"KE3=!^O_@2=-W@7&!P$M6>"FB0)-7N" M>I:B:2[HHT,P&R);/IAN>6@:(Q.,^8,ZD*E6$P(R:;9%L>$193Q79:8BOZXF M&>3SL?TO79,41R[Y0-6)3?*A]TGXDLBPD`0Y1QI==[QMC6$^@%T MS3[<5(/&8?!M)VQ3O@"-`<78*\RT-D]>O4)HZBDJ#A-"5#`/2+XPV_@\:`>8 M_)]RX;\_[I&8)/.`@!$`9X'2I<\`L^*+K")(1^;W1N<,RXD$S6,:H_5,7#1- M!KKE3/VC_#FUJ(M6/YL%)N`!8\]X("/7-H-N"A%`EC^1Y"^]'TH_EG_XX>4' M=&S&DS3/R7LH20>B`.0]%)/D94U\0;H4/9:WE`#?FI1RD:2%,F!*#50%N#TK M+4&&.#*D/PG[8'T/\+!Q/T15W;PW$M4A4>78^':GEH7]4OC(_4^#WD^MBXMB M>:A;H`%^8I1EK0YI.!\S4-RQ1XI%1H,B(TQACE:0'L[&("T8KF%U7I#^A!)Z MJQB,.7@$C6:L&6"?FF"V>N3.=F_^0HNK2^3_\#G+6"?_A8H8RW]\%P3DOY#) M_ZT$+O_Y&%BG!U0/DWK`3)Y9<*DIU&-]H%*M5U#0L>L6!=T$[&@2>@+0-8"] M[4,DJU2MSB44W-0R"?7<$JIR*(A,0E4:AW(FH3()E86_7E@B_]7G+&.=_)?0 MYQ/*_RJW_\5MO_^3R?]R\';@&CU`:E8:\WK`7-[Y;'+"/R`>-I@^P*Y;T`>B MM0&27C68^*9!XM4L?$1.F5@&8A#X(YF*57*,0,R5)H^VC)G5)HH-;A2+8CU3 M.9[=**Y4`Z.X4JEE*D>F%+>5Z1&C9O:>)/)O>B;!,@F6A:V$)?)_])QEK);_HE`5HO7?FE05F/RO5#/YOXV0]/^&4K.D6XL\ MOV*U*5?G/;^)7#,9I%I3.(PE?Z-:/1`;9#^X(H??*>R:-\$KQ_B:UQXI[)ZU M>OVS=G>OL!MOO-D#T&-#]_RCEU$T>_5W[^4KME'086\)%Q#D%6@4;-67X!X] ME.HHSR`;XVU[Y4+!>84;^W`O4'$GYKH`DGRI>"^=95G%,"W_*D+U9!R(8O]9 M:E/RV+Z\?(SQ1-S$`5W8O>IT+T\N!N^O@D)QG#]NF"/9N,:V`9G6`J::$S;@!=\6"S!4 M]6WWX:47O)7)'G50"Q1004S;\PW%,:*C=`R=F^CY*#=R.7 M52R$`Q1L&!Y?GK0OSKJ=ZV/R9EF>\$U1Z)?/+3;H-,#TZ-+#K&0GYI.+<_!- M?GQ-##7`?_V+6TH"G[N\:+;!:GFI,SB@PD_)MGF=@TUE98CSJ9FN,@R1Y6PQ MW(T6=`!KX,YFI6"C-@3=O"'QYK:R1D?*U/`?T9C$SKB-VC-?V,HVS8//M.O[ M52UC^[EP9K)&P/1<#>;[M'Q6!Y-C:+G&1M3A`$_%U40V49M0L"UU'D4 MMIA*\Q(:C'X&S/:(,G%Y<37H[9%P^^A*X!)6*MC`4([WAKHJ$Y-<)N/"C(0R MF=\PF8RZQ@AUC<3>7#*W*Y?$VR/Y!"'1=GKHDFBK9'KC)&&*RP)-)*Q[H3#B M"%YQUV!Q`5%6\-]UX`O8V[HLG"NL@TIH`:L!^?3:""H8:H\A0*P-/)8.F^9, ML;EUP/-*R@;-?A3P8R?0BJ''>V8]".L6-GMD0]_U&K MX#V^_UG/_'_;"$G_GVEK4X.6-,]:YPJ4&DUAP4N@BQ',Y*TTHHTD[)6]>H5Y M!8-KYA7,O(*95_`;\`KZRMAKDO[)>>^?+D*_Z;!$_D^>LXPU\E^N5,/UOTI5 MDOGZGY3M_]A*6"#_F3MVM08@-BMR$WIMF08PAV(V]\S;H0V9Z0#!-=,!,AT@ MTP&^+1T`IS$>9B+)9#^X/FYU;\EI^(_%,'=>_B:>9WXP8+!`N`9H=?+L2N(> M*9H$A5^0O,8CS*&2:X)/0A![4%83+_!+)3TMA5T\QQ02!KW3;ONZW]M;Z5M) M>6VCI2CNH>:HHM05V0)W%3IY7IENVIH9!WBQ?$61C!8]'9$>:8M8)2!Y2 M$X0UXRO.L__DXF*WUJ-+G5WRNR-XD"P.O-1B*G"L.XL&*+E6GKH??-_G:"O9?/"RQ__3G+&.M_U<4 M8O]O\/ZG6,OLOVV$!?8?X[;K/,#52A,L]67VWQR*V=QRLR(F=P=R'W!PS>R_ MS/[+[+]OR_[[VGPL"T\+2^3_[\]9QB/V?]8JM<#_F\G_K80%\A]/R5\K_F7X M6RK^9S',9JXU*YGW-Y/^F?3/I'\6OFY8(O^?5;':K%82;WK5&OQ-+W[-Y'PFYS,Y_PW(^6?9__FU M^5P6%H"*LGS(/`@*/;+SH%*+Y>2H_C0WAS!Y='!=;=SWCVYQ*34*;YXI!*_ MXXNHD)[>'!-4+;>_$FJF(3D202=+C@X+1M88@-KJ#?4CE,DOO,9E?^V.7A*6 MS'_S.<&[GXNRS^:L M-^7$5T%$D9T!+@8<(%9&CO+'\<-Q/D?2GTW.'Z>>$2#-`8[RA8_QU/X45BV? MY@"S4#,-R8?S6U'QZ+$@0URO"&V9`P"\HVO!(60?4S7\5/9-IYQB6B6`S7_] M_6=+YK_UG&6L/?^_+L3S']\%S][_WEI8?/[_[!'YRQ@!R/3:LB/H=".8D:779><-"N#7SIN36XC'#:1)``(S7(EL M$YR+>%8A&$]@KL:63*[X&C\(^.8XY@+'8>U?EUE2B;`S\#AH$K4ZP M[!G6&+8+ZJ-#$:KMNM1S;&#"@)UU%?0%],[CNB,UO@C[LE,`EMM?C&R#OEB! M%.IMFHJEA?3![T!ZFS<><[I3RR/TED)[B>/:8U9C&07 MG!`PYB?2&_85Z-=EN(/GJ?$&#Y1\;>AOUA*0%!/#(SER2J^'+M!M*9K%I%N# MCO'W\.YU&3"SF[B$!52+,9NZIU+#4"QJ3[WHQ%`8DK;UM<7FWR8LD?_VK70$5]AI`9;D"L!C1+(Y:LRK$&@#G=Q&["[[[ MWN[UP;B.\17Q,[\.:M%&,I;>,_\EQ.;(V_?MB_Z@UWG?/6W%WH3(5B]-2(## M,4J3K;H0CN,:#U`(,*[.17Z(--PY\<7Y7#3_;\9?Y-OO&.+OOX?S?MGWWVM2 M5<;SWZ5:1=KR]]_7S>^_Z?Q/]O]IY_*R==5_]C(8_Q>6][\8^7\`3,+^K]2W MSO__H?W_#K<^,<7-H^XM:KQ3W0?+0O:?<+E+%F_HN5:GC^3TV4\5O08D46A&S^;R.@ MX7O*QP!G`[ZK6-X(GI0Q[BCDD,\N@JYD.N`-:R`@6V-#7H0.B6@(@=D M!+8RY9\;R+5],G;I';&G/O-7H$6M&`1W_6+MH!J_@RGM'?!:F=0=0ZQOCZD_ M`9TQEPM;C'8\Y1\R8,R.WD-9'MB7'EMN3]82'BP@"0)C"W*>`Z9[?&991$1< M[QY-+16M5*)$='--JNE0.4XYMCWY(,Y9TKWT5-&=(\,@=;8.,7P[+#`8,C8Q*!C17T( MRT:Z4%;.'=COK![.`U@/$Y^(AX>-(BK[Y.S_V[O6W[9Q)/[9^BNTN7S:7=N) MFP?010[U)FX2G%O[DA2]Q?5P423:UD6O2G*=8M'__6;XT),BZ>)N@3N(0&*) M\^.0'%+4#!^C>(N3!LN4N#Z*''I+Y(YLR_KX\>-K>Y/GR>NQ4*A'&?RZ!$JW M)B,0P=BRAO:2/9'VK_[&B89OG7C[L\V?TCK-.XVU2WH:Q M1^RCL]/34PN_/@//OTN",%M;/!U*322B_C6+%,?'-$7A9-(HHXG(")-]-DMS MSI,D,)KZ$9&5K)'B1!2.N02EG]7AWG1%:H@3B>DE2UB(@?'+@\RLB"(=.WE> MX1`&(;WEPRE^7L=A$7$.@]W.23UQ&\3N,[UF3DH+V?HI>N'E]\_$<_+B.O1# M1D@)'==Y7=F=H.%FOO`%5QJVAHT$NIF552K!MT/0J'++AJ%@.*N*GV$6D6WB M'3M-8BAC[`8%*SR`$A%XX3S%*6=8];U*(YA77^/VJ]:X=L,=!52CBVX4DE4W:"4T37GRV5TU>5)&5OZ]ZV(A7I@%O)@9:L(1+AH M+EN`S;FS^RJ-72<[=E?S[ZQ^@K"5^(19S2^U"\J=E)!TQ>\\:7R]$/K>)WB( M]R#MA*`T/.%0(B?BJE@'C;PD+4+A%]JXJW5P8!U6081N!))N`K"OR2E\O,`I M2+/"G9V=M)FPAU3\CHR?_7-)304S]"`JY)9%WR\YP8_Y(V/#KP:SQ0W-AHUU M(NM!;7YT$?'[NV2=8774V0-J6"-5H[!#_:)9V!O+#$QO.J'TM""/Q.OOEU2V M?0I]0TE+VXXQ")_1<91$C]AM"`EJ6D23@3@4P7_-!\/FTDFYS;`+42XB6&^@ MO&EH-\;#9K3D(=-!6"_3@%CK:D"L8968+G(A2SE9K+7(R88#&Z@T)"]Y=KBC MJ4+X-S"BE2":9712STCNN]^0U4F=%12721*G*V1%%H^NC`:=P4,%@GBC_$6: MFB'PH5=B5M!4:@`\4=P,VQ/&4@%1;4'B.<0(HBG/?)7H'4KNU&[CW41JA\^:*=2%"?PG`3>A?!BR)Y`[Y=!FB[\:[3" MR[>"RF323:>#AH*.XX6,7/OX1)N@J'7W!R^J*#[8-!GQP:6"E$257RCKHI6# M7'NT:;D^[$*V7!Q*@(U!44+BFY-DB(KI8&X0;IR4-/*HJ(+=]G0](;>1VG', M6*K%"W/7W(2K)>>_N$^9*6AULK#<6EDVC+,6O6&EM>AUJ$ MFB57(U5,NEJ\-%)JQNF5,(F$1%G6K)GVWSM5()-T^ MTHDI-YXT,-EGH?SA^)H1)W4WG1"<;_)A`.I&N`%Q(OJM9LS*3*4%C4#:Q\,@ M!.,G].'-^7E+0#G(PU;Q*U"T^O'-J(%Y_AIX&0!7,+AL3#`&O#8D2#00WWMA M*L2$;CDV!.^#155!"^6ZA08(+9>2?SW%WE1$#SG50U*2Q&DNU%8S],;;!WJ\!]9`,@56)Z)MI&\,BM%E2D&Z MW%#+/F8=,S.!&G2Y`JE3EN(<:")(V0!43FP98G'%*D!*2.JM\^,5)@0PZG?\,>@WN)QVBEDB? MJ9>FXM2=%&J8F"04TU6J@C&;4`=05G_C9_2$A`+"S%\5(/+(BQI`S\BH(7D: MJP"@W,?;7(GPHV=E/V0FL@Y`#1&MZ"M+A08P;9\NI@?N9M.K=S,CJ`%&W2P" M95A;0*Z])^40(W"YGRA;@JY&JP$-NU`+UK\#N'FK@]3,31T85WUUF-KT@@9; M^;:T!LFL2B6J8L:J<87YIX3Q]2@%I+3JE"@ZL:0"L(T'*@A875LEH%BAUX,T M32AV,B@QN9-OE:+)\G3KYMM4+4"V7*)"5'<7J'#Z[B&6G!E&JL%QJ'H"H&TD MES8W,AB3:+C-QI M!][>@O\`XPKRO.*>W57.4DE'F2+C5;BH[(KL/ZD,)AE%R1E(#1 M8B[2)`4]:S]T%+O0L7WI$-F=*B7L\*UQ*CSZNT_M]\X@2T@0N)MGQ7`G2Z=C M;<*IDX?XZC)[CM;^R@PY,8=F9E!F)9E#8>@R0F^#0,Q/&,`#LC)BBS@C&;#N M;@!,21)\-0:B*6."Q?W9QD"C"N6IDVT84M/O6`(-JI$=:@73#P\WB[M[">77 MV?O+FW?3N[_(B)>+Y6^W[Z]EE(T3KQL9M+A]F3[X/!WFM6W`WORY^)3?LPIK348,*>P MO\5;VPE08_MJ;YPOQ'8XBT]%\D\'/]M9;-_:.S\(\+24#68M%`8]W@*?2KZ. MY]DBE3U@FD)Q1-@;:S-=U*-:*(!_9C:,5RM?`O_ MA#30+BZ$0>6]IRPH@T\BL9$D,`D3!$UC#[#$P1[]QC_"/ MD@_]1YI?0"X>G^!9XI&V^'@>$/]N#R$*$HP/$6?_`S^EYR:(*F,MYIVW7C[Y M;`C_2J7S4VK_2*T)^,&)?*PMR1RW?XGWH0]]Z$,?^M"'/O2A#WWH0Q_Z\/\> *_@UQ5(#[`/```*T) ` end >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 23:12: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from pm1.contactor.se (gw.contactor.se [193.15.23.130]) by hub.freebsd.org (Postfix) with ESMTP id 8634937B502; Mon, 2 Oct 2000 23:12:00 -0700 (PDT) Received: from localhost (dast@localhost) by pm1.contactor.se (8.9.3/8.9.1) with ESMTP id IAA16883; Tue, 3 Oct 2000 08:16:05 +0200 (MET DST) X-Authentication-Warning: pm1.contactor.se: dast owned process doing -bs Date: Tue, 3 Oct 2000 08:16:05 +0200 (MET DST) From: Daniel Stenberg X-Sender: dast@pm1.contactor.se To: kris@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD port: curl-7.2.1 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi I couldn't help noticing the curl 7.2.1 information on http://www.freebsd.org/cgi/ports.cgi?query=curl&stype=all ... it says it requires "autoconf-2.13, automake-1.4, m4-1.4". It really doesn't. It only requires those packages if you want to modify the makefiles or the configure script, which most of the people who download curl have no intention of doing. If you *are* going to list what software that's needed to develop the software, surely autoconf-2.13 and m4-1.4 should be present on almost every package you have listed in the ports section. And more, curl 7.3 is out. Thanks for doing a good job! -- Daniel Stenberg -- curl project maintainer -- http://curl.haxx.se/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 23:24:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E98B037B503; Mon, 2 Oct 2000 23:24:33 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA43351; Mon, 2 Oct 2000 23:24:33 -0700 (PDT) (envelope-from kris@FreeBSD.org) Date: Mon, 2 Oct 2000 23:24:33 -0700 From: Kris Kennaway To: Daniel Stenberg Cc: kris@FreeBSD.org, ports@FreeBSD.org Subject: Re: FreeBSD port: curl-7.2.1 Message-ID: <20001002232433.A42050@freefall.freebsd.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from daniel@haxx.se on Tue, Oct 03, 2000 at 08:16:05AM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Oct 03, 2000 at 08:16:05AM +0200, Daniel Stenberg wrote: > Hi > > I couldn't help noticing the curl 7.2.1 information on > > http://www.freebsd.org/cgi/ports.cgi?query=curl&stype=all > > ... it says it requires "autoconf-2.13, automake-1.4, m4-1.4". It really > doesn't. It only requires those packages if you want to modify the makefiles > or the configure script, which most of the people who download curl have no > intention of doing. I believe the port patches the configure script and needs autoconf in order to rebuild them. The m4 is a second-level dependency of those ports. > If you *are* going to list what software that's needed to develop the > software, surely autoconf-2.13 and m4-1.4 should be present on almost every > package you have listed in the ports section. Only those where we need to regenerate the configure.in stuff, etc. > And more, curl 7.3 is out. Yep, thanks - someone else submitted this a few days ago, but I havent yet had time to upgrade it. > Thanks for doing a good job! Thanks for the feedback! Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 23:40:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A12D237B66C for ; Mon, 2 Oct 2000 23:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA50615; Mon, 2 Oct 2000 23:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from wartch.sapros.com (rularan.sapros.com [204.182.55.17]) by hub.freebsd.org (Postfix) with ESMTP id 031C637B502 for ; Mon, 2 Oct 2000 23:37:21 -0700 (PDT) Received: (from peterh@localhost) by wartch.sapros.com (8.11.0/8.9.3) id e936aLG30393; Mon, 2 Oct 2000 23:36:21 -0700 (PDT) (envelope-from peterh) Message-Id: <200010030636.e936aLG30393@wartch.sapros.com> Date: Mon, 2 Oct 2000 23:36:21 -0700 (PDT) From: peterh@sapros.com Reply-To: peterh@sapros.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21720: Update port to use ADNS. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21720 >Category: ports >Synopsis: Update port to use ADNS. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 02 23:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Peter Haight >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: >Description: - Update to use ADNS New files: patches/patch-ab patches/patch-ac >How-To-Repeat: >Fix: diff -ruN gale.bak/Makefile gale/Makefile --- gale.bak/Makefile Fri Sep 22 04:39:18 2000 +++ gale/Makefile Mon Oct 2 23:22:11 2000 @@ -13,8 +13,9 @@ MAINTAINER= peterh@sapros.com BUILD_DEPENDS= ${LOCALBASE}/lib/libgc.a:${PORTSDIR}/devel/boehm-gc -LIB_DEPENDS= wwwcore.1:${PORTSDIR}/www/libwww -LIB_DEPENDS= rsaref.2:${PORTSDIR}/security/rsaref +LIB_DEPENDS= wwwcore.1:${PORTSDIR}/www/libwww \ + adns.1:${PORTSDIR}/net/adns \ + rsaref.2:${PORTSDIR}/security/rsaref GNU_CONFIGURE= yes diff -ruN gale.bak/patches/patch-ab gale/patches/patch-ab --- gale.bak/patches/patch-ab Wed Dec 31 16:00:00 1969 +++ gale/patches/patch-ab Mon Oct 2 23:25:38 2000 @@ -0,0 +1,345 @@ +--- configure.orig Mon Oct 2 23:25:16 2000 ++++ configure Mon Oct 2 23:25:19 2000 +@@ -2626,22 +2626,65 @@ + GALE_LIBS="$GALE_LIBS -lrsaref" + fi + ++echo $ac_n "checking for res_init in -lresolv""... $ac_c" 1>&6 ++echo "configure:2631: checking for res_init in -lresolv" >&5 ++ac_lib_var=`echo resolv'_'res_init | sed 'y%./+-%__p_%'` ++if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ ac_save_LIBS="$LIBS" ++LIBS="-lresolv $LIBS" ++cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++ rm -rf conftest* ++ eval "ac_cv_lib_$ac_lib_var=yes" ++else ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ eval "ac_cv_lib_$ac_lib_var=no" ++fi ++rm -f conftest* ++LIBS="$ac_save_LIBS" ++ ++fi ++if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then ++ echo "$ac_t""yes" 1>&6 ++ ++ RESOLV_LIBS="-lresolv" ++ ++else ++ echo "$ac_t""no" 1>&6 ++fi ++ ++ + echo $ac_n "checking for local copy of liboop""... $ac_c" 1>&6 +-echo "configure:2631: checking for local copy of liboop" >&5 ++echo "configure:2674: checking for local copy of liboop" >&5 + if test -f "${srcdir}/liboop/oop.h"; then + echo "$ac_t""yes" 1>&6 + CPPFLAGS="-I\${top_srcdir}/liboop $CPPFLAGS" + build_liboop=true + echo $ac_n "checking for adns_init in -ladns""... $ac_c" 1>&6 +-echo "configure:2637: checking for adns_init in -ladns" >&5 ++echo "configure:2680: checking for adns_init in -ladns" >&5 + ac_lib_var=`echo adns'_'adns_init | sed 'y%./+-%__p_%'` + if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + ac_save_LIBS="$LIBS" +-LIBS="-ladns -lresolv $LIBS" ++LIBS="-ladns $RESOLV_LIBS $LIBS" + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:2699: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=yes" + else +@@ -2668,7 +2711,7 @@ + if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then + echo "$ac_t""yes" 1>&6 + +- GALE_LIBS="$GALE_LIBS \${top_builddir}/liboop/liboop-adns.la -ladns -lresolv" ++ GALE_LIBS="$GALE_LIBS \${top_builddir}/liboop/liboop-adns.la -ladns ${RESOLV_LIBS}" + cat >> confdefs.h <<\EOF + #define HAVE_ADNS 1 + EOF +@@ -2683,7 +2726,7 @@ + else + echo "$ac_t""no" 1>&6 + echo $ac_n "checking for oop_sys_new in -loop""... $ac_c" 1>&6 +-echo "configure:2687: checking for oop_sys_new in -loop" >&5 ++echo "configure:2730: checking for oop_sys_new in -loop" >&5 + ac_lib_var=`echo oop'_'oop_sys_new | sed 'y%./+-%__p_%'` + if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +@@ -2691,7 +2734,7 @@ + ac_save_LIBS="$LIBS" + LIBS="-loop $LIBS" + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:2749: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=yes" + else +@@ -2726,7 +2769,7 @@ + fi + + echo $ac_n "checking for adns_init in -ladns""... $ac_c" 1>&6 +-echo "configure:2730: checking for adns_init in -ladns" >&5 ++echo "configure:2773: checking for adns_init in -ladns" >&5 + ac_lib_var=`echo adns'_'adns_init | sed 'y%./+-%__p_%'` + if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +@@ -2734,7 +2777,7 @@ + ac_save_LIBS="$LIBS" + LIBS="-ladns -lresolv $LIBS" + cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++if { (eval echo configure:2792: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=yes" + else +@@ -2776,7 +2819,7 @@ + fi + + echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 +-echo "configure:2780: checking how to run the C preprocessor" >&5 ++echo "configure:2823: checking how to run the C preprocessor" >&5 + # On Suns, sometimes $CPP names a directory. + if test -n "$CPP" && test -d "$CPP"; then + CPP= +@@ -2791,13 +2834,13 @@ + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. + cat > conftest.$ac_ext < + Syntax Error + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:2801: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:2844: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + : +@@ -2808,13 +2851,13 @@ + rm -rf conftest* + CPP="${CC-cc} -E -traditional-cpp" + cat > conftest.$ac_ext < + Syntax Error + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:2818: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:2861: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + : +@@ -2825,13 +2868,13 @@ + rm -rf conftest* + CPP="${CC-cc} -nologo -E" + cat > conftest.$ac_ext < + Syntax Error + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:2835: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:2878: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + : +@@ -2859,17 +2902,17 @@ + do + ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` + echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 +-echo "configure:2863: checking for $ac_hdr" >&5 ++echo "configure:2906: checking for $ac_hdr" >&5 + if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext < + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:2873: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:2916: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + rm -rf conftest* +@@ -2901,17 +2944,17 @@ + do + ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` + echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 +-echo "configure:2905: checking for $ac_hdr" >&5 ++echo "configure:2948: checking for $ac_hdr" >&5 + if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext < + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:2915: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:2958: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + rm -rf conftest* +@@ -2946,17 +2989,17 @@ + do + ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` + echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 +-echo "configure:2950: checking for $ac_hdr" >&5 ++echo "configure:2993: checking for $ac_hdr" >&5 + if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + cat > conftest.$ac_ext < + EOF + ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" +-{ (eval echo configure:2960: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ++{ (eval echo configure:3003: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } + ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` + if test -z "$ac_err"; then + rm -rf conftest* +@@ -2987,7 +3030,7 @@ + fi + + echo $ac_n "checking size of int""... $ac_c" 1>&6 +-echo "configure:2991: checking size of int" >&5 ++echo "configure:3034: checking size of int" >&5 + if eval "test \"`echo '$''{'ac_cv_sizeof_int'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else +@@ -2995,7 +3038,7 @@ + { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } + else + cat > conftest.$ac_ext < + main() +@@ -3006,7 +3049,7 @@ + exit(0); + } + EOF +-if { (eval echo configure:3010: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null ++if { (eval echo configure:3053: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null + then + ac_cv_sizeof_int=`cat conftestval` + else +@@ -3026,7 +3069,7 @@ + + + echo $ac_n "checking size of short""... $ac_c" 1>&6 +-echo "configure:3030: checking size of short" >&5 ++echo "configure:3073: checking size of short" >&5 + if eval "test \"`echo '$''{'ac_cv_sizeof_short'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else +@@ -3034,7 +3077,7 @@ + { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } + else + cat > conftest.$ac_ext < + main() +@@ -3045,7 +3088,7 @@ + exit(0); + } + EOF +-if { (eval echo configure:3049: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null ++if { (eval echo configure:3092: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null + then + ac_cv_sizeof_short=`cat conftestval` + else +@@ -3065,7 +3108,7 @@ + + + echo $ac_n "checking size of long""... $ac_c" 1>&6 +-echo "configure:3069: checking size of long" >&5 ++echo "configure:3112: checking size of long" >&5 + if eval "test \"`echo '$''{'ac_cv_sizeof_long'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else +@@ -3073,7 +3116,7 @@ + { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } + else + cat > conftest.$ac_ext < + main() +@@ -3084,7 +3127,7 @@ + exit(0); + } + EOF +-if { (eval echo configure:3088: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null ++if { (eval echo configure:3131: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null + then + ac_cv_sizeof_long=`cat conftestval` + else diff -ruN gale.bak/patches/patch-ac gale/patches/patch-ac --- gale.bak/patches/patch-ac Wed Dec 31 16:00:00 1969 +++ gale/patches/patch-ac Mon Oct 2 23:25:07 2000 @@ -0,0 +1,24 @@ +--- configure.in.orig Thu Jul 13 17:42:14 2000 ++++ configure.in Mon Oct 2 23:24:49 2000 +@@ -174,15 +174,19 @@ + GALE_LIBS="$GALE_LIBS -lrsaref" + fi + ++AC_CHECK_LIB(resolv,res_init,[ ++ RESOLV_LIBS="-lresolv" ++]) ++ + AC_MSG_CHECKING([for local copy of liboop]) + if test -f "${srcdir}/liboop/oop.h"; then + AC_MSG_RESULT(yes) + CPPFLAGS="-I\${top_srcdir}/liboop $CPPFLAGS" + build_liboop=true + AC_CHECK_LIB(adns,adns_init,[ +- GALE_LIBS="$GALE_LIBS \${top_builddir}/liboop/liboop-adns.la -ladns -lresolv" ++ GALE_LIBS="$GALE_LIBS \${top_builddir}/liboop/liboop-adns.la -ladns ${RESOLV_LIBS}" + AC_DEFINE(HAVE_ADNS) +- ],[:],-lresolv) ++ ],[:],$RESOLV_LIBS) + GALE_LIBS="$GALE_LIBS \${top_builddir}/liboop/liboop.la" + else + AC_MSG_RESULT(no) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Oct 2 23:41:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from 2711.dynacom.net (2711.dynacom.net [206.107.213.3]) by hub.freebsd.org (Postfix) with ESMTP id CB89537B66E for ; Mon, 2 Oct 2000 23:41:41 -0700 (PDT) Received: from urx.com (dsl1-160.dynacom.net [206.159.132.160]) by 2711.dynacom.net (Build 101 8.9.3/NT-8.9.3) with ESMTP id XAA02896; Mon, 02 Oct 2000 23:41:33 -0700 Message-ID: <39D97F9C.AE8C08D7@urx.com> Date: Mon, 02 Oct 2000 23:41:32 -0700 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Mario Sergio Fujikawa Ferreira Cc: FreeBSD-PORTS Subject: Errors trying to build JX-1.5.3 and CodeCrusader References: <5.0.0.25.2.20000927014222.0360ee40@pop.mindspring.com> <20000927233709.B357@Fedaykin.here> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I saw your updates to the make files and tried to make JX-1.5.3. I cd'ed into x11-toolkits/jx to do the make. I can basically reproduce the build errors by doing a make clean and then tell it to do a make. In the past, I tried starting with CodeCrusader and doing the make there. That was never even close to being successful. I could get a working version of jcc by building the pieces manually but the port system wasn't working. The current make has errors at various places and the first one I saw was the following: gmake[2]: Entering directory `/usr/ports/x11-toolkits/jx/work/JX-1.5.3/lib/util/autodoc' c++ -O -pipe -march=i686 -Wall -Wno-unused -fno-implicit-templates -fno-rtti -D_J_UNIX -D_J_ARR AY_NEW_OVERRIDABLE -DSIZEOF_LONG=4 -DSIZEOF_INT=4 -Werror -I- -I. -I../../../include/jcore -c -o autodoc.o autodoc.cc gmake[2]: *** No rule to make target `../../../lib/libjcore-1_5_3.so', needed by `autodoc'. Sto p. gmake[2]: Leaving directory `/usr/ports/x11-toolkits/jx/work/JX-1.5.3/lib/util/autodoc' gmake[2]: Entering directory `/usr/ports/x11-toolkits/jx/work/JX-1.5.3/programs/jxlayout' The next one stopped the make and the error messages are the following: gmake[2]: Leaving directory `/usr/ports/x11-toolkits/jx/work/JX-1.5.3/misc/regex' c++ -O -pipe -march=i686 -Wall -Wno-unused -fno-implicit-templates -fno-rtti -D_J_UNIX -D_J_ARR AY_NEW_OVERRIDABLE -DSIZEOF_LONG=4 -DSIZEOF_INT=4 -Werror -fPIC -I- -I./code -I/usr/ports/x11- toolkits/ACE/ACE_wrappers -I../misc/gif -I../misc/png -c -o code/JACETemplates.o code/JACETempl ates.cc code/JMessageProtocol.tmpl: In method `void JMessageProtocol::SendMessage(const JCharacter *, long unsigned int)': code/JMessageProtocol.tmpl:342: instantiated from `JMessageProtocol::SendMess age(const JString &)' code/instantiate_template.h:42: instantiated from here code/JMessageProtocol.tmpl:371: no method `ACE::writev' code/JMessageProtocol.tmpl: In method `void JMessageProtocol::TranslateAndSend( const JCharacter *, long unsigned int, const JCharacter *, long unsigned int)': code/JMessageProtocol.tmpl:432: instantiated from `JMessageProtocol::Translat eFromUNIXAndSend(const JString &)' code/instantiate_template.h:42: instantiated from here code/JMessageProtocol.tmpl:627: no method `ACE::writev' code/JMessageProtocol.tmpl: In method `void JMessageProtocol::SendMessage(cons t JCharacter *, long unsigned int)': code/JMessageProtocol.tmpl:342: instantiated from `JMessageProtocol::SendMes sage(const JString &)' code/instantiate_template.h:42: instantiated from here code/JMessageProtocol.tmpl:371: no method `ACE::writev' code/JMessageProtocol.tmpl: In method `void JMessageProtocol::TranslateAndSend (const JCharacter *, long unsigned int, const JCharacter *, long unsigned int)': code/JMessageProtocol.tmpl:432: instantiated from `JMessageProtocol::Transla teFromUNIXAndSend(const JString &)' code/instantiate_template.h:42: instantiated from here code/JMessageProtocol.tmpl:627: no method `ACE::writev' gmake[1]: *** [code/JACETemplates.o] Error 1 gmake[1]: Leaving directory `/usr/ports/x11-toolkits/jx/work/JX-1.5.3/libjcore' gmake: *** [libs] Error 2 *** Error code 2 Stop in /usr/ports/x11-toolkits/jx. *** Error code 1 -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 0: 0:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 39E8E37B502 for ; Tue, 3 Oct 2000 00:00:07 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA62149; Tue, 3 Oct 2000 00:00:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 3 Oct 2000 00:00:07 -0700 (PDT) Message-Id: <200010030700.AAA62149@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: ports/21720: Update port to use ADNS. Reply-To: Peter Pentchev Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21720; it has been noted by GNATS. From: Peter Pentchev To: peterh@sapros.com Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/21720: Update port to use ADNS. Date: Tue, 3 Oct 2000 09:51:42 +0300 On Mon, Oct 02, 2000 at 11:36:21PM -0700, peterh@sapros.com wrote: > >Synopsis: Update port to use ADNS. [snip] > --- gale.bak/patches/patch-ab Wed Dec 31 16:00:00 1969 > +++ gale/patches/patch-ab Mon Oct 2 23:25:38 2000 > @@ -0,0 +1,345 @@ > +--- configure.orig Mon Oct 2 23:25:16 2000 > ++++ configure Mon Oct 2 23:25:19 2000 [snip 370+ lines of patch] Hmm wouldn't it be generally better, with ports using GNU configure scripts, to patch configure.in, define USE_AUTOCONF in the port Makefile, and have bsd.port.mk invoke autoconf to regenerate the configure script? G'luck, Peter -- I am the meaning of this sentence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 0:26:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from moon.harmonic.co.il (moon.harmonic.co.il [192.116.140.65]) by hub.freebsd.org (Postfix) with ESMTP id CEBEC37B502; Tue, 3 Oct 2000 00:26:24 -0700 (PDT) Received: (from nobody@localhost) by moon.harmonic.co.il (8.9.3/8.9.3) id JAA07353; Tue, 3 Oct 2000 09:25:32 +0200 To: Laurence Berland Subject: Re: KDE2 fails to compile in strangest possible way Message-ID: <970557932.39d989ec5eece@webmail.harmonic.co.il> Date: Tue, 03 Oct 2000 09:25:32 +0200 (IST) From: Roman Shterenzon Cc: ports@FreeBSD.ORG, stable@FreeBSD.ORG References: <39D924D1.DA491E02@confusion.net> In-Reply-To: <39D924D1.DA491E02@confusion.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: IMP/PHP IMAP webmail program 2.2.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Quoting Laurence Berland : > All, > Trying to compile KDE 4.1 on a somewhat recent 4.1-STABLE yields some > strange results. All appears to be going well, until it begins > compiling the file mcopidl.cc. The precise line is > > c++ -DHAVE_CONFIG_H -I. -I. -I../.. -I,,.,,.dcop -I../../kdecore > -I../../kdeui -I../../kssl -I/usr/X11R6/include/qt2 -I/usr/X11R6/include > -I/usr/local/include -I./../mcop -I/usr/local/include > -I/usr/local/include -O -pipe -frtti -c mcopidl.cc > > It doesn't fail per se, but it's been working on this for at least 7 > hours, with no sign of anything happening, though the activity lights > are flashing. Top shows some activity involving this process, and it > does seem to be using a large and oft-varied amount of memory (~50-70 > MB). Just for reference the machine is a PPro 200 with 32 MB ram, 128MB > swap, running a generic kernel. > > Anyone know how long this is gonna take? I had this couple of times back on 3.3-STABLE I think. With some other app. Pressing ^D made it proceed. IMHO it has to deal with "-pipe" flag to cc. Try to omit the "-pipe" flag in /etc/make.conf and recompile. I don't like it though; it should work ok with the "-pipe" flag. I'm reading my mail sequentally, so it's possible that other people already answered it. Sorry for additional traffic I might have caused :) --Roman Shterenzon, UNIX System Administrator and Consultant [ Xpert UNIX Systems Ltd., Herzlia, Israel. Tel: +972-9-9522361 ] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 1:20:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A21C637B66E for ; Tue, 3 Oct 2000 01:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA09962; Tue, 3 Oct 2000 01:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freebsd.ntu.edu.tw (freebsd.ntu.edu.tw [140.112.1.3]) by hub.freebsd.org (Postfix) with SMTP id EB0B837B502 for ; Tue, 3 Oct 2000 01:19:32 -0700 (PDT) Received: (qmail 68900 invoked by uid 1000); 3 Oct 2000 08:12:41 -0000 Message-Id: <20001003081241.68899.qmail@freebsd.ntu.edu.tw> Date: 3 Oct 2000 08:12:41 -0000 From: woju@freebsd.ntu.edu.tw Reply-To: woju@freebsd.ntu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21721: ports/chinese/telnet update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21721 >Category: ports >Synopsis: ports update >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 03 01:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Wu Ching-hong >Release: FreeBSD 4.0-RELEASE i386 >Organization: National Taiwan University >Environment: >Description: Update ports to work more smoothly. news://freebsd.ntu.edu.tw/freebsd.taiwan.chat title -- Ports using FreeBSD /usr/src/usr.bin/telnet/ (zh-telnet) >How-To-Repeat: Please uudecode the attached data. >Fix: Please commit it and change the ports maintainer to leeym@caece.net Yen-Ming Lee [§õ«Û©ú] | http://cae.ce.ntu.edu.tw/~leeym/ CAE Group, Civil Engineering, NTU, Taipei, Taiwan Thanks a lot! begin 644 telnet.tgz M'XL(`%YMV#D``]0\:W?:2);]5?X5%7=/`D;B98PQ;O>$V"1A$V./P>ED,SD< M60C0!$NL).RXT_[O>Q]54DF`X^3TS-GEI`TJ5=VZ==^WZE;'[MQWXW(T^^G? M]ZE5J\U&0_PD1+U:W#;_A`R]K]880^[5FL]IL-J"#J,&G^9.H_AMQ M2C[+*+9#(7Z:N^[=]0/]'-O]3Z#SG_Z,O:NR#UO69;UB&'&8.F+SG(J1%/4ZNUJM;U[@))0W2J52GF8 MQFG@BS,G!ED1M5:[T6I7:]SY^7-AM5EZ'KOAB<5&+;N[5]6*P;1I7;X%_+2A0L0\>M M;%DGO4$&BY;URU<-C_LMJ_M^>-$Y'HX&ER_?'QGE>/K'5BF+PL_"#WQWJX2P M7O;>:DUB2YQV>OTA_->].#)PZN<30`K1]>.EQ'6KM%4:7!R?]*"+02R)0@>_ MRU>>+QF"?<:!Y7Z)0]N)VUNELC<1[A[@&0.P>JEEY+`,K7 MGW_;>HS4HC1%E>OQGL@W?$-NDW[&R]`3_[6;8G:P<&!+KAI M;UUR#U#,J_54V-_Q@BK,+,02%%85>__CMY4FO_TKTNZ_>]EYU^\==?'LV M?-V]^+TWZ!9%YZ(WP`Z]ONCT/XC?.Q\8W-GE4)R]%-!17`ZZ_+,W$(.SE\/? M.Q==4W3?=?NB]U)T3MX!H!/5^?QL,.@Q(M#$L`:7QZ_%2>>T\ZI;AJ6*'?HC M?I'&J"T>Q3/S1M3*;#PKU5:E"H1I2LY]=F_F@>A^68A?:$:P8@+^_>Q-_+$[ M$7//CYEN>U6DVU[=W&>Z_9SHX\3QXWEY]ALVD@8;E1UQ?-'YH*"5TKY1''K^ M5'9.6[VI;\_SK;"2\56^T8GO%BXU$E(M1*I96T7*#4,_X,&9=CM^6I%YEAVU/7=T-$<9O>X-S[#9BUM-]*YA:T>`&+O[&_\-I_3IJ>`#4!]KB` MA"F*IT_3EN@N>M=J%>4(??F(3,5;$#Y6!M?T95/#EGG&G]/.^]=G[([>=OOX MFN=;^UHT&[RH@UTDZ,&^T@YP$6[H"V<&D='.#E!AZL:%XF'Z!N1#=*ZOO.DR M6$;\!A"%2"KV''H9@9EW9B-[4@#>+\$HVN,QR,`D`'BVM\`1)1@D1SCV?*Z@ M"&0U+D@._"H5N'I0-^NHP]6#EGD@$;U/J$UCK:6/0@6.9Q[X4X&T&N'$!%NA MYP1^%,NU86O@?,8^(S\.%H7(+J*NP4=.KUZ+G?E"$&THTQZEVD9G9^][1U_&/'KC.3B M@QLO@KGGW!4`11,FBDS!#=C50/&&%T2!%>&&SO2"Q8M'*;&1C1);@C-W;]QY M\A0L8M^^=J6,&+".`D,01T=$0YI?$;6J^@%`8)RWB%QG!+B/)/+\9:(@SUU? M/C+]"#0-DW!)Z@QC`:N()X7MOT7_]+=-!3(.P:P&H$0\5LUOU>@1J6[0.@`) M6+[UF^U)7B)X*6/B[Z)W?GYQ-CP#HHNV]O"N26#DVK\)8Z0SD`"]:V;:DO4! M*5"$`3#SD7`T%9%-0=+%2YPF5$-*D9B)7T6U**G"R]].`6YOI`1^8W1.0)10 M)NJQJHL5Z=I_G[D@RY`F@22Y421>\N)#=V['8,X(`S&S%PL`98*-<9W/`A8) M"(1W%%(S&-L/XID;`L4$Q=M1Y%U!W@9CX06'$N*"D:Z960#)6'N"8\_>E$47 MHGI3*5J5AU=6M"6Q]&C7L\8S:_1U\\E*]"6V)X>;AMB>9BQM#R1#`<$&'@R- M,.UZ<2F"O"@+!X(B?ZKQXT#^8.A'$@J"55UN9YCS`GSQA-4$[4AV-GC!B"1F M"7$$K!AY6BF((C4^T75-S2R)6\M;1UW'=1%"!TET%[%?L,.I`Y8RG-X4,8J3 M9,760_G,%@=[?$37@U-;#'X*:1\P6U)]%L`3C-W!'YB,',J.:UP-^(#\6S>\ MH='10A^;=<:Q>[U0;S+QA7($-GEI"Q3$2(WUZ.Q\"#GT(&?#E?$H9M89A32_ M";_B,'1F[/?7X,*I>Q@L8[=0!`N)!I+FUOT8TG(1!G%`-N-0:]TP/'T?.O22 MD0%]!G>8Y8AS#5I,Q%888T2O?N,F@R*DQ!]B26?NPE!04>*&RZJ"M@*L-B@X MI-HPCA241ES]`1@6"CQ?\2EP+?&E\#OUHXITSDA&`+JSSBLE)!PQ>,,=\HGX MMRH'F`R"V^6O:@X8DH8-&2W3GHR2)QGZ*7V!$,UW'3!\I"PB\4M_[\PAY!C? MB:0#+EMZ*Z0F6G9<&46,M4:#DC[XJ!Q3&*3NRSB8!U.0Y2/2/&X%F!!=+UUJ MN$^\2!PZUXL"Z9`IMJUHNX@VIBI=)@ZT+%(Y42IAIT/5C*/Q!7('[$]BY!-.9@R]<>U> M`XZ%IU)UJHD64H.,J>AW&?W*W)Y&P+E.;]2_/.U>](XQ7\OUD9Y.\(_L2[0- MF$'!Z\'9\9L1Y!W=SBGU4=H&M%(*G2!-B"D!L]]DIGZ2J9DRDW$3Q&%Z",OXM:BOE3R%/D0@J9*6_*FY=6PI1>CWJ;XEG[6;&821UPP&H,2@J_$CXU85X]=J5>WS%;:HDV M]'_^C)55=9&63W.>:50D:(,Y#9LTL`1.#[:>D"O5PRPV,+3[K`$50OG<;>ZP MG9V.(S?9!\AN/=-A4CNC_-`D.8R5HX=\V%-ENJ[8B\WZSN:`X M;8T.*]*;3`)-CY4.*T:P\F7"W77H'W?Z9WW_-UB\L3,2\$L!)^7BV2A:5]`&$$3@U3*SC92?Z*='0B/33:R M`&.DT8-%/&DI"@O34HXGJ^F0/BP/Y..B^X^3E!T*DRP.:B4Z:T!#=\R:7X* M67.JK@I(PHQU00AVS`0BE_W!>?>8]EUT9D`#$SC9>R)/@.]J6F*&'RW+Y%TZ MMJU*8I+L*K/)PIG9JF%F^FAQG65HL8*BI:7CD+'D>N^4(+(_SZIRHQ?V6-); ML!@#-;W`SWB51?'PAY!-.!UY?ED=&90CE8>JG9I,ER20T/;15A9(J:*5-8/) MIDHBG.FQ3+((31A!77M]/#&!/*/?+?Y5R%J)@.7\FL5*Q1Z-U.J.<$MV3G"& MQ+3A0]%,MA@S@'%P435\VY1;O\U&&\QY"I<5'W#\?MN;`GFL[;7R(;MN?U>E M)T\V[*BS-$,7'F:L<$A1`FF.@6A^"Y#?%`UTICU?-,J[)A>3P#\[.=VD72\# M<^WKX,8%WM%F94S;7HG0F-2'V:VF',V]*(;$*F4)V+!I/..M2%PO3IQ#YI'3 M9=:V80)U<+YAAA\5G4>[6RG]:_F=TV/HR8XAQ^*-YL?(V!YI9"TR$3^TR7NO M&Q,E7&FRQS9D-6'CJ=-\C9]7TC4K<;-K.O`2%'=EHQT'GIP_,6'9+EF_2KOC M0"+<+I?:(O.9[=A9;&>5)I*V*3=GM("(FAXR)D(R*#V_:XLK<"`T".+^*SJ\A0H[_]^Q6\Z*L(.@!Q3"\\_PIA`_E),NW-3)4]!T[3$[5ED;90P.D$\P=V MA)&="/W7_S?AISIU5H+%5-E>&]EMBL2^U\Q*Q8%\`GKDS\_3GOA;`3.%"I0H M">#T@LC,%FGE[%SHF&QKQB!-B]=.GQ[%/33EVN-Z@*E%TCRIR-(F(4*6-J/A MV8`6\E7+8W+'S>?JN/DKE8-I8%]W!J-7W2'#D'$Z'ZC%040'IK1S*1+A@V9< M!^)0B*6Q@K8-MJI8E`AH M1_%='JHQN?-50+DS1,&'B(D^_7#,I@>)N.[5X*SV21E@JI&AO3,@#7T?\@GI M`[99+@K/"=5Y*7K';14,(M2-=M"B8PR:+DCF2PBKI+!:3`.I#.HRW,`X$8.X M!Z/2QP:ER=;1NK,F)";N0A3DZ4)ZSE`]5+]H/R1]2GHDY0]%W7ZIR5;%/MO" MJH^DKYM-O+'> MOFN)7]^-C^>@Z;B08OIVU0,8F2JA5'.1"JK6:#/,[!:#\B8,\P=JX53QU$H- M'-=*P/&[(D MB>;4BI+P.5>6M$D]);K)"(4OO;RU0[^PO=9D/B9\4XCKZ"GVL:[+V<1&=L*; M3.E!-N_;G"FOBY@N?1N+WV`9VHI"]SJ0N[8/Q5)(B2^%[4>!*#VL\VM#,V$D M)2QL[X=TB'BEI3LMD#C-5^!O@<*DY MITI2D-(Z&DIT5!2/%8S)Z1O:YLRY7G**K1TH*!N;&:DZ)BF%8Z*$V.A"JX7=A1=#L6.XO;0QD#[>[6J-BGL5\W:W5YR6,S6^A= M]XL7#^AJ0F'[F"GA!;YPL.-87-VA+W4A=254*86I)6,K._TSS'Z.7W=/6&^1 MO?H!Q*-(]-<0-U\R*.[EW0`9:KWNOCWO]4]`%C!NX_A-J?EV$D8V&TVS!23< MI^L`"04G1(]"Z.!-IV(*_?NS"QB&]:YTPT7?VH:P<&;[8Z`Y\-V.J(?Q\<+J\A"(^(9UR&BU:J;2P"/-]1YH^L/HO=,G11<9P9E4>!\X[2\#@.&(*! MTU,PFS$:ZAH/KLP.ISB)IV9A(F#,AT]CU_$6,S=,4364' ML7#_9VG/<0`?ER;QM:+/?M4\0/K4#LQ:,K1'H8?S8+E?(Q\`G&:,\N3^F7#L!<``V)Y/%E3 M:3V%M&D28X*(J!)(.2KM2=Y.NS.%=>5_&4)\!/,`.@H/.3:+C4AKKV_L^=)% MP2/*6="77T09X06";Q`F@5$%,0CGX=]*_PDV2D(-A0*KRN=SP-P-;40>!"24 MPZ*EX\`TD^6\G(`3I`-9.!8#0MFW,7^+[D!"OLC:$"!6,I#)8PK7HSIRM1.& M69(-/B:$"(_J5`-Q;?MWM*Z(I6?3$JH8);DZ(?BD58=%N?'SID*K)SQL1,*&59ERJ:A03\!!C-F"B`,WJSPJ4)$7@C0^WA4 MGZ[UDQLY"]K)X;J2]97_@J[+&%C"JCTA)WA#SX^9PYP3XQ,#3I]Q@D-9]&[H M9_[S*/S8:-!9?Z8=C^!KU7I#E$3G;>]5_\6'87?PZ1!"JO?OW_.9OL35N8ZF MLS$5!/'?[.:3,+OUQ> MPZ8>+A,@*>''79%8'H)*].36@M"N@UG&8VK^DP5F[I9%,DU=>S$,KX0=KF.C M5BNN>,)&(XL^+9,N+&`SQ@>DU?O5EEG?1:W>WS<;356:O"-LO#5E`\;[H)FQ M++M(];?,W2IJTQVR;]RBR55-^`L46LGT(`I`1OL963*,>B@)MA5_<\(\(8$F"=!)S2LH3P\ M+S;((YER&',NL)&FQZ(&%UOH14FD9LA8URPR!^<&<5]VHJ^U,!L-!ICMK78< MR3HE5\RRTZ(!T[9VP7#2?22VHFM$@;*N#5>HFHD`@IF3E1N2_:#\7DQD,OD. MWL7P]0@0W ML#:.U4U8XS/`D1%%)11XCS"4`K[#8X&R#=TIE=8R@_!).3'2F,`43^6,][OE M27FN3D=>9OKN^Q"J3N1_VSO6YD1NY'W%OT+!R1HRO(89GEYGSP:\\2TQ+F-G M<[>[Y8)AL"ECX&"(U[?9_>VG[M9KAL$/DKH/5RA9#!IU2VII6JWN5BLT1<-E MUOHPLP0JPSVL?E]9$8:8=8`>ZVJ>QC%)5/!&S_LI]WC4$AL\"Q4<&B]G')PD M17FZ*4&>F=0@S/9F^U`>5W?^;5:T+,EQC#9FR(F!9EJY#,$'BK4R'-R19AZJ M1YSR29@N9IXX0:#0`CLIXL!K]X]5@/J>?.W-9W$$PDX_GT)8/%1';*-T+T0! M0R-(=*B42.*O5:I*XB>B?>>MDEZ->BJ(^)]YLW0:6BPL!T"-&`\S(5N9Q(AU M?4)L:VQAA#S.$/0G7).>0OIA8`L*X_0?3$$:*G,(M2B9AS`"RAUGIO)GZ+):(@GG\U M;8FT%S!/=XI!=M.Q\EZ\Z3JZS,/L+X.<$1\"PE3Y2X(8$@'/3H&@`*[`',"( M%J%Z;D@*[4ZGVY+#M;*8)]1J;F&KXAL5VZ:U%-+A,029I&QGT4(H*_VJN`EG M(HJ=X,@4-2N7O*A6@<.EEE.P[8RCF#))("!0-/"L?@!*CULN:X`.D;0I?`N_ MF/4\6A/09"(4/P(RK_B6E`G93PS%1,%-'M^Y?/T3TP"9I20=;@7@/<7!56)_ MG*R_LC<@%7S*G"4+_QK5KA(;V%-_-$JOWS_P[ONS>"DR9@)%*;<.-*J.U\<0 MXR3EIXEG]G7,]ZDWTYEX*]9,?MIR':!.(?L3?%Z)\^2/"KFK$B&.VH\HDULG M9UQ.N^JT6Z=IN37(,MK4O#[@&T:Q^`J6(R04V1)R0WN1B$J;-2U84OVGG;-] ML('R-;K/Q=#[Z7S`>F.PJ/!?4A:E.HTFRF6^:CL@YO!7RW6530=[B?J4W&@* MA(+^E'A_R-MDP1S6]P.0==^(&O[Z3A(",4^Q+<1-1$7RQ6&O8O0^HKZ(F&'X MS^'2%3\IC6`1IC.L!9'3^#2X@A!Y(G!:./):H5HO%52X-DL7CHG0)L.Z8:"M MFH,!%^$OQKNR&/$^"UCGW91OJEX=L&_ML\-NM[K/?4+*4]2@.%JZY-XZ/4KOQQ7CE3>@=QM$W^NOB8S7WWE1]+W^ M)M'W^HF+FR7[1V_"F,WX!(!XA`5FURHR^I[C,*N0*:C8>Q248Y&[>4[H/548 MINQ*Z#TYV?`])L.LHZ*UK<2W4W:NOZ=VTPIQHIHKLM21/[_UQ_Y#FMG%O%W* MUQS29+\L%%Y_XU!X"5X'=:-:AFY4*RJ4A-KB1^/<+61LMACWFYV8<&[E/#J^ MR,!TPR?\<\+!4\(^.?N//I\N@Y">S7"34?WEU75/?KOZM7G2/3QJMW;(I1'C ML2TG^(OI[CX`A>>].]YTX+ZS$9=TEC,F@:DC([(*W?4>^G0R#J>?70)RVD57 M30MF!.;((#<_5,X`/OIA#+0'`V@\YAX5:TXG>VC$\-#D>^.S;_D<382YQS!P MK8+S1]R]B6MPG;\IYB6[9;#?.MN]YH\KQX MH50RL?`0\<:&LM;A(V9DBE]=J M_$])R,LK.HE+BKKS`WCUT7^@G]A1YT^G=[,@HTV:82%GR\ M@X\V?'3!LQV^_,9Z,*XJEH\''P/X\'%E^D0.V(CJX^1C\"%[R^8^9VB?0G&` MAOGL,?R=,(A9C0'"/Z'OMB5;X<+C,GS$M>?T.8TR\%%31!/92QO%=LT#9"$2 MA:D33Q)=R0IQS*J>['Y,SY]3H;6N0MDW)>[H5^7BU"E6"J%W93D9?4X;8L/: M^3.9]A8/$^\&24G?^?KU2=1/&9Q9P6-L:@!-FBR\Z5UD"CR"*+E:S$1I1IA: MK0!B^X;'1A!%P&`S\DX'T_N!36/F%4,B\ M2-P_Z4&Q&MI.LC:]%)C5#*?S^]Y\0$IHO7D'(4L`:"G6*8''I%TR^.U<1I9+ MX>'=NUE*L%2^;O%'2=`]BF.%;]C>MSU69Q&9&[MEQJB35L"L]/].>3>D#8?3 M43H*)*^BVGK7/NW6?ZOWO(%?'Q[?UL?U27T>U#\G0Z:.C498+J&8T3F[2"3/ MZDF<-D)+%7D>TL<]T72M`4RZY36]6-2A'PJ]ZA#4LT1QQ*@9CVRAQH=\*WC% M(7>*/7=/^#W$AC9XTGEBK[P.OKS.L8%)T"J`@EJ9]A\'S`$G(R9V'V*;`);F MT41M&`R$**:62N3_6LW4I-*9D,\EC,[P,0HHN(M&KEH[V=B-V)OI[MF>XQWPGW^GD"&PZ M1*D,*RKGEE5ID$,,EK,4%95V)&5(U`CYJ!L8G7B,)#^N12E`,)QA*OWD-'PC M9HJ.V,U"T*2%!=6?Y1@L&=Y7L)EH?BSULO`^2TNJ"CV[^%#YE($(P/-KX8FR M$#-0EZC%E&#*#(-1-']BTA83:6"-]$M.1?F!$Q0L"*D% MN1Q\G.REP050_9[OI<6,ZD_'D2@0=!8#"_H+KS?SQ2PPGE(^+$&1]1M/+T=! MY7DP^0T\VJ9+.%PD\.#96'!B8\'-?+J\1H?['KAP7NM"RI+ M8:4T>)`X6G#;C6JE=^$?ZJ05SFK.-E72Y7R9%-*[+[R:Q7^VPF67^.#9>>>M MNN0*1<'&_-`[/6+;YKGW9?-MJ7;8;!XDOO_2/CD2M(#+J?!7FQ<# M3M!N8IGL&`*W\3>)P3;![WN@>X/$_ M?^+E/./.(Z'.A+LHX)8N_@WU8IZV[BD.RCX"NX"^C^#&'?Y@`B(;_[(,1N-1 M,/(YODW8R'#-*SY\&1L9;L)&AD]KBFMA/A*UD888"7\!$5PR$FTC#7.24JWN MV"8G*9)\I,U;L2K2K'G08.%YB]'@`\1A2@*#T76M,7JAM/%<#*Z)H91W"OE: M*:DWLK$J6>EW[\+%1I9;E0<`G[JMR;AP:?UM2UG]B&\,%L'@49VN)&N-Z%HU M#423('CHYQ;75[?@V^% M&9CO4:?C@?XA+/]&G@[0*V."O1@:%69H@@,YHD%Z"4CPVAZ#_:@!`W_`&IW3 MB_-..[77V1-P@ET`V_+VHGMQ!AQ!!I7#H4V)!QG& MOUPUC]OD229:Q;J=-A@TPF`+/[CK+6Y3_&M_//5N4[`-9-]2]NO7$AW?GZ<% M)B2ZPF,9>.;P2$+(TJAUT=5J-8PH)Z_.HO;ID80FC@-PK9WR/V*;4+$+Z*=5 ML9V,ZZPZ:0OB-%L-\!LX.KQLTKZ1C,"5(KSN2L&!O_G0'+E5R@]?\$(PMNN& M@3"#`]7*42!M;;9K6%-VERDHR-%`T7Q52UP3BM5JN`F8P9BL)DH!@G*J;J0- MF*.@K)4'JI[51K"C4J4<;@1F,";KB8>JE"--QPQFH(N#LNU29*0HQ\`7!U9T M"I&QHAR-,&0L,BPR>!+/`]LKE]R7<#81#Y6"V98.>;*C0H8W&CXJI5R.K#5P M")/..GN`=G+-IO,!%^H9Q^<_0.0M8-!X2`$.(`I?PTJQ`FY05@6L6O(^"[K/ M9.;[I!C%GU@S.@DA\\"G"UPK<&O^!9SN(1T5V%?Z]H65*(^WE/*^L$J)XAA27`Q,,;( M`,$K6)5@*S2L^-9FU-NOZ(9O=4:]WJ&AE7GPWH35_L:B(`4FE#`+-EX&:1=< M):3(@"5\YPC?E,`5U94*Y0_I!-@)?^7!AV4\NO7Q)'^&9\`YYX#Y<*J'+OYZ M8\8Z$3'V%F/?GZ5*:3:<3^^$H`Q7Z^`Y3RX!>@$ZH%/XQ]CX\R_#AIB,L,," M0'M'&E$HB$8UE.-LVW&T<@9`0?JD<[[T$V/H>+]3B![PC$*)$/2\XP=F,2XX M>;T)Q-%A6?@!3LF=SE':P`".H:!U\?#@21;5R7W0K4:PK4$_"EWLPX%!#MP( MFE1*U\O%U73:9_*.H41B.)JKD[:BT88^::0B#PD'*0>/E=FVX7,F#@:)&'$B M-MD!:[WO7+:;1^U.XYVA;/)45='(O0J+5-::;JZ1`)3J7)`9%8G/V5;GF,_J M0,1,`1]VT.ZC']5W/(D8Z!*#0O%*>&;RMAZVKQH_'YYW4]J7"9^/%CTNL*<" M##`GR,DKO%MRXO5]".#`Z^9+J>DBOP'.'WE&:!P/<+5L38<@:`N3AU(+A@]Q M(GG'(W\20"P5509?B9ME,)C>3V@B"V?\:)`AQ2[$MSR2?JWNN]#(MTBK\UZ6>ZKMY>YYNM;N.<13.>VLO+X')IA\A^SG)IZZ(SU_[=]=W01WX[R3/^05%0ME)P>_=ZSK*81<>0RV4/BA.'3X M/PD)34+I#\]UB#NLDM4L.!/"56W`SZ M_*49+Z::0O?W]SG9T^G\.N]=C_+_7OKSA^QLGN,_WLSF!V6^1.]8[]^_K[.7 M0OUMF[9IF[9IF[9IF[9IF[9IF[9IF[9IF[9IF[9IF[9IF[9IF[9IF[9IF[9I -F_[GZ;\X"LIO`*```+9I ` end >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 4:41: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 76C9237B502; Tue, 3 Oct 2000 04:41:02 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA29664; Tue, 3 Oct 2000 04:41:02 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Tue, 3 Oct 2000 04:41:02 -0700 (PDT) From: Message-Id: <200010031141.EAA29664@freefall.freebsd.org> To: johann@egenetics.com, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21393: Update port: sysutils/lavaps Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: sysutils/lavaps State-Changed-From-To: open->feedback State-Changed-By: jeh State-Changed-When: Tue Oct 3 04:39:35 PDT 2000 State-Changed-Why: Has this been approved by the MAINTAINER (johnh@isi.edu) ? http://www.freebsd.org/cgi/query-pr.cgi?pr=21393 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 4:56:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from lists01.iafrica.com (lists01.iafrica.com [196.7.0.141]) by hub.freebsd.org (Postfix) with ESMTP id CEA4C37B502 for ; Tue, 3 Oct 2000 04:56:47 -0700 (PDT) Received: from nwl.fw.uunet.co.za ([196.31.2.162]) by lists01.iafrica.com with esmtp (Exim 3.12 #2) id 13gQgZ-0004ob-00; Tue, 03 Oct 2000 13:56:39 +0200 Received: (from nobody@localhost) by nwl.fw.uunet.co.za (8.8.8/8.6.9) id NAA26769; Tue, 3 Oct 2000 13:56:42 +0200 (SAST) Received: by nwl.fw.uunet.co.za via recvmail id 26559; Tue Oct 3 13:55:31 2000 Received: from sheldonh (helo=axl.fw.uunet.co.za) by axl.fw.uunet.co.za with local-esmtp (Exim 3.16 #1) id 13gQfT-0008KK-00; Tue, 03 Oct 2000 13:55:31 +0200 From: Sheldon Hearn To: frank@exit.com Cc: ports@freebsd.org Subject: Re: Plans to update p5-Apache-Session? In-reply-to: Your message of "Tue, 03 Oct 2000 11:56:51 +0200." <29217.970567011@axl.fw.uunet.co.za> Date: Tue, 03 Oct 2000 13:55:30 +0200 Message-ID: <32011.970574130@axl.fw.uunet.co.za> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 03 Oct 2000 11:56:51 +0200, Sheldon Hearn wrote: > Do you have any plans to update the FreeBSD port for p5-Apache-Session > from version 1.51 to version 1.53? Here's the patchset I'm using for the newer version of the port. Note that I've removed the unnecessary dependency on p5-Apache and have added the required dependency on p5-MD5. Ciao, Sheldon. Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Apache-Session/Makefile,v retrieving revision 1.4 diff -u -d -r1.4 Makefile --- Makefile 2000/06/17 02:37:07 1.4 +++ Makefile 2000/10/03 11:53:09 @@ -6,7 +6,7 @@ # PORTNAME= Apache-Session -PORTVERSION= 1.51 +PORTVERSION= 1.53 CATEGORIES= www perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Apache @@ -14,7 +14,7 @@ MAINTAINER= frank@exit.com -BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/mod_perl.pm:${PORTSDIR}/www/p5-Apache \ +BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/MD5.pm:${PORTSDIR}/security/p5-MD5 \ ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable USE_PERL5= yes @@ -34,12 +34,15 @@ Apache::Session::Postgres.3 \ Apache::Session::Serialize::Base64.3 \ Apache::Session::Serialize::Storable.3 \ + Apache::Session::Serialize::Sybase.3 \ Apache::Session::Serialize::UUEncode.3 \ Apache::Session::Store::DB_File.3 \ Apache::Session::Store::File.3 \ Apache::Session::Store::MySQL.3 \ Apache::Session::Store::Oracle.3 \ - Apache::Session::Store::Postgres.3 + Apache::Session::Store::Postgres.3 \ + Apache::Session::Store::Sybase.3 \ + Apache::Session::Sybase.3 do-configure: @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL Index: files/md5 =================================================================== RCS file: /home/ncvs/ports/www/p5-Apache-Session/files/md5,v retrieving revision 1.2 diff -u -d -r1.2 md5 --- files/md5 2000/06/10 17:06:07 1.2 +++ files/md5 2000/10/03 11:54:01 @@ -1 +1 @@ -MD5 (Apache-Session-1.51.tar.gz) = 30df6f5a780a5908681b8728f2e4b2d3 +MD5 (Apache-Session-1.53.tar.gz) = 31c4fb527e39763c6f3ab723d94e5a52 Index: pkg/PLIST =================================================================== RCS file: /home/ncvs/ports/www/p5-Apache-Session/pkg/PLIST,v retrieving revision 1.2 diff -u -d -r1.2 PLIST --- pkg/PLIST 2000/06/10 17:06:08 1.2 +++ pkg/PLIST 2000/10/03 11:50:20 @@ -2,16 +2,17 @@ lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/DB_File.pm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/File.pm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Flex.pm -lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/MySQL.pm -lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Oracle.pm -lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Postgres.pm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Generate/MD5.pm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Lock/File.pm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Lock/MySQL.pm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Lock/Null.pm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Lock/Semaphore.pm +lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/MySQL.pm +lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Oracle.pm +lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Postgres.pm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Serialize/Base64.pm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Serialize/Storable.pm +lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Serialize/Sybase.pm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Serialize/UUEncode.pm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Store/DBI.pm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Store/DB_File.pm @@ -19,10 +20,12 @@ lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Store/MySQL.pm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Store/Oracle.pm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Store/Postgres.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/Session/.packlist -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Apache/Session -@dirrm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Store -@dirrm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Serialize -@dirrm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Lock +lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Store/Sybase.pm +lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Sybase.pm +lib/perl5/site_perl/%%PERL_VER%%/mach/auto/Apache/Session/.packlist +@dirrm lib/perl5/site_perl/%%PERL_VER%%/mach/auto/Apache/Session @dirrm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Generate +@dirrm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Lock +@dirrm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Serialize +@dirrm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session/Store @dirrm lib/perl5/site_perl/%%PERL_VER%%/Apache/Session To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 5: 2: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from fap.abaid.com (fap.abaid.com [194.242.196.41]) by hub.freebsd.org (Postfix) with ESMTP id 85A6B37B503; Tue, 3 Oct 2000 05:02:01 -0700 (PDT) Received: from user (ppp4-sl.dnet.it [194.242.208.4]) by fap.abaid.com (8.11.0/8.11.0) with SMTP id e93DBYL41536; Tue, 3 Oct 2000 13:11:34 GMT Message-ID: <000c01c02d32$06456600$04d0f2c2@user> From: To: Subject: =?iso-8859-1?Q?DM_2.600_im_Monat_f=FCrs_Surfen_!?= Date: Tue, 3 Oct 2000 14:03:58 +0200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0009_01C02D42.C9CE3600" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.1 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0009_01C02D42.C9CE3600 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hallo ! =20 Geld f=FCrs surfen !! schau mal rein, es lohnt sich: =20 http://bennyhills.fortunecity.com/chaplin/612/ =20 Tsch=FC=DF ------=_NextPart_000_0009_01C02D42.C9CE3600 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
 
Hallo !
 
Geld fürs surfen = !!  schau=20 mal rein, es lohnt sich:
 
http://bennyhills= .fortunecity.com/chaplin/612/
 
Tschüß
------=_NextPart_000_0009_01C02D42.C9CE3600-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 6:34:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 5E16B37B66C for ; Tue, 3 Oct 2000 06:34:07 -0700 (PDT) Received: from vic.sabbo.net (root@[193.193.218.92]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id QAA26832; Tue, 3 Oct 2000 16:33:51 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e93Cn9F73798; Tue, 3 Oct 2000 15:49:09 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39D9D5C1.2943613A@FreeBSD.org> Date: Tue, 03 Oct 2000 15:49:05 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: rob Cc: ports@FreeBSD.org Subject: Re: newby porter question References: <39D751F0.7964C004@home.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org rob wrote: > I've tried porting a few Linux programs with no success. Is there > somewhere a doc or tutorial showing a step by step process to get a > working port, esp from Linux? I've looked at the FreeBSD porters > manual, but it seems to mainly be concerned with getting a port to > comply with the FreeBSD specs. Thanks, Rob. The things your are asking for are just too generic to be described somewhere. In general, you have to try to get software being ported compiling/working on FreeBSD by replacing Linuxisms with appropriate BSDisms where necessary. The tools to be used include, but not limited to: your brain, man(1), make(1), gdb(1), gcc(1) etc. Also good knowledge of Unix programming would be very helpful, however its degree might vary from the task to task. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 6:34:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 1F3A437B502; Tue, 3 Oct 2000 06:34:26 -0700 (PDT) Received: from vic.sabbo.net (root@[193.193.218.92]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id QAA26838; Tue, 3 Oct 2000 16:34:04 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e93COgF73758; Tue, 3 Oct 2000 15:24:42 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39D9D006.652DC258@FreeBSD.org> Date: Tue, 03 Oct 2000 15:24:38 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Neil Blakey-Milner Cc: Akinori -Aki- MUSHA , freebsd-ports@FreeBSD.org, bmah@FreeBSD.org Subject: Re: Enhancement of pkg_version's version comparison routine References: <86k8by6eis.wl@archon.local.idaemons.org> <20000927002401.A73341@mithrandr.moria.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Neil Blakey-Milner wrote: > You rule. > > If you or anyone else is bored, hack multi-version support into > pkg_version like I did way-back-when: > > webalizer-1.30.4 = up-to-date > webalizer-2.00.12 = up-to-date The more comprehensive solution would be to add information about package origin (i.e. corresponding /usr/ports/foo/bar directory) into +CONTENTS, so pkg_version will be able to look into port's directory to check version instead of relying on INDEX (however the latter could be used as a fallback). This should fix at least two problems with pkg_version: considerable lag between actual ports and versions in ports/INDEX; and inability to distinguish between multi-version ports. I currently looking into this problem and it seems that we could utilize either `@option' or `@comment' PLIST variables to avoid introducing new variable (to retain backward compatability of packages). Any comments, ideas, suggestions? -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 6:34:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 122FF37B66C; Tue, 3 Oct 2000 06:34:33 -0700 (PDT) Received: from vic.sabbo.net (root@[193.193.218.92]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id QAA26842; Tue, 3 Oct 2000 16:34:22 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e93Bg5F73701; Tue, 3 Oct 2000 14:42:05 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39D9C609.E3BC2F8D@FreeBSD.org> Date: Tue, 03 Oct 2000 14:42:01 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Renaud Waldura Cc: jseger@FreeBSD.org, ports@FreeBSD.org Subject: Re: Problem Building ImageMagick Port References: <00f101c02cf1$8ddbb2e0$0302010a@biohz.net> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Renaud Waldura wrote: > I'm trying to build ImageMagick version 5.2.3 on FreeBSD 4.0 and it chokes > on: > > ltconfig: unrecognized option `--build=i386--freebsd4.0' You have to reinstall libtool port from the freshly re-cvsuped ports tree. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 6:35: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 52D5437B503; Tue, 3 Oct 2000 06:35:00 -0700 (PDT) Received: from vic.sabbo.net (root@[193.193.218.92]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id QAA26849; Tue, 3 Oct 2000 16:34:32 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e93DZ6F73882; Tue, 3 Oct 2000 16:35:06 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39D9E084.50EE262A@FreeBSD.org> Date: Tue, 03 Oct 2000 16:35:00 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Satoshi - Ports Wraith - Asami Cc: ports@FreeBSD.org Subject: Re: Extending BSD.[local,x11].dist to include GNU gettext locale dirs References: <39C65823.42396A80@FreeBSD.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Satoshi - Ports Wraith - Asami wrote: > * From: Maxim Sobolev > > * We have a large number (~200) of ports that use GNU gettext, which implies that > * they are sharing some common directories. Currently this behaviour is > * unhandled, so maintainer of each particular port is free to deal with it > * whatever he likes. The better solution of course is to add those dirs into our > * mtree files, so the wheel will not have to be reinvented each time. The only > * problem, though, is a lack of complete list of those dirs, which means that > * potentially each softwar author can name his favorite locale whatever he likes, > * however most of them are smart enough to choose common 2-letter names > * optionally followed by encoding name. Following patch was prepared by greeping > * all PLISTs, so it should be fairly complete. I would like to know what do > * people think about it. > > * + locale > * + af > * + LC_MESSAGES > > Thanks for doing all the work, but I have one question: what's the > difference between "nls" and "locale" dirs? We already have a whole > bunch of subdirectories under "nls" already, can't those be used? It seems that they serve similar purpose, however I feel that it would be a Big Pain in Ass[tm] to teach all those gettext-using ports to install/look into right directory. > Also, are these "locale" directories only used by gettext (and > gettext-using ports)? If so, maybe we should implement something to > let gettext supply an additional mtree file (I can work out a > bsd.port.mk patch for this) so they don't have to be on everyone's > system. This would be the best solution. In general we need some generic approach to let ports, especially those which make heavy use of shared directories like GNOME/KDE/PUT_YOUR_FAVOURITE_HERE, to supply custom mtree files, so the hacks like ports/Tools/gnomedepends.py will not be necessary anymore and the problem of making a port bento-clean would be greatly simplified. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 6:35:24 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id C412B37B66C; Tue, 3 Oct 2000 06:35:15 -0700 (PDT) Received: from vic.sabbo.net (root@[193.193.218.92]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id QAA26848; Tue, 3 Oct 2000 16:34:31 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e93BpsF73713; Tue, 3 Oct 2000 14:51:54 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39D9C856.BF69AE64@FreeBSD.org> Date: Tue, 03 Oct 2000 14:51:50 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: mharo@FreeBSD.org Cc: Will Andrews , Satoshi - Ports Wraith - Asami , "Jeffrey J. Mountin" , ports@FreeBSD.org, will@FreeBSD.org Subject: Re: RFC: Ports layout reorganization (Re: ports tree idea: Combine DESCR and COMMENT) References: <"Jeffrey <4.3.2.20000929140626.00c3fa00@207.227.119.2> <4.3.2.20000929220000.00e0d7e0@207.227.119.2> <20000930085603.V75085@puck.firepipe.net> <20001001223942.A49213@FreeBSD.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Michael Haro wrote: > On Sat, Sep 30, 2000 at 08:56:03AM -0500, Will Andrews wrote: > > > > I'll take care of it and review with Michael for portlint. That said, I > > should probably add PORTREVISION/PORTEPOCH && INSTALLS_SHLIB. > > That sounds like a good plan to me =) > BTW, I'm still alive. Just really busy at work. Michael and Will, BTW please considering a more modulared structure for portlint2, so anybody can easily add his own checking module (preferrably just as a separate file loaded at runtime) w/o the need to hack huge monolitic script and disturb maintainers at every small occasion. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 6:40: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C86BC37B502 for ; Tue, 3 Oct 2000 06:40:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA01907; Tue, 3 Oct 2000 06:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 3 Oct 2000 06:40:04 -0700 (PDT) Message-Id: <200010031340.GAA01907@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Maxim Sobolev Subject: Re: ports/21714: audio problem with nil Reply-To: Maxim Sobolev Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21714; it has been noted by GNATS. From: Maxim Sobolev To: wolfieee@wolf.dyns.cx Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/21714: audio problem with nil Date: Tue, 03 Oct 2000 15:34:51 +0300 wolfieee@wolf.dyns.cx wrote: > eh? > S: debug: Sound system initialized, mixing 8138 channels at -1077937108Hz. > > have tried SDL_AUDIODRIVER=esd, SDL_AUDIODRIVER=dsp, SDL_AUDIODRIVER=dma Well, I'm aware of the problem, and at the first glance it seems like an unitialised variable somewhere (BTW, I still wonder why the hell those ass-minded fscking linsuxx c-- programmers think that OS should zeroing their crap???). Hovewer, my current lack of time prevents me from digging into it, so please be my guest to debug it and submit patches as usually. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 7:10:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id C82DF37B503; Tue, 3 Oct 2000 07:10:34 -0700 (PDT) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 13gSm3-000HgP-00; Tue, 03 Oct 2000 16:10:27 +0200 Date: Tue, 3 Oct 2000 16:10:27 +0200 From: Neil Blakey-Milner To: Maxim Sobolev Cc: Akinori -Aki- MUSHA , freebsd-ports@FreeBSD.org, bmah@FreeBSD.org Subject: Re: Enhancement of pkg_version's version comparison routine Message-ID: <20001003161027.B67542@mithrandr.moria.org> References: <86k8by6eis.wl@archon.local.idaemons.org> <20000927002401.A73341@mithrandr.moria.org> <39D9D006.652DC258@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39D9D006.652DC258@FreeBSD.org>; from sobomax@FreeBSD.org on Tue, Oct 03, 2000 at 03:24:38PM +0300 Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue 2000-10-03 (15:24), Maxim Sobolev wrote: > Neil Blakey-Milner wrote: > > > You rule. > > > > If you or anyone else is bored, hack multi-version support into > > pkg_version like I did way-back-when: > > > > webalizer-1.30.4 = up-to-date > > webalizer-2.00.12 = up-to-date > > The more comprehensive solution would be to add information about package origin > (i.e. corresponding /usr/ports/foo/bar directory) into +CONTENTS, so pkg_version > will be able to look into port's directory to check version instead of relying > on INDEX (however the latter could be used as a fallback). This should fix at > least two problems with pkg_version: considerable lag between actual ports and > versions in ports/INDEX; and inability to distinguish between multi-version > ports. I currently looking into this problem and it seems that we could utilize > either `@option' or `@comment' PLIST variables to avoid introducing new variable > (to retain backward compatability of packages). > > Any comments, ideas, suggestions? Take zsh and zsh-devel, or any of those devel packages - how do you tell which one to follow when it moves from zsh-5.0 and zsh-devel-6.0 to zsh-7.0 and zsh-devel-8.0? I like your idea, though. That just seemed to leap at me. Neil -- Neil Blakey-Milner Sunesi Clinical Systems nbm@mithrandr.moria.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 7:31:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B6E537B502; Tue, 3 Oct 2000 07:31:53 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA99090; Tue, 3 Oct 2000 07:31:53 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Tue, 3 Oct 2000 07:31:53 -0700 (PDT) From: Message-Id: <200010031431.HAA99090@freefall.freebsd.org> To: woju@freebsd.ntu.edu.tw, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21721: ports update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports update State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Tue Oct 3 07:31:37 PDT 2000 State-Changed-Why: Patches applied, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21721 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 7:32:19 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id D29DE37B502; Tue, 3 Oct 2000 07:32:13 -0700 (PDT) Received: from vic.sabbo.net (root@[193.193.218.90]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id RAA27917; Tue, 3 Oct 2000 17:32:07 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e93EWfF74121; Tue, 3 Oct 2000 17:32:41 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39D9EE01.7A880665@FreeBSD.org> Date: Tue, 03 Oct 2000 17:32:33 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Neil Blakey-Milner Cc: Akinori -Aki- MUSHA , freebsd-ports@FreeBSD.org, bmah@FreeBSD.org Subject: Re: Enhancement of pkg_version's version comparison routine References: <86k8by6eis.wl@archon.local.idaemons.org> <20000927002401.A73341@mithrandr.moria.org> <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Neil Blakey-Milner wrote: > On Tue 2000-10-03 (15:24), Maxim Sobolev wrote: > > Neil Blakey-Milner wrote: > > > > > You rule. > > > > > > If you or anyone else is bored, hack multi-version support into > > > pkg_version like I did way-back-when: > > > > > > webalizer-1.30.4 = up-to-date > > > webalizer-2.00.12 = up-to-date > > > > The more comprehensive solution would be to add information about package origin > > (i.e. corresponding /usr/ports/foo/bar directory) into +CONTENTS, so pkg_version > > will be able to look into port's directory to check version instead of relying > > on INDEX (however the latter could be used as a fallback). This should fix at > > least two problems with pkg_version: considerable lag between actual ports and > > versions in ports/INDEX; and inability to distinguish between multi-version > > ports. I currently looking into this problem and it seems that we could utilize > > either `@option' or `@comment' PLIST variables to avoid introducing new variable > > (to retain backward compatability of packages). > > > > Any comments, ideas, suggestions? > > Take zsh and zsh-devel, or any of those devel packages - how do you tell > which one to follow when it moves from zsh-5.0 and zsh-devel-6.0 to > zsh-7.0 and zsh-devel-8.0? > > I like your idea, though. That just seemed to leap at me. Hmm, I do not see any problems, for example: Moment of time t1: - you have installed foo-5.0 and foo-6.0 from somecategory/foo and somecategory/foo-devel ports; Moment of time t2>t1: - the ports have been upgraded, so you now have foo-7.0 and foo-8.0 for foo and foo-devel ports; - pkg_version looks into foo-5.0 installed package and determines that it should check somecategory/foo to determine whether update necessary. It does so, BAH you have to upgrage to foo-7.0; - pkg_version looks into foo-6.0 installed package and determines that it should check somecategory/foo-devel to determine whether update necessary. It does so, BAH you have to upgrage to foo-8.0. Am I wrong? -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 8: 0: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 76CF637B66E for ; Tue, 3 Oct 2000 08:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA21951; Tue, 3 Oct 2000 08:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from fling.sanbi.ac.za (fling.sanbi.ac.za [196.38.142.119]) by hub.freebsd.org (Postfix) with ESMTP id F2F1337B503 for ; Tue, 3 Oct 2000 07:50:56 -0700 (PDT) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 13gTP4-0003tT-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 03 Oct 2000 16:50:46 +0200 Message-Id: Date: Tue, 03 Oct 2000 16:50:46 +0200 From: johann@egenetics.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21726: Port fix: devel/fnorb (maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21726 >Category: ports >Synopsis: Port fix: devel/fnorb (maintainer) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 03 08:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Johann Visagie >Release: FreeBSD 5.0-CURRENT i386 >Organization: Electric Genetics >Environment: >Description: Building the port broke under Python 1.6. Reported by: Mike Meyer >How-To-Repeat: >Fix: diff -ruN fnorb.bak/Makefile fnorb/Makefile --- fnorb.bak/Makefile Sat Sep 16 07:18:45 2000 +++ fnorb/Makefile Tue Oct 3 16:47:52 2000 @@ -16,6 +16,7 @@ NO_CDROM= Free for academic, research and non-commercial purposes only WRKSRC= ${WRKDIR}/Fnorb-${PORTVERSION}/src USE_PYTHON= yes +ALL_TARGET= do-configure: @ (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} \ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 8: 8:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C2F8B37B503; Tue, 3 Oct 2000 08:08:51 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA30103; Tue, 3 Oct 2000 08:08:51 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Tue, 3 Oct 2000 08:08:51 -0700 (PDT) From: Message-Id: <200010031508.IAA30103@freefall.freebsd.org> To: cj@vallcom.net, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21710: Update port: ftp/lftp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: ftp/lftp State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Tue Oct 3 08:08:35 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21710 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 8:17:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D5F037B66C; Tue, 3 Oct 2000 08:17:42 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA39485; Tue, 3 Oct 2000 08:17:42 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Tue, 3 Oct 2000 08:17:42 -0700 (PDT) From: Message-Id: <200010031517.IAA39485@freefall.freebsd.org> To: mi@aldan.algebra.com, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21709: textproc/wordnet MAINTAINER UPGRADE Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: textproc/wordnet MAINTAINER UPGRADE State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Tue Oct 3 08:17:25 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21709 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 8:22: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 08CEF37B503; Tue, 3 Oct 2000 08:22:03 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA44137; Tue, 3 Oct 2000 08:22:03 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Tue, 3 Oct 2000 08:22:03 -0700 (PDT) From: Message-Id: <200010031522.IAA44137@freefall.freebsd.org> To: vince@blue-box.net, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21707: update syslog-ng to 1.4.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update syslog-ng to 1.4.7 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Tue Oct 3 08:21:41 PDT 2000 State-Changed-Why: Patches applied, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21707 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 8:30:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BC64E37B66C for ; Tue, 3 Oct 2000 08:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA54205; Tue, 3 Oct 2000 08:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id CDEA937B502; Tue, 3 Oct 2000 08:27:38 -0700 (PDT) Message-Id: <20001003152738.CDEA937B502@hub.freebsd.org> Date: Tue, 3 Oct 2000 08:27:38 -0700 (PDT) From: nickc@corp.firstindustrial.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21727: port pm3-base-1.1.5 cannot find source code files Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21727 >Category: ports >Synopsis: port pm3-base-1.1.5 cannot find source code files >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 03 08:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Nick R. Colakovic >Release: 4.1.1-STABLE >Organization: First Industrial Realty Trust >Environment: FreeBSD stvincent2.firstindustrial.com 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Wed Sep 27 09:48:02 CDT 2000 nickc@stvincent2.firstindustrial.com:/usr/obj/usr/src/sys/SCLEAN i386 >Description: When attempting to build the pm3-base port as of 10/2/2000 (Makefile 1.7 2000/09/30 23:47:11) an error is received attempting to retreive the port source tar files. The Makefile doesn't indicate where the new pm3-*-1.1.15 files are to be found. As a result compilation cannot complete. Example of make output follows: >How-To-Repeat: Attempt to run make for the lang/pm3-base port. >Fix: Need makefile to reflect correct location of pm3-*-1.1.15 tarballs. >Release-Note: >Audit-Trail: >Unformatted: >> pm3-1.1.15a-FreeBSD4-boot.tar.bz2 is not in /usr/ports/lang/pm3-base/files/md5. >> Either /usr/ports/lang/pm3-base/files/md5 is out of date, or >> pm3-1.1.15a-FreeBSD4-boot.tar.bz2 is spelled incorrectly. *** Error code 1 Stop in /usr/ports/lang/pm3-base. *** Error code 1 Stop in /usr/ports/lang/pm3-base. *** Error code 1 Stop in /usr/ports/lang/pm3-base. *** Error code 1 Stop in /usr/ports/lang/pm3-base. *** Error code 1 Stop in /usr/ports/lang/pm3-base. *** Error code 1 Stop in /usr/ports/lang/pm3-base. *** Error code 1 Stop in /usr/ports/lang/pm3-base. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 8:35:23 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D0EFF37B6B6; Tue, 3 Oct 2000 08:35:18 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA59475; Tue, 3 Oct 2000 08:35:18 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Tue, 3 Oct 2000 08:35:18 -0700 (PDT) From: Message-Id: <200010031535.IAA59475@freefall.freebsd.org> To: johann@egenetics.com, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21726: Port fix: devel/fnorb (maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port fix: devel/fnorb (maintainer) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Tue Oct 3 08:35:01 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21726 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 8:41:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mta6.snfc21.pbi.net (mta6.snfc21.pbi.net [206.13.28.240]) by hub.freebsd.org (Postfix) with ESMTP id 27A9E37B502; Tue, 3 Oct 2000 08:41:52 -0700 (PDT) Received: from pacbell.net ([63.199.31.175]) by mta6.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0G1V00I2D1Y4VW@mta6.snfc21.pbi.net>; Tue, 3 Oct 2000 08:34:52 -0700 (PDT) Date: Tue, 03 Oct 2000 08:35:43 -0700 From: "George W. Dinolt" Subject: Re: cant get sane port to build To: bsdx@looksharp.net Cc: ade@FreeBSD.org, ports@freebsd.org Message-id: <39D9FCCF.A62D2F58@pacbell.net> MIME-version: 1.0 X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7bit X-Accept-Language: en Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org aDe Wrote: >On Sun, Oct 01, 2000 at 07:20:01PM -0400, Adam wrote: >> Hello, I have tried this on 5-current just past SMPng as well as a fresh >> reinstall of the computer today with 4.1-release upgraded to 4.1.1-stable >> with mergemaster and all new ports. I still get the compile bomb on >> sane, logfile attached. Curious as to why the package building logs on >> bento only show xsane broken but not sane, which it depends on and >> actually does seem broken. Any help would be appreciated, thanks. >> >> [snip] >> cc -c -DHAVE_CONFIG_H -I. -I. -I../include -I../include -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 - >> I/usr/local/include -I/usr/X11R6/include -I/usr/local/include -D_GNU_SOURCE -DPATH_SANE_CONFIG_DIR=/usr/local/etc/sane.d -DP >> ATH_SANE_DATA_DIR=/usr/local/share -DV_MAJOR=1 -DV_MINOR=0 -O -pipe -W -Wall -DSCSIBUFFERSIZE=131072 xscanimage.c >> xscanimage.c:63: syntax error before `GParam' >> xscanimage.c:66: syntax error before `PLUG_IN_INFO' >That looks very much like you've got a version of glib/gtk < 1.2.8 >I've just rebuilt the port here on my RELENG_4 box (9/28) and it >builds just fine, just like bento. I ran into the same problem as Adam. After some investigation I determined that the problem was that sane implicitly (in it's configure script) determines whether gimp is available. If the Gimp is available, the sane configure script set things up so that the compile sane can be used as a gimp plugin. (This is, of course, good news and bad.) Gimp version 1.26 changed the names of some variables and types for interfacing with the Gimp libraries. Apparantly this is in anticipation of the next major release of the Gimp. The Gimp authors thoughtfully included a compatibility include file which can be activated by defining GIMP_ENABLE_COMPAT_CRUFT before including the gimp.h I activated this by including it in CFLAGS in the Makefile, but this is clearly a kludge. A "more correct" approach would be to fix the variables in the appropriate files. The problem is that one needs to "know" which version of Gimp one is compiling against to determine whether the changes should be made and I was too lazy to do this. The same issue arises in xsane, which also will automagically generate a Gimp plugin. I suggest that this is eventually a problem which the sane authors will have to deal with. I hope this helps. George Dinolt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 8:43:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 46E4437B502; Tue, 3 Oct 2000 08:43:48 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA66765; Tue, 3 Oct 2000 08:43:48 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Tue, 3 Oct 2000 08:43:48 -0700 (PDT) From: Message-Id: <200010031543.IAA66765@freefall.freebsd.org> To: keith@freebsd.sinica.edu.tw, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21703: New port: chinese/moefonts-cid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: chinese/moefonts-cid State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Tue Oct 3 08:43:29 PDT 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21703 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 9:16:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from privatecube.privatelabs.com (privatecube.privatelabs.com [198.143.31.30]) by hub.freebsd.org (Postfix) with ESMTP id DA7FC37B503; Tue, 3 Oct 2000 09:16:39 -0700 (PDT) Received: from misha.privatelabs.com (root@misha.privatelabs.com [198.143.31.6]) by privatecube.privatelabs.com (8.9.3/8.9.2) with ESMTP id LAA06217; Tue, 3 Oct 2000 11:35:45 -0400 Received: from virtual-estates.net (mi@localhost [127.0.0.1]) by misha.privatelabs.com (8.11.0/8.9.3) with ESMTP id e93GG0v09601; Tue, 3 Oct 2000 12:16:02 -0400 (EDT) (envelope-from mi@virtual-estates.net) Message-Id: <200010031616.e93GG0v09601@misha.privatelabs.com> Date: Tue, 3 Oct 2000 12:15:59 -0400 (EDT) From: mi@aldan.algebra.com Subject: KDE2 experiences (Re: KDE2 fails to compile in strangest possible w ay) To: Mike Smith Cc: Will Andrews , ports@FreeBSD.ORG, stable@FreeBSD.ORG, david@mandrakesoft.com In-Reply-To: <200010030103.e9313Oh04055@mass.osd.bsdi.com> MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 2 Oct, Mike Smith wrote: = > For reference, I have a dual PIII-500 w/ 512MB of memory, and the = > new box I'm building will have a dual PIII-600E w/ 640MB. The former = > takes approximately 5 hours to build the entire suite. = = Have you ever tried going beyond that and actually run it? Is it meant = to work? Specifically, startup is kinda flaky, kwrited starts and = can't be (easily) killed, and konsole never starts a shell and dies = after a few seconds. kcminit was seg-faulting for me on startup until I moved my ~/.kde (from 1.1.2) away and restarted. It does come up and looks cute. Konqueror (the Internet browser -- my major reason to upgrade) seems to work but crashes on the the kde.org's list of bugs (http://bugs.kde.org/db/ix/full.html) -- a HUGE page -- very ironic. I filed the bug report, but the response was that they can not reproduce it and would need to recompile with --enable-debug... Sometimes, popup menus have double entries for everything. Perhaps a Qt thing... For some reason, the support for the Ukrainian charset koi8-u is ifdef-ed out of the Qt2, although it is just a superset of the Russian koi8-r (which is supported) adding a few more characters. It was not obvious, that one needs to download the particular language translation and install it manually to have the languages other than English (US) and "Default C". This is different from the previous version, but makes sense, now that I know about it. Running Linux version of Netscape becomes difficult, because KDE seems to set the LD_LIBRARY_PATH by default (the previous beta was also setting LD_PRELOAD!!!). My biggest complaint was the Run entry of the right mouse popup menu. Trying to be smarter than I am, it would refuse to try ``exec xterm'' -- only ``xterm'' would work. Since it uses the user's shell to process the command, this means I will have a tcsh process running in background eating up VM space until I exit the xterm (/bin/tcsh -c xterm). Our /bin/sh has the same issue, but the bash (default on Linux) does not -- it appears to be smart enough to bypass fork(2) and go straight to exec(2) on the last command of a script. From talking to the developer, it seems they just wanted to be able to tell an application failure from the shell's failure to execute the command, and so KDE will look through the PATH for the command before invoking the shell. This breaks ALL shell's builtin commands -- most importantly, the exec and the aliases. And it relies on the uniform support of the -c option by all possible shells. I hope, this will be addresses before the 2.0 release, I guess a workaround would be to touch /bin/exec and chmod +x /bin/exec :) = Aside from that, it's nice candy. 8) Indeed :) -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 9:35:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 944F237B66C; Tue, 3 Oct 2000 09:35:11 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id BE88A1946; Tue, 3 Oct 2000 11:35:20 -0500 (EST) Date: Tue, 3 Oct 2000 11:35:20 -0500 From: Will Andrews To: Maxim Sobolev Cc: mharo@FreeBSD.org, Will Andrews , Satoshi - Ports Wraith - Asami , "Jeffrey J. Mountin" , ports@FreeBSD.org, will@FreeBSD.org Subject: Re: RFC: Ports layout reorganization (Re: ports tree idea: Combine DESCR and COMMENT) Message-ID: <20001003113520.E41798@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Maxim Sobolev , mharo@FreeBSD.org, Satoshi - Ports Wraith - Asami , "Jeffrey J. Mountin" , ports@FreeBSD.org, will@FreeBSD.org References: <"Jeffrey <4.3.2.20000929140626.00c3fa00@207.227.119.2> <4.3.2.20000929220000.00e0d7e0@207.227.119.2> <20000930085603.V75085@puck.firepipe.net> <20001001223942.A49213@FreeBSD.org> <39D9C856.BF69AE64@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39D9C856.BF69AE64@FreeBSD.org>; from sobomax@FreeBSD.org on Tue, Oct 03, 2000 at 02:51:50PM +0300 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Oct 03, 2000 at 02:51:50PM +0300, Maxim Sobolev wrote: > BTW please considering a more modulared structure for portlint2, so anybody can > easily add his own checking module (preferrably just as a separate file loaded > at runtime) w/o the need to hack huge monolitic script and disturb maintainers > at every small occasion. This is slated for portlint3, a complete rewrite. However, both of us are bogged down with other responsibilities. Portlint just doesn't rank too high on either of our priority listings. Sorry. -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 9:40: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D4AF37B66C for ; Tue, 3 Oct 2000 09:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA13043; Tue, 3 Oct 2000 09:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from casper2.cs.uct.ac.za (casper2.cs.uct.ac.za [137.158.128.58]) by hub.freebsd.org (Postfix) with ESMTP id 1924C37B503 for ; Tue, 3 Oct 2000 09:31:55 -0700 (PDT) Received: from mwest by casper2.cs.uct.ac.za with local (Exim 3.16 #1) id 13gUxx-0004en-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 03 Oct 2000 18:30:53 +0200 Message-Id: Date: Tue, 03 Oct 2000 18:30:53 +0200 From: mwest@uct.ac.za Reply-To: mwest@uct.ac.za To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21730: port update: mail/lbdb [PATCH] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21730 >Category: ports >Synopsis: port update: mail/lbdb [PATCH] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 03 09:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Matthew West >Release: FreeBSD 4.1-STABLE i386 >Organization: University of Cape Town >Environment: >Description: patch to update ports/lbdb from 0.19.5 to 0.20.1 >How-To-Repeat: >Fix: diff -ru lbdb.orig/Makefile lbdb/Makefile --- lbdb.orig/Makefile Sat Jul 22 01:30:55 2000 +++ lbdb/Makefile Tue Oct 3 18:03:00 2000 @@ -6,7 +6,7 @@ # PORTNAME= lbdb -PORTVERSION= 0.19.5 +PORTVERSION= 0.20.1 CATEGORIES= mail MASTER_SITES= http://www.spinnaker.de/debian/ DISTNAME= ${PORTNAME}_${PORTVERSION} diff -ru lbdb.orig/files/md5 lbdb/files/md5 --- lbdb.orig/files/md5 Sun Jul 30 20:07:02 2000 +++ lbdb/files/md5 Tue Oct 3 17:53:08 2000 @@ -1 +1 @@ -MD5 (lbdb_0.19.5.tar.gz) = 0f3d44eca1f63a0d4906448ffb7eb71b +MD5 (lbdb_0.20.1.tar.gz) = 816792c2e0dfe6bcecfe9fa2082cfa08 diff -ru lbdb.orig/pkg/PLIST lbdb/pkg/PLIST --- lbdb.orig/pkg/PLIST Sat Jul 22 01:30:55 2000 +++ lbdb/pkg/PLIST Tue Oct 3 18:05:53 2000 @@ -11,8 +11,11 @@ libexec/m_finger libexec/m_inmail libexec/m_muttalias +libexec/m_palm libexec/m_passwd libexec/m_pine libexec/m_yppasswd +libexec/palm_lsaddr +libexec/qpto8bit libexec/tac etc/lbdb.rc >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 9:41:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 057DE37B66D; Tue, 3 Oct 2000 09:41:56 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA14462; Tue, 3 Oct 2000 09:41:56 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Tue, 3 Oct 2000 09:41:56 -0700 (PDT) From: Message-Id: <200010031641.JAA14462@freefall.freebsd.org> To: gonza@techline.ru, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21415: update ports: mail/smapi (new version) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update ports: mail/smapi (new version) State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Tue Oct 3 09:41:16 PDT 2000 State-Changed-Why: Committed. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21415 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 9:42:19 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0675F37B503; Tue, 3 Oct 2000 09:42:18 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA14710; Tue, 3 Oct 2000 09:42:17 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Tue, 3 Oct 2000 09:42:17 -0700 (PDT) From: Message-Id: <200010031642.JAA14710@freefall.freebsd.org> To: gonza@techline.ru, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21419: update ports: mail/smapi (fix PLIST file) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update ports: mail/smapi (fix PLIST file) State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Tue Oct 3 09:41:16 PDT 2000 State-Changed-Why: Committed. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21415 State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Tue Oct 3 09:41:16 PDT 2000 State-Changed-Why: Committed. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21419 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 9:45:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id BD73237B502; Tue, 3 Oct 2000 09:45:02 -0700 (PDT) Received: from vic.sabbo.net (root@[193.193.218.92]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id TAA02247; Tue, 3 Oct 2000 19:44:55 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e93GjTF74467; Tue, 3 Oct 2000 19:45:29 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39DA0D1F.C3CA823D@FreeBSD.org> Date: Tue, 03 Oct 2000 19:45:19 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Will Andrews Cc: mharo@FreeBSD.org, Satoshi - Ports Wraith - Asami , "Jeffrey J. Mountin" , ports@FreeBSD.org, will@FreeBSD.org Subject: Re: RFC: Ports layout reorganization (Re: ports tree idea: Combine DESCR and COMMENT) References: <"Jeffrey <4.3.2.20000929140626.00c3fa00@207.227.119.2> <4.3.2.20000929220000.00e0d7e0@207.227.119.2> <20000930085603.V75085@puck.firepipe.net> <20001001223942.A49213@FreeBSD.org> <39D9C856.BF69AE64@FreeBSD.org> <20001003113520.E41798@puck.firepipe.net> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Will Andrews wrote: > On Tue, Oct 03, 2000 at 02:51:50PM +0300, Maxim Sobolev wrote: > > BTW please considering a more modulared structure for portlint2, so anybody can > > easily add his own checking module (preferrably just as a separate file loaded > > at runtime) w/o the need to hack huge monolitic script and disturb maintainers > > at every small occasion. > > This is slated for portlint3, a complete rewrite. However, both of us > are bogged down with other responsibilities. Portlint just doesn't rank > too high on either of our priority listings. Then put it on giveaway list and seek for a new maintainer. I'm pretty sure that there are many folks out of there who might want to maintain it (no, I'm not proposing myself, becuase it would mean complete rewrite in Python :-P). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 9:54:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id CE01337B502; Tue, 3 Oct 2000 09:54:16 -0700 (PDT) Received: from vic.sabbo.net (root@[193.193.218.92]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id TAA02362; Tue, 3 Oct 2000 19:54:10 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e93GsjF74511; Tue, 3 Oct 2000 19:54:45 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39DA0F4B.5C38DBE8@FreeBSD.org> Date: Tue, 03 Oct 2000 19:54:36 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Will Andrews , mharo@FreeBSD.org, Satoshi - Ports Wraith - Asami , "Jeffrey J. Mountin" , ports@FreeBSD.org, will@FreeBSD.org Subject: Re: RFC: Ports layout reorganization (Re: ports tree idea: Combine DESCR and COMMENT) References: <"Jeffrey <4.3.2.20000929140626.00c3fa00@207.227.119.2> <4.3.2.20000929220000.00e0d7e0@207.227.119.2> <20000930085603.V75085@puck.firepipe.net> <20001001223942.A49213@FreeBSD.org> <39D9C856.BF69AE64@FreeBSD.org> <20001003113520.E41798@puck.firepipe.net> <39DA0D1F.C3CA823D@FreeBSD.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Maxim Sobolev wrote: > Will Andrews wrote: > > > On Tue, Oct 03, 2000 at 02:51:50PM +0300, Maxim Sobolev wrote: > > > BTW please considering a more modulared structure for portlint2, so anybody can > > > easily add his own checking module (preferrably just as a separate file loaded > > > at runtime) w/o the need to hack huge monolitic script and disturb maintainers > > > at every small occasion. > > > > This is slated for portlint3, a complete rewrite. However, both of us > > are bogged down with other responsibilities. Portlint just doesn't rank > > too high on either of our priority listings. > > Then put it on giveaway list and seek for a new maintainer. I'm pretty sure that > there are many folks out of there who might want to maintain it (no, I'm not > proposing myself, becuase it would mean complete rewrite in Python :-P). P.S. Portlint is too critical to allow it to be practically unmaintained, as we see it currently, when it lags behind bsd.port.mk by several months. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 9:57:59 2000 Delivered-To: freebsd-ports@freebsd.org Received: from bmah-freebsd-0.cisco.com (bmah-freebsd-0.cisco.com [171.70.84.42]) by hub.freebsd.org (Postfix) with ESMTP id 6D80F37B502; Tue, 3 Oct 2000 09:57:56 -0700 (PDT) Received: (from bmah@localhost) by bmah-freebsd-0.cisco.com (8.11.0/8.11.0) id e93Gvtg10718; Tue, 3 Oct 2000 09:57:55 -0700 (PDT) (envelope-from bmah) Message-Id: <200010031657.e93Gvtg10718@bmah-freebsd-0.cisco.com> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: Maxim Sobolev Cc: Neil Blakey-Milner , Akinori -Aki- MUSHA , freebsd-ports@FreeBSD.org, bmah@FreeBSD.org Subject: Re: Enhancement of pkg_version's version comparison routine In-Reply-To: <39D9EE01.7A880665@FreeBSD.org> References: <86k8by6eis.wl@archon.local.idaemons.org> <20000927002401.A73341@mithrandr.moria.org> <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> <39D9EE01.7A880665@FreeBSD.org> Comments: In-reply-to Maxim Sobolev message dated "Tue, 03 Oct 2000 17:32:33 +0300." From: bmah@FreeBSD.org (Bruce A. Mah) Reply-To: bmah@FreeBSD.org X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_320064253P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Tue, 03 Oct 2000 09:57:55 -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --==_Exmh_320064253P Content-Type: text/plain; charset=us-ascii If memory serves me right, Maxim Sobolev wrote: > Neil Blakey-Milner wrote: > > > On Tue 2000-10-03 (15:24), Maxim Sobolev wrote: [Use @option or @comment PLIST variables to track where intalled packages came from, maybe with a fallback to INDEX.] > > Take zsh and zsh-devel, or any of those devel packages - how do you tell > > which one to follow when it moves from zsh-5.0 and zsh-devel-6.0 to > > zsh-7.0 and zsh-devel-8.0? > > > > I like your idea, though. That just seemed to leap at me. > > Hmm, I do not see any problems, for example: > > Moment of time t1: > - you have installed foo-5.0 and foo-6.0 from somecategory/foo and > somecategory/foo-devel ports; > > Moment of time t2>t1: > - the ports have been upgraded, so you now have foo-7.0 and foo-8.0 for foo a > nd > foo-devel ports; > - pkg_version looks into foo-5.0 installed package and determines that it sho > uld check > somecategory/foo to determine whether update necessary. It does so, BAH you h > ave to > upgrage to foo-7.0; > - pkg_version looks into foo-6.0 installed package and determines that it sho > uld check > somecategory/foo-devel to determine whether update necessary. It does so, BAH > you have > to upgrage to foo-8.0. I think that in your example, it's going to do the right thing. Instances where we allow multiple "production" versions of software (i.e. Tcl) are already differentiated by giving the port directories different names. Two things that came to mind for me: 1. Someone once made the assertion that most third-party software was installed via packages, not building ports. So we might need to handle some odd cases like only having the INDEX file, not having a ports tree at all, and so forth. (In other words, we might not have filesystem access to the Makefile that generated a package.) 2. This still doesn't solve the problem of updating dependencies. Still, I think this is an interesting idea. Bruce. PS. knu, I still have your last patch. I'm just kind of overwhelmed with work and Real Life (TM) stuff now, so I haven't been able to give it the time that it deserves. --==_Exmh_320064253P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 5.0i for non-commercial use MessageID: Xf/Ytj1uQdKmbKmu96+T2f9MQ5KaRTx3 iQA/AwUBOdoQE9jKMXFboFLDEQJV8QCg3FxoPuBQ7MQaHhznfDzVUVGfKPYAoLqY P5b/Of8I+ZVb3GM8fwblkxp7 =DpfF -----END PGP SIGNATURE----- --==_Exmh_320064253P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 10:10:35 2000 Delivered-To: freebsd-ports@freebsd.org Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id B197E37B503; Tue, 3 Oct 2000 10:10:33 -0700 (PDT) Received: from FreeBSD.org (baby.int.thehousleys.net [192.168.0.24]) by thehousleys.net (8.11.0/8.11.0) with ESMTP id e93HAWB03566; Tue, 3 Oct 2000 13:10:32 -0400 (EDT) (envelope-from jeh@FreeBSD.org) Message-ID: <39DA1308.14FA3EEF@FreeBSD.org> Date: Tue, 03 Oct 2000 13:10:32 -0400 From: "James E. Housley" Organization: FreeBSD X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Maxim Sobolev , freebsd-ports@FreeBSD.org Subject: Re: RFC: Ports layout reorganization (Re: ports tree idea: Combine DESCR and COMMENT) References: <"Jeffrey <4.3.2.20000929140626.00c3fa00@207.227.119.2> <4.3.2.20000929220000.00e0d7e0@207.227.119.2> <20000930085603.V75085@puck.firepipe.net> <20001001223942.A49213@FreeBSD.org> <39D9C856.BF69AE64@FreeBSD.org> <20001003113520.E41798@puck.firepipe.net> <39DA0D1F.C3CA823D@FreeBSD.org> <39DA0F4B.5C38DBE8@FreeBSD.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Maxim Sobolev wrote: > > > Then put it on giveaway list and seek for a new maintainer. I'm pretty sure that > > there are many folks out of there who might want to maintain it (no, I'm not > > proposing myself, becuase it would mean complete rewrite in Python :-P). > > P.S. Portlint is too critical to allow it to be practically unmaintained, as we see it > currently, when it lags behind bsd.port.mk by several months. > I am not a Perl expert, never needed to be, but I do have a patch submitted. At least I think I submitted one. That bring PORTREVESION and PORTEPOCH into checking. I can't do it by myself yet, not good enough at perl to accept full responisbility, but will work with someone. Maybe, for startes do some work and have it reviewed by the current MAINTAINERS. Jim -- James E. Housley Hi! I'm a .signature virus! Copy me in your ~/.signature to help me spread! <- Save this lifeform ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 10:40:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id 790E437B503 for ; Tue, 3 Oct 2000 10:40:49 -0700 (PDT) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id NAA68327 for ports@freebsd.org; Tue, 3 Oct 2000 13:40:49 -0400 (EDT) (envelope-from mwlucas) Date: Tue, 3 Oct 2000 13:40:48 -0400 From: Michael Lucas To: ports@freebsd.org Subject: basic ports question Message-ID: <20001003134048.A68307@blackhelicopters.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="r5Pyd7+fXNt84Ff3" Content-Disposition: inline User-Agent: Mutt/1.2i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --r5Pyd7+fXNt84Ff3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello, I'm considering writing an article about modifying existing ports to add new functions. Could some kind person take a look at the attached patch to security/snort/Makefile, and tell me if this is the proper approach? If so, I'll send-pr it. Thanks, Michael -- Michael Lucas mwlucas@blackhelicopters.org http://www.blackhelicopters.org/~mwlucas/ Big Scary Daemons: http://www.oreillynet.com/pub/q/Big_Scary_Daemons --r5Pyd7+fXNt84Ff3 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="mysql.diff" *** Makefile.orig Sat Sep 2 13:23:40 2000 --- Makefile Tue Oct 3 13:22:05 2000 *************** *** 13,20 **** --- 13,29 ---- MAINTAINER= dirk@FreeBSD.org + .if defined(USE_MYSQL) + LIB_DEPENDS+= mysqlclient.6:${PORTSDIR}/databases/mysql322-client + .endif + GNU_CONFIGURE= yes MAN8= snort.8 + + .if defined(USE_MYSQL) + CONFIGURE_ARGS+= --with-mysql-includes=${LOCALBASE}/include/mysql \ + --with-mysql-libraries=${LOCALBASE}/lib/mysql + .endif post-install: ${MKDIR} ${PREFIX}/share/snort --r5Pyd7+fXNt84Ff3-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 11:20:34 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hub.lovett.com (hub.lovett.com [216.60.121.161]) by hub.freebsd.org (Postfix) with ESMTP id 97CEF37B503; Tue, 3 Oct 2000 11:20:31 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13gWfy-0007DJ-00; Tue, 03 Oct 2000 13:20:26 -0500 Date: Tue, 3 Oct 2000 13:20:26 -0500 From: Ade Lovett To: ports@FreeBSD.org Cc: vanilla@FreeBSD.org, nakai@FreeBSD.org Subject: RFC: Removing gtk10 Message-ID: <20001003132025.S20891@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Looking at the current ports tree, I see 4 dependencies on x11-toolkits/gtk10, namely: graphics/gyvegui graphics/gyvekernel korean/gtk10 x11-fm/workplace The first two haven't been updated since 1998, and along with graphics/gyvefigs and misc/gyvescm should be culled. korean/gtk10 is an orphan.. nothing depends on it.. other korean ports depend directly on x11-toolkits/gtk12 x11-fm/workplace doesn't exist on the MASTER_SITE, and is owned by ports@FreeBSD.org, so is unlikely to get fixed. Therefore, unless anyone has any violent objections, I plan on killing the following 7 ports one week from today, 10th October 2000. 1. graphics/gyvefigs 2. graphics/gyvegui 3. graphics/gyvekernel 4. korean/gtk10 5. misc/gyvescm 6. x11-fm/workplace 7. x11-toolkits/gtk10 -aDe -- Ade Lovett, Austin, TX. ade@FreeBSD.org FreeBSD: The Power to Serve http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 11:37:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BE89F37B502; Tue, 3 Oct 2000 11:37:16 -0700 (PDT) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA96245; Tue, 3 Oct 2000 11:37:16 -0700 (PDT) (envelope-from jim@FreeBSD.org) Date: Tue, 3 Oct 2000 11:37:16 -0700 (PDT) From: Message-Id: <200010031837.LAA96245@freefall.freebsd.org> To: buchanon@mlss15.cl.msu.edu, jim@FreeBSD.org, jim@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21418: update gaim make file so that we can use the oscar protocol Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update gaim make file so that we can use the oscar protocol State-Changed-From-To: open->closed State-Changed-By: jim State-Changed-When: Tue Oct 3 11:35:41 PDT 2000 State-Changed-Why: After discussing this with the submitter, this problem was part of an old port and doesn't occur with the latest one. Responsible-Changed-From-To: jim->freebsd-ports Responsible-Changed-By: jim Responsible-Changed-When: Tue Oct 3 11:35:41 PDT 2000 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=21418 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 11:40: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CF29237B503 for ; Tue, 3 Oct 2000 11:40:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA97551; Tue, 3 Oct 2000 11:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ice.42.org (ice.42.org [194.246.250.222]) by hub.freebsd.org (Postfix) with ESMTP id AA2F537B502 for ; Tue, 3 Oct 2000 11:32:18 -0700 (PDT) Received: by ice.42.org (Postfix, from userid 1000) id 8321F108; Tue, 3 Oct 2000 20:32:13 +0200 (CEST) Message-Id: <20001003183213.8321F108@ice.42.org> Date: Tue, 3 Oct 2000 20:32:13 +0200 (CEST) From: sec@ice.42.org Reply-To: sec@ice.42.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21731: lynx-ssl port: switch distfile to bzip2 (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21731 >Category: ports >Synopsis: lynx-ssl port: switch distfile to bzip2 (by maintainer) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 03 11:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Stefan `Sec` Zehl >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: >Description: As i was told, the lynx port uses a bzip2 distfile and the lynx-ssl port used gzip. To remove gratitous differences, lynx-ssl is switched to bzip2 now. So there is no need to refetch the whole thing. >How-To-Repeat: >Fix: Apply this: diff -burN /usr/ports/www/lynx-ssl/Makefile lynx-ssl/Makefile --- /usr/ports/www/lynx-ssl/Makefile Tue Sep 26 00:54:22 2000 +++ lynx-ssl/Makefile Tue Oct 3 20:22:45 2000 @@ -12,6 +12,7 @@ DISTNAME= lynx2.8.3rel.1 USE_OPENSSL= YES +USE_BZIP2= YES .include diff -burN /usr/ports/www/lynx-ssl/files/md5 lynx-ssl/files/md5 --- /usr/ports/www/lynx-ssl/files/md5 Mon Aug 7 11:13:19 2000 +++ lynx-ssl/files/md5 Tue Oct 3 20:24:52 2000 @@ -1,2 +1,2 @@ -MD5 (lynx2.8.3rel.1.tar.gz) = b0e35d5cd132a60bbed64edc79850717 +MD5 (lynx2.8.3rel.1.tar.bz2) = 162c7479203d97758d3cb07f385062ac MD5 (lynx-283-ssl.patch.gz) = c48607b33f493284ba60c8a431a13b03 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 11:58: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 1378437B66C; Tue, 3 Oct 2000 11:57:58 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 6CC61190E; Tue, 3 Oct 2000 13:58:07 -0500 (EST) Date: Tue, 3 Oct 2000 13:58:07 -0500 From: Will Andrews To: "James E. Housley" Cc: Maxim Sobolev , freebsd-ports@FreeBSD.ORG Subject: Re: RFC: Ports layout reorganization (Re: ports tree idea: Combine DESCR and COMMENT) Message-ID: <20001003135807.M41798@puck.firepipe.net> Reply-To: Will Andrews References: <4.3.2.20000929140626.00c3fa00@207.227.119.2> <4.3.2.20000929220000.00e0d7e0@207.227.119.2> <20000930085603.V75085@puck.firepipe.net> <20001001223942.A49213@FreeBSD.org> <39D9C856.BF69AE64@FreeBSD.org> <20001003113520.E41798@puck.firepipe.net> <39DA0D1F.C3CA823D@FreeBSD.org> <39DA0F4B.5C38DBE8@FreeBSD.org> <39DA1308.14FA3EEF@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39DA1308.14FA3EEF@FreeBSD.org>; from jeh@FreeBSD.ORG on Tue, Oct 03, 2000 at 01:10:32PM -0400 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Oct 03, 2000 at 01:10:32PM -0400, James E. Housley wrote: > Maybe, for startes do some work and have it reviewed by the current > MAINTAINERS. This would be myself and Michael Haro . :-) Which PR are you referring to? -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 12:28:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id CD31337B502; Tue, 3 Oct 2000 12:28:39 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 50DA7190E; Tue, 3 Oct 2000 14:28:48 -0500 (EST) Date: Tue, 3 Oct 2000 14:28:48 -0500 From: Will Andrews To: Maxim Sobolev Cc: Will Andrews , mharo@FreeBSD.org, Satoshi - Ports Wraith - Asami , "Jeffrey J. Mountin" , ports@FreeBSD.org, will@FreeBSD.org Subject: Re: RFC: Ports layout reorganization (Re: ports tree idea: Combine DESCR and COMMENT) Message-ID: <20001003142848.N41798@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Maxim Sobolev , mharo@FreeBSD.org, Satoshi - Ports Wraith - Asami , "Jeffrey J. Mountin" , ports@FreeBSD.org, will@FreeBSD.org References: <4.3.2.20000929140626.00c3fa00@207.227.119.2> <4.3.2.20000929220000.00e0d7e0@207.227.119.2> <20000930085603.V75085@puck.firepipe.net> <20001001223942.A49213@FreeBSD.org> <39D9C856.BF69AE64@FreeBSD.org> <20001003113520.E41798@puck.firepipe.net> <39DA0D1F.C3CA823D@FreeBSD.org> <39DA0F4B.5C38DBE8@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39DA0F4B.5C38DBE8@FreeBSD.org>; from sobomax@FreeBSD.org on Tue, Oct 03, 2000 at 07:54:36PM +0300 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Oct 03, 2000 at 07:54:36PM +0300, Maxim Sobolev wrote: > > proposing myself, becuase it would mean complete rewrite in Python :-P). Which is not acceptable since Python isn't in the base system.. ;-P > P.S. Portlint is too critical to allow it to be practically unmaintained, as we see it > currently, when it lags behind bsd.port.mk by several months. If someone else wants to do it, they just need to email me/mharo to discuss it. :-) -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 13:30: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CF3CF37B66D for ; Tue, 3 Oct 2000 13:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA61936; Tue, 3 Oct 2000 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freebsd.sinica.edu.tw (freebsd.sinica.edu.tw [140.109.13.51]) by hub.freebsd.org (Postfix) with ESMTP id 631EE37B502 for ; Tue, 3 Oct 2000 13:20:10 -0700 (PDT) Received: (from keith@localhost) by freebsd.sinica.edu.tw (8.9.3/8.9.3) id EAA22869; Wed, 4 Oct 2000 04:24:37 +0800 (CST) (envelope-from keith) Message-Id: <200010032024.EAA22869@freebsd.sinica.edu.tw> Date: Wed, 4 Oct 2000 04:24:37 +0800 (CST) From: keith@freebsd.sinica.edu.tw Reply-To: keith@freebsd.sinica.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21732: Update port: chinese/arphicttf, from maintainer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21732 >Category: ports >Synopsis: typos in chinese/arphicttf/pkg/INSTALL >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 03 13:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jing-Tang Keith Jang >Release: FreeBSD 4.0-20000406-STABLE i386 >Organization: >Environment: 4.x-stable >Description: Some embarassing typos in chinese/arphicttf/pkg/INSTALL, bkai00mp.ttf should be gkai00mp.ttf, caused by cut & paste. :\ Thanks to Zhang Shu for bug reporting. >How-To-Repeat: >Fix: --- pkg/INSTALL.orig Wed Oct 4 04:09:26 2000 +++ pkg/INSTALL Wed Oct 4 04:09:38 2000 @@ -42,10 +42,10 @@ echo ab=y:ai=0.3:gbsn00lp.ttf -ar-sung-bold-i-normal--0-0-0-0-c-0-gb2312.1980-0 >> fonts.dir # gkai00mp.ttf (GB) -echo bkai00mp.ttf -ar-kai-medium-r-normal--0-0-0-0-c-0-gb2312.1980-0 >> fonts.dir -echo ab=y:bkai00mp.ttf -ar-kai-bold-r-normal--0-0-0-0-c-0-gb2312.1980-0 >> fonts.dir -echo ai=0.3:bkai00mp.ttf -ar-kai-medium-i-normal--0-0-0-0-c-0-gb2312.1980-0 >> fonts.dir -echo ab=y:ai=0.3:bkai00mp.ttf -ar-kai-bold-i-normal--0-0-0-0-c-0-gb2312.1980-0 >> fonts.dir +echo gkai00mp.ttf -ar-kai-medium-r-normal--0-0-0-0-c-0-gb2312.1980-0 >> fonts.dir +echo ab=y:gkai00mp.ttf -ar-kai-bold-r-normal--0-0-0-0-c-0-gb2312.1980-0 >> fonts.dir +echo ai=0.3:gkai00mp.ttf -ar-kai-medium-i-normal--0-0-0-0-c-0-gb2312.1980-0 >> fonts.dir +echo ab=y:ai=0.3:gkai00mp.ttf -ar-kai-bold-i-normal--0-0-0-0-c-0-gb2312.1980-0 >> fonts.dir # Update fonts.alias, font size ranges from 8 to 128. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 13:30:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ED33937B66F for ; Tue, 3 Oct 2000 13:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA61945; Tue, 3 Oct 2000 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freebsd.sinica.edu.tw (freebsd.sinica.edu.tw [140.109.13.51]) by hub.freebsd.org (Postfix) with ESMTP id 455BC37B66E for ; Tue, 3 Oct 2000 13:28:18 -0700 (PDT) Received: (from keith@localhost) by freebsd.sinica.edu.tw (8.9.3/8.9.3) id EAA23225; Wed, 4 Oct 2000 04:32:44 +0800 (CST) (envelope-from keith) Message-Id: <200010032032.EAA23225@freebsd.sinica.edu.tw> Date: Wed, 4 Oct 2000 04:32:44 +0800 (CST) From: keith@freebsd.sinica.edu.tw Reply-To: keith@freebsd.sinica.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21733: Update port: chinese/CJK, from maintainer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21733 >Category: ports >Synopsis: Update chinese/CJK to the latest version >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 03 13:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jing-Tang Keith Jang >Release: FreeBSD 4.0-20000406-STABLE i386 >Organization: Will it be committed faster if I fill this field? :) >Environment: 4.x-stable >Description: Update chinese/CJK to the latest version. >How-To-Repeat: Should we change the name to cjk? >Fix: diff -urN CJK.old/Makefile CJK/Makefile --- CJK.old/Makefile Wed Oct 4 04:08:59 2000 +++ CJK/Makefile Wed Oct 4 01:09:33 2000 @@ -9,7 +9,7 @@ PORTVERSION= 4.3.0 CATEGORIES= chinese MASTER_SITES= ftp://freebsd.sinica.edu.tw/pub/keith/ -DISTFILES= cjk-20000418.tar.gz +DISTNAME= cjk-20001003 MAINTAINER= keith@freebsd.sinica.edu.tw @@ -23,6 +23,7 @@ USE_GMAKE= yes USE_FREETYPE= yes WRKSRC= ${WRKDIR}/cjk-current +ARPHICDIR= ${PREFIX}/share/texmf/fonts/truetype/arphic post-install: .if !defined(NOPORTDOCS) @@ -31,8 +32,14 @@ .endif ${RM} -fr ${PREFIX}/share/examples/CJK ${CP} -R ${WRKSRC}/examples ${PREFIX}/share/examples/CJK + @${MKDIR} ${ARPHICDIR} # Install Arphic fonts + @${LN} -s ${X11BASE}/lib/X11/fonts/TrueType/bkai00mp.ttf ${ARPHICDIR}/arb5_kai.ttf + @${LN} -s ${X11BASE}/lib/X11/fonts/TrueType/bsmi00lp.ttf ${ARPHICDIR}/arb5_sung.ttf + @${LN} -s ${X11BASE}/lib/X11/fonts/TrueType/gbsn00lp.ttf ${ARPHICDIR}/argb_sung.ttf + @${LN} -s ${X11BASE}/lib/X11/fonts/TrueType/gkai00mp.ttf ${ARPHICDIR}/argb_kai.ttf + @${LN} -s ttf2pk ${PREFIX}/share/texmf/ttf2tfm MAN1= bg5conv.1 cef5conv.1 cefconv.1 cefsconv.1 extconv.1 \ - hbf2gf.1 sjisconv.1 thaiconv.1 ttf2pk.1 ttf2tfm.1 + hbf2gf.1 sjisconv.1 ttf2pk.1 ttf2tfm.1 .include diff -urN CJK.old/files/md5 CJK/files/md5 --- CJK.old/files/md5 Wed Oct 4 04:08:59 2000 +++ CJK/files/md5 Tue Oct 3 14:52:42 2000 @@ -1 +1 @@ -MD5 (cjk-20000418.tar.gz) = 921a11cbb11334d85b15a2de65f8fe04 +MD5 (cjk-20001003.tar.gz) = fcc974b26e16166f80b91453ea74e915 diff -urN CJK.old/patches/patch-ac CJK/patches/patch-ac --- CJK.old/patches/patch-ac Wed Oct 4 04:08:59 2000 +++ CJK/patches/patch-ac Tue Oct 3 15:08:00 2000 @@ -1,6 +1,6 @@ --- utils/Makefile.orig Thu Jan 6 20:50:10 2000 +++ utils/Makefile Thu Jan 6 20:52:17 2000 -@@ -0,0 +1,52 @@ +@@ -0,0 +1,49 @@ +CC = /usr/bin/cc +CFLAGS = -Wall -O + @@ -28,7 +28,6 @@ + $(MAKE) -C SJISconv $@ + $(MAKE) -C extconv $@ + $(MAKE) -C pyhyphen $@ -+ $(MAKE) -C thaiconv $@ + +hbf2gf_install: + $(CHMOD) +x hbf2gf/mkinstalldirs @@ -43,7 +42,6 @@ + $(MAKE) -C extconv $@ + $(MAKE) -C lisp $@ + $(MAKE) -C pyhyphen $@ -+ $(MAKE) -C thaiconv $@ + +clean: + $(MAKE) -C Bg5conv $@ @@ -52,7 +50,6 @@ + $(MAKE) -C extconv $@ + $(MAKE) -C hbf2gf distclean + $(MAKE) -C pyhyphen $@ -+ $(MAKE) -C thaiconv $@ --- utils/Bg5conv/Makefile.orig Thu Jan 1 08:00:00 1970 +++ utils/Bg5conv/Makefile Sat Feb 20 07:17:29 1999 @@ -0,0 +1,14 @@ @@ -162,20 +159,3 @@ + +clean: + $(RM) pinyin ---- utils/thaiconv/Makefile.orig Sun Dec 13 12:00:00 1998 -+++ utils/thaiconv/Makefile Sat Feb 20 07:39:03 1999 -@@ -14,3 +14,14 @@ - c2cweb -b "The thaiconv program" -l -v thaiconv.c - $(CWEAVE) +ai thaiconv.cw - $(TEX) thaiconv -+ -+build: thaiconv -+ -+all: build -+ -+install: all -+ $(INSTALL_PROGRAM) thaiconv $(PREFIX)/bin -+ $(INSTALL_MAN) thaiconv.1 $(PREFIX)/man/man1 -+ -+clean: -+ $(RM) thaiconv diff -urN CJK.old/pkg/DEINSTALL CJK/pkg/DEINSTALL --- CJK.old/pkg/DEINSTALL Thu Jan 1 08:00:00 1970 +++ CJK/pkg/DEINSTALL Wed Oct 4 04:07:06 2000 @@ -0,0 +1,35 @@ +#!/bin/sh + +# Run just once. +if [ "x$2" != "xDEINSTALL" ]; then + exit 0 +fi + +TEXMFMAIN=`kpsexpand '$TEXMFMAIN'` +TEXMFCNF=${TEXMFMAIN}/web2c/texmf.cnf +SPECIALMAP=${TEXMFMAIN}/fontname/special.map + +# Edit web2c/texmf.cnf +sed -e "/ttf2pk/d" ${TEXMFCNF} > ${TEXMFCNF}.tmp +sed -e "/ttf2tfm/d" ${TEXMFCNF}.tmp > ${TEXMFCNF} +rm -f ${TEXMFCNF}.tmp + +# Edit fontname/special.map +sed -e "/Arphic/d" ${SPECIALMAP} > ${SPECIALMAP}.tmp +sed -e "/^arb5/d" ${SPECIALMAP}.tmp > ${SPECIALMAP} +sed -e "/^argb/d" ${SPECIALMAP} > ${SPECIALMAP}.tmp +mv -f ${SPECIALMAP}.tmp ${SPECIALMAP} + +# Delete symbolic links +rm -f ${TEXMFMAIN}/ttf2tfm +rm -f ${TEXMFMAIN}/fonts/truetype/arphic/arb5_kai.ttf +rm -f ${TEXMFMAIN}/fonts/truetype/arphic/arb5_sung.ttf +rm -f ${TEXMFMAIN}/fonts/truetype/arphic/argb_kai.ttf +rm -f ${TEXMFMAIN}/fonts/truetype/arphic/argb_sung.ttf + +# +# Update ls-R. We have to run twice to get correct result. +# Strange bug of texconfig. +# +texconfig rehash +texconfig rehash diff -urN CJK.old/pkg/PLIST CJK/pkg/PLIST --- CJK.old/pkg/PLIST Wed Oct 4 04:08:59 2000 +++ CJK/pkg/PLIST Wed Oct 4 00:07:19 2000 @@ -13,7 +13,6 @@ bin/pinyin bin/sjisconv bin/sjislatex -bin/thaiconv bin/ttf2pk bin/ttf2tfm share/doc/CJK/CEF.doc @@ -44,11 +43,12 @@ share/doc/CJK/pinyin.doc share/doc/CJK/pyhyphen.doc share/doc/CJK/ruby.doc +share/doc/CJK/thaifont.doc share/doc/CJK/vertical.doc share/emacs/site-lisp/CJK/cjkspace.el share/emacs/site-lisp/CJK/cjktilde.el -share/emacs/site-lisp/CJK/emacs-20/cjk-enc.el share/emacs/site-lisp/CJK/emacs-20.3/cjk-enc.el +share/emacs/site-lisp/CJK/emacs-20.3/thai-word.el share/emacs/site-lisp/CJK/mule-2.3/cjk-enc.el share/examples/CJK/Big5.tex share/examples/CJK/Big5vert.tex @@ -62,6 +62,7 @@ share/examples/CJK/muletest.tex share/examples/CJK/py_test.tex share/examples/CJK/rubytest.tex +share/examples/CJK/thai.tex share/texmf/fonts/tfm/arphic/arb5kai/arb5kai01.tfm share/texmf/fonts/tfm/arphic/arb5kai/arb5kai02.tfm share/texmf/fonts/tfm/arphic/arb5kai/arb5kai03.tfm @@ -232,10 +233,6 @@ share/texmf/fonts/tfm/arphic/argbsung/argbsung30.tfm share/texmf/fonts/tfm/arphic/argbsung/argbsung31.tfm share/texmf/fonts/tfm/arphic/argbsung/argbsung32.tfm -share/texmf/fonts/truetype/arphic/arb5_kai.ttf -share/texmf/fonts/truetype/arphic/arb5_sung.ttf -share/texmf/fonts/truetype/arphic/argb_kai.ttf -share/texmf/fonts/truetype/arphic/argb_sung.ttf share/texmf/hbf2gf/README share/texmf/hbf2gf/b5ka12.cfg share/texmf/hbf2gf/b5kr12.cfg @@ -270,6 +267,7 @@ share/texmf/tex/latex/CJK/CJK.enc share/texmf/tex/latex/CJK/CJK.sty share/texmf/tex/latex/CJK/CJKnumb.sty +share/texmf/tex/latex/CJK/CJKulem.sty share/texmf/tex/latex/CJK/CJKvert.sty share/texmf/tex/latex/CJK/CNS/EUC-TW.bdg share/texmf/tex/latex/CJK/CNS/EUC-TW.chr @@ -432,7 +430,7 @@ share/texmf/tex/latex/CJK/SJIS/SJIS.chr share/texmf/tex/latex/CJK/SJIS/SJIS.cpx share/texmf/tex/latex/CJK/SJIS/SJIS.enc -share/texmf/tex/latex/CJK/SJIS/SJISdnp.cpx +share/texmf/tex/latex/CJK/SJIS/SJISdnp.chr share/texmf/tex/latex/CJK/SJIS/SJISdnp.enc share/texmf/tex/latex/CJK/SJIS/c49song.fd share/texmf/tex/latex/CJK/UTF8/UTF8.bdg @@ -451,7 +449,11 @@ share/texmf/tex/latex/CJK/standard.chr share/texmf/tex/latex/CJK/standard.enc share/texmf/tex/latex/CJK/thai/c90cmr.fd -share/texmf/tex/latex/CJK/thai/thai.sty +share/texmf/tex/latex/CJK/thai/c90cmss.fd +share/texmf/tex/latex/CJK/thai/c90cmtt.fd +share/texmf/tex/latex/CJK/thai/c90dbss.fd +share/texmf/tex/latex/CJK/thai/c90nrsr.fd +share/texmf/tex/latex/CJK/thai/thaicjk.ldf share/texmf/ttf2pk/Big5.sfd share/texmf/ttf2pk/ET5.enc share/texmf/ttf2pk/EUC.sfd @@ -469,7 +471,6 @@ @dirrm share/doc/CJK/chinese @dirrm share/doc/CJK/japanese @dirrm share/doc/CJK -@dirrm share/emacs/site-lisp/CJK/emacs-20 @dirrm share/emacs/site-lisp/CJK/emacs-20.3 @dirrm share/emacs/site-lisp/CJK/mule-2.3 @dirrm share/emacs/site-lisp/CJK @@ -479,7 +480,7 @@ @dirrm share/texmf/fonts/tfm/arphic/argbkai @dirrm share/texmf/fonts/tfm/arphic/argbsung @dirrm share/texmf/fonts/tfm/arphic -@dirrm share/texmf/fonts/truetype/arphic +@unexec rmdir %D/share/texmf/fonts/truetype/arphic 2>/dev/null || true @unexec rmdir %D/share/texmf/fonts/truetype 2>/dev/null || true @dirrm share/texmf/hbf2gf @dirrm share/texmf/tex/latex/CJK/Bg5 @@ -495,4 +496,3 @@ @dirrm share/texmf/tex/latex/CJK/thai @dirrm share/texmf/tex/latex/CJK @dirrm share/texmf/ttf2pk -@unexec rm -f %D/share/texmf/ttf2tfm diff -urN CJK.old/scripts/post-install CJK/scripts/post-install --- CJK.old/scripts/post-install Wed Oct 4 04:08:59 2000 +++ CJK/scripts/post-install Wed Oct 4 00:01:07 2000 @@ -13,19 +13,12 @@ # Install ttf2pk binary in ${PORTSDIR}/print/freetype, data in ${TEXMF}/ttf2pk, # and link ${TEXMF}/ttf2tfm to ${TEXMF}/ttf2pk. -(cd ${PORTSDIR}/print/freetype/work/freetype-1.3/contrib/ttf2pk; +(cd ${PORTSDIR}/print/freetype/work/freetype-1.3.1/contrib/ttf2pk; ./configure --prefix=${PREFIX} --with-kpathsea-dir=${PREFIX}; make depend all install; rm -fr ${TEXMFMAIN}/ttf2pk ${TEXMFMAIN}/ttf2tfm; cp -R data ${TEXMFMAIN}/ttf2pk; - cd ${TEXMFMAIN}; ln -s ttf2pk ttf2tfm; ) - -# Install Arphic TTF fonts -mkdir -p ${TEXMFMAIN}/fonts/truetype/arphic -ln -s ${X11BASE}/lib/X11/fonts/TrueType/bkai00mp.ttf ${TEXMFMAIN}/fonts/truetype/arphic/arb5_kai.ttf -ln -s ${X11BASE}/lib/X11/fonts/TrueType/bsmi00lp.ttf ${TEXMFMAIN}/fonts/truetype/arphic/arb5_sung.ttf -ln -s ${X11BASE}/lib/X11/fonts/TrueType/gbsn00lp.ttf ${TEXMFMAIN}/fonts/truetype/arphic/argb_sung.ttf -ln -s ${X11BASE}/lib/X11/fonts/TrueType/gkai00mp.ttf ${TEXMFMAIN}/fonts/truetype/arphic/argb_kai.ttf + cd ${TEXMFMAIN}; ) # fontname/special.map: add arb5kai/arb5sung/argbkai/argbsung entries. if [ -n "`grep arb5kai ${TEXMFMAIN}/fontname/special.map`" ] diff -urN CJK.old/scripts/pre-build CJK/scripts/pre-build --- CJK.old/scripts/pre-build Wed Oct 4 04:08:59 2000 +++ CJK/scripts/pre-build Tue Oct 3 15:57:50 2000 @@ -9,7 +9,7 @@ echo "-----------------------------------------" exit 1 # Juse grep for 1.0 is not a preferred method, but it seems there is no -# other way solving this. +# other way identifying whether teTeX 1.0 or above is installed. elif [ -z "`head -1 ${PREFIX}/share/texmf/doc/tetex/README |grep 1\.0`" ]; then echo "-------------------------------------------" echo " You do not have teTeX-1.0 installed!" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 14:35:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ebola.biohz.net (ebola.biohz.net [206.80.1.35]) by hub.freebsd.org (Postfix) with ESMTP id 7EB8937B502; Tue, 3 Oct 2000 14:35:39 -0700 (PDT) Received: from flu (localhost [127.0.0.1]) by ebola.biohz.net (Postfix) with SMTP id EB2B83A2C9; Tue, 3 Oct 2000 14:35:38 -0700 (PDT) Message-ID: <002801c02d81$df93a440$0302010a@biohz.net> From: "Renaud Waldura" To: "Maxim Sobolev" Cc: , References: <00f101c02cf1$8ddbb2e0$0302010a@biohz.net> <39D9C609.E3BC2F8D@FreeBSD.org> Subject: Re: Problem Building ImageMagick Port Date: Tue, 3 Oct 2000 14:35:38 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org OK, that did it, although FYI I get the following warning: checking whether the linker (/usr/libexec/elf/ld) supports shared libraries... yes checking command to parse /usr/bin/nm -B output... ok checking how to hardcode library paths into programs... immediate checking for /usr/libexec/elf/ld option to reload object files... -r checking dynamic linker characteristics... freebsd4.0 ld.so checking if libtool supports shared libraries... yes *** Warning: the command libtool uses to detect shared libraries, *** /usr/bin/file, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for objdir... .libs checking for dlopen in -ldl... no checking for dlopen... yes checking for dlfcn.h... yes checking whether a program can dlopen itself... yes Thanks, --Renaud ----- Original Message ----- From: Maxim Sobolev To: Renaud Waldura Cc: ; Sent: Tuesday, October 03, 2000 4:42 AM Subject: Re: Problem Building ImageMagick Port > Renaud Waldura wrote: > > > I'm trying to build ImageMagick version 5.2.3 on FreeBSD 4.0 and it chokes > > on: > > > > ltconfig: unrecognized option `--build=i386--freebsd4.0' > > You have to reinstall libtool port from the freshly re-cvsuped ports tree. > > -Maxim > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 16:10: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2BD5A37B503 for ; Tue, 3 Oct 2000 16:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA48532; Tue, 3 Oct 2000 16:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from cocoja.holywar.net (cocoja.holywar.net [210.102.1.5]) by hub.freebsd.org (Postfix) with ESMTP id 581CF37B66C for ; Tue, 3 Oct 2000 16:08:11 -0700 (PDT) Received: (from jhp@localhost) by cocoja.holywar.net (8.11.0/8.11.0) id e93N8BW48950; Wed, 4 Oct 2000 08:08:11 +0900 (KST) (envelope-from jhp) Message-Id: <200010032308.e93N8BW48950@cocoja.holywar.net> Date: Wed, 4 Oct 2000 08:08:11 +0900 (KST) From: Park JongHwan Reply-To: jhp@cocoja.holywar.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21738: [PATCH] net/tintin++-devel md5 correction Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21738 >Category: ports >Synopsis: [PATCH] net/tintin++-devel md5 correction >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 03 16:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Park JongHwan >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: >Description: tarball on mastersite has changed to fix typo >How-To-Repeat: >Fix: --- /usr/ports/net/tintin++-devel/files/md5 Wed Sep 27 04:50:29 2000 +++ files/md5 Wed Oct 4 07:07:06 2000 @@ -1 +1 @@ -MD5 (tintin++v1.83.tar.gz) = 468f690e82bf0a511771a861dc2918cd +MD5 (tintin++v1.83.tar.gz) = 7363576e0fec8eb50eac1e1c8a202056 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 16:30: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A6B837B503 for ; Tue, 3 Oct 2000 16:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA56289; Tue, 3 Oct 2000 16:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id B03FE37B502 for ; Tue, 3 Oct 2000 16:25:39 -0700 (PDT) Received: from baby.int.thehousleys.net (baby.ipv6.thehousleys.net [3ffe:1ce3:6:0:260:8ff:fea3:7fb2]) by thehousleys.net (8.11.0/8.11.0) with ESMTP id e93NPcB05488 for ; Tue, 3 Oct 2000 19:25:38 -0400 (EDT) (envelope-from jeh@thehousleys.net) Received: (from jeh@localhost) by baby.int.thehousleys.net (8.11.0/8.11.0) id e93NPcb47590; Tue, 3 Oct 2000 19:25:38 -0400 (EDT) (envelope-from jeh) Message-Id: <200010032325.e93NPcb47590@baby.int.thehousleys.net> Date: Tue, 3 Oct 2000 19:25:38 -0400 (EDT) From: jeh@freebsd.org Reply-To: jeh@freebsd.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21739: Bring in to /etc/services healthd from IANA Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21739 >Category: ports >Synopsis: Bring in to /etc/services healthd from IANA >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 03 16:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: James E. Housley >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: >Description: I have been assigned an official port number for my sysutils/healthd port. >How-To-Repeat: >Fix: Index: services =================================================================== RCS file: /usr/home/FREEBSD_CVS/src/etc/services,v retrieving revision 1.62.2.2 diff -u -r1.62.2.2 services --- services 2000/09/05 08:38:14 1.62.2.2 +++ services 2000/10/03 23:19:33 @@ -1246,6 +1246,9 @@ nerv 1222/udp #SNI R&D network hermes 1248/tcp hermes 1248/udp +healthd 1281/tcp healthd +healthd 1281/udp healthd +# James E. Housley alta-ana-lm 1346/tcp #Alta Analytics License Manager alta-ana-lm 1346/udp #Alta Analytics License Manager bbn-mmc 1347/tcp #multi media conferencing >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 16:43: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hecky.it.northwestern.edu (hecky.acns.nwu.edu [129.105.16.51]) by hub.freebsd.org (Postfix) with ESMTP id 6B5A637B502; Tue, 3 Oct 2000 16:42:59 -0700 (PDT) Received: (from mailnull@localhost) by hecky.it.northwestern.edu (8.8.7/8.8.7) id SAA28050; Tue, 3 Oct 2000 18:42:56 -0500 (CDT) Received: from confusion.net (dhcp089155.res-hall.nwu.edu [199.74.89.155]) by hecky.acns.nwu.edu via smap (V2.0) id xma027950; Tue, 3 Oct 00 18:42:33 -0500 Message-ID: <39DA2932.4C4B1D9B@confusion.net> Date: Tue, 03 Oct 2000 13:45:06 -0500 From: Laurence Berland X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Roman Shterenzon Cc: ports@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Re: KDE2 fails to compile in strangest possible way References: <39D924D1.DA491E02@confusion.net> <970557932.39d989ec5eece@webmail.harmonic.co.il> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Why would -pipe require me to press ctrl-D to continue compilation? So far nothing else has had this issue, and i have everything using -pipe since it's in make.conf Roman Shterenzon wrote: > > Quoting Laurence Berland : > > > All, > > Trying to compile KDE 4.1 on a somewhat recent 4.1-STABLE yields some > > strange results. All appears to be going well, until it begins > > compiling the file mcopidl.cc. The precise line is > > > > c++ -DHAVE_CONFIG_H -I. -I. -I../.. -I,,.,,.dcop -I../../kdecore > > -I../../kdeui -I../../kssl -I/usr/X11R6/include/qt2 -I/usr/X11R6/include > > -I/usr/local/include -I./../mcop -I/usr/local/include > > -I/usr/local/include -O -pipe -frtti -c mcopidl.cc > > > > It doesn't fail per se, but it's been working on this for at least 7 > > hours, with no sign of anything happening, though the activity lights > > are flashing. Top shows some activity involving this process, and it > > does seem to be using a large and oft-varied amount of memory (~50-70 > > MB). Just for reference the machine is a PPro 200 with 32 MB ram, 128MB > > swap, running a generic kernel. > > > > Anyone know how long this is gonna take? > I had this couple of times back on 3.3-STABLE I think. > With some other app. > Pressing ^D made it proceed. IMHO it has to deal with "-pipe" flag to cc. > Try to omit the "-pipe" flag in /etc/make.conf and recompile. > I don't like it though; it should work ok with the "-pipe" flag. > I'm reading my mail sequentally, so it's possible that other people already > answered it. Sorry for additional traffic I might have caused :) > > --Roman Shterenzon, UNIX System Administrator and Consultant > [ Xpert UNIX Systems Ltd., Herzlia, Israel. Tel: +972-9-9522361 ] > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- Laurence Berland Intern, Flooz.com Northwestern '04 stuyman@confusion.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 17:41: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hecky.it.northwestern.edu (hecky.acns.nwu.edu [129.105.16.51]) by hub.freebsd.org (Postfix) with ESMTP id 9360A37B503; Tue, 3 Oct 2000 17:40:56 -0700 (PDT) Received: (from mailnull@localhost) by hecky.it.northwestern.edu (8.8.7/8.8.7) id TAA19692; Tue, 3 Oct 2000 19:40:55 -0500 (CDT) Received: from confusion.net (dhcp089155.res-hall.nwu.edu [199.74.89.155]) by hecky.acns.nwu.edu via smap (V2.0) id xma019420; Tue, 3 Oct 00 19:40:17 -0500 Message-ID: <39DA7C52.2047455E@confusion.net> Date: Tue, 03 Oct 2000 19:39:46 -0500 From: Laurence Berland X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Will Andrews Cc: ports@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Re: KDE2 fails to compile in strangest possible way References: <39D924D1.DA491E02@confusion.net> <20001002195559.J613@puck.firepipe.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org A brief update for all. A check indicates that mcopidl.cc is about 75K. The file has been compiling (still on that line) for close to 37 hours now. Does that still seem remotely reasonable? Will Andrews wrote: > > On Mon, Oct 02, 2000 at 07:14:09PM -0500, Laurence Berland wrote: > > Trying to compile KDE 4.1 on a somewhat recent 4.1-STABLE yields some > > strange results. All appears to be going well, until it begins > > compiling the file mcopidl.cc. The precise line is > > You mean KDE 1.94? > > > c++ -DHAVE_CONFIG_H -I. -I. -I../.. -I,,.,,.dcop -I../../kdecore > > -I../../kdeui -I../../kssl -I/usr/X11R6/include/qt2 -I/usr/X11R6/include > > -I/usr/local/include -I./../mcop -I/usr/local/include > > -I/usr/local/include -O -pipe -frtti -c mcopidl.cc > > mcopidl.cc is a huge file. If you run low on swap, it may take forever > or close to that. I recommend at least 200MB of memory minimum to > compile the entire suite (including physical and swap). > > > MB). Just for reference the machine is a PPro 200 with 32 MB ram, 128MB > > swap, running a generic kernel. > > Yeah, that's the bottleneck. For your system I suggest using packages. > Unfortunately, mcopidl.cc obviously needs to be broken up, but hasn't. > > For reference, I have a dual PIII-500 w/ 512MB of memory, and the new > box I'm building will have a dual PIII-600E w/ 640MB. The former takes > approximately 5 hours to build the entire suite. > > -- > Will Andrews - Physics Computer Network wench > The Universal Answer to All Problems - "It has something to do with physics." > -- Comic on door of Room 240, Physics Building, Purdue University -- Laurence Berland Intern, Flooz.com Northwestern '04 stuyman@confusion.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 18:23:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from femail2.sdc1.sfba.home.com (femail2.sdc1.sfba.home.com [24.0.95.82]) by hub.freebsd.org (Postfix) with ESMTP id 1D48B37B503; Tue, 3 Oct 2000 18:23:47 -0700 (PDT) Received: from home.com ([24.12.186.185]) by femail2.sdc1.sfba.home.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20001004012338.FDXM27630.femail2.sdc1.sfba.home.com@home.com>; Tue, 3 Oct 2000 18:23:38 -0700 Message-ID: <39DA2452.FC414C51@home.com> Date: Tue, 03 Oct 2000 18:24:18 +0000 From: rob X-Mailer: Mozilla 4.74 [en] (X11; U; FreeBSD 4.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Maxim Sobolev Cc: ports@FreeBSD.org Subject: Re: newby porter question References: <39D751F0.7964C004@home.com> <39D9D5C1.2943613A@FreeBSD.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Maxim Sobolev wrote: > > rob wrote: > > > I've tried porting a few Linux programs with no success. Is there > > somewhere a doc or tutorial showing a step by step process to get a > > working port, esp from Linux? I've looked at the FreeBSD porters > > manual, but it seems to mainly be concerned with getting a port to > > comply with the FreeBSD specs. Thanks, Rob. > > The things your are asking for are just too generic to be described somewhere. > In general, you have to try to get software being ported compiling/working on > FreeBSD by replacing Linuxisms with appropriate BSDisms where necessary. The > tools to be used include, but not limited to: your brain, man(1), make(1), > gdb(1), gcc(1) etc. Also good knowledge of Unix programming would be very > helpful, however its degree might vary from the task to task. > > -Maxim Thanks for replying. One port I have tried is the Linux Synaptics touch pad config utility. Its pretty small, so I thought it would be a good one to start with, but I soon realized that I would be rewriting the utility more than just porting it, especially the 'getopt long' portion seems to be very different in Linux compared to BSD. Half of the code revolves around the getopt input. I'll eventually get around to looking at it again. I noticed that it was on the "to do" list for ports. Rob. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 18:30: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BC09437B502 for ; Tue, 3 Oct 2000 18:30:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA99116; Tue, 3 Oct 2000 18:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 3 Oct 2000 18:30:04 -0700 (PDT) Message-Id: <200010040130.SAA99116@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Yen-Ming Lee Subject: Re: ports/21721: ports update Reply-To: Yen-Ming Lee Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21721; it has been noted by GNATS. From: Yen-Ming Lee To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/21721: ports update Date: Wed, 4 Oct 2000 09:19:31 +0800 (CST) Please change MAINTAINER of chinese/telnet to leeym@cae.ce.ntu.edu.tw It's my official email address. Thanks. -- Yen-Ming Lee [§õ«Û©ú] | http://cae.ce.ntu.edu.tw/~leeym/ CAE Group, Civil Engineering, NTU, Taipei, Taiwan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 18:30:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 635DB37B66D for ; Tue, 3 Oct 2000 18:30:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA99125; Tue, 3 Oct 2000 18:30:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id DE6ED37B503 for ; Tue, 3 Oct 2000 18:24:14 -0700 (PDT) Received: (from jeh@localhost) by thehousleys.net (8.11.0/8.11.0) id e941O9h06264; Tue, 3 Oct 2000 21:24:09 -0400 (EDT) (envelope-from jeh) Message-Id: <200010040124.e941O9h06264@thehousleys.net> Date: Tue, 3 Oct 2000 21:24:09 -0400 (EDT) From: jeh@freebsd.org Reply-To: jeh@freebsd.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21740: Update port: devel/portlint - sync with bsd.sites.mk Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21740 >Category: ports >Synopsis: Update port: devel/portlint - sync with bsd.sites.mk >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 03 18:30:04 PDT 2000 >Closed-Date: >Last-Modified: >Originator: James E. Housley >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: >Description: Update the SITE list portlint.pl with bsd.sites.mk I am forwarding to the maintainers for approval. >How-To-Repeat: >Fix: Index: portlint.pl =================================================================== RCS file: /usr/home/FREEBSD_CVS/ports/devel/portlint/src/portlint.pl,v retrieving revision 1.20 diff -u -r1.20 portlint.pl --- portlint.pl 2000/09/21 16:22:15 1.20 +++ portlint.pl 2000/10/04 01:22:38 @@ -175,71 +175,143 @@ my %manlangs = (); my %predefined = (); -# historical, no longer in FreeBSD's bsd.port.mk +# historical, no longer in FreeBSD's bsd.sites.mk foreach my $i (split("\n", <Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 18:32: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id 190A037B66C; Tue, 3 Oct 2000 18:32:00 -0700 (PDT) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 13gdKG-000JXE-00; Wed, 04 Oct 2000 03:26:28 +0200 Date: Wed, 4 Oct 2000 03:26:28 +0200 From: Neil Blakey-Milner To: Leif Neland Cc: Seigo Tanimura , n@nectar.com, ports@FreeBSD.org Subject: Re: Updating ports Message-ID: <20001004032628.A74975@mithrandr.moria.org> References: <14805.63360.137164.72159A@silver.carrots.uucp.r.dl.itc.u-tokyo.ac.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from leifn@neland.dk on Tue, Oct 03, 2000 at 06:51:24PM +0200 Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [ -> -ports ] On Tue 2000-10-03 (18:51), Leif Neland wrote: > > Jacques> Personally I don't want sysinstall or make world to touch my ports. > > Jacques> But a tool to do this would be great. > > > > Completely automatic update of installed ports is acutally difficult > > because we cannot get to know the language or required toolkit from > > the name of a binary. (eg emulator/wine and japanese/wine, timidity++-xaw > > and timidity++-tcltk) We can still detect and enumerate the ports that > > possibly installed old binaries, and decide which of the ports listed > > up to update. > > > Isn't enough information in /var/db/pkg? > > Perhaps a level of redirection is needed in the dependencies? (sp?) > > Something like the Debian way? > Instead of foo-1.23 being required by bar-3.34, bar should just require a > foo >1.20. > > Or even bar requires an xyzzy. > xyzzy is supplied by fee > xyzzy is supplied by fie > Then the user has the option of installing fee or fie. This really is an issue for ports@, not current@. We've had a long discussion on this, and not much has come out of it yet, but I imagine that it just needs some time to simmer at a low heat before some deep-frying. (: So far, we've identified (or, rather, some people have suggested) that we need relative versioning and virtual packages, so we've covered your suggestions. My "accurate" versioning stuff has come in (epoch, revision, just like Debian), and it'll take some time more for someone to supply and review the code for the others. I believe Satoshi is reviewing a port of the NetBSD relative versioning stuff at the moment. Virtual packages are an interesting thing, I don't believe there's code available for it, but it should be easy enough. Luckily, it seems things are progressing, and that the creative juices are flowing again. Will has a talk which includes stuff based loosely on some suggestions of mine from way-back, which he'll give at BSDcon (hopefully I can make it), and that will probably be a good brain-storming starter. So, things are looking up. I can't actually remember why I replied to this, other than to move it over to ports. My mind is a'wandering. Neil -- Neil Blakey-Milner Sunesi Clinical Systems nbm@mithrandr.moria.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 18:40: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 05FDE37B503 for ; Tue, 3 Oct 2000 18:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA02585; Tue, 3 Oct 2000 18:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 3 Oct 2000 18:40:01 -0700 (PDT) Message-Id: <200010040140.SAA02585@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Steve Price Subject: Re: ports/21740: Update port: devel/portlint - sync with bsd.sites.mk Reply-To: Steve Price Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21740; it has been noted by GNATS. From: Steve Price To: jeh@FreeBSD.ORG Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/21740: Update port: devel/portlint - sync with bsd.sites.mk Date: Tue, 3 Oct 2000 20:35:03 -0500 On Tue, Oct 03, 2000 at 09:24:09PM -0400, jeh@FreeBSD.ORG wrote: # # >Description: # # Update the SITE list portlint.pl with bsd.sites.mk Even better would be to teach portlint to grok bsd.sites.mk since the sites within each list mostly likely change more often the list of MASTER_SITE_foo variables. -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 18:43:42 2000 Delivered-To: freebsd-ports@freebsd.org Received: from 200-227-201-133-as.acessonet.com.br (200-227-201-133-as.acessonet.com.br [200.227.201.133]) by hub.freebsd.org (Postfix) with ESMTP id 7183737B503 for ; Tue, 3 Oct 2000 18:43:29 -0700 (PDT) Received: (qmail 1345 invoked by uid 1001); 4 Oct 2000 01:31:34 -0000 From: "Mario Sergio Fujikawa Ferreira" Date: Tue, 3 Oct 2000 23:31:12 -0200 To: Kent Stewart Cc: Mario Sergio Fujikawa Ferreira , FreeBSD-PORTS , will@freebsd.org Subject: Re: Errors trying to build JX-1.5.3 and CodeCrusader Message-ID: <20001003233112.A471@Fedaykin.here> References: <20000927233709.B357@Fedaykin.here> <39D97F9C.AE8C08D7@urx.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <39D97F9C.AE8C08D7@urx.com>; from kstewart@urx.com on Mon, Oct 02, 2000 at 11:41:10PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Mon, Oct 02, 2000 at 11:41:10PM -0700, Kent Stewart wrote: > I saw your updates to the make files and tried to make JX-1.5.3. I > cd'ed into x11-toolkits/jx to do the make. I can basically reproduce > the build errors by doing a make clean and then tell it to do a make. > In the past, I tried starting with CodeCrusader and doing the make > there. That was never even close to being successful. I could get a > working version of jcc by building the pieces manually but the port > system wasn't working. I know, this nice toolkit has an ugly layout for "portification"-wise speaking. Can I get away by saying that? Enough jokes. > The current make has errors at various places and the first one I saw > was the following: [elided] > The next one stopped the make and the error messages are the > following: > [elided] > gmake[1]: *** [code/JACETemplates.o] Error 1 > gmake[1]: Leaving directory > `/usr/ports/x11-toolkits/jx/work/JX-1.5.3/libjcore' > gmake: *** [libs] Error 2 > *** Error code 2 > > Stop in /usr/ports/x11-toolkits/jx. > *** Error code 1 Unfortunaly, I'll give you the worst tech support answer. I can't reproduce your problem. I've just been able to rebuilt my jx port cleanly. I am sorry. --- I'll repeat to you a drill I've heard a million times on this list. I call it the can't build it blues. It goes something like this: 1) Are you absolutely using the latest cvsup tree? Cvsup then, cvsup often. The ports tree is also maintained for the latest available FreeBSD, not old branch releases as 3. Some ports might work but there is no implied guarantee. 2) Can you check the installed version on your system of the following ports? jx depends on them. autoconf-2.13 bison-1.28 gmake-3.79.1 libtool-1.3.4_1 png-1.0.8_1 It also needs an installed XFree86 installation. I am using the latest XFree86-4.0.1_1 version, but it shouldn't make a difference whether you use either 3 or 4 version. 3) One thing I noticed was that you were using compiler optimizations. After you have checked that you are using the latest version of the aforementioned ports. You could try to rebuild jx without any /etc/make.conf optimizations. I do build mine with optimizations but it is not guaranteed that any optimizations other than -O will be safe. --- I know I might be sounding insentitive to your problem but I need to be sure you have an absolutely clean installation. If this is indeed a general problem, you can be sure I am the one of the most interested parties in both proofing it off the port and helping you out. Even if this is a problem particular to your system, I would be glad to try helping you find it. However, in the oftly even that my system is the odd event meaning: it is building a port that won't build anywhere else. Could someone on the list build the jx port for a cross check? will? sobomax? (I know I am abusing, but could you guys?) By the way, is there a specific committer provision (place) to build ports when in need of additional crosscheck? -- Mario S. F. Ferreira - UnB - Brazil - "I guess this is a signature." lioux at ( freebsd dot org | linf dot unb dot br ) flames to beloved devnull@someotherworldbeloworabove.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 18:50: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AE3F37B502 for ; Tue, 3 Oct 2000 18:50:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA05741; Tue, 3 Oct 2000 18:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 3 Oct 2000 18:50:03 -0700 (PDT) Message-Id: <200010040150.SAA05741@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "James E. Housley" Subject: Re: ports/21740: Update port: devel/portlint - sync with bsd.sites.mk Reply-To: "James E. Housley" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21740; it has been noted by GNATS. From: "James E. Housley" To: Steve Price Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/21740: Update port: devel/portlint - sync with bsd.sites.mk Date: Tue, 03 Oct 2000 21:39:58 -0400 Steve Price wrote: > > On Tue, Oct 03, 2000 at 09:24:09PM -0400, jeh@FreeBSD.ORG wrote: > # > # >Description: > # > # Update the SITE list portlint.pl with bsd.sites.mk > > Even better would be to teach portlint to grok bsd.sites.mk since > the sites within each list mostly likely change more often the > list of MASTER_SITE_foo variables. > I agree. But I thought I would learn to walk upright without dragging my nuckles on the ground before flying super-sonic jets. Jim -- James E. Housley Hi! I'm a .signature virus! Copy me in your ~/.signature to help me spread! <- Save this lifeform ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 18:56:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id 5D8E937B502 for ; Tue, 3 Oct 2000 18:56:45 -0700 (PDT) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 13gdnK-000JbY-00; Wed, 04 Oct 2000 03:56:30 +0200 Date: Wed, 4 Oct 2000 03:56:30 +0200 From: Neil Blakey-Milner To: Michael Lucas Cc: ports@freebsd.org Subject: Re: basic ports question Message-ID: <20001004035630.A75306@mithrandr.moria.org> References: <20001003134048.A68307@blackhelicopters.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001003134048.A68307@blackhelicopters.org>; from mwlucas@blackhelicopters.org on Tue, Oct 03, 2000 at 01:40:48PM -0400 Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue 2000-10-03 (13:40), Michael Lucas wrote: > Hello, > > I'm considering writing an article about modifying existing ports to > add new functions. > > Could some kind person take a look at the attached patch to > security/snort/Makefile, and tell me if this is the proper approach? > > If so, I'll send-pr it. > > Thanks, > Michael > > -- > Michael Lucas > mwlucas@blackhelicopters.org > http://www.blackhelicopters.org/~mwlucas/ > Big Scary Daemons: http://www.oreillynet.com/pub/q/Big_Scary_Daemons > *** Makefile.orig Sat Sep 2 13:23:40 2000 > --- Makefile Tue Oct 3 13:22:05 2000 > *************** > *** 13,20 **** > --- 13,29 ---- > > MAINTAINER= dirk@FreeBSD.org > > + .if defined(USE_MYSQL) > + LIB_DEPENDS+= mysqlclient.6:${PORTSDIR}/databases/mysql322-client > + .endif > + > GNU_CONFIGURE= yes > MAN8= snort.8 > + > + .if defined(USE_MYSQL) > + CONFIGURE_ARGS+= --with-mysql-includes=${LOCALBASE}/include/mysql \ > + --with-mysql-libraries=${LOCALBASE}/lib/mysql > + .endif > > post-install: > ${MKDIR} ${PREFIX}/share/snort If it's a user-tuneable bit you're trying to make, it's WITH_MYSQL, not USE_MYSQL. USE_* is reserved for internal ports use, and WITH_* is reserved for user-serviceable switches. So, for example you might end up with: .if defined(WITH_QT) USE_QT= yes .endif Because the user specifies WITH_QT, so the port specifies USE_QT so that bsd.port.mk does the right magic. Neil -- Neil Blakey-Milner Sunesi Clinical Systems nbm@mithrandr.moria.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 19: 0:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BBBB537B503; Tue, 3 Oct 2000 19:00:13 -0700 (PDT) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA09082; Tue, 3 Oct 2000 19:00:13 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Tue, 3 Oct 2000 19:00:13 -0700 (PDT) From: Message-Id: <200010040200.TAA09082@freefall.freebsd.org> To: nbm@FreeBSD.org, freebsd-ports@FreeBSD.org, nbm@FreeBSD.org Subject: Re: ports/21719: New Port: Courier Mail Suite Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New Port: Courier Mail Suite Responsible-Changed-From-To: freebsd-ports->nbm Responsible-Changed-By: nbm Responsible-Changed-When: Tue Oct 3 18:57:46 PDT 2000 Responsible-Changed-Why: I've got a proto-port here of my own, and I maintain courier-imap and sqwebmail already, so I just want to see which one is better. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21719 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 19:21: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hotmail.com (oe46.law3.hotmail.com [209.185.240.214]) by hub.freebsd.org (Postfix) with ESMTP id DF74737B66F for ; Tue, 3 Oct 2000 19:21:07 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 3 Oct 2000 19:21:07 -0700 X-Originating-IP: [209.156.114.215] From: "royceyeung" To: Cc: Subject: question Date: Tue, 3 Oct 2000 04:30:54 -1000 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C02CF2.B8295C40" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Message-ID: X-OriginalArrivalTime: 04 Oct 2000 02:21:07.0678 (UTC) FILETIME=[C0FB1FE0:01C02DA9] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C02CF2.B8295C40 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I setup this DSD OS already. when I restart the PC, the OS need to input = the login name, but i cannot find it , what can i put it in ------=_NextPart_000_0005_01C02CF2.B8295C40 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I setup this DSD OS already. when I = restart the PC,=20 the OS need to input the login name, but i cannot find it , what can i = put it=20 in
------=_NextPart_000_0005_01C02CF2.B8295C40-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 20: 4: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id DA3B337B502; Tue, 3 Oct 2000 20:03:58 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 79D151953; Tue, 3 Oct 2000 22:04:12 -0500 (EST) Date: Tue, 3 Oct 2000 22:04:12 -0500 From: Will Andrews To: Laurence Berland Cc: Roman Shterenzon , ports@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Re: KDE2 fails to compile in strangest possible way Message-ID: <20001003220412.W41798@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Laurence Berland , Roman Shterenzon , ports@FreeBSD.ORG, stable@FreeBSD.ORG References: <39D924D1.DA491E02@confusion.net> <970557932.39d989ec5eece@webmail.harmonic.co.il> <39DA2932.4C4B1D9B@confusion.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39DA2932.4C4B1D9B@confusion.net>; from stuyman@confusion.net on Tue, Oct 03, 2000 at 01:45:06PM -0500 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Oct 03, 2000 at 01:45:06PM -0500, Laurence Berland wrote: > Why would -pipe require me to press ctrl-D to continue compilation? So > far nothing else has had this issue, and i have everything using -pipe > since it's in make.conf Roman may be on the point here, try his suggestion and let me know. -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 20:10:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 8126E37B502; Tue, 3 Oct 2000 20:10:13 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 2165B1953; Tue, 3 Oct 2000 22:10:28 -0500 (EST) Date: Tue, 3 Oct 2000 22:10:28 -0500 From: Will Andrews To: Steve Price Cc: freebsd-ports@FreeBSD.ORG, FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/21740: Update port: devel/portlint - sync with bsd.sites.mk Message-ID: <20001003221028.X41798@puck.firepipe.net> Reply-To: Will Andrews References: <200010040140.SAA02585@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010040140.SAA02585@freefall.freebsd.org>; from sprice@hiwaay.net on Tue, Oct 03, 2000 at 06:40:01PM -0700 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Oct 03, 2000 at 06:40:01PM -0700, Steve Price wrote: > Even better would be to teach portlint to grok bsd.sites.mk since > the sites within each list mostly likely change more often the > list of MASTER_SITE_foo variables. This is intended for Portlint3 to cover. Like I said before, anyone who has time & desire & knowledge of Perl can contact me and Michael about doing the code. Steve, why doesn't GNATS set the Reply-To on its emails to FreeBSD-gnats-submit@FreeBSD.org instead of freebsd-ports@ ? -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 20:20:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 910C337B66D for ; Tue, 3 Oct 2000 20:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA38232; Tue, 3 Oct 2000 20:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 3 Oct 2000 20:20:02 -0700 (PDT) Message-Id: <200010040320.UAA38232@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: Re: ports/21740: Update port: devel/portlint - sync with bsd.sites.mk Reply-To: Will Andrews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21740; it has been noted by GNATS. From: Will Andrews To: Steve Price Cc: freebsd-ports@FreeBSD.ORG, FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/21740: Update port: devel/portlint - sync with bsd.sites.mk Date: Tue, 3 Oct 2000 22:10:28 -0500 On Tue, Oct 03, 2000 at 06:40:01PM -0700, Steve Price wrote: > Even better would be to teach portlint to grok bsd.sites.mk since > the sites within each list mostly likely change more often the > list of MASTER_SITE_foo variables. This is intended for Portlint3 to cover. Like I said before, anyone who has time & desire & knowledge of Perl can contact me and Michael about doing the code. Steve, why doesn't GNATS set the Reply-To on its emails to FreeBSD-gnats-submit@FreeBSD.org instead of freebsd-ports@ ? -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 20:56: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from patrol.bitsurf.net (c158457-a.frmt1.sfba.home.com [24.9.169.120]) by hub.freebsd.org (Postfix) with ESMTP id 8D0E137B66D; Tue, 3 Oct 2000 20:55:57 -0700 (PDT) Received: (from mharo@localhost) by patrol.bitsurf.net (8.9.3/8.9.3) id UAA18313; Tue, 3 Oct 2000 20:55:57 -0700 (PDT) (envelope-from mharo) Date: Tue, 3 Oct 2000 20:55:56 -0700 From: Michael Haro To: Maxim Sobolev Cc: mharo@FreeBSD.org, Will Andrews , Satoshi - Ports Wraith - Asami , "Jeffrey J. Mountin" , ports@FreeBSD.org, will@FreeBSD.org Subject: Re: RFC: Ports layout reorganization (Re: ports tree idea: Combine DESCR and COMMENT) Message-ID: <20001003205556.A11981@FreeBSD.org> Reply-To: mharo@FreeBSD.org References: <"Jeffrey <4.3.2.20000929140626.00c3fa00@207.227.119.2> <4.3.2.20000929220000.00e0d7e0@207.227.119.2> <20000930085603.V75085@puck.firepipe.net> <20001001223942.A49213@FreeBSD.org> <39D9C856.BF69AE64@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="rwEMma7ioTxnRzrJ" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39D9C856.BF69AE64@FreeBSD.org>; from sobomax@FreeBSD.org on Tue, Oct 03, 2000 at 02:51:50PM +0300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --rwEMma7ioTxnRzrJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 03, 2000 at 02:51:50PM +0300, Maxim Sobolev wrote: > Michael Haro wrote: >=20 > > On Sat, Sep 30, 2000 at 08:56:03AM -0500, Will Andrews wrote: > > > > > > I'll take care of it and review with Michael for portlint. That said= , I > > > should probably add PORTREVISION/PORTEPOCH && INSTALLS_SHLIB. > > > > That sounds like a good plan to me =3D) > > BTW, I'm still alive. Just really busy at work. >=20 > Michael and Will, >=20 > BTW please considering a more modulared structure for portlint2, so anybo= dy can > easily add his own checking module (preferrably just as a separate file l= oaded > at runtime) w/o the need to hack huge monolitic script and disturb mainta= iners > at every small occasion. That was one of the things I had planned for portlint 3 (should I ever=20 have time to work on it). I hadn't quite gotten as far as seperate files but I had planned to use seperate subroutines for each check so that additional checks could be implemented by just adding a new subroutine. There is probably a small preformance hit by doing this, but I think it makes things easier to read and isn't that great of an impact. If you would like to help finish converting the checks in portlint 2=20 (current version) into portlint 3 (future version), check out http://people.freebsd.org/~mharo/portlint3/ to see what is currently done. Michael --rwEMma7ioTxnRzrJ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 5.0i for non-commercial use MessageID: kxkJafOleaw5vrTaFLym4Kbw67lUIXwa iQA/AwUBOdqqTOKkMfh7htP/EQKj2wCeNW0zycS4Y/JU2kVJL6ubrWUI5X4An1hf hIzkBt4EHkn/g3Ng6B+VJGeX =Hi/S -----END PGP SIGNATURE----- --rwEMma7ioTxnRzrJ-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 20:58:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from patrol.bitsurf.net (c158457-a.frmt1.sfba.home.com [24.9.169.120]) by hub.freebsd.org (Postfix) with ESMTP id EF86D37B503; Tue, 3 Oct 2000 20:58:23 -0700 (PDT) Received: (from mharo@localhost) by patrol.bitsurf.net (8.9.3/8.9.3) id UAA23125; Tue, 3 Oct 2000 20:58:23 -0700 (PDT) (envelope-from mharo) Date: Tue, 3 Oct 2000 20:58:23 -0700 From: Michael Haro To: Maxim Sobolev Cc: Will Andrews , mharo@FreeBSD.org, Satoshi - Ports Wraith - Asami , "Jeffrey J. Mountin" , ports@FreeBSD.org, will@FreeBSD.org Subject: Re: RFC: Ports layout reorganization (Re: ports tree idea: Combine DESCR and COMMENT) Message-ID: <20001003205823.B11981@FreeBSD.org> Reply-To: mharo@FreeBSD.org References: <"Jeffrey <4.3.2.20000929140626.00c3fa00@207.227.119.2> <4.3.2.20000929220000.00e0d7e0@207.227.119.2> <20000930085603.V75085@puck.firepipe.net> <20001001223942.A49213@FreeBSD.org> <39D9C856.BF69AE64@FreeBSD.org> <20001003113520.E41798@puck.firepipe.net> <39DA0D1F.C3CA823D@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="hQiwHBbRI9kgIhsi" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39DA0D1F.C3CA823D@FreeBSD.org>; from sobomax@FreeBSD.org on Tue, Oct 03, 2000 at 07:45:19PM +0300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --hQiwHBbRI9kgIhsi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 03, 2000 at 07:45:19PM +0300, Maxim Sobolev wrote: > Will Andrews wrote: > > > > This is slated for portlint3, a complete rewrite. However, both of us > > are bogged down with other responsibilities. Portlint just doesn't rank > > too high on either of our priority listings. >=20 > Then put it on giveaway list and seek for a new maintainer. I'm pretty su= re that > there are many folks out of there who might want to maintain it (no, I'm = not > proposing myself, becuase it would mean complete rewrite in Python :-P). I've asked the ports list a few times in the past if anyone would like to contribute to portlint and each time nobody steps up. If someone wants to help out, please feel free to email me. I'd like to oversee the portlint project but don't have time at the moment to do any actual coding. Michael --hQiwHBbRI9kgIhsi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 5.0i for non-commercial use MessageID: ifAVEZNsjkKOrW6fpsbeGFnLMeX11hZU iQA/AwUBOdqq3uKkMfh7htP/EQKtaQCg3LrWTSIcDG3JETzexQUefLlE5z8An1HZ sT6049+zJH7nMgS51uDV6VUB =Emch -----END PGP SIGNATURE----- --hQiwHBbRI9kgIhsi-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 21: 3:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BAA5A37B66C; Tue, 3 Oct 2000 21:03:16 -0700 (PDT) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA53764; Tue, 3 Oct 2000 21:03:16 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Tue, 3 Oct 2000 21:03:16 -0700 (PDT) From: Message-Id: <200010040403.VAA53764@freefall.freebsd.org> To: jeh@freebsd.org, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21740: Update port: devel/portlint - sync with bsd.sites.mk Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: devel/portlint - sync with bsd.sites.mk State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Tue Oct 3 21:03:03 PDT 2000 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=21740 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 21:10:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hecky.it.northwestern.edu (hecky.acns.nwu.edu [129.105.16.51]) by hub.freebsd.org (Postfix) with ESMTP id C21ED37B503; Tue, 3 Oct 2000 21:10:04 -0700 (PDT) Received: (from mailnull@localhost) by hecky.it.northwestern.edu (8.8.7/8.8.7) id XAA25437; Tue, 3 Oct 2000 23:10:02 -0500 (CDT) Received: from confusion.net (dhcp089155.res-hall.nwu.edu [199.74.89.155]) by hecky.acns.nwu.edu via smap (V2.0) id xma025368; Tue, 3 Oct 00 23:09:34 -0500 Message-ID: <39DAAD5F.184E6E6@confusion.net> Date: Tue, 03 Oct 2000 23:09:03 -0500 From: Laurence Berland X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Will Andrews Cc: Roman Shterenzon , ports@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Re: KDE2 fails to compile in strangest possible way References: <39D924D1.DA491E02@confusion.net> <970557932.39d989ec5eece@webmail.harmonic.co.il> <39DA2932.4C4B1D9B@confusion.net> <20001003220412.W41798@puck.firepipe.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Despite my having no clue why that would work, I tried this suggestion. I really did want it to make things better. It did not change anything, and the process is bubbling along...grrrr...this just doesn't seem right. Will Andrews wrote: > > On Tue, Oct 03, 2000 at 01:45:06PM -0500, Laurence Berland wrote: > > Why would -pipe require me to press ctrl-D to continue compilation? So > > far nothing else has had this issue, and i have everything using -pipe > > since it's in make.conf > > Roman may be on the point here, try his suggestion and let me know. > > -- > Will Andrews - Physics Computer Network wench > The Universal Answer to All Problems - "It has something to do with physics." > -- Comic on door of Room 240, Physics Building, Purdue University > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- Laurence Berland Intern, Flooz.com Northwestern '04 stuyman@confusion.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 21:49:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hecky.it.northwestern.edu (hecky.acns.nwu.edu [129.105.16.51]) by hub.freebsd.org (Postfix) with ESMTP id 7C0ED37B503; Tue, 3 Oct 2000 21:49:09 -0700 (PDT) Received: (from mailnull@localhost) by hecky.it.northwestern.edu (8.8.7/8.8.7) id XAA08528; Tue, 3 Oct 2000 23:49:07 -0500 (CDT) Received: from confusion.net (dhcp089155.res-hall.nwu.edu [199.74.89.155]) by hecky.acns.nwu.edu via smap (V2.0) id xma008450; Tue, 3 Oct 00 23:48:48 -0500 Message-ID: <39DAB690.3686A882@confusion.net> Date: Tue, 03 Oct 2000 23:48:17 -0500 From: Laurence Berland X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Will Andrews , Roman Shterenzon , ports@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Re: KDE2 fails to compile in strangest possible way References: <39D924D1.DA491E02@confusion.net> <970557932.39d989ec5eece@webmail.harmonic.co.il> <39DA2932.4C4B1D9B@confusion.net> <20001003220412.W41798@puck.firepipe.net> <39DAAD5F.184E6E6@confusion.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've retried compiling this without -pipe by hand, and that has no effect. I've tried fiddling with the nice of the process, going all the way to -20, which has no effect. According to top, the process ends up almost always being in state swread with a pri of -22. I take this to mean we're waiting to read from something, but I don't know. Sincerely yours, Exasperated in Evanston Laurence Berland wrote: > > Despite my having no clue why that would work, I tried this suggestion. > I really did want it to make things better. It did not change anything, > and the process is bubbling along...grrrr...this just doesn't seem > right. > > Will Andrews wrote: > > > > On Tue, Oct 03, 2000 at 01:45:06PM -0500, Laurence Berland wrote: > > > Why would -pipe require me to press ctrl-D to continue compilation? So > > > far nothing else has had this issue, and i have everything using -pipe > > > since it's in make.conf > > > > Roman may be on the point here, try his suggestion and let me know. > > > > -- > > Will Andrews - Physics Computer Network wench > > The Universal Answer to All Problems - "It has something to do with physics." > > -- Comic on door of Room 240, Physics Building, Purdue University > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-stable" in the body of the message > > -- > Laurence Berland > Intern, Flooz.com > Northwestern '04 > stuyman@confusion.net > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- Laurence Berland Intern, Flooz.com Northwestern '04 stuyman@confusion.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 21:52:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from maynard.mail.mindspring.net (maynard.mail.mindspring.net [207.69.200.243]) by hub.freebsd.org (Postfix) with ESMTP id 6355F37B502; Tue, 3 Oct 2000 21:52:20 -0700 (PDT) Received: from bubble.hip.berkeley.edu (sji-ca42-27.ix.netcom.com [209.111.212.27]) by maynard.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id AAA12082; Wed, 4 Oct 2000 00:52:12 -0400 (EDT) Received: (from asami@localhost) by bubble.hip.berkeley.edu (8.9.3/8.8.8) id MAA01479; Tue, 3 Oct 2000 12:46:58 -0700 (PDT) (envelope-from asami) To: Ade Lovett Cc: sobomax@FreeBSD.org, reg@FreeBSD.org, freebsd-ports@FreeBSD.org, vanilla@FreeBSD.org Subject: Re: HEADS UP: USE_GTK and USE_GNOME References: <20001002012649.G30468@shale.csir.co.za> <39D86165.C21837F1@FreeBSD.org> <20001002102510.H15530@supernews.net> <39D8B9F6.C55F8257@FreeBSD.org> <20001002101657.J30468@shale.csir.co.za> <39D8C684.8A438F60@FreeBSD.org> <20001002132656.K15530@FreeBSD.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 03 Oct 2000 12:46:57 -0700 In-Reply-To: Ade Lovett's message of "Mon, 2 Oct 2000 13:26:56 -0500" Message-ID: Lines: 28 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Ade Lovett * This is why, with Gnome 1.4, things are changing. There will be two * meta-ports, one called x11/gnome, which will contain a "minimal" * (if that means anything) installation. Almost certainly none of * the applications that are currently present, just the core libraries, * basic widget sets, etc.) - if a port is GNOMEish, then it will simply * need to depend on this port. * * It may be possible for ports to use only parts of x11/gnome to actually * run, but I (at least) will consider such ports to be "unsupported", * and won't test them should x11/gnome (or its components) get updated. * * Alongside this will be a new meta-port, x11/gnome-extra sounds like a * good name right now, which will initially be a list of RUN_DEPENDS * of applications that are currently in x11/gnome, and possibly add * a few more. * * Don't base any assumptions on the existing x11/gnome metaport, * it's not going to be recognizable soon. I don't have a problem with the minimalist approach, but I think the new "minimal" gnome should be called something else. When someone clicks on the "install gnome" button in sysinstall, they will get x11/gnome, which has always been the meta-port that includes the whole set. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 22: 0:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hub.lovett.com (hub.lovett.com [216.60.121.161]) by hub.freebsd.org (Postfix) with ESMTP id 29A7D37B503; Tue, 3 Oct 2000 22:00:49 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13ggfc-0001Jq-00; Wed, 04 Oct 2000 00:00:44 -0500 Date: Wed, 4 Oct 2000 00:00:44 -0500 From: Ade Lovett To: Satoshi - Ports Wraith - Asami Cc: freebsd-ports@FreeBSD.org Subject: Re: HEADS UP: USE_GTK and USE_GNOME Message-ID: <20001004000044.F20891@FreeBSD.org> References: <20001002012649.G30468@shale.csir.co.za> <39D86165.C21837F1@FreeBSD.org> <20001002102510.H15530@supernews.net> <39D8B9F6.C55F8257@FreeBSD.org> <20001002101657.J30468@shale.csir.co.za> <39D8C684.8A438F60@FreeBSD.org> <20001002132656.K15530@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from asami@FreeBSD.org on Tue, Oct 03, 2000 at 12:46:57PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Oct 03, 2000 at 12:46:57PM -0700, Satoshi - Ports Wraith - Asami wrote: > I don't have a problem with the minimalist approach, but I think the > new "minimal" gnome should be called something else. When someone > clicks on the "install gnome" button in sysinstall, they will get > x11/gnome, which has always been the meta-port that includes the whole > set. Mental note to self: x11/gnome "depends on" x11/gnome-base and x11/gnome-extra (hyphens intentional, to differentiate from other gnome ports, that don't have hyphens). Better? That way, the end-user who clicks on the "I want GNOME" button gets a fully-functional system, and those that are just developing or testing gnome ports should generally only have to worry about have gnome-base installed. Whilst there will be screams of "bloat", having as few different types of GNOME dependency as possible makes things a lot easier on everybody. -aDe -- Ade Lovett, Austin, TX. ade@FreeBSD.org FreeBSD: The Power to Serve http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 23: 5: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from 2711.dynacom.net (2711.dynacom.net [206.107.213.3]) by hub.freebsd.org (Postfix) with ESMTP id 3601937B66C; Tue, 3 Oct 2000 23:05:00 -0700 (PDT) Received: from urx.com (dsl1-160.dynacom.net [206.159.132.160]) by 2711.dynacom.net (Build 101 8.9.3/NT-8.9.3) with ESMTP id XAA01557; Tue, 03 Oct 2000 23:04:48 -0700 Message-ID: <39DAC880.8D4305AC@urx.com> Date: Tue, 03 Oct 2000 23:04:48 -0700 From: Kent Stewart Reply-To: kstewart@urx.com Organization: Dynacom X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Mario Sergio Fujikawa Ferreira , FreeBSD Ports , will@freebsd.org Subject: Re: Errors trying to build JX-1.5.3 and CodeCrusader References: <20000927233709.B357@Fedaykin.here> <39D97F9C.AE8C08D7@urx.com> <20001003233112.A471@Fedaykin.here> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Mario Sergio Fujikawa Ferreira wrote: > > Hi, > > On Mon, Oct 02, 2000 at 11:41:10PM -0700, Kent Stewart wrote: > > I saw your updates to the make files and tried to make JX-1.5.3. I > > cd'ed into x11-toolkits/jx to do the make. I can basically reproduce > > the build errors by doing a make clean and then tell it to do a make. > > In the past, I tried starting with CodeCrusader and doing the make > > there. That was never even close to being successful. I could get a > > working version of jcc by building the pieces manually but the port > > system wasn't working. > > I know, this nice toolkit has an ugly layout for > "portification"-wise speaking. Can I get away by saying that? > Enough jokes. > > > The current make has errors at various places and the first one I saw > > was the following: > > [elided] > > > The next one stopped the make and the error messages are the > > following: > > > > [elided] > > > gmake[1]: *** [code/JACETemplates.o] Error 1 > > gmake[1]: Leaving directory > > `/usr/ports/x11-toolkits/jx/work/JX-1.5.3/libjcore' > > gmake: *** [libs] Error 2 > > *** Error code 2 > > > > Stop in /usr/ports/x11-toolkits/jx. > > *** Error code 1 > > Unfortunaly, I'll give you the worst tech support answer. > I can't reproduce your problem. I've just been able to rebuilt my > jx port cleanly. I am sorry. It isn't the first time I've heard that. My usual response is that Murphy decided a long time ago to let me find things like this. I've gotten so that I joke that if there are 2+ problems in a product, I will encounter one of them :). > > --- > I'll repeat to you a drill I've heard a million > times on this list. I call it the can't build it blues. > It goes something like this: > > 1) Are you absolutely using the latest cvsup tree? > Cvsup then, cvsup often. The ports tree is also maintained > for the latest available FreeBSD, not old branch releases > as 3. Some ports might work but there is no implied > guarantee. I cvsup'ed ports until I got your recent mods to the make files before I started this exercise. Then I started my builds. > > 2) Can you check the installed version on your system of > the following ports? jx depends on them. > > autoconf-2.13 > bison-1.28 > gmake-3.79.1 > libtool-1.3.4_1 > png-1.0.8_1 autoconf-2.13 Automatically configure source code on many Un*x platforms bison-1.28 A parser generator from FSF, (mostly) compatible with Yacc gmake-3.79.1 GNU version of 'make' utility libtool-1.3.4_1 Generic shared library support script png-1.0.8_1 Library for manipulating PNG images There was some confusion here. I had done some "make deinstall and make reinstall"'s but that left a confused pkg_db. I went through and deleted all of the duplicates. I also rm -rf'ed x11-tookits/jx and devel/codecrusader. My version of CodeCrusade went back to the old style package, which would build on my system just fine. I may have had some garbage left around. I finally bought into your new structure and decided it was time to make it work. I'm not totally dedicated since I have two machines with the old structure still on them :). For starters, I have a full version of ACE on my system, which the codecrusader system is supposed to support, and so I have an environmental variable for ACE_ROOT. I didn't have that at first and was seeing the same errors. It still comes down to the templates and errors off. The 2nd make also dies and I captured it. It is available at http://dsl1-160.dynacom.net/codecrusade.txt Next, I removed the ACE_ROOT environmental, did a make clean in codecrusader and jx, and cd'ed back to codecrusader and did a make. I am capturing that as http://dsl1-160.dynacom.net/codecrusader.msgs. One of the recurring sets of error messages when you make CodeCrusader are the following: ===> Applying FreeBSD patches for code_crusader-2.1.4_1 ===> Configuring for code_crusader-2.1.4_1 ===> Building for code_crusader-2.1.4_1 cd: can't cd to ACE/ACE_wrappers makemake: invalid path -I../../include/jcore makemake: invalid path -I../../include/jx makemake: invalid path -I../../include/jtree makemake: invalid path -I../../include/jtoolbar makemake: invalid path -I../../include/menu_image and etc. Even with what appear to be serious error messages I now have a version of Codecrusader based on your port. When it cd's into some of the directories, it claims there is nothing to do, which means to me the "make clean" of the first build didn't completely work and there is cruft left behind. > > It also needs an installed XFree86 installation. I am > using the latest XFree86-4.0.1_1 version, but it shouldn't > make a difference whether you use either 3 or 4 version. I'm using 3.3.6. > > 3) One thing I noticed was that you were using compiler > optimizations. After you have checked that you are using the latest > version of the aforementioned ports. You could try to rebuild jx > without any /etc/make.conf optimizations. I do build mine with > optimizations but it is not guaranteed that any optimizations > other than -O will be safe. I dropped everything but the -O. > --- > > I know I might be sounding insentitive to your problem but > I need to be sure you have an absolutely clean installation. If > this is indeed a general problem, you can be sure I am the one of > the most interested parties in both proofing it off the port and > helping you out. It is now. Nothing was left of jx/ and codecrusader/ when I started. > Even if this is a problem particular to your system, I > would be glad to try helping you find it. I can capture a compete build and leave it on my server. That way we don't crude up the list. The upload side of my DSL isn't great but it is 128kb. The file containing the full set of build messages is only 249KB. Kent > > However, in the oftly even that my system is the odd event > meaning: it is building a port that won't build anywhere else. > Could someone on the list build the jx port for a cross check? > will? sobomax? (I know I am abusing, but could you guys?) > By the way, is there a specific committer provision (place) > to build ports when in need of additional crosscheck? > > -- > Mario S. F. Ferreira - UnB - Brazil - "I guess this is a signature." > lioux at ( freebsd dot org | linf dot unb dot br ) > flames to beloved devnull@someotherworldbeloworabove.org > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message -- Kent Stewart Richland, WA mailto:kbstew99@hotmail.com http://kstewart.urx.com/kstewart/index.html FreeBSD News http://daily.daemonnews.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Oct 3 23:10: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D00C537B66C for ; Tue, 3 Oct 2000 23:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA04403; Tue, 3 Oct 2000 23:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 3 Oct 2000 23:10:02 -0700 (PDT) Message-Id: <200010040610.XAA04403@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Trevor Johnson Subject: Re: ports/20491: AbiWord-0.7.10 fails to compile on FreeBSD-4.1 Reply-To: Trevor Johnson Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/20491; it has been noted by GNATS. From: Trevor Johnson To: Ade Lovett , Steve Davidson , Alec Wolman Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/20491: AbiWord-0.7.10 fails to compile on FreeBSD-4.1 Date: Wed, 4 Oct 2000 02:02:55 -0400 (EDT) > I'm handing this back to the -ports community at large. > AbiWord is a mess, including its own copies of libole2, expat, > and iconv (which is the problem here). For this to be done > right, appropriate LIB_DEPENDS need adding to the Makefile and > incredible amounts of hackery will be needed in the various > Makefiles to link against these external libraries. > > Oh, and an upgrade to 0.7.11 didn't help. I made a simple attempt (no deep hacks) at updating the port to 0.7.11. It compiles for me, but crashes when I run it, after displaying an error message about not being able to find its fonts. I noticed the names of many of the fonts (in the fonts.dir file) have spaces in them, but without the double quotes around them that the mkfontdir man page says are needed. I tried adding the quotes and restarting X, but it made no difference. I made a patch of what I have, not including the quotes in the fonts.dir file: http://people.freebsd.org/~trevor/ports/abiword.diff.gz -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 0:10:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from farley.org (farley.org [216.140.158.72]) by hub.freebsd.org (Postfix) with ESMTP id 8731A37B503 for ; Wed, 4 Oct 2000 00:10:53 -0700 (PDT) Received: from thor.farley.org ([192.168.1.5]) by farley.org with esmtp (Exim 3.03 #1) id 13gavv-000Lnq-00 for freebsd-ports@freebsd.org; Tue, 03 Oct 2000 17:53:11 -0500 Date: Tue, 3 Oct 2000 17:53:01 -0500 (CDT) From: Sean Farley X-Sender: sean@thor.farley.org To: freebsd-ports@freebsd.org Subject: Shared library versioning in a new port Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I am currently testing out my first port, and I have a problem. It seems that the shared libraries being installed are using the following syntax: libfoo.so.x.y libbar.so.x.y This gives me no problem for the install but during uninstall the port complains about missing files such as: libfoo.so.x libbar.so.x Why is the install chopping off those minor version numbers. Nothing in the Porter's Handbook (http://www.freebsd.org/porters-handbook/) explains on how to handle this situation. I am given the impression from a link in the general Handbook that ELF ignores the minor number which might be the root of my problem. Should I relabel the libraries without the minor version numbers? If yes, how would someone recommend redoing these when the version of the software is v0.9.4? Do I just chop off the minor number? libgsi.so.0.1 libgsicd.so.0.1 libgsif.so.0.1 libgsimidi_pcm.so.2.0 libgsimixer.so.0.1 libgsipcm.so.0.1 libgsisynth.so.0.1 TIA, Sean - ----------------------- sean-freebsd@farley.org -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.1i iQA/AwUBOdpVRgjbTmC/AZIKEQKcCgCgroE5WETSzZueiGX0qNCjSlKR3zwAoN3N 3nFibNXim99E9qBrNTLh1jVl =BUoG -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 2:40: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E095237B66C for ; Wed, 4 Oct 2000 02:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA84347; Wed, 4 Oct 2000 02:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from chg.ru (netserv1.chg.ru [193.233.46.3]) by hub.freebsd.org (Postfix) with ESMTP id 20FFB37B66C for ; Wed, 4 Oct 2000 02:30:03 -0700 (PDT) Received: (from dima@localhost) by chg.ru (8.9.3/8.9.3) id NAA22476; Wed, 4 Oct 2000 13:29:59 +0400 (MSD) (envelope-from dima) Message-Id: <200010040929.NAA22476@chg.ru> Date: Wed, 4 Oct 2000 13:29:59 +0400 (MSD) From: "Dmitry S. Sivachenko" Reply-To: dima@Chg.RU To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21744: Update port: net/rrdtool Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21744 >Category: ports >Synopsis: Update port: net/rrdtool >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 04 02:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dmitry S. Sivachenko >Release: FreeBSD 3.3-RELEASE i386 >Organization: >Environment: >Description: >How-To-Repeat: >Fix: diff -Nur rrdtool.old/Makefile rrdtool/Makefile --- rrdtool.old/Makefile Tue Aug 1 07:10:45 2000 +++ rrdtool/Makefile Wed Oct 4 12:54:16 2000 @@ -6,7 +6,7 @@ # PORTNAME= rrdtool -PORTVERSION= 1.0.25 +PORTVERSION= 1.0.28 CATEGORIES= net MASTER_SITES= http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/pub/ diff -Nur rrdtool.old/files/md5 rrdtool/files/md5 --- rrdtool.old/files/md5 Tue Aug 1 07:10:45 2000 +++ rrdtool/files/md5 Wed Oct 4 13:06:50 2000 @@ -1 +1 @@ -MD5 (rrdtool-1.0.25.tar.gz) = 9e6cc896f4d1fe8195aa41ee775aa71a +MD5 (rrdtool-1.0.28.tar.gz) = 4db8949675ccb97cd289fae96fb3dbb0 diff -Nur rrdtool.old/patches/patch-ac rrdtool/patches/patch-ac --- rrdtool.old/patches/patch-ac Thu Jun 29 07:12:10 2000 +++ rrdtool/patches/patch-ac Wed Oct 4 13:10:50 2000 @@ -1,17 +1,17 @@ ---- Makefile.in.orig Tue Jun 13 20:58:24 2000 -+++ Makefile.in Tue Jun 13 20:58:25 2000 -@@ -382,12 +382,12 @@ - +--- Makefile.in.orig Wed Oct 4 13:09:37 2000 ++++ Makefile.in Wed Oct 4 13:10:39 2000 +@@ -383,12 +383,12 @@ # lets schedule the perl stuff for installation + # the special call to install-sh is because the -d switch is not portable -install-data-local: -- $(INSTALL) -d -m 755 $(DESTDIR)$(prefix)/lib/perl/auto/RRDs +- ./config/mkinstalldirs $(DESTDIR)$(prefix)/lib/perl/auto/RRDs - $(INSTALL) -m 644 perl-piped/RRDp.pm $(DESTDIR)$(prefix)/lib/perl - $(INSTALL) -m 644 perl-shared/RRDs.pm $(DESTDIR)$(prefix)/lib/perl - $(INSTALL) -m 644 perl-shared/blib/arch/auto/RRDs/RRDs.bs $(DESTDIR)$(prefix)/lib/perl/auto/RRDs - $(INSTALL) -m 755 perl-shared/blib/arch/auto/RRDs/RRDs.@SO_EXT@ $(DESTDIR)$(prefix)/lib/perl/auto/RRDs +install-data-local: site-perl-inst -+# $(INSTALL) -d -m 755 $(DESTDIR)$(prefix)/lib/perl/auto/RRDs ++# ./config/mkinstalldirs $(DESTDIR)$(prefix)/lib/perl/auto/RRDs +# $(INSTALL) -m 644 perl-piped/RRDp.pm $(DESTDIR)$(prefix)/lib/perl +# $(INSTALL) -m 644 perl-shared/RRDs.pm $(DESTDIR)$(prefix)/lib/perl +# $(INSTALL) -m 644 perl-shared/blib/arch/auto/RRDs/RRDs.bs $(DESTDIR)$(prefix)/lib/perl/auto/RRDs >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 3:30: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DECDB37B503 for ; Wed, 4 Oct 2000 03:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA03741; Wed, 4 Oct 2000 03:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from element.office.snet.co.uk (element.office.snet.co.uk [212.87.76.147]) by hub.freebsd.org (Postfix) with ESMTP id DFA1F37B503 for ; Wed, 4 Oct 2000 03:28:14 -0700 (PDT) Received: (from root@localhost) by element.office.snet.co.uk (8.9.3/8.9.3) id LAA00640; Wed, 4 Oct 2000 11:26:21 +0100 (BST) (envelope-from jamie) Message-Id: <200010041026.LAA00640@element.office.snet.co.uk> Date: Wed, 4 Oct 2000 11:26:21 +0100 (BST) From: jamie@jamiesdomain.org.uk Reply-To: jamie@jamiesdomain.org.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21745: Update Port: audio/cd2mp3 Latest release of cd2mp3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21745 >Category: ports >Synopsis: Update Port: audio/cd2mp3 Latest release of cd2mp3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 04 03:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jamie >Release: FreeBSD 4.1-RELEASE i386 >Organization: >Environment: >Description: Update Port: audio/cd2mp3 Latest release of cd2mp3 >How-To-Repeat: >Fix: # Thiss 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: # # . # ./pkg # ./pkg/COMMENT # ./pkg/DESCR # ./pkg/PLIST # ./files # ./files/md5 # ./Makefile # echo c - . mkdir -p . > /dev/null 2>&1 echo c - ./pkg mkdir -p ./pkg > /dev/null 2>&1 echo x - ./pkg/COMMENT sed 's/^X//' >./pkg/COMMENT << 'END-of-./pkg/COMMENT' XEasy to use MP3 manipulation and creation tool END-of-./pkg/COMMENT echo x - ./pkg/DESCR sed 's/^X//' >./pkg/DESCR << 'END-of-./pkg/DESCR' Xcd2mp3 will help you create MP3s from your favourite CD collections. X XIt features single track encoding, entire CD encoding, ripping of tracks Xto .WAV files, and encoding .WAV files to MP3 Format. X XFurther documentation is available at our website. X XWWW: http://www.jamiesdomain.org.uk/ X X- Jamie Heckford Xjamie@jamiesdomain.org.uk END-of-./pkg/DESCR echo x - ./pkg/PLIST sed 's/^X//' >./pkg/PLIST << 'END-of-./pkg/PLIST' Xbin/cd2mp3 END-of-./pkg/PLIST echo c - ./files mkdir -p ./files > /dev/null 2>&1 echo x - ./files/md5 sed 's/^X//' >./files/md5 << 'END-of-./files/md5' XMD5 (cd2mp3-0.5.tar.gz) = 79d86fd5788bf113dc2f50f896f4aa23 END-of-./files/md5 echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection Makefile for: cd2mp3 X# Date created: 4 January 2000 X# Whom: Jamie Heckford X# X# $FreeBSD: ports/audio/cd2mp3/Makefile,v 1.1 2000/06/02 06:46:47 will Exp $ X# X XPORTNAME= cd2mp3 XPORTVERSION= 0.5 XPORTEPOCH= 1 XCATEGORIES= audio XMASTER_SITES= http://download.cd2mp3.org/cd2mp3/${PORTVERSION}/ XMASTER_SITE_SUBDIR= ${PORTVERSION} X XMAINTAINER= jamie@jamiesdomain.org.uk X XRUN_DEPENDS= bladeenc:${PORTSDIR}/audio/bladeenc/ \ X dagrab:${PORTSDIR}/audio/dagrab X XNO_BUILD= yes XWRKSRC= ${WRKDIR}/cd2mp3 X Xdo-install: X ${INSTALL_SCRIPT} ${WRKSRC}/cd2mp3 ${PREFIX}/bin/cd2mp3 X X.include END-of-./Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 4: 2:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from atlas.snet.co.uk (atlas.snet.co.uk [212.87.76.6]) by hub.freebsd.org (Postfix) with ESMTP id 8FEC837B502 for ; Wed, 4 Oct 2000 04:02:34 -0700 (PDT) Received: (from jamie@localhost) by atlas.snet.co.uk (8.11.0/8.11.0) id e94B4b410893 for ports@freebsd.org; Wed, 4 Oct 2000 12:04:37 +0100 (BST) From: Jamie Message-Id: <200010041104.e94B4b410893@atlas.snet.co.uk> Subject: Ports query/help To: ports@freebsd.org Date: Wed, 4 Oct 2000 12:04:37 +0100 (BST) Reply-To: jamie@jamiesdomain.org.uk X-Mailer: ELM [version 2.4ME+ PL77 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi people, Having a bit of a problem. Bit of a newbie to porting, managed to submit a new one OK but updating seems to be a prob. Have read the porters handbook but alas, no joy. Heres my Makefile: # New ports collection Makefile for: cd2mp3 # Date created: 4 January 2000 # Whom: Jamie Heckford # # $FreeBSD: ports/audio/cd2mp3/Makefile,v 1.1 2000/06/02 06:46:47 will Exp $ # PORTNAME= cd2mp3 PORTVERSION= 0.5 PORTEPOCH= 1 CATEGORIES= audio MASTER_SITES= http://download.cd2mp3.org.uk/${PORTVERSION}/ MAINTAINER= jamie@jamiesdomain.org.uk RUN_DEPENDS= bladeenc:${PORTSDIR}/audio/bladeenc/ \ dagrab:${PORTSDIR}/audio/dagrab/ NO_BUILD= yes WRKSRC= ${WRKDIR}/cd2mp3 do-install: ${INSTALL_SCRIPT} ${WRKSRC}/cd2mp3 ${PREFIX}/bin/cd2mp3 .include This looks fine to me but: jamie@element$ portlint OK: checking /usr/ports/cd2mp3/pkg/COMMENT. OK: checking /usr/ports/cd2mp3/pkg/DESCR. OK: checking Makefile. FATAL: extra item "PORTEPOCH" placed in the PORTNAME section. OK: checking /usr/ports/cd2mp3/files/md5. 1 fatal errors and 0 warnings found. Have tried alot of different ways of adding PORTEPOCH but no luck! Could anyone out their give me a kick in the right direction please? Thanks! Jamie jamie@jamiesdomain.org.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 4: 9:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id 61A7A37B66D for ; Wed, 4 Oct 2000 04:09:13 -0700 (PDT) Received: from FreeBSD.org (baby.int.thehousleys.net [192.168.0.24]) by thehousleys.net (8.11.0/8.11.0) with ESMTP id e94B8xq03315; Wed, 4 Oct 2000 07:09:05 -0400 (EDT) (envelope-from jeh@FreeBSD.org) Message-ID: <39DB0FCB.6421C6B8@FreeBSD.org> Date: Wed, 04 Oct 2000 07:08:59 -0400 From: "James E. Housley" Organization: FreeBSD X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: jamie@jamiesdomain.org.uk Cc: ports@FreeBSD.org Subject: Re: Ports query/help References: <200010041104.e94B4b410893@atlas.snet.co.uk> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jamie wrote: > > Hi people, > > Having a bit of a problem. > > Bit of a newbie to porting, managed to submit > a new one OK but updating seems to be a prob. > > Have read the porters handbook but alas, no joy. > > Heres my Makefile: > > # New ports collection Makefile for: cd2mp3 > # Date created: 4 January 2000 > # Whom: Jamie Heckford > # > # $FreeBSD: ports/audio/cd2mp3/Makefile,v 1.1 2000/06/02 06:46:47 will Exp $ > # > > PORTNAME= cd2mp3 > PORTVERSION= 0.5 > PORTEPOCH= 1 > CATEGORIES= audio > MASTER_SITES= http://download.cd2mp3.org.uk/${PORTVERSION}/ > > MAINTAINER= jamie@jamiesdomain.org.uk > > RUN_DEPENDS= bladeenc:${PORTSDIR}/audio/bladeenc/ \ > dagrab:${PORTSDIR}/audio/dagrab/ > > NO_BUILD= yes > WRKSRC= ${WRKDIR}/cd2mp3 > > do-install: > ${INSTALL_SCRIPT} ${WRKSRC}/cd2mp3 ${PREFIX}/bin/cd2mp3 > > .include > > This looks fine to me but: > > jamie@element$ portlint > OK: checking /usr/ports/cd2mp3/pkg/COMMENT. > OK: checking /usr/ports/cd2mp3/pkg/DESCR. > OK: checking Makefile. > FATAL: extra item "PORTEPOCH" placed in the PORTNAME section. > OK: checking /usr/ports/cd2mp3/files/md5. > 1 fatal errors and 0 warnings found. > > Have tried alot of different ways of adding PORTEPOCH but no luck! portlint does not handle PORTEPOCH yet. There are two option 1) Ignore the error 2) move it down with WRKSRC. #2 makes the Makefile hard to read and find the final version number. Jim -- James E. Housley Hi! I'm a .signature virus! Copy me in your ~/.signature to help me spread! <- Save this lifeform ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 4:22:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ECE5737B502; Wed, 4 Oct 2000 04:22:31 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA24987; Wed, 4 Oct 2000 04:22:31 -0700 (PDT) (envelope-from kris@FreeBSD.org) Date: Wed, 4 Oct 2000 04:22:31 -0700 From: Kris Kennaway To: Jeff Blaufuss Cc: ports@freebsd.org Subject: Re: gopher port Message-ID: <20001004042231.A23952@freefall.freebsd.org> References: <39D937C2.787EA1BD@ndsu.nodak.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39D937C2.787EA1BD@ndsu.nodak.edu>; from Jeff_Blaufuss@ndsu.nodak.edu on Mon, Oct 02, 2000 at 08:34:58PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Oct 02, 2000 at 08:34:58PM -0500, Jeff Blaufuss wrote: > when I try to make the gopher port, I get this error: > > > ===> Extracting for gopher-2.3 > >> Checksum mismatch for gopher2_3.tar.gz. > Make sure the Makefile and md5 file (/usr/ports/net/gopher/files/md5) > are up to date. If you are absolutely sure you want to override this > "check, type make NO_CHECKSUM=yes [other args]". > *** Error code 1 Well, your ports collection is out of date for one thing: # make ===> gopher-2.3.1 is forbidden: Remote exploits. If you're intending to install gopherd - don't, it is remotely exploitable. Kris -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 4:30: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8202737B66C for ; Wed, 4 Oct 2000 04:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA27486; Wed, 4 Oct 2000 04:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from element.office.snet.co.uk (element.office.snet.co.uk [212.87.76.147]) by hub.freebsd.org (Postfix) with ESMTP id 423CE37B66C for ; Wed, 4 Oct 2000 04:26:30 -0700 (PDT) Received: (from root@localhost) by element.office.snet.co.uk (8.9.3/8.9.3) id MAA02164; Wed, 4 Oct 2000 12:24:52 +0100 (BST) (envelope-from jamie) Message-Id: <200010041124.MAA02164@element.office.snet.co.uk> Date: Wed, 4 Oct 2000 12:24:52 +0100 (BST) From: jamie@jamiesdomain.org.uk Reply-To: jamie@jamiesdomain.org.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21746: Ports update: audio/cd2mp3 Update to cd2mp3 new release Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21746 >Category: ports >Synopsis: Ports update: audio/cd2mp3 Update to cd2mp3 new release >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 04 04:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jamie >Release: FreeBSD 4.1-RELEASE i386 >Organization: >Environment: >Description: Ports update: audio/cd2mp3 Update to cd2mp3 new release >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # . # ./pkg # ./pkg/COMMENT # ./pkg/DESCR # ./pkg/PLIST # ./files # ./files/md5 # ./Makefile # echo c - . mkdir -p . > /dev/null 2>&1 echo c - ./pkg mkdir -p ./pkg > /dev/null 2>&1 echo x - ./pkg/COMMENT sed 's/^X//' >./pkg/COMMENT << 'END-of-./pkg/COMMENT' XEasy to use MP3 manipulation and creation tool END-of-./pkg/COMMENT echo x - ./pkg/DESCR sed 's/^X//' >./pkg/DESCR << 'END-of-./pkg/DESCR' Xcd2mp3 will help you create MP3s from your favourite CD collections. X XIt features single track encoding, entire CD encoding, ripping of tracks Xto .WAV files, and encoding .WAV files to MP3 Format. X XFurther documentation is available at our website. X XWWW: http://www.jamiesdomain.org.uk/ X X- Jamie Heckford Xjamie@jamiesdomain.org.uk END-of-./pkg/DESCR echo x - ./pkg/PLIST sed 's/^X//' >./pkg/PLIST << 'END-of-./pkg/PLIST' Xbin/cd2mp3 END-of-./pkg/PLIST echo c - ./files mkdir -p ./files > /dev/null 2>&1 echo x - ./files/md5 sed 's/^X//' >./files/md5 << 'END-of-./files/md5' XMD5 (cd2mp3-0.5.tar.gz) = 79d86fd5788bf113dc2f50f896f4aa23 END-of-./files/md5 echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection Makefile for: cd2mp3 X# Date created: 4 January 2000 X# Whom: Jamie Heckford X# X# $FreeBSD: ports/audio/cd2mp3/Makefile,v 1.1 2000/06/02 06:46:47 will Exp $ X# X XPORTNAME= cd2mp3 XPORTVERSION= 0.5 XPORTEPOCH= 1 XCATEGORIES= audio XMASTER_SITES= http://download.cd2mp3.org.uk/${PORTVERSION}/ X XMAINTAINER= jamie@jamiesdomain.org.uk X XRUN_DEPENDS= bladeenc:${PORTSDIR}/audio/bladeenc/ \ X dagrab:${PORTSDIR}/audio/dagrab/ X XNO_BUILD= yes XWRKSRC= ${WRKDIR}/cd2mp3 X Xdo-install: X ${INSTALL_SCRIPT} ${WRKSRC}/cd2mp3 ${PREFIX}/bin/cd2mp3 X X.include END-of-./Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 5: 8:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from eastwood.aldigital.algroup.co.uk (eastwood.aldigital.algroup.co.uk [194.128.162.193]) by hub.freebsd.org (Postfix) with ESMTP id BC9F137B503 for ; Wed, 4 Oct 2000 05:08:12 -0700 (PDT) Received: from algroup.co.uk ([193.195.56.225]) by eastwood.aldigital.algroup.co.uk (8.8.8/8.6.12) with ESMTP id MAA07998; Wed, 4 Oct 2000 12:08:03 GMT Message-ID: <39DB1DA2.18B697AB@algroup.co.uk> Date: Wed, 04 Oct 2000 13:08:02 +0100 From: Adam Laurie Organization: A.L. Group plc X-Mailer: Mozilla 4.72 [en] (Win95; U) X-Accept-Language: en MIME-Version: 1.0 To: Jay West Cc: ports@FreeBSD.org, Adam Laurie Subject: Re: FreeBSD Port: apache+ssl-1.3.12.1.40 HELP! References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jay West wrote: > > Adam (port maintainer for apache-ssl); > > I'm truely sorry to bother you with this.... I've asked several times on the > freebsd-questions group and checked the archives - I can't find any answers. > I'm in a major time crunch due to the relocation of a datacenter and thought > perhaps you might take pity on me and answer a simple question. > > Fresh install of FreeBSD 4.1 (release, from CDROM). Go to > /usr/ports/www/apache-ssl and type make. It will say you need to have > openssl installed and abort. Then go to /usr/ports/security/openssl and type > make. It will say "forbidden, open ssl is already included in your > distribution". Catch-22. > > I also tried 4.1.1 via ftp, and also tried upgrading the ports collection > to -stable. All give me the exact same message. For a variety of QA reasons > we really need this to work off 4.1, not 4.1.1 or 4xstable or 4xcurrent. > > I had thought that openssl was already included in 4.1 release. So why does > the apache-ssl port say it's not installed? Is there a quick fix you know of > to make this work without going to a different version? Any help is MOST > appreciated!!!! If you wish to charge a consulting fee for your answer, by > all means just let me know and I'd be happy to oblige. > > Thanks in advance, and I apologize for the intrusion. I gave up maintaining this because someone was doing a "meta" port for apache. Not sure what the status of that is though. If it's not going to happen i'll look at bringing the current port up to date. cheers, Adam -- Adam Laurie Tel: +44 (20) 8742 0755 A.L. Digital Ltd. Fax: +44 (20) 8742 5995 Voysey House http://www.thebunker.net Barley Mow Passage http://www.aldigital.co.uk London W4 4GB mailto:adam@algroup.co.uk UNITED KINGDOM PGP key on keyservers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 5:19:44 2000 Delivered-To: freebsd-ports@freebsd.org Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by hub.freebsd.org (Postfix) with ESMTP id D980837B66C for ; Wed, 4 Oct 2000 05:19:42 -0700 (PDT) Received: by pcwin002.win.tue.nl (Postfix, from userid 1001) id 6286613418; Wed, 4 Oct 2000 14:19:41 +0200 (CEST) Date: Wed, 4 Oct 2000 14:19:41 +0200 From: Stijn Hoop To: Adam Laurie Cc: Jay West , ports@freebsd.org Subject: Re: FreeBSD Port: apache+ssl-1.3.12.1.40 HELP! Message-ID: <20001004141941.A1030@pcwin002.win.tue.nl> References: <39DB1DA2.18B697AB@algroup.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39DB1DA2.18B697AB@algroup.co.uk>; from adam@algroup.co.uk on Wed, Oct 04, 2000 at 01:08:02PM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Oct 04, 2000 at 01:08:02PM +0100, Adam Laurie wrote: > Jay West wrote: > > Fresh install of FreeBSD 4.1 (release, from CDROM). Go to > > /usr/ports/www/apache-ssl and type make. It will say you need to have > > openssl installed and abort. Then go to /usr/ports/security/openssl and type > > make. It will say "forbidden, open ssl is already included in your > > distribution". Catch-22. Not 100% sure, but I thought this was an indication that you didn't install the crypto distribution from sysinstall. Install that using /stand/sysinstall and the error should go away. Or you could of course CVSup but you indicated that this wasn't an option. HTH, --Stijn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 5:20:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id BCE9A37B502; Wed, 4 Oct 2000 05:20:16 -0700 (PDT) Received: from vic.sabbo.net (root@[193.193.218.95]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id PAA21389; Wed, 4 Oct 2000 15:20:03 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e94Bgr601422; Wed, 4 Oct 2000 14:42:53 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39DB17BB.12805565@FreeBSD.org> Date: Wed, 04 Oct 2000 14:42:52 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: bmah@FreeBSD.org Cc: Neil Blakey-Milner , Akinori -Aki- MUSHA , freebsd-ports@FreeBSD.org, asami@FreeBSD.org Subject: PROPOSAL: Use @comment PLIST variable to track where installed packages came from [Was: Enhancement of pkg_version's version comparison routine] References: <86k8by6eis.wl@archon.local.idaemons.org> <20000927002401.A73341@mithrandr.moria.org> <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> <39D9EE01.7A880665@FreeBSD.org> <200010031657.e93Gvtg10718@bmah-freebsd-0.cisco.com> Content-Type: multipart/mixed; boundary="------------160205C298EA7560DFCAC670" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------160205C298EA7560DFCAC670 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit "Bruce A. Mah" wrote: > If memory serves me right, Maxim Sobolev wrote: > > Neil Blakey-Milner wrote: > > > > > On Tue 2000-10-03 (15:24), Maxim Sobolev wrote: > > I think that in your example, it's going to do the right thing. > Instances where we allow multiple "production" versions of software > (i.e. Tcl) are already differentiated by giving the port directories > different names. > > Two things that came to mind for me: > > 1. Someone once made the assertion that most third-party software was > installed via packages, not building ports. So we might need to handle > some odd cases like only having the INDEX file, not having a ports tree > at all, and so forth. (In other words, we might not have filesystem > access to the Makefile that generated a package.) > > 2. This still doesn't solve the problem of updating dependencies. > > Still, I think this is an interesting idea. Well, I did not tell that it will solve all our problems, but it really can help to improve things a bit. PROPOSAL ------------- 1. Why things need to be improved? This should be almost obvious to anyone who was watching pkg_version development. Lately, there were several attempts to cope with pkg_version's inability to distinguish between packages generated from so-called `multi-version' ports (for example gtk10/11/12, bash1/2 etc.) and as a result provide useful notification when the package should be updated. Now it is clear that the problem could not be solved completely w/o creating an AI bundled into pkg_version :), so I decided to approach the problem from the slightly different side. 2. What is proposed? It is proposed to plant into package short information about path of the underlying port, from which installed packages was generated, in the Ports Tree. Due to the fact that it is going to change pkg_install tools it is proposed to do it in as less intrusive way as possible, so the old packages generated by the previous version of pkg_* tools will work with the new version of tools and vice versa. This defines usage of @comment PLIST variable for the purpose. 3. How it would work? When creating package, bsd.port.mk will generate MASTERCATEGORY/PORTDIR string and feed it to pkg_create. Here MASTERCATEGORY is the first category specified in port's CATEGORIES and it should coincide with name of corresponding parent directory in the ports tree. It was defined in such way to properly handle ports installed w/o parent category directory (for example when you install package from the module received using `cvs co ...'). pkg_create in turn will prefix it with appropriate @comment magic and add into +CONTENTS. Later, when you updated your ports tree and want to check if any new versions of the installed packages are available, your designated for this purpose tool (pkg_version) will call pkg_info with an appropriate option for all installed packages, create a list of packages where origin is defined and check if appropriate ports' makefiles in /usr/ports are in fact present. Then for all packages which can be handled under a new scheme the tool will call appropriate `make -V PORTVERSION -f ...' to determine current version of the package in the Ports Collection. All other packages (for example old packages w/o origin, third party packages etc.) will be handled using ports/INDEX. Good side effect of the proposed scheme is that version checking tools would be able to avoid relying on often outdated information provided by the ports/INDEX, so users should stop spamming us with "Hey, pkg_version doesn't work - I cvsuped ports, but it doesn't show me updated ports!" e-mails. With this message I'm attaching appropriate patches for pkg_* tools and bsd.port.mk. -Maxim --------------160205C298EA7560DFCAC670 Content-Type: text/plain; charset=koi8-r; name="bsd.port.mk-origin.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="bsd.port.mk-origin.patch" --- bsd.port.mk.orig Mon Oct 2 09:10:12 2000 +++ bsd.port.mk Wed Oct 4 10:58:15 2000 @@ -1070,6 +1070,17 @@ PKGMESSAGE?= ${PKGDIR}/pkg-message .endif +SED?= /usr/bin/sed +BASENAME?= /usr/bin/basename + +.if ${OSVERSION} > 500012 +_PKGCATEGORY!= ${ECHO} ${CATEGORIES} | ${SED} -E 's|^ *||g ; s| .*$$||' +_PORTDIRNAME!= ${BASENAME} ${.CURDIR} +PKGCATEGORY?= ${_PKGCATEGORY} +PORTDIRNAME?= ${_PORTDIRNAME} +PKGORIGIN?= ${PKGCATEGORY}/${PORTDIRNAME} +.endif + # delete from here when NEWLAYOUT is default COMMENT?= ${PKGDIR}/COMMENT DESCR?= ${PKGDIR}/DESCR @@ -1101,6 +1112,9 @@ .if !defined(NO_MTREE) PKG_ARGS+= -m ${MTREE_FILE} .endif +.if defined(PKGORIGIN) && ${OSVERSION} > 500012 +PKG_ARGS+= -o ${PKGORIGIN} +.endif .endif .if defined(PKG_NOCOMPRESS) PKG_SUFX?= .tar @@ -1120,7 +1134,6 @@ .endif AWK?= /usr/bin/awk -BASENAME?= /usr/bin/basename CAT?= /bin/cat CHMOD?= /bin/chmod CHOWN?= /usr/sbin/chown @@ -1139,7 +1152,6 @@ MV?= /bin/mv RM?= /bin/rm RMDIR?= /bin/rmdir -SED?= /usr/bin/sed SETENV?= /usr/bin/env SH?= /bin/sh TR?= /usr/bin/tr --------------160205C298EA7560DFCAC670 Content-Type: text/plain; charset=koi8-r; name="pkg_install-origin.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="pkg_install-origin.patch" Index: create/create.h =================================================================== RCS file: /home/ncvs/src/usr.sbin/pkg_install/create/create.h,v retrieving revision 1.15 diff -d -u -r1.15 create.h --- create/create.h 1999/08/28 01:17:58 1.15 +++ create/create.h 2000/10/04 09:30:49 @@ -37,6 +37,7 @@ extern char *ExcludeFrom; extern char *Mtree; extern char *Pkgdeps; +extern char *Origin; extern char PlayPen[]; extern int Dereference; extern int PlistOnly; Index: create/main.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/pkg_install/create/main.c,v retrieving revision 1.21 diff -d -u -r1.21 main.c --- create/main.c 1999/08/28 01:17:58 1.21 +++ create/main.c 2000/10/04 09:30:49 @@ -18,7 +18,7 @@ #include "lib.h" #include "create.h" -static char Options[] = "YNOhvf:p:P:c:d:i:I:k:K:r:t:X:D:m:s:"; +static char Options[] = "YNOhvf:p:P:c:d:i:I:k:K:r:t:X:D:m:s:o:"; char *Prefix = NULL; char *Comment = NULL; @@ -34,6 +34,7 @@ char *ExcludeFrom = NULL; char *Mtree = NULL; char *Pkgdeps = NULL; +char *Origin = NULL; char PlayPen[FILENAME_MAX]; int Dereference = 0; int PlistOnly = 0; @@ -129,6 +130,10 @@ Pkgdeps = optarg; break; + case 'o': + Origin = optarg; + break; + case '?': default: usage(); @@ -165,7 +170,7 @@ "usage: pkg_create [-YNOhv] [-P pkgs] [-p prefix] [-f contents] [-i iscript]", " [-I piscript] [-k dscript] [-K pdscript] [-r rscript] ", " [-t template] [-X excludefile] [-D displayfile] ", -" [-m mtreefile] -c comment -d description -f packlist ", -" pkg-name"); +" [-m mtreefile] [-o origin] -c comment -d description ", +" -f packlist pkg-name"); exit(1); } Index: create/perform.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/pkg_install/create/perform.c,v retrieving revision 1.49 diff -d -u -r1.49 perform.c --- create/perform.c 1999/08/28 01:17:58 1.49 +++ create/perform.c 2000/10/04 09:30:49 @@ -85,6 +85,10 @@ else suf = "tar"; + /* Add the origin if asked, at the top */ + if (Origin) + add_plist(&plist, PLIST_COMMENT, strconcat("ORIGIN:", Origin)); + /* Stick the dependencies, if any, at the top */ if (Pkgdeps) { if (Verbose && !PlistOnly) @@ -92,7 +96,7 @@ while (Pkgdeps) { cp = strsep(&Pkgdeps, " \t\n"); if (*cp) { - add_plist(&plist, PLIST_PKGDEP, cp); + add_plist_top(&plist, PLIST_PKGDEP, cp); if (Verbose && !PlistOnly) printf(" %s", cp); } Index: create/pkg_create.1 =================================================================== RCS file: /home/ncvs/src/usr.sbin/pkg_install/create/pkg_create.1,v retrieving revision 1.35 diff -d -u -r1.35 pkg_create.1 --- create/pkg_create.1 2000/03/01 14:09:01 1.35 +++ create/pkg_create.1 2000/10/04 09:30:54 @@ -45,6 +45,7 @@ .Op Fl X Ar excludefile .Op Fl D Ar displayfile .Op Fl m Ar mtreefile +.Op Fl o Ar originpath .Fl c Ar comment .Fl d Ar description .Fl f Ar packlist @@ -243,6 +244,13 @@ is the name of the first directory named by a .Cm @cwd directive. +.It Fl o Ar originpath +Record an +.Ar originpath , +as location of the port from which package has been created in the +.Em "FreeBSD Ports Collection" . +It should be in the form +.Pa MASTERCATEGORY/PORTDIR . .El .Pp .Sh PACKING LIST DETAILS Index: info/info.h =================================================================== RCS file: /home/ncvs/src/usr.sbin/pkg_install/info/info.h,v retrieving revision 1.12 diff -d -u -r1.12 info.h --- info/info.h 2000/07/07 13:06:32 1.12 +++ info/info.h 2000/10/04 09:30:54 @@ -44,6 +44,7 @@ #define SHOW_REQBY 0x0400 #define SHOW_MTREE 0x0800 #define SHOW_SIZE 0x1000 +#define SHOW_ORIGIN 0x2000 extern int Flags; extern Boolean AllInstalled; @@ -57,5 +58,6 @@ extern void show_files(char *, Package *); extern void show_index(char *, char *); extern void show_size(char *, Package *); +extern void show_origin(char *, Package *); #endif /* _INST_INFO_H_INCLUDE */ Index: info/main.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/pkg_install/info/main.c,v retrieving revision 1.24 diff -d -u -r1.24 main.c --- info/main.c 2000/07/07 13:06:32 1.24 +++ info/main.c 2000/10/04 09:30:54 @@ -28,7 +28,7 @@ "$FreeBSD: src/usr.sbin/pkg_install/info/main.c,v 1.24 2000/07/07 13:06:32 sobomax Exp $"; #endif -static char Options[] = "acdDe:fhiIkl:LmpqrRst:v"; +static char Options[] = "acdDe:fhiIkl:LmopqrRst:v"; int Flags = 0; Boolean AllInstalled = FALSE; @@ -115,6 +115,10 @@ case 's': Flags |= SHOW_SIZE; break; + + case 'o': + Flags |= SHOW_ORIGIN; + break; case 'l': InfoPrefix = optarg; Index: info/perform.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/pkg_install/info/perform.c,v retrieving revision 1.31 diff -d -u -r1.31 perform.c --- info/perform.c 2000/09/25 07:27:05 1.31 +++ info/perform.c 2000/10/04 09:30:54 @@ -205,6 +205,8 @@ show_files("Files:\n", &plist); if ((Flags & SHOW_SIZE) && installed) show_size("Package Size:\n", &plist); + if (Flags & SHOW_ORIGIN) + show_origin("Origin:\n", &plist); if (!Quiet) puts(InfoPrefix); } Index: info/pkg_info.1 =================================================================== RCS file: /home/ncvs/src/usr.sbin/pkg_install/info/pkg_info.1,v retrieving revision 1.26 diff -d -u -r1.26 pkg_info.1 --- info/pkg_info.1 2000/09/25 10:49:10 1.26 +++ info/pkg_info.1 2000/10/04 09:30:54 @@ -25,7 +25,7 @@ .Nd a utility for displaying information on software packages .Sh SYNOPSIS .Nm pkg_info -.Op Fl cdDfikrRpLsqImv +.Op Fl cdDfikorRpLsqImv .Op Fl e Ar package .Op Fl l Ar prefix .Op Fl t Ar template @@ -88,6 +88,13 @@ are generated. .It Fl s Show the total size occupied by files installed within each package. +.It Fl o +Show the +.Dq origin +path recorded on package generation. This path +intended to give an idea as to where the underlying port, from which +package was generated, is located in the +.Em "FreeBSD Ports Collection" . .It Fl e Ar pkg-name If the package identified by .Ar pkg-name Index: info/show.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/pkg_install/info/show.c,v retrieving revision 1.16 diff -d -u -r1.16 show.c --- info/show.c 2000/09/25 07:27:04 1.16 +++ info/show.c 2000/10/04 09:30:54 @@ -256,3 +256,18 @@ else printf("%lu\n", size); } + +/* Show an "origin" path (usually category/portname) */ +void +show_origin(char *title, Package *plist) +{ + PackingList p; + + if (!Quiet) + printf("%s%s", InfoPrefix, title); + for (p = plist->head; p != NULL; p = p->next) + if (p->type == PLIST_COMMENT && !strncmp(p->name, "ORIGIN:", 7)) { + printf("%s\n", p->name + 7); + break; + } +} --------------160205C298EA7560DFCAC670-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 5:30: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 366B537B66E for ; Wed, 4 Oct 2000 05:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA49771; Wed, 4 Oct 2000 05:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id 834B337B503 for ; Wed, 4 Oct 2000 05:29:04 -0700 (PDT) Received: (from jeh@localhost) by thehousleys.net (8.11.0/8.11.0) id e94CT3103815; Wed, 4 Oct 2000 08:29:03 -0400 (EDT) (envelope-from jeh) Message-Id: <200010041229.e94CT3103815@thehousleys.net> Date: Wed, 4 Oct 2000 08:29:03 -0400 (EDT) From: jeh@freebsd.org Reply-To: jeh@freebsd.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21747: Port Update: devel/portlint to allow PORTREVESION & PORTEPOCH Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21747 >Category: ports >Synopsis: Port Update: devel/portlint to allow PORTREVESION & PORTEPOCH >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 04 05:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: James E. Housley >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: >Description: portlint does not like haveing the new variables PORTREVISION and PORTEPOCH in the PORTNAME section where they need to be for clarity. A copy is being sent to the MAINTAINERS for approval >How-To-Repeat: >Fix: Index: portlint.pl =================================================================== RCS file: /usr/home/FREEBSD_CVS/ports/devel/portlint/src/portlint.pl,v retrieving revision 1.21 diff -u -r1.21 portlint.pl --- portlint.pl 2000/10/04 04:02:39 1.21 +++ portlint.pl 2000/10/04 12:20:16 @@ -37,7 +37,7 @@ # version variables my $major = 2; -my $minor = 2; +my $minor = 3; sub l { '[{(]'; } sub r { '[)}]'; } @@ -148,10 +148,10 @@ # get make vars my $cmd = "make $makeenv MASTER_SITE_BACKUP=''"; my @varlist = (split(/\s+/, <Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 5:40: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 357AD37B66C for ; Wed, 4 Oct 2000 05:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA53551; Wed, 4 Oct 2000 05:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from iraun1.ira.uka.de (iraun1.ira.uka.de [129.13.10.90]) by hub.freebsd.org (Postfix) with ESMTP id 3AA5C37B66F for ; Wed, 4 Oct 2000 05:31:26 -0700 (PDT) Received: from i30nb2.ira.uka.de by iraun1 (PP) with ESMTP; Wed, 4 Oct 2000 14:30:27 +0200 Received: (from esk@localhost) by i30nb2.ira.uka.de (8.9.3/8.9.3) id OAA14239; Wed, 4 Oct 2000 14:30:04 +0200 (CEST) (envelope-from esk) Message-Id: <200010041230.OAA14239@i30nb2.ira.uka.de> Date: Wed, 4 Oct 2000 14:30:04 +0200 (CEST) From: esk@ira.uka.de Reply-To: esk@ira.uka.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21748: Remove getbits.s from audio/xmms/Makefile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21748 >Category: ports >Synopsis: Remove getbits.s from audio/xmms/Makefile >Confidential: yes >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 04 05:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Espen Skoglund >Release: FreeBSD 4.1-STABLE i386 >Organization: Universität Karlsruhe >Environment: >Description: The post-extract target in the audio/xmms/Makefile renames getbits.s to getbits.S. However, getbits.s is no longer present in the current XMMS distribution. >How-To-Repeat: >Fix: --- xmms/Makefile.orig Wed Oct 4 14:19:23 2000 +++ xmms/Makefile Wed Oct 4 14:20:48 2000 @@ -98,8 +98,7 @@ .if defined(WITHOUT_3DNOW) || ${OSVERSION} < 400021 post-extract: (cd ${WRKSRC}/Input/mpg123 && ${MV} decode_i586.s decode_i586.S && \ - ${MV} getbits.s getbits.S && cd ${WRKSRC}/Visualization/blur_scope && \ - ${MV} blur_8.s blur_8.S); + cd ${WRKSRC}/Visualization/blur_scope && ${MV} blur_8.s blur_8.S); ${PERL} -pi.bak -e 's:\.s :\.S :g' ${WRKSRC}/Input/mpg123/Makefile.in ${PERL} -pi.bak -e 's:blur_8.s:blur_8.S:g' \ ${WRKSRC}/Visualization/blur_scope/Makefile.in >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 5:46:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2BC2C37B502; Wed, 4 Oct 2000 05:46:40 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA56097; Wed, 4 Oct 2000 05:46:40 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Date: Wed, 4 Oct 2000 05:46:40 -0700 (PDT) From: Message-Id: <200010041246.FAA56097@freefall.freebsd.org> To: esk@ira.uka.de, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21748: Remove getbits.s from audio/xmms/Makefile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Remove getbits.s from audio/xmms/Makefile State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Wed Oct 4 05:46:25 PDT 2000 State-Changed-Why: C'mitted, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=21748 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 5:50: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 780C537B502 for ; Wed, 4 Oct 2000 05:50:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA57474; Wed, 4 Oct 2000 05:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 4 Oct 2000 05:50:03 -0700 (PDT) Message-Id: <200010041250.FAA57474@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Maxim Sobolev Subject: Re: ports/21746: Ports update: audio/cd2mp3 Update to cd2mp3 new release Reply-To: Maxim Sobolev Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21746; it has been noted by GNATS. From: Maxim Sobolev To: jamie@jamiesdomain.org.uk Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/21746: Ports update: audio/cd2mp3 Update to cd2mp3 new release Date: Wed, 04 Oct 2000 15:43:12 +0300 jamie@jamiesdomain.org.uk wrote: > >Description: > > Ports update: audio/cd2mp3 Update to cd2mp3 new release > > # This is a shell archive. Save it in a file, remove anything before Please submit diff instead of shar archive when you want to upgrade existing port. Thanks! -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 5:50: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D45E37B66D for ; Wed, 4 Oct 2000 05:50:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA57485; Wed, 4 Oct 2000 05:50:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 4 Oct 2000 05:50:05 -0700 (PDT) Message-Id: <200010041250.FAA57485@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Johann Visagie Subject: Re: ports/21393: Update port: sysutils/lavaps Reply-To: Johann Visagie Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21393; it has been noted by GNATS. From: Johann Visagie To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: ports/21393: Update port: sysutils/lavaps Date: Wed, 4 Oct 2000 14:44:46 +0200 Yes, now it has: John Heidemann on 2000-10-03 (Tue) at 09:58:39 -0700: > > Great, thanks for fixing this. > > -John -- Johann To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 5:50:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id B954F37B66C for ; Wed, 4 Oct 2000 05:50:04 -0700 (PDT) Received: from vic.sabbo.net (root@[193.193.218.95]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id PAA22088; Wed, 4 Oct 2000 15:49:54 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e94CnF601729; Wed, 4 Oct 2000 15:49:15 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39DB2748.213E39BD@FreeBSD.org> Date: Wed, 04 Oct 2000 15:49:12 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: jamie@jamiesdomain.org.uk Cc: ports@FreeBSD.org Subject: Re: Ports query/help References: <200010041104.e94B4b410893@atlas.snet.co.uk> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jamie wrote: > Hi people, > > Having a bit of a problem. > > Bit of a newbie to porting, managed to submit > a new one OK but updating seems to be a prob. > > This looks fine to me but: > > jamie@element$ portlint > FATAL: extra item "PORTEPOCH" placed in the PORTNAME section. > Have tried alot of different ways of adding PORTEPOCH but no luck! > > Could anyone out their give me a kick in the right direction please? Yes, you have to kick mharo & will for not updating portlint. You can solve your problem by kicking them hard enough several times ;). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 5:54:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id 2488F37B502; Wed, 4 Oct 2000 05:54:08 -0700 (PDT) Received: from FreeBSD.org (baby.int.thehousleys.net [192.168.0.24]) by thehousleys.net (8.11.0/8.11.0) with ESMTP id e94Cs7q03939; Wed, 4 Oct 2000 08:54:07 -0400 (EDT) (envelope-from jeh@FreeBSD.org) Message-ID: <39DB286F.D3E8DC79@FreeBSD.org> Date: Wed, 04 Oct 2000 08:54:07 -0400 From: "James E. Housley" Organization: FreeBSD X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Maxim Sobolev Cc: ports@FreeBSD.org Subject: Re: Ports query/help References: <200010041104.e94B4b410893@atlas.snet.co.uk> <39DB2748.213E39BD@FreeBSD.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Maxim Sobolev wrote: > > Jamie wrote: > > > Hi people, > > > > Having a bit of a problem. > > > > Bit of a newbie to porting, managed to submit > > a new one OK but updating seems to be a prob. > > > > This looks fine to me but: > > > > jamie@element$ portlint > > FATAL: extra item "PORTEPOCH" placed in the PORTNAME section. > > Have tried alot of different ways of adding PORTEPOCH but no luck! > > > > Could anyone out their give me a kick in the right direction please? > > Yes, you have to kick mharo & will for not updating portlint. You can solve your > problem by kicking them hard enough several times ;). > I can't kick will, he's my mentor, but I did submit patches for that less than an hour ago. I suppose I should send a roster over to get him out of bed. Since he was nice enough to give us his location in port/xearth/files/fre..... all I need to do is teach the roster to use my GPS ;-) Jim -- James E. Housley Hi! I'm a .signature virus! Copy me in your ~/.signature to help me spread! <- Save this lifeform ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 6:10:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 62BE937B66C for ; Wed, 4 Oct 2000 06:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA66441; Wed, 4 Oct 2000 06:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from element.office.snet.co.uk (element.office.snet.co.uk [212.87.76.147]) by hub.freebsd.org (Postfix) with ESMTP id DCB3B37B502 for ; Wed, 4 Oct 2000 06:00:33 -0700 (PDT) Received: (from jamie@localhost) by element.office.snet.co.uk (8.9.3/8.9.3) id NAA02504; Wed, 4 Oct 2000 13:58:51 +0100 (BST) (envelope-from jamie) Message-Id: <200010041258.NAA02504@element.office.snet.co.uk> Date: Wed, 4 Oct 2000 13:58:51 +0100 (BST) From: jamie@jamiesdomain.org.uk Reply-To: jamie@jamiesdomain.org.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21749: Update port: audio/cd2mp3 Update to cd2mp3 new release Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21749 >Category: ports >Synopsis: Update port: audio/cd2mp3 Update to cd2mp3 new release >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 04 06:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jamie >Release: FreeBSD 4.1-RELEASE i386 >Organization: >Environment: >Description: Update port: audio/cd2mp3 Update to cd2mp3 new release >How-To-Repeat: >Fix: diff -ruN cd2mp3.bak/Makefile cd2mp3/Makefile --- cd2mp3.bak/Makefile Fri Jun 2 07:46:47 2000 +++ cd2mp3/Makefile Wed Oct 4 11:57:10 2000 @@ -1,29 +1,25 @@ -# New ports collection makefile for: cd2mp3 -# Date created: 4 January 2000 -# Whom: Jamie Heckford +# New ports collection Makefile for: cd2mp3 +# Date created: 4 January 2000 +# Whom: Jamie Heckford # # $FreeBSD: ports/audio/cd2mp3/Makefile,v 1.1 2000/06/02 06:46:47 will Exp $ # PORTNAME= cd2mp3 -PORTVERSION= 1.1 +PORTVERSION= 0.5 +PORTEPOCH= 1 CATEGORIES= audio -MASTER_SITES= ftp://ukug.uk.freebsd.org/pub/kandy/cd2mp3/${PORTVERSION}/ -MASTER_SITE_SUBDIR= ${PORTVERSION} +MASTER_SITES= http://download.cd2mp3.org.uk/${PORTVERSION}/ -MAINTAINER= jamie@jamiesdomain.co.uk +MAINTAINER= jamie@jamiesdomain.org.uk RUN_DEPENDS= bladeenc:${PORTSDIR}/audio/bladeenc/ \ - dagrab:${PORTSDIR}/audio/dagrab + dagrab:${PORTSDIR}/audio/dagrab/ NO_BUILD= yes WRKSRC= ${WRKDIR}/cd2mp3 do-install: ${INSTALL_SCRIPT} ${WRKSRC}/cd2mp3 ${PREFIX}/bin/cd2mp3 -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/cd2mp3 - ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/cd2mp3/README -.endif .include diff -ruN cd2mp3.bak/README.html cd2mp3/README.html --- cd2mp3.bak/README.html Fri Jul 28 11:54:43 2000 +++ cd2mp3/README.html Thu Jan 1 01:00:00 1970 @@ -1,30 +0,0 @@ - - The FreeBSD Ports Collection (audio/cd2mp3) -

The FreeBSD Ports Collection ("audio/cd2mp3")


- - -

You are now in the directory for the port "audio/cd2mp3" (package name "cd2mp3-1.1"). - -

This is the one-line description for this port: - -


-Easy to use MP3 Creator -


- -

Please read the file "pkg/DESCR" for a -longer description. - -

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

- -

-This port requires package(s) "bladeenc-0.92 dagrab-0.3.5" to run. - -


- Go up one level -| - Go to top of ports tree - - diff -ruN cd2mp3.bak/files/md5 cd2mp3/files/md5 --- cd2mp3.bak/files/md5 Fri Jun 2 07:46:47 2000 +++ cd2mp3/files/md5 Thu Sep 28 16:29:06 2000 @@ -1 +1 @@ -MD5 (cd2mp3-1.1.tar.gz) = 2e63c95c79b6cfbad95cabb3e42c5b01 +MD5 (cd2mp3-0.5.tar.gz) = 79d86fd5788bf113dc2f50f896f4aa23 diff -ruN cd2mp3.bak/pkg/COMMENT cd2mp3/pkg/COMMENT --- cd2mp3.bak/pkg/COMMENT Fri Jun 2 07:46:47 2000 +++ cd2mp3/pkg/COMMENT Thu Sep 28 16:29:06 2000 @@ -1 +1 @@ -Easy to use MP3 Creator +Easy to use MP3 manipulation and creation tool diff -ruN cd2mp3.bak/pkg/DESCR cd2mp3/pkg/DESCR --- cd2mp3.bak/pkg/DESCR Fri Jun 2 07:46:47 2000 +++ cd2mp3/pkg/DESCR Thu Sep 28 16:29:06 2000 @@ -1,14 +1,11 @@ -This port makes mp3 creation easy, by ripping tracks from -CD to WAV files and Encoding them to mp3 automatically. +cd2mp3 will help you create MP3s from your favourite CD collections. -It is basically a front-end (but VERY easy to use) to -dagrab and bladeenc, which must be installed in your -path. +It features single track encoding, entire CD encoding, ripping of tracks +to .WAV files, and encoding .WAV files to MP3 Format. -These programs and further documentation are available -from the website. +Further documentation is available at our website. -WWW: http://ukug.uk.freebsd.org/~kandy/ +WWW: http://www.jamiesdomain.org.uk/ - Jamie Heckford -jamie@jamiesdomain.co.uk +jamie@jamiesdomain.org.uk diff -ruN cd2mp3.bak/pkg/PLIST cd2mp3/pkg/PLIST --- cd2mp3.bak/pkg/PLIST Fri Jun 2 07:46:47 2000 +++ cd2mp3/pkg/PLIST Thu Sep 28 16:29:06 2000 @@ -1,3 +1 @@ bin/cd2mp3 -share/cd2mp3/README -@dirrm share/cd2mp3 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 7:28:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id EFD3437B66C; Wed, 4 Oct 2000 07:28:17 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 552C91953; Wed, 4 Oct 2000 09:28:37 -0500 (EST) Date: Wed, 4 Oct 2000 09:28:37 -0500 From: Will Andrews To: Maxim Sobolev Cc: jamie@jamiesdomain.org.uk, ports@FreeBSD.ORG Subject: Re: Ports query/help Message-ID: <20001004092837.F26605@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Maxim Sobolev , jamie@jamiesdomain.org.uk, ports@FreeBSD.ORG References: <200010041104.e94B4b410893@atlas.snet.co.uk> <39DB2748.213E39BD@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39DB2748.213E39BD@FreeBSD.org>; from sobomax@FreeBSD.ORG on Wed, Oct 04, 2000 at 03:49:12PM +0300 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Oct 04, 2000 at 03:49:12PM +0300, Maxim Sobolev wrote: > Yes, you have to kick mharo & will for not updating portlint. You can solve your > problem by kicking them hard enough several times ;). Blah. People are too dependent on portlint to tell them The Right Thing (tm). ;-> However, Jim has submitted a PR to handle PORTEPOCH/PORTREVISION and I will review/commit ASAP. :-) -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 7:28:39 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A9EBC37B503; Wed, 4 Oct 2000 07:28:37 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA63701; Wed, 4 Oct 2000 07:28:37 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Wed, 4 Oct 2000 07:28:37 -0700 (PDT) From: Message-Id: <200010041428.HAA63701@freefall.freebsd.org> To: johann@egenetics.com, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21393: Update port: sysutils/lavaps Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: sysutils/lavaps State-Changed-From-To: feedback->closed State-Changed-By: jeh State-Changed-When: Wed Oct 4 07:28:09 PDT 2000 State-Changed-Why: Committed. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21393 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 7:40: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7E0CA37B502 for ; Wed, 4 Oct 2000 07:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA67713; Wed, 4 Oct 2000 07:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 4 Oct 2000 07:40:01 -0700 (PDT) Message-Id: <200010041440.HAA67713@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: Re: ports/21746: Ports update: audio/cd2mp3 Update to cd2mp3 new release Reply-To: Will Andrews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21746; it has been noted by GNATS. From: Will Andrews To: jamie@jamiesdomain.org.uk Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/21746: Ports update: audio/cd2mp3 Update to cd2mp3 new release Date: Wed, 4 Oct 2000 09:31:29 -0500 On Wed, Oct 04, 2000 at 12:24:52PM +0100, jamie@jamiesdomain.org.uk wrote: > >Synopsis: Ports update: audio/cd2mp3 Update to cd2mp3 new release > >Description: > > Ports update: audio/cd2mp3 Update to cd2mp3 new release > > >How-To-Repeat: > # This is a shell archive. Save it in a file, remove anything before Blargh. You didn't even read my private email or the Porter's Handbook, specifically this part: http://www.freebsd.org/porters-handbook/port-upgrading.html which says: Note: Once again, please use diff(1) and not shar(1) to send updates to existing ports! GRRRRRR. It even EMPHASIZED this part! :-( -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 7:40: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B25AB37B66D for ; Wed, 4 Oct 2000 07:40:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA67733; Wed, 4 Oct 2000 07:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 4 Oct 2000 07:40:04 -0700 (PDT) Message-Id: <200010041440.HAA67733@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: James Housley Subject: Re: ports/21739: Bring in to /etc/services healthd from IANA Reply-To: James Housley Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21739; it has been noted by GNATS. From: James Housley To: freebsd-gnats-submit@FreeBSD.org, jeh@FreeBSD.org Cc: Subject: Re: ports/21739: Bring in to /etc/services healthd from IANA Date: Wed, 04 Oct 2000 10:36:48 -0400 I mis-filed this. It should be in "bin". Jim -- PC hardware is the ductape of the computer inustry... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 7:43:29 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 28AD137B66C; Wed, 4 Oct 2000 07:43:27 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA69068; Wed, 4 Oct 2000 07:43:27 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Wed, 4 Oct 2000 07:43:27 -0700 (PDT) From: Message-Id: <200010041443.HAA69068@freefall.freebsd.org> To: keith@freebsd.sinica.edu.tw, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21732: typos in chinese/arphicttf/pkg/INSTALL Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: typos in chinese/arphicttf/pkg/INSTALL State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Wed Oct 4 07:43:13 PDT 2000 State-Changed-Why: Commited, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21732 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 7:55:23 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F73337B503; Wed, 4 Oct 2000 07:55:22 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA73279; Wed, 4 Oct 2000 07:55:22 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Wed, 4 Oct 2000 07:55:22 -0700 (PDT) From: Message-Id: <200010041455.HAA73279@freefall.freebsd.org> To: keith@freebsd.sinica.edu.tw, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21733: Update chinese/CJK to the latest version Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update chinese/CJK to the latest version State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Wed Oct 4 07:54:36 PDT 2000 State-Changed-Why: Patches applied, thanks. BTW, I'll change the name to cjk. http://www.freebsd.org/cgi/query-pr.cgi?pr=21733 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 7:55:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id AA38E37B66C; Wed, 4 Oct 2000 07:55:41 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 2858C1955; Wed, 4 Oct 2000 09:56:02 -0500 (EST) Date: Wed, 4 Oct 2000 09:56:02 -0500 From: Will Andrews To: Maxim Sobolev Cc: bmah@FreeBSD.ORG, Neil Blakey-Milner , Akinori -Aki- MUSHA , freebsd-ports@FreeBSD.ORG, asami@FreeBSD.ORG Subject: Re: PROPOSAL: Use @comment PLIST variable to track where installed packages came from [Was: Enhancement of pkg_version's version comparison routine] Message-ID: <20001004095602.L26605@puck.firepipe.net> Reply-To: Will Andrews References: <86k8by6eis.wl@archon.local.idaemons.org> <20000927002401.A73341@mithrandr.moria.org> <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> <39D9EE01.7A880665@FreeBSD.org> <200010031657.e93Gvtg10718@bmah-freebsd-0.cisco.com> <39DB17BB.12805565@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39DB17BB.12805565@FreeBSD.org>; from sobomax@FreeBSD.ORG on Wed, Oct 04, 2000 at 02:42:52PM +0300 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Oct 04, 2000 at 02:42:52PM +0300, Maxim Sobolev wrote: > Well, I did not tell that it will solve all our problems, but it really can help to > improve things a bit. I like your proposal & code, and want this implemented. It will help us in the long run if we implement it sooner (maybe your implementation is not optimal, but I can't think of a better method). Thanks for your work. Satoshi & hamster, please review and commit (with furry paws :-)! :-) -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 8: 3:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 940C837B66C; Wed, 4 Oct 2000 08:03:41 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA76381; Wed, 4 Oct 2000 08:03:41 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Wed, 4 Oct 2000 08:03:41 -0700 (PDT) From: Message-Id: <200010041503.IAA76381@freefall.freebsd.org> To: dima@Chg.RU, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21744: Update port: net/rrdtool Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: net/rrdtool State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Wed Oct 4 08:03:11 PDT 2000 State-Changed-Why: Committed, thanks. ;) http://www.freebsd.org/cgi/query-pr.cgi?pr=21744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 8: 7:31 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2133E37B503; Wed, 4 Oct 2000 08:07:30 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA79361; Wed, 4 Oct 2000 08:07:30 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Wed, 4 Oct 2000 08:07:30 -0700 (PDT) From: Message-Id: <200010041507.IAA79361@freefall.freebsd.org> To: jhp@cocoja.holywar.net, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21738: [PATCH] net/tintin++-devel md5 correction Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] net/tintin++-devel md5 correction State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Wed Oct 4 08:07:09 PDT 2000 State-Changed-Why: Commited, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21738 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 8:13:47 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1ED4F37B66D; Wed, 4 Oct 2000 08:13:46 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA81536; Wed, 4 Oct 2000 08:13:46 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Wed, 4 Oct 2000 08:13:46 -0700 (PDT) From: Message-Id: <200010041513.IAA81536@freefall.freebsd.org> To: sec@ice.42.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21731: lynx-ssl port: switch distfile to bzip2 (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: lynx-ssl port: switch distfile to bzip2 (by maintainer) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Wed Oct 4 08:13:29 PDT 2000 State-Changed-Why: Patches applied, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21731 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 8:18: 2 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CCFF137B66C; Wed, 4 Oct 2000 08:18:00 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA83188; Wed, 4 Oct 2000 08:18:00 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Wed, 4 Oct 2000 08:18:00 -0700 (PDT) From: Message-Id: <200010041518.IAA83188@freefall.freebsd.org> To: mwest@uct.ac.za, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21730: port update: mail/lbdb [PATCH] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port update: mail/lbdb [PATCH] State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Wed Oct 4 08:17:42 PDT 2000 State-Changed-Why: Patches applied, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21730 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 9:40: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C347537B503 for ; Wed, 4 Oct 2000 09:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA15416; Wed, 4 Oct 2000 09:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.inka.de (quechua.inka.de [212.227.14.2]) by hub.freebsd.org (Postfix) with ESMTP id 0F17437B502 for ; Wed, 4 Oct 2000 09:32:18 -0700 (PDT) Received: from ganerc.mips.inka.de (uucp@) by mail.inka.de with local-bsmtp id 13grSq-0001Vc-00; Wed, 4 Oct 2000 18:32:16 +0200 Received: (from naddy@localhost) by ganerc.mips.inka.de (8.11.0/8.11.0) id e94G9dr75743; Wed, 4 Oct 2000 18:09:39 +0200 (CEST) (envelope-from naddy) Message-Id: <200010041609.e94G9dr75743@ganerc.mips.inka.de> Date: Wed, 4 Oct 2000 18:09:39 +0200 (CEST) From: Christian Weisgerber Reply-To: naddy@mips.inka.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21755: update editors/nano to 0.9.19 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21755 >Category: ports >Synopsis: update editors/nano to 0.9.19 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 04 09:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Christian Weisgerber >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: >Description: - Update ports/editor/nano to the latest release 0.9.19. - Allow to optionally build with libslang. - Properly fix gettext autoconf breakage. - Update MASTER_SITES/WWW. >How-To-Repeat: >Fix: diff -uNr /usr/ports/editors/nano/Makefile nano/Makefile --- /usr/ports/editors/nano/Makefile Fri Aug 11 22:39:15 2000 +++ nano/Makefile Wed Oct 4 18:02:48 2000 @@ -6,19 +6,25 @@ # PORTNAME= nano -PORTVERSION= 0.9.16 +PORTVERSION= 0.9.19 CATEGORIES= editors -MASTER_SITES= http://www.asty.org/nano/dist/ \ +MASTER_SITES= http://www.nano-editor.org/dist/ \ ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= nemesis@balistik.net LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext +.if defined(WITH_SLANG) +LIB_DEPENDS+= slang.1:${PORTSDIR}/devel/libslang +.endif -GNU_CONFIGURE= yes +USE_AUTOCONF= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -lintl" + LDFLAGS="-L${LOCALBASE}/lib" +.if defined(WITH_SLANG) +CONFIGURE_ARGS+= --with-slang=${LOCALBASE} +.endif MAN1= nano.1 diff -uNr /usr/ports/editors/nano/files/md5 nano/files/md5 --- /usr/ports/editors/nano/files/md5 Fri Aug 11 22:39:15 2000 +++ nano/files/md5 Wed Oct 4 18:03:22 2000 @@ -1 +1 @@ -MD5 (nano-0.9.16.tar.gz) = dc2187ba6d8363b1f2a3769401daeaa6 +MD5 (nano-0.9.19.tar.gz) = 2e99655dce1a3fa8e61213f3e2cb079f diff -uNr /usr/ports/editors/nano/patches/patch-aclocal_m4 nano/patches/patch-aclocal_m4 --- /usr/ports/editors/nano/patches/patch-aclocal_m4 Thu Jan 1 01:00:00 1970 +++ nano/patches/patch-aclocal_m4 Thu Sep 21 22:24:20 2000 @@ -0,0 +1,15 @@ +--- aclocal.m4.orig Thu Sep 21 16:29:40 2000 ++++ aclocal.m4 Thu Sep 21 16:32:43 2000 +@@ -370,10 +370,9 @@ AC_DEFUN(AM_WITH_NLS, + + if test "$gt_cv_func_gettext_libc" != "yes"; then + AC_CHECK_LIB(intl, bindtextdomain, +- [AC_CACHE_CHECK([for gettext in libintl], +- gt_cv_func_gettext_libintl, ++ [AC_CACHE_VAL(gt_cv_func_gettext_libintl, + [AC_CHECK_LIB(intl, gettext, +- gt_cv_func_gettext_libintl=yes, ++ [gt_cv_func_gettext_libintl=yes; LIBS="$LIBS -lintl"], + gt_cv_func_gettext_libintl=no)], + gt_cv_func_gettext_libintl=no)]) + fi diff -uNr /usr/ports/editors/nano/pkg/DESCR nano/pkg/DESCR --- /usr/ports/editors/nano/pkg/DESCR Thu Jun 29 15:53:01 2000 +++ nano/pkg/DESCR Wed Oct 4 18:03:02 2000 @@ -5,7 +5,7 @@ default) features in Pico, such as "search and replace" and "goto line number". -WWW: http://www.asty.org/nano +WWW: http://www.nano-editor.org - Philippe nemesis@balistik.net >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 10:10: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A1DC37B66C for ; Wed, 4 Oct 2000 10:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA27445; Wed, 4 Oct 2000 10:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from privatecube.privatelabs.com (privatecube.privatelabs.com [198.143.31.30]) by hub.freebsd.org (Postfix) with ESMTP id E391637B503; Wed, 4 Oct 2000 10:05:20 -0700 (PDT) Received: from monsta.privatelabs.com (monsta.plten [10.0.0.6]) by privatecube.privatelabs.com (8.9.3/8.9.2) with ESMTP id MAA06622; Wed, 4 Oct 2000 12:24:06 -0400 Received: (from root@localhost) by monsta.privatelabs.com (8.11.0/8.11.0) id e94H3FW02623; Wed, 4 Oct 2000 13:03:15 -0400 (EDT) (envelope-from mi) Message-Id: <200009122103.RAA88842@monsta.privatelabs.com> Date: Tue, 12 Sep 2000 17:03:51 -0400 (EDT) From: root@monsta.privatelabs.com Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@freebsd.org Cc: squid-bugs@ircache.net, peter@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21756: errors in Squid-2.3.4's configure prevent ipf configuration Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21756 >Category: ports >Synopsis: errors in Squid-2.3.4's configure prevent ipf configuration >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 04 10:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 4.1-RC i386 >Organization: Virtual Estates, Inc. >Environment: >Description: The lines in the squid's configure, that check for ip-filter are erroneous -- the test(1) invocations have ``=='' instead of ``=''. If I uncomment the (off-by-default): CONFIGURE_ARGS+= --enable-ipf-transparent in the port's Makefile, the configure will fail with test(1) complaining about syntax errors. >How-To-Repeat: See description. >Fix: Squid should, of course, fix this ASAP. But until that happens, dropping the following into /usr/ports/www/squid23/patches/patch-pl will ensure the port builds on *BSD: +++ configure Tue Sep 12 16:50:22 2000 @@ -4452,10 +4452,10 @@ echo "configure:4460: checking if IP-Filter header files are installed" >&5 # hold on to your hats... if test "$ac_cv_header_ip_compat_h" = "yes" || test "$ac_cv_header_ip_fil_compat_h" = "yes" || - test "$ac_cv_header_netinet_ip_compat_h" == "yes" || - test "$ac_cv_header_netinet_ip_fil_compat_h" == "yes" ; then + test "$ac_cv_header_netinet_ip_compat_h" = "yes" || + test "$ac_cv_header_netinet_ip_fil_compat_h" = "yes" ; then have_ipfilter_compat_header="yes" fi if test "x$have_ipfilter_compat_header" = "xyes" && test "$ac_cv_header_ip_fil_h" = "yes" && --VAA91348.968807428/monsta.privatelabs.com-- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 12:10: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A3EC737B66C for ; Wed, 4 Oct 2000 12:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA73479; Wed, 4 Oct 2000 12:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 4 Oct 2000 12:10:02 -0700 (PDT) Message-Id: <200010041910.MAA73479@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: Re: ports/21749: Update port: audio/cd2mp3 Update to cd2mp3 new release Reply-To: Will Andrews Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21749; it has been noted by GNATS. From: Will Andrews To: jamie@jamiesdomain.org.uk Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/21749: Update port: audio/cd2mp3 Update to cd2mp3 new release Date: Wed, 4 Oct 2000 14:07:04 -0500 On Wed, Oct 04, 2000 at 01:58:51PM +0100, jamie@jamiesdomain.org.uk wrote: > >Synopsis: Update port: audio/cd2mp3 Update to cd2mp3 new release > >Fix: > > diff -ruN cd2mp3.bak/Makefile cd2mp3/Makefile [...] YES!!!! :-) > --- cd2mp3.bak/Makefile Fri Jun 2 07:46:47 2000 > +++ cd2mp3/Makefile Wed Oct 4 11:57:10 2000 > @@ -1,29 +1,25 @@ > -# New ports collection makefile for: cd2mp3 > -# Date created: 4 January 2000 > -# Whom: Jamie Heckford > +# New ports collection Makefile for: cd2mp3 > +# Date created: 4 January 2000 > +# Whom: Jamie Heckford Hmm.. whitespace changes suck. I'll just revert them (because the old one is more aesthetically pleasing). > +MASTER_SITES= http://download.cd2mp3.org.uk/${PORTVERSION}/ Hey look, it resolves! :-P > diff -ruN cd2mp3.bak/README.html cd2mp3/README.html > --- cd2mp3.bak/README.html Fri Jul 28 11:54:43 2000 > +++ cd2mp3/README.html Thu Jan 1 01:00:00 1970 > @@ -1,30 +0,0 @@ > - > - The FreeBSD Ports Collection (audio/cd2mp3) > -

The FreeBSD Ports Collection ("audio/cd2mp3")


> - > - > -

You are now in the directory for the port "audio/cd2mp3" (package name "cd2mp3-1.1"). > - > -

This is the one-line description for this port: > - > -


> -Easy to use MP3 Creator > -


> - > -

Please read the file "pkg/DESCR" for a > -longer description. > - > -

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

> - > -

> -This port requires package(s) "bladeenc-0.92 dagrab-0.3.5" to run. > - > -


> - Go up one level > -| > - Go to top of ports tree > - > - Not in the repository. But I can ignore this. :-) Well done diff. I was actually surprised to discover that you remembered to use PORTEPOCH. ;-) -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 14: 0:24 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5B1FA37B66D for ; Wed, 4 Oct 2000 14:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA14541; Wed, 4 Oct 2000 14:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from wartch.sapros.com (rularan.sapros.com [204.182.55.17]) by hub.freebsd.org (Postfix) with ESMTP id D3B3D37B66E for ; Wed, 4 Oct 2000 13:59:06 -0700 (PDT) Received: (from peterh@localhost) by wartch.sapros.com (8.11.0/8.9.3) id e94Kw5A54715; Wed, 4 Oct 2000 13:58:05 -0700 (PDT) (envelope-from peterh) Message-Id: <200010042058.e94Kw5A54715@wartch.sapros.com> Date: Wed, 4 Oct 2000 13:58:05 -0700 (PDT) From: peterh@sapros.com Reply-To: peterh@sapros.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21759: New port: py-BisonGen-0.5.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21759 >Category: ports >Synopsis: New port: py-BisonGen-0.5.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 04 14:00:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Peter Haight >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: >Description: New port: py-BisonGen-0.5.0 BisonGen is a parser generator for python. It takes a XML file (similar to a bison file in format) and a lexx file. With these two files it generates a C parser, a Swig wrapper, and a python parser class. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # py-BisonGen # py-BisonGen/Makefile # py-BisonGen/pkg # py-BisonGen/pkg/DESCR # py-BisonGen/pkg/COMMENT # py-BisonGen/pkg/PLIST # py-BisonGen/files # py-BisonGen/files/md5 # echo c - py-BisonGen mkdir -p py-BisonGen > /dev/null 2>&1 echo x - py-BisonGen/Makefile sed 's/^X//' >py-BisonGen/Makefile << 'END-of-py-BisonGen/Makefile' X# Ports collection Makefile for: py-BisonGen X# Date created: 10/04/2000 X# Whom: peterh@sapros.com X# X# $FreeBSD$ X# X XPORTNAME= py-BisonGen XPORTVERSION= 0.5.0 XCATEGORIES= devel python XMASTER_SITES= ftp://ftp.fourthought.com/pub/4Suite/ XDISTNAME= BisonGen-${PORTVERSION} X XMAINTAINER= peterh@sapros.com X XBUILD_DEPENDS= ${PYDISTUTILS} X XUSE_PYTHON= yes X X.include X Xdo-build: X cd ${WRKSRC} && ${PYTHON_CMD} setup.py build X Xdo-install: X cd ${WRKSRC} && ${PYTHON_CMD} setup.py install --prefix=${PREFIX} --install-data=${PREFIX}/share/doc/${DISTNAME} X X.include END-of-py-BisonGen/Makefile echo c - py-BisonGen/pkg mkdir -p py-BisonGen/pkg > /dev/null 2>&1 echo x - py-BisonGen/pkg/DESCR sed 's/^X//' >py-BisonGen/pkg/DESCR << 'END-of-py-BisonGen/pkg/DESCR' XBisonGen is a parser generator for python. It takes a XML file (similar to Xa bison file in format) and a lexx file. With these two files it generates Xa C parser, a Swig wrapper, and a python parser class. X XWWW: http://fourthought.com/4Suite/ X Xpeterh@sapros.com END-of-py-BisonGen/pkg/DESCR echo x - py-BisonGen/pkg/COMMENT sed 's/^X//' >py-BisonGen/pkg/COMMENT << 'END-of-py-BisonGen/pkg/COMMENT' XA parser generator for Python END-of-py-BisonGen/pkg/COMMENT echo x - py-BisonGen/pkg/PLIST sed 's/^X//' >py-BisonGen/pkg/PLIST << 'END-of-py-BisonGen/pkg/PLIST' Xbin/BisonGen Xlib/%%PYTHON_VERSION%%/site-packages/BisonGen/BGenReader.py Xlib/%%PYTHON_VERSION%%/site-packages/BisonGen/BisonGen.py Xlib/%%PYTHON_VERSION%%/site-packages/BisonGen/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/BisonGen/BGenReader.pyc Xlib/%%PYTHON_VERSION%%/site-packages/BisonGen/BisonGen.pyc Xlib/%%PYTHON_VERSION%%/site-packages/BisonGen/__init__.pyc Xshare/doc/BisonGen-0.5.0/BisonGen.doc Xshare/doc/BisonGen-0.5.0/test_suite/simple/simple.bgen Xshare/doc/BisonGen-0.5.0/test_suite/simple/simple.l Xshare/doc/BisonGen-0.5.0/test_suite/simple/test.py Xshare/doc/BisonGen-0.5.0/ParserSpec.dtd X@dirrm lib/%%PYTHON_VERSION%%/site-packages/BisonGen X@dirrm share/doc/BisonGen-0.5.0/test_suite/simple X@dirrm share/doc/BisonGen-0.5.0/test_suite X@dirrm share/doc/BisonGen-0.5.0 END-of-py-BisonGen/pkg/PLIST echo c - py-BisonGen/files mkdir -p py-BisonGen/files > /dev/null 2>&1 echo x - py-BisonGen/files/md5 sed 's/^X//' >py-BisonGen/files/md5 << 'END-of-py-BisonGen/files/md5' XMD5 (BisonGen-0.5.0.tar.gz) = c219fc6b41db182b53941e0166cfaacc END-of-py-BisonGen/files/md5 exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 14:10:36 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EB1D637B66C for ; Wed, 4 Oct 2000 14:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA19754; Wed, 4 Oct 2000 14:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from wartch.sapros.com (rularan.sapros.com [204.182.55.17]) by hub.freebsd.org (Postfix) with ESMTP id 5B3B337B66D for ; Wed, 4 Oct 2000 14:06:28 -0700 (PDT) Received: (from peterh@localhost) by wartch.sapros.com (8.11.0/8.9.3) id e94L5Qp54957; Wed, 4 Oct 2000 14:05:26 -0700 (PDT) (envelope-from peterh) Message-Id: <200010042105.e94L5Qp54957@wartch.sapros.com> Date: Wed, 4 Oct 2000 14:05:26 -0700 (PDT) From: peterh@sapros.com Reply-To: peterh@sapros.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21760: New port: py-4Suite-0.9.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21760 >Category: ports >Synopsis: New port: py-4Suite-0.9.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 04 14:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Peter Haight >Release: FreeBSD 4.1.1-STABLE i386 >Organization: >Environment: >Description: New port: py-4Suite-0.9.0 Fourthought's proven, standards-based suite of software for Web application development. 4Suite currently consists of four major components, all of which are open-source. An XSLT processor, an XPath implementation, an ODMG implementation, and an RDF library. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # py-4Suite # py-4Suite/Makefile # py-4Suite/files # py-4Suite/files/md5 # py-4Suite/pkg # py-4Suite/pkg/COMMENT # py-4Suite/pkg/DESCR # py-4Suite/pkg/PLIST # py-4Suite/patches # py-4Suite/patches/patch-aa # echo c - py-4Suite mkdir -p py-4Suite > /dev/null 2>&1 echo x - py-4Suite/Makefile sed 's/^X//' >py-4Suite/Makefile << 'END-of-py-4Suite/Makefile' X# Ports collection Makefile for: py-4Suite X# Date created: 10/04/2000 X# Whom: peterh@sapros.com X# X# $FreeBSD$ X# X XPORTNAME= py-4Suite XPORTVERSION= 0.9.0 XCATEGORIES= textproc python XMASTER_SITES= ftp://ftp.fourthought.com/pub/4Suite/ XDISTNAME= 4Suite-${PORTVERSION} X XMAINTAINER= peterh@sapros.com X XBUILD_DEPENDS= bison:${PORTSDIR}/devel/bison \ X swig:${PORTSDIR}/devel/SWIG \ X ${PYTHON_SITELIBDIR}/BisonGen/BisonGen.py:${PORTSDIR}/devel/py-BisonGen \ X ${PYTHON_SITELIBDIR}/xml/__init__.py:${PORTSDIR}/textproc/py-xml \ X ${PYDISTUTILS} X XUSE_PYTHON= yes X X.include X Xdo-build: X cd ${WRKSRC} && ${PYTHON_CMD} setup.py build X Xdo-install: X cd ${WRKSRC} && ${PYTHON_CMD} setup.py install --prefix=${PREFIX} --install-data=${PREFIX}/share/doc/${DISTNAME} X X.include END-of-py-4Suite/Makefile echo c - py-4Suite/files mkdir -p py-4Suite/files > /dev/null 2>&1 echo x - py-4Suite/files/md5 sed 's/^X//' >py-4Suite/files/md5 << 'END-of-py-4Suite/files/md5' XMD5 (4Suite-0.9.0.tar.gz) = fc7ee4f2f9a3ede3ea9cac3ab9334d36 END-of-py-4Suite/files/md5 echo c - py-4Suite/pkg mkdir -p py-4Suite/pkg > /dev/null 2>&1 echo x - py-4Suite/pkg/COMMENT sed 's/^X//' >py-4Suite/pkg/COMMENT << 'END-of-py-4Suite/pkg/COMMENT' XFourthought's suite of libraries including XML, XSL, and RDF END-of-py-4Suite/pkg/COMMENT echo x - py-4Suite/pkg/DESCR sed 's/^X//' >py-4Suite/pkg/DESCR << 'END-of-py-4Suite/pkg/DESCR' XFourthought's proven, standards-based suite of software for Web application Xdevelopment. 4Suite currently consists of four major components, all of Xwhich are open-source. An XSLT processor, an XPath implementation, an ODMG Ximplementation, and an RDF library. X XWWW: http://fourthought.com/4Suite/ X Xpeterh@sapros.com END-of-py-4Suite/pkg/DESCR echo x - py-4Suite/pkg/PLIST sed 's/^X//' >py-4Suite/pkg/PLIST << 'END-of-py-4Suite/pkg/PLIST' Xbin/4odb_clean Xbin/4odb_clear Xbin/4odb_create Xbin/4odb_destroy Xbin/4odb_dig Xbin/4odb_grant Xbin/4odb_metadig Xbin/4odb_odmsdump Xbin/4odb_odmsload Xbin/4xslt Xbin/OdlParse Xbin/profile_processor Xbin/strip_traceout Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/Coverage.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/Coverage.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/Cyclops.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/Cyclops.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/DumpBgMapping.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/DumpBgMapping.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/DumpBgTuple.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/DumpBgTuple.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/PackageUtil.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/PackageUtil.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/PgDatabase.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/PgDatabase.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/Set.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/Set.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/StageUtil.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/StageUtil.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/TestSuite.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/TestSuite.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/TimeLib.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/TimeLib.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/TraceOut.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/TraceOut.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/Uuid.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/Uuid.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/cDomlette.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/cDomlette.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/cDomlettec.so Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/pDomlette.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Lib/pDomlette.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collection.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collection.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/BagBase.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/BagBase.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/BidirectionalIterator.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/BidirectionalIterator.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/CollectionBase.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/CollectionBase.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/CollectionOfPersistentObjects.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/CollectionOfPersistentObjects.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/CollectionOfValues.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/CollectionOfValues.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/DictionaryOfPersistentObjects.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/DictionaryOfPersistentObjects.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/Iterator.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/Iterator.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/ListBase.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/ListBase.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralBagOfObjects.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralBagOfObjects.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralBagOfRepositoryObjects.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralBagOfRepositoryObjects.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralBagOfValues.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralBagOfValues.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralCollection.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralCollection.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralDictionaryOfObjects.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralDictionaryOfObjects.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralDictionaryOfRepositoryObjects.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralDictionaryOfRepositoryObjects.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralDictionaryOfValues.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralDictionaryOfValues.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralListOfObjects.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralListOfObjects.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralListOfRepositoryObjects.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralListOfRepositoryObjects.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralListOfValues.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralListOfValues.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralSetOfObjects.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralSetOfObjects.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralSetOfRepositoryObjects.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralSetOfRepositoryObjects.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralSetOfValues.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/LiteralSetOfValues.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/SetBase.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/SetBase.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Database.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Database.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Literal.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Literal.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Attribute.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Attribute.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Class.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Class.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Collection.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Collection.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/ConstOperand.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/ConstOperand.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Constant.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Constant.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/DefiningScope.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/DefiningScope.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Dictionary.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Dictionary.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Enumeration.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Enumeration.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Exception.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Exception.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Expression.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Expression.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Interface.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Interface.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Literal.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Literal.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Member.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Member.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/MetaObject.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/MetaObject.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Module.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Module.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Operand.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Operand.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Operation.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Operation.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Parameter.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Parameter.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/PrimitiveType.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/PrimitiveType.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Property.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Property.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Relationship.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Relationship.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Repository.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Repository.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/RepositoryObject.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/RepositoryObject.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Scope.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Scope.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/ScopedType.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/ScopedType.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Specifier.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Specifier.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Structure.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Structure.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Type.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Type.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/TypeDefinition.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/TypeDefinition.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Union.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/Union.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/UnionCase.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/UnionCase.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Object.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Object.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/GenerateConstant.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/GenerateConstant.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/GenerateEnumeration.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/GenerateEnumeration.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/GenerateInterface.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/GenerateInterface.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/GenerateMember.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/GenerateMember.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/GenerateModule.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/GenerateModule.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/GenerateRepository.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/GenerateRepository.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/GenerateStructure.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/GenerateStructure.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/GenerateType.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/GenerateType.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/GenerateUtils.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/GenerateUtils.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/Odl.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/Odl.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/OdlParse.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/OdlParse.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/OdlParseTreeMapping.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/OdlParseTreeMapping.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/OdlParserBase.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/OdlParserBase.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/OdlParserImp.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/OdlParserImp.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/Odlc.so Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/PostProcessor.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/PostProcessor.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oif/Oif.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oif/Oif.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oif/OifParseTreeMapping.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oif/OifParseTreeMapping.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oif/OifParserBase.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oif/OifParserBase.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oif/Oifc.so Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oif/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oif/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oql/Oql.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oql/Oql.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oql/OqlParseTreeTuple.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oql/OqlParseTreeTuple.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oql/OqlParserBase.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oql/OqlParserBase.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oql/Oqlc.so Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oql/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oql/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/PersistentObject.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/PersistentObject.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/Constants.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/Constants.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/Oracle.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/Oracle.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/OracleHelper.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/OracleHelper.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/OracleManagement.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/OracleManagement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/OracleMappings.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/OracleMappings.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/Postgres.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/Postgres.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/PostgresHelper.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/PostgresHelper.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/PostgresManagement.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/PostgresManagement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/PostgresMappings.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/PostgresMappings.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/Util.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/Util.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Extent.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Extent.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/ExtentManager.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/ExtentManager.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/OifAdapter.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/OifAdapter.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/QueryAdapter.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/QueryAdapter.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/_4odb_clean.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/_4odb_clean.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/_4odb_clear.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/_4odb_clear.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/_4odb_create.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/_4odb_create.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/_4odb_destroy.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/_4odb_destroy.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/_4odb_dig.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/_4odb_dig.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/_4odb_grant.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/_4odb_grant.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/_4odb_metadig.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/_4odb_metadig.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/_4odb_odmsdump.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/_4odb_odmsdump.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/_4odb_odmsload.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/_4odb_odmsload.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Transaction.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Transaction.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Container.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Container.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Drivers/DataBaseExceptions.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Drivers/DataBaseExceptions.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Drivers/Memory.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Drivers/Memory.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Drivers/Oracle.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Drivers/Oracle.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Drivers/Postgres.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Drivers/Postgres.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Drivers/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Drivers/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Inference/Action.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Inference/Action.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Inference/Assert.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Inference/Assert.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Inference/Command.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Inference/Command.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Inference/Common.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Inference/Common.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Inference/InferenceEngine.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Inference/InferenceEngine.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Inference/Predicate.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Inference/Predicate.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Inference/Query.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Inference/Query.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Inference/Rule.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Inference/Rule.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Inference/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Inference/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Model.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Model.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Parsers/Ril/ActionList.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Parsers/Ril/ActionList.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Parsers/Ril/CompiledRilExpression.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Parsers/Ril/CompiledRilExpression.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Parsers/Ril/ExtClasses.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Parsers/Ril/ExtClasses.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Parsers/Ril/RilParserImp.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Parsers/Ril/RilParserImp.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Parsers/Ril/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Parsers/Ril/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Parsers/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Parsers/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Resource.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Resource.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Serialization/CanonicalDom.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Serialization/CanonicalDom.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Serialization/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Serialization/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Statement.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Statement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/FileMerge.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/FileMerge.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/coveragepp.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/coveragepp.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/encodingcalc.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/encodingcalc.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/pgdig.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/pgdig.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/present.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/present.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/profile_processor.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/profile_processor.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/strip_traceout.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/strip_traceout.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/tabnanny.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/tabnanny.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/yacc_stripper.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/Tools/yacc_stripper.pyc Xlib/%%PYTHON_VERSION%%/site-packages/Ft/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/Ft/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/Attr.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/Attr.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/CDATASection.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/CDATASection.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/CharacterData.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/CharacterData.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/Comment.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/Comment.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/DOMImplementation.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/DOMImplementation.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/Document.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/Document.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/DocumentFragment.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/DocumentFragment.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/DocumentType.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/DocumentType.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/Element.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/Element.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/Entity.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/Entity.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/EntityReference.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/EntityReference.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/Event.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/Event.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/NamedNodeMap.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/NamedNodeMap.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/Node.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/Node.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/NodeFilter.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/NodeFilter.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/NodeIterator.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/NodeIterator.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/NodeList.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/NodeList.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/Notation.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/Notation.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ProcessingInstruction.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ProcessingInstruction.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/Text.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/Text.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/TreeWalker.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/TreeWalker.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext/Printer.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext/Printer.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext/Visitor.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext/Visitor.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext/reader/HtmlLib.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext/reader/HtmlLib.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext/reader/HtmlSax.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext/reader/HtmlSax.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext/reader/Sax.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext/reader/Sax.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext/reader/Sax2.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext/reader/Sax2.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext/reader/Sax2Lib.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext/reader/Sax2Lib.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext/reader/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext/reader/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLAnchorElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLAnchorElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLAppletElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLAppletElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLAreaElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLAreaElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLBRElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLBRElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLBaseElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLBaseElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLBaseFontElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLBaseFontElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLBodyElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLBodyElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLButtonElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLButtonElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLCollection.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLCollection.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLDListElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLDListElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLDOMImplementation.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLDOMImplementation.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLDirectoryElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLDirectoryElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLDivElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLDivElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLDocument.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLDocument.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLFieldSetElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLFieldSetElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLFontElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLFontElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLFormElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLFormElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLFrameElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLFrameElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLFrameSetElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLFrameSetElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLHRElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLHRElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLHeadElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLHeadElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLHeadingElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLHeadingElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLHtmlElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLHtmlElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLIFrameElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLIFrameElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLImageElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLImageElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLInputElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLInputElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLIsIndexElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLIsIndexElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLLIElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLLIElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLLabelElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLLabelElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLLegendElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLLegendElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLLinkElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLLinkElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLMapElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLMapElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLMenuElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLMenuElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLMetaElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLMetaElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLModElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLModElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLOListElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLOListElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLObjectElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLObjectElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLOptGroupElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLOptGroupElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLOptionElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLOptionElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLParagraphElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLParagraphElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLParamElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLParamElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLPreElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLPreElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLQuoteElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLQuoteElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLScriptElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLScriptElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLSelectElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLSelectElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLStyleElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLStyleElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLTableCaptionElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLTableCaptionElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLTableCellElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLTableCellElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLTableColElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLTableColElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLTableElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLTableElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLTableRowElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLTableRowElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLTableSectionElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLTableSectionElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLTextAreaElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLTextAreaElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLTitleElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLTitleElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLUListElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/HTMLUListElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/dom/html/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/Boolean.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/Boolean.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/Context.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/Context.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/CoreFunctions.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/CoreFunctions.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ExpandedNameWrapper.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ExpandedNameWrapper.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/FtFunctions.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/FtFunctions.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/NamespaceNode.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/NamespaceNode.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedAbbreviatedAbsoluteLocationPath.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedAbbreviatedAbsoluteLocationPath.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedAbbreviatedRelativeLocationPath.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedAbbreviatedRelativeLocationPath.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedAbsoluteLocationPath.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedAbsoluteLocationPath.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedAxisSpecifier.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedAxisSpecifier.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedExpr.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedExpr.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedLocationPath.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedLocationPath.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedNodeTest.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedNodeTest.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedPredicate.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedPredicate.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedPredicateList.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedPredicateList.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedRelativeLocationPath.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedRelativeLocationPath.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedStep.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedStep.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedToken.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/ParsedToken.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/Util.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/Util.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/XPath.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/XPath.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/XPathParser.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/XPathParser.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/XPathParserBase.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/XPathParserBase.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/XPathc.so Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xpath/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ApplyImportsElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ApplyImportsElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ApplyTemplatesElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ApplyTemplatesElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/AttributeElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/AttributeElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/AttributeSetElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/AttributeSetElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/AttributeValueTemplate.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/AttributeValueTemplate.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/CallTemplateElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/CallTemplateElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ChooseElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ChooseElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/CommentElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/CommentElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/CopyElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/CopyElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/CopyOfElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/CopyOfElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/DomWriter.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/DomWriter.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ElementElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ElementElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ExtFunctions.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ExtFunctions.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ForEachElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ForEachElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/FtElements.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/FtElements.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/IfElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/IfElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/LiteralElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/LiteralElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/LiteralText.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/LiteralText.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/MessageElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/MessageElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/NumberElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/NumberElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/OtherXslElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/OtherXslElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/OtherwiseElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/OtherwiseElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ParamElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ParamElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ParsedIdKeyPattern.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ParsedIdKeyPattern.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ParsedLocationPathPattern.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ParsedLocationPathPattern.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ParsedPattern.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ParsedPattern.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ParsedRelativePathPattern.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ParsedRelativePathPattern.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ParsedStepPattern.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ParsedStepPattern.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ProcessingInstructionElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ProcessingInstructionElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/Processor.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/Processor.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/Roman.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/Roman.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/RtfWriter.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/RtfWriter.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/SaxWriter.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/SaxWriter.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/SortElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/SortElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/Stylesheet.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/Stylesheet.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/StylesheetReader.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/StylesheetReader.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/TemplateElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/TemplateElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/TextElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/TextElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/TextSax.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/TextSax.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/TextWriter.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/TextWriter.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ValueOfElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/ValueOfElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/VariableElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/VariableElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/WhenElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/WhenElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/WithParamElement.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/WithParamElement.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/XPattern.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/XPattern.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/XPatternParser.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/XPatternParser.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/XPatternParserBase.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/XPatternParserBase.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/XPatternc.so Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/XsltContext.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/XsltContext.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/_4xslt.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/_4xslt.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/__init__.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/__init__.pyc Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/en_US.py Xlib/%%PYTHON_VERSION%%/site-packages/xml/xslt/en_US.pyc Xshare/doc/4Suite-0.9.0/4Dom/demo/README Xshare/doc/4Suite-0.9.0/4Dom/demo/__init__.py Xshare/doc/4Suite-0.9.0/4Dom/demo/addr_book.dtd Xshare/doc/4Suite-0.9.0/4Dom/demo/addr_book1.xml Xshare/doc/4Suite-0.9.0/4Dom/demo/addr_book2.xml Xshare/doc/4Suite-0.9.0/4Dom/demo/book_catalog1.xml Xshare/doc/4Suite-0.9.0/4Dom/demo/dom_from_html_file.py Xshare/doc/4Suite-0.9.0/4Dom/demo/dom_from_xml_file.py Xshare/doc/4Suite-0.9.0/4Dom/demo/employee_table.html Xshare/doc/4Suite-0.9.0/4Dom/demo/generate_html1.py Xshare/doc/4Suite-0.9.0/4Dom/demo/iterator1.py Xshare/doc/4Suite-0.9.0/4Dom/demo/trace_ns.py Xshare/doc/4Suite-0.9.0/4Dom/demo/visitor1.py Xshare/doc/4Suite-0.9.0/4Dom/demo/xll_replace.py Xshare/doc/4Suite-0.9.0/4Dom/demo/xpointer_query.py Xshare/doc/4Suite-0.9.0/4Dom/demo/xptr.py Xshare/doc/4Suite-0.9.0/4Dom/docs/4DOM.web Xshare/doc/4Suite-0.9.0/4Dom/docs/ChangeLog Xshare/doc/4Suite-0.9.0/4Dom/docs/Extensions.api Xshare/doc/4Suite-0.9.0/4Dom/docs/Extensions.html Xshare/doc/4Suite-0.9.0/4Dom/docs/README Xshare/doc/4Suite-0.9.0/4Dom/docs/TODO Xshare/doc/4Suite-0.9.0/4Dom/docs/index.html Xshare/doc/4Suite-0.9.0/4Dom/ext/reader/test_suite/Benchmark.py Xshare/doc/4Suite-0.9.0/4Dom/ext/test_suite/bigTest.html Xshare/doc/4Suite-0.9.0/4Dom/ext/test_suite/mulit-single.html Xshare/doc/4Suite-0.9.0/4Dom/ext/test_suite/single.html Xshare/doc/4Suite-0.9.0/4Dom/ext/test_suite/test_html_builder.py Xshare/doc/4Suite-0.9.0/4Dom/ext/test_suite/test_memory.py Xshare/doc/4Suite-0.9.0/4Dom/ext/test_suite/test_nss_print.py Xshare/doc/4Suite-0.9.0/4Dom/ext/test_suite/test_single_elements.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_a.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_applet.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_area.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_base.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_basefont.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_blockquote.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_body.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_br.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_button.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_caption.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_col.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_collection.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_dir.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_div.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_dl.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_document.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_element.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_fieldset.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_font.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_form.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_frame.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_frameset.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_h.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_head.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_hr.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_html.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_html_dom_implementation.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_iframe.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_img.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_input.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_isindex.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_label.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_legend.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_li.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_link.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_map.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_menu.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_meta.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_mod.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_object.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_ol.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_optgroup.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_option.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_p.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_param.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_pre.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_q.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_script.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_section.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_select.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_style.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_table.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_td.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_textarea.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_title.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_tr.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/test_ul.py Xshare/doc/4Suite-0.9.0/4Dom/html/test_suite/util.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/borrowed/af_20000919.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_attr.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_cdatasection.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_characterdata.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_comment.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_demo.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_document.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_documentfragment.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_documenttype.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_domimplementation.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_element.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_entity.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_entityreference.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_html.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_namednodemap.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_node.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_nodeiterator.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_nodelist.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_notation.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_processinginstruction.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_pythonic.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_struct.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_text.py Xshare/doc/4Suite-0.9.0/4Dom/test_suite/test_treewalker.py Xshare/doc/4Suite-0.9.0/4Ods/Collections/test_suite/TestCollectionPersistence.py Xshare/doc/4Suite-0.9.0/4Ods/Collections/test_suite/TestCollections.py Xshare/doc/4Suite-0.9.0/4Ods/Collections/test_suite/TestDictionaries.py Xshare/doc/4Suite-0.9.0/4Ods/Collections/test_suite/TestIterator.py Xshare/doc/4Suite-0.9.0/4Ods/Collections/test_suite/TestUtil.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestAttribute.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestClass.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestCollection.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestConstOperand.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestConstant.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestDefiningScope.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestEnumeration.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestInterface.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestLiteral.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestMember.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestMetaObject.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestModule.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestOperation.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestPrimitiveType.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestProperty.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestRelationship.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestRepositoryObject.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestScope.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestStructure.py Xshare/doc/4Suite-0.9.0/4Ods/MetaData/test_suite/TestType.py Xshare/doc/4Suite-0.9.0/4Ods/Parsers/Odl/test_suite/TestExpressions.py Xshare/doc/4Suite-0.9.0/4Ods/Parsers/Odl/test_suite/collections.odl Xshare/doc/4Suite-0.9.0/4Ods/Parsers/Odl/test_suite/constants.odl Xshare/doc/4Suite-0.9.0/4Ods/Parsers/Odl/test_suite/enumerations.odl Xshare/doc/4Suite-0.9.0/4Ods/Parsers/Odl/test_suite/file.odl Xshare/doc/4Suite-0.9.0/4Ods/Parsers/Odl/test_suite/include1.odl Xshare/doc/4Suite-0.9.0/4Ods/Parsers/Odl/test_suite/include2.odl Xshare/doc/4Suite-0.9.0/4Ods/Parsers/Odl/test_suite/object_attribute.odl Xshare/doc/4Suite-0.9.0/4Ods/Parsers/Odl/test_suite/structure.odl Xshare/doc/4Suite-0.9.0/4Ods/Parsers/Odl/test_suite/types.odl Xshare/doc/4Suite-0.9.0/4Ods/Parsers/Odl/test_suite/varsity1.odl Xshare/doc/4Suite-0.9.0/4Ods/Parsers/Odl/test_suite/varsity2.odl Xshare/doc/4Suite-0.9.0/4Ods/Parsers/Odl/test_suite/xml.odl Xshare/doc/4Suite-0.9.0/4Ods/StorageManager/Adapters/test_suite/TestOqlAdapter.py Xshare/doc/4Suite-0.9.0/4Ods/StorageManager/Adapters/test_suite/TestPostgres.py Xshare/doc/4Suite-0.9.0/4Ods/StorageManager/Adapters/test_suite/dig_postgres.py Xshare/doc/4Suite-0.9.0/4Ods/StorageManager/test_suite/TestOifBasicDump.py Xshare/doc/4Suite-0.9.0/4Ods/StorageManager/test_suite/TestOifBasicLoad.py Xshare/doc/4Suite-0.9.0/4Ods/StorageManager/test_suite/TestOifEnumerationDump.py Xshare/doc/4Suite-0.9.0/4Ods/StorageManager/test_suite/TestOifEnumerationLoad.py Xshare/doc/4Suite-0.9.0/4Ods/StorageManager/test_suite/TestOifRelationshipDump.py Xshare/doc/4Suite-0.9.0/4Ods/StorageManager/test_suite/TestOifRelationshipLoad.py Xshare/doc/4Suite-0.9.0/4Ods/StorageManager/test_suite/basic.oif Xshare/doc/4Suite-0.9.0/4Ods/StorageManager/test_suite/relationship.oif Xshare/doc/4Suite-0.9.0/4Ods/StorageManager/test_suite/suite.oif Xshare/doc/4Suite-0.9.0/4Ods/StorageManager/test_suite/test_query_adapter_simple.py Xshare/doc/4Suite-0.9.0/4Ods/Tools/test_suite/dig_setup.py Xshare/doc/4Suite-0.9.0/4Ods/Tools/test_suite/metadig_setup.py Xshare/doc/4Suite-0.9.0/4Ods/demo/book_mark_manager/README Xshare/doc/4Suite-0.9.0/4Ods/demo/book_mark_manager/bm.xbel Xshare/doc/4Suite-0.9.0/4Ods/demo/book_mark_manager/bookmark.odl Xshare/doc/4Suite-0.9.0/4Ods/demo/book_mark_manager/import_xbel.py Xshare/doc/4Suite-0.9.0/4Ods/demo/book_mark_manager/working-xbel.tgz Xshare/doc/4Suite-0.9.0/4Ods/demo/dom/DomWrapper.py Xshare/doc/4Suite-0.9.0/4Ods/demo/dom/Makefile Xshare/doc/4Suite-0.9.0/4Ods/demo/dom/README Xshare/doc/4Suite-0.9.0/4Ods/demo/dom/addr_book1.xml Xshare/doc/4Suite-0.9.0/4Ods/demo/dom/addr_book1.xsl Xshare/doc/4Suite-0.9.0/4Ods/demo/dom/dom.odl Xshare/doc/4Suite-0.9.0/4Ods/demo/dom/test_suite/basic_test.py Xshare/doc/4Suite-0.9.0/4Ods/docs/4ODS.web Xshare/doc/4Suite-0.9.0/4Ods/docs/TODO Xshare/doc/4Suite-0.9.0/4Ods/docs/index.html Xshare/doc/4Suite-0.9.0/4Ods/docs/ods.html Xshare/doc/4Suite-0.9.0/4Ods/docs/userguide.doc Xshare/doc/4Suite-0.9.0/4Ods/test_suite/TestDatabase.py Xshare/doc/4Suite-0.9.0/4Ods/test_suite/TestTransaction.py Xshare/doc/4Suite-0.9.0/4Ods/test_suite/basic_test1.py Xshare/doc/4Suite-0.9.0/4Ods/test_suite/benchmark.py Xshare/doc/4Suite-0.9.0/4Ods/test_suite/binding_test.py Xshare/doc/4Suite-0.9.0/4Ods/test_suite/circular_reference_classes.py Xshare/doc/4Suite-0.9.0/4Ods/test_suite/circular_reference_test.py Xshare/doc/4Suite-0.9.0/4Ods/test_suite/collections_test.py Xshare/doc/4Suite-0.9.0/4Ods/test_suite/constants_test.py Xshare/doc/4Suite-0.9.0/4Ods/test_suite/enumeration_test.py Xshare/doc/4Suite-0.9.0/4Ods/test_suite/extent_test.py Xshare/doc/4Suite-0.9.0/4Ods/test_suite/file_test.py Xshare/doc/4Suite-0.9.0/4Ods/test_suite/leave_join_test.py Xshare/doc/4Suite-0.9.0/4Ods/test_suite/memory_test.py Xshare/doc/4Suite-0.9.0/4Ods/test_suite/mthread_test.py Xshare/doc/4Suite-0.9.0/4Ods/test_suite/object_attribute_test.py Xshare/doc/4Suite-0.9.0/4Ods/test_suite/relationship_test.py Xshare/doc/4Suite-0.9.0/4Ods/test_suite/test.py Xshare/doc/4Suite-0.9.0/4Ods/test_suite/types_test.py Xshare/doc/4Suite-0.9.0/4RDF/Drivers/test_suite/test_find.py Xshare/doc/4Suite-0.9.0/4RDF/Drivers/test_suite/test_interface.py Xshare/doc/4Suite-0.9.0/4RDF/Drivers/test_suite/test_memory.py Xshare/doc/4Suite-0.9.0/4RDF/Drivers/test_suite/test_postgres.py Xshare/doc/4Suite-0.9.0/4RDF/Inference/docs/ril.doc Xshare/doc/4Suite-0.9.0/4RDF/Inference/docs/ril.html Xshare/doc/4Suite-0.9.0/4RDF/Inference/test_suite/test_action.py Xshare/doc/4Suite-0.9.0/4RDF/Inference/test_suite/test_assert.py Xshare/doc/4Suite-0.9.0/4RDF/Inference/test_suite/test_command.py Xshare/doc/4Suite-0.9.0/4RDF/Inference/test_suite/test_inferenceengine_core.py Xshare/doc/4Suite-0.9.0/4RDF/Inference/test_suite/test_parsed_action.py Xshare/doc/4Suite-0.9.0/4RDF/Inference/test_suite/test_parsed_assert.py Xshare/doc/4Suite-0.9.0/4RDF/Inference/test_suite/test_parsed_command.py Xshare/doc/4Suite-0.9.0/4RDF/Inference/test_suite/test_parsed_query.py Xshare/doc/4Suite-0.9.0/4RDF/Inference/test_suite/test_parsed_rule.py Xshare/doc/4Suite-0.9.0/4RDF/Inference/test_suite/test_predicate.py Xshare/doc/4Suite-0.9.0/4RDF/Inference/test_suite/test_query.py Xshare/doc/4Suite-0.9.0/4RDF/Inference/test_suite/test_rule.py Xshare/doc/4Suite-0.9.0/4RDF/Parsers/Ril/docs/Thoughts Xshare/doc/4Suite-0.9.0/4RDF/Parsers/Ril/docs/ril.ebnf Xshare/doc/4Suite-0.9.0/4RDF/Parsers/Ril/docs/ril.notes Xshare/doc/4Suite-0.9.0/4RDF/Parsers/Ril/test_suite/test_action.ril Xshare/doc/4Suite-0.9.0/4RDF/Parsers/Ril/test_suite/test_assert.ril Xshare/doc/4Suite-0.9.0/4RDF/Parsers/Ril/test_suite/test_command.ril Xshare/doc/4Suite-0.9.0/4RDF/Parsers/Ril/test_suite/test_query.ril Xshare/doc/4Suite-0.9.0/4RDF/Parsers/Ril/test_suite/test_rule.ril Xshare/doc/4Suite-0.9.0/4RDF/demo/basic.py Xshare/doc/4Suite-0.9.0/4RDF/docs/4RDF.api Xshare/doc/4Suite-0.9.0/4RDF/docs/4RDF.html Xshare/doc/4Suite-0.9.0/4RDF/docs/README Xshare/doc/4Suite-0.9.0/4RDF/test_suite/TestExt.py Xshare/doc/4Suite-0.9.0/4RDF/test_suite/borrowed/mozilla.org.example.xml Xshare/doc/4Suite-0.9.0/4RDF/test_suite/borrowed/rss1.example.xml Xshare/doc/4Suite-0.9.0/4RDF/test_suite/borrowed/xset.rdfs Xshare/doc/4Suite-0.9.0/4RDF/test_suite/borrowed/xset.xml Xshare/doc/4Suite-0.9.0/4RDF/test_suite/read_canonical_dom.py Xshare/doc/4Suite-0.9.0/4RDF/test_suite/test_bind.py Xshare/doc/4Suite-0.9.0/4RDF/test_suite/test_large_complete.py Xshare/doc/4Suite-0.9.0/4RDF/test_suite/test_model.py Xshare/doc/4Suite-0.9.0/4RDF/test_suite/user_cases/REC-rdf-syntax-7.4-1.rdf Xshare/doc/4Suite-0.9.0/4RDF/test_suite/user_cases/containers.rdf Xshare/doc/4Suite-0.9.0/4RDF/test_suite/user_cases/no-containers.rdf Xshare/doc/4Suite-0.9.0/4XPath/demo/select_elements.py Xshare/doc/4Suite-0.9.0/4XPath/docs/4XPath.api Xshare/doc/4Suite-0.9.0/4XPath/docs/4XPath.web Xshare/doc/4Suite-0.9.0/4XPath/docs/Api.html Xshare/doc/4Suite-0.9.0/4XPath/docs/ChangeLog Xshare/doc/4Suite-0.9.0/4XPath/docs/Extensions.html Xshare/doc/4Suite-0.9.0/4XPath/docs/ExtFunctions.api Xshare/doc/4Suite-0.9.0/4XPath/docs/README Xshare/doc/4Suite-0.9.0/4XPath/docs/TODO Xshare/doc/4Suite-0.9.0/4XPath/docs/index.html Xshare/doc/4Suite-0.9.0/4XPath/test_suite/DomTree.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/DummyExpr.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/TestBooleanExpr.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/TestCoreFunctions.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/TestDocOrder.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/TestError.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/TestNodeSetExpr.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/TestNumber.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/TestParsedAbbreviatedAbsoluteLocationPath.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/TestParsedAbbreviatedRelativeLocationPath.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/TestParsedAbsoluteLocationPath.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/TestParsedAxisSpecifier.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/TestParsedLocationPath.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/TestParsedNodeTest.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/TestParsedPredicate.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/TestParsedPredicateList.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/TestParsedRelativeLocationPath.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/TestParsedStep.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/TestParsedTokens.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/TestPathParser.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/TestUtil.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/ml_20000128.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/od_20000608.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/od_20000608.xml Xshare/doc/4Suite-0.9.0/4XPath/test_suite/test.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/test_chained_predicates.py Xshare/doc/4Suite-0.9.0/4XPath/test_suite/test_domlette_memleak.py Xshare/doc/4Suite-0.9.0/4XSLT/demo/addr_book.dtd Xshare/doc/4Suite-0.9.0/4XSLT/demo/addr_book1.xml Xshare/doc/4Suite-0.9.0/4XSLT/demo/addr_book1.xsl Xshare/doc/4Suite-0.9.0/4XSLT/demo/addr_book_keyed.xsl Xshare/doc/4Suite-0.9.0/4XSLT/demo/merry_xmas.py Xshare/doc/4Suite-0.9.0/4XSLT/demo/message.xml Xshare/doc/4Suite-0.9.0/4XSLT/demo/mime.xsl Xshare/doc/4Suite-0.9.0/4XSLT/demo/mime_example.py Xshare/doc/4Suite-0.9.0/4XSLT/docs/4XSLT.api Xshare/doc/4Suite-0.9.0/4XSLT/docs/4XSLT.web Xshare/doc/4Suite-0.9.0/4XSLT/docs/Api.html Xshare/doc/4Suite-0.9.0/4XSLT/docs/ChangeLog Xshare/doc/4Suite-0.9.0/4XSLT/docs/Extensions.html Xshare/doc/4Suite-0.9.0/4XSLT/docs/ExtElements.api Xshare/doc/4Suite-0.9.0/4XSLT/docs/README Xshare/doc/4Suite-0.9.0/4XSLT/docs/TODO Xshare/doc/4Suite-0.9.0/4XSLT/docs/index.html Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/DomTree.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/DummyExpr.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/README Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/TestExtFunctions.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/TestParsedIdKeyPattern.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/TestParsedLocationPathPattern.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/TestParsedPattern.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/TestParsedRelativePathPattern.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/TestParsedStepPattern.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/TestPatternParser.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/addr_book2.xsl Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/addr_book3.xsl Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/basic_test.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/README Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/README.slides.xsl Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/ag_20000713.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/at_20000618.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/ce_20000527.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/ce_20000819.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/da_20000714.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/dc_19991210.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/dc_20000110.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/dc_20000210.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/dc_20000225.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/dc_20000510.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/dh_20000530.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/dp_20000306.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/dp_20000310.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/ed_20000428.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/erastothenes.xslt Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/ev_20000324.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/gg_20000722.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/gkh_20000804.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/ie5default.xslt Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/jt_20000808.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/km_19991209.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/km_20000204.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/km_20000207.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/km_xmascracker.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/mn_19991221.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/ms_20000329.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/newline_to_br_demo_11.xsl Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/ns_parse.py.patch Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/ob_20000613.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/pt_20000805.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/rdf2rss.xslt Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/rss.schematron Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/rt_20000515.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/sb_20000628.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/schematron-skel-ns.xslt Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/slides.xsl Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/sm_19991228.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/sm_20000304.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/sm_20000509.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/sp_20000818.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/spec_attribute_set.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/spec_namespace_alias.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/st_20000210.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/st_20000324.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/tm_19991120.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/uo_20000817.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/wc-nt.xslt Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/wc.xslt Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/wh_20000607.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed/xbel-1.0.xsl Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/graph_trav/README Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/graph_trav/graph_trav_0.xslt Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/graph_trav/graph_trav_1.xslt Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/graph_trav/graph_trav_2.xslt Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/graph_trav/leaf.html Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/graph_trav/left_branch.html Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/graph_trav/right_branch.html Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/graph_trav/root.html Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/profile_data/match.xml Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/profile_data/match.xsl Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/profile_data/open-talk-big.xml Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/profile_data/open-talk-one.xml Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/profile_data/open-talk-small.xml Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/profile_data/open-talk.xml Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/profile_data/open-talk.xslt Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_avt.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_call_template.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_choose.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_command_line.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_copy.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_copy_of.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_disoutesc.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_elem_attr.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_extensions_1.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_extensions_2.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_ft_write_file.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_general_errors.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_if.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_import.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_include.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_key.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_message.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_number_sort.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_output.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_pi.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_profile.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_resource_leak.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_stylesheet_reader.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_variable.py Xshare/doc/4Suite-0.9.0/4XSLT/test_suite/test_ws_handling.py Xshare/doc/4Suite-0.9.0/COPYRIGHT Xshare/doc/4Suite-0.9.0/CREDITS Xshare/doc/4Suite-0.9.0/ChangeLog Xshare/doc/4Suite-0.9.0/Lib/docs/ChangeLog Xshare/doc/4Suite-0.9.0/Lib/docs/Cyclops.README Xshare/doc/4Suite-0.9.0/Lib/docs/TraceOutUsersGuide.html Xshare/doc/4Suite-0.9.0/Lib/docs/TraceOutUsersGuide.txt Xshare/doc/4Suite-0.9.0/Lib/test_suite/test_cdomlette.py Xshare/doc/4Suite-0.9.0/Lib/test_suite/test_cdomlette_parse.py Xshare/doc/4Suite-0.9.0/Lib/test_suite/test_trace_out.py Xshare/doc/4Suite-0.9.0/README Xshare/doc/4Suite-0.9.0/README.cDomlette Xshare/doc/4Suite-0.9.0/Tools/test_suite/coveragepp_test_input.py X@dirrm lib/%%PYTHON_VERSION%%/site-packages/xml/xpath X@dirrm lib/%%PYTHON_VERSION%%/site-packages/xml/xslt X@dirrm lib/%%PYTHON_VERSION%%/site-packages/xml/dom/html X@dirrm lib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext/reader X@dirrm lib/%%PYTHON_VERSION%%/site-packages/xml/dom/ext X@dirrm lib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Odl X@dirrm lib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oql X@dirrm lib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers/Oif X@dirrm lib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Parsers X@dirrm lib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Collections X@dirrm lib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/MetaData X@dirrm lib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager/Adapters X@dirrm lib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/StorageManager X@dirrm lib/%%PYTHON_VERSION%%/site-packages/Ft/Ods/Tools X@dirrm lib/%%PYTHON_VERSION%%/site-packages/Ft/Ods X@dirrm lib/%%PYTHON_VERSION%%/site-packages/Ft/Lib X@dirrm lib/%%PYTHON_VERSION%%/site-packages/Ft/Tools X@dirrm lib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Drivers X@dirrm lib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Inference X@dirrm lib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Parsers/Ril X@dirrm lib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Parsers X@dirrm lib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf/Serialization X@dirrm lib/%%PYTHON_VERSION%%/site-packages/Ft/Rdf X@dirrm lib/%%PYTHON_VERSION%%/site-packages/Ft X@dirrm share/doc/4Suite-0.9.0/Lib/docs X@dirrm share/doc/4Suite-0.9.0/Lib/test_suite X@dirrm share/doc/4Suite-0.9.0/Lib X@dirrm share/doc/4Suite-0.9.0/Tools/test_suite X@dirrm share/doc/4Suite-0.9.0/Tools X@dirrm share/doc/4Suite-0.9.0/4Dom/demo X@dirrm share/doc/4Suite-0.9.0/4Dom/docs X@dirrm share/doc/4Suite-0.9.0/4Dom/test_suite/borrowed X@dirrm share/doc/4Suite-0.9.0/4Dom/test_suite X@dirrm share/doc/4Suite-0.9.0/4Dom/html/test_suite X@dirrm share/doc/4Suite-0.9.0/4Dom/html X@dirrm share/doc/4Suite-0.9.0/4Dom/ext/test_suite X@dirrm share/doc/4Suite-0.9.0/4Dom/ext/reader/test_suite X@dirrm share/doc/4Suite-0.9.0/4Dom/ext/reader X@dirrm share/doc/4Suite-0.9.0/4Dom/ext X@dirrm share/doc/4Suite-0.9.0/4Dom X@dirrm share/doc/4Suite-0.9.0/4XPath/demo X@dirrm share/doc/4Suite-0.9.0/4XPath/docs X@dirrm share/doc/4Suite-0.9.0/4XPath/test_suite X@dirrm share/doc/4Suite-0.9.0/4XPath X@dirrm share/doc/4Suite-0.9.0/4XSLT/demo X@dirrm share/doc/4Suite-0.9.0/4XSLT/docs X@dirrm share/doc/4Suite-0.9.0/4XSLT/test_suite/borrowed X@dirrm share/doc/4Suite-0.9.0/4XSLT/test_suite/profile_data X@dirrm share/doc/4Suite-0.9.0/4XSLT/test_suite/graph_trav X@dirrm share/doc/4Suite-0.9.0/4XSLT/test_suite X@dirrm share/doc/4Suite-0.9.0/4XSLT X@dirrm share/doc/4Suite-0.9.0/4RDF/demo X@dirrm share/doc/4Suite-0.9.0/4RDF/docs X@dirrm share/doc/4Suite-0.9.0/4RDF/test_suite/borrowed X@dirrm share/doc/4Suite-0.9.0/4RDF/test_suite/user_cases X@dirrm share/doc/4Suite-0.9.0/4RDF/test_suite X@dirrm share/doc/4Suite-0.9.0/4RDF/Drivers/test_suite X@dirrm share/doc/4Suite-0.9.0/4RDF/Drivers X@dirrm share/doc/4Suite-0.9.0/4RDF/Inference/docs X@dirrm share/doc/4Suite-0.9.0/4RDF/Inference/test_suite X@dirrm share/doc/4Suite-0.9.0/4RDF/Inference X@dirrm share/doc/4Suite-0.9.0/4RDF/Parsers/Ril/docs X@dirrm share/doc/4Suite-0.9.0/4RDF/Parsers/Ril/test_suite X@dirrm share/doc/4Suite-0.9.0/4RDF/Parsers/Ril X@dirrm share/doc/4Suite-0.9.0/4RDF/Parsers X@dirrm share/doc/4Suite-0.9.0/4RDF X@dirrm share/doc/4Suite-0.9.0/4Ods/demo/book_mark_manager X@dirrm share/doc/4Suite-0.9.0/4Ods/demo/dom/test_suite X@dirrm share/doc/4Suite-0.9.0/4Ods/demo/dom X@dirrm share/doc/4Suite-0.9.0/4Ods/demo X@dirrm share/doc/4Suite-0.9.0/4Ods/docs X@dirrm share/doc/4Suite-0.9.0/4Ods/test_suite X@dirrm share/doc/4Suite-0.9.0/4Ods/Collections/test_suite X@dirrm share/doc/4Suite-0.9.0/4Ods/Collections X@dirrm share/doc/4Suite-0.9.0/4Ods/MetaData/test_suite X@dirrm share/doc/4Suite-0.9.0/4Ods/MetaData X@dirrm share/doc/4Suite-0.9.0/4Ods/Parsers/Odl/test_suite X@dirrm share/doc/4Suite-0.9.0/4Ods/Parsers/Odl X@dirrm share/doc/4Suite-0.9.0/4Ods/Parsers X@dirrm share/doc/4Suite-0.9.0/4Ods/StorageManager/test_suite X@dirrm share/doc/4Suite-0.9.0/4Ods/StorageManager/Adapters/test_suite X@dirrm share/doc/4Suite-0.9.0/4Ods/StorageManager/Adapters X@dirrm share/doc/4Suite-0.9.0/4Ods/StorageManager X@dirrm share/doc/4Suite-0.9.0/4Ods/Tools/test_suite X@dirrm share/doc/4Suite-0.9.0/4Ods/Tools X@dirrm share/doc/4Suite-0.9.0/4Ods X@dirrm share/doc/4Suite-0.9.0 END-of-py-4Suite/pkg/PLIST echo c - py-4Suite/patches mkdir -p py-4Suite/patches > /dev/null 2>&1 echo x - py-4Suite/patches/patch-aa sed 's/^X//' >py-4Suite/patches/patch-aa << 'END-of-py-4Suite/patches/patch-aa' X--- setup.py.orig Wed Oct 4 13:12:22 2000 X+++ setup.py Wed Oct 4 13:12:33 2000 X@@ -11,7 +11,7 @@ X X # Add our install functions X from distutils.command import install X-install.install.sub_commands.extend([(None,'install_docs'), X+install.install.sub_commands.extend([('install_docs', None), X # (None,'post_install'), X ]) X #install.install.noStrip = None END-of-py-4Suite/patches/patch-aa exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 15: 3: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from nbf-27.umd.edu (nbf-27.umd.edu [128.8.38.27]) by hub.freebsd.org (Postfix) with ESMTP id 3945337B66D for ; Wed, 4 Oct 2000 15:03:00 -0700 (PDT) Received: from glue.umd.edu (localhost [127.0.0.1]) by nbf-27.umd.edu (8.11.0/8.11.0) with ESMTP id e94M2tk26123 for ; Wed, 4 Oct 2000 18:02:55 -0400 (EDT) (envelope-from bfoz@glue.umd.edu) Message-ID: <39DBA90F.71E94B5F@glue.umd.edu> Date: Wed, 04 Oct 2000 18:02:55 -0400 From: Brandon Fosdick X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: Ports layout/Combine DESCR and COMMENT Results? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm getting ready to submit a few new ports. In all of the discussion I've lost track of the what and when of what's actually being implemented. The last I heard new ports should have the COMMENT line moved to the Makefile and pkg/DESCR in the port's base directory regardless of all of the other changes mentioned. Is this still the case? What's the effective date for this change? If its soon I'll just hold off on these submissions. -Brandon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 15:16:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from indigo.external.org (c1118643-a.chmpgn1.il.home.com [24.181.130.26]) by hub.freebsd.org (Postfix) with ESMTP id 9A29937B66C for ; Wed, 4 Oct 2000 15:16:42 -0700 (PDT) Received: (from jeremy@localhost) by indigo.external.org (8.9.3/8.9.3) id RAA32747; Wed, 4 Oct 2000 17:16:24 -0500 (CDT) (envelope-from jeremy) Date: Wed, 4 Oct 2000 17:16:12 -0500 From: Jeremy Shaffner To: Sean Farley , ports@freebsd.org Subject: Re: Shared library versioning in a new port Message-ID: <20001004171612.A28960@external.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: ; from sean-freebsd@farley.org on Tue, Oct 03, 2000 at 05:53:01PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Oct 03, 2000 at 05:53:01PM -0500, Sean Farley wrote: > I am currently testing out my first port, and I have a problem. It seems > that the shared libraries being installed are using the following syntax: > libfoo.so.x.y > libbar.so.x.y > > This gives me no problem for the install but during uninstall the port > complains about missing files such as: > libfoo.so.x > libbar.so.x > Check the contents of your PLIST. --------------------------------------------------------------------- Jeremy Shaffner | This space for rent. jeremy@external.org | $ grep happiness life http://www.external.org/~jeremy/pgp.key | FreeBSD: The Power to Serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 16: 9: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from bmah-freebsd-0.cisco.com (bmah-freebsd-0.cisco.com [171.70.84.42]) by hub.freebsd.org (Postfix) with ESMTP id F1ACB37B502; Wed, 4 Oct 2000 16:09:02 -0700 (PDT) Received: (from bmah@localhost) by bmah-freebsd-0.cisco.com (8.11.0/8.11.0) id e94N8Bj44570; Wed, 4 Oct 2000 16:08:11 -0700 (PDT) (envelope-from bmah) Message-Id: <200010042308.e94N8Bj44570@bmah-freebsd-0.cisco.com> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: Will Andrews Cc: Maxim Sobolev , bmah@FreeBSD.ORG, Neil Blakey-Milner , Akinori -Aki- MUSHA , freebsd-ports@FreeBSD.ORG, asami@FreeBSD.ORG Subject: Re: PROPOSAL: Use @comment PLIST variable to track where installed packages came from [Was: Enhancement of pkg_version's version comparison routine] In-Reply-To: <20001004095602.L26605@puck.firepipe.net> References: <86k8by6eis.wl@archon.local.idaemons.org> <20000927002401.A73341@mithrandr.moria.org> <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> <39D9EE01.7A880665@FreeBSD.org> <200010031657.e93Gvtg10718@bmah-freebsd-0.cisco.com> <39DB17BB.12805565@FreeBSD.org> <20001004095602.L26605@puck.firepipe.net> Comments: In-reply-to Will Andrews message dated "Wed, 04 Oct 2000 09:56:02 -0500." From: bmah@FreeBSD.ORG (Bruce A. Mah) Reply-To: bmah@FreeBSD.ORG X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_426249111P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Wed, 04 Oct 2000 16:08:11 -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --==_Exmh_426249111P Content-Type: text/plain; charset=us-ascii If memory serves me right, Will Andrews wrote: > On Wed, Oct 04, 2000 at 02:42:52PM +0300, Maxim Sobolev wrote: > > Well, I did not tell that it will solve all our problems, but it really can > help to > > improve things a bit. Ah...sorry, didn't mean to imply that you'd said that. > I like your proposal & code, and want this implemented. It will help us > in the long run if we implement it sooner (maybe your implementation is > not optimal, but I can't think of a better method). Thanks for your work. > > Satoshi & hamster, please review and commit (with furry paws :-)! :-) I like this too. I'm working on the pkg_version mods to Do The Right Thing (TM), it necessitates a small restructure of pkg_version. (Whomever commits this patch, could you please take note of OSVERSION, implications for -STABLE, etc.? Thanks!) Bruce. --==_Exmh_426249111P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.3 (FreeBSD) Comment: Exmh version 2.2 06/23/2000 iD8DBQE527hb2MoxcVugUsMRAo8MAKDz3xakFPhTHTMokeAnuOkJNwFrJgCePdUY XaZaJP7VArN1qTXjW+LRiRI= =Xaje -----END PGP SIGNATURE----- --==_Exmh_426249111P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 16:45:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B30437B502; Wed, 4 Oct 2000 16:45:12 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA76432; Wed, 4 Oct 2000 16:45:12 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Wed, 4 Oct 2000 16:45:12 -0700 (PDT) From: Message-Id: <200010042345.QAA76432@freefall.freebsd.org> To: jeh@FreeBSD.org, freebsd-ports@FreeBSD.org, jeh@FreeBSD.org Subject: Re: ports/20892: new port : databases/mytop Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port : databases/mytop Responsible-Changed-From-To: freebsd-ports->jeh Responsible-Changed-By: jeh Responsible-Changed-When: Wed Oct 4 16:44:42 PDT 2000 Responsible-Changed-Why: I'm taking care of this. http://www.freebsd.org/cgi/query-pr.cgi?pr=20892 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 17:34:42 2000 Delivered-To: freebsd-ports@freebsd.org Received: from granger.mail.mindspring.net (granger.mail.mindspring.net [207.69.200.148]) by hub.freebsd.org (Postfix) with ESMTP id 9789237B66C; Wed, 4 Oct 2000 17:34:40 -0700 (PDT) Received: from bubble.hip.berkeley.edu (sji-ca42-27.ix.netcom.com [209.111.212.27]) by granger.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id UAA10580; Wed, 4 Oct 2000 20:34:08 -0400 (EDT) Received: (from asami@localhost) by bubble.hip.berkeley.edu (8.9.3/8.8.8) id RAA04382; Wed, 4 Oct 2000 17:33:51 -0700 (PDT) (envelope-from asami) To: Ade Lovett Cc: ports@FreeBSD.org, vanilla@FreeBSD.org, nakai@FreeBSD.org Subject: Re: RFC: Removing gtk10 References: <20001003132025.S20891@FreeBSD.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 04 Oct 2000 17:33:50 -0700 In-Reply-To: Ade Lovett's message of "Tue, 3 Oct 2000 13:20:26 -0500" Message-ID: Lines: 16 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Ade Lovett * Therefore, unless anyone has any violent objections, I plan on * killing the following 7 ports one week from today, 10th October 2000. * * 1. graphics/gyvefigs * 2. graphics/gyvegui * 3. graphics/gyvekernel * 4. korean/gtk10 * 5. misc/gyvescm * 6. x11-fm/workplace * 7. x11-toolkits/gtk10 Based on your reasonings, I have no objections. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 17:43: 2 2000 Delivered-To: freebsd-ports@freebsd.org Received: from tisch.mail.mindspring.net (tisch.mail.mindspring.net [207.69.200.157]) by hub.freebsd.org (Postfix) with ESMTP id 0F38237B66C for ; Wed, 4 Oct 2000 17:42:58 -0700 (PDT) Received: from bubble.hip.berkeley.edu (sji-ca42-27.ix.netcom.com [209.111.212.27]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id UAA07366; Wed, 4 Oct 2000 20:42:34 -0400 (EDT) Received: (from asami@localhost) by bubble.hip.berkeley.edu (8.9.3/8.8.8) id RAA04450; Wed, 4 Oct 2000 17:42:06 -0700 (PDT) (envelope-from asami) To: Brandon Fosdick Cc: ports@freebsd.org Subject: Re: Ports layout/Combine DESCR and COMMENT Results? References: <39DBA90F.71E94B5F@glue.umd.edu> From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) Date: 04 Oct 2000 17:42:05 -0700 In-Reply-To: Brandon Fosdick's message of "Wed, 04 Oct 2000 18:02:55 -0400" Message-ID: Lines: 18 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Brandon Fosdick * I'm getting ready to submit a few new ports. In all of the discussion * I've lost track of the what and when of what's actually being * implemented. The last I heard new ports should have the COMMENT line * moved to the Makefile and pkg/DESCR in the port's base directory * regardless of all of the other changes mentioned. Is this still the * case? What's the effective date for this change? If its soon I'll just * hold off on these submissions. The big move will be done this weekend, but it doesn't include the COMMENT -> Makefile change. Anyway, why don't you just submit the port using the new format so someone can commit it early next week. :) You can try out the new format early by defining NEWLAYOUT when you call make. Make sure you have the latest bsd.port.mk. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 17:51:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id 8D20E37B502; Wed, 4 Oct 2000 17:51:36 -0700 (PDT) Received: from FreeBSD.org (baby.int.thehousleys.net [192.168.0.24]) by thehousleys.net (8.11.0/8.11.0) with ESMTP id e950pYq09752; Wed, 4 Oct 2000 20:51:34 -0400 (EDT) (envelope-from jeh@FreeBSD.org) Message-ID: <39DBD096.F3F84665@FreeBSD.org> Date: Wed, 04 Oct 2000 20:51:34 -0400 From: "James E. Housley" Organization: FreeBSD X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Satoshi - Ports Wraith - Asami Cc: Brandon Fosdick , ports@FreeBSD.org Subject: Re: Ports layout/Combine DESCR and COMMENT Results? References: <39DBA90F.71E94B5F@glue.umd.edu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Satoshi - Ports Wraith - Asami wrote: > > The big move will be done this weekend, but it doesn't include the > COMMENT -> Makefile change. Anyway, why don't you just submit the > port using the new format so someone can commit it early next week. :) > > You can try out the new format early by defining NEWLAYOUT when you > call make. Make sure you have the latest bsd.port.mk. > I just tried addport for a port with NEWLAYOUT= yes. I am running into a problem that freefalls bsd.port.mk is not up to date enought. It doesn't have your last set of changes. Jim -- James E. Housley Hi! I'm a .signature virus! Copy me in your ~/.signature to help me spread! <- Save this lifeform ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 18:44: 2 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp10.atl.mindspring.net (smtp10.atl.mindspring.net [207.69.200.246]) by hub.freebsd.org (Postfix) with ESMTP id 0F4C337B66C; Wed, 4 Oct 2000 18:43:59 -0700 (PDT) Received: from bubble.hip.berkeley.edu (sji-ca42-27.ix.netcom.com [209.111.212.27]) by smtp10.atl.mindspring.net (8.9.3/8.8.5) with ESMTP id VAA12643; Wed, 4 Oct 2000 21:43:53 -0400 (EDT) Received: (from asami@localhost) by bubble.hip.berkeley.edu (8.9.3/8.8.8) id SAA04737; Wed, 4 Oct 2000 18:43:39 -0700 (PDT) (envelope-from asami) To: Ade Lovett , Jeremy Lea Cc: freebsd-ports@FreeBSD.org Subject: Re: HEADS UP: USE_GTK and USE_GNOME References: <20001002012649.G30468@shale.csir.co.za> <39D86165.C21837F1@FreeBSD.org> <20001002102510.H15530@supernews.net> <39D8B9F6.C55F8257@FreeBSD.org> <20001002101657.J30468@shale.csir.co.za> <39D8C684.8A438F60@FreeBSD.org> <20001002132656.K15530@FreeBSD.org> <20001004000044.F20891@FreeBSD.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 04 Oct 2000 18:43:35 -0700 In-Reply-To: Jeremy Lea's message of "Tue, 3 Oct 2000 23:55:59 -0700" Message-ID: Lines: 39 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Ade Lovett * Mental note to self: * * x11/gnome "depends on" x11/gnome-base and x11/gnome-extra (hyphens * intentional, to differentiate from other gnome ports, that don't * have hyphens). Yes, that's good. * Better? That way, the end-user who clicks on the "I want GNOME" * button gets a fully-functional system, and those that are just * developing or testing gnome ports should generally only have * to worry about have gnome-base installed. Whilst there will be * screams of "bloat", having as few different types of GNOME * dependency as possible makes things a lot easier on everybody. Why bloat? You can just make gnome-extra depend on gnome-base. :) * From: Jeremy Lea * Actually, I think that we'll be able to take care of the minimal port * using just bsd.gnome.mk. Well, that's fine too.... * Attached is the finally, ready for action, tested, stamped by ade, * patch. : * Please commit this soon, so I can start making changes. I've just heard * that I have to fly to southern California on Thursday to fix a * misbehaving data aquisition system... Ok, committed. I made minor changes (OPTION_MSG -> GNOME_OPTION_MSG, pre-everything: -> pre-everything::) which shouldn't change the basic functionality. Go ahead and commit! (And try not to break make index. ;) -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 18:45:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id 0419737B66D; Wed, 4 Oct 2000 18:45:15 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e951jEs27447; Wed, 4 Oct 2000 21:45:14 -0400 (EDT) Date: Wed, 4 Oct 2000 21:45:13 -0400 (EDT) From: Trevor Johnson To: Satoshi - Ports Wraith - Asami Cc: Brandon Fosdick , ports@FreeBSD.ORG Subject: Re: Ports layout/Combine DESCR and COMMENT Results? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > The big move will be done this weekend, but it doesn't include the > COMMENT -> Makefile change. IMO a nice way to do that would be with the comment as the second line of the Makefile: # New ports collection makefile for: auis # Andrew User Interface System # Date created: Sat Nov 18 15:23:47 MET 1995 # Whom: Andreas Klemm # I started work on a change for bsd.port.mk, but my sed skills weren't up to it. I'm thinking of something along these lines, so existing ports would still work: ${.CURDIR}/README.html: @${ECHO_MSG} "===> Creating README.html for ${PKGNAME}" .if exists(${COMMENT}) @${CAT} ${TEMPLATES}/README.port | \ ${SED} -e 's^A%%PORT%%^A'`${ECHO} ${.CURDIR} | ${SED} -e [...] -e '/%%COMMENT%%/r${COMMENT}' \ -e '/%%COMMENT%%/d' \ [...] .*aa' -e 'sa[^/]*a..ag'`"'/..^A' \ >> $@ .else (do something similar, but put the contents of the second line of the makefile, starting at character 3, in place of %%COMMENT%%) .endif -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 18:46:58 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp6.mindspring.com (smtp6.mindspring.com [207.69.200.110]) by hub.freebsd.org (Postfix) with ESMTP id 5157837B502; Wed, 4 Oct 2000 18:46:56 -0700 (PDT) Received: from bubble.hip.berkeley.edu (sji-ca42-27.ix.netcom.com [209.111.212.27]) by smtp6.mindspring.com (8.9.3/8.8.5) with ESMTP id VAA22227; Wed, 4 Oct 2000 21:46:51 -0400 (EDT) Received: (from asami@localhost) by bubble.hip.berkeley.edu (8.9.3/8.8.8) id SAA04760; Wed, 4 Oct 2000 18:46:43 -0700 (PDT) (envelope-from asami) To: "James E. Housley" Cc: Brandon Fosdick , ports@FreeBSD.org Subject: Re: Ports layout/Combine DESCR and COMMENT Results? References: <39DBA90F.71E94B5F@glue.umd.edu> <39DBD096.F3F84665@FreeBSD.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 04 Oct 2000 18:46:42 -0700 In-Reply-To: "James E. Housley"'s message of "Wed, 04 Oct 2000 20:51:34 -0400" Message-ID: Lines: 14 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: "James E. Housley" * I just tried addport for a port with NEWLAYOUT= yes. I am running into * a problem that freefalls bsd.port.mk is not up to date enought. It * doesn't have your last set of changes. I'll update freefall's /usr/ports, but you shouldn't be committing stuff with the new layout yet. Please commit with the old layout so as to not confuse cvsuppers, and I'll convert it during the weekend. If you have a new port already in the new layout, then you should probably just wait until the conversion is done. :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 19:24:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id CA24137B502; Wed, 4 Oct 2000 19:24:19 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e952OJN28498; Wed, 4 Oct 2000 22:24:19 -0400 (EDT) Date: Wed, 4 Oct 2000 22:24:19 -0400 (EDT) From: Trevor Johnson To: Ade Lovett Cc: ports@FreeBSD.ORG, vanilla@FreeBSD.ORG, Will Andrews Subject: Re: RFC: Removing gtk10 In-Reply-To: <20001003132025.S20891@FreeBSD.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > x11-fm/workplace doesn't exist on the MASTER_SITE, and is owned > by ports@FreeBSD.org, so is unlikely to get fixed. I am working on an update (to GTK+/GDK 1.2) for this one. What I have so far is at http://people.freebsdports/workplace.diff.gz . > Therefore, unless anyone has any violent objections, I plan on > killing the following 7 ports one week from today, 10th October 2000. -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 21: 8:12 2000 Delivered-To: freebsd-ports@freebsd.org Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [207.175.42.154]) by hub.freebsd.org (Postfix) with ESMTP id 1A43737B503; Wed, 4 Oct 2000 21:08:07 -0700 (PDT) Received: from ns.tokyo.redhat.com (IDENT:root@ns.tokyo.redhat.com [172.16.21.254]) by lacrosse.corp.redhat.com (8.9.3/8.9.3) with ESMTP id AAA15543; Thu, 5 Oct 2000 00:07:58 -0400 Received: from station18.tokyo.redhat.com (IDENT:nakai@colts.tokyo.redhat.com [172.16.21.101]) by ns.tokyo.redhat.com (8.9.3/8.11.0) with SMTP id NAA09309; Thu, 5 Oct 2000 13:23:45 +0900 Message-Id: <200010050423.NAA09309@ns.tokyo.redhat.com> Date: Thu, 5 Oct 2000 13:07:38 +0900 From: Yukihiro Nakai To: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Cc: ade@FreeBSD.org, ports@FreeBSD.org, vanilla@FreeBSD.org, nakai@FreeBSD.org Subject: Re: RFC: Removing gtk10 In-Reply-To: References: <20001003132025.S20891@FreeBSD.org> X-Mailer: Sylpheed version 0.4.1 (GTK+ 1.2.6; Linux 2.2.14-5.0; i686) Organization: FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I deleted graphics/gyvefigs graphics/gyvegui graphics/gyvekernel misc/gyvescm now. On 04 Oct 2000 17:33:50 -0700 asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) wrote: > * From: Ade Lovett > > * Therefore, unless anyone has any violent objections, I plan on > * killing the following 7 ports one week from today, 10th October 2000. > * > * 1. graphics/gyvefigs > * 2. graphics/gyvegui > * 3. graphics/gyvekernel > * 4. korean/gtk10 > * 5. misc/gyvescm > * 6. x11-fm/workplace > * 7. x11-toolkits/gtk10 > > Based on your reasonings, I have no objections. > > Satoshi > --- Nakai To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 21:25: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hub.lovett.com (hub.lovett.com [216.60.121.161]) by hub.freebsd.org (Postfix) with ESMTP id DA55A37B503; Wed, 4 Oct 2000 21:25:02 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13h2aI-0002xQ-00; Wed, 04 Oct 2000 23:24:42 -0500 Date: Wed, 4 Oct 2000 23:24:42 -0500 From: Ade Lovett To: Trevor Johnson Cc: ports@FreeBSD.ORG, vanilla@FreeBSD.ORG, Will Andrews Subject: Re: RFC: Removing gtk10 Message-ID: <20001004232442.S5318@FreeBSD.org> References: <20001003132025.S20891@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from trevor@jpj.net on Wed, Oct 04, 2000 at 10:24:19PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Oct 04, 2000 at 10:24:19PM -0400, Trevor Johnson wrote: > I am working on an update (to GTK+/GDK 1.2) for this one. What I have so > far is at http://people.freebsdports/workplace.diff.gz . Ok. Given that Nakai-san has just killed off the gyve ports for now, can you commit what you have, (temporarily) assign maintainership to yourself, mark it BROKEN if need be, but remove the gtk10 dependency from the Makefile. The task then simply becomes one of killing gtk10 and ko-gtk10.. -aDe -- Ade Lovett, Austin, TX. ade@FreeBSD.org FreeBSD: The Power to Serve http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Oct 4 22:21:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from fly.lglobus.ru (fly.lglobus.ru [195.34.224.130]) by hub.freebsd.org (Postfix) with ESMTP id 3BA3837B502 for ; Wed, 4 Oct 2000 22:21:08 -0700 (PDT) Received: (from rover@localhost) by fly.lglobus.ru (8.9.3/8.9.3) id CAA01681; Thu, 5 Oct 2000 02:08:05 +0400 (MSD) (envelope-from rover) Date: Thu, 5 Oct 2000 02:08:05 +0400 From: "Oleg V. Volkov" To: royceyeung Cc: freebsd-ports@freebsd.org Subject: Re: question Message-ID: <20001005020804.A1622@fly.lglobus.ru> Reply-To: fp_rover@lglobus.ru References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from royceyeung@hotmail.com on Tue, Oct 03, 2000 at 04:30:54AM -1000 Organization: -=/ SR 13 /=- Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Oct 03, 2000 at 04:30:54AM -1000, royceyeung wrote: > I setup this DSD OS already. when I restart the PC, the OS need to input the login name, but i cannot find it , what can i put it in Try "root" - it should be passwordless after setup. BTW, such questions should be asked in "freebsd-questions", not "-ports". -- Oleg V. Volkov aka Rover EH: CM Rover Join Elite Imperial Fleet! http://www.emperorshammer.org E-mail redirector: sr-13@mail.ru (always up) -=/ SR 13 /=- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 0:37: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id D927137B502; Thu, 5 Oct 2000 00:36:54 -0700 (PDT) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id JAA13315; Thu, 5 Oct 2000 09:36:38 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id e957aIO89558; Thu, 5 Oct 2000 00:36:18 -0700 (PDT) (envelope-from reg) Date: Thu, 5 Oct 2000 00:36:18 -0700 From: Jeremy Lea To: Satoshi - Ports Wraith - Asami Cc: Ade Lovett , freebsd-ports@FreeBSD.org Subject: Re: HEADS UP: USE_GTK and USE_GNOME Message-ID: <20001005003618.B30468@shale.csir.co.za> Mail-Followup-To: Jeremy Lea , Satoshi - Ports Wraith - Asami , Ade Lovett , freebsd-ports@FreeBSD.org References: <20001002012649.G30468@shale.csir.co.za> <39D86165.C21837F1@FreeBSD.org> <20001002102510.H15530@supernews.net> <39D8B9F6.C55F8257@FreeBSD.org> <20001002101657.J30468@shale.csir.co.za> <39D8C684.8A438F60@FreeBSD.org> <20001002132656.K15530@FreeBSD.org> <20001004000044.F20891@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from asami@FreeBSD.org on Wed, Oct 04, 2000 at 06:43:35PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Wed, Oct 04, 2000 at 06:43:35PM -0700, Satoshi Asami wrote: > Ok, committed. I made minor changes (OPTION_MSG -> GNOME_OPTION_MSG, > pre-everything: -> pre-everything::) which shouldn't change the basic > functionality. Go ahead and commit! (And try not to break make > index. ;) Hopefully, it's all working OK. The patches are all in, and there were 704 build errors in the log beforehand. We'll see how I did when onigiri/bento gets to these... Once the other big changes are in, I'm thinking that we should add slave ports for all of the WANT_ stuff. Should push us well over 4000... ;-). Thanks. -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 1:23:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 8291137B502; Thu, 5 Oct 2000 01:23:04 -0700 (PDT) Received: from vic.sabbo.net (root@[193.193.218.95]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id LAA08282; Thu, 5 Oct 2000 11:22:57 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e958N2604463; Thu, 5 Oct 2000 11:23:02 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39DC3A5B.671E4BDD@FreeBSD.org> Date: Thu, 05 Oct 2000 11:22:51 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Laurence Berland Cc: ports@FreeBSD.org, stable@FreeBSD.org Subject: Re: KDE2 fails to compile in strangest possible way References: <39D924D1.DA491E02@confusion.net> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Laurence Berland wrote: > All, > Trying to compile KDE 4.1 on a somewhat recent 4.1-STABLE yields some > strange results. All appears to be going well, until it begins > compiling the file mcopidl.cc. The precise line is > > c++ -DHAVE_CONFIG_H -I. -I. -I../.. -I,,.,,.dcop -I../../kdecore > -I../../kdeui -I../../kssl -I/usr/X11R6/include/qt2 -I/usr/X11R6/include > -I/usr/local/include -I./../mcop -I/usr/local/include > -I/usr/local/include -O -pipe -frtti -c mcopidl.cc > > It doesn't fail per se, but it's been working on this for at least 7 > hours, with no sign of anything happening, though the activity lights > are flashing. Top shows some activity involving this process, and it > does seem to be using a large and oft-varied amount of memory (~50-70 > MB). Just for reference the machine is a PPro 200 with 32 MB ram, 128MB > swap, running a generic kernel. Try GNOME - it's now almost at par with KDE in usability/eye candiness (even beats it in the later category IMO), while uses old plain C and not so heavily CORBA-minded, so it is definitely the only choice for low-end machines. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 2:12:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from sphinx.mythic-beasts.com (sphinx.mythic-beasts.com [195.82.107.246]) by hub.freebsd.org (Postfix) with ESMTP id 3E2AE37B502; Thu, 5 Oct 2000 02:12:27 -0700 (PDT) Received: from xelah (helo=localhost) by sphinx.mythic-beasts.com with local-esmtp (Exim 3.13 #8) id 13h74Q-0006Aj-00; Thu, 05 Oct 2000 10:12:06 +0100 Date: Thu, 5 Oct 2000 10:12:06 +0100 (BST) From: Alex Hayward X-Sender: xelah@sphinx.mythic-beasts.com To: ports@FreeBSD.org Cc: stable@FreeBSD.org Subject: Re: KDE2 fails to compile in strangest possible way In-Reply-To: <39DC3A5B.671E4BDD@FreeBSD.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 5 Oct 2000, Maxim Sobolev wrote: > Laurence Berland wrote: > > > All, > > Trying to compile KDE 4.1 on a somewhat recent 4.1-STABLE yields some > > strange results. All appears to be going well, until it begins > > compiling the file mcopidl.cc. The precise line is > > > > c++ -DHAVE_CONFIG_H -I. -I. -I../.. -I,,.,,.dcop -I../../kdecore > > -I../../kdeui -I../../kssl -I/usr/X11R6/include/qt2 -I/usr/X11R6/include > > -I/usr/local/include -I./../mcop -I/usr/local/include > > -I/usr/local/include -O -pipe -frtti -c mcopidl.cc > > > > It doesn't fail per se, but it's been working on this for at least 7 > > hours, with no sign of anything happening, though the activity lights > > are flashing. Top shows some activity involving this process, and it > > does seem to be using a large and oft-varied amount of memory (~50-70 > > MB). Just for reference the machine is a PPro 200 with 32 MB ram, 128MB > > swap, running a generic kernel. > > Try GNOME - it's now almost at par with KDE in usability/eye candiness (even > beats it in the later category IMO), while uses old plain C and not so heavily > CORBA-minded, so it is definitely the only choice for low-end machines. KDE doesn't use CORBA. There have also been a number of reports on the KDE lists that recent sources have got a lot better performance wise, including on low end machines. Just in case the blindingly obvious has been missed, have any of the people with compile problems tried removing the '-O'? It's what works for me, though I haven't tried it with a recent cvsup of KDE. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 3:50: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 24B1637B502 for ; Thu, 5 Oct 2000 03:50:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA45119; Thu, 5 Oct 2000 03:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 5 Oct 2000 03:50:04 -0700 (PDT) Message-Id: <200010051050.DAA45119@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: ports/21095: MASTER_SITES_GNU are semi-broken [PATCH] Reply-To: Peter Pentchev Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21095; it has been noted by GNATS. From: Peter Pentchev To: Bill Fenner Cc: freebsd-gnats-submit@freebsd.org Subject: Re: ports/21095: MASTER_SITES_GNU are semi-broken [PATCH] Date: Thu, 5 Oct 2000 13:42:54 +0300 On Fri, Sep 08, 2000 at 12:48:35PM +0300, Peter Pentchev wrote: > On Thu, Sep 07, 2000 at 07:17:57PM -0700, Bill Fenner wrote: > > > > Won't just changing the ports to use MASTER_SITE_SUBDIR=non-gnu/.* be easier? Yes, MASTER_SITE_SUBDIR actually works. Alright, this PR may be closed, I'll see which of the GNU-hosted ports need to refer to a non-gnu/ subdir, and get in touch with their respective maintainers. Thanks again for the hint! G'luck, Peter -- I am not the subject of this sentence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 4:35:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E05837B503; Thu, 5 Oct 2000 04:35:36 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA65633; Thu, 5 Oct 2000 04:35:36 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 5 Oct 2000 04:35:36 -0700 (PDT) From: Message-Id: <200010051135.EAA65633@freefall.freebsd.org> To: jeh@freebsd.org, sheldonh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: bin/21739: Bring in to /etc/services healthd from IANA Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Bring in to /etc/services healthd from IANA State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Thu Oct 5 04:35:13 PDT 2000 State-Changed-Why: src/etc/services updated. PR closed as per originator's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=21739 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 5:20: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B122337B503 for ; Thu, 5 Oct 2000 05:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA82111; Thu, 5 Oct 2000 05:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 4473B37B503; Thu, 5 Oct 2000 05:15:07 -0700 (PDT) Message-Id: <20001005121507.4473B37B503@hub.freebsd.org> Date: Thu, 5 Oct 2000 05:15:07 -0700 (PDT) From: toga@puyo.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21765: I cat't make ports using and Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21765 >Category: ports >Synopsis: I cat't make ports using and >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 05 05:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: TOGAWA Satoshi >Release: 4-STABLE >Organization: PUYO Online Reactionary Group >Environment: FreeBSD cel.sd.puyo.org 4.1.1-STABLE FreeBSD 4.1.1-STABLE #16: Thu Oct 5 20:28:02 JST 2000 togawa@cel.sd.puyo.org:/usr/src/sys/compile/CEL i386 >Description: I get a new Makefile of mpg123 $FreeBSD: ports/audio/mpg123/Makefile,v 1.26 2000/10/05 05:19:36 reg Exp $ and Mk/bsd.port.mk $FreeBSD: ports/Mk/bsd.port.mk,v 1.354 2000/10/05 01:32:21 asami Exp $ by CVSup. But when I run make, make said: "/usr/ports/Mk/bsd.port.mk", line 2218: Inconsistent operator for pre-everything >How-To-Repeat: Ports using and is not able to make. >Fix: Mmm... I can't find what is wrong. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 5:21:56 2000 Delivered-To: freebsd-ports@freebsd.org Received: from gw.nectar.com (gw.nectar.com [208.42.49.153]) by hub.freebsd.org (Postfix) with ESMTP id 7805437B503; Thu, 5 Oct 2000 05:21:55 -0700 (PDT) Received: from ophelia.nectar.com (ophelia.nectar.com [10.5.5.2]) by gw.nectar.com (Postfix) with ESMTP id C12041925E; Thu, 5 Oct 2000 07:21:54 -0500 (CDT) Received: (from nectar@localhost) by ophelia.nectar.com (8.9.3/8.9.3) id HAA01393; Thu, 5 Oct 2000 07:23:22 -0500 (CDT) (envelope-from nectar@spawn.nectar.com) Date: Thu, 5 Oct 2000 07:23:22 -0500 From: "Jacques A. Vidrine" To: Jeremy Lea Cc: ports@freebsd.org Subject: Re: cvs commit: ports/audio/extace Makefile ports/audio/extace/patches patch-ab ports/audio/extace/pkg PLIST ports/audio/soundtracker Makefile ports/audio/soundtracker/patches patch-ag ports/audio/xhippo Makefile ports/audio/xmms Makefile ... Message-ID: <20001005072322.C1270@ophelia.nectar.com> References: <200010050722.AAA63973@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010050722.AAA63973@freefall.freebsd.org>; from reg@FreeBSD.org on Thu, Oct 05, 2000 at 12:22:57AM -0700 X-Url: http://www.nectar.com/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 05, 2000 at 12:22:57AM -0700, Jeremy Lea wrote: > Implement WANT_GNOME. What's the difference between WANT_* and WITH_*? -- Jacques Vidrine / n@nectar.com / jvidrine@verio.net / nectar@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 5:36:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.sunesi.net (ns1.sunesi.net [196.15.192.194]) by hub.freebsd.org (Postfix) with ESMTP id 2522B37B66C; Thu, 5 Oct 2000 05:36:53 -0700 (PDT) Received: from nbm by ns1.sunesi.net with local (Exim 3.03 #1) id 13hAGU-000NOE-00; Thu, 05 Oct 2000 14:36:46 +0200 Date: Thu, 5 Oct 2000 14:36:46 +0200 From: Neil Blakey-Milner To: "Jacques A. Vidrine" Cc: Jeremy Lea , ports@freebsd.org Subject: Re: cvs commit: ports/audio/extace Makefile ports/audio/extace/patches patch-ab ports/audio/extace/pkg PLIST ports/audio/soundtracker Makefile ports/audio/soundtracker/patches patch-ag ports/audio/xhippo Makefile ports/audio/xmms Makefile ... Message-ID: <20001005143646.A89779@mithrandr.moria.org> References: <200010050722.AAA63973@freefall.freebsd.org> <20001005072322.C1270@ophelia.nectar.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001005072322.C1270@ophelia.nectar.com>; from n@nectar.com on Thu, Oct 05, 2000 at 07:23:22AM -0500 Organization: Sunesi Clinical Systems X-Operating-System: FreeBSD 3.3-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu 2000-10-05 (07:23), Jacques A. Vidrine wrote: > On Thu, Oct 05, 2000 at 12:22:57AM -0700, Jeremy Lea wrote: > > Implement WANT_GNOME. > > What's the difference between WANT_* and WITH_*? I'm guessing, but isn't this "I can compile with foo, and I'll register a dependency if foo is around and I compile with it". Neil -- Neil Blakey-Milner Sunesi Clinical Systems nbm@mithrandr.moria.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 5:44:48 2000 Delivered-To: freebsd-ports@freebsd.org Received: from af.wakwak.com (af.wakwak.com [211.9.230.88]) by hub.freebsd.org (Postfix) with ESMTP id E088037B503; Thu, 5 Oct 2000 05:44:45 -0700 (PDT) Received: from cel.sd.puyo.org (z211-19-86-139.dialup.wakwak.ne.jp [211.19.86.139]) by af.wakwak.com (8.9.3/3.7W-2000/06/06) with ESMTP id VAA15066; Thu, 5 Oct 2000 21:44:43 +0900 (JST) Message-Id: <200010051244.VAA15066@af.wakwak.com> Date: Thu, 5 Oct 2000 21:44:42 +0900 (JST) From: toga@puyo.org (TOGAWA Satoshi) To: gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21765: I cat't make ports using and In-Reply-To: Your message of "Thu, 5 Oct 2000 05:20:01 -0700 (PDT)". <200010051220.FAA82106@freefall.freebsd.org> X-Mailer: mnews [version 1.22] 1999-12/19(Sun) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I tried japanese/elisa8x8 which use and , and I can make it. But I can't make audio/xmms for same error in audio/mpg123. So I think this is porter's some fault. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 7:12:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from inf.ufsc.br (euryale.inf.ufsc.br [150.162.60.23]) by hub.freebsd.org (Postfix) with ESMTP id 218F537B503 for ; Thu, 5 Oct 2000 07:12:00 -0700 (PDT) Received: from pitanga (pitanga [150.162.60.31]) by inf.ufsc.br (8.9.3/8.9.3) with ESMTP id LAA41548 for ; Thu, 5 Oct 2000 11:13:42 -0300 Date: Thu, 5 Oct 2000 11:16:26 -0300 (EST) From: Antonio Carlos Venancio Junior X-Sender: antonio@pitanga To: ports@FreeBSD.org Subject: Netscape 6 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Friends, I've installed Linux Netscape 6 port ... all gone well but I cant see any kind of applets and flash files (flashplugin is installed). Any clue? Another thing is that why the port version of Netscape 6 is still PR1 and not PR3 ... ;) If you need to do some modification in Netscape 6 Makefile to be able to install PR3 could you send it to me? I could test it for our FreeBSD friends all over the world. =) PS.: I`m using FreeBSD 3.5-STABLE. Cya Antonio .-===================================================================-. | Can't buy what I want because its FREE! - Pearl Jam | |-===================================================================-| | antonio@inf.ufsc.br | floripa@zoing.net | antonio@musicramp.com | |-===================================================================-| | ICQ# 9253680 | Floripa | MySQL | PHP | FreeBSD - The Power to Serve | `-===================================================================-' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 8:40: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AA60F37B66D for ; Thu, 5 Oct 2000 08:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA25692; Thu, 5 Oct 2000 08:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from lion-around.at.yiff.net (lion-around.at.yiff.net [209.54.21.199]) by hub.freebsd.org (Postfix) with ESMTP id 4CFB737B503 for ; Thu, 5 Oct 2000 08:31:28 -0700 (PDT) Received: (from chris@localhost) by lion-around.at.yiff.net (8.11.0/8.11.0) id e95FVPA00798; Thu, 5 Oct 2000 11:31:25 -0400 (EDT) (envelope-from chris) Message-Id: <200010051531.e95FVPA00798@lion-around.at.yiff.net> Date: Thu, 5 Oct 2000 11:31:25 -0400 (EDT) From: chris@netmonger.net Reply-To: chris@netmonger.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21770: security/ca-roots ca-root.crt installed in odd location? Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21770 >Category: ports >Synopsis: ca-root.crt might be better in /etc/ssl/cert.pem >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 05 08:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Christopher Masto >Release: FreeBSD 5.0-CURRENT i386 >Organization: NetMonger Communications >Environment: >Description: The OpenSSL library that comes with FreeBSD seems to look for /etc/ssl/cert.pem as its default CAfile. /usr/ports/security/ca-roots installs /usr/local/share/certs/ca-root.crt. It is possible to modify applications to load that file instead, but by simply installing it as /etc/ssl/cert.pem instead, programs like mutt will automatically find and use it. >How-To-Repeat: Install the ca-roots port. Install mutt with the WITH_SSL option. Connect to an SSL-enabled IMAP server with a valid certificate signed by one of the CAs in ca-root.crt, and notice that mutt asks for manual verification. ln -s /usr/local/share/certs/ca-root.crt /etc/ssl/cert.pem and run mutt again. Notice that it is able to verify the certificate and accepts it automatically. >Fix: Either provide the symlink or simply install the file as /etc/ssl/cert.pem. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 9:33:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from urban.iinet.net.au (urban.iinet.net.au [203.59.24.231]) by hub.freebsd.org (Postfix) with ESMTP id 620AA37B66C for ; Thu, 5 Oct 2000 09:33:51 -0700 (PDT) Received: from popserver-02.iinet.net.au (popserver-02.iinet.net.au [203.59.24.148]) by urban.iinet.net.au (8.8.7/8.8.7) with ESMTP id AAA09512 for ; Fri, 6 Oct 2000 00:33:48 +0800 Received: from elischer.org (reggae-39-94.nv.iinet.net.au [203.59.173.94]) by popserver-02.iinet.net.au (8.9.3/8.9.3) with ESMTP id AAA15692 for ; Fri, 6 Oct 2000 00:33:47 +0800 Message-ID: <39DCAD4A.D7148601@elischer.org> Date: Thu, 05 Oct 2000 09:33:14 -0700 From: Julian Elischer X-Mailer: Mozilla 4.7 [en] (X11; U; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: new netscape6 available Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The netscape6 that the linux-netscape6 port tries to install seems unavailable at this time.. a new one has just been released. -- __--_|\ Julian Elischer / \ julian@elischer.org ( OZ ) World tour 2000 ---> X_.---._/ presently in: Perth v To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 9:50: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 880B837B66D for ; Thu, 5 Oct 2000 09:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA52172; Thu, 5 Oct 2000 09:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 5 Oct 2000 09:50:02 -0700 (PDT) Message-Id: <200010051650.JAA52172@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jeremy Lea Subject: Re: ports/21765: I cat't make ports using and Reply-To: Jeremy Lea Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21765; it has been noted by GNATS. From: Jeremy Lea To: toga@puyo.org, Satoshi Asami Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/21765: I cat't make ports using and Date: Thu, 5 Oct 2000 09:40:51 -0700 Hi, On Thu, Oct 05, 2000 at 05:15:07AM -0700, toga@puyo.org wrote: > >Description: > I get a new Makefile of mpg123 > $FreeBSD: ports/audio/mpg123/Makefile,v 1.26 2000/10/05 05:19:36 reg Exp $ > > and Mk/bsd.port.mk > $FreeBSD: ports/Mk/bsd.port.mk,v 1.354 2000/10/05 01:32:21 asami Exp $ > > by CVSup. > > But when I run make, make said: > "/usr/ports/Mk/bsd.port.mk", line 2218: Inconsistent operator for pre-everything Can you try something for me. On line 2230 of bsd.port.mk, can you change the :: to a :. Satoshi changed this during the commit to bsd.port.mk, and it seems to be what is causing the problem. Regards, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 10: 5: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BB24537B502; Thu, 5 Oct 2000 10:05:01 -0700 (PDT) Received: (from lioux@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA57819; Thu, 5 Oct 2000 10:05:01 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Date: Thu, 5 Oct 2000 10:05:01 -0700 (PDT) From: Message-Id: <200010051705.KAA57819@freefall.freebsd.org> To: holger@eit.uni-kl.de, lioux@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21442: Upgrade/fix port graphics/avifile (checksum error) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Upgrade/fix port graphics/avifile (checksum error) State-Changed-From-To: open->closed State-Changed-By: lioux State-Changed-When: Thu Oct 5 10:03:54 PDT 2000 State-Changed-Why: Closed at submitter request. Superseded by ports/21663. http://www.freebsd.org/cgi/query-pr.cgi?pr=21442 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 10:22:50 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ldc.ro (ldc-gw.pub.ro [192.129.3.227]) by hub.freebsd.org (Postfix) with SMTP id AE2B737B66D for ; Thu, 5 Oct 2000 10:22:31 -0700 (PDT) Received: (qmail 10633 invoked by uid 666); 5 Oct 2000 17:22:13 -0000 Date: Thu, 5 Oct 2000 20:22:13 +0300 From: Alex Popa To: freebsd-ports@freebsd.org Cc: freebsd-stable@freebsd.org Subject: moh_php4 not compiling, failing at config Message-ID: <20001005202213.A9631@ldc.ro> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am trying to compile php4 on a FreeBSD -stable, cvsupped last night, and compiled today, with ports collection cvsupped some one hour ago. Also, since I think it should compile (-kthread appears in cc's manpage), I cc'd this to -stable as well as -ports. Here is the output (after make patch, I just logged the "make") =3D=3D=3D> Configuring for mod_php-4.0.2 creating cache ./config.cache checking for a BSD compatible install... /usr/bin/install -c -o root -g whe= el checking whether build environment is sane... yes checking whether make sets ${MAKE}... yes checking for working aclocal... found checking for working autoconf... found checking for working automake... found checking for working autoheader... found checking for working makeinfo... found Updated php_version.h checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... i386--freebsd4.1.1 checking for gawk... no checking for mawk... no checking for nawk... no checking for awk... awk checking for bison... no checking for byacc... byacc configure: warning: You will need bison if you want to regenerate the PHP p= arsers. checking for gcc... cc checking whether the C compiler (cc -O -pipe ) works... yes checking whether the C compiler (cc -O -pipe ) is a cross-compiler... no checking whether we are using GNU C... yes checking whether cc accepts -g... yes checking how to run the C preprocessor... cc -E checking for AIX... no checking for cc option to accept ANSI C... none needed checking for ranlib... ranlib checking whether cc understands -c and -o together... yes checking whether ln -s works... yes checking for flex... flex checking for flex... (cached) flex checking for yywrap in -lfl... yes checking lex output file root... lex.yy checking whether yytext is a pointer... yes checking for working const... yes checking for pthreads_cflags... -pthread checking for pthreads_lib...=20 =1B[1mConfiguring SAPI modules=1B[m checking for AOLserver support... no checking for Apache module support via DSO through APXS...=20 Usage: apxs -g [-S =3D] -n apxs -q [-S =3D] ... apxs -c [-S =3D] [-o ] [-D [=3D]] [-I ] [-L ] [-l ] [-Wc,] [-Wl,] ... apxs -i [-S =3D] [-a] [-A] [-n ] ... apxs -e [-S =3D] [-a] [-A] [-n ] ... configure: error: Sorry, I cannot run apxs. Either you need to install Perl= or you need to pass the absolute path of apxs by using --with-apxs=3D/abso= lute/path/to/apxs =3D=3D=3D> Script "configure" failed: here are the contents of "config.log" This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. configure:1273: checking for a BSD compatible install configure:1326: checking whether build environment is sane configure:1383: checking whether make sets ${MAKE} configure:1429: checking for working aclocal configure:1442: checking for working autoconf configure:1455: checking for working automake configure:1468: checking for working autoheader configure:1481: checking for working makeinfo configure:1511: checking whether to enable maintainer-specific portions of = Makefiles configure:1540: checking host system type configure:1568: checking for gawk configure:1568: checking for mawk configure:1568: checking for nawk configure:1568: checking for awk configure:1602: checking for bison configure:1602: checking for byacc configure:1649: checking for gcc configure:1762: checking whether the C compiler (cc -O -pipe ) works configure:1778: cc -o conftest -O -pipe conftest.c 1>&5 configure:1804: checking whether the C compiler (cc -O -pipe ) is a cross-c= ompiler configure:1809: checking whether we are using GNU C configure:1818: cc -E conftest.c configure:1837: checking whether cc accepts -g configure:1869: checking how to run the C preprocessor configure:1890: cc -E conftest.c >/dev/null 2>conftest.out configure:1949: checking for AIX configure:1986: checking for cc option to accept ANSI C configure:2039: cc -c -O -pipe conftest.c 1>&5 configure:2066: checking for ranlib configure:2098: checking whether cc understands -c and -o together configure:2110: cc -c conftest.c -o conftest.o 1>&5 configure:2111: cc -c conftest.c -o conftest.o 1>&5 configure:2146: checking whether ln -s works configure:2173: checking for flex configure:2206: checking for flex configure:2240: checking for yywrap in -lfl configure:2259: cc -o conftest -O -pipe conftest.c -lfl 1>&5 configure:2282: checking lex output file root configure:2303: checking whether yytext is a pointer configure:2322: cc -o conftest -O -pipe conftest.c -lfl 1>&5 configure:2345: checking for working const configure:2399: cc -c -O -pipe conftest.c 1>&5 configure:2516: cc -o conftest -O -pipe conftest.c 1>&5 /tmp/ccy10558.o: In function `main': /tmp/ccy10558.o(.text+0x1d): undefined reference to `pthread_mutexattr_init' /tmp/ccy10558.o(.text+0x31): undefined reference to `pthread_create' configure: failed program was: #line 2498 "configure" #include "confdefs.h" #include #include void *thread_routine(void *data) { return data; } int main() { pthread_t thd; pthread_mutexattr_t mattr; int data =3D 1; pthread_mutexattr_init(&mattr); return pthread_create(&thd, NULL, thread_routine, &data); }=20 configure:2536: checking for pthreads_cflags configure:2569: cc -o conftest -O -pipe -kthread conftest.c 1>&5 /tmp/ccx10573.o: In function `main': /tmp/ccx10573.o(.text+0x1d): undefined reference to `pthread_mutexattr_init' /tmp/ccx10573.o(.text+0x31): undefined reference to `pthread_create' configure: failed program was: #line 2551 "configure" #include "confdefs.h" #include #include void *thread_routine(void *data) { return data; } int main() { pthread_t thd; pthread_mutexattr_t mattr; int data =3D 1; pthread_mutexattr_init(&mattr); return pthread_create(&thd, NULL, thread_routine, &data); }=20 configure:2569: cc -o conftest -O -pipe -pthread conftest.c 1>&5 configure:2598: checking for pthreads_lib configure:2703: checking for AOLserver support configure:2777: checking for Apache module support via DSO through APXS (end of "config.log") *** Error code 1 Stop in /usr/ports/www/mod_php4. *** Error code 1 Stop in /usr/ports/www/mod_php4. *** Error code 1 Stop in /usr/ports/www/mod_php4. *** Error code 1 Stop in /usr/ports/www/mod_php4. ------------+------------------------------------------ Alex Popa, | "Artificial Intelligence is razor@ldc.ro| no match for Natural Stupidity" ------------+------------------------------------------ "It took the computing power of three C-64s to fly to the Moon. It takes a 486 to run Windows 95. Something is wrong here." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 10:40: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9C13E37B66C for ; Thu, 5 Oct 2000 10:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA73667; Thu, 5 Oct 2000 10:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from privatecube.privatelabs.com (privatecube.privatelabs.com [198.143.31.30]) by hub.freebsd.org (Postfix) with ESMTP id F3C5C37B66E for ; Thu, 5 Oct 2000 10:37:38 -0700 (PDT) Received: from monsta.privatelabs.com (monsta.plten [10.0.0.6]) by privatecube.privatelabs.com (8.9.3/8.9.2) with ESMTP id MAA06659; Thu, 5 Oct 2000 12:56:35 -0400 Received: (from root@localhost) by monsta.privatelabs.com (8.11.0/8.11.0) id e95Hamq51398; Thu, 5 Oct 2000 13:36:48 -0400 (EDT) (envelope-from mi) Message-Id: <200010051736.e95Hamq51398@monsta.privatelabs.com> Date: Thu, 5 Oct 2000 13:36:48 -0400 (EDT) From: Mikhail Teterin Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@freebsd.org Cc: mmcg@cs.monash.edu.au X-Send-Pr-Version: 3.2 Subject: ports/21774: upgrading Boehm's Garbage Collector port to version 5.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21774 >Category: ports >Synopsis: upgrading Boehm's Garbage Collector port to version 5.3 >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 05 10:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: The latest stable version, as listed in http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/recent_changes appears to be 5.3. The update is fairly trivial, but there is one place, where I'm not sure (marked by XXX in the port's Makefile). The place seems to apply only to non-i386 and the port is currently marked as i386 only anyway. Perhaps, it can be made cross-platform by resolving this small (?) issue. As part of polishing, I removed the stale mirror (at sgi.com) and added the WWW to pkg/DESCR. >How-To-Repeat: >Fix: cvs diff: Diffing . Index: Makefile =================================================================== RCS file: /net/raidbox/raid/ncvs/ports/devel/boehm-gc/Makefile,v retrieving revision 1.11 diff -U1 -r1.11 Makefile --- Makefile 2000/04/30 19:13:48 1.11 +++ Makefile 2000/10/05 17:27:52 @@ -8,7 +8,6 @@ PORTNAME= boehm-gc -PORTVERSION= 5.0a4 +PORTVERSION= 5.3 CATEGORIES= devel -MASTER_SITES= http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/ \ - http://reality.sgi.com/boehm_mti/gc_source/ -DISTNAME= gc5.0alpha4 +MASTER_SITES= http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/ +DISTNAME= gc5.3 @@ -16,3 +15,4 @@ -ONLY_FOR_ARCHS= i386 +ONLY_FOR_ARCHS= i386 # XXX can't figure out whether to define +# # XXX SEARCH_FOR_DATA_START on other platforms cvs diff: Diffing files Index: files/md5 =================================================================== RCS file: /net/raidbox/raid/ncvs/ports/devel/boehm-gc/files/md5,v retrieving revision 1.5 diff -U1 -r1.5 md5 --- files/md5 2000/04/01 04:44:06 1.5 +++ files/md5 2000/10/05 16:52:45 @@ -1 +1 @@ -MD5 (gc5.0alpha4.tar.gz) = 3b12496aac8b6a7b7da93397b16370a3 +MD5 (gc5.3.tar.gz) = f5f65b9e2c4b7762fa567d5b91b573bb cvs diff: Diffing patches Index: patches/patch-aa =================================================================== RCS file: /net/raidbox/raid/ncvs/ports/devel/boehm-gc/patches/patch-aa,v retrieving revision 1.8 diff -U1 -r1.8 patch-aa --- patches/patch-aa 2000/07/19 04:17:33 1.8 +++ patches/patch-aa 2000/10/05 17:02:42 @@ -2,7 +2,6 @@ +++ Makefile Tue Jul 18 21:10:50 2000 -@@ -8,15 +8,42 @@ - # c++ interface to gc.a - # cord/de - builds dumb editor based on cords. +@@ -10,14 +10,41 @@ ABI_FLAG= -CC=cc $(ABI_FLAG) + HOSTCC=$(CC) -CXX=g++ $(ABI_FLAG) Index: patches/patch-af =================================================================== RCS file: /net/raidbox/raid/ncvs/ports/devel/boehm-gc/patches/patch-af,v retrieving revision 1.1 diff -U1 -r1.1 patch-af --- patches/patch-af 2000/07/19 09:10:43 1.1 +++ patches/patch-af 2000/10/05 17:08:44 @@ -15,8 +15 @@ # include -@@ -144,4 +149,4 @@ - --#if defined(LINUX) && (defined(POWERPC) || defined(SPARC) || defined(ALPHA) \ -- || defined(IA64)) -+#if (defined(FREEBSD) || defined(LINUX)) \ -+ && (defined(POWERPC) || defined(SPARC) || defined(ALPHA) || defined(IA64)) - /* The I386 case can be handled without a search. The Alpha case */ cvs diff: Diffing pkg Index: pkg/DESCR =================================================================== RCS file: /net/raidbox/raid/ncvs/ports/devel/boehm-gc/pkg/DESCR,v retrieving revision 1.1 diff -U1 -r1.1 DESCR --- pkg/DESCR 1996/11/16 01:51:38 1.1 +++ pkg/DESCR 2000/10/05 17:29:50 @@ -21,3 +21,4 @@ -- Mike McGaughey - ps: garbage collection is addictive. + +WWW: http://www.hpl.hp.com/personal/Hans_Boehm/gc/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 10:41:47 2000 Delivered-To: freebsd-ports@freebsd.org Received: from farley.org (farley.org [216.140.158.72]) by hub.freebsd.org (Postfix) with ESMTP id 14D1B37B503 for ; Thu, 5 Oct 2000 10:41:39 -0700 (PDT) Received: from thor.farley.org ([192.168.1.5]) by farley.org with esmtp (Exim 3.03 #1) id 13hF1I-000Onb-00; Thu, 05 Oct 2000 12:41:24 -0500 Date: Thu, 5 Oct 2000 12:41:24 -0500 (CDT) From: Sean Farley X-Sender: sean@thor.farley.org To: Jeremy Shaffner Cc: ports@freebsd.org Subject: Re: Shared library versioning in a new port In-Reply-To: <20001004171612.A28960@external.org> Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-697756542-970767684=:374" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-697756542-970767684=:374 Content-Type: TEXT/PLAIN; charset=US-ASCII On Wed, 4 Oct 2000 17:16, Jeremy Shaffner wrote: > On Tue, Oct 03, 2000 at 05:53:01PM -0500, Sean Farley wrote: > > I am currently testing out my first port, and I have a problem. It seems > > that the shared libraries being installed are using the following syntax: > > libfoo.so.x.y > > libbar.so.x.y > > > > This gives me no problem for the install but during uninstall the port > > complains about missing files such as: > > libfoo.so.x > > libbar.so.x > > Check the contents of your PLIST. I have attached it. I basically remove includes, bins, include directory, and finally all the shared libraries along with their symbolic links. I also attached the contents file from the package database. As you can see, the shared libraries have their minor numbers chopped off, therefore, they are not being removed. Sean ----------------------- sean-freebsd@farley.org --0-697756542-970767684=:374 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=PLIST Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: PLIST Content-Disposition: attachment; filename=PLIST YmluL2dzaV9zZXJ2ZXINCmJpbi9nc2lwbGF5DQpiaW4vZ3NpZmlsZQ0KaW5j bHVkZS9nc2kvY29uZmlnLmgNCmluY2x1ZGUvZ3NpL3doc190eXBlcy5oDQpp bmNsdWRlL2dzaS93aHNfZGVmaW5lcy5oDQppbmNsdWRlL2dzaS93aHNfZGVi dWcuaA0KaW5jbHVkZS9nc2kvdmVyc2lvbi5oDQppbmNsdWRlL2dzaS9zeW50 aF9kYXRhLmgNCmluY2x1ZGUvZ3NpL3BjbV9kYXRhLmgNCmluY2x1ZGUvZ3Np L3Bfc2lnbmFsLmgNCmluY2x1ZGUvZ3NpL21peGVyX2RhdGEuaA0KaW5jbHVk ZS9nc2kva3BtaWRpX3BhdGNoLmgNCmluY2x1ZGUvZ3NpL2twbWlkaS5oDQpp bmNsdWRlL2dzaS9nc2lzeW50aC5oDQppbmNsdWRlL2dzaS9nc2lwY20uaA0K aW5jbHVkZS9nc2kvZ3NpbWl4ZXIuaA0KaW5jbHVkZS9nc2kvZ3NpZl9taWRp LmgNCmluY2x1ZGUvZ3NpL2dzaWYuaA0KaW5jbHVkZS9nc2kvZ3NpY2QuaA0K aW5jbHVkZS9nc2kvZ3NpX3N1YmNvbW1hbmRzLmgNCmluY2x1ZGUvZ3NpL2dz aV9taWRpX25hbWVzLmgNCmluY2x1ZGUvZ3NpL2dzaV9pbnN0cnVtZW50bmFt ZXNfZ3VzLmgNCmluY2x1ZGUvZ3NpL2dzaV9ldmVudHMuaA0KaW5jbHVkZS9n c2kvZ3NpX2RlYnVnLmgNCmluY2x1ZGUvZ3NpL2dzaV9ldmVudG1hc2tzLmgN CmluY2x1ZGUvZ3NpL2dzaV9ldmVudF9uYW1lcy5oDQppbmNsdWRlL2dzaS9n c2lfZXZlbnRfbGVuZ3Rocy5oDQppbmNsdWRlL2dzaS9nc2lfY29uZmlnLmgN CmluY2x1ZGUvZ3NpL2dzaV9jb21tYW5kcy5oDQppbmNsdWRlL2dzaS9nc2lf Y29tbWFuZF9uYW1lcy5oDQppbmNsdWRlL2dzaS9nc2lfY29tbWFuZF9sZW5n dGhzLmgNCmluY2x1ZGUvZ3NpL2dzaS5oDQppbmNsdWRlL2dzaS9kZXZpY2Uu aA0KaW5jbHVkZS9nc2kvcF9zaWduYWwuYw0KQGRpcnJtIGluY2x1ZGUvZ3Np DQpsaWIvbGliZ3NpLnNvDQpsaWIvbGliZ3NpLnNvLjAuMQ0KbGliL2xpYmdz aWNkLnNvDQpsaWIvbGliZ3NpY2Quc28uMC4xDQpsaWIvbGliZ3NpZi5zbw0K bGliL2xpYmdzaWYuc28uMC4xDQpsaWIvbGliZ3NpbWlkaV9wY20uc28NCmxp Yi9saWJnc2ltaWRpX3BjbS5zby4yLjANCmxpYi9saWJnc2ltaXhlci5zbw0K bGliL2xpYmdzaW1peGVyLnNvLjAuMQ0KbGliL2xpYmdzaXBjbS5zbw0KbGli L2xpYmdzaXBjbS5zby4wLjENCmxpYi9saWJnc2lzeW50aC5zbw0KbGliL2xp YmdzaXN5bnRoLnNvLjAuMQ0K --0-697756542-970767684=:374 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=+CONTENTS Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: CONTENTS Content-Disposition: attachment; filename=+CONTENTS QG5hbWUgZ3NpLTAuOS40DQpAY3dkIC90bXAvbG9jYWwNCm1hbi9tYW4xL2dz aWZpbGUuMS5neg0KQGNvbW1lbnQgTUQ1OmQxYmFhZjJmYjFlNTMwNTNkMTBi ZWNhZjgzN2FlYjlhDQptYW4vbWFuMS9nc2lwbGF5LjEuZ3oNCkBjb21tZW50 IE1ENTpjMmIwY2MyMjcyMWZiYWVlN2VjODA1ZjIxYjQxNDVhOA0KbWFuL21h bjMvZ3NpLjMuZ3oNCkBjb21tZW50IE1ENToxY2M4MTNiNjY5OGM2ZTk5ZTk4 MDZiOGJlMzIwNDJlZg0KbWFuL21hbjMvZ3NpX2NvbW1hbmRzLjMuZ3oNCkBj b21tZW50IE1ENTo3Y2IxNWI4MDU1ZGE0ZTNhNTRmYmY0ZDg0Y2I1YWZhMQ0K bWFuL21hbjMvZ3NpX2V2ZW50cy4zLmd6DQpAY29tbWVudCBNRDU6YjRmYjM1 Yzc1YThjMDZhNmQwYjQ1OTdkYTYyOTY4MTENCm1hbi9tYW4zL2dzaWYuMy5n eg0KQGNvbW1lbnQgTUQ1OmE5NDFlZmViYzJiYWQxYjg2YTEyMWUwODZlMGM0 MWE2DQptYW4vbWFuMy9nc2lwY20uMy5neg0KQGNvbW1lbnQgTUQ1OjE4NzA0 OTliOWRlMGFkZDU1N2ExZWJjMWNhN2Y1NzNmDQptYW4vbWFuNS9nc2kuY29u Zi41Lmd6DQpAY29tbWVudCBNRDU6OTc5NjM2MTk2OTE0ZmNkMGE2ODY0ZmYx M2QwYzcxZmUNCm1hbi9tYW43L2dzaV9vdmVydmlldy43Lmd6DQpAY29tbWVu dCBNRDU6YWNmYWM3ODUyMjQ0MzU1MzBlZWFiYWQ5YmNmMTI0NzENCm1hbi9t YW44L2dzaV9zZXJ2ZXIuOC5neg0KQGNvbW1lbnQgTUQ1OmFjNDYwYjM5MjY1 MmVmMDY1ZGQzZmQyMjQ0OWM2YTVmDQpiaW4vZ3NpX3NlcnZlcg0KQGNvbW1l bnQgTUQ1OjU2OTc2OGFkYjVkNjljOTgyY2U2MzFlZmI3MGQ4NGViDQpiaW4v Z3NpcGxheQ0KQGNvbW1lbnQgTUQ1OjMzOTlkZTRhODA1MjdjZmQ1ODk4ZWEy ZDhjNGFlY2FjDQpiaW4vZ3NpZmlsZQ0KQGNvbW1lbnQgTUQ1OjEwM2UyMWU1 OTg2OGYyYjE2ODM5MzViMWUxNTllMDdjDQppbmNsdWRlL2dzaS9jb25maWcu aA0KQGNvbW1lbnQgTUQ1OmVhYTY3NGE2MTlmNGJkZjk1NGM2MTM3NWQ3ZDBi MDBhDQppbmNsdWRlL2dzaS93aHNfdHlwZXMuaA0KQGNvbW1lbnQgTUQ1OjZl NmQ0Njk4YzgxMzk4YjE0MzRjMzljODU3MWJhMmZmDQppbmNsdWRlL2dzaS93 aHNfZGVmaW5lcy5oDQpAY29tbWVudCBNRDU6ZTczOGY0ODE0NDE0NjFiODgx ZDk3MmZhY2Q1NjkxNWYNCmluY2x1ZGUvZ3NpL3doc19kZWJ1Zy5oDQpAY29t bWVudCBNRDU6N2YxOGNhZTM5Y2ZiODg3NzQ0ZmQ4OGI5ZjU5MmFhMTYNCmlu Y2x1ZGUvZ3NpL3ZlcnNpb24uaA0KQGNvbW1lbnQgTUQ1OmI1ZDM5YTIwYTNj ZDg3NmI4YzhmZDVkNGE5ZGIzYjRkDQppbmNsdWRlL2dzaS9zeW50aF9kYXRh LmgNCkBjb21tZW50IE1ENTpjODlhNmQ2ZGQ0MzA3Yjk4ZTAzZGYzODBjYjcw YjEwZg0KaW5jbHVkZS9nc2kvcGNtX2RhdGEuaA0KQGNvbW1lbnQgTUQ1OmFh M2VhZGFkZDJiODAyNTNmNDJjNWNmNjRhNWY2NzM3DQppbmNsdWRlL2dzaS9w X3NpZ25hbC5oDQpAY29tbWVudCBNRDU6MzYyOTQzMzNjNjZkZjA4MDY4YjVi ODBjNjAyYjQ0YzcNCmluY2x1ZGUvZ3NpL21peGVyX2RhdGEuaA0KQGNvbW1l bnQgTUQ1OjZhOTJmMWUxNjNhMDViOWU3ZDFjMDA4Y2I0NDRmYzBjDQppbmNs dWRlL2dzaS9rcG1pZGlfcGF0Y2guaA0KQGNvbW1lbnQgTUQ1OmUzYWFkNWVj NzQ3YTBhMjM5NWQ2NTM0Yzc3Y2E5MzZhDQppbmNsdWRlL2dzaS9rcG1pZGku aA0KQGNvbW1lbnQgTUQ1OmIyOWZjNWRiZmNlZmU3NmUyNjQ3NzZkMTVmYTgx ZjZmDQppbmNsdWRlL2dzaS9nc2lzeW50aC5oDQpAY29tbWVudCBNRDU6ZTg0 MjA1OTM5MDgyMGIxMDRiNjY4OWE1NjhmMzVhMTUNCmluY2x1ZGUvZ3NpL2dz aXBjbS5oDQpAY29tbWVudCBNRDU6OGVjMGZiODVmMmUxNmFhOTQ1MDlmZmVj NDIwZTVlMGMNCmluY2x1ZGUvZ3NpL2dzaW1peGVyLmgNCkBjb21tZW50IE1E NTozOGNjNGExYWYwZDMwNjRhZDFmNGU3MDczNmVjOTllNQ0KaW5jbHVkZS9n c2kvZ3NpZl9taWRpLmgNCkBjb21tZW50IE1ENTo4ODliNmQ4N2JhYTY4ZGU1 N2RkZGVlYmYwMmUwZWY3NA0KaW5jbHVkZS9nc2kvZ3NpZi5oDQpAY29tbWVu dCBNRDU6NzZmODIwYjZhM2QwMDU1NmExNzgxZGMzMGI3MmRlOWINCmluY2x1 ZGUvZ3NpL2dzaWNkLmgNCkBjb21tZW50IE1ENTo2NWE2MmQ3YWEzNDEzOTQ2 NDlmM2JhMmUzNzcxNTgzOA0KaW5jbHVkZS9nc2kvZ3NpX3N1YmNvbW1hbmRz LmgNCkBjb21tZW50IE1ENTphNWQyMGNjYmJhNzkyODI0M2EwZWUxYTZhYTg5 NTE4MA0KaW5jbHVkZS9nc2kvZ3NpX21pZGlfbmFtZXMuaA0KQGNvbW1lbnQg TUQ1OjkxYzNiNDNmMjNjMzE2YWU5NmM2YjI4YmI4YzdkZTMyDQppbmNsdWRl L2dzaS9nc2lfaW5zdHJ1bWVudG5hbWVzX2d1cy5oDQpAY29tbWVudCBNRDU6 MGY5ZThjMTc4NmEwYTM2N2I3OTliNjlkZjNjOGIwYzYNCmluY2x1ZGUvZ3Np L2dzaV9ldmVudHMuaA0KQGNvbW1lbnQgTUQ1OjE0ODIxOTZhNGQ5Y2NhMGVl ZWNmZjY1MmZiY2YwOTNmDQppbmNsdWRlL2dzaS9nc2lfZGVidWcuaA0KQGNv bW1lbnQgTUQ1OmU0N2M2Zjk3MTM5ODMzOWZlNmVmYTc4YjU1NjdhMDUyDQpp bmNsdWRlL2dzaS9nc2lfZXZlbnRtYXNrcy5oDQpAY29tbWVudCBNRDU6MWVj OTMwMDcxYzEyZmRiMTcyYjdkM2YyZTc5MDNjYjgNCmluY2x1ZGUvZ3NpL2dz aV9ldmVudF9uYW1lcy5oDQpAY29tbWVudCBNRDU6Yjg1M2I5M2FkZmUyNjY0 ZWY5Njc1Mjc1YTQ3MmVmNjcNCmluY2x1ZGUvZ3NpL2dzaV9ldmVudF9sZW5n dGhzLmgNCkBjb21tZW50IE1ENToxNjQxMThjZGNmYjg5ZGM5ZDFmZWUyYmU3 ZjdkOGE1NQ0KaW5jbHVkZS9nc2kvZ3NpX2NvbmZpZy5oDQpAY29tbWVudCBN RDU6ZTNkMTFiOWRjYjEzZWU2MWE5MTYzM2U4Y2I0NTYzNDQNCmluY2x1ZGUv Z3NpL2dzaV9jb21tYW5kcy5oDQpAY29tbWVudCBNRDU6N2NmMTJiZGM1Yzhk ZDAwZmVjNzRiMDMyODViZGEzODUNCmluY2x1ZGUvZ3NpL2dzaV9jb21tYW5k X25hbWVzLmgNCkBjb21tZW50IE1ENToyNTU5MThiMGI2ZDQyYTQyZDUxNTVi ODM0ZWMzNTM0NQ0KaW5jbHVkZS9nc2kvZ3NpX2NvbW1hbmRfbGVuZ3Rocy5o DQpAY29tbWVudCBNRDU6OTQyOTBlZDg5ZWNlNjk0MmJmNDAwYjAzNDNhZTUz OWENCmluY2x1ZGUvZ3NpL2dzaS5oDQpAY29tbWVudCBNRDU6NTExM2VkMTNi NTcyMjhjMzAxMjUwODhiNTIzYjhmNjYNCmluY2x1ZGUvZ3NpL2RldmljZS5o DQpAY29tbWVudCBNRDU6NDQ1MjgxYWY4ODZmYTRmMWM0Y2I1MDc0MjE0MmNk YTUNCmluY2x1ZGUvZ3NpL3Bfc2lnbmFsLmMNCkBjb21tZW50IE1ENTpmYmRk ZTcwYjlhZmE3ZDUxYzM5MzVjMjRmYmExOTk4MA0KQGRpcnJtIGluY2x1ZGUv Z3NpDQpsaWIvbGliZ3NpLnNvDQpAY29tbWVudCBNRDU6MjAyMjIxODU2M2Fl OWYzOTNiMjMwNWFjMjFlOTMyN2QNCmxpYi9saWJnc2kuc28uMA0KbGliL2xp YmdzaWNkLnNvDQpAY29tbWVudCBNRDU6YjExZDJhYTRhYjRkMjNjYzNjNTRj ZmVlZjY5MDVjOWINCmxpYi9saWJnc2ljZC5zby4wDQpsaWIvbGliZ3NpZi5z bw0KQGNvbW1lbnQgTUQ1OmI4MzljYjVjZGFkMWQ1N2NhNGRkZTk4YjdhYzRm YTc1DQpsaWIvbGliZ3NpZi5zby4wDQpsaWIvbGliZ3NpbWlkaV9wY20uc28N CkBjb21tZW50IE1ENTozNWVhNzI3MTRiNTkwZGEwNmVkNWU2NzJkMDBmZTJk ZQ0KbGliL2xpYmdzaW1pZGlfcGNtLnNvLjINCmxpYi9saWJnc2ltaXhlci5z bw0KQGNvbW1lbnQgTUQ1OjIxMGUzODdiZTgwNjQ2YWYzMGZmMTUxYmRmNmZl Mzk4DQpsaWIvbGliZ3NpbWl4ZXIuc28uMA0KbGliL2xpYmdzaXBjbS5zbw0K QGNvbW1lbnQgTUQ1OmExNmU5ZTJlZGYwMDI1MDY3MDZhMTY2YjBkODc3YWM1 DQpsaWIvbGliZ3NpcGNtLnNvLjANCmxpYi9saWJnc2lzeW50aC5zbw0KQGNv bW1lbnQgTUQ1OjcxODRhYjVhZmM2OGI1OWE2NTJjNzA1MjQ1MzNkMTQwDQps aWIvbGliZ3Npc3ludGguc28uMA0KQHVuZXhlYyBpZiBbIC1mICVEL2luZm8v ZGlyIF07IHRoZW4gaWYgc2VkIC1lICcxLC9NZW51Oi9kJyAlRC9pbmZvL2Rp ciB8IGdyZXAgLXEgJ15bKl0gJzsgdGhlbiB0cnVlOyBlbHNlIHJtICVEL2lu Zm8vZGlyOyBmaTsgZmkNCkBleGVjIC9zYmluL2xkY29uZmlnIC1tICVEL2xp Yg0KQHVuZXhlYyAvc2Jpbi9sZGNvbmZpZyAtUg0K --0-697756542-970767684=:374-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 14:36:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hecky.it.northwestern.edu (hecky.acns.nwu.edu [129.105.16.51]) by hub.freebsd.org (Postfix) with ESMTP id 5E77937B502; Thu, 5 Oct 2000 14:36:38 -0700 (PDT) Received: (from mailnull@localhost) by hecky.it.northwestern.edu (8.8.7/8.8.7) id QAA28075; Thu, 5 Oct 2000 16:36:33 -0500 (CDT) Received: from confusion.net (dhcp089155.res-hall.nwu.edu [199.74.89.155]) by hecky.acns.nwu.edu via smap (V2.0) id xma027956; Thu, 5 Oct 00 16:36:28 -0500 Message-ID: <39DCF43C.FD9A3253@confusion.net> Date: Thu, 05 Oct 2000 16:35:56 -0500 From: Laurence Berland X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Maxim Sobolev Cc: ports@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Re: KDE2 fails to compile in strangest possible way References: <39D924D1.DA491E02@confusion.net> <39DC3A5B.671E4BDD@FreeBSD.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org While I have seriously considered trying GNOME out, that wouldn't really satisfy my desire to figure out what is going on with this file. Top shows the compilation sitting at swread, truss is not telling me anything of interest, and it seems like the system is sitting idle even during all this. Hmm... Laurence Maxim Sobolev wrote: > > Laurence Berland wrote: > > > All, > > Trying to compile KDE 4.1 on a somewhat recent 4.1-STABLE yields some > > strange results. All appears to be going well, until it begins > > compiling the file mcopidl.cc. The precise line is > > > > c++ -DHAVE_CONFIG_H -I. -I. -I../.. -I,,.,,.dcop -I../../kdecore > > -I../../kdeui -I../../kssl -I/usr/X11R6/include/qt2 -I/usr/X11R6/include > > -I/usr/local/include -I./../mcop -I/usr/local/include > > -I/usr/local/include -O -pipe -frtti -c mcopidl.cc > > > > It doesn't fail per se, but it's been working on this for at least 7 > > hours, with no sign of anything happening, though the activity lights > > are flashing. Top shows some activity involving this process, and it > > does seem to be using a large and oft-varied amount of memory (~50-70 > > MB). Just for reference the machine is a PPro 200 with 32 MB ram, 128MB > > swap, running a generic kernel. > > Try GNOME - it's now almost at par with KDE in usability/eye candiness (even > beats it in the later category IMO), while uses old plain C and not so heavily > CORBA-minded, so it is definitely the only choice for low-end machines. > > -Maxim > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message -- Laurence Berland Intern, Flooz.com Northwestern '04 stuyman@confusion.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 15:30:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D1B2637B66C for ; Thu, 5 Oct 2000 15:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA85824; Thu, 5 Oct 2000 15:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from alchemy.oven.org (shiva5.ksl.co.il [199.203.25.40]) by hub.freebsd.org (Postfix) with ESMTP id 7574637B502 for ; Thu, 5 Oct 2000 15:26:14 -0700 (PDT) Received: (from mapc@localhost) by alchemy.oven.org (8.11.0/8.11.0) id e95MQlP83093; Fri, 6 Oct 2000 01:26:47 +0300 (IDT) (envelope-from mapc) Message-Id: <200010052226.e95MQlP83093@alchemy.oven.org> Date: Fri, 6 Oct 2000 01:26:47 +0300 (IDT) From: roman@xpert.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21776: NEW PORT: net/sing Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21776 >Category: ports >Synopsis: NEW PORT: net/sing - utility for sending custom ICMP packets. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 05 15:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Roman Shterenzon >Release: FreeBSD 4.1-STABLE i386 >Organization: Roman Shterenzon >Environment: >Description: This is a port of GNU sing utility: From DESCR: Sing is a little tool that sends ICMP packets fully customized from command line. The main purpose is to replace/complement the niceful ping command with certain enhancements as: - Send fragmented packets (Linux and BSD). - Send monster packets > 65534 (Linux and BSD). - Send/read spoofed packets. - Send many ICMP Information types in addition to the ECHO REQUEST type sent by default as Address Mask Request, Timestamp, Information Request, Router Solicitation and Router Advertisement. - Send many ICMP error types: Redirect, Source Quench, Time Exceeded, Destination Unreach and Parameter Problem. - Send to host with Loose or Strict Source Routing. - Use little fingerprinting techniques to discover Windows or Solaris boxes. - Send ICMP packets emulating certain OS: Cisco, Solaris, Linux, Shiva, Unix and Windows at the moment. WWW: http://sourceforge.net/projects/sing/ >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # sing # sing/Makefile # sing/files # sing/files/md5 # sing/pkg # sing/pkg/PLIST # sing/pkg/DESCR # sing/pkg/COMMENT # sing/patches # sing/patches/patch-aa # sing/patches/patch-ab # echo c - sing mkdir -p sing > /dev/null 2>&1 echo x - sing/Makefile sed 's/^X//' >sing/Makefile << 'END-of-sing/Makefile' X# Ports collection makefile for: sing X# Date created: Oct 6 2000 X# Whom: Roman Shterenzon X# X# $FreeBSD$ X# X XPORTNAME= sing XPORTVERSION= 1.0 XCATEGORIES= net security XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= ${PORTNAME} XDISTNAME= SING-${PORTVERSION} XEXTRACT_SUFX= .tgz X XMAINTAINER= roman@xpert.com X XGNU_CONFIGURE= yes XMAN8= sing.8 X Xpost-extract: X @${RM} -rf ${WRKSRC}/libpcap* X X.include END-of-sing/Makefile echo c - sing/files mkdir -p sing/files > /dev/null 2>&1 echo x - sing/files/md5 sed 's/^X//' >sing/files/md5 << 'END-of-sing/files/md5' XMD5 (SING-1.0.tgz) = 0e478a271068eefc6e26e45d236e7694 END-of-sing/files/md5 echo c - sing/pkg mkdir -p sing/pkg > /dev/null 2>&1 echo x - sing/pkg/PLIST sed 's/^X//' >sing/pkg/PLIST << 'END-of-sing/pkg/PLIST' Xsbin/sing END-of-sing/pkg/PLIST echo x - sing/pkg/DESCR sed 's/^X//' >sing/pkg/DESCR << 'END-of-sing/pkg/DESCR' XSing is a little tool that sends ICMP packets fully customized from command Xline. The main purpose is to replace/complement the niceful ping command Xwith certain enhancements as: X X - Send fragmented packets (Linux and BSD). X - Send monster packets > 65534 (Linux and BSD). X - Send/read spoofed packets. X - Send many ICMP Information types in addition to the ECHO REQUEST type sent X by default as Address Mask Request, Timestamp, Information Request, Router X Solicitation and Router Advertisement. X - Send many ICMP error types: Redirect, Source Quench, Time Exceeded, X Destination Unreach and Parameter Problem. X - Send to host with Loose or Strict Source Routing. X - Use little fingerprinting techniques to discover Windows or Solaris boxes. X - Send ICMP packets emulating certain OS: Cisco, Solaris, Linux, Shiva, X Unix and Windows at the moment. X XWWW: http://sourceforge.net/projects/sing/ X X--Roman END-of-sing/pkg/DESCR echo x - sing/pkg/COMMENT sed 's/^X//' >sing/pkg/COMMENT << 'END-of-sing/pkg/COMMENT' XTool for sending customized ICMP packets END-of-sing/pkg/COMMENT echo c - sing/patches mkdir -p sing/patches > /dev/null 2>&1 echo x - sing/patches/patch-aa sed 's/^X//' >sing/patches/patch-aa << 'END-of-sing/patches/patch-aa' X--- Makefile.in.orig Sat Sep 16 13:03:43 2000 X+++ Makefile.in Fri Oct 6 01:17:29 2000 X@@ -72,7 +72,7 @@ X getopt_SOURCES = @getopt_SOURCES@ X libpcapdir = @libpcapdir@ X X-INCLUDES = -I$(includedir) -I$(libpcapdir) X+INCLUDES = -I$(includedir) # -I$(libpcapdir) X X LIBS = @LIBS@ -lpcap X X@@ -108,7 +108,7 @@ X SOURCES = $(sing_SOURCES) X OBJECTS = $(sing_OBJECTS) X X-all: libpcap all-redirect X+all: all-redirect X .SUFFIXES: X .SUFFIXES: .S .c .o .s X X@@ -149,11 +149,11 @@ X X install-binPROGRAMS: $(bin_PROGRAMS) X @$(NORMAL_INSTALL) X- $(mkinstalldirs) $(DESTDIR)$(bindir) X+ $(mkinstalldirs) $(DESTDIR)$(sbindir) X @list='$(bin_PROGRAMS)'; for p in $$list; do \ X if test -f $$p; then \ X- echo " $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \ X- $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ X+ echo " $(INSTALL_PROGRAM) $$p $(DESTDIR)$(sbindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \ X+ $(INSTALL_PROGRAM) $$p $(DESTDIR)$(sbindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ X else :; fi; \ X done X X@@ -223,8 +223,7 @@ X X X help.o: help.c config.h X-sing.o: sing.c config.h libpcap-0.4/pcap.h libpcap-0.4/net/bpf.h \ X- sing.h ipcompat.h misc.h packet.h dev_struct.h X+sing.o: sing.c config.h sing.h ipcompat.h misc.h packet.h dev_struct.h X ip_options.o: ip_options.c config.h ip_options.h ipcompat.h packet.h \ X misc.h X device.o: device.c config.h device.h misc.h packet.h dev_struct.h END-of-sing/patches/patch-aa echo x - sing/patches/patch-ab sed 's/^X//' >sing/patches/patch-ab << 'END-of-sing/patches/patch-ab' X--- configure.orig Fri Oct 6 01:19:57 2000 X+++ configure Fri Oct 6 01:20:05 2000 X@@ -1097,10 +1097,6 @@ X fi X fi X X-if test -n "$GCC"; then X- CFLAGS="-O3 -Wall" X-fi X- X echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 X echo "configure:1104: checking how to run the C preprocessor" >&5 X # On Suns, sometimes $CPP names a directory. END-of-sing/patches/patch-ab exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 16:22:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from gloria.cord.edu (gloria.cord.edu [138.129.254.6]) by hub.freebsd.org (Postfix) with ESMTP id 49D7537B502; Thu, 5 Oct 2000 16:22:15 -0700 (PDT) Received: from localhost (twschulz@localhost) by gloria.cord.edu (8.9.0/8.9.1) with ESMTP id SAA06870; Thu, 5 Oct 2000 18:21:56 -0500 (CDT) Date: Thu, 5 Oct 2000 18:21:56 -0500 (CDT) From: Trenton Schulz To: Laurence Berland Cc: Maxim Sobolev , ports@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Re: KDE2 fails to compile in strangest possible way In-Reply-To: <39DCF43C.FD9A3253@confusion.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 5 Oct 2000, Laurence Berland wrote: > While I have seriously considered trying GNOME out, that wouldn't really > satisfy my desire to figure out what is going on with this file. Top > shows the compilation sitting at swread, truss is not telling me > anything of interest, and it seems like the system is sitting idle even > during all this. Hmm... While I know that not building a port is not nearly as "fun" KDE does offer pre-built packages over at: ftp://ftp.de.kde.org/pub/kde/unstable/distribution/2.0Beta5/tar/FreeBSD/ download them and pkg_add away :) -- Trenton Schulz twschulz@cord.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 16:59:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail-4.sjc.telocity.net (mail-4.sjc.telocity.net [216.227.56.44]) by hub.freebsd.org (Postfix) with ESMTP id 0F9C737B66C; Thu, 5 Oct 2000 16:59:19 -0700 (PDT) Received: from Angel.telocity.com (dsl-216-227-91-85.telocity.com [216.227.91.85]) by mail-4.sjc.telocity.net (8.9.3/8.9.3) with ESMTP id QAA13100; Thu, 5 Oct 2000 16:54:54 -0700 (PDT) Received: from telocity.com (localhost.telocity.com [127.0.0.1]) by Angel.telocity.com (8.11.0/8.11.0) with ESMTP id e9601ho26856; Thu, 5 Oct 2000 20:01:43 -0400 (EDT) (envelope-from morgana@telocity.com) Message-ID: <39DD1666.426D4F5F@telocity.com> Date: Thu, 05 Oct 2000 20:01:42 -0400 From: Fabiana X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org, ports@freebsd.org Subject: Pine 4.21 question Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Greetings, I am attempting to set the URL-VIEWER, so that the hyperlink in a message will open a new xterm with W3M. This works, the problem is that I would like to leave the xterm with the web page open, and still continue to browse my messages. I tried "/usr/X11R6/bin/rxvt -rv -e /usr/local/bin/w3m &". It flickered, as if it opened the new xterm, then it just returned to Pine. It is possible that I am asking too much of Pine, but it doesn't seem like it. It should be possible. Either way, many thanks for any thoughts and suggestions. Sincerely, Fabiana To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 17:30: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F60C37B502 for ; Thu, 5 Oct 2000 17:30:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA31037; Thu, 5 Oct 2000 17:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 5 Oct 2000 17:30:03 -0700 (PDT) Message-Id: <200010060030.RAA31037@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: toga@puyo.org (TOGAWA Satoshi) Subject: Re: ports/21765: I cat't make ports using and Reply-To: toga@puyo.org (TOGAWA Satoshi) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21765; it has been noted by GNATS. From: toga@puyo.org (TOGAWA Satoshi) To: reg@FreeBSD.org Cc: asami@FreeBSD.org, freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/21765: I cat't make ports using and Date: Fri, 6 Oct 2000 09:27:21 +0900 (JST) Hello. Finally I succeeded making ports. >> > But when I run make, make said: >> > "/usr/ports/Mk/bsd.port.mk", line 2218: Inconsistent operator for pre-everything >> >> Can you try something for me. On line 2230 of bsd.port.mk, can you >> change the :: to a :. Satoshi changed this during the commit to >> bsd.port.mk, and it seems to be what is causing the problem. Line 2230 is a comment line. So I try line 2218's "::" . And I succeeded make mpg123 and others. ---- toga@puyo.org Satoshi Togawa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 17:48:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from lh2.rdc1.tx.home.com (ha2.rdc1.tx.home.com [24.4.0.67]) by hub.freebsd.org (Postfix) with ESMTP id 8ED2A37B502; Thu, 5 Oct 2000 17:48:54 -0700 (PDT) Received: from home.com ([24.4.56.67]) by lh2.rdc1.tx.home.com (InterMail vM.4.01.03.00 201-229-121) with ESMTP id <20001006004853.RFDT20964.lh2.rdc1.tx.home.com@home.com>; Thu, 5 Oct 2000 17:48:53 -0700 Message-ID: <39DD225E.E1368730@home.com> Date: Thu, 05 Oct 2000 19:52:46 -0500 From: Stan Kolkmeier Reply-To: skolkmeier@home.com X-Mailer: Mozilla 4.74 [en] (X11; U; FreeBSD 4.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: ade@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: gnucash-1.4.7 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org won't build using 4.1 FileIO.c rm -f .libs/FileIO.lo cc -DHAVE_CONFIG_H -I. -I. -I../.. -I.. -I/usr/local/include -I/usr/X11R6/includ e -O -pipe -Wall -I/usr/local/include -c FileIO.c -fPIC -DPIC -o .libs/FileIO.l o FileIO.c:89: glib.h: No such file or directory FileIO.c: In function `xaccFlipInt': FileIO.c:203: syntax error before `flip' FileIO.c:204: `flip' undeclared (first use in this function) FileIO.c:204: (Each undeclared identifier is reported only once FileIO.c:204: for each function it appears in.) FileIO.c:209: warning: control reaches end of non-void function FileIO.c: In function `xaccFlipDouble': FileIO.c:222: syntax error before `guint32' FileIO.c:225: syntax error before `w0' FileIO.c:227: `w0' undeclared (first use in this function) FileIO.c:227: union has no member named `i' FileIO.c:228: `w1' undeclared (first use in this function) FileIO.c:228: union has no member named `i' FileIO.c:230: union has no member named `i' FileIO.c:231: union has no member named `i' FileIO.c: At top level: FileIO.c:235: syntax error before `xaccFlipLongLong' FileIO.c:235: syntax error before `val' FileIO.c:236: warning: return-type defaults to `int' FileIO.c: In function `xaccFlipLongLong': FileIO.c:238: syntax error before `guint32' FileIO.c:241: syntax error before `w0' FileIO.c:242: union has no member named `d' FileIO.c:242: `val' undeclared (first use in this function) FileIO.c:243: `w0' undeclared (first use in this function) FileIO.c:243: union has no member named `i' FileIO.c:244: `w1' undeclared (first use in this function) FileIO.c:244: union has no member named `i' FileIO.c:246: union has no member named `i' FileIO.c:247: union has no member named `i' FileIO.c:248: union has no member named `d' FileIO.c:249: warning: control reaches end of non-void function FileIO.c: In function `readTSDate': FileIO.c:1231: syntax error before `secs' FileIO.c:1238: syntax error before `sicks' FileIO.c:1239: `sicks' undeclared (first use in this function) FileIO.c:1239: `gint32' undeclared (first use in this function) FileIO.c:1245: `secs' undeclared (first use in this function) FileIO.c:1249: `gint64' undeclared (first use in this function) FileIO.c:1257: `nsecs' undeclared (first use in this function) FileIO.c: In function `writeTSDate': etc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 18: 2:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hub.lovett.com (hub.lovett.com [216.60.121.161]) by hub.freebsd.org (Postfix) with ESMTP id 3CF8D37B503 for ; Thu, 5 Oct 2000 18:02:47 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13hLuJ-0004kv-00; Thu, 05 Oct 2000 20:02:39 -0500 Date: Thu, 5 Oct 2000 20:02:39 -0500 From: Ade Lovett To: Stan Kolkmeier Cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: gnucash-1.4.7 Message-ID: <20001005200239.F5318@FreeBSD.org> References: <39DD225E.E1368730@home.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39DD225E.E1368730@home.com>; from skolkmeier@home.com on Thu, Oct 05, 2000 at 07:52:46PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 05, 2000 at 07:52:46PM -0500, Stan Kolkmeier wrote: > won't build using 4.1 > > FileIO.c:89: glib.h: No such file or directory ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ That's bad. Do you have x11-toolkits/gtk12 and lang/glib12 installed? Also, have you brought your entire ports tree up to date including ports-base.. there have been a number of changes there recently which might account for this (I'm thinking of the USE_GNOME directive). You need at least rev 1.354 of /usr/ports/Mk/bsd.port.mk I built this port only today on a 4.1.1-STABLE box, with a *fully* up-to-date /usr/ports. -aDe -- Ade Lovett, Austin, TX. ade@FreeBSD.org FreeBSD: The Power to Serve http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 18:10:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A6D7B37B503 for ; Thu, 5 Oct 2000 18:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA46624; Thu, 5 Oct 2000 18:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from alchemy.oven.org (shiva5.ksl.co.il [199.203.25.40]) by hub.freebsd.org (Postfix) with ESMTP id 0F97337B502 for ; Thu, 5 Oct 2000 18:03:22 -0700 (PDT) Received: (from mapc@localhost) by alchemy.oven.org (8.11.0/8.11.0) id e9603XB96207; Fri, 6 Oct 2000 03:03:33 +0300 (IDT) (envelope-from mapc) Message-Id: <200010060003.e9603XB96207@alchemy.oven.org> Date: Fri, 6 Oct 2000 03:03:33 +0300 (IDT) From: Roman Shterenzon To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21778: update arping from 0.94 to 0.95 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21778 >Category: ports >Synopsis: update arping from 0.94 to 0.95 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Oct 05 18:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Roman Shterenzon >Release: FreeBSD 4.1-STABLE i386 >Organization: Roman Shterenzon >Environment: >Description: This is an update for arping from 0.94 to 0.95 which has a manpage now. I attach both the diff and the shar in case it wasn't committed yet. >How-To-Repeat: >Fix: diff -urN arping.old/Makefile arping/Makefile --- arping.old/Makefile Sun Oct 1 16:28:08 2000 +++ arping/Makefile Fri Oct 6 02:59:24 2000 @@ -6,7 +6,7 @@ # PORTNAME= arping -PORTVERSION= 0.94 +PORTVERSION= 0.95 CATEGORIES= net MASTER_SITES= ftp://ftp.nss.nu/pub/synscan/ @@ -15,8 +15,10 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/libnet.a:${PORTSDIR}/net/libnet ALL_TARGET= freebsd +MAN8= arping.8 do-install: - cd ${WRKSRC}; ${INSTALL_PROGRAM} arping ${PREFIX}/sbin + ${INSTALL_PROGRAM} ${WRKSRC}/arping ${PREFIX}/sbin + ${INSTALL_MAN} ${WRKSRC}/arping.8 ${PREFIX}/man/man8 .include diff -urN arping.old/files/md5 arping/files/md5 --- arping.old/files/md5 Sun Oct 1 16:28:49 2000 +++ arping/files/md5 Fri Oct 6 02:58:17 2000 @@ -1 +1 @@ -MD5 (arping-0.94.tar.gz) = 3907c8a7942eb8fa57da3e50ef9266bc +MD5 (arping-0.95.tar.gz) = a9647360fc8b5b4caeec38bd3256228c and the shar: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # arping # arping/Makefile # arping/pkg # arping/pkg/DESCR # arping/pkg/COMMENT # arping/pkg/PLIST # arping/files # arping/files/md5 # echo c - arping mkdir -p arping > /dev/null 2>&1 echo x - arping/Makefile sed 's/^X//' >arping/Makefile << 'END-of-arping/Makefile' X# New ports collection makefile for: arping X# Date Created: 1 Oct 2000 X# Whom: Roman Shterenzon X# X# $FreeBSD$ X# X XPORTNAME= arping XPORTVERSION= 0.95 XCATEGORIES= net XMASTER_SITES= ftp://ftp.nss.nu/pub/synscan/ X XMAINTAINER= roman@xpert.com X XBUILD_DEPENDS= ${LOCALBASE}/lib/libnet.a:${PORTSDIR}/net/libnet X XALL_TARGET= freebsd XMAN8= arping.8 X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/arping ${PREFIX}/sbin X ${INSTALL_MAN} ${WRKSRC}/arping.8 ${PREFIX}/man/man8 X X.include END-of-arping/Makefile echo c - arping/pkg mkdir -p arping/pkg > /dev/null 2>&1 echo x - arping/pkg/DESCR sed 's/^X//' >arping/pkg/DESCR << 'END-of-arping/pkg/DESCR' XArping is a util to find out it a specific IP address on the LAN is 'taken' Xand what MAC address owns it. Sure, you *could* just use 'ping' to find out if Xit's taken and even if the computer blocks ping (and everything else) you still Xget an entry in your arp cache. But what if you aren't on a routable net? Then Xyou're screwed. Or you use arping. X XWWW: http://synscan.nss.nu/programs.php X XRoman Shterenzon END-of-arping/pkg/DESCR echo x - arping/pkg/COMMENT sed 's/^X//' >arping/pkg/COMMENT << 'END-of-arping/pkg/COMMENT' XARP level "ping" utility END-of-arping/pkg/COMMENT echo x - arping/pkg/PLIST sed 's/^X//' >arping/pkg/PLIST << 'END-of-arping/pkg/PLIST' Xsbin/arping END-of-arping/pkg/PLIST echo c - arping/files mkdir -p arping/files > /dev/null 2>&1 echo x - arping/files/md5 sed 's/^X//' >arping/files/md5 << 'END-of-arping/files/md5' XMD5 (arping-0.95.tar.gz) = a9647360fc8b5b4caeec38bd3256228c END-of-arping/files/md5 exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 19:15:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id A489137B66E; Thu, 5 Oct 2000 19:15:52 -0700 (PDT) Received: by puck.firepipe.net (Postfix, from userid 1000) id 568B61928; Thu, 5 Oct 2000 21:16:25 -0500 (EST) Date: Thu, 5 Oct 2000 21:16:25 -0500 From: Will Andrews To: Trenton Schulz Cc: Laurence Berland , Maxim Sobolev , ports@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Re: KDE2 fails to compile in strangest possible way Message-ID: <20001005211625.F70754@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Trenton Schulz , Laurence Berland , Maxim Sobolev , ports@FreeBSD.ORG, stable@FreeBSD.ORG References: <39DCF43C.FD9A3253@confusion.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from twschulz@gloria.cord.edu on Thu, Oct 05, 2000 at 06:21:56PM -0500 X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 05, 2000 at 06:21:56PM -0500, Trenton Schulz wrote: > While I know that not building a port is not nearly as "fun" KDE does offer > pre-built packages over at: > ftp://ftp.de.kde.org/pub/kde/unstable/distribution/2.0Beta5/tar/FreeBSD/ I built these packages. They are not as good as the ones that bento.FreeBSD.org (package cluster) built. You can get these at ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-4.1.1-release/All/, and more recently, you can get 4.1.1-STABLE && 3.5-STABLE && 5.0-CURRENT packages by substituting `4.1.1-release` with `4-stable`, `3-stable` and `5-current`, respectively. So I suggest you get the ones off the FreeBSD.org FTP mirrors (please don't use ftp.freebsd.org if you can avoid it). -- Will Andrews - Physics Computer Network wench The Universal Answer to All Problems - "It has something to do with physics." -- Comic on door of Room 240, Physics Building, Purdue University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 19:40:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hecky.it.northwestern.edu (hecky.acns.nwu.edu [129.105.16.51]) by hub.freebsd.org (Postfix) with ESMTP id 5FDD437B502; Thu, 5 Oct 2000 19:40:07 -0700 (PDT) Received: (from mailnull@localhost) by hecky.it.northwestern.edu (8.8.7/8.8.7) id VAA21551; Thu, 5 Oct 2000 21:40:03 -0500 (CDT) Received: from confusion.net (dhcp089155.res-hall.nwu.edu [199.74.89.155]) by hecky.acns.nwu.edu via smap (V2.0) id xma021487; Thu, 5 Oct 00 21:39:36 -0500 Message-ID: <39DD3B48.C866FB11@confusion.net> Date: Thu, 05 Oct 2000 21:39:04 -0500 From: Laurence Berland X-Mailer: Mozilla 4.75 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Trenton Schulz Cc: Maxim Sobolev , ports@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Re: KDE2 fails to compile in strangest possible way References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Regardless, problem solved, -O does some strange stuff... Trenton Schulz wrote: > > On Thu, 5 Oct 2000, Laurence Berland wrote: > > > While I have seriously considered trying GNOME out, that wouldn't really > > satisfy my desire to figure out what is going on with this file. Top > > shows the compilation sitting at swread, truss is not telling me > > anything of interest, and it seems like the system is sitting idle even > > during all this. Hmm... > > While I know that not building a port is not nearly as "fun" KDE does offer > pre-built packages over at: > ftp://ftp.de.kde.org/pub/kde/unstable/distribution/2.0Beta5/tar/FreeBSD/ > > download them and pkg_add away :) > > -- > Trenton Schulz > twschulz@cord.edu -- Laurence Berland Intern, Flooz.com Northwestern '04 stuyman@confusion.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 20: 2:20 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtppop3.gte.net (smtppop3pub.gte.net [206.46.170.22]) by hub.freebsd.org (Postfix) with ESMTP id 4F23637B66C; Thu, 5 Oct 2000 20:02:12 -0700 (PDT) Received: from a7v (cable21-139.gte.net [24.96.50.139]) by smtppop3.gte.net with SMTP ; id VAA34337901 Thu, 5 Oct 2000 21:58:08 -0500 (CDT) Message-ID: <000a01c02f41$d22dcad0$0201a8c0@a7v> From: "Jay Roberts" To: , Subject: xfce Date: Thu, 5 Oct 2000 23:02:10 -0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0007_01C02F20.4A67CEF0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C02F20.4A67CEF0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I am writing to you at the suggestion of folks in #freebsdhelp IRC = channel. I have tried without success to run xfce after installing the = port .... When I installed theport all seemed to go well...=20 But on Launch I get error "/usr/libexec/ld-elf.so.1: Shared Object 'libgtk-1.2.so.5' not found any suggestions? ------=_NextPart_000_0007_01C02F20.4A67CEF0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable

I am writing to you at the suggestion = of folks in=20 #freebsdhelp IRC channel.  I have tried without success to run xfce = after=20 installing the port ....
 
 
When I installed theport all seemed to = go well...=20
But on Launch I get error
"/usr/libexec/ld-elf.so.1: Shared = Object=20 'libgtk-1.2.so.5' not found
 
any = suggestions?
------=_NextPart_000_0007_01C02F20.4A67CEF0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 20:15:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id 085C137B502 for ; Thu, 5 Oct 2000 20:15:53 -0700 (PDT) Received: from bonsai.knology.net (user-24-214-88-8.knology.net [24.214.88.8]) by mail.hiwaay.net (8.11.0/8.11.0) with ESMTP id e963Fl720035 for ; Thu, 5 Oct 2000 22:15:48 -0500 (CDT) Received: (from steve@localhost) by bonsai.knology.net (8.11.0/8.9.3) id e963Fg005624 for ports@freebsd.org; Thu, 5 Oct 2000 22:15:42 -0500 (CDT) (envelope-from steve) Date: Thu, 5 Oct 2000 22:15:41 -0500 From: Steve Price To: ports@freebsd.org Subject: 'make index' is borked Message-ID: <20001005221541.A1990@bonsai.knology.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From a CVSup just moments ago 'make index' seems to be broken. There are probably a number of ports affected but at least on my system a 'make describe' in ports/audio/extace bails with steve@bonsai(/usr/ports/audio/extace)$ make describe "/usr/ports/Mk/bsd.port.mk", line 2218: Inconsistent operator for pre-everything make: fatal errors encountered -- cannot continue I'll take a closer look at it soon but I've only had ~4 hours worth of sleep in the last 72 hours so I'm due for some rest right now. Many blessings to the person(s) that fixes it or shows me the error of my ways before I get up. :) -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 20:18:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from hub.lovett.com (hub.lovett.com [216.60.121.161]) by hub.freebsd.org (Postfix) with ESMTP id 4067D37B503 for ; Thu, 5 Oct 2000 20:18:47 -0700 (PDT) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 13hO1y-0004uh-00; Thu, 05 Oct 2000 22:18:42 -0500 Date: Thu, 5 Oct 2000 22:18:42 -0500 From: Ade Lovett To: Steve Price Cc: ports@freebsd.org Subject: Re: 'make index' is borked Message-ID: <20001005221842.I5318@FreeBSD.org> References: <20001005221541.A1990@bonsai.knology.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001005221541.A1990@bonsai.knology.net>; from sprice@hiwaay.net on Thu, Oct 05, 2000 at 10:15:41PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 05, 2000 at 10:15:41PM -0500, Steve Price wrote: > I'll take a closer look at it soon but I've only had ~4 hours > worth of sleep in the last 72 hours so I'm due for some rest > right now. Many blessings to the person(s) that fixes it or > shows me the error of my ways before I get up. :) Just go to sleep. The problem is known about, and reg and asami are working on it. I'm sure by the time you wake up, it'll be fixed. INDEX is for wimps anyway.. Real Porters[tm] glimpse(1) /usr/ports -aDe -- Ade Lovett, Austin, TX. ade@FreeBSD.org FreeBSD: The Power to Serve http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 20:38:19 2000 Delivered-To: freebsd-ports@freebsd.org Received: from citusc17.usc.edu (citusc17.usc.edu [128.125.38.177]) by hub.freebsd.org (Postfix) with ESMTP id 74C7337B502; Thu, 5 Oct 2000 20:38:18 -0700 (PDT) Received: (from kris@localhost) by citusc17.usc.edu (8.9.3/8.9.3) id UAA89741; Thu, 5 Oct 2000 20:39:03 -0700 (PDT) Date: Thu, 5 Oct 2000 20:39:03 -0700 From: Kris Kennaway To: "James E. Housley" Cc: Satoshi - Ports Wraith - Asami , Brandon Fosdick , ports@FreeBSD.org Subject: Re: Ports layout/Combine DESCR and COMMENT Results? Message-ID: <20001005203903.C89659@citusc17.usc.edu> References: <39DBA90F.71E94B5F@glue.umd.edu> <39DBD096.F3F84665@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39DBD096.F3F84665@FreeBSD.org>; from jeh@FreeBSD.org on Wed, Oct 04, 2000 at 08:51:34PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Oct 04, 2000 at 08:51:34PM -0400, James E. Housley wrote: > I just tried addport for a port with NEWLAYOUT= yes. I am running into > a problem that freefalls bsd.port.mk is not up to date enought. It > doesn't have your last set of changes. I find it useful to have a local ports/Mk directory and set PORTSDIR Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 21:27: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from bmah-freebsd-0.cisco.com (bmah-freebsd-0.cisco.com [171.70.84.42]) by hub.freebsd.org (Postfix) with ESMTP id EA4F237B502; Thu, 5 Oct 2000 21:26:57 -0700 (PDT) Received: (from bmah@localhost) by bmah-freebsd-0.cisco.com (8.11.0/8.11.0) id e964Qvx70814; Thu, 5 Oct 2000 21:26:57 -0700 (PDT) (envelope-from bmah) Message-Id: <200010060426.e964Qvx70814@bmah-freebsd-0.cisco.com> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: Maxim Sobolev Cc: bmah@FreeBSD.ORG, Neil Blakey-Milner , Akinori -Aki- MUSHA , freebsd-ports@FreeBSD.ORG, asami@FreeBSD.ORG Subject: Re: PROPOSAL: Use @comment PLIST variable to track where installed packages came from [Was: Enhancement of pkg_version's version comparison routine] In-Reply-To: <39DB17BB.12805565@FreeBSD.org> References: <86k8by6eis.wl@archon.local.idaemons.org> <20000927002401.A73341@mithrandr.moria.org> <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> <39D9EE01.7A880665@FreeBSD.org> <200010031657.e93Gvtg10718@bmah-freebsd-0.cisco.com> <39DB17BB.12805565@FreeBSD.org> Comments: In-reply-to Maxim Sobolev message dated "Wed, 04 Oct 2000 14:42:52 +0300." From: "Bruce A. Mah" Reply-To: bmah@FreeBSD.ORG X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_-994978211P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Thu, 05 Oct 2000 21:26:57 -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --==_Exmh_-994978211P Content-Type: text/plain; charset=us-ascii Hi Max-- OK, I've been playing with your patch (a very little bit). For what it's worth, I like it more now that I've hacked pkg_version to match. Here's the relevent modifications for pkg_version (against -STABLE, but should apply to -CURRENT also). It ought to be backward compatable with existing packages. Feedback is welcome (from everyone, not just Max). Cheers, Bruce. Index: pkg_version.1 =================================================================== RCS file: /cvsroot/src/usr.sbin/pkg_install/version/pkg_version.1,v retrieving revision 1.5.2.3 diff -c -r1.5.2.3 pkg_version.1 *** pkg_version.1 2000/09/20 08:53:55 1.5.2.3 --- pkg_version.1 2000/10/06 04:02:16 *************** *** 41,67 **** command is used to produce a report of non-base software packages installed using the .Xr pkg_add 1 ! command. Version numbers are compared against an ! index file, to see which packages might need updating. .Pp Each package name is printed, along with a one-character status flag: .Bl -tag -width indent .It Li = ! The installed version of the package matches the index. .It Li < ! The installed version of the package is older than the version listed ! in the index. .It Li > ! The installed version of the package is newer than listed in the ! index. .It Li ? The installed package does not appear in the index. This could be due to an out of date index or a package taken from a PR that has not yet been committed. .It Li * There are multiple versions of a particular software package ! installed or there are multiple versions of a package listed in ! the index file. Examples from the .Fx ports collection are the Tcl toolkit or the --- 41,95 ---- command is used to produce a report of non-base software packages installed using the .Xr pkg_add 1 ! command. .Pp + Each package's version number is checked against one of two sources to + see if that package may require updating. If the package contains + information about its origin in the + .Fx + ports tree, and a version number can be determined from the port's + .Pa Makefile , + then the version number from the + .Pa Makefile + will be used to determine whether the installed package is up-to-date + or requires updating. + .Pp + If no origin for a package can be found, or if the port's + .Pa Makefile + cannot be located, + .Nm + will search for the package in the ports collection index file + (typically + .Pa /usr/ports/INDEX ). + Any matching version number(s) there will be used to determine whether + the installed package is up-to-date or requires updating. + .Pp + Generally, using the version number from a port's + .Pa Makefile + will provide a more accurate result, since, unlike the index file, it + provides an unambiguous current version number, even when multiple + versions of a port exist in the ports collection. + Moreover, the ports collection index file is only updated at + intervals, meaning that it may not completely reflect the version + numbers of the software contained in the ports collection. + .Pp Each package name is printed, along with a one-character status flag: .Bl -tag -width indent .It Li = ! The installed version of the package is current. .It Li < ! The installed version of the package is older than the current version. .It Li > ! The installed version of the package is newer than the current version. ! This situation can arise with an out-of-date index file, or when ! testing new ports. .It Li ? The installed package does not appear in the index. This could be due to an out of date index or a package taken from a PR that has not yet been committed. .It Li * There are multiple versions of a particular software package ! listed in the index file. Examples from the .Fx ports collection are the Tcl toolkit or the *************** *** 80,93 **** Enable commands output. Commands output includes the commands you should type to update your installed packages to the latest versions in the ports system. .It Fl d Enable debugging output. .It Fl h Print help message. .It Fl l ! Limit the output to those packages whose status flag matches .Ar limchar . ! You may specify more than one character to match in .Ar limchar . Note that because some of the status flag characters are also special to the shell, it is best to quote --- 108,133 ---- Enable commands output. Commands output includes the commands you should type to update your installed packages to the latest versions in the ports system. + This feature does + .Bf Em + not + .Ef + constitute an automated packages updating system. + The output of this command + .Bf Em + must + .Ef + be edited, in order to avoid destroying dependencies between installed + packages. .It Fl d Enable debugging output. .It Fl h Print help message. .It Fl l ! Limit the output to those packages whose status flag matches the ! character(s) in .Ar limchar . ! More than one character can be specified in .Ar limchar . Note that because some of the status flag characters are also special to the shell, it is best to quote *************** *** 135,147 **** .Pp The command below generates a file of commands to run to update the installed files. ! It is .Bf Em not .Ef ! suggested that you run these commands automatically. ! Always review the ! suggestions, and then cut-and-paste (or retype) the commands you want to run. .Pp .Dl % pkg_version -c > do_update .Sh AUTHOR --- 175,190 ---- .Pp The command below generates a file of commands to run to update the installed files. ! These commands must .Bf Em not .Ef ! be run without suitable editing. ! They should be treated as suggestions, and may need to be reordered ! to account for dependencies between installed packages, or may need to ! be disregarded if multiple versions of an installed package can coexist. ! Blindly running the output of this command may leave a system in an ! unusable state. .Pp .Dl % pkg_version -c > do_update .Sh AUTHOR *************** *** 151,172 **** .An Dominic Mitchell Aq dom@palmerharvey.co.uk , .An Mark Ovens Aq marko@FreeBSD.org .Sh BUGS - There should be a better way of dealing with packages that - can have more than one installed version. .Pp Patch levels aren't handled very well (i.e. version numbers of the form 1.2p3 or 1.2pl3). .Pp ! Updates to packages ! that don't change the version number (e.g. small delta bugfixes in the ! package/port itself) aren't detected. ! .Pp ! Commands output doesn't know about dependencies between packages. ! For ! example, you might have two versions of Tcl installed because two other ! packages require the different versions. ! .Nm ! will suggest removing the out-of-date version. .Pp Commands output assumes you install new software using the ports system, rather than using --- 194,211 ---- .An Dominic Mitchell Aq dom@palmerharvey.co.uk , .An Mark Ovens Aq marko@FreeBSD.org .Sh BUGS .Pp Patch levels aren't handled very well (i.e. version numbers of the form 1.2p3 or 1.2pl3). .Pp ! The commands output feature is ! .Bf Em ! not ! .Ef ! an automated ports/packages updating system. ! It does not even attempt to handle dependencies between installed ! packages correctly, and can produce incorrect results if multiple ! versions of a package can coexist on a system. .Pp Commands output assumes you install new software using the ports system, rather than using Index: pkg_version.pl =================================================================== RCS file: /cvsroot/src/usr.sbin/pkg_install/version/pkg_version.pl,v retrieving revision 1.4.2.4 diff -c -r1.4.2.4 pkg_version.pl *** pkg_version.pl 2000/09/20 08:53:55 1.4.2.4 --- pkg_version.pl 2000/10/05 14:02:21 *************** *** 31,36 **** --- 31,37 ---- # $FreeBSD: src/usr.sbin/pkg_install/version/pkg_version.pl,v 1.4.2.4 2000/09/20 08:53:55 jkh Exp $ # + use Cwd; use Getopt::Std; # *************** *** 40,47 **** --- 41,51 ---- $CurrentPackagesCommand = '/usr/sbin/pkg_info -aI'; $CatProgram = "cat "; $FetchProgram = "fetch -o - "; + $OriginCommand = '/usr/sbin/pkg_info -qo'; + $GetPortVersionCommand = 'make -V PORTVERSION'; #$IndexFile = "ftp://ftp.freebsd.org/pub/FreeBSD/branches/-current/ports/INDEX"; + $PortsDirectory = '/usr/ports'; $IndexFile = '/usr/ports/INDEX'; $ShowCommandsFlag = 0; $DebugFlag = 0; *************** *** 235,241 **** } # ! # Slurp in files # if ($DebugFlag) { print STDERR "$CurrentPackagesCommand\n"; --- 239,245 ---- } # ! # Get the current list of installed packages # if ($DebugFlag) { print STDERR "$CurrentPackagesCommand\n"; *************** *** 246,262 **** ($packageString, $rest) = split; ($packageName, $packageFullversion) = &GetNameAndVersion($packageString); ! $currentPackages{$packageName}{'name'} = $packageName; ! if (defined $currentPackages{$packageName}{'fullversion'}) { ! $currentPackages{$packageName}{'fullversion'} .= "|" . $packageFullversion; ! } ! else { ! $currentPackages{$packageName}{'fullversion'} = $packageFullversion; ! } ! $currentPackages{$packageName}{'refcount'}++; } close CURRENT; if ($DebugFlag) { print STDERR "$IndexPackagesCommand\n"; } --- 250,297 ---- ($packageString, $rest) = split; ($packageName, $packageFullversion) = &GetNameAndVersion($packageString); ! $currentPackages{$packageString}{'name'} = $packageName; ! $currentPackages{$packageString}{'fullversion'} = $packageFullversion; } close CURRENT; + # + # Iterate over installed packages, get origin directory (if it + # exists) and PORTVERSION + # + $dir = cwd(); + foreach $packageString (sort keys %currentPackages) { + + open ORIGIN, "$OriginCommand $packageString|"; + $origin = ; + close ORIGIN; + + # If there is an origin variable for this package, then store it. + if ($origin ne "") { + chomp $origin; + + # Try to get the version out of the makefile. + # The chdir needs to be successful or our make -V invocation + # will fail. + chdir "$PortsDirectory/$origin" or next; + + open VERSION, "$GetPortVersionCommand|"; + $portversion = ; + close VERSION; + + if ($portversion ne "") { + chomp $portversion; + + $currentPackages{$packageString}{'origin'} = $origin; + $currentPackages{$packageString}{'portversion'} = $portversion; + } + } + } + chdir "$dir"; + + # + # Slurp in the index file + # if ($DebugFlag) { print STDERR "$IndexPackagesCommand\n"; } *************** *** 288,311 **** # to commas before we output anything so the reports look the # same as they did before. # ! foreach $packageName (sort keys %currentPackages) { $~ = "STDOUT_VERBOSE" if $VerboseFlag; $~ = "STDOUT_COMMANDS" if $ShowCommandsFlag; ! $packageNameVer = "$packageName-$currentPackages{$packageName}{'fullversion'}"; ! $packageNameVer =~ s/\|/,/g; ! if (defined $indexPackages{$packageName}{'fullversion'}) { ! $indexVersion = $indexPackages{$packageName}{'fullversion'}; ! $currentVersion = $currentPackages{$packageName}{'fullversion'}; $indexRefcount = $indexPackages{$packageName}{'refcount'}; ! $currentRefcount = $currentPackages{$packageName}{'refcount'}; ! $packagePath = $indexPackages{$packageName}{'path'}; ! ! if (($indexRefcount > 1) || ($currentRefcount > 1)) { $versionCode = "*"; $Comment = "multiple versions (index has $indexVersion)"; $Comment =~ s/\|/,/g; --- 323,373 ---- # to commas before we output anything so the reports look the # same as they did before. # ! foreach $packageString (sort keys %currentPackages) { $~ = "STDOUT_VERBOSE" if $VerboseFlag; $~ = "STDOUT_COMMANDS" if $ShowCommandsFlag; ! $packageNameVer = $packageString; ! $packageName = $currentPackages{$packageString}{'name'}; ! $currentVersion = $currentPackages{$packageString}{'fullversion'}; ! if (defined $currentPackages{$packageString}{'portversion'}) { ! $portVersion = $currentPackages{$packageString}{'portversion'}; ! ! $portPath = "$PortsDirectory/$currentPackages{$packageString}{'origin'}"; ! ! # Do the comparison ! $rc = &CompareVersions($currentVersion, $portVersion); ! ! if ($rc == 0) { ! next if $ShowCommandsFlag; ! $versionCode = "="; ! $Comment = "up-to-date with port"; ! } ! elsif ($rc < 0) { ! $versionCode = "<"; ! $Comment = "needs updating (port has $portVersion)"; ! } ! elsif ($rc > 0) { ! next if $ShowCommandsFlag; ! $versionCode = ">"; ! $Comment = "succeeds port (port has $portVersion)"; ! } ! else { ! $versionCode = "!"; ! $Comment = "Comparison failed"; ! } ! } + elsif (defined $indexPackages{$packageName}{'fullversion'}) { + + $indexVersion = $indexPackages{$packageName}{'fullversion'}; $indexRefcount = $indexPackages{$packageName}{'refcount'}; ! ! $portPath = $indexPackages{$packageName}{'path'}; ! if ($indexRefcount > 1) { $versionCode = "*"; $Comment = "multiple versions (index has $indexVersion)"; $Comment =~ s/\|/,/g; *************** *** 314,326 **** # Do the comparison $rc = ! &CompareVersions($currentPackages{$packageName}{'fullversion'}, ! $indexPackages{$packageName}{'fullversion'}); if ($rc == 0) { next if $ShowCommandsFlag; $versionCode = "="; ! $Comment = "up-to-date"; } elsif ($rc < 0) { $versionCode = "<"; --- 376,387 ---- # Do the comparison $rc = ! &CompareVersions($currentVersion, $indexVersion); if ($rc == 0) { next if $ShowCommandsFlag; $versionCode = "="; ! $Comment = "up-to-date with index"; } elsif ($rc < 0) { $versionCode = "<"; *************** *** 383,389 **** @< $CommentChar cd @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< ! $packagePath make && pkg_delete -f @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< $packageNameVer make install --- 444,450 ---- @< $CommentChar cd @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< ! $portPath make && pkg_delete -f @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< $packageNameVer make install --==_Exmh_-994978211P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.3 (FreeBSD) Comment: Exmh version 2.2 06/23/2000 iD8DBQE53VSR2MoxcVugUsMRArDlAJ0XXJzvd6KjWwGtMWC+goJumO6SngCgl1Se eX7DR2iL0s6PKPoXAsbptKw= =ad28 -----END PGP SIGNATURE----- --==_Exmh_-994978211P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Oct 5 21:59:39 2000 Delivered-To: freebsd-ports@freebsd.org Received: from 200-227-202-153-as.acessonet.com.br (200-227-202-153-as.acessonet.com.br [200.227.202.153]) by hub.freebsd.org (Postfix) with ESMTP id D40CB37B503 for ; Thu, 5 Oct 2000 21:59:34 -0700 (PDT) Received: (qmail 18420 invoked by uid 1001); 6 Oct 2000 04:59:19 -0000 From: "Mario Sergio Fujikawa Ferreira" Date: Fri, 6 Oct 2000 02:58:57 -0200 To: freebsd-ports@freebsd.org Subject: WANT_GTK and some doubts Message-ID: <20001006025857.A17954@Fedaykin.here> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I was trying to update a port to use the new (WANT|HAVE)_GTK before submitting it, but I am having some problems. I had the following: -------- # only needed to enable the GTK+ debugger .if defined(WITH_GTK) LIB_DEPENDS+= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 GTK_CONFIG= ${X11BASE}/bin/gtk12-config GTK_CFLAGS!= ${GTK_CONFIG} --cflags .endif .include post-configure: .if defined(WITH_GTK) @${PERL} -pi \ -e 's|^#(USE_GTK=1.*)|\1|;' \ -e 's|^(CFLAGS.*)|\1 ${GTK_CFLAGS}|;' \ -e 's|-lgtk\s+-lgdk|-lgtk12 -lgdk12|' \ ${WRKSRC}/Makefile .endif -------- Which I changed to: -------- WANT_GTK= yes .if defined(WITH_GTK) GTK_CFLAGS!= ${GTK_CONFIG} --cflags .endif .include post-configure: .if defined(WITH_GTK) @${PERL} -pi \ -e 's|^#(USE_GTK=1.*)|\1|;' \ -e 's|^(CFLAGS.*)|\1 ${GTK_CFLAGS}|;' \ -e 's|-lgtk\s+-lgdk|-lgtk12 -lgdk12|' \ ${WRKSRC}/Makefile .endif -------- Then, I get: "Makefile", line 26: warning: " --cflags" returned non-zero status --cflags: not found Suggestions? I tried HAVE_GTK too, broke. -- Mario S. F. Ferreira - UnB - Brazil - "I guess this is a signature." lioux at ( freebsd dot org | linf dot unb dot br ) flames to beloved devnull@someotherworldbeloworabove.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 0:21: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id D48B237B503 for ; Fri, 6 Oct 2000 00:21:04 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id AAA03500; Fri, 6 Oct 2000 00:20:54 -0700 (PDT) (envelope-from obrien) Date: Fri, 6 Oct 2000 00:20:54 -0700 From: "David O'Brien" To: Michael Haro Cc: ports@freebsd.org Subject: Re: HEADS UP: ports layout restructuring happening this weekend Message-ID: <20001006002054.B3444@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <200010052255.e95MtOa52663@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010052255.e95MtOa52663@silvia.hip.berkeley.edu>; from asami@freebsd.org on Thu, Oct 05, 2000 at 03:55:24PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 05, 2000 at 03:55:24PM -0700, Satoshi Asami wrote: > As those of you who have been following the ports list may know, we > are changing the ports skeletons' layout in an effort to reduce the > number of small directories and significantly speed up operation on > the ports tree. This should especially help operations such as "CVS > update", and will also reduce the number of i-nodes required to keep > the whole tree around. Mike, If at all possible, can you update ``portlint'' ASAP to agree with this change? -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 0:45: 4 2000 Delivered-To: freebsd-ports@freebsd.org Received: from citusc17.usc.edu (citusc17.usc.edu [128.125.38.177]) by hub.freebsd.org (Postfix) with ESMTP id 5E38537B503 for ; Fri, 6 Oct 2000 00:45:02 -0700 (PDT) Received: (from kris@localhost) by citusc17.usc.edu (8.9.3/8.9.3) id AAA90905; Fri, 6 Oct 2000 00:45:39 -0700 (PDT) Date: Fri, 6 Oct 2000 00:45:38 -0700 From: Kris Kennaway To: Roger Hardiman Cc: ports@freebsd.org Subject: Re: Guidelines for new port version variables Message-ID: <20001006004538.A90887@citusc17.usc.edu> References: <39DD7E0E.A45E87BB@cs.strath.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39DD7E0E.A45E87BB@cs.strath.ac.uk>; from roger@cs.strath.ac.uk on Fri, Oct 06, 2000 at 08:23:58AM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Oct 06, 2000 at 08:23:58AM +0100, Roger Hardiman wrote: > Kris, > > > I've got a question on PORTVERSION, REVISION and EPOCH > > I've read the guidelines you emailed out recently. > Of special interest is making sure PORTVERSION increases > so we can check for upgrades. > > I'm stuck with one problem though. > I have a port which is a beta release for version 1.1 of OpenH323 > Tar file for source is openh323_1.1.beta3.tgz > PORTVERSION=1.1b3 > > > The official version 1.1 version has just been released > Tar file for source is openh323_1.1.tgz > and I was going to have a PORTVERSION=1.1 > > But is "1.1" greater than or less than "1.1b3" > > If it is less than 1.1b3, I need PORTEPOCH, > > So, do I need an PORTEPOCH in this case or not? Good question - I don't know off-hand how the versions are sorted. Kris > > Thanks > Roger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 1:43:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp6.mindspring.com (smtp6.mindspring.com [207.69.200.110]) by hub.freebsd.org (Postfix) with ESMTP id 7300237B66C; Fri, 6 Oct 2000 01:43:14 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca42-27.ix.netcom.com [209.111.212.27]) by smtp6.mindspring.com (8.9.3/8.8.5) with ESMTP id EAA04952; Fri, 6 Oct 2000 04:43:11 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e968h7V56360; Fri, 6 Oct 2000 01:43:07 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Date: Fri, 6 Oct 2000 01:43:07 -0700 (PDT) Message-Id: <200010060843.e968h7V56360@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: committers@freebsd.org Cc: ports@freebsd.org, ps@freebsd.org Subject: onigiri renamed to bento From: asami@freebsd.org (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi folks, Bill got the setups working and onigiri has been successfully renamed to bento. All committers can log in to the new bento, the package build logs are back on bento, etc. The old bento has been renamed onigiri. It is currently down (it doesn't have remote power yet so we need someone to get to it) but it should come up later today. The old bento will be around for at least a while. Note that user files aren't going to be copied from onigiri (old bento) to the new bento. In particular, if you have something in /b that you need on the new bento, please send me mail so I can create a directory for you. If you need sudo access, please send mail too. By the way, we swapped the ssh host keys so you won't see warnings from ssh. Thanks Paul, Bill, Peter and Yahoo! for making this all possible! Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 2:20: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E1B837B66E for ; Fri, 6 Oct 2000 02:20:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA32027; Fri, 6 Oct 2000 02:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 8BCA637B66C; Fri, 6 Oct 2000 02:16:35 -0700 (PDT) Message-Id: <20001006091635.8BCA637B66C@hub.freebsd.org> Date: Fri, 6 Oct 2000 02:16:35 -0700 (PDT) From: wigren@home.se To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21780: audio/vorbis should not depend on xmms! Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21780 >Category: ports >Synopsis: audio/vorbis should not depend on xmms! >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 06 02:20:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Per Wigren >Release: 4.1.1-STABLE >Organization: >Environment: >Description: "make install" in /usr/ports/audio/vorbis forces me to install xmms, gtk+, glib, XFree86 etc, when all I want are the CLI-tools oggenc and ogg123. >How-To-Repeat: >Fix: make the vorbis xmms-plugin a separate port maybe? Or check for xmms and only compile the plugin if it is available. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 3:24:45 2000 Delivered-To: freebsd-ports@freebsd.org Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id 7A94A37B502; Fri, 6 Oct 2000 03:24:41 -0700 (PDT) Received: from FreeBSD.org (baby.int.thehousleys.net [192.168.0.24]) by thehousleys.net (8.11.0/8.11.0) with ESMTP id e96AOXq20641; Fri, 6 Oct 2000 06:24:33 -0400 (EDT) (envelope-from jeh@FreeBSD.org) Message-ID: <39DDA860.FF69FD25@FreeBSD.org> Date: Fri, 06 Oct 2000 06:24:32 -0400 From: "James E. Housley" Organization: FreeBSD X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: obrien@FreeBSD.org Cc: Michael Haro , ports@FreeBSD.org Subject: Re: HEADS UP: ports layout restructuring happening this weekend References: <200010052255.e95MtOa52663@silvia.hip.berkeley.edu> <20001006002054.B3444@dragon.nuxi.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org David O'Brien wrote: > > On Thu, Oct 05, 2000 at 03:55:24PM -0700, Satoshi Asami wrote: > > As those of you who have been following the ports list may know, we > > are changing the ports skeletons' layout in an effort to reduce the > > number of small directories and significantly speed up operation on > > the ports tree. This should especially help operations such as "CVS > > update", and will also reduce the number of i-nodes required to keep > > the whole tree around. > > Mike, > > If at all possible, can you update ``portlint'' ASAP to agree with this > change? I tested portlint Wednesday on a port and it works fine. These names are all set throught variables in bsd.port.mk and portlint automagically works. databases/mytop is already committed with NEWLAYOUT=true if you want to run portlint on it. This does not guarentee that for some of the more complex/bizzare ports it won't complain. But it does work for standard "simple" ports. Jim -- James E. Housley Hi! I'm a .signature virus! Copy me in your ~/.signature to help me spread! <- Save this lifeform ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 3:33:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 8770E37B66F; Fri, 6 Oct 2000 03:33:24 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id DAA12649; Fri, 6 Oct 2000 03:33:20 -0700 (PDT) (envelope-from obrien) Date: Fri, 6 Oct 2000 03:33:19 -0700 From: "David O'Brien" To: asami@freebsd.org Cc: ports@freebsd.org Subject: Re: HEADS UP: ports layout restructuring happening this weekend Message-ID: <20001006033319.A12617@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <200010052255.e95MtOa52663@silvia.hip.berkeley.edu> <20001006002054.B3444@dragon.nuxi.com> <39DDA860.FF69FD25@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39DDA860.FF69FD25@FreeBSD.org>; from jeh@FreeBSD.org on Fri, Oct 06, 2000 at 06:24:32AM -0400 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Oct 06, 2000 at 06:24:32AM -0400, James E. Housley wrote: > databases/mytop is already committed with NEWLAYOUT=true if you want to > run portlint on it. Egad!! We are going to add "NEWLAYOUT=true" to all the Makefiles??? (if so for how long is "NEWLAYOUT" going to exist? If forever, I'd suggest LAYOUT=2 instead). I thought Mk/bsd.port.mk would DTRT with ".exists()" statements. I thought very few ports would need Makefile changes. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 3:41:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 9EF5E37B503; Fri, 6 Oct 2000 03:41:12 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id DAA12729; Fri, 6 Oct 2000 03:41:12 -0700 (PDT) (envelope-from obrien) Date: Fri, 6 Oct 2000 03:41:12 -0700 From: "David O'Brien" To: Satoshi - Ports Wraith - Asami Cc: ports@freebsd.org Subject: Re: RFC: Ports layout reorganization (Re: ports tree idea: Combine DESCR and COMMENT) Message-ID: <20001006034111.A12656@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <39CD200B.A10214EA@glue.umd.edu> <20000923233215.A45139@mithrandr.moria.org> <39CD295E.453FF278@glue.umd.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from asami@freebsd.org on Fri, Sep 29, 2000 at 02:03:37AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Sep 29, 2000 at 02:03:37AM -0700, Satoshi - Ports Wraith - Asami wrote: > One reason why I'm not very thrilled about combining COMMENT and DESCR > is that it will require a lot of manual work to merge them -- you > can't just "cat COMMENT DESCR > DESCR2; mv DESCR2 DESCR; cvs remove -f > COMMENT; cvs commit". People actually need to read the DESCR files > and merge the COMMENT lines in as appropriate. I don't understand why "cat COMMENT DESCR > DESCR2; mv DESCR2 DESCR" won't work. -- -- David (obrien@FreeBSD.org) Gnu is Not Unix / Linux Is Not UniX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 3:46:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id 3450B37B66D; Fri, 6 Oct 2000 03:46:16 -0700 (PDT) Received: from FreeBSD.org (baby.int.thehousleys.net [192.168.0.24]) by thehousleys.net (8.11.0/8.11.0) with ESMTP id e96AkFq20764; Fri, 6 Oct 2000 06:46:15 -0400 (EDT) (envelope-from jeh@FreeBSD.org) Message-ID: <39DDAD77.9D5C4765@FreeBSD.org> Date: Fri, 06 Oct 2000 06:46:15 -0400 From: "James E. Housley" Organization: FreeBSD X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: obrien@FreeBSD.org Cc: asami@FreeBSD.org, ports@FreeBSD.org Subject: Re: HEADS UP: ports layout restructuring happening this weekend References: <200010052255.e95MtOa52663@silvia.hip.berkeley.edu> <20001006002054.B3444@dragon.nuxi.com> <39DDA860.FF69FD25@FreeBSD.org> <20001006033319.A12617@dragon.nuxi.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org David O'Brien wrote: > > On Fri, Oct 06, 2000 at 06:24:32AM -0400, James E. Housley wrote: > > databases/mytop is already committed with NEWLAYOUT=true if you want to > > run portlint on it. > > Egad!! We are going to add "NEWLAYOUT=true" to all the Makefiles??? > (if so for how long is "NEWLAYOUT" going to exist? If forever, I'd > suggest LAYOUT=2 instead). > Nope. This weekend that will be the default, Satoshi - Ports Wraith - Asami, is going to convert all ports to the new layout and make it the standard in bsd.port.mk. NEWLAYOUT=yes/true (whatever) allows the port to use the new layout before this weekend. The name has been committed for about a week, so it is a little late to change it. But it should dissapear this weekend. Jim -- James E. Housley Hi! I'm a .signature virus! Copy me in your ~/.signature to help me spread! <- Save this lifeform ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 3:52:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 1643E37B502; Fri, 6 Oct 2000 03:52:11 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id DAA12802; Fri, 6 Oct 2000 03:52:10 -0700 (PDT) (envelope-from obrien) Date: Fri, 6 Oct 2000 03:52:10 -0700 From: "David O'Brien" To: "James E. Housley" Cc: asami@FreeBSD.org, ports@FreeBSD.org Subject: Re: HEADS UP: ports layout restructuring happening this weekend Message-ID: <20001006035210.A12784@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200010052255.e95MtOa52663@silvia.hip.berkeley.edu> <20001006002054.B3444@dragon.nuxi.com> <39DDA860.FF69FD25@FreeBSD.org> <20001006033319.A12617@dragon.nuxi.com> <39DDAD77.9D5C4765@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39DDAD77.9D5C4765@FreeBSD.org>; from jeh@FreeBSD.org on Fri, Oct 06, 2000 at 06:46:15AM -0400 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Oct 06, 2000 at 06:46:15AM -0400, James E. Housley wrote: > NEWLAYOUT=yes/true (whatever) allows the port to use the new layout > before this weekend. The name has been committed for about a week, so > it is a little late to change it. But it should dissapear this > weekend. Cool. I just re-read Satoshi's email with the diff and thought that to be the case, but wanted to double check. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 3:55:38 2000 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 4CE1237B66C; Fri, 6 Oct 2000 03:55:36 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id DAA12831; Fri, 6 Oct 2000 03:55:35 -0700 (PDT) (envelope-from obrien) Date: Fri, 6 Oct 2000 03:55:35 -0700 From: "David O'Brien" To: Satoshi Asami Cc: ports@freebsd.org Subject: Re: RFC: RESTRICTED_FILES Message-ID: <20001006035535.B12656@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <200009291326.e8TDQle87752@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200009291326.e8TDQle87752@silvia.hip.berkeley.edu>; from asami@freebsd.org on Fri, Sep 29, 2000 at 06:26:47AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Sep 29, 2000 at 06:26:47AM -0700, Satoshi Asami wrote: > First, a little background. The "clean-restricted-list" and > "clean-for-cdrom-list" are used to print out shell commands to remove > packages and distfiles/patchfiles for RESTRICTED or NO_CDROM ports, > respectively. These are used in the automated package build process > (which is used for both FTP and CDROMs). The output looks like this: For one of my ports I need a NO_FTP, but YES_CDROM for the distfile. The package should be YES_FTP and YES_CDROM. IF things are being reworked, can that case be taken into consideration? -- -- David (obrien@FreeBSD.org) Gnu is Not Unix / Linux Is Not UniX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 4:30:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from babylon.merseine.nu (c418236-a.clmba1.mo.home.com [24.12.203.134]) by hub.freebsd.org (Postfix) with ESMTP id DCDA037B502 for ; Fri, 6 Oct 2000 04:30:19 -0700 (PDT) Received: (from ishmael@localhost) by babylon.merseine.nu (8.11.0/8.11.0) id e96BVEP60389 for ports@FreeBSD.ORG; Fri, 6 Oct 2000 06:31:14 -0500 (CDT) (envelope-from ishmael) Date: Fri, 6 Oct 2000 06:31:14 -0500 From: Jeremy Norris To: ports@FreeBSD.ORG Subject: Confusion about USE_GNOME Message-ID: <20001006063114.A51269@babylon.merseine.nu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm curious, and your more than welcome to tell me I'm wrong, but when I try to build the latest galeon port, it says that it depends on the shared library libcapplet.so.4 and libpanel_applet.so.4 However, performing ldd on the galeon-bin binary reveals that it does not link either library nor does it link any library from the gnomecore or gnomecontrolcenter ports. Since galeon-bin is the only binary in the galeon port, nothing else could depend on either of these shared libraries. So why does the galeon port depend on gnomecore and gnomecontrolcenter? Jeremy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 4:34:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 7737B37B502 for ; Fri, 6 Oct 2000 04:34:28 -0700 (PDT) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id OAA01710; Fri, 6 Oct 2000 14:34:09 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e96BY6J05256; Fri, 6 Oct 2000 14:34:06 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39DDB989.13CF5E6D@FreeBSD.org> Date: Fri, 06 Oct 2000 14:37:45 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Jeremy Norris Cc: ports@FreeBSD.org Subject: Re: Confusion about USE_GNOME References: <20001006063114.A51269@babylon.merseine.nu> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jeremy Norris wrote: > I'm curious, and your more than welcome to tell me I'm wrong, but when I try to > build the latest galeon port, it says that it depends on the shared library > libcapplet.so.4 and libpanel_applet.so.4 > However, performing ldd on the galeon-bin binary reveals that it does not link > either library nor does it link any library from the gnomecore or > gnomecontrolcenter ports. > Since galeon-bin is the only binary in the galeon port, nothing else could > depend on either of these shared libraries. So why does the galeon port depend > on gnomecore and gnomecontrolcenter? To ensure correct removal order of shared GNOME directories. (yes, I know it is ugly, but we have no better alternative yet, at least until custom mtree files would be introduced). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 4:40:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 449AA37B66C for ; Fri, 6 Oct 2000 04:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA86151; Fri, 6 Oct 2000 04:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.inka.de (quechua.inka.de [212.227.14.2]) by hub.freebsd.org (Postfix) with ESMTP id 9AA9337B503 for ; Fri, 6 Oct 2000 04:30:48 -0700 (PDT) Received: from ganerc.mips.inka.de (uucp@) by mail.inka.de with local-bsmtp id 13hViA-0000PY-00; Fri, 6 Oct 2000 13:30:46 +0200 Received: from kemoauc.mips.inka.de (uucp@localhost) by ganerc.mips.inka.de (8.11.0/8.11.0) with bsmtp id e96Aiph60820 for FreeBSD-gnats-submit@freebsd.org; Fri, 6 Oct 2000 12:44:51 +0200 (CEST) (envelope-from naddy@mips.inka.de) Received: (from naddy@localhost) by kemoauc.mips.inka.de (8.11.0/8.11.0) id e96A3CJ71338; Fri, 6 Oct 2000 12:03:12 +0200 (CEST) (envelope-from naddy) Message-Id: <200010061003.e96A3CJ71338@kemoauc.mips.inka.de> Date: Fri, 6 Oct 2000 12:03:12 +0200 (CEST) From: Christian Weisgerber Reply-To: naddy@mips.inka.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21781: new port: mail/bsmtp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21781 >Category: ports >Synopsis: new port: mail/bsmtp >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 06 04:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Christian Weisgerber >Release: FreeBSD 5.0-CURRENT alpha >Organization: >Environment: NEWLAYOUT >Description: This package supplies batch SMTP support for sendmail, both incoming and outgoing. Batch SMTP can be used to batch and compress mail messages for UUCP links, which is faster and doesn't suffer from the address limitations of rmail. Bsmtp's version of batch SMTP is fully compatible with smail. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # bsmtp # bsmtp/distinfo # bsmtp/files # bsmtp/files/patch-bsmtp_c_in # bsmtp/files/config.sed # bsmtp/files/patch-Makefile_in # bsmtp/Makefile # bsmtp/pkg-comment # bsmtp/pkg-descr # bsmtp/pkg-plist # echo c - bsmtp mkdir -p bsmtp > /dev/null 2>&1 echo x - bsmtp/distinfo sed 's/^X//' >bsmtp/distinfo << 'END-of-bsmtp/distinfo' XMD5 (bsmtp-1.01.tar.gz) = 85aee02dfcb1c65646ebdb2fce7d8dbe END-of-bsmtp/distinfo echo c - bsmtp/files mkdir -p bsmtp/files > /dev/null 2>&1 echo x - bsmtp/files/patch-bsmtp_c_in sed 's/^X//' >bsmtp/files/patch-bsmtp_c_in << 'END-of-bsmtp/files/patch-bsmtp_c_in' X--- bsmtp.c.in.orig Sun May 16 11:24:08 1999 X+++ bsmtp.c.in Thu Oct 5 21:41:25 2000 X@@ -167,7 +167,10 @@ X } X #endif X fseek (file, 0, SEEK_END); X- fprintf (file, "MAIL FROM:<%s>\n", from); X+ if (*from == '<') X+ fprintf (file, "MAIL FROM:%s\n", from); X+ else X+ fprintf (file, "MAIL FROM:<%s>\n", from); X while (argc) { X fprintf (file, "RCPT TO:<%s>\n", argv[0]); X argv++; argc--; END-of-bsmtp/files/patch-bsmtp_c_in echo x - bsmtp/files/config.sed sed 's/^X//' >bsmtp/files/config.sed << 'END-of-bsmtp/files/config.sed' Xs,@CC@,%%CC%%, Xs,@INSTALL@,/usr/bin/install, Xs,@SH@,/bin/sh, Xs,@GZIP@,/usr/bin/gzip, Xs,@PERL@,/usr/bin/perl, Xs,@COMPRESS@,/usr/bin/compress, Xs,@UUX@,/usr/bin/uux, Xs,@SENDMAIL@,/usr/sbin/sendmail, Xs,@CFLAGS@,%%CFLAGS%%, Xs,@PRIVBINDIR@,%%PREFIX%%/libexec, Xs,@PUBBINDIR@,%%PREFIX%%/bin, Xs,@MAILERDIR@,%%PREFIX%%/share/sendmail, Xs,@QUEUEDIR@,/var/spool/bsmtp, Xs,@DAEMONUSER@,uucp, Xs,@DAEMONGID@,66, Xs,@DAEMONUID@,66, Xs,@INPROTO@,bsmtp, Xs,@LOCALHOSTNAME@,`hostname`, Xs,@DOMAINSUFFIX@,none, Xs,@SENDMAILVERS@,8.9, Xs,@INSTALLMAILER@,true, Xs,@MAILERVERSION@,8.9, Xs,@FLOCK@,true, Xs,@LOCKDEFINE@,-DUSE_FLOCK, Xs,@BATCHER@,batcher.new, END-of-bsmtp/files/config.sed echo x - bsmtp/files/patch-Makefile_in sed 's/^X//' >bsmtp/files/patch-Makefile_in << 'END-of-bsmtp/files/patch-Makefile_in' X--- Makefile.in.orig Sun May 16 11:24:08 1999 X+++ Makefile.in Thu Oct 5 23:44:15 2000 X@@ -30,8 +30,8 @@ X #oldsendmail=@OLDSENDMAIL@ # not used anymore X installmailer=@INSTALLMAILER@ X mailerversion=@MAILERVERSION@ X-bingrp = bin X-binusr = bin X+bingrp = wheel X+binusr = root X privbin = @PRIVBINDIR@ X pubbin = @PUBBINDIR@ X mailerdir = @MAILERDIR@ X@@ -88,6 +88,14 @@ X chown $(binusr) $(privbin) ; \ X chgrp $(bingrp) $(privbin) ; \ X chmod 755 $(privbin) ; \ X+ fi X+ @if [ ! -d $(mailerdir) ]; then \ X+ echo Making $(mailerdir) ; \ X+ set -x ; \ X+ mkdir -p $(mailerdir) || mkdir $(mailerdir) || exit 0 ; \ X+ chown $(binusr) $(mailerdir) ; \ X+ chgrp $(bingrp) $(mailerdir) ; \ X+ chmod 755 $(mailerdir) ; \ X fi X @if [ ! -d $(queuedir) ]; then \ X echo Making $(queuedir) ; \ END-of-bsmtp/files/patch-Makefile_in echo x - bsmtp/Makefile sed 's/^X//' >bsmtp/Makefile << 'END-of-bsmtp/Makefile' X# New ports collection makefile for: bsmtp X# Date created: 2000-10-05 X# Whom: Christian Weisgerber X# X# $FreeBSD$ X XPORTNAME= bsmtp XPORTVERSION= 1.01 XCATEGORIES= mail XMASTER_SITES= http://www.stud.uni-karlsruhe.de/~uk1o/bsmtp/ X XMAINTAINER= naddy@mips.inka.de X XHAS_CONFIGURE= yes XCONFIGURE_ARGS= --redo X Xpre-configure: X @${SED} -e 's,%%CC%%,${CC},' \ X -e 's,%%CFLAGS%%,${CFLAGS},' \ X -e 's,%%PREFIX%%,${PREFIX},' \ X ${FILESDIR}/config.sed >${WRKSRC}/config.sed X Xpost-install: X ${MKDIR} ${PREFIX}/share/doc/bsmtp X ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/bsmtp/ X X.include END-of-bsmtp/Makefile echo x - bsmtp/pkg-comment sed 's/^X//' >bsmtp/pkg-comment << 'END-of-bsmtp/pkg-comment' XBatch SMTP support for sendmail, incoming and outgoing END-of-bsmtp/pkg-comment echo x - bsmtp/pkg-descr sed 's/^X//' >bsmtp/pkg-descr << 'END-of-bsmtp/pkg-descr' XThis package supplies batch SMTP support for sendmail, both incoming Xand outgoing. Batch SMTP can be used to batch and compress mail Xmessages for UUCP links, which is faster and doesn't suffer from Xthe address limitations of rmail. Bsmtp's version of batch SMTP Xis fully compatible with smail. X XWWW: http://www.stud.uni-karlsruhe.de/~uk1o/bsmtp/ END-of-bsmtp/pkg-descr echo x - bsmtp/pkg-plist sed 's/^X//' >bsmtp/pkg-plist << 'END-of-bsmtp/pkg-plist' Xbin/_bqueue Xbin/bqueue Xbin/bsmtp Xbin/cbsmtp Xbin/crsmtp Xbin/rcsmtp Xbin/rgsmtp Xbin/rsmtp Xlibexec/batcher Xlibexec/bsmtp Xlibexec/rsmtp Xlibexec/transmitter.c-cbsmtp Xlibexec/transmitter.c-rcsmtp Xlibexec/transmitter.g-rcsmtp Xlibexec/transmitter.g-rgsmtp Xlibexec/transmitter.n-rsmtp Xshare/doc/bsmtp/README X@dirrm share/doc/bsmtp Xshare/sendmail/bsmtp.m4 X@exec mkdir -pm 770 /var/spool/bsmtp; chown uucp:uucp /var/spool/bsmtp X@unexec rmdir /var/spool/bsmtp || true END-of-bsmtp/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 6: 8:28 2000 Delivered-To: freebsd-ports@freebsd.org Received: from synology.com (dns1.synology.com [202.173.37.131]) by hub.freebsd.org (Postfix) with ESMTP id 8372737B502; Fri, 6 Oct 2000 06:08:25 -0700 (PDT) Received: from jamescdev ([192.168.1.213]) by synology.com (8.9.3/8.9.3) with SMTP id VAA09571; Fri, 6 Oct 2000 21:09:38 +0800 Message-ID: <017001c02f96$d0c5fcd0$d501a8c0@jamescdev> From: "jamesc" To: Cc: Subject: FreeBSD Port: mars_nwe-0.99.b19 Date: Fri, 6 Oct 2000 21:10:35 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_016D_01C02FD9.DE7FCCA0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_016D_01C02FD9.DE7FCCA0 Content-Type: text/plain; charset="big5" Content-Transfer-Encoding: quoted-printable How to maintain the attribute and trustee of mars_nwe? What do the hierarchical directories mean (e.g. = /var/nwserv/attrib/27400/0/1/5a/66)? Thanks, James ------=_NextPart_000_016D_01C02FD9.DE7FCCA0 Content-Type: text/html; charset="big5" Content-Transfer-Encoding: quoted-printable
How to maintain the attribute and trustee of=20 mars_nwe?
What do the hierarchical directories mean (e.g.=20 /var/nwserv/attrib/27400/0/1/5a/66)?
 
Thanks,
James
------=_NextPart_000_016D_01C02FD9.DE7FCCA0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 6:46:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F30237B503; Fri, 6 Oct 2000 06:46:44 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA33648; Fri, 6 Oct 2000 06:46:44 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Fri, 6 Oct 2000 06:46:44 -0700 (PDT) From: Message-Id: <200010061346.GAA33648@freefall.freebsd.org> To: chapmanb@arches.uga.edu, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21679: New port: biology/biojava Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: biology/biojava State-Changed-From-To: open->closed State-Changed-By: jeh State-Changed-When: Fri Oct 6 06:46:13 PDT 2000 State-Changed-Why: duplicate of ports/21678 http://www.freebsd.org/cgi/query-pr.cgi?pr=21679 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 7:49:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6533237B503; Fri, 6 Oct 2000 07:49:15 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA58021; Fri, 6 Oct 2000 07:49:15 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Fri, 6 Oct 2000 07:49:15 -0700 (PDT) From: Message-Id: <200010061449.HAA58021@freefall.freebsd.org> To: jeh@FreeBSD.org, freebsd-ports@FreeBSD.org, jeh@FreeBSD.org Subject: Re: ports/21585: New port: biology/nab Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: biology/nab Responsible-Changed-From-To: freebsd-ports->jeh Responsible-Changed-By: jeh Responsible-Changed-When: Fri Oct 6 07:48:52 PDT 2000 Responsible-Changed-Why: I'll handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=21585 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 8:30:24 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6640B37B66C for ; Fri, 6 Oct 2000 08:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA74939; Fri, 6 Oct 2000 08:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from privatecube.privatelabs.com (privatecube.privatelabs.com [198.143.31.30]) by hub.freebsd.org (Postfix) with ESMTP id C1A3037B502; Fri, 6 Oct 2000 08:25:19 -0700 (PDT) Received: from monsta.privatelabs.com (monsta.plten [10.0.0.6]) by privatecube.privatelabs.com (8.9.3/8.9.2) with ESMTP id KAA04319; Fri, 6 Oct 2000 10:44:37 -0400 Received: (from root@localhost) by monsta.privatelabs.com (8.11.0/8.11.0) id e96FOs775856; Fri, 6 Oct 2000 11:24:54 -0400 (EDT) (envelope-from mi) Message-Id: <200010061524.e96FOs775856@monsta.privatelabs.com> Date: Fri, 6 Oct 2000 11:24:54 -0400 (EDT) From: Mikhail Teterin Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@freebsd.org Cc: scrappy@freebsd.org, andreas@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21784: further improving the PostgreSQL port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21784 >Category: ports >Synopsis: further improving the PostgreSQL port >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Oct 06 08:30:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: My additions improve the following: * Postgres builds with SSL support (unless unavailable) * It is possible to build it with TCL but WITHOUT_TK support. This is needed for X11-less servers, where you still wish to use non-GUI TCL script (I use it with the mod_dtcl module for Apache). * The port creates pkgIndex.tcl file to help loading Pgtcl module into TCL applications I also modified the post-install-notes to say, that the pgaccess now comes with PG itself and there is no need to install it separately. There appears to be a bug, introduced with the most recent update: Package creation fails if one specifies WITH_ODBC but not WITH_JAVA. I did not address this -- I'm not sure how the two are related. With the growing number of build options, it is probably time for a dialog(1) based manu (like it php and ghostscript ports). >How-To-Repeat: >Fix: --- Makefile Mon Sep 25 16:15:15 2000 +++ Makefile Wed Oct 4 18:49:26 2000 @@ -29,12 +29,33 @@ +# SSL support will be compiled in, unless NO_OPENSSL is defined, which +# may be overturned by requesting WITH_SSL explicitly +.if !defined(NO_OPENSSL) || defined(WITH_SSL) +USE_OPENSSL= yes +CFLAGS+= -DUSE_SSL +WITH_SSL= yes +CONFIGURE_ENV+= LDFLAGS="-L${OPENSSLLIB} -lssl -lcrypto" +.endif + # if you want to use the tcl/tk frontend pgaccess, then you need to build -# postgresql with tcl support by typing: make -DWITH_TCL +# postgresql with tcl support by typing: make WITH_TCL= .if defined(WITH_TCL) -TCL_INCDIR= ${LOCALBASE}/include/tcl8.3 -TK_INCDIR= ${LOCALBASE}/include/tk8.3 +CONFIGURE_TCL= --with-tcl --with-tclconfig="${TCLCONFIG}" +.if ${WITH_TCL}==1 +WITH_TCL=8.3 +.endif +TCLV=${WITH_TCL:S//} +TCL_INCDIR= ${LOCALBASE}/include/tcl${WITH_TCL} MAKE_ENV= TCL_INCDIR=${TCL_INCDIR} -CONFIGURE_ENV= WISH=${LOCALBASE}/bin/wish8.3 -LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 \ - tk83.1:${PORTSDIR}/x11-toolkits/tk83 -CONFIGURE_TCL= --with-tcl --with-tclconfig="${LOCALBASE}/lib/tcl8.3 ${LOCALBASE}/lib/tk8.3" +LIB_DEPENDS= tcl${TCLV}.1:${PORTSDIR}/lang/tcl${TCLV} +TCLCONFIG= '${LOCALBASE}/lib/tcl${WITH_TCL}' +.if !defined(WITHOUT_TK) +TK_INCDIR= ${LOCALBASE}/include/tk${WITH_TCL} +CONFIGURE_ENV+= WISH=${LOCALBASE}/bin/wish${WITH_TCL} +LIB_DEPENDS+= tk${TCLV}.1:${PORTSDIR}/x11-toolkits/tk${TCLV} +TCLCONFIG+= '${LOCALBASE}/lib/tk${WITH_TCL}' +TCL_PLIST= PLIST.tcl +.else +TCL_PLIST= PLIST.tclnotk +CONFIGURE_TCL+= --without-tk +.endif .endif @@ -80,2 +101,3 @@ --enable-locale \ + --enable-recode \ --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` \ @@ -113,43 +135,55 @@ pre-fetch: - @${ECHO_MSG} "To install and run postgresql you need to compile kernel with:" - @${ECHO_MSG} " options \"SYSVSHM, SYSVSEM, SYSVMSG\"" + # To install and run postgresql you need to compile kernel with: + # options "SYSVSHM, SYSVSEM, SYSVMSG" .if !defined(WITH_TCL) - @${ECHO_MSG} "To build the \"PostgreSQL to Tcl interface library\", libpgtcl, type:" - @${ECHO_MSG} " make -DWITH_TCL" + # To build the "PostgreSQL to Tcl interface library", libpgtcl, type: + # make WITH_TCL= (like WITH_TCL=8.3) + # To disable build of TK-support (mainly -- pgaccess), add: + # -DWITHOUT_TK +.else + # Building PostgreSQL with libpgtcl. +.if !defined(WITHOUT_TK) + # To disable build of TK-support (mainly -- pgaccess), add: + # -DWITHOUT_TK +.endif +.endif +.if defined(WITH_SSL) + # Building PostgreSQL with SSL support .else - @${ECHO_MSG} "Building PostgreSQL with \"libpgtcl\"." + # Although NO_OPENSSL is defined somewhere, you can force the port + # to try by adding -DWITH_SSL to the make's command line .endif .if !defined(WITHOUT_MULTIBYTE) - @${ECHO_MSG} "To disable multibyte support, type:" - @${ECHO_MSG} " make -DWITHOUT_MULTIBYTE" + # To disable multibyte support, type: + # make -DWITHOUT_MULTIBYTE .if !defined(DEFAULT_ENCODING) - @${ECHO_MSG} "To set the default encoding for the multibyte support, type:" - @${ECHO_MSG} " make DEFAULT_ENCODING=" - @${ECHO_MSG} "where is one of these:" - @${ECHO_MSG} " SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5" - @${ECHO_MSG} " EUC_JP EUC_CN EUC_KR EUC_TW KOI8" - @${ECHO_MSG} " UNICODE MULE_INTERNAL WIN ALT" + # To set the default encoding for the multibyte support, type: + # make DEFAULT_ENCODING= + # where is one of these: + # SQL_ASCII LATIN1 LATIN2 LATIN3 LATIN4 LATIN5 + # EUC_JP EUC_CN EUC_KR EUC_TW KOI8 + # UNICODE MULE_INTERNAL WIN ALT .else - @${ECHO_MSG} "The default encoding is '${DEFAULT_ENCODING}'." + # The default encoding is '${DEFAULT_ENCODING}'. .endif .else - @${ECHO_MSG} "Building PostgreSQL without multibyte support." + # Building PostgreSQL without multibyte support. .endif .if !defined(WITH_JDBC) - @${ECHO_MSG} "To build Java (JDBC) support, type:" - @${ECHO_MSG} " make -DWITH_JDBC" + # To build Java (JDBC) support, type: + # make -DWITH_JDBC .else - @${ECHO_MSG} "Building PostgreSQL with \"postgresql.jar\"." + # Building PostgreSQL with "postgresql.jar". .endif .if !defined(WITH_PERL) - @${ECHO_MSG} "To build Perl interface and pl/Perl interpreter:" - @${ECHO_MSG} " make -DWITH_PERL" + # To build Perl interface and pl/Perl interpreter:" + # make -DWITH_PERL" .else - @${ECHO_MSG} "Building PostgreSQL with \"pl/Perl\"." + # Building PostgreSQL with "pl/Perl". .endif .if !defined(WITH_ODBC) - @${ECHO_MSG} "To build the ODBC driver package:" - @${ECHO_MSG} " make -DWITH_ODBC" + # To build the ODBC driver package: + # make -DWITH_ODBC .else - @${ECHO_MSG} "Building PostgreSQL with ODBC Drivers." + # Building PostgreSQL with ODBC Drivers. .endif @@ -168,12 +202,12 @@ .if defined(WITH_JDBC) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} + @ ${GMAKE} -C ${WRKSRC}/interfaces/jdbc .if !defined(NOPORTDOCS) - @ cd ${WRKSRC}/interfaces/jdbc && ${GMAKE} examples + @ ${GMAKE} -C ${WRKSRC}/interfaces/jdbc examples .endif .endif - @ ${ECHO} "------------------------------------------------------------" - @ ${ECHO} "Dump existing databases, before installing new db version !!" - @ ${ECHO} "Detailed instructions, see" - @ ${ECHO} "${WRKDIR}/${DISTNAME}/INSTALL" - @ ${ECHO} "------------------------------------------------------------" + # ------------------------------------------------------------ + # Dump existing databases, before installing new db version !! + # Detailed instructions, see" + # ${WRKDIR}/${DISTNAME}/INSTALL" + # ------------------------------------------------------------ @@ -188,27 +222,10 @@ .if defined(NOPORTDOCS) - @ ( cd ${DOCDIR}; ${GMAKE} man ) + @ ${GMAKE} -C ${DOCDIR} man .else - @ ( cd ${DOCDIR}; ${GMAKE} install ) + @ ${GMAKE} -C ${DOCDIR} install .endif @ if [ ! -f ${PREFIX}/pgsql/.profile ]; then \ - ${ECHO} "PATH=${PATH}:${PREFIX}/pgsql/bin" \ + ${SED} 's|%%PREFIX%%|${PREFIX}|g' \ + < ${FILESDIR}/dot.profile.in \ > ${PREFIX}/pgsql/.profile; \ - ${ECHO} "MANPATH=${MANPATH}:${PREFIX}/pgsql/man" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGLIB=${PREFIX}/pgsql/lib" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# note: PGDATA overwrites the -D startup option" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "PGDATA=${PREFIX}/pgsql/data" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "DISPLAY=:0" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "export PATH MANPATH PGLIB PGDATA DISPLAY" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "# if you want to make regression tests use this TZ" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#TZ=PST8PDT" \ - >> ${PREFIX}/pgsql/.profile; \ - ${ECHO} "#export TZ" \ - >> ${PREFIX}/pgsql/.profile; \ fi @@ -216,3 +233,3 @@ @ ${CHOWN} root:pgsql ${PREFIX}/pgsql/lib - @ ${ECHO} 'Initializing PostgreSQL Databases - this may take a few minutes...' + # Initializing PostgreSQL Databases - this may take a few minutes... @ ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/pgsql/lib @@ -230,9 +247,10 @@ @${CP} ${TMPPLIST} ${TMPPLIST}.notcl - @${CAT} ${PKGDIR}/PLIST.tcl ${TMPPLIST}.notcl > ${TMPPLIST} + @${CAT} ${PKGDIR}/${TCL_PLIST} ${TMPPLIST}.notcl > ${TMPPLIST} @${RM} ${TMPPLIST}.notcl -.endif -.if defined(WITH_ODBC) - @${CP} ${TMPPLIST} ${TMPPLIST}.noodbc - @${CAT} ${PKGDIR}/PLIST.odbc ${TMPPLIST}.noodbc > ${TMPPLIST} - @${RM} ${TMPPLIST}.noodbc + # Preparing a loadable TCL-package (pkgIndex.tcl) + # XXX This directory and the single file are not registered in + # XXX the PLIST, because of different PREFIX. + @${MKDIR} -p ${LOCALBASE}/lib/tcl${WITH_TCL}/Pgtcl1.3 + @${SED} 's|%%PREFIX%%|${PREFIX}|' < ${FILESDIR}/pkgIndex.tcl.in \ + > ${LOCALBASE}/lib/tcl${WITH_TCL}/Pgtcl1.3/pkgIndex.tcl .endif @@ -242,10 +260,15 @@ ${PREFIX}/share/java/classes/postgresql.jar - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting postgresql.jar in" - @ ${ECHO_MSG} "${PREFIX}/share/java/classes/postgresql.jar" - @ ${ECHO_MSG} "Add this to your CLASSPATH!" - @ ${ECHO_MSG} "ALSO NOTE: path inside jar file modified from 6.5.x:" - @ ${ECHO_MSG} " 'postgresql.*' -> 'org.postgresql.*'!" - @ ${ECHO_MSG} "You will need to modify you applications' props files." - @ ${ECHO_MSG} "---------------------------------------------------------" + # ---------------------------------------------------------" + # Putting postgresql.jar in" + # ${PREFIX}/share/java/classes/postgresql.jar" + # Add this to your CLASSPATH!" + # ALSO NOTE: path inside jar file modified from 6.5.x:" +.endif +.if defined(WITH_ODBC) + @${CP} ${TMPPLIST} ${TMPPLIST}.noodbc + @${CAT} ${PKGDIR}/PLIST.odbc ${TMPPLIST}.noodbc > ${TMPPLIST} + @${RM} ${TMPPLIST}.noodbc + # 'postgresql.*' -> 'org.postgresql.*'!" + # You will need to modify you applications' props files." + # ---------------------------------------------------------" @ ${CAT} ${PKGDIR}/PLIST.jdbc >> ${TMPPLIST} @@ -257,5 +280,5 @@ ${PREFIX}/share/examples/pgsql/jdbc - @ ${ECHO_MSG} "---------------------------------------------------------" - @ ${ECHO_MSG} "Putting jdbc examples into ${PREFIX}/share/examples/pgsql" - @ ${ECHO_MSG} "---------------------------------------------------------" + # ---------------------------------------------------------" + # Putting jdbc examples into ${PREFIX}/share/examples/pgsql" + # ---------------------------------------------------------" @ ${CAT} ${PKGDIR}/PLIST.doc >> ${TMPPLIST} --- files/dot.profile.in Wed Dec 31 19:00:00 1969 +++ files/dot.profile.in Fri Sep 15 11:16:18 2000 @@ -0,0 +1,15 @@ +PATH=${PATH}:%%PREFIX%%/pgsql/bin +MANPATH=${MANPATH}:%%PREFIX%%/pgsql/man +PGLIB=%%PREFIX%%/pgsql/lib + +# note: PGDATA overwrites the -D startup option +PGDATA=%%PREFIX%%/pgsql/data + +# not sure if you need this: +DISPLAY=:0 + +export PATH MANPATH PGLIB PGDATA # DISPLAY + +# if you want to make regression tests use this TZ +#TZ=PST8PDT +#export TZ --- files/pgsql.sh.tmpl Tue May 30 15:49:38 2000 +++ files/pgsql.sh.tmpl Wed Oct 4 20:00:29 2000 @@ -19,3 +19,3 @@ [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w -m fast stop' + exec su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w -m fast stop' } @@ -25,3 +25,3 @@ [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl status' + exec su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl status' } --- files/pkgIndex.tcl.in Wed Dec 31 19:00:00 1969 +++ files/pkgIndex.tcl.in Fri Sep 15 11:12:35 2000 @@ -0,0 +1,4 @@ +# Package-index file for Pgtcl-package. Enables you to load PostgreSQL +# interface functions right into you TCL-interpreter as simply as +# package require Pgtcl +package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" --- files/post-install-notes Wed Jun 21 10:17:28 2000 +++ files/post-install-notes Fri Oct 6 11:06:40 2000 @@ -10,5 +10,8 @@ -If you built PostgreSQL with TCL support, you can install the port -"pgaccess" to get a TCL/TK based database frontend for database -operations. +If you built PostgreSQL with TCL/TK support, you can use the pgaccess +utility to get a TCL/TK based database frontend for database +operations. You do NOT need to install the pgaccess port separately. + +If you built in the TCL support, you can load the Pg package into your +TCL scripts as easily as ``package require Pgtcl''. --- patches/patch-ss Wed Dec 31 19:00:00 1969 +++ patches/patch-ss Fri Sep 15 13:57:07 2000 @@ -0,0 +1,17 @@ +--- interfaces/libpq/fe-connect.c Sun May 21 17:19:53 2000 ++++ interfaces/libpq/fe-connect.c Fri Sep 15 13:53:52 2000 +@@ -801 +801 @@ +- sprintf(conn->errorMessage, ++ printfPQExpBuffer(&conn->errorMessage, +@@ -809 +809 @@ +- sprintf(conn->errorMessage, "PQconnectDB() -- couldn't read postmaster response: errno=%d\n%s\n", ++ printfPQExpBuffer(&conn->errorMessage, "PQconnectDB() -- couldn't read postmaster response: errno=%d\n%s\n", +@@ -822 +822 @@ +- sprintf(conn->errorMessage, ++ printfPQExpBuffer(&conn->errorMessage, +@@ -832 +832 @@ +- sprintf(conn->errorMessage, ++ printfPQExpBuffer(&conn->errorMessage, +@@ -850 +850 @@ +- strcpy(conn->errorMessage, ++ printfPQExpBuffer(&conn->errorMessage, --- patches/patch-st Wed Dec 31 19:00:00 1969 +++ patches/patch-st Fri Oct 6 10:59:41 2000 @@ -0,0 +1,45 @@ +This patches let you disable Tk even if you have it installed and +makes sure the TCL-library is added as a dependency for libpgtcl. +--- interfaces/libpgtcl/Makefile.in Tue Mar 7 20:58:36 2000 ++++ interfaces/libpgtcl/Makefile.in Wed Sep 20 08:57:28 2000 +@@ -29,3 +29,3 @@ + +-SHLIB_LINK+= $(LIBPQ) ++SHLIB_LINK+= $(LIBPQ) @TCL_LIB_SPEC@ + +--- configure Wed Sep 20 08:53:57 2000 ++++ configure Wed Sep 20 09:01:00 2000 +@@ -948,2 +948,17 @@ + ++if test USE_TCL = true ++then ++ echo $ac_n "checking setting USE_TK""... $ac_c" 1>&6 ++ echo "configure:952: checking setting USE_TK" >&5 ++ # Check whether --with-tk or --without-tk was given. ++ if test "${with_tk+set}" = set; then ++ withval="$with_tk" ++ ++ case "$withval" in ++ y | ye | yes) USE_TK=true; echo "$ac_t""enabled" 1>&6 ;; ++ *) USE_TK=n; echo "$ac_t""disabled" 1>&6 ;; ++ esac ++ fi ++fi ++ + +@@ -7090,3 +7105,3 @@ + echo "$ac_t""$TCL_CONFIG_SH" 1>&6 +- ++ . ${TCL_CONFIG_SH} + fi +@@ -7094,3 +7118,5 @@ + +-USE_TK=$USE_TCL # If TCL is disabled, disable TK ++USE_TK=${USE_TK:=$USE_TCL} # If TCL is disabled, disable TK, ++ # otherwise -- enable unless explicitly ++ # disabled + +@@ -8359,2 +8385,3 @@ + s%@expanded_libdir@%$expanded_libdir%g ++s%@TCL_LIB_SPEC@%$TCL_LIB_SPEC%g + --- pkg/PLIST.tclnotk Wed Dec 31 19:00:00 1969 +++ pkg/PLIST.tclnotk Fri Sep 15 10:37:37 2000 @@ -0,0 +1,6 @@ +pgsql/bin/pgtclsh +pgsql/include/libpgtcl.h +pgsql/lib/libpgtcl.a +pgsql/lib/libpgtcl.so +pgsql/lib/libpgtcl.so.2 +pgsql/lib/pltcl.so >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 10:30: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E49037B66C for ; Fri, 6 Oct 2000 10:30:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA22684; Fri, 6 Oct 2000 10:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from iraun1.ira.uka.de (iraun1.ira.uka.de [129.13.10.90]) by hub.freebsd.org (Postfix) with ESMTP id 94B9B37B502 for ; Fri, 6 Oct 2000 10:26:19 -0700 (PDT) Received: from i30nb2.ira.uka.de by iraun1 (PP) with ESMTP; Fri, 6 Oct 2000 19:24:24 +0200 Received: (from esk@localhost) by i30nb2.ira.uka.de (8.9.3/8.9.3) id TAA17597; Fri, 6 Oct 2000 19:24:09 +0200 (CEST) (envelope-from esk) Message-Id: <200010061724.TAA17597@i30nb2.ira.uka.de> Date: Fri, 6 Oct 2000 19:24:09 +0200 (CEST) From: esk@ira.uka.de Reply-To: esk@ira.uka.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21785: Update of audio/linux-realplayer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21785 >Category: ports >Synopsis: Update of audio/linux-realplayer >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 06 10:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Espen Skoglund >Release: FreeBSD 4.1-STABLE i386 >Organization: Universität Karlsruhe >Environment: >Description: RealNetworks has released a new version of the realplayer (i.e., the old distribution is no longer available). The makefile needs to be updated to reflect this. >How-To-Repeat: >Fix: diff -druN linux-realplayer.orig/Makefile linux-realplayer/Makefile --- linux-realplayer.orig/Makefile Fri Oct 6 17:50:00 2000 +++ linux-realplayer/Makefile Fri Oct 6 17:52:46 2000 @@ -6,7 +6,7 @@ # PORTNAME= linux-realplayer -PORTVERSION= 7.cs1 +PORTVERSION= 7.b2 CATEGORIES= audio graphics linux MASTER_SITES= # fetch manually DISTNAME= rp${PORTVERSION:R}_linux20_libc6_i386_${PORTVERSION:E} diff -druN linux-realplayer.orig/files/md5 linux-realplayer/files/md5 --- linux-realplayer.orig/files/md5 Fri Oct 6 17:49:59 2000 +++ linux-realplayer/files/md5 Fri Oct 6 17:53:14 2000 @@ -1 +1 @@ -MD5 (rp7_linux20_libc6_i386_cs1_rpm) = ed139cebd207a7660ab3cf8f28a6965b +MD5 (rp7_linux20_libc6_i386_b2_rpm) = 4d64c14d1b4b09f0c914c15cd8053886 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 10:40: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2A41037B503 for ; Fri, 6 Oct 2000 10:40:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA26574; Fri, 6 Oct 2000 10:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 6 Oct 2000 10:40:04 -0700 (PDT) Message-Id: <200010061740.KAA26574@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: FUJISHIMA Satsuki Subject: Re: ports/21780: audio/vorbis should not depend on xmms! Reply-To: FUJISHIMA Satsuki Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21780; it has been noted by GNATS. From: FUJISHIMA Satsuki To: wigren@home.se Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/21780: audio/vorbis should not depend on xmms! Date: Sat, 07 Oct 2000 02:32:46 +0900 At Fri, 6 Oct 2000 02:16:35 -0700 (PDT), wigren@home.se wrote: > >Description: > "make install" in /usr/ports/audio/vorbis forces me to install xmms, gtk+, glib, XFree86 etc, when all I want are the CLI-tools oggenc and ogg123. > >How-To-Repeat: > > >Fix: > make the vorbis xmms-plugin a separate port maybe? > Or check for xmms and only compile the plugin if it is available. I think so, too. Please take a look at ports/20766, http://www.freebsd.org/cgi/query-pr.cgi?pr=20766 Maintainer of this port agreed with me but it does not commited. -- FUJISHIMA Satsuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 11:27:23 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 96A8D37B502; Fri, 6 Oct 2000 11:27:13 -0700 (PDT) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id VAA08418; Fri, 6 Oct 2000 21:27:03 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.0/8.9.3) with ESMTP id e96IR3J06960; Fri, 6 Oct 2000 21:27:03 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39DE1A48.C7C8C9CF@FreeBSD.org> Date: Fri, 06 Oct 2000 21:30:32 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.75 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: bmah@FreeBSD.org Cc: Neil Blakey-Milner , Akinori -Aki- MUSHA , freebsd-ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: PROPOSAL: Use @comment PLIST variable to track where installed packages came from [Was: Enhancement of pkg_version's version comparison routine] References: <86k8by6eis.wl@archon.local.idaemons.org> <20000927002401.A73341@mithrandr.moria.org> <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> <39D9EE01.7A880665@FreeBSD.org> <200010031657.e93Gvtg10718@bmah-freebsd-0.cisco.com> <39DB17BB.12805565@FreeBSD.org> <200010060426.e964Qvx70814@bmah-freebsd-0.cisco.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Bruce A. Mah" wrote: > Hi Max-- > > OK, I've been playing with your patch (a very little bit). For what > it's worth, I like it more now that I've hacked pkg_version to match. > > Here's the relevent modifications for pkg_version (against -STABLE, but > should apply to -CURRENT also). It ought to be backward compatable with > existing packages. Feedback is welcome (from everyone, not just Max). Looks fine, thank you Bruce for fast reply. I hope PW will take a look at this thread when he has finished his NEWLAYOUT efforts and let us know his final word then. :-> -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 11:30:16 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7855737B503 for ; Fri, 6 Oct 2000 11:30:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA47233; Fri, 6 Oct 2000 11:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from chg.ru (netserv1.chg.ru [193.233.46.3]) by hub.freebsd.org (Postfix) with ESMTP id 1246B37B66D for ; Fri, 6 Oct 2000 11:27:18 -0700 (PDT) Received: (from dima@localhost) by chg.ru (8.9.3/8.9.3) id WAA92049; Fri, 6 Oct 2000 22:26:54 +0400 (MSD) (envelope-from dima) Message-Id: <200010061826.WAA92049@chg.ru> Date: Fri, 6 Oct 2000 22:26:54 +0400 (MSD) From: "Dmitry S. Sivachenko" Reply-To: dima@Chg.RU To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21787: Update port: net/mrtg Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21787 >Category: ports >Synopsis: Update port: net/mrtg >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 06 11:30:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dmitry S. Sivachenko >Release: FreeBSD 3.3-RELEASE i386 >Organization: >Environment: >Description: >How-To-Repeat: >Fix: diff -Nur mrtg.old/Makefile mrtg/Makefile --- mrtg.old/Makefile Wed Jun 7 13:06:24 2000 +++ mrtg/Makefile Fri Oct 6 22:14:02 2000 @@ -6,7 +6,7 @@ # PORTNAME= mrtg -PORTVERSION= 2.8.12 +PORTVERSION= 2.9.0 CATEGORIES= net MASTER_SITES= http://ee-staff.ethz.ch/~oetiker/webtools/mrtg/pub/ @@ -19,34 +19,35 @@ GNU_CONFIGURE= YES -CONFIGURE_ARGS= --with-gd-lib=${PREFIX}/lib \ - --with-gd-inc=${PREFIX}/include/gd +CONFIGURE_ARGS= --with-gd-lib=${LOCALBASE}/lib \ + --with-gd-inc=${LOCALBASE}/include/gd CONFIGURE_ENV= PERL=${PERL} +MAN1= cfgmaker.1 contrib.1 faq.1 forum.1 indexmaker.1 logfile.1 \ + mibhelp.1 mrtg-rrd.1 nt-guide.1 reference.1 squid.1 \ + unix-guide.1 webserver.1 whatis.1 + do-install: ${MKDIR} -m 755 ${PREFIX}/etc/mrtg ${MKDIR} -m 755 ${PREFIX}/lib/perl5/site_perl/${PERL_VER} + ${MKDIR} -m 755 ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/Pod ${MKDIR} -m 755 ${PREFIX}/share/mrtg .if !defined(NOPORTDOCS) ${MKDIR} -m 755 ${PREFIX}/share/doc/mrtg - for file in ANNOUNCE CHANGES COPYING COPYRIGHT MANIFEST README \ - doc/config.html doc/config.pod doc/config.txt doc/htaccess.txt \ - doc/logfile-format.txt doc/manual.html doc/manual.txt \ - doc/mibhelp.txt doc/squid.txt UPGRADING ; do \ + for file in ANNOUNCE CHANGES COPYRIGHT MANIFEST README \ + doc/*.html doc/*.pod doc/*.txt doc/*wml doc/*.png ; do \ ${INSTALL_DATA} ${WRKSRC}/$$file ${PREFIX}/share/doc/mrtg/; \ done .endif - ${INSTALL_DATA} ${WRKSRC}/doc/sample-mrtg.cfg ${PREFIX}/etc/mrtg - for file in ${WRKSRC}/images/*; do \ - ${INSTALL_DATA} $$file ${PREFIX}/share/mrtg/; \ - done - for file in SNMP_Session.pm SNMP_util.pm BER.pm locales_mrtg.pm; do \ - ${INSTALL_DATA} ${WRKSRC}/run/$$file ${PREFIX}/lib/perl5/site_perl/${PERL_VER}; \ - done - ${INSTALL_PROGRAM} ${WRKSRC}/run/rateup ${PREFIX}/bin/ - for file in mrtg cfgmaker cfgmaker_ip cfgmaker_phys indexmaker; do \ - ${INSTALL_SCRIPT} ${WRKSRC}/run/$$file ${PREFIX}/bin/; \ + ${INSTALL_DATA} ${WRKSRC}/contrib/mrtgmk/cfg/mrtg.cfg ${PREFIX}/etc/mrtg/mrtg.cfg.sample + ${INSTALL_DATA} ${WRKSRC}/images/* ${PREFIX}/share/mrtg + ${INSTALL_DATA} ${WRKSRC}/doc/*.1 ${PREFIX}/man/man1 + ${INSTALL_DATA} ${WRKSRC}/lib/mrtg2/*.pm ${PREFIX}/lib/perl5/site_perl/${PERL_VER} + ${INSTALL_DATA} ${WRKSRC}/lib/mrtg2/Pod/*.pm ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/Pod + ${INSTALL_PROGRAM} ${WRKSRC}/bin/rateup ${PREFIX}/bin/ + for file in mrtg cfgmaker indexmaker; do \ + ${INSTALL_SCRIPT} ${WRKSRC}/bin/$$file ${PREFIX}/bin/; \ done post-install: @@ -55,7 +56,7 @@ @${ECHO} "############################################################################" @${ECHO} "# Please create a MRTG config file in ${PREFIX}/etc/mrtg #" @${ECHO} "# A configuration file can be automatically generated with cfgmaker #" - @${ECHO} "# A sample configuration file is installed as sample-mrtg.cfg #" + @${ECHO} "# A sample configuration file is installed as mrtg.cfg.sample #" @${ECHO} "############################################################################" .endif diff -Nur mrtg.old/files/md5 mrtg/files/md5 --- mrtg.old/files/md5 Sun Feb 13 00:45:53 2000 +++ mrtg/files/md5 Fri Oct 6 11:33:59 2000 @@ -1 +1 @@ -MD5 (mrtg-2.8.12.tar.gz) = 1279ae12c85c458cb5b3111fe5e01341 +MD5 (mrtg-2.9.0.tar.gz) = 16288f88744e288a6a32a650357082fa diff -Nur mrtg.old/pkg/PLIST mrtg/pkg/PLIST --- mrtg.old/pkg/PLIST Sun Feb 13 00:45:54 2000 +++ mrtg/pkg/PLIST Fri Oct 6 22:15:39 2000 @@ -1,14 +1,18 @@ bin/cfgmaker -bin/cfgmaker_ip -bin/cfgmaker_phys bin/indexmaker bin/mrtg bin/rateup -etc/mrtg/sample-mrtg.cfg +etc/mrtg/mrtg.cfg.sample lib/perl5/site_perl/%%PERL_VER%%/BER.pm lib/perl5/site_perl/%%PERL_VER%%/SNMP_Session.pm lib/perl5/site_perl/%%PERL_VER%%/SNMP_util.pm +lib/perl5/site_perl/%%PERL_VER%%/MRTG_lib.pm lib/perl5/site_perl/%%PERL_VER%%/locales_mrtg.pm +lib/perl5/site_perl/%%PERL_VER%%/Pod/InputObjects.pm +lib/perl5/site_perl/%%PERL_VER%%/Pod/Parser.pm +lib/perl5/site_perl/%%PERL_VER%%/Pod/PlainText.pm +lib/perl5/site_perl/%%PERL_VER%%/Pod/Select.pm +lib/perl5/site_perl/%%PERL_VER%%/Pod/Usage.pm share/mrtg/mrtg-l.gif share/mrtg/mrtg-m.gif share/mrtg/mrtg-r.gif @@ -19,20 +23,59 @@ share/mrtg/mrtg-ti.png share/doc/mrtg/ANNOUNCE share/doc/mrtg/CHANGES -share/doc/mrtg/COPYING share/doc/mrtg/COPYRIGHT share/doc/mrtg/MANIFEST share/doc/mrtg/README -share/doc/mrtg/UPGRADING -share/doc/mrtg/config.html -share/doc/mrtg/config.pod -share/doc/mrtg/config.txt -share/doc/mrtg/htaccess.txt -share/doc/mrtg/logfile-format.txt -share/doc/mrtg/manual.html -share/doc/mrtg/manual.txt +share/doc/mrtg/cfgmaker.html +share/doc/mrtg/contrib.html +share/doc/mrtg/faq.html +share/doc/mrtg/forum.html +share/doc/mrtg/index.html +share/doc/mrtg/indexmaker.html +share/doc/mrtg/logfile.html +share/doc/mrtg/mibhelp.html +share/doc/mrtg/mrtg-rrd.html +share/doc/mrtg/nt-guide.html +share/doc/mrtg/reference.html +share/doc/mrtg/squid.html +share/doc/mrtg/unix-guide.html +share/doc/mrtg/webserver.html +share/doc/mrtg/whatis.html +share/doc/mrtg/cfgmaker.pod +share/doc/mrtg/contrib.pod +share/doc/mrtg/faq.pod +share/doc/mrtg/forum.pod +share/doc/mrtg/indexmaker.pod +share/doc/mrtg/logfile.pod +share/doc/mrtg/mibhelp.pod +share/doc/mrtg/mrtg-rrd.pod +share/doc/mrtg/nt-guide.pod +share/doc/mrtg/reference.pod +share/doc/mrtg/squid.pod +share/doc/mrtg/unix-guide.pod +share/doc/mrtg/webserver.pod +share/doc/mrtg/whatis.pod +share/doc/mrtg/cfgmaker.txt +share/doc/mrtg/contrib.txt +share/doc/mrtg/faq.txt +share/doc/mrtg/forum.txt +share/doc/mrtg/index.txt +share/doc/mrtg/indexmaker.txt +share/doc/mrtg/logfile.txt share/doc/mrtg/mibhelp.txt +share/doc/mrtg/mrtg-rrd.txt +share/doc/mrtg/nt-guide.txt +share/doc/mrtg/reference.txt share/doc/mrtg/squid.txt +share/doc/mrtg/unix-guide.txt +share/doc/mrtg/webserver.txt +share/doc/mrtg/whatis.txt +share/doc/mrtg/index.wml +share/doc/mrtg/mrtg-l.png +share/doc/mrtg/mrtg-m.png +share/doc/mrtg/mrtg-r.png +share/doc/mrtg/mrtg-ti.png @dirrm etc/mrtg @dirrm share/doc/mrtg @dirrm share/mrtg +@dirrm lib/perl5/site_perl/%%PERL_VER%%/Pod >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 12: 0:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 27D6D37B66C for ; Fri, 6 Oct 2000 12:00:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA61418; Fri, 6 Oct 2000 12:00:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 6 Oct 2000 12:00:05 -0700 (PDT) Message-Id: <200010061900.MAA61418@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Glenn Johnson Subject: Re: ports/21785: Update of audio/linux-realplayer Reply-To: Glenn Johnson Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21785; it has been noted by GNATS. From: Glenn Johnson To: esk@ira.uka.de Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/21785: Update of audio/linux-realplayer Date: Fri, 6 Oct 2000 13:57:28 -0500 On Fri, Oct 06, 2000 at 07:24:09PM +0200, esk@ira.uka.de wrote: > >Description: > > RealNetworks has released a new version of the realplayer (i.e., the > old distribution is no longer available). The makefile needs to be > updated to reflect this. I do not think this is correct. > >Fix: > > > diff -druN linux-realplayer.orig/Makefile linux-realplayer/Makefile > --- linux-realplayer.orig/Makefile Fri Oct 6 17:50:00 2000 > +++ linux-realplayer/Makefile Fri Oct 6 17:52:46 2000 > @@ -6,7 +6,7 @@ > # > > PORTNAME= linux-realplayer > -PORTVERSION= 7.cs1 > +PORTVERSION= 7.b2 > CATEGORIES= audio graphics linux > MASTER_SITES= # fetch manually > DISTNAME= rp${PORTVERSION:R}_linux20_libc6_i386_${PORTVERSION:E} > diff -druN linux-realplayer.orig/files/md5 linux-realplayer/files/md5 > --- linux-realplayer.orig/files/md5 Fri Oct 6 17:49:59 2000 > +++ linux-realplayer/files/md5 Fri Oct 6 17:53:14 2000 > @@ -1 +1 @@ > -MD5 (rp7_linux20_libc6_i386_cs1_rpm) = ed139cebd207a7660ab3cf8f28a6965b > +MD5 (rp7_linux20_libc6_i386_b2_rpm) = 4d64c14d1b4b09f0c914c15cd8053886 I just checked, rp7_linux20_libc6_i386_cs1_rpm is still the file you get when you download the Unix version. Here is the URL: http://scopes.real.com/real/player/unix/unix.html?src=rpbform -- Glenn Johnson glennpj@charter.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 12: 5:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id 115EE37B502; Fri, 6 Oct 2000 12:05:11 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e96J5AO11150; Fri, 6 Oct 2000 15:05:10 -0400 (EDT) Date: Fri, 6 Oct 2000 15:05:10 -0400 (EDT) From: Trevor Johnson To: Satoshi Asami Cc: Will Andrews , freebsd-ports@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO_8859-1/books/porters-handbook book.sgml In-Reply-To: <200010060902.CAA24416@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > (2) Explicitly allow using things other than the "split" sequence (aa, > ab, ac...) in patchfile names, in particular those that represent > the names of the files being patched. I want to re-propose my adaptation of OpenBSD's update-patches script. It was last discussed in the "New rules for naming patches" thread. Will Andrews requested that I add a way to have it generate patches with shorter names. I haven't done that, but I feel that it's not needed because porters can rename the patches manually, after which the script will respect the names they chose. Also, I'm not proposing that use of the script be required: if it spits out names that violate your personal FILENAME_MAX, only use it for changes to existing patches, not new ones--or don't use it at all. I've put it at http://people.freebsd.org/~trevor/ports/update-patches.diff . It requires a target in bsd.port.mk. It works with both the old and new layouts. -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 12:10: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5B27B37B502 for ; Fri, 6 Oct 2000 12:10:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA66200; Fri, 6 Oct 2000 12:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 6 Oct 2000 12:10:02 -0700 (PDT) Message-Id: <200010061910.MAA66200@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Glenn Johnson Subject: Re: ports/21785: Update of audio/linux-realplayer Reply-To: Glenn Johnson Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21785; it has been noted by GNATS. From: Glenn Johnson To: esk@ira.uka.de Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/21785: Update of audio/linux-realplayer Date: Fri, 6 Oct 2000 14:09:32 -0500 On Fri, Oct 06, 2000 at 07:24:09PM +0200, esk@ira.uka.de wrote: > >Description: > > RealNetworks has released a new version of the realplayer (i.e., the > old distribution is no longer available). The makefile needs to be > updated to reflect this. I think I see the problem. The Makefile refers people to the following URL: http://www.real.com/player/7/ I think it should refer them to the following URL: http://scopes.real.com/real/player/unix/unix.html?src=rpbform The port maintainer's e-mail address is: vns@delta.odessa.ua I would recommend that you send an e-mail on to him if you have not already. -- Glenn Johnson glennpj@charter.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 12:50: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 911A737B503 for ; Fri, 6 Oct 2000 12:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA81520; Fri, 6 Oct 2000 12:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 6 Oct 2000 12:50:02 -0700 (PDT) Message-Id: <200010061950.MAA81520@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Espen Skoglund Subject: Re: ports/21785: Update of audio/linux-realplayer Reply-To: Espen Skoglund Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21785; it has been noted by GNATS. From: Espen Skoglund To: Glenn Johnson Cc: esk@ira.uka.de, vns@delta.odessa.ua, FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/21785: Update of audio/linux-realplayer Date: Fri, 6 Oct 2000 21:40:00 +0200 (CEST) [Glenn Johnson] > On Fri, Oct 06, 2000 at 07:24:09PM +0200, esk@ira.uka.de wrote: >>> Description: >> >> RealNetworks has released a new version of the realplayer (i.e., >> the old distribution is no longer available). The makefile needs >> to be updated to reflect this. > I think I see the problem. The Makefile refers people to the > following URL: > http://www.real.com/player/7/ > I think it should refer them to the following URL: > http://scopes.real.com/real/player/unix/unix.html?src=rpbform Yes. You're right. The question, of course, is whether one wants to use the Community Supported player or the player which is supported by RealNetworks. I must say that I don't really know what the differences between the two of them are. eSk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 12:59:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from yertle.kciLink.com (yertle.kciLink.com [205.252.34.9]) by hub.freebsd.org (Postfix) with ESMTP id 75F4337B503; Fri, 6 Oct 2000 12:59:30 -0700 (PDT) Received: from onceler.kciLink.com (onceler.kciLink.com [205.252.34.3]) by yertle.kciLink.com (Postfix) with ESMTP id 9DDED2E44A; Fri, 6 Oct 2000 15:59:21 -0400 (EDT) Received: (from khera@localhost) by onceler.kciLink.com (8.11.0/8.11.0) id e96JxLS83243; Fri, 6 Oct 2000 15:59:21 -0400 (EDT) (envelope-from khera) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14814.12057.18444.238865@onceler.kciLink.com> Date: Fri, 6 Oct 2000 15:59:21 -0400 (EDT) To: Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/20624: vmware vmmon module locks kernel In-Reply-To: <200009160902.CAA78123@freefall.freebsd.org> References: <200009160902.CAA78123@freefall.freebsd.org> X-Mailer: VM 6.72 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "k" == knu writes: k> Synopsis: vmware vmmon module locks kernel k> State-Changed-From-To: open->closed k> State-Changed-By: knu k> State-Changed-When: Sat Sep 16 17:56:24 JST 2000 k> State-Changed-Why: k> A similar patch was added. (set the second argument of ether_ifattach() k> to ETHER_BPF_SUPPORTED, instead of 0 (ETHER_BPF_UNSUPPORTED)) k> Please check it out. Thanks for the report! I think you patched vmware2 port, not the vmware port. I just tried it again and had to edit the vmnet.c file to add the second arg to ether_ifattach() manually. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 13:51:26 2000 Delivered-To: freebsd-ports@freebsd.org Received: from yertle.kciLink.com (yertle.kciLink.com [205.252.34.9]) by hub.freebsd.org (Postfix) with ESMTP id 4607B37B502 for ; Fri, 6 Oct 2000 13:51:24 -0700 (PDT) Received: from onceler.kciLink.com (onceler.kciLink.com [205.252.34.3]) by yertle.kciLink.com (Postfix) with ESMTP id 8B7682E449; Fri, 6 Oct 2000 16:51:23 -0400 (EDT) Received: (from khera@localhost) by onceler.kciLink.com (8.11.0/8.11.0) id e96KpNw01200; Fri, 6 Oct 2000 16:51:23 -0400 (EDT) (envelope-from khera) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14814.15179.106615.772289@onceler.kciLink.com> Date: Fri, 6 Oct 2000 16:51:23 -0400 (EDT) To: "Akinori -Aki- MUSHA" Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/20624: vmware vmmon module locks kernel In-Reply-To: <861yyfjw1z.wl@daemon.local.idaemons.org> References: <200009160902.CAA78123@freefall.freebsd.org> <14791.33111.87575.9387@onceler.kciLink.com> <861yyfjw1z.wl@daemon.local.idaemons.org> X-Mailer: VM 6.72 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "A-M" == Akinori -Aki- MUSHA writes: A-M> At Tue, 19 Sep 2000 11:08:07 -0400 (EDT), A-M> Vivek Khera wrote: >> Before I check it out, does this fix avoid hanging the kernel as soon >> as the module is loaded? Last I tried on 4.1-STABLE it locked so >> tight that the keyboard didn't even respond to caps lock. A-M> At least it doesn't lock or freeze on my 4-STABLE and 5-CURRENT boxen. A-M> Anyone else suffered a freeze? I just tried it again and it locked up my kernel tight. The CAPS LOCK key didn't even respond. Are you using vmware2 port or the vmware port? I'm using the vmware port, since that is what I have a license for. Thanks. -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Vivek Khera, Ph.D. Khera Communications, Inc. Internet: khera@kciLink.com Rockville, MD +1-301-545-6996 GPG & MIME spoken here http://www.khera.org/~vivek/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 15:10:53 2000 Delivered-To: freebsd-ports@freebsd.org Received: from granger.mail.mindspring.net (granger.mail.mindspring.net [207.69.200.148]) by hub.freebsd.org (Postfix) with ESMTP id 5931737B66F; Fri, 6 Oct 2000 15:10:39 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca42-27.ix.netcom.com [209.111.212.27]) by granger.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id SAA14610; Fri, 6 Oct 2000 18:10:10 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e96M8ig67103; Fri, 6 Oct 2000 15:08:44 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Date: Fri, 6 Oct 2000 15:08:44 -0700 (PDT) Message-Id: <200010062208.e96M8ig67103@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: Konstantin.Chuguev@dante.org.uk, knu@FreeBSD.org Cc: ports@FreeBSD.org Subject: converters/iconv build problem on 3-stable From: asami@FreeBSD.org (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Konstantin, It seems converters/iconv doesn't install a lot of files in 3-stable. The following will "fix" the packaging errors but I'm not sure if it is the right fix. There doesn't appear to be any error in the log. http://bento.FreeBSD.org/errorlogs/errorlogs/a.3.20001003/iconv-1.1.log Satoshi ------- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/converters/iconv/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- Makefile 2000/09/24 21:48:01 1.6 +++ Makefile 2000/10/06 21:59:57 @@ -19,4 +19,12 @@ MAN1= iconv.1 MAN3= iconv.3 iconv_open.3 iconv_close.3 -.include +.include + +.if ${OSVERSION} < 400000 +PLIST_SUB= NEWFILES:="@comment " +.else +PLIST_SUB= NEWFILES:="" +.endif + +.include Index: pkg/PLIST =================================================================== RCS file: /home/ncvs/ports/converters/iconv/pkg/PLIST,v retrieving revision 1.4 diff -u -r1.4 PLIST --- pkg/PLIST 2000/09/12 10:06:47 1.4 +++ pkg/PLIST 2000/10/06 21:59:08 @@ -1,115 +1,116 @@ bin/iconv -include/iconv.h -lib/iconv/850.so -lib/iconv/852.so -lib/iconv/855.so -lib/iconv/866.so lib/iconv/_tbl_simple.so -lib/iconv/ansi_x3.4-1968.so -lib/iconv/ansi_x3.4-1986.so -lib/iconv/ascii.so lib/iconv/big5.so -lib/iconv/chinese.so lib/iconv/cns11643-plane1.so lib/iconv/cns11643-plane14.so lib/iconv/cns11643-plane2.so -lib/iconv/cp367.so lib/iconv/cp775.so -lib/iconv/cp819.so lib/iconv/cp850.so lib/iconv/cp852.so lib/iconv/cp855.so lib/iconv/cp866.so -lib/iconv/csascii.so -lib/iconv/csbig5.so -lib/iconv/cseuckr.so -lib/iconv/cseucpkdfmtjapanese.so -lib/iconv/csgb2312.so -lib/iconv/cshalfwidthkatakana.so -lib/iconv/csibm855.so -lib/iconv/csibm866.so -lib/iconv/csisolatin1.so -lib/iconv/csisolatin2.so -lib/iconv/csisolatin4.so -lib/iconv/csisolatincyrillic.so -lib/iconv/cskoi8r.so -lib/iconv/cspc775baltic.so -lib/iconv/cspc850multilingual.so -lib/iconv/cspcp852.so -lib/iconv/csshiftjis.so -lib/iconv/csunicode.so -lib/iconv/cyrillic.so -lib/iconv/euc-cn.so lib/iconv/euc-jp.so lib/iconv/euc-kr.so lib/iconv/euc-tw.so -lib/iconv/extended_unix_code_packed_format_for_japanese.so lib/iconv/gb2312.so lib/iconv/gb_2312-80.so -lib/iconv/ibm367.so -lib/iconv/ibm775.so -lib/iconv/ibm819.so -lib/iconv/ibm850.so -lib/iconv/ibm852.so -lib/iconv/ibm855.so -lib/iconv/ibm866.so lib/iconv/iso-10646-ucs-2.so lib/iconv/iso-10646-ucs-4.so -lib/iconv/iso-10646-utf-16.so -lib/iconv/iso-10646-utf-8.so lib/iconv/iso-8859-1.so lib/iconv/iso-8859-15.so lib/iconv/iso-8859-2.so lib/iconv/iso-8859-4.so lib/iconv/iso-8859-5.so -lib/iconv/iso-ir-100.so -lib/iconv/iso-ir-101.so -lib/iconv/iso-ir-110.so -lib/iconv/iso-ir-144.so -lib/iconv/iso-ir-58.so -lib/iconv/iso-ir-87.so -lib/iconv/iso646-us.so -lib/iconv/iso_646.irv:1991.so -lib/iconv/iso_8859-1.so -lib/iconv/iso_8859-15.so -lib/iconv/iso_8859-15:1998.so -lib/iconv/iso_8859-1:1987.so -lib/iconv/iso_8859-2.so -lib/iconv/iso_8859-2:1987.so -lib/iconv/iso_8859-4.so -lib/iconv/iso_8859-4:1988.so -lib/iconv/iso_8859-5.so -lib/iconv/iso_8859-5:1988.so -lib/iconv/jis_c6226-1983.so lib/iconv/jis_x0201.so lib/iconv/jis_x0208-1983.so lib/iconv/jis_x0212-1990.so lib/iconv/koi8-r.so lib/iconv/koi8-u.so -lib/iconv/ks_x_1001.so lib/iconv/ksx1001.so -lib/iconv/l1.so -lib/iconv/l2.so -lib/iconv/l4.so -lib/iconv/latin1.so -lib/iconv/latin2.so -lib/iconv/latin4.so -lib/iconv/ms_kanji.so lib/iconv/shift_jis.so -lib/iconv/ucs-2.so -lib/iconv/ucs-4.so lib/iconv/ucs2-internal.so lib/iconv/ucs4-internal.so -lib/iconv/ucs4.so lib/iconv/us-ascii.so -lib/iconv/us.so lib/iconv/utf-16.so lib/iconv/utf-8.so -lib/iconv/utf16.so -lib/iconv/utf8.so -lib/iconv/x0201.so -lib/iconv/x0208.so lib/libiconv.a lib/libiconv.so lib/libiconv.so.1 +lib/libiconv_p.a +%%NEWFILES:%%include/iconv.h +%%NEWFILES:%%lib/iconv/850.so +%%NEWFILES:%%lib/iconv/852.so +%%NEWFILES:%%lib/iconv/855.so +%%NEWFILES:%%lib/iconv/866.so +%%NEWFILES:%%lib/iconv/ansi_x3.4-1968.so +%%NEWFILES:%%lib/iconv/ansi_x3.4-1986.so +%%NEWFILES:%%lib/iconv/ascii.so +%%NEWFILES:%%lib/iconv/chinese.so +%%NEWFILES:%%lib/iconv/cp367.so +%%NEWFILES:%%lib/iconv/cp819.so +%%NEWFILES:%%lib/iconv/csascii.so +%%NEWFILES:%%lib/iconv/csbig5.so +%%NEWFILES:%%lib/iconv/cseuckr.so +%%NEWFILES:%%lib/iconv/cseucpkdfmtjapanese.so +%%NEWFILES:%%lib/iconv/csgb2312.so +%%NEWFILES:%%lib/iconv/cshalfwidthkatakana.so +%%NEWFILES:%%lib/iconv/csibm855.so +%%NEWFILES:%%lib/iconv/csibm866.so +%%NEWFILES:%%lib/iconv/csisolatin1.so +%%NEWFILES:%%lib/iconv/csisolatin2.so +%%NEWFILES:%%lib/iconv/csisolatin4.so +%%NEWFILES:%%lib/iconv/csisolatincyrillic.so +%%NEWFILES:%%lib/iconv/cskoi8r.so +%%NEWFILES:%%lib/iconv/cspc775baltic.so +%%NEWFILES:%%lib/iconv/cspc850multilingual.so +%%NEWFILES:%%lib/iconv/cspcp852.so +%%NEWFILES:%%lib/iconv/csshiftjis.so +%%NEWFILES:%%lib/iconv/csunicode.so +%%NEWFILES:%%lib/iconv/cyrillic.so +%%NEWFILES:%%lib/iconv/euc-cn.so +%%NEWFILES:%%lib/iconv/extended_unix_code_packed_format_for_japanese.so +%%NEWFILES:%%lib/iconv/ibm367.so +%%NEWFILES:%%lib/iconv/ibm775.so +%%NEWFILES:%%lib/iconv/ibm819.so +%%NEWFILES:%%lib/iconv/ibm850.so +%%NEWFILES:%%lib/iconv/ibm852.so +%%NEWFILES:%%lib/iconv/ibm855.so +%%NEWFILES:%%lib/iconv/ibm866.so +%%NEWFILES:%%lib/iconv/iso-10646-utf-16.so +%%NEWFILES:%%lib/iconv/iso-10646-utf-8.so +%%NEWFILES:%%lib/iconv/iso-ir-100.so +%%NEWFILES:%%lib/iconv/iso-ir-101.so +%%NEWFILES:%%lib/iconv/iso-ir-110.so +%%NEWFILES:%%lib/iconv/iso-ir-144.so +%%NEWFILES:%%lib/iconv/iso-ir-58.so +%%NEWFILES:%%lib/iconv/iso-ir-87.so +%%NEWFILES:%%lib/iconv/iso646-us.so +%%NEWFILES:%%lib/iconv/iso_646.irv:1991.so +%%NEWFILES:%%lib/iconv/iso_8859-1.so +%%NEWFILES:%%lib/iconv/iso_8859-15.so +%%NEWFILES:%%lib/iconv/iso_8859-15:1998.so +%%NEWFILES:%%lib/iconv/iso_8859-1:1987.so +%%NEWFILES:%%lib/iconv/iso_8859-2.so +%%NEWFILES:%%lib/iconv/iso_8859-2:1987.so +%%NEWFILES:%%lib/iconv/iso_8859-4.so +%%NEWFILES:%%lib/iconv/iso_8859-4:1988.so +%%NEWFILES:%%lib/iconv/iso_8859-5.so +%%NEWFILES:%%lib/iconv/iso_8859-5:1988.so +%%NEWFILES:%%lib/iconv/jis_c6226-1983.so +%%NEWFILES:%%lib/iconv/ks_x_1001.so +%%NEWFILES:%%lib/iconv/l1.so +%%NEWFILES:%%lib/iconv/l2.so +%%NEWFILES:%%lib/iconv/l4.so +%%NEWFILES:%%lib/iconv/latin1.so +%%NEWFILES:%%lib/iconv/latin2.so +%%NEWFILES:%%lib/iconv/latin4.so +%%NEWFILES:%%lib/iconv/ms_kanji.so +%%NEWFILES:%%lib/iconv/ucs-2.so +%%NEWFILES:%%lib/iconv/ucs-4.so +%%NEWFILES:%%lib/iconv/ucs4.so +%%NEWFILES:%%lib/iconv/us.so +%%NEWFILES:%%lib/iconv/utf16.so +%%NEWFILES:%%lib/iconv/utf8.so +%%NEWFILES:%%lib/iconv/x0201.so +%%NEWFILES:%%lib/iconv/x0208.so @dirrm lib/iconv To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 16: 4: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from alchemy.oven.org (shiva8.ksl.co.il [199.203.25.43]) by hub.freebsd.org (Postfix) with ESMTP id D922537B503 for ; Fri, 6 Oct 2000 16:03:50 -0700 (PDT) Received: (from mapc@localhost) by alchemy.oven.org (8.11.0/8.11.0) id e96L44420430 for ports@freebsd.org; Sat, 7 Oct 2000 00:04:04 +0300 (IDT) (envelope-from mapc) Date: Sat, 7 Oct 2000 00:04:03 +0300 From: Roman Shterenzon To: ports@freebsd.org Subject: ports/20837 Message-ID: <20001007000403.A20426@alchemy.oven.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Is there some reason for this PR not being committed? Are there any problems with it that I can fix? Thank you in advance, --Roman Shterenzon, UNIX System Administrator and Consultant [ Xpert UNIX Systems Ltd., Herzlia, Israel. Tel: +972-9-9522361 ] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 16:21: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id A6E8337B502; Fri, 6 Oct 2000 16:21:06 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e96NL5F18674; Fri, 6 Oct 2000 19:21:05 -0400 (EDT) Date: Fri, 6 Oct 2000 19:21:05 -0400 (EDT) From: Trevor Johnson To: vanilla@freebsd.org Cc: ports@freebsd.org Subject: update for graphics/gimp1 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Besides this, patches/patch-an should be removed. diff -ruN gimp1.orig/Makefile gimp1/Makefile --- gimp1.orig/Makefile Fri Oct 6 21:17:31 2000 +++ gimp1/Makefile Fri Oct 6 21:42:45 2000 @@ -6,7 +6,7 @@ # PORTNAME= gimp -PORTVERSION= 1.1.26 +PORTVERSION= 1.1.27 CATEGORIES= graphics gnome MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v${PORTVERSION}/ \ ftp://ftp.insync.net/pub/mirrors/ftp.gimp.org/gimp/unstable/v${PORTVERSION}/ \ diff -ruN gimp1.orig/files/md5 gimp1/files/md5 --- gimp1.orig/files/md5 Fri Oct 6 06:57:28 2000 +++ gimp1/files/md5 Fri Oct 6 21:42:49 2000 @@ -1 +1 @@ -MD5 (gimp-1.1.26.tar.bz2) = 4951bb1f992cdd351c5c3861ba197bcf +MD5 (gimp-1.1.27.tar.bz2) = a00d603344a0b6d5890a4d2209406115 diff -ruN gimp1.orig/patches/patch-plug-ins_print_print-escp2_c gimp1/patches/patch-plug-ins_print_print-escp2_c --- gimp1.orig/patches/patch-plug-ins_print_print-escp2_c Thu Jan 1 00:00:00 1970 +++ gimp1/patches/patch-plug-ins_print_print-escp2_c Fri Oct 6 23:14:27 2000 @@ -0,0 +1,20 @@ +--- plug-ins/print/print-escp2.c.orig Wed Oct 4 17:36:42 2000 ++++ plug-ins/print/print-escp2.c Fri Oct 6 23:13:42 2000 +@@ -26,6 +26,8 @@ + * compile on generic platforms that don't support glib, gimp, gtk, etc. + */ + ++#include ++ + #ifndef WEAVETEST + #include "print.h" + #endif +@@ -4000,7 +4002,7 @@ + if (lineoffs[0].v[j] != 0) + fprintf(stderr, + "WARNING: pass %d subpass %d row %d: lineoffs %ld\n", +- w.pass, i, row, lineoffs[0].v[j]); ++ w.pass, i, row, (long)lineoffs[0].v[j]); + lineoffs[0].v[j] = 0; + lineactive[0].v[j] = 0; + } -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 16:24:57 2000 Delivered-To: freebsd-ports@freebsd.org Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 3384D37B503 for ; Fri, 6 Oct 2000 16:24:55 -0700 (PDT) Received: from dwcjr (unknown [216.118.21.147]) by leviathan.inethouston.com (Postfix) with SMTP id AAF30177F2D; Fri, 6 Oct 2000 18:26:12 -0500 (CDT) Message-ID: <015601c02fed$01091160$931576d8@inethouston.net> From: "David W. Chapman Jr." To: "missnglnk" Cc: Subject: FreeBSD Port: postfix-20000531 Date: Fri, 6 Oct 2000 18:26:53 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Every time I reboot my server I get this error in my log, should I be worried? Oct 6 18:14:22 leviathan postfix[139]: fatal: /usr/local/etc/postfix/postfix-script: Permission denied what is the proper way to stop and start postfix when modifying the config file? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 16:55:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 2773837B66E for ; Fri, 6 Oct 2000 16:55:31 -0700 (PDT) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e96NtUD02679 for ports@freebsd.org; Fri, 6 Oct 2000 16:55:30 -0700 (PDT) Date: Fri, 6 Oct 2000 16:55:30 -0700 From: Alfred Perlstein To: ports@freebsd.org Subject: Re: installing PICO Message-ID: <20001006165530.F272@fw.wintelcom.net> References: <00b301c02fbf$22c70060$cd2710d1@comspace.com> <20001006235236.D890E1F22@static.unixfreak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <20001006235236.D890E1F22@static.unixfreak.org>; from dima@unixfreak.org on Fri, Oct 06, 2000 at 04:52:36PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Dima Dorfman [001006 16:52] wrote: > [ Charset ISO-8859-1 unsupported, converting... ] > > > Please can somebody remind me which package or port I need to install to > > > get the pico text-editor installed? > > > > > > pico is inclued with pine > > (cd /usr/ports/mail/pine4 && make install && make clean) > > Pine is forbidden because of known and potential security problems. > If you really want to install it, you'll probably have to remove the > forbidden flag. > > Hope this helps I always thought that it'd be nice to have a pico port for our newbie users. Especially now that pine is forbidden. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 17:47:23 2000 Delivered-To: freebsd-ports@freebsd.org Received: from front001.cluster1.charter.net (24-216-159-200.hsacorp.net [24.216.159.200]) by hub.freebsd.org (Postfix) with ESMTP id 7DC7237B502 for ; Fri, 6 Oct 2000 17:47:17 -0700 (PDT) Received: from [24.216.138.99] (HELO gforce.johnson.home) by front001.cluster1.charter.net (CommuniGate Pro SMTP 3.3.2) with ESMTP id 927804; Fri, 06 Oct 2000 20:47:16 -0400 Received: (from glenn@localhost) by gforce.johnson.home (8.11.0/8.11.0) id e970lAH38299; Fri, 6 Oct 2000 19:47:10 -0500 (CDT) (envelope-from glenn) Date: Fri, 6 Oct 2000 19:47:10 -0500 From: Glenn Johnson To: Alfred Perlstein Cc: ports@FreeBSD.ORG Subject: Re: installing PICO Message-ID: <20001006194710.A29709@gforce.johnson.home> Mail-Followup-To: Alfred Perlstein , ports@FreeBSD.ORG References: <00b301c02fbf$22c70060$cd2710d1@comspace.com> <20001006235236.D890E1F22@static.unixfreak.org> <20001006165530.F272@fw.wintelcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001006165530.F272@fw.wintelcom.net>; from bright@wintelcom.net on Fri, Oct 06, 2000 at 04:55:30PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Oct 06, 2000 at 04:55:30PM -0700, Alfred Perlstein wrote: > I always thought that it'd be nice to have a pico port for our newbie > users. > > Especially now that pine is forbidden. There is the nano port, in ports/editors. Nano is similar to pico in look and feel. -- Glenn Johnson glennpj@charter.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 18:14:54 2000 Delivered-To: freebsd-ports@freebsd.org Received: from citusc17.usc.edu (citusc17.usc.edu [128.125.38.177]) by hub.freebsd.org (Postfix) with ESMTP id 93B7737B503 for ; Fri, 6 Oct 2000 18:14:52 -0700 (PDT) Received: (from kris@localhost) by citusc17.usc.edu (8.9.3/8.9.3) id SAA01188; Fri, 6 Oct 2000 18:15:30 -0700 (PDT) Date: Fri, 6 Oct 2000 18:15:30 -0700 From: Kris Kennaway To: Espen Skoglund Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/21785: Update of audio/linux-realplayer Message-ID: <20001006181530.B1096@citusc17.usc.edu> References: <200010061950.MAA81520@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200010061950.MAA81520@freefall.freebsd.org>; from esk@ira.uka.de on Fri, Oct 06, 2000 at 12:50:02PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Oct 06, 2000 at 12:50:02PM -0700, Espen Skoglund wrote: > Yes. You're right. The question, of course, is whether one wants to > use the Community Supported player or the player which is supported by > RealNetworks. I must say that I don't really know what the > differences between the two of them are. The previous beta wasn't supported by real, what I think they're doing is making it explicit that "this is code which will probably work, but we don't have an obligation to fix problems". cs1 is a newer version than b2 Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 21:43: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id 8D0F837B502; Fri, 6 Oct 2000 21:43:01 -0700 (PDT) Received: from daemon.local.idaemons.org (203-165-77-17.sugnm1.kt.home.ne.jp [203.165.77.17]) by ms.tokyo.jcom.ne.jp (8.9.3/3.7W 04/27/00) with ESMTP id NAA19084; Sat, 7 Oct 2000 13:42:54 +0900 (JST) Received: by daemon.local.idaemons.org (8.11.0/3.7W) id e974gHF97724; Sat, 7 Oct 2000 13:42:17 +0900 (JST) Date: Sat, 07 Oct 2000 13:42:17 +0900 Message-ID: <86itr5dzyu.wl@daemon.local.idaemons.org> From: "Akinori MUSHA" To: khera@kciLink.com Cc: freebsd-ports@FreeBSD.org, ak@freenet.co.uk, freebsd-emulation@FreeBSD.org Subject: Re: ports/20624: vmware vmmon module locks kernel In-Reply-To: In your message of "Fri, 6 Oct 2000 15:59:21 -0400 (EDT)" <14814.12057.18444.238865@onceler.kciLink.com> References: <200009160902.CAA78123@freefall.freebsd.org> <14814.12057.18444.238865@onceler.kciLink.com> User-Agent: Wanderlust/1.1.2 (Raspberry Beret) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 Emacs/20.7 (i386--freebsd) MULE/4.0 (HANANOEN) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE X-PGP-Comment: I changed my key on 2000-08-10 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Fri, 6 Oct 2000 15:59:21 -0400 (EDT), Vivek Khera wrote: > >>>>> "k" == knu writes: > > k> Synopsis: vmware vmmon module locks kernel > k> State-Changed-From-To: open->closed > k> State-Changed-By: knu > k> State-Changed-When: Sat Sep 16 17:56:24 JST 2000 > k> State-Changed-Why: > k> A similar patch was added. (set the second argument of ether_ifattach() > k> to ETHER_BPF_SUPPORTED, instead of 0 (ETHER_BPF_UNSUPPORTED)) > > k> Please check it out. Thanks for the report! > > I think you patched vmware2 port, not the vmware port. I just tried > it again and had to edit the vmnet.c file to add the second arg to > ether_ifattach() manually. Oh, then I was the wrong person to assign the PR to. I thought you meant vmware2 since someone assigned your PR to me to handle. I'm sorry I cannot be of much help, but please contact ak@freenet.co.uk, the vmware 1.x port maintainer, who must have an environment to test your patch. Also you may want to consult freebsd-emulation to find testers. (both CC'ed) Feel free to ask me for a commit when the fix is ready. I'll be reopening the PR again, shortly. -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 21:45:21 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A4AEF37B66C; Fri, 6 Oct 2000 21:45:17 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA74413; Fri, 6 Oct 2000 21:45:17 -0700 (PDT) (envelope-from knu@FreeBSD.org) Date: Fri, 6 Oct 2000 21:45:17 -0700 (PDT) From: Message-Id: <200010070445.VAA74413@freefall.freebsd.org> To: khera@onceler.kciLink.com, knu@FreeBSD.org, freebsd-ports@FreeBSD.org, freebsd-emulation@FreeBSD.org Subject: Re: ports/20624: vmware vmmon module locks kernel Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: vmware vmmon module locks kernel State-Changed-From-To: closed->open State-Changed-By: knu State-Changed-When: Sat Oct 7 13:43:18 JST 2000 State-Changed-Why: This PR was of vmware 1.x port, not 2.x port. Responsible-Changed-From-To: freebsd-ports->freebsd-emulation Responsible-Changed-By: knu Responsible-Changed-When: Sat Oct 7 13:43:18 JST 2000 Responsible-Changed-Why: Over to the most appropriate list. http://www.freebsd.org/cgi/query-pr.cgi?pr=20624 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Oct 6 23: 0:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BA74037B502 for ; Fri, 6 Oct 2000 23:00:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA99715; Fri, 6 Oct 2000 23:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from squishycow.goldenterrace.com.au (squishycow.goldenterrace.com.au [203.41.110.130]) by hub.freebsd.org (Postfix) with ESMTP id A39E537B503 for ; Fri, 6 Oct 2000 22:50:26 -0700 (PDT) Received: (from sjhoran@localhost) by squishycow.goldenterrace.com.au (8.9.3/8.9.3/k-rad fixez/anti-spam/anti-relay/partridge/pear tree) id QAA70450; Sat, 7 Oct 2000 16:50:23 +1100 (EST) Message-Id: <200010070550.QAA70450@squishycow.goldenterrace.com.au> Date: Sat, 7 Oct 2000 16:50:23 +1100 (EST) From: sjhports@tracking.amos.net Reply-To: sjhports@tracking.amos.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21811: New Port: editors/dte - simple text editor with MSDOS EDIT keybindings. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21811 >Category: ports >Synopsis: New Port: editors/dte - simple text editor with MSDOS EDIT keybindings. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Oct 06 23:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Steve Horan >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: >Description: A simple text editor that uses many of MSDOS EDIT's command shortcuts keybindings. Also makes a nice text editor for use with mailers like mutt. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # dte # dte/files # dte/files/md5 # dte/patches # dte/patches/patch-aa # dte/patches/patch-ab # dte/pkg # dte/pkg/COMMENT # dte/pkg/DESCR # dte/pkg/PLIST # dte/Makefile # dte/README.html # echo c - dte mkdir -p dte > /dev/null 2>&1 echo c - dte/files mkdir -p dte/files > /dev/null 2>&1 echo x - dte/files/md5 sed 's/^X//' >dte/files/md5 << 'END-of-dte/files/md5' XMD5 (dte-6.12.tgz) = db90098c9736ff53c01c5db4cb994e32 END-of-dte/files/md5 echo c - dte/patches mkdir -p dte/patches > /dev/null 2>&1 echo x - dte/patches/patch-aa sed 's/^X//' >dte/patches/patch-aa << 'END-of-dte/patches/patch-aa' X--- Makefile.old Mon Jan 18 16:04:04 1999 X+++ Makefile Wed Oct 4 16:29:24 2000 X@@ -1,13 +1,15 @@ X # Make dte for UNIX [Debian Linux] systems X X-BINDIR = $(DESTDIR)/usr/bin X-LIBDIR = $(DESTDIR)/usr/lib X-MANDIR = $(DESTDIR)/usr/man/man1 X+BINDIR = $(PREFIX)/bin X+LIBDIR = $(PREFIX)/share/doc/dte X+MANDIR = $(PREFIX)/man/man1 X OBJECTS = ed.o utils.o findrep.o block.o hwind.o hwlinux.o window.o X X CCFLAGS = -O2 -m486 -Wall -DHELPFILE='"'${LIBDIR}/dte.hlp'"' -DPROTO -DCURSOR_PS2_MOUSE X X .c.o: ; cc $(CCFLAGS) -c -DUNIX $*.c X+ X+all: dte X X dte: $(OBJECTS) ; cc $(CCFLAGS) -o dte $(OBJECTS) -lncurses X END-of-dte/patches/patch-aa echo x - dte/patches/patch-ab sed 's/^X//' >dte/patches/patch-ab << 'END-of-dte/patches/patch-ab' X--- hwlinux.c.old Wed Oct 4 16:23:55 2000 X+++ hwlinux.c Wed Oct 4 16:25:28 2000 X@@ -636,7 +636,7 @@ X * keep track of which version is being used where. X * Once "dte" becomes more stable, this may not be useful. X */ X- printf("\n\ndte version %s for Linux\n", VERSION); X+ printf("\n\ndte version %s for FreeBSD\n", VERSION); X } X X /* X@@ -1704,7 +1704,7 @@ X * make temporary file name X */ X strcpy(temp, "/tmp/dteXXXXXX"); X- mktemp(temp); X+ mkstemp(temp); X X /* X * work out where to print X@@ -1778,7 +1778,7 @@ X * the save file name unique for each user... X */ X if (strcmp(name, RECOVERY) == 0) { X- strcpy(cp, (id = cuserid(NULL)) ? id : ""); X+ strcpy(cp, (id = getenv("USER")) ? id : ""); X cp += strlen(cp); X } X X@@ -2209,7 +2209,7 @@ X X char *hw_mktemp(char *name) X { X- return mktemp(name); X+ return mkstemp(name); X } X X #ifdef CURSOR_PS2_MOUSE END-of-dte/patches/patch-ab echo c - dte/pkg mkdir -p dte/pkg > /dev/null 2>&1 echo x - dte/pkg/COMMENT sed 's/^X//' >dte/pkg/COMMENT << 'END-of-dte/pkg/COMMENT' XA simple text editor which uses many of the shortcuts used in MSDOS EDIT END-of-dte/pkg/COMMENT echo x - dte/pkg/DESCR sed 's/^X//' >dte/pkg/DESCR << 'END-of-dte/pkg/DESCR' XDTE is a simple text editor written by Doug Thompson from XMonash university in Victoria, Australia. X XDTE supports many of the key shortcuts used in MSDOS EDIT. X XDTE also makes a nice composer for email messages, as an alternative Xto vi or pico. X END-of-dte/pkg/DESCR echo x - dte/pkg/PLIST sed 's/^X//' >dte/pkg/PLIST << 'END-of-dte/pkg/PLIST' Xbin/dte Xshare/doc/dte/dte.hlp Xshare/doc/dte/dte.doc Xshare/doc/dte/dte.rc X@dirrm share/doc/dte END-of-dte/pkg/PLIST echo x - dte/Makefile sed 's/^X//' >dte/Makefile << 'END-of-dte/Makefile' X# New ports collection makefile for: dte X# Date created: 4 Oct 2000 X# Whom: Steve Horan X# X# $FreeBSD$ X# X XPORTNAME= dte XPORTVERSION= 6.12 XCATEGORIES= editors XMASTER_SITES= ftp://mugca.cc.monash.edu.au/pub/dougt/ XDISTNAME= dte-6.12 XEXTRACT_SUFX= .tgz X XMAINTAINER= sjhports@tracking.amos.net X XMAN1= dte.1 X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/dte ${PREFIX}/bin/dte X.if !defined(NOPORTDOCS) X ${MKDIR} ${PREFIX}/share/doc/dte X ${INSTALL_DATA} ${WRKSRC}/dte.doc ${PREFIX}/share/doc/dte/ X ${INSTALL_DATA} ${WRKSRC}/dte.hlp ${PREFIX}/share/doc/dte/ X ${INSTALL_DATA} ${WRKSRC}/dte.rc ${PREFIX}/share/doc/dte/ X ${INSTALL_MAN} ${WRKSRC}/dte.1 ${MANPREFIX}/man/man1 X.endif X Xpost-install: X strip ${PREFIX}/bin/dte X X.include END-of-dte/Makefile echo x - dte/README.html sed 's/^X//' >dte/README.html << 'END-of-dte/README.html' X X The FreeBSD Ports Collection (editors/dte) X

The FreeBSD Ports Collection ("editors/dte")


X X X

You are now in the directory for the port "editors/dte" (package name "dte-6.12"). X X

This is the one-line description for this port: X X


XA simple text editor which uses many of the old MSDOS EDIT command shortcuts. X


X X

Please read the file "pkg/DESCR" for a Xlonger description. X X

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

X X

X X X


X Go up one level X| X Go to top of ports tree X X END-of-dte/README.html exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 4: 0:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C43937B503 for ; Sat, 7 Oct 2000 04:00:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA99619; Sat, 7 Oct 2000 04:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 6B89837B66D; Sat, 7 Oct 2000 03:55:57 -0700 (PDT) Message-Id: <20001007105557.6B89837B66D@hub.freebsd.org> Date: Sat, 7 Oct 2000 03:55:57 -0700 (PDT) From: gabriel_ambuehl@buz.ch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21813: Update 4.9.4 for vpopmail port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21813 >Category: ports >Synopsis: Update 4.9.4 for vpopmail port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 07 04:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Gabriel Ambuehl >Release: 4.1.1-STABLE >Organization: BUZ Internet Services >Environment: >Description: This updates vpopmail to the current stable version 4.9.4. I changed some of the configure arguments to values we consider to be pretty useful. In order to fix the still broken make package / pkg_delete (It can't find the files because it tries to get them out of /usr/local)stuff, I added a hardcoded PREFIX=/home >How-To-Repeat: cd /usr/ports/mail/vpopmail make make install make package >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # vpopmail # vpopmail/files # vpopmail/files/md5 # vpopmail/pkg # vpopmail/pkg/COMMENT # vpopmail/pkg/DESCR # vpopmail/pkg/INSTALL # vpopmail/pkg/PLIST # vpopmail/Makefile # echo c - vpopmail mkdir -p vpopmail > /dev/null 2>&1 echo c - vpopmail/files mkdir -p vpopmail/files > /dev/null 2>&1 echo x - vpopmail/files/md5 sed 's/^X//' >vpopmail/files/md5 << 'END-of-vpopmail/files/md5' XMD5 (vpopmail-4.9.4.tar.gz) = 7bac93ecd0641eb8c991c081a4cfd08e END-of-vpopmail/files/md5 echo c - vpopmail/pkg mkdir -p vpopmail/pkg > /dev/null 2>&1 echo x - vpopmail/pkg/COMMENT sed 's/^X//' >vpopmail/pkg/COMMENT << 'END-of-vpopmail/pkg/COMMENT' XEasy virtual domain and authentication package for use with qmail END-of-vpopmail/pkg/COMMENT echo x - vpopmail/pkg/DESCR sed 's/^X//' >vpopmail/pkg/DESCR << 'END-of-vpopmail/pkg/DESCR' Xvpopmail provides an easy way to manage virtual domains and virtual Xaccounts on a qmail mail server. X XFeatures: X X. Automates all qmail file modifications into documented command line X programs X X. Support for named and IP-based virtual domains X X. NFS safe X X. dynamic directory creation for scalability using fill-in balanced 3 X level tree X X. understands standard qmail .qmail directives X X. interacts well with qmailadmin for web-based administration, courier-imap X for IMAP support, and sqwebmail for web-based mail. X XWWW: http://inter7.com/vpopmail/ END-of-vpopmail/pkg/DESCR echo x - vpopmail/pkg/INSTALL sed 's/^X//' >vpopmail/pkg/INSTALL << 'END-of-vpopmail/pkg/INSTALL' X#!/usr/bin/perl X# X X@groups = ("vchkpw"); X%users = ('vpopmail', "vchkpw"); X# daemon, local, pop, queue, remote, deliver, respectively. X# alias is a special case above... X%gids = ("vchkpw", 89); X%uids = ('vpopmail', 89); X Xif ($ENV{PACKAGE_BUILDING} || $ARGV[1] eq "PRE-INSTALL") { X $doguid=1; # Make sure we get the assigned guids. X} X Xforeach $group (@groups) { X if (! getgrnam ($group)) { X do checkrpw; # May exit X X $x = "-g $gids{$group}"; X $result = system ("/usr/sbin/pw groupadd $group $x"); X if ($result) { X die "Failed to add group $group as gid $gids{$group}\n"; X } X } X} X Xif (! getpwnam ("alias")) { X do checkrpw; # May exit X X $x = "-u $uids{'alias'}"; X $result = system ("/usr/sbin/pw useradd alias -g qnofiles -d \"$ENV{PKG_PREFIX}/alias\" -s /nonexistent $x"); X if ($result) { X die "Failed to add user alias as uid $uids{'alias'}\n"; X } X} X Xforeach $user (keys %users) { X if (! getpwnam ($user)) { X do checkrpw; # May exit X X $x = "-u $uids{$user}"; X $result = system ("/usr/sbin/pw useradd $user -g $users{$user} -d \"$ENV{PKG_PREFIX}\" -s /nonexistent $x"); X if ($result) { X die "Failed to add user $user as uid $uids{$user}\n"; X } X } X} X X# Check that all gids/uids are as they should be... X# If we are being installed as a package... Xif ($doguid) { X foreach $group (@groups) { X if (getgrnam($group) != $gids{$group}) { X die "Group $group should have gid $gids{$group}\n"; X } X } X X foreach $user (keys %users) { X if (getpwnam($user) != $uids{$user}) { X die "User $user should have uid $uids{$user}\n"; X } X } X} X Xexit 0; X Xsub checkrpw { X if (! -x "/usr/sbin/pw") { X print <<'EOM'; XThis system looks like a pre-2.2 version of FreeBSD. We see that it Xis missing the "pw" utility. We need this utility. Please get and Xinstall it, and try again. You can get the source from: X X ftp://ftp.freebsd.org/pub/FreeBSD/FreeBSD-current/src/usr.sbin/pw.tar.gz X XEOM X die "No /usr/sbin/pw"; X } X X if ($> != 0) { X print "It is necessary to add missing vpopmail users/groups at"; X print "this stage. Please either add them manually or retry"; X print "as root."; X # Let pw(1) signal the failure so the user can see which X # group/user is actually missing. X } X} END-of-vpopmail/pkg/INSTALL echo x - vpopmail/pkg/PLIST sed 's/^X//' >vpopmail/pkg/PLIST << 'END-of-vpopmail/pkg/PLIST' Xvpopmail/bin/clearopensmtp Xvpopmail/bin/vaddaliasdomain Xvpopmail/bin/vadddomain Xvpopmail/bin/vadduser Xvpopmail/bin/vchkpw Xvpopmail/bin/vconvert Xvpopmail/bin/vdeldomain Xvpopmail/bin/vdelivermail Xvpopmail/bin/vdeluser Xvpopmail/bin/vmkpasswd Xvpopmail/bin/vmoduser Xvpopmail/bin/vpasswd Xvpopmail/bin/vpopbull Xvpopmail/bin/vsetuserquota Xvpopmail/bin/vuserinfo Xvpopmail/doc/doc_html/vpopmail.html Xvpopmail/doc/doc_html/vpopmailapi.png Xvpopmail/doc/man_html/clearopensmtp.html Xvpopmail/doc/man_html/index.html Xvpopmail/doc/man_html/vaddaliasdomain.html Xvpopmail/doc/man_html/vadddomain.html Xvpopmail/doc/man_html/vadduser.html Xvpopmail/doc/man_html/vchkpw.html Xvpopmail/doc/man_html/vconvert.html Xvpopmail/doc/man_html/vdeldomain.html Xvpopmail/doc/man_html/vdelivermail.html Xvpopmail/doc/man_html/vdeluser.html Xvpopmail/doc/man_html/vpasswd.html Xvpopmail/doc/man_html/vpopbull.html Xvpopmail/doc/man_html/vsetuserquota.html Xvpopmail/include/config.h Xvpopmail/include/vauth.h Xvpopmail/include/vpopmail.h Xvpopmail/include/vpopmail_config.h Xvpopmail/lib/libvpopmail.a X@dirrm vpopmail/users X@dirrm vpopmail/lib X@dirrm vpopmail/include X@dirrm vpopmail/etc X@dirrm vpopmail/domains X@dirrm vpopmail/doc/man_html X@dirrm vpopmail/doc/doc_html X@dirrm vpopmail/doc X@dirrm vpopmail/bin X@dirrm vpopmail END-of-vpopmail/pkg/PLIST echo x - vpopmail/Makefile sed 's/^X//' >vpopmail/Makefile << 'END-of-vpopmail/Makefile' X# New ports collection makefile for: vpopmail X# Date created: 21 Sep 2000 X# Whom: Neil Blakey-Milner X# X# $FreeBSD: ports/mail/vpopmail/Makefile,v 1.2 2000/09/22 11:39:14 nbm Exp $ X# X XPORTNAME= vpopmail XPORTVERSION= 4.9.4 XCATEGORIES= mail XMASTER_SITES= http://www.inter7.com/vpopmail/ X XMAINTAINER= nbm@FreeBSD.org X XBUILD_DEPENDS= ${QMAIL_DIR}/bin/qmail-send:${PORTSDIR}/mail/qmail \ X ${LOCALBASE}/bin/tcprules:${PORTSDIR}/sysutils/ucspi-tcp XRUN_DEPENDS= ${QMAIL_DIR}/bin/qmail-send:${PORTSDIR}/mail/qmail \ X ${LOCALBASE}/bin/tcprules:${PORTSDIR}/sysutils/ucspi-tcp X XGNU_CONFIGURE= YES XUSE_GMAKE= YES X X# I use values I found to be useful in the past -- Gabriel Ambuehl XCONFIGURE_ARGS= --enable-qmail-dir=${QMAIL_DIR} \ X --enable-hardquota=10000000 \ X --enable-passwd=n \ X --enable-apop=y \ X --enable-roaming-users=y \ X --enable-logging=y \ X --enable-relay-clear-minutes=30 X X# X# Attempt to set the location of qmail by a simple check. Override this X# if your qmail lives elsewhere. X# X X.if exists(${LOCALBASE}/qmail/bin/qmail-send) XQMAIL_DIR?= ${LOCALBASE}/qmail X.else XQMAIL_DIR?= /var/qmail X.endif X X# X# This port doesn't honour PREFIX, it honours vpopmail's home directory. X# Since we create vpopmail if it doesn't exist, we set it so that it X# does honour PREFIX. -- nbm X# X X#This seems to break the make package stuff. Inter7 strongly recommends to put vpopmail X#into /home/vpopmail so I added the first line. Remove it when you need to have it X#somewhere else -- GA X XPREFIX=/home X Xpre-configure: X @PKG_PREFIX=${PREFIX}/vpopmail ${PERL5} ${PKGDIR}/INSTALL X X.include END-of-vpopmail/Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 4:10: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5B9EC37B503 for ; Sat, 7 Oct 2000 04:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA06774; Sat, 7 Oct 2000 04:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id 5753237B502 for ; Sat, 7 Oct 2000 04:02:09 -0700 (PDT) Received: (qmail 35661 invoked by uid 100); 7 Oct 2000 11:02:03 -0000 Message-Id: <20001007110203.35660.qmail@guru.mired.org> Date: 7 Oct 2000 11:02:03 -0000 From: mwm@mired.org Reply-To: mwm@mired.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21814: Inetd's very existence is a security risk. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21814 >Category: ports >Synopsis: Inetd's very existence is a security risk. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 07 04:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Mike Meyer >Release: FreeBSD 5.0-CURRENT i386 >Organization: Meyer Consulting >Environment: A system that's going to be exposed to the internet-at-large, and thus needs to be secured. >Description: I always (always, always, always) turn off inetd on any system that needs to be secured against exposure to the world. I'd really it rather not be on the system *at all*. >How-To-Repeat: "make installworld" on your favorite box that doesn't run inetd, and notice that you get a brand, spanking new copy of inetd. >Fix: The following patches add a hook to usr.sbin/Makefile to optionally disable building inetd, and an appropriate line to etc/defaults/make.conf describing the hook. --- etc/defaults/make.conf-orig Sat Oct 7 05:18:01 2000 +++ etc/defaults/make.conf Sat Oct 7 05:18:19 2000 @@ -59,6 +59,7 @@ #NO_CVS= true # do not build CVS #NO_BIND= true # do not build BIND #NO_FORTRAN= true # do not build g77 and related libraries +#NO_INETD= true # do not build and install sendmial #NO_LPR= true # do not build lpr and related programs #NO_MAILWRAPPER=true # do not build the mailwrapper(8) MTA selector #NO_MODULES= true # do not build modules with the kernel --- usr.sbin/Makefile-orig Sat Oct 7 04:23:59 2000 +++ usr.sbin/Makefile Sat Oct 7 04:24:30 2000 @@ -32,7 +32,6 @@ getextattr \ gifconfig \ ifmcstat \ - inetd \ iostat \ ipftest \ ipresend \ @@ -130,6 +129,10 @@ ndc \ nslookup \ nsupdate +.endif + +.if !defined(NO_INETD) +SUBDIR+=inetd .endif .if !defined(NO_LPR) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 4:40: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8994F37B502 for ; Sat, 7 Oct 2000 04:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA18449; Sat, 7 Oct 2000 04:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 7 Oct 2000 04:40:02 -0700 (PDT) Message-Id: <200010071140.EAA18449@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Kris Kennaway Subject: Re: ports/21814: Inetd's very existence is a security risk. Reply-To: Kris Kennaway Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21814; it has been noted by GNATS. From: Kris Kennaway To: mwm@mired.org Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/21814: Inetd's very existence is a security risk. Date: Sat, 7 Oct 2000 04:35:18 -0700 On Sat, Oct 07, 2000 at 11:02:03AM -0000, mwm@mired.org wrote: > "make installworld" on your favorite box that doesn't run > inetd, and notice that you get a brand, spanking new copy of > inetd. That's what this is for in /etc/rc.conf: inetd_enable="NO" # Run the network daemon dispatcher (YES/NO). It's only a security risk if you're running it. Kris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 4:42:58 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A58237B503; Sat, 7 Oct 2000 04:42:57 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA19548; Sat, 7 Oct 2000 04:42:56 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Sat, 7 Oct 2000 04:42:56 -0700 (PDT) From: Message-Id: <200010071142.EAA19548@freefall.freebsd.org> To: jeh@FreeBSD.org, freebsd-ports@FreeBSD.org, jeh@FreeBSD.org Subject: Re: ports/21609: Update port: biology/povchem Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: biology/povchem Responsible-Changed-From-To: freebsd-ports->jeh Responsible-Changed-By: jeh Responsible-Changed-When: Sat Oct 7 04:42:15 PDT 2000 Responsible-Changed-Why: I'll handle this http://www.freebsd.org/cgi/query-pr.cgi?pr=21609 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 4:43:51 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A977337B503; Sat, 7 Oct 2000 04:43:49 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA19824; Sat, 7 Oct 2000 04:43:49 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Sat, 7 Oct 2000 04:43:49 -0700 (PDT) From: Message-Id: <200010071143.EAA19824@freefall.freebsd.org> To: jeh@FreeBSD.org, freebsd-ports@FreeBSD.org, jeh@FreeBSD.org Subject: Re: ports/21607: Update port: biology/deft Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: biology/deft Responsible-Changed-From-To: freebsd-ports->jeh Responsible-Changed-By: jeh Responsible-Changed-When: Sat Oct 7 04:42:15 PDT 2000 Responsible-Changed-Why: I'll handle this http://www.freebsd.org/cgi/query-pr.cgi?pr=21609 Responsible-Changed-From-To: freebsd-ports->jeh Responsible-Changed-By: jeh Responsible-Changed-When: Sat Oct 7 04:42:15 PDT 2000 Responsible-Changed-Why: I'll handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=21607 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 4:44:22 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6085F37B502; Sat, 7 Oct 2000 04:44:21 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA20034; Sat, 7 Oct 2000 04:44:21 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Date: Sat, 7 Oct 2000 04:44:21 -0700 (PDT) From: Message-Id: <200010071144.EAA20034@freefall.freebsd.org> To: jeh@FreeBSD.org, freebsd-ports@FreeBSD.org, jeh@FreeBSD.org Subject: Re: ports/21608: Update port: biology/ortep3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: biology/ortep3 Responsible-Changed-From-To: freebsd-ports->jeh Responsible-Changed-By: jeh Responsible-Changed-When: Sat Oct 7 04:42:15 PDT 2000 Responsible-Changed-Why: I'll handle this http://www.freebsd.org/cgi/query-pr.cgi?pr=21609 Responsible-Changed-From-To: freebsd-ports->jeh Responsible-Changed-By: jeh Responsible-Changed-When: Sat Oct 7 04:42:15 PDT 2000 Responsible-Changed-Why: I'll handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=21607 Responsible-Changed-From-To: freebsd-ports->jeh Responsible-Changed-By: jeh Responsible-Changed-When: Sat Oct 7 04:42:15 PDT 2000 Responsible-Changed-Why: I'll handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=21608 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 4:50: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FACE37B502 for ; Sat, 7 Oct 2000 04:50:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA21816; Sat, 7 Oct 2000 04:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 7 Oct 2000 04:50:02 -0700 (PDT) Message-Id: <200010071150.EAA21816@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Mike Meyer Subject: Re: ports/21814: Inetd's very existence is a security risk. Reply-To: Mike Meyer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/21814; it has been noted by GNATS. From: Mike Meyer To: Kris Kennaway Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/21814: Inetd's very existence is a security risk. Date: Sat, 7 Oct 2000 06:42:55 -0500 (CDT) Kris Kennaway writes: > On Sat, Oct 07, 2000 at 11:02:03AM -0000, mwm@mired.org wrote: > > > "make installworld" on your favorite box that doesn't run > > inetd, and notice that you get a brand, spanking new copy of > > inetd. > That's what this is for in /etc/rc.conf: > inetd_enable="NO" # Run the network daemon dispatcher (YES/NO). > It's only a security risk if you're running it. Didn't really read the PR carefully, did you? The relevant part is: I always (always, always, always) turn off inetd on any system that needs to be secured against exposure to the world. I'd really it rather not be on the system *at all*. In other words, I *know* how to turn, but I want it gone completely. The patch makes that much saner. If you don't like that behavior, don't add NO_INETD to /etc/make.conf. ; Sat, 7 Oct 2000 05:40:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA39091; Sat, 7 Oct 2000 05:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hermes.mail.nl.demon.net (hermes.mail.nl.demon.net [194.159.72.197]) by hub.freebsd.org (Postfix) with ESMTP id C1EFF37B66D for ; Sat, 7 Oct 2000 05:34:46 -0700 (PDT) Received: from samhain.noc.nl.demon.net ([194.159.72.214]) by hermes.mail.nl.demon.net with esmtp (Exim 3.16 #2) id 13htBb-000Bu5-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 07 Oct 2000 14:34:43 +0200 Received: by samhain.noc.nl.demon.net with local id 13htBa-0006m7-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 07 Oct 2000 12:34:42 +0000 Message-Id: Date: Sat, 07 Oct 2000 12:34:42 +0000 From: Phil Pennock Reply-To: pdp@nl.demon.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21815: lftp port has missing dependency Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21815 >Category: ports >Synopsis: lftp port has missing dependency >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 07 05:40:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Phil Pennock >Release: FreeBSD 3.5-STABLE i386 >Organization: >Environment: FreeBSD 3.x, older SSL library. Ports tree updated 2000-10-06. >Description: "make" in /usr/ports/ftp/lftp fails unless (a modern) SSL library is installed. >How-To-Repeat: I had an old version of openssl, it wasn't found by the port configure, so USE_SSL was not defined. This led to linkage errors trying to resolve undefined symbols. After upgrading to openssl-0.9.5a_1, the lftp configure found the SSL libraries and lftp compiled. >Fix: Update Makefile with an appropriate dependency rule for SSL. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 6:45:19 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp.email.msn.com (cpimssmtpu03.email.msn.com [207.46.181.19]) by hub.freebsd.org (Postfix) with ESMTP id 41E6337B503 for ; Sat, 7 Oct 2000 06:45:17 -0700 (PDT) Received: from oemcomputer - 63.14.100.48 by email.msn.com with Microsoft SMTPSVC; Sat, 7 Oct 2000 06:44:22 -0700 Message-ID: <008101c0307d$df0584e0$30640e3f@oemcomputer> From: "padmlin" To: Subject: PHP + gd + ttf for FreeBSD Date: Sat, 7 Oct 2000 09:44:31 -0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_007E_01C03043.31588200" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_007E_01C03043.31588200 Content-Type: text/plain; charset="big5" Content-Transfer-Encoding: base64 SSBhbSBqdXN0IHdvbmRlcmluZyBpZiB5b3UgaGF2ZSANCnBocCArIGdkICsgdHRmIHBvcnQgZm9y IEZyZWVCU0QNCg0KSG93IGRvIEkgc2VhcmNoIGZvciBjZXJ0YWluIGFwcGxpY2F0aW9uIGluIHBv cnQNCg0KVGhhbmtzLg0KDQpEZXJDaHVuZyBUb20gTGluDQooNDQwKSA2NDYtMTUyNQ0KcGFkbWxp bkBtc24uY29tDQo= ------=_NextPart_000_007E_01C03043.31588200 Content-Type: text/html; charset="big5" Content-Transfer-Encoding: base64 PCFET0NUWVBFIEhUTUwgUFVCTElDICItLy9XM0MvL0RURCBIVE1MIDQuMCBUcmFuc2l0aW9uYWwv L0VOIj4NCjxIVE1MPjxIRUFEPg0KPE1FVEEgY29udGVudD0idGV4dC9odG1sOyBjaGFyc2V0PWJp ZzUiIGh0dHAtZXF1aXY9Q29udGVudC1UeXBlPg0KPE1FVEEgY29udGVudD0iTVNIVE1MIDUuMDAu MjMxNC4xMDAwIiBuYW1lPUdFTkVSQVRPUj4NCjxTVFlMRT48L1NUWUxFPg0KPC9IRUFEPg0KPEJP RFkgYmdDb2xvcj0jZmZmZmZmPg0KPERJVj48Rk9OVCBmYWNlPUFyaWFsIHNpemU9Mj5JIGFtIGp1 c3Qgd29uZGVyaW5nIGlmIHlvdSBoYXZlIDwvRk9OVD48L0RJVj4NCjxESVY+PEZPTlQgZmFjZT1B cmlhbCBzaXplPTI+cGhwICsgZ2QgKyB0dGYgcG9ydCBmb3IgRnJlZUJTRDwvRk9OVD48L0RJVj4N CjxESVY+Jm5ic3A7PC9ESVY+DQo8RElWPjxGT05UIGZhY2U9QXJpYWwgc2l6ZT0yPkhvdyBkbyBJ IHNlYXJjaCBmb3IgY2VydGFpbiBhcHBsaWNhdGlvbiBpbiANCnBvcnQ8L0ZPTlQ+PC9ESVY+DQo8 RElWPiZuYnNwOzwvRElWPg0KPERJVj48Rk9OVCBmYWNlPUFyaWFsIHNpemU9Mj5UaGFua3MuPC9G T05UPjwvRElWPg0KPERJVj4mbmJzcDs8L0RJVj4NCjxESVY+PEZPTlQgZmFjZT1BcmlhbCBzaXpl PTI+RGVyQ2h1bmcgVG9tIExpbjxCUj4oNDQwKSA2NDYtMTUyNTxCUj48QSANCmhyZWY9Im1haWx0 bzpwYWRtbGluQG1zbi5jb20iPnBhZG1saW5AbXNuLmNvbTwvQT48L0ZPTlQ+PC9ESVY+PC9CT0RZ PjwvSFRNTD4NCg== ------=_NextPart_000_007E_01C03043.31588200-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 6:50:58 2000 Delivered-To: freebsd-ports@freebsd.org Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id A258737B502 for ; Sat, 7 Oct 2000 06:50:53 -0700 (PDT) Received: from dwcjr (unknown [216.118.21.147]) by leviathan.inethouston.com (Postfix) with SMTP id A9B07177E0E; Sat, 7 Oct 2000 08:52:23 -0500 (CDT) Message-ID: <032301c03065$ff603860$931576d8@inethouston.net> From: "David W. Chapman Jr." To: "padmlin" , References: <008101c0307d$df0584e0$30640e3f@oemcomputer> Subject: Re: PHP + gd + ttf for FreeBSD Date: Sat, 7 Oct 2000 08:53:39 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0320_01C0303C.1637CAA0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0320_01C0303C.1637CAA0 Content-Type: text/plain; charset="big5" Content-Transfer-Encoding: quoted-printable after you compile apache from /usr/ports/www/apache13 you can compile php in /usr/ports/www/modphp[3,4] and it will ask you what php extentions you want. to search use www.freebsd.org/ports ----- Original Message -----=20 From: padmlin=20 To: ports@FreeBSD.org=20 Sent: Saturday, October 07, 2000 11:44 AM Subject: PHP + gd + ttf for FreeBSD I am just wondering if you have=20 php + gd + ttf port for FreeBSD How do I search for certain application in port Thanks. DerChung Tom Lin (440) 646-1525 padmlin@msn.com ------=_NextPart_000_0320_01C0303C.1637CAA0 Content-Type: text/html; charset="big5" Content-Transfer-Encoding: quoted-printable

after you compile apache from=20 /usr/ports/www/apache13
you can compile php in=20 /usr/ports/www/modphp[3,4]
and it will ask you what php extentions = you=20 want.
 
to search use www.freebsd.org/ports
 
----- Original Message -----
From:=20 padmlin=20
Sent: Saturday, October 07, = 2000 11:44=20 AM
Subject: PHP + gd + ttf for = FreeBSD

I am just wondering if you have =
php + gd + ttf port for = FreeBSD
 
How do I search for certain = application in=20 port
 
Thanks.
 
DerChung Tom Lin
(440) = 646-1525
padmlin@msn.com
------=_NextPart_000_0320_01C0303C.1637CAA0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 6:52:40 2000 Delivered-To: freebsd-ports@freebsd.org Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id B2A1737B502 for ; Sat, 7 Oct 2000 06:52:37 -0700 (PDT) Received: from thehousleys.net (baby.int.thehousleys.net [192.168.0.24]) by thehousleys.net (8.11.0/8.11.0) with ESMTP id e97DqWQ33629; Sat, 7 Oct 2000 09:52:32 -0400 (EDT) (envelope-from jim@thehousleys.net) Message-ID: <39DF2A9D.BB630012@thehousleys.net> Date: Sat, 07 Oct 2000 09:52:29 -0400 From: James Housley X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: padmlin Cc: ports@FreeBSD.ORG Subject: Re: PHP + gd + ttf for FreeBSD References: <008101c0307d$df0584e0$30640e3f@oemcomputer> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > padmlin wrote: > > I am just wondering if you have > php + gd + ttf port for FreeBSD > > How do I search for certain application in port > Yes we do. Install you choise apache port first (apache, apache+ipv6, or apache-ssl) then install mod_php3 or mod_php4. The mod_php[3|4] will give the option of gd, ttf, and a bunch of others. http://www.FreeBSD.org/ports/www.html Jim -- jeh@FreeBSD.org http://www.FreeBSD.org The Power to Serve jim@TheHousleys.Net http://www.TheHousleys.net --------------------------------------------------------------------- "Eagles may soar, but weasels don't get sucked into jet engines" -- Anon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 7:10: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D6DE037B66C for ; Sat, 7 Oct 2000 07:10:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA37680; Sat, 7 Oct 2000 07:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id D2B4737B502 for ; Sat, 7 Oct 2000 07:05:31 -0700 (PDT) Received: from home.dinoex.sub.org (home.dinoex.de [212.184.201.180]) by net2.dinoex.sub.org (8.11.1/8.11.1) with ESMTP id e97E3KX00315 for ; Sat, 7 Oct 2000 16:03:20 +0200 (CEST) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.11.1/8.11.1) id e97E2Tl60513; Sat, 7 Oct 2000 16:02:29 +0200 (CEST) (envelope-from dm) Message-Id: <200010071402.e97E2Tl60513@home.dinoex.sub.org> Date: Sat, 7 Oct 2000 16:02:29 +0200 (CEST) From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21817: update german/webalizer2 (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21817 >Category: ports >Synopsis: update german/webalizer2 (by maintainer) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 07 07:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 4.1.1-STABLE i386 >Organization: privat >Environment: gd-lib, apache >Description: New Version is out. a small fix is in the Makefile, as the Directory ${PREFIX}/etc must be set. >How-To-Repeat: apply the patches to use new version. diff webalizer2/Makefile de-webalizer2-2.1.5/Makefile --- webalizer2/Makefile Wed Oct 4 20:38:51 2000 +++ de-webalizer2-2.1.5/Makefile Sat Oct 7 16:01:11 2000 @@ -5,11 +5,11 @@ # $FreeBSD: ports/german/webalizer2/Makefile,v 1.17 2000/09/30 15:22:23 kevlo Exp $ PORTNAME= webalizer -PORTVERSION= 2.1.3 +PORTVERSION= 2.1.5 CATEGORIES= german www MASTER_SITES= ftp://ftp.mrunix.net/pub/webalizer/pre-release/ \ ftp://ftp.lan-ks.de/pub/FreeBSD/distfiles/ -DISTNAME= ${PORTNAME}-2.01-03-src +DISTNAME= ${PORTNAME}-2.01-05-src MAINTAINER= dirk.meyer@dinoex.sub.org @@ -24,6 +24,7 @@ .include CONFIGURE_ARGS+= --enable-dns \ + --with-etcdir=${PREFIX}/etc \ --with-gdlib=${PREFIX}/lib \ --with-gd=${PREFIX}/include/gd \ --with-language=${WEBALIZER_LANG} @@ -36,7 +37,6 @@ PLIST_SUB+= PKGNAMEPREFIX=${PKGNAMEPREFIX} pre-configure: - @${PERL5} -pi -e "s=/etc=${PREFIX}/etc=" ${WRKSRC}/webalizer.c @${PERL5} -pi -e "s=webalizer.conf=${PKGNAMEPREFIX}webalizer.conf=" \ ${WRKSRC}/webalizer.c diff webalizer2/files/md5 de-webalizer2-2.1.5/files/md5 --- webalizer2/files/md5 Wed Oct 4 20:38:51 2000 +++ de-webalizer2-2.1.5/files/md5 Sat Oct 7 15:41:50 2000 @@ -1 +1 @@ -MD5 (webalizer-2.01-03-src.tar.bz2) = ec3146a2a6573d59ddf8db188c788b21 +MD5 (webalizer-2.01-05-src.tar.bz2) = ab45bc2c7893c00370a1fcbd9b71232e >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 7:20:37 2000 Delivered-To: freebsd-ports@freebsd.org Received: from alpha.dante.org.uk (alpha.dante.org.uk [193.63.211.19]) by hub.freebsd.org (Postfix) with ESMTP id E37A237B502; Sat, 7 Oct 2000 07:20:33 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=dante.org.uk) by alpha.dante.org.uk with esmtp (Exim 3.12 #4) id 13hupz-0002vo-00; Sat, 07 Oct 2000 15:20:32 +0100 Message-ID: <39DF3121.90338796@dante.org.uk> Date: Sat, 07 Oct 2000 15:20:22 +0100 From: Konstantin Chuguev Organization: Delivery of Advanced Network Technology to Europe Ltd. X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: ru, en MIME-Version: 1.0 To: Satoshi Asami Cc: knu@FreeBSD.org, ports@FreeBSD.org Subject: Re: converters/iconv build problem on 3-stable References: <200010062208.e96M8ig67103@silvia.hip.berkeley.edu> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Satoshi Asami wrote: > Hi Konstantin, > > It seems converters/iconv doesn't install a lot of files in 3-stable. > The following will "fix" the packaging errors but I'm not sure if it > is the right fix. > The problem is that bsd.lib.mk in FreeBSD-3 does not understand SYMLINKS variable. All these files that are not installed are alternative names (aliases) of charsets, which are currently implemented as symbolic links to main charset names. The SYMLINKS were introduced in bsd.lib.mk in revision 1.86: date 99.03.23.03.06.25; author bde; state Exp; log @Removed all traces of LN_FLAGS. It was only used to produce a link /usr/sbin/sysctl -> ${DESTDIR}/sbin/sysctl in some versions of 2.2, and this link was broken if DESTDIR was set. Added a SYMLINKS macro. This works the same as LINKS, except it creates symlinks and the linked-to pathname may be relative. This is more flexible than LN_FLAGS, since it supports installing symlinks independently of hard links. Use `ln -f[s] ...' instead of `rm -f ...; ln [-s] ...' for LINKS and SYMLINKS. This is equivalent if the target is neither a directory nor a symlink to a directory. If I could find out which version of bsd.lib.mk is used at the moment of the port installation, I would be able to make a conditional post-install target in port's Makefile. Do you have any suggestions how can I do that? The second option can be getting rid of symbolic links and using a text charset.aliases file instead. I like this more and I am going to use this in iconv-2.0 (which will use platform-independent binary tables for CCS instead of dynamically loaded modules and will be able to built both CCS tables and CES shared modules into the library, thus allowing using static iconv.a library as well). As a solution, I can make iconv-1.2 using charset.aliases (perhaps in /usr/local/lib/iconv/) instead of symlinks. Another problem appears in that case though: I need 3 ports (iconv, iconv-extra and iconv-rfc1345) to share the same aliases file and clean it properly after their deinstallation. I am thinking about the way of doing this at the moment. -- Konstantin Chuguev To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 7:27:32 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EB74137B503; Sat, 7 Oct 2000 07:27:30 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA43359; Sat, 7 Oct 2000 07:27:30 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Sat, 7 Oct 2000 07:27:30 -0700 (PDT) From: Message-Id: <200010071427.HAA43359@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: misc/21792: Update port: biology/xdrawchem Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: biology/xdrawchem Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: johan Responsible-Changed-When: Sat Oct 7 07:26:46 PDT 2000 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=21792 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 7:27:49 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5FB6937B66D; Sat, 7 Oct 2000 07:27:47 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA43523; Sat, 7 Oct 2000 07:27:47 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Sat, 7 Oct 2000 07:27:47 -0700 (PDT) From: Message-Id: <200010071427.HAA43523@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: misc/21793: Update port: editors/dedit to 0.6.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: editors/dedit to 0.6.2 Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: johan Responsible-Changed-When: Sat Oct 7 07:27:34 PDT 2000 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=21793 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 7:28: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4AF3837B503; Sat, 7 Oct 2000 07:28:02 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA43687; Sat, 7 Oct 2000 07:28:02 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Sat, 7 Oct 2000 07:28:02 -0700 (PDT) From: Message-Id: <200010071428.HAA43687@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: misc/21794: Update port: ftp/ftpq to 1.00 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: ftp/ftpq to 1.00 Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: johan Responsible-Changed-When: Sat Oct 7 07:27:53 PDT 2000 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=21794 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 7:28:19 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3052537B66C; Sat, 7 Oct 2000 07:28:17 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA43827; Sat, 7 Oct 2000 07:28:17 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Sat, 7 Oct 2000 07:28:17 -0700 (PDT) From: Message-Id: <200010071428.HAA43827@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: misc/21795: Update port: graphics/cqcam to 0.90p11 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/cqcam to 0.90p11 Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: johan Responsible-Changed-When: Sat Oct 7 07:28:09 PDT 2000 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=21795 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 7:28:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1503537B503; Sat, 7 Oct 2000 07:28:38 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA43986; Sat, 7 Oct 2000 07:28:38 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Sat, 7 Oct 2000 07:28:38 -0700 (PDT) From: Message-Id: <200010071428.HAA43986@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: misc/21796: Update port: graphics/gnofract4d to 1.3 (fix ports/21576) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/gnofract4d to 1.3 (fix ports/21576) Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: johan Responsible-Changed-When: Sat Oct 7 07:28:21 PDT 2000 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=21796 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 7:29: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CFB5037B66D; Sat, 7 Oct 2000 07:28:59 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA44148; Sat, 7 Oct 2000 07:28:59 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Sat, 7 Oct 2000 07:28:59 -0700 (PDT) From: Message-Id: <200010071428.HAA44148@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: misc/21797: Update port: graphics/gqview to 0.9.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/gqview to 0.9.1 Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: johan Responsible-Changed-When: Sat Oct 7 07:28:46 PDT 2000 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=21797 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 7:29:18 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1CA2237B503; Sat, 7 Oct 2000 07:29:16 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA44285; Sat, 7 Oct 2000 07:29:16 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Sat, 7 Oct 2000 07:29:16 -0700 (PDT) From: Message-Id: <200010071429.HAA44285@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: misc/21798: Update port: graphics/gtksee Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/gtksee Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: johan Responsible-Changed-When: Sat Oct 7 07:29:02 PDT 2000 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=21798 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 7:29:41 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3937637B503; Sat, 7 Oct 2000 07:29:38 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA44464; Sat, 7 Oct 2000 07:29:38 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Sat, 7 Oct 2000 07:29:38 -0700 (PDT) From: Message-Id: <200010071429.HAA44464@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: misc/21799: Update port: graphics/xpaint to 2.6.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/xpaint to 2.6.1 Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: johan Responsible-Changed-When: Sat Oct 7 07:29:26 PDT 2000 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=21799 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 7:30: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0846437B503; Sat, 7 Oct 2000 07:30:06 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA44677; Sat, 7 Oct 2000 07:30:06 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Sat, 7 Oct 2000 07:30:06 -0700 (PDT) From: Message-Id: <200010071430.HAA44677@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: misc/21800: Update port: mail/qpopper Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: mail/qpopper Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: johan Responsible-Changed-When: Sat Oct 7 07:29:57 PDT 2000 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=21800 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 7:30:27 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0ADDD37B66C; Sat, 7 Oct 2000 07:30:24 -0700 (PDT) Received: (from johan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA44865; Sat, 7 Oct 2000 07:30:24 -0700 (PDT) (envelope-from johan@FreeBSD.org) Date: Sat, 7 Oct 2000 07:30:24 -0700 (PDT) From: Message-Id: <200010071430.HAA44865@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: misc/21801: Update port: misc/rpm to 3.0.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: misc/rpm to 3.0.6 Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: johan Responsible-Changed-When: Sat Oct 7 07:30:09 PDT 2000 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=21801 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 8:29:33 2000 Delivered-To: freebsd-ports@freebsd.org Received: from mail2.panix.com (mail2.panix.com [166.84.0.213]) by hub.freebsd.org (Postfix) with ESMTP id 0596E37B502 for ; Sat, 7 Oct 2000 08:29:32 -0700 (PDT) Received: from panix3.panix.com (panix3.panix.com [166.84.0.228]) by mail2.panix.com (Postfix) with ESMTP id 3DA039072 for ; Sat, 7 Oct 2000 11:29:31 -0400 (EDT) Received: (from stanb@localhost) by panix3.panix.com (8.8.8/8.7.1/PanixN1.0) id LAA18034 for freebsd-ports@freebsd.org; Sat, 7 Oct 2000 11:29:31 -0400 (EDT) From: Message-Id: <200010071529.LAA18034@panix3.panix.com> Subject: ksh93 port? To: freebsd-ports@freebsd.org (FreeBSD Ports) Date: Sat, 7 Oct 2000 11:29:31 -0400 (EDT) X-Mailer: ELM [version 2.5 PL3] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have a couple of questions about the ksh93 port. It apears to depend upon a binary distributin from bell labs that is no longer current. Any idea where I can get this lder distribution? Second, was the source to this not released into the public domain a few months back? If so should the port not be updated to use this source? -- Stan Brown stanb@panix.com 843-745-3154 Charleston SC -- "Be careful not to step in the Microsoft." -- John Denker To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 8:45:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 87A9037B502; Sat, 7 Oct 2000 08:45:11 -0700 (PDT) Received: (from nbm@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA72435; Sat, 7 Oct 2000 08:45:11 -0700 (PDT) (envelope-from nbm@FreeBSD.org) Date: Sat, 7 Oct 2000 08:45:11 -0700 (PDT) From: Message-Id: <200010071545.IAA72435@freefall.freebsd.org> To: nbm@FreeBSD.org, freebsd-ports@FreeBSD.org, nbm@FreeBSD.org Subject: Re: ports/21813: Update 4.9.4 for vpopmail port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update 4.9.4 for vpopmail port Responsible-Changed-From-To: freebsd-ports->nbm Responsible-Changed-By: nbm Responsible-Changed-When: Sat Oct 7 08:44:55 PDT 2000 Responsible-Changed-Why: My port http://www.freebsd.org/cgi/query-pr.cgi?pr=21813 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 8:57:25 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 53F5437B503; Sat, 7 Oct 2000 08:57:23 -0700 (PDT) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA76482; Sat, 7 Oct 2000 08:57:23 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Date: Sat, 7 Oct 2000 08:57:23 -0700 (PDT) From: Message-Id: <200010071557.IAA76482@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21817: update german/webalizer2 (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update german/webalizer2 (by maintainer) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sat Oct 7 08:56:58 PDT 2000 State-Changed-Why: Commited, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=21817 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 9:33: 0 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E42D37B502; Sat, 7 Oct 2000 09:32:57 -0700 (PDT) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA89914; Sat, 7 Oct 2000 09:32:57 -0700 (PDT) (envelope-from billf@FreeBSD.org) Date: Sat, 7 Oct 2000 09:32:57 -0700 (PDT) From: Message-Id: <200010071632.JAA89914@freefall.freebsd.org> To: billf@FreeBSD.org, freebsd-ports@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: conf/21814: Inetd's very existence is a security risk. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Inetd's very existence is a security risk. Responsible-Changed-From-To: freebsd-ports->freebsd-bugs Responsible-Changed-By: billf Responsible-Changed-When: Sat Oct 7 09:29:58 PDT 2000 Responsible-Changed-Why: Thought I'd argue that this PR doesn't even belong in the system, at the very least it doesn't belong in the ports/* PR section. http://www.freebsd.org/cgi/query-pr.cgi?pr=21814 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 9:33:22 2000 Delivered-To: freebsd-ports@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id 543E037B66C for ; Sat, 7 Oct 2000 09:33:20 -0700 (PDT) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id EF0001C72; Sat, 7 Oct 2000 12:33:06 -0400 (EDT) Date: Sat, 7 Oct 2000 12:33:06 -0400 From: Bill Fumerola To: Mike Meyer Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21814: Inetd's very existence is a security risk. Message-ID: <20001007123306.L38472@jade.chc-chimes.com> References: <200010071150.EAA21816@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200010071150.EAA21816@freefall.freebsd.org>; from mwm@mired.org on Sat, Oct 07, 2000 at 04:50:02AM -0700 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Oct 07, 2000 at 04:50:02AM -0700, Mike Meyer wrote: > Didn't really read the PR carefully, did you? The relevant part is: > > I always (always, always, always) turn off inetd on any system > that needs to be secured against exposure to the world. I'd > really it rather not be on the system *at all*. > > In other words, I *know* how to turn, but I want it gone > completely. The patch makes that much saner. If you don't like that > behavior, don't add NO_INETD to /etc/make.conf. This is getting borderline absurd. If you don't like it don't run it. All the other NO_*'s are typically because the program is one that takes a long time to build(usually with no benefit, see ObjC..), conflicts with other programs that do the same thing (sendmail, lpr), or are illegal for some of us to use. We dnn't just make them because we hate the very existance of a program[1]. -- Bill Fumerola - Network Architect, BOFH / Chimes, Inc. billf@chimesnet.com / billf@FreeBSD.org 1. Well, maybe NOPERL counts... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 9:44:39 2000 Delivered-To: freebsd-ports@freebsd.org Received: from guru.mired.org (okc-27-149-77.mmcable.com [24.27.149.77]) by hub.freebsd.org (Postfix) with SMTP id BBDC837B502 for ; Sat, 7 Oct 2000 09:44:36 -0700 (PDT) Received: (qmail 58570 invoked by uid 100); 7 Oct 2000 16:44:28 -0000 From: Mike Meyer MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14815.21228.196822.666136@guru.mired.org> Date: Sat, 7 Oct 2000 11:44:28 -0500 (CDT) To: Bill Fumerola Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21814: Inetd's very existence is a security risk. In-Reply-To: <20001007123306.L38472@jade.chc-chimes.com> References: <200010071150.EAA21816@freefall.freebsd.org> <20001007123306.L38472@jade.chc-chimes.com> X-Mailer: VM 6.72 under 21.1 (patch 10) "Capitol Reef" XEmacs Lucid X-face: "5Mnwy%?j>IIV\)A=):rjWL~NB2aH[}Yq8Z=u~vJ`"(,&SiLvbbz2W`;h9L,Yg`+vb1>RG% *h+%X^n0EZd>TM8_IB;a8F?(Fb"lw'IgCoyM.[Lg#r\ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Bill Fumerola writes: > This is getting borderline absurd. If you don't like it don't run it. That may well be the case. Then again - is anything to far for security? Having it not be there means it doesn't get run, ever. > All the other NO_*'s are typically because the program is one that takes > a long time to build(usually with no benefit, see ObjC..), conflicts with other > programs that do the same thing (sendmail, lpr), or are illegal for some of > us to use. So for whom is it illegal to use the suid perl binary? > We dnn't just make them because we hate the very existance of a program[1]. It's not the existence I hate; it's having it running on machines that it shouldn't be running on that bothers me. I'm tired of removing it by hand. I think the PR should be referred to the security officer (or one of his deputies). If they don't think this patch is worth adding, then it should be closed. Thank you for changing the category; I certainly didn't mean to put it in ports. ; Sat, 7 Oct 2000 09:50:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA95332; Sat, 7 Oct 2000 09:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from milf30.bus.net (milf30.bus.net [207.41.25.30]) by hub.freebsd.org (Postfix) with ESMTP id 7040737B502 for ; Sat, 7 Oct 2000 09:40:50 -0700 (PDT) Received: by milf30.bus.net (Postfix, from userid 1000) id 9752E76301; Sat, 7 Oct 2000 12:40:48 -0400 (EDT) Message-Id: <20001007164048.9752E76301@milf30.bus.net> Date: Sat, 7 Oct 2000 12:40:48 -0400 (EDT) From: "Chuck O'Donnell" Reply-To: "Chuck O'Donnell" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21819: mail/postfix update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21819 >Category: ports >Synopsis: mail/postfix port update to pl09 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 07 09:50:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Chuck O'Donnell >Release: FreeBSD 4.1.1-RELEASE i386 >Organization: >Environment: >Description: the mail/postfix port is out of date with the current postfix stable patch level. >How-To-Repeat: >Fix: The attached patch (shar) updates the Makefile and md5 file. Nothing else changed that I could see. ----- # 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: # # postfix-pl09.patch # echo x - postfix-pl09.patch sed 's/^X//' >postfix-pl09.patch << 'END-of-postfix-pl09.patch' Xdiff -u -r postfix/Makefile postfix-pl09/Makefile X--- postfix/Makefile Sun Jun 4 01:57:50 2000 X+++ postfix-pl09/Makefile Fri Sep 29 17:37:28 2000 X@@ -6,7 +6,7 @@ X # X X PORTNAME= postfix X-PORTVERSION= 19991231.08 X+PORTVERSION= 19991231.09 X CATEGORIES= mail X MASTER_SITES= ftp://ftp.merit.edu/postfix/official/ \ X ftp://ftp.snoopy.net/pub/mirrors/postfix/official/ \ X@@ -15,7 +15,7 @@ X ftp://ftp.sunet.se/pub/unix/mail/postfix/official/ \ X ftp://ftp.cs.tu-berlin.de/pub/net/mail/postfix/official/ \ X ftp://ftp.postfix.oaktree.co.uk/pub/postfix/official/ X-DISTNAME= ${PORTNAME}-19991231-pl08 X+DISTNAME= ${PORTNAME}-19991231-pl09 X X MAINTAINER= torstenb@FreeBSD.org X Xdiff -u -r postfix/files/md5 postfix-pl09/files/md5 X--- postfix/files/md5 Sun Jun 4 01:57:50 2000 X+++ postfix-pl09/files/md5 Sat Oct 7 11:57:08 2000 X@@ -1 +1 @@ X-MD5 (postfix-19991231-pl08.tar.gz) = 0461524d91c87b03c80cc640ec953a63 X+MD5 (postfix-19991231-pl09.tar.gz) = b4216b6950909dd78dd2ef7e6994fd3e END-of-postfix-pl09.patch exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 10: 0:11 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 141C037B66E for ; Sat, 7 Oct 2000 10:00:09 -0700 (PDT) Received: (from fenner@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA99353 for ports@freebsd.org; Sat, 7 Oct 2000 10:00:09 -0700 (PDT) (envelope-from fenner@FreeBSD.org) Date: Sat, 7 Oct 2000 10:00:09 -0700 (PDT) From: Message-Id: <200010071700.KAA99353@freefall.freebsd.org> To: ports@freebsd.org Subject: Unfetchable distfiles reminder Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dear porters, This is just a reminder to please periodically check the list of unfetchable distfiles at http://people.freebsd.org/~fenner/portsurvey/ . In particular, the list of ports with no MAINTAINER with distfile problems is http://people.freebsd.org/~fenner/portsurvey/ports@freebsd.org.html Since no one is responsible for these ports, the problem won't get fixed unless someone on this list takes the initiative. In addition, the list of all ports with any unfetchable distfile is http://people.freebsd.org/~fenner/portsurvey/bad.html if you don't mind coordinating your fixes with the port MAINTAINER. Thanks for your help! Bill "distfiles" Fenner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 10: 5: 3 2000 Delivered-To: freebsd-ports@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id 5441E37B66D for ; Sat, 7 Oct 2000 10:05:01 -0700 (PDT) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 31AE31C72; Sat, 7 Oct 2000 13:04:48 -0400 (EDT) Date: Sat, 7 Oct 2000 13:04:48 -0400 From: Bill Fumerola To: Mike Meyer Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/21814: Inetd's very existence is a security risk. Message-ID: <20001007130448.M38472@jade.chc-chimes.com> References: <200010071150.EAA21816@freefall.freebsd.org> <20001007123306.L38472@jade.chc-chimes.com> <14815.21228.196822.666136@guru.mired.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <14815.21228.196822.666136@guru.mired.org>; from mwm@mired.org on Sat, Oct 07, 2000 at 11:44:28AM -0500 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Oct 07, 2000 at 11:44:28AM -0500, Mike Meyer wrote: > > This is getting borderline absurd. If you don't like it don't run it. > > That may well be the case. Then again - is anything to far for > security? Having it not be there means it doesn't get run, ever. vvvvvvvvv > > All the other NO_*'s are typically because the program is one that takes > > a long time to build(usually with no benefit, see ObjC..), conflicts with other > > programs that do the same thing (sendmail, lpr), or are illegal for some of > > us to use. > > So for whom is it illegal to use the suid perl binary? % Typical \Typ"ic*al\, a. [L. typicus, Gr. ?, from ? type: cf. F. % typique. See {Type}.] % 1. Of the nature of a type; representing something by a form, % model, or resemblance; emblematic; prefigurative. % The Levitical priesthood was only typical of the % Christian. --Atterbury. % 2. (Nat. Hist.) Combining or exhibiting the essential % characteristics of a group; as, a typical genus. -- % {Typ"ic*al*ly}, adv. -- {Typ"ic*al*ness}, n. % . % typically % adv : in a typical manner; "Tom was typically hostile" [ant: {atypically}] > > We don't just make them because we hate the very existance of a program[1]. > > It's not the existence I hate; it's having it running on machines that > it shouldn't be running on that bothers me. I'm tired of removing it > by hand. changing "#NO_INETD=true" to "NO_INETD=true" is equally as easy as echo inetd_enable="NO" >> /etc/rc.conf -- Bill Fumerola - Network Architect, BOFH / Chimes, Inc. billf@chimesnet.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 10:10: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AA1FB37B66C for ; Sat, 7 Oct 2000 10:10:00 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA04307; Sat, 7 Oct 2000 10:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from element.office.snet.co.uk (element.office.snet.co.uk [212.87.76.147]) by hub.freebsd.org (Postfix) with ESMTP id 5D63B37B66C for ; Sat, 7 Oct 2000 10:07:24 -0700 (PDT) Received: (from jamie@localhost) by element.office.snet.co.uk (8.9.3/8.9.3) id SAA00612; Sat, 7 Oct 2000 18:05:42 +0100 (BST) (envelope-from jamie) Message-Id: <200010071705.SAA00612@element.office.snet.co.uk> Date: Sat, 7 Oct 2000 18:05:42 +0100 (BST) From: jamie@jamiesdomain.org.uk Reply-To: jamie@jamiesdomain.org.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21820: Problems with Netscape 4.73 and select boxes Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21820 >Category: ports >Synopsis: Problems with Netscape 4.73 and select boxes >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 07 10:10:00 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Jamie >Release: FreeBSD 4.1-RELEASE i386 >Organization: Stirling Networks Ltd. >Environment: >Description: When using a SELECT box in a form that needs to be extended with the more button at bottom of list you can no longer enter information into INPUT fields or the address bar >How-To-Repeat: Goto a page with a form, use a SELECT box and that is large and need you to extend it across the screen with the more box at the bottom of the list and then try and type something into an INPUT field or address bar >Fix: Only know fix is to completly close netscape and use the SELECT box last to submit details. Still renders the address bar useless afterwards though. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 10:50: 8 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 74E3E37B66E for ; Sat, 7 Oct 2000 10:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA17687; Sat, 7 Oct 2000 10:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from fujie.tk.elec.waseda.ac.jp (tk05.tk.elec.waseda.ac.jp [133.9.84.5]) by hub.freebsd.org (Postfix) with ESMTP id 1ED1437B502 for ; Sat, 7 Oct 2000 10:43:46 -0700 (PDT) Received: (from fujie@localhost) by fujie.tk.elec.waseda.ac.jp (8.11.0/8.11.0) id e97Hi0k91391; Sun, 8 Oct 2000 02:44:00 +0900 (JST) (envelope-from fujie) Message-Id: <200010071744.e97Hi0k91391@fujie.tk.elec.waseda.ac.jp> Date: Sun, 8 Oct 2000 02:44:00 +0900 (JST) From: fujie@tk.elec.waseda.ac.jp Reply-To: fujie@tk.elec.waseda.ac.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21821: port: devel/glade source writing problem Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21821 >Category: ports >Synopsis: devel/glade fails to generate source code >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 07 10:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Shinya FUJIE >Release: FreeBSD 4.1.1-STABLE i386 >Organization: TK Lab, WASEDA Univ. >Environment: FreeBSD washi.fujie.or.jp 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Sun Oct 8 01:10:28 JST 2000 root@:/usr/src/sys/compile/WASHI i386 >Description: ports/devel/glade fails to generate source code, because this port uses Mk/bsd.gnome.mk with USE_GNOME, but this override 'datadir' value on configure stage. so generated 'config.h' file contains wrong GLADE_DATA_DIR value. >How-To-Repeat: install glade with ports/devel/glade. then make a sample project and generate source code. then an error occurs with a message like "/usr/X11R6/share/gnome/glade/gnome/Makefile.am, No such file or directory" >Fix: put this patch in ports/devel/glade/patch. but there must be better way to solve. *** configure.orig Sun Oct 8 02:18:16 2000 --- configure Sun Oct 8 02:20:22 2000 *************** *** 4189,4214 **** ! if test "x${datadir}" = 'x${prefix}/share'; then ! if test "x${prefix}" = "xNONE"; then ! cat >> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 10:56:14 2000 Delivered-To: freebsd-ports@freebsd.org Received: from 200-227-201-45-as.acessonet.com.br (200-227-201-45-as.acessonet.com.br [200.227.201.45]) by hub.freebsd.org (Postfix) with ESMTP id ABD0937B503 for ; Sat, 7 Oct 2000 10:56:06 -0700 (PDT) Received: (qmail 2010 invoked by uid 1001); 7 Oct 2000 17:56:00 -0000 From: "Mario Sergio Fujikawa Ferreira" Date: Sat, 7 Oct 2000 15:55:38 -0200 To: padmlin Cc: ports@FreeBSD.ORG Subject: Re: PHP + gd + ttf for FreeBSD Message-ID: <20001007155538.B349@Fedaykin.here> References: <008101c0307d$df0584e0$30640e3f@oemcomputer> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i In-Reply-To: <008101c0307d$df0584e0$30640e3f@oemcomputer>; from padmlin@email.msn.com on Sat, Oct 07, 2000 at 09:44:09AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Oct 07, 2000 at 09:44:09AM -0700, padmlin wrote: > I am just wondering if you have > php + gd + ttf port for FreeBSD > > How do I search for certain application in port If you a installed ports tree (always out of date :), % cd /usr/ports % make search key=TYPE_WHAT_WANT If you want to know about the very latest, go to http://www.freebsd.org/ports/ and use the search form. :) -- Mario S. F. Ferreira - UnB - Brazil - "I guess this is a signature." lioux at ( freebsd dot org | linf dot unb dot br ) flames to beloved devnull@someotherworldbeloworabove.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 11: 0: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C33C37B502 for ; Sat, 7 Oct 2000 11:00:06 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA20926; Sat, 7 Oct 2000 11:00:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 7 Oct 2000 11:00:06 -0700 (PDT) Message-Id: <200010071800.LAA20926@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: AMAKAWA Shuhei Subject: Re: ports/20975: update math/grace Reply-To: AMAKAWA Shuhei Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/20975; it has been noted by GNATS. From: AMAKAWA Shuhei To: lars.koeller@uni-bielefeld.de Cc: sobomax@FreeBSD.org, freebsd-gnats-submit@FreeBSD.org, lkoeller@cc.fh-lippe.de Subject: Re: ports/20975: update math/grace Date: Sat, 07 Oct 2000 18:53:49 +0100 > > Hello. > > I saw your PR. > > I can speculate about some of the reasons why your PR hasn't been > > committed. > > The biggest problem I think was this (among other things). > > The new pdflib has a restrictive license and it's probably > > unacceptable to build it in unconditionally. > > Ok, ok but then I expect to get a hint on this problem, however is > grace not very usable without pdf support (no working pdflatex to > compile native pdf documents)!! How about conditionally LIB_DEPENDS'ing on pdflib3 using .if? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 11:10: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E8BB37B503 for ; Sat, 7 Oct 2000 11:10:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA25554; Sat, 7 Oct 2000 11:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail44.fg.online.no (mail44-s.fg.online.no [148.122.161.44]) by hub.freebsd.org (Postfix) with ESMTP id E3B9637B66D for ; Sat, 7 Oct 2000 11:04:27 -0700 (PDT) Received: from tricknology.org (ti21a63-0042.dialup.online.no [130.67.199.42]) by mail44.fg.online.no (8.9.3/8.9.3) with ESMTP id UAA05059 for ; Sat, 7 Oct 2000 20:04:13 +0200 (MET DST) Received: (from oddbjorn@localhost) by tricknology.org (8.11.0/8.9.3) id e97I3xB01941; Sat, 7 Oct 2000 20:03:59 +0200 (CEST) (envelope-from oddbjorn) Message-Id: <200010071803.e97I3xB01941@tricknology.org> Date: Sat, 7 Oct 2000 20:03:59 +0200 (CEST) From: oddbjorn@tricknology.org Reply-To: oddbjorn@tricknology.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21822: Update port: www/web2ldap Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21822 >Category: ports >Synopsis: Add a master site to Makefile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 07 11:10:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Oddbjorn Steffensen >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Funkjazztical Tricknology >Environment: N/A >Description: Add a master site to the Makefile, as a temporary measure before the port is updated to web2ldap 0.7.10. >How-To-Repeat: N/A >Fix: --- Makefile.orig Sat Oct 7 19:58:59 2000 +++ Makefile Sat Oct 7 20:00:52 2000 @@ -8,7 +8,8 @@ PORTNAME= web2ldap PORTVERSION= 0.7.9 CATEGORIES= www -MASTER_SITES= http://sites.inka.de/ms/python/web2ldap/download/ +MASTER_SITES= http://sites.inka.de/ms/python/web2ldap/download/ \ + http://www.tricknolgy.org/ports/ MAINTAINER= oddbjorn@tricknology.org >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 11:39:55 2000 Delivered-To: freebsd-ports@freebsd.org Received: from smtp10.atl.mindspring.net (smtp10.atl.mindspring.net [207.69.200.246]) by hub.freebsd.org (Postfix) with ESMTP id B4B6E37B66C; Sat, 7 Oct 2000 11:39:23 -0700 (PDT) Received: from silvia.hip.berkeley.edu (sji-ca7-112.ix.netcom.com [209.109.235.112]) by smtp10.atl.mindspring.net (8.9.3/8.8.5) with ESMTP id OAA30039; Sat, 7 Oct 2000 14:39:09 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.11.0/8.11.0) id e97IZnI77557; Sat, 7 Oct 2000 11:35:49 -0700 (PDT) (envelope-from asami) To: "James E. Housley" Cc: obrien@FreeBSD.org, Michael Haro , ports@FreeBSD.org Subject: Re: HEADS UP: ports layout restructuring happening this weekend References: <200010052255.e95MtOa52663@silvia.hip.berkeley.edu> <20001006002054.B3444@dragon.nuxi.com> <39DDA860.FF69FD25@FreeBSD.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 07 Oct 2000 11:35:44 -0700 In-Reply-To: "James E. Housley"'s message of "Fri, 06 Oct 2000 06:24:32 -0400" Message-ID: Lines: 11 X-Mailer: Gnus v5.7/Emacs 20.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: "James E. Housley" * works. databases/mytop is already committed with NEWLAYOUT=true if you * want to run portlint on it. Geeze. You were *NOT* supposed to do that! ;) Well, thanks for telling me. My script was going to screw that one up real bad.... -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 12: 0:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ADEE137B66D for ; Sat, 7 Oct 2000 12:00:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA42055; Sat, 7 Oct 2000 12:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from fujie.tk.elec.waseda.ac.jp (tk05.tk.elec.waseda.ac.jp [133.9.84.5]) by hub.freebsd.org (Postfix) with ESMTP id 4A5A737B66C for ; Sat, 7 Oct 2000 11:58:59 -0700 (PDT) Received: (from fujie@localhost) by fujie.tk.elec.waseda.ac.jp (8.11.0/8.11.0) id e97IxDE16125; Sun, 8 Oct 2000 03:59:13 +0900 (JST) (envelope-from fujie) Message-Id: <200010071859.e97IxDE16125@fujie.tk.elec.waseda.ac.jp> Date: Sun, 8 Oct 2000 03:59:13 +0900 (JST) From: fujie@tk.elec.waseda.ac.jp Reply-To: fujie@tk.elec.waseda.ac.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21823: New port: devel/glade-- Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21823 >Category: ports >Synopsis: New port: devel/glade-- >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 07 12:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Shinya FUJIE >Release: FreeBSD 4.1.1-STABLE i386 >Organization: TK Lab, WASEDA Univ. >Environment: FreeBSD washi.fujie.or.jp 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Sun Oct 8 01:10:28 JST 2000 root@:/usr/src/sys/compile/WASHI i386 >Description: glade-- is a C++ backend for glade, the GUI designer for Gtk. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # /usr/ports/devel/glade-- # /usr/ports/devel/glade--/Makefile # /usr/ports/devel/glade--/files # /usr/ports/devel/glade--/files/md5 # /usr/ports/devel/glade--/patches # /usr/ports/devel/glade--/patches/patch-aa # /usr/ports/devel/glade--/patches/patch-ab # /usr/ports/devel/glade--/patches/patch-ac # /usr/ports/devel/glade--/pkg # /usr/ports/devel/glade--/pkg/COMMENT # /usr/ports/devel/glade--/pkg/PLIST # /usr/ports/devel/glade--/pkg/DESCR # echo c - /usr/ports/devel/glade-- mkdir -p /usr/ports/devel/glade-- > /dev/null 2>&1 echo x - /usr/ports/devel/glade--/Makefile sed 's/^X//' >/usr/ports/devel/glade--/Makefile << 'END-of-/usr/ports/devel/glade--/Makefile' X# New ports collection makefile for: glade-- X# Date created: 7 Oct 2000 X# Whom: Shinya FUJIE X# X# $FreeBSD$ X# X XPORTNAME= glademm XPORTVERSION= 0.5.9 XCATEGORIES= devel gnome XMASTER_SITES= http://home.wtal.de/petig/Gtk/ X XMAINTAINER= fujie@tk.elec.waseda.ac.jp X XRUN_DEPENDS= glade:${PORTSDIR}/devel/glade XLIB_DEPENDS= gtkmm.1:${PORTSDIR}/x11-toolkits/gtk-- X XUSE_X_PREFIX= yes XUSE_GNOME= yes XUSE_LIBTOOL= no X X.include END-of-/usr/ports/devel/glade--/Makefile echo c - /usr/ports/devel/glade--/files mkdir -p /usr/ports/devel/glade--/files > /dev/null 2>&1 echo x - /usr/ports/devel/glade--/files/md5 sed 's/^X//' >/usr/ports/devel/glade--/files/md5 << 'END-of-/usr/ports/devel/glade--/files/md5' XMD5 (glademm-0.5.9.tar.gz) = af9f95c6778a47969f6377dcae004498 END-of-/usr/ports/devel/glade--/files/md5 echo c - /usr/ports/devel/glade--/patches mkdir -p /usr/ports/devel/glade--/patches > /dev/null 2>&1 echo x - /usr/ports/devel/glade--/patches/patch-aa sed 's/^X//' >/usr/ports/devel/glade--/patches/patch-aa << 'END-of-/usr/ports/devel/glade--/patches/patch-aa' X*** configure.orig Wed Jun 7 16:49:17 2000 X--- configure Sun Oct 8 00:06:29 2000 X*************** X*** 2065,2075 **** X X echo $ac_n "checking your gtk version""... $ac_c" 1>&6 X echo "configure:2068: checking your gtk version" >&5 X! case `gtk-config --version` in X *.*.*) X! GTK_MAJOR=`gtk-config --version | sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` X! GTK_MINOR=`gtk-config --version | sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` X! GTK_MICRO=`gtk-config --version | sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` X ;; X *) X echo "configure: warning: Can't determine your gtk version, assuming 1.2.2" 1>&2 X--- 2065,2075 ---- X X echo $ac_n "checking your gtk version""... $ac_c" 1>&6 X echo "configure:2068: checking your gtk version" >&5 X! case `gtk12-config --version` in X *.*.*) X! GTK_MAJOR=`gtk12-config --version | sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` X! GTK_MINOR=`gtk12-config --version | sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` X! GTK_MICRO=`gtk12-config --version | sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` X ;; X *) X echo "configure: warning: Can't determine your gtk version, assuming 1.2.2" 1>&2 END-of-/usr/ports/devel/glade--/patches/patch-aa echo x - /usr/ports/devel/glade--/patches/patch-ab sed 's/^X//' >/usr/ports/devel/glade--/patches/patch-ab << 'END-of-/usr/ports/devel/glade--/patches/patch-ab' X*** src/glade--.cc.orig Sun Oct 8 01:14:15 2000 X--- src/glade--.cc Sun Oct 8 01:14:38 2000 X*************** X*** 87,93 **** X X static void call_gtkmm_config() X { char buf[80]; X! FILE *f=popen("gtk-config --version","r"); X if (f) X { if (fgets(buf,sizeof(buf),f)) X { for (unsigned char *s=(unsigned char*)buf;*s;s++) X--- 87,93 ---- X X static void call_gtkmm_config() X { char buf[80]; X! FILE *f=popen("gtk12-config --version","r"); X if (f) X { if (fgets(buf,sizeof(buf),f)) X { for (unsigned char *s=(unsigned char*)buf;*s;s++) X*************** X*** 96,106 **** X Gtk_Version v; X if (parse_version(buf,v)) X Configuration.gtk_version=v; X! else cerr << "gtk-config --version: strange result '" << buf << "'\n"; X } X pclose(f); X } X! else perror("gtk-config"); X f=popen("gtkmm-config --version","r"); X if (f) X { if (fgets(buf,sizeof(buf),f)) X--- 96,106 ---- X Gtk_Version v; X if (parse_version(buf,v)) X Configuration.gtk_version=v; X! else cerr << "gtk12-config --version: strange result '" << buf << "'\n"; X } X pclose(f); X } X! else perror("gtk12-config"); X f=popen("gtkmm-config --version","r"); X if (f) X { if (fgets(buf,sizeof(buf),f)) END-of-/usr/ports/devel/glade--/patches/patch-ab echo x - /usr/ports/devel/glade--/patches/patch-ac sed 's/^X//' >/usr/ports/devel/glade--/patches/patch-ac << 'END-of-/usr/ports/devel/glade--/patches/patch-ac' X*** src/Cxx.cc.orig Sun Oct 8 01:13:59 2000 X--- src/Cxx.cc Sun Oct 8 01:14:04 2000 X*************** X*** 538,558 **** X "libtoolize --force --copy\n" X "autoheader\n"; X if (Configuration.gnome_support) X! f << "# Search for glade\\'s gnome.m4 directory (contains gnome macros).\n" X! "# If you include gnome-common/macros in your application (recommended)\n" X! "# also replace this autogen.sh.\n" X! "if [ -r /opt/gnome/share/glade/gnome/gnome.m4 ]\n" X! "then \n" X! " aclocal -I /opt/gnome/share/glade/gnome\n" X! "elif [ -r /usr/local/share/glade/gnome/gnome.m4 ]\n" X! "then\n" X! " aclocal -I /usr/local/share/glade/gnome\n" X! "else\n" X! " echo \"Can't find glade's gnome.m4 directory (gnome macros)\"\n" X! " exit 2\n" X! "fi\n"; X else X! f << "aclocal\n"; X f << "automake --add-missing --copy --gnu\n" X "autoconf\n" X "./configure $* && $MAKE\n"; X--- 538,546 ---- X "libtoolize --force --copy\n" X "autoheader\n"; X if (Configuration.gnome_support) X! f << "aclocal -I /usr/X11R6/share/aclocal -I /usr/X11R6/share/glade/gnome/\n"; X else X! f << "aclocal -I /usr/X11R6/share/aclocal\n"; X f << "automake --add-missing --copy --gnu\n" X "autoconf\n" X "./configure $* && $MAKE\n"; END-of-/usr/ports/devel/glade--/patches/patch-ac echo c - /usr/ports/devel/glade--/pkg mkdir -p /usr/ports/devel/glade--/pkg > /dev/null 2>&1 echo x - /usr/ports/devel/glade--/pkg/COMMENT sed 's/^X//' >/usr/ports/devel/glade--/pkg/COMMENT << 'END-of-/usr/ports/devel/glade--/pkg/COMMENT' XA C++(GTK--) code generator for glade END-of-/usr/ports/devel/glade--/pkg/COMMENT echo x - /usr/ports/devel/glade--/pkg/PLIST sed 's/^X//' >/usr/ports/devel/glade--/pkg/PLIST << 'END-of-/usr/ports/devel/glade--/pkg/PLIST' Xbin/glade-- END-of-/usr/ports/devel/glade--/pkg/PLIST echo x - /usr/ports/devel/glade--/pkg/DESCR sed 's/^X//' >/usr/ports/devel/glade--/pkg/DESCR << 'END-of-/usr/ports/devel/glade--/pkg/DESCR' Xglade-- is a C++ backend for glade, the GUI designer for Gtk. XThis means this program reads glade files and outputs a C++ program source Xskeleton for you. X XWWW: http://home.wtal.de/petig/Gtk/index.html END-of-/usr/ports/devel/glade--/pkg/DESCR exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 12:15:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F40B537B503; Sat, 7 Oct 2000 12:15:50 -0700 (PDT) Received: (from lioux@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA49190; Sat, 7 Oct 2000 12:15:50 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Date: Sat, 7 Oct 2000 12:15:50 -0700 (PDT) From: Message-Id: <200010071915.MAA49190@freefall.freebsd.org> To: lioux@FreeBSD.org, freebsd-ports@FreeBSD.org, lioux@FreeBSD.org Subject: Re: ports/21822: Add a master site to Makefile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Add a master site to Makefile Responsible-Changed-From-To: freebsd-ports->lioux Responsible-Changed-By: lioux Responsible-Changed-When: Sat Oct 7 12:13:45 PDT 2000 Responsible-Changed-Why: I'll handle this as soon as the veil is lifted http://www.freebsd.org/cgi/query-pr.cgi?pr=21822 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 12:25:43 2000 Delivered-To: freebsd-ports@freebsd.org Received: from bunyip.flash.net (bunyip.flash.net [209.30.2.15]) by hub.freebsd.org (Postfix) with ESMTP id 6ADA337B502 for ; Sat, 7 Oct 2000 12:25:36 -0700 (PDT) Received: from gw.fosburgh.org (p147.amax8.dialup.hou1.flash.net [209.30.161.147]) by bunyip.flash.net (8.9.3/Pro-8.9.3) with ESMTP id OAA03508; Sat, 7 Oct 2000 14:25:31 -0500 (CDT) Received: from gw.fosburgh.org (localhost [127.0.0.1]) by gw.fosburgh.org (8.11.0/8.11.0) with SMTP id e97JQhV09085; Sat, 7 Oct 2000 14:26:43 -0500 (CDT) (envelope-from wotan@ns.fosburgh.org) From: Jonathan E Fosburgh To: , freebsd-ports@FreeBSD.ORG (FreeBSD Ports) Subject: Re: ksh93 port? Date: Sat, 7 Oct 2000 14:26:42 -0500 X-Mailer: KMail [version 1.1.90] Content-Type: text/plain References: <200010071529.LAA18034@panix3.panix.com> In-Reply-To: <200010071529.LAA18034@panix3.panix.com> MIME-Version: 1.0 Message-Id: <00100714264200.00981@gw.fosburgh.org> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, 07 Oct 2000, stanb@panix.com wrote: > I have a couple of questions about the ksh93 port. > > It apears to depend upon a binary distributin from bell labs that is no > longer current. > > Any idea where I can get this lder distribution? > > Second, was the source to this not released into the public domain a > few months back? If so should the port not be updated to use this > source? Are you no longer able to get the binary dist. from ATT? Unless things have changed lately, the file the package depends on is the most recent we can use (It is statically linked for BSD/OS IIRC). I have never heard of source being released, but I could be wrong. -- Jonathan Fosburgh Open Systems MD Anderson Cancer Center Houston, TX Home Page: http://www.fosburgh.org Manager, FreeBSD Webring: http://www.fosburgh.org/computer/freebsdring.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 13:40:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E79037B66D for ; Sat, 7 Oct 2000 13:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA80935; Sat, 7 Oct 2000 13:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 9870137B503; Sat, 7 Oct 2000 13:34:28 -0700 (PDT) Message-Id: <20001007203428.9870137B503@hub.freebsd.org> Date: Sat, 7 Oct 2000 13:34:28 -0700 (PDT) From: kjones@wedgie.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/21825: slib-2c7 fails to compile in the ports collection Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21825 >Category: ports >Synopsis: slib-2c7 fails to compile in the ports collection >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 07 13:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Keith Jones >Release: 4.1.1 >Organization: >Environment: FreeBSD kjones.jones.net 4.1.1-STABLE FreeBSD 4.1.1-STABLE #0: Sun Oct 1 21:06:00 GMT 2000 root@kjones.jones.net:/usr/obj/usr/src/sys/KJONES i386 >Description: slib, depended upon by gnucash, fails to build. I cvsuped the ports 10-7-00. >How-To-Repeat: Script started on Sat Oct 7 16:31:23 2000 bash-2.03# pwd /usr/ports/lang/slib bash-2.03# make clean ===> Cleaning for unzip-5.41 ===> Cleaning for scheme48-0.53 ===> Cleaning for slib-2c7 bash-2.03# make ===> Extracting for slib-2c7 >Fix: >Release-Note: >Audit-Trail: >Unformatted: >> Checksum OK for slib2c7.zip. ===> slib-2c7 depends on executable: scheme48 - found ===> slib-2c7 depends on executable: unzip - found ===> Patching for slib-2c7 ===> Applying FreeBSD patches for slib-2c7 ===> Configuring for slib-2c7 ===> Building for slib-2c7 touch ./slibcat (echo ",batch on"; echo ",config"; echo ",load =scheme48/misc/packages.scm"; echo "(define-structure slib-primitives"; echo " (export s48-error"; ec ho " s48-ascii->char"; echo " s48-force-output"; echo " s48-c urrent-error-port"; echo " s48-system"; echo " s48-with-handler"; ec ho " s48-getenv)"; echo " (open scheme signals ascii extended-ports i/o"; echo " primitives handle unix-getenv)"; echo " (begin"; echo Welcome to Scheme 48 0.53 (made by root on Sat Oct 7 16:29:56 GMT 2000). Copyright (c) 1993-1999 by Richard Kelsey and Jonathan Rees. Please report bugs to scheme-48-bugs@martigny.ai.mit.edu. Type ,? (comma question-mark) for help. > Will exit on errors /usr/local/lib/scheme48/misc/packages.scm [extended-ports /usr/local/lib/scheme48/big/more-port.scm] [unix-getenv /usr/local/lib/scheme48/misc/getenv.scm] [slib-primitives] scheme48.init Error: exception extension-exception (vm-extension 26 '("HOME" . "???????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????? ????????????????????????????????????")) *** Error code 1 Stop in /usr/ports/lang/slib/work/slib. *** Error code 1 Stop in /usr/ports/lang/slib. *** Error code 1 Stop in /usr/ports/lang/slib. *** Error code 1 Stop in /usr/ports/lang/slib. bash-2.03# exit exit Script done on Sat Oct 7 16:32:33 2000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 14: 4: 1 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 421F737B502; Sat, 7 Oct 2000 14:04:00 -0700 (PDT) Received: (from trevor@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA01231; Sat, 7 Oct 2000 14:04:00 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Date: Sat, 7 Oct 2000 14:04:00 -0700 (PDT) From: Message-Id: <200010072104.OAA01231@freefall.freebsd.org> To: tkato@prontomail.ne.jp, trevor@FreeBSD.org, freebsd-ports@FreeBSD.org, trevor@FreeBSD.org Subject: Re: misc/21792: Update port: biology/xdrawchem Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: biology/xdrawchem State-Changed-From-To: open->analyzed State-Changed-By: trevor State-Changed-When: Sat Oct 7 13:51:32 PDT 2000 State-Changed-Why: I'll make this a do-install target in the port's Makefile. Responsible-Changed-From-To: freebsd-ports->trevor Responsible-Changed-By: trevor Responsible-Changed-When: Sat Oct 7 13:51:32 PDT 2000 Responsible-Changed-Why: MAINTAINER http://www.freebsd.org/cgi/query-pr.cgi?pr=21792 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 14: 6:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 61EC737B66D; Sat, 7 Oct 2000 14:06:44 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA03802; Sat, 7 Oct 2000 14:06:44 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sat, 7 Oct 2000 14:06:44 -0700 (PDT) From: Message-Id: <200010072106.OAA03802@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/21821: devel/glade fails to generate source code Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: devel/glade fails to generate source code Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Sat Oct 7 14:06:01 PDT 2000 Responsible-Changed-Why: My port.. I'll be reinstalling one of my boxes from scratch after all the restructuring so I'll take a look at this then. http://www.freebsd.org/cgi/query-pr.cgi?pr=21821 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 14: 7: 9 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C26E937B66C; Sat, 7 Oct 2000 14:07:08 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA03981; Sat, 7 Oct 2000 14:07:08 -0700 (PDT) (envelope-from ade@FreeBSD.org) Date: Sat, 7 Oct 2000 14:07:08 -0700 (PDT) From: Message-Id: <200010072107.OAA03981@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/21823: New port: devel/glade-- Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: devel/glade-- Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Sat Oct 7 14:06:50 PDT 2000 Responsible-Changed-Why: I'll handle this one after the restructuring http://www.freebsd.org/cgi/query-pr.cgi?pr=21823 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 14:22:52 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id 91D9237B502; Sat, 7 Oct 2000 14:22:50 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e97LMn125440; Sat, 7 Oct 2000 17:22:50 -0400 (EDT) Date: Sat, 7 Oct 2000 17:22:49 -0400 (EDT) From: Trevor Johnson To: Satoshi Asami Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/audio/festival Makefile ports/audio/festival/pkg PLIST-ogi In-Reply-To: <200010072052.NAA91717@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Move pkg/PLIST-ogi to pkg-plist-ogi. Thanks for noticing that. :) BTW do you have the ports tree locked? I'm getting the error: bash-2.03$ cvs commit Makefile patches/patch-aa **** Access denied: Insufficient Karma (trevor|ports/biology/xdrawchem) Access control checks failed! (cvs_acls.pl) cvs commit: Pre-commit check failed **** Access denied: Insufficient Karma (trevor|ports/biology/xdrawchem/patches) Access control checks failed! (cvs_acls.pl) cvs commit: Pre-commit check failed cvs [commit aborted]: correct above errors first! but no one told me my commit privileges had been taken away. I didn't see any lock files either. -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 14:30:46 2000 Delivered-To: freebsd-ports@freebsd.org Received: from pawn.primelocation.net (pawn.primelocation.net [205.161.238.235]) by hub.freebsd.org (Postfix) with ESMTP id AF2B537B502; Sat, 7 Oct 2000 14:30:44 -0700 (PDT) Received: by pawn.primelocation.net (Postfix, from userid 1016) id 11F739B05; Sat, 7 Oct 2000 17:30:44 -0400 (EDT) Date: Sat, 7 Oct 2000 17:30:43 -0400 From: Chris Faulhaber To: Trevor Johnson Cc: Satoshi Asami , ports@FreeBSD.org Subject: Re: cvs commit: ports/audio/festival Makefile ports/audio/festival/pkg PLIST-ogi Message-ID: <20001007173043.A96310@pawn.primelocation.net> References: <200010072052.NAA91717@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from trevor@jpj.net on Sat, Oct 07, 2000 at 05:22:49PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Oct 07, 2000 at 05:22:49PM -0400, Trevor Johnson wrote: > > Move pkg/PLIST-ogi to pkg-plist-ogi. > > Thanks for noticing that. :) BTW do you have the ports tree locked? I'm > getting the error: > > bash-2.03$ cvs commit Makefile patches/patch-aa > **** Access denied: Insufficient Karma (trevor|ports/biology/xdrawchem) > Access control checks failed! (cvs_acls.pl) > cvs commit: Pre-commit check failed > **** Access denied: Insufficient Karma > (trevor|ports/biology/xdrawchem/patches) > Access control checks failed! (cvs_acls.pl) > cvs commit: Pre-commit check failed > cvs [commit aborted]: correct above errors first! > > but no one told me my commit privileges had been taken away. I didn't see > any lock files either. Bad Trevor, not reading commit mail :) asami 2000/10/07 11:39:58 PDT Modified files: . avail Log: The ports tree is now locked for the layout change. Revision Changes Path 1.127 +2 -2 CVSROOT/avail -- Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 14:39: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id 50A7B37B66D; Sat, 7 Oct 2000 14:39:06 -0700 (PDT) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 7F59D1C69; Sat, 7 Oct 2000 17:38:50 -0400 (EDT) Date: Sat, 7 Oct 2000 17:38:50 -0400 From: Bill Fumerola To: Trevor Johnson Cc: Satoshi Asami , ports@FreeBSD.org Subject: Re: cvs commit: ports/audio/festival Makefile ports/audio/festival/pkg PLIST-ogi Message-ID: <20001007173850.S38472@jade.chc-chimes.com> References: <200010072052.NAA91717@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from trevor@jpj.net on Sat, Oct 07, 2000 at 05:22:49PM -0400 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Oct 07, 2000 at 05:22:49PM -0400, Trevor Johnson wrote: > but no one told me my commit privileges had been taken away. I didn't see > any lock files either. You must have missed the commit sent to committers@ and the follow-up email Satoshi sent to several mailing lists... -- Bill Fumerola - Network Architect, BOFH / Chimes, Inc. billf@chimesnet.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 14:44:13 2000 Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id 8880B37B503; Sat, 7 Oct 2000 14:44:11 -0700 (PDT) Received: from localhost (trevor@localhost) by blues.jpj.net (right/backatcha) with ESMTP id e97Lhjx26035; Sat, 7 Oct 2000 17:43:45 -0400 (EDT) Date: Sat, 7 Oct 2000 17:43:45 -0400 (EDT) From: Trevor Johnson To: Bill Fumerola Cc: Satoshi Asami , ports@FreeBSD.org Subject: Re: cvs commit: ports/audio/festival Makefile ports/audio/festival/pkg PLIST-ogi In-Reply-To: <20001007173850.S38472@jade.chc-chimes.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > You must have missed the commit sent to committers@ and the follow-up email > Satoshi sent to several mailing lists... Thanks, I see them now. -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 15:33: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from peak.mountin.net (peak.mountin.net [207.227.119.2]) by hub.freebsd.org (Postfix) with ESMTP id D7ED337B502; Sat, 7 Oct 2000 15:33:02 -0700 (PDT) Received: (from daemon@localhost) by peak.mountin.net (8.9.1/8.9.1) id RAA18957; Sat, 7 Oct 2000 17:32:58 -0500 (CDT) (envelope-from jeff-ml@mountin.net) Received: from dial-88.max1.wa.cyberlynk.net(207.227.118.88) by peak.mountin.net via smap (V1.3) id sma018944; Sat Oct 7 17:32:35 2000 Message-Id: <4.3.2.20001007172450.00ad6cc0@207.227.119.2> X-Sender: jeff-ml@207.227.119.2 X-Mailer: QUALCOMM Windows Eudora Version 4.3 Date: Sat, 07 Oct 2000 17:31:38 -0500 To: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) From: "Jeffrey J. Mountin" Subject: Re: HEADS UP: ports layout restructuring happening this weekend Cc: ports@FreeBSD.ORG In-Reply-To: References: <"James E. Housley"'s message of "Fri, 06 Oct 2000 06:24:32 -0400"> <200010052255.e95MtOa52663@silvia.hip.berkeley.edu> <20001006002054.B3444@dragon.nuxi.com> <39DDA860.FF69FD25@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 11:35 AM 10/7/00 -0700, Satoshi - Ports Wraith - Asami wrote: > * From: "James E. Housley" > > * works. databases/mytop is already committed with NEWLAYOUT=true if you > * want to run portlint on it. > >Geeze. You were *NOT* supposed to do that! ;) > >Well, thanks for telling me. My script was going to screw that one up >real bad.... On the other side I'm wondering about those that have restructured their local tree. Fairly sure that doing a 'find /usr/sup/ports-* -type f -name "c*" -delete' before running CVSup should avoid seeing a zillion lines of output for the repo copying. Do like how much quicker 'find' goes through the low-dir tree. 8-) Jeff Mountin - jeff@mountin.net Systems/Network Administrator FreeBSD - the power to serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 18:40: 6 2000 Delivered-To: freebsd-ports@freebsd.org Received: from harrier.prod.itd.earthlink.net (harrier.prod.itd.earthlink.net [207.217.121.12]) by hub.freebsd.org (Postfix) with ESMTP id 3615837B502 for ; Sat, 7 Oct 2000 18:40:03 -0700 (PDT) Received: from Nikki (user-33qt5a7.dialup.mindspring.com [199.174.149.71]) by harrier.prod.itd.earthlink.net (8.9.3-EL_1_3/8.9.3) with SMTP id SAA03835 for ; Sat, 7 Oct 2000 18:39:57 -0700 (PDT) Message-Id: <200010080139.SAA03835@harrier.prod.itd.earthlink.net> From: "Michael G." To: "freebsd-ports@FreeBSD.ORG" Date: Sat, 07 Oct 2000 20:39:56 -0500 Reply-To: "Michael G." X-Mailer: PMMail 2000 Professional (2.10.2010) For Windows 98 (4.10.1998) In-Reply-To: <20001005020804.A1622@fly.lglobus.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: KDE 1.94 packages and space... Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've just reloaded my system and upgraded it to 4.1.1 -stable. My /usr partion is 4 gigs and with XFree86 4.01 installed is 10% full. I downloaded all required packages and stored them on a separate partition. My /var and /tmp are mapped to /usr...so I would not have expected space problems..but sure enough, after about 25 minutes /usr goes to 100% full and the KDE installation fails. How is this possible? Rather than run the meta port KDE-1.94.tgz, is there an order I can install the the acutal packages in that will work? I've isntalled KDE 1.1.2 off the CD's before with no problem. Thanks for any insight! Michael G. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Buick Performance...Driving fast with Class Passing everything but gas stations 71 Skylark Custom ICQ #24517082 mikegoe@earthlink.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 19:40:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 437F537B66D for ; Sat, 7 Oct 2000 19:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA52022; Sat, 7 Oct 2000 19:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from dubbelmoral.fnurt.net (dubbelmoral.fnurt.net [208.51.25.134]) by hub.freebsd.org (Postfix) with ESMTP id 9D44C37B502 for ; Sat, 7 Oct 2000 19:30:37 -0700 (PDT) Received: (from root@localhost) by dubbelmoral.fnurt.net (8.11.0/8.11.0) id e982UeB13302; Sat, 7 Oct 2000 22:30:40 -0400 (EDT) (envelope-from root) Message-Id: <200010080230.e982UeB13302@dubbelmoral.fnurt.net> Date: Sat, 7 Oct 2000 22:30:40 -0400 (EDT) From: lab@fnurt.net Reply-To: lab@fnurt.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/21828: New port: larswm, Tiling Window Manager for X Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 21828 >Category: ports >Synopsis: New port: larswm, Tiling Window Manager for X >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 07 19:40:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Lars Bernhardsson >Release: FreeBSD 4.1.1-RELEASE i386 >Organization: >Environment: >Description: Tiling window manager for X, based on David Hogan's 9wm. It provides virtual desktops, support for tiled and untiled windows, keyboard shortcuts and more, while using very little system resources. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # larswm # larswm/Makefile # larswm/files # larswm/files/md5 # larswm/pkg # larswm/pkg/COMMENT # larswm/pkg/DESCR # larswm/pkg/PLIST # larswm/pkg/MESSAGE # echo c - larswm mkdir -p larswm > /dev/null 2>&1 echo x - larswm/Makefile sed 's/^X//' >larswm/Makefile << 'END-of-larswm/Makefile' X# New ports collection makefile for: larswm X# Date created: Sat Oct 7 21:25:11 EDT 2000 X# Whom: lab@fnurt.net X# X# $FreeBSD$ X# X XPORTNAME= larswm XPORTVERSION= 7.0.8 XCATEGORIES= x11-wm XMASTER_SITES= http://www.fnurt.net/larswm/ X XMAINTAINER= lab@fnurt.net X XMAN1= larswm.1 XUSE_IMAKE= yes X Xpost-install: X.if !defined(NOPORTDOCS) X $(MKDIR) $(PREFIX)/share/doc/$(PORTNAME) X $(INSTALL_MAN) $(WRKSRC)/README $(PREFIX)/share/doc/$(PORTNAME) X $(INSTALL_MAN) $(WRKSRC)/README.9wm $(PREFIX)/share/doc/$(PORTNAME) X $(INSTALL_MAN) $(WRKSRC)/ChangeLog $(PREFIX)/share/doc/$(PORTNAME) X $(INSTALL_MAN) $(WRKSRC)/keyboard_refcard.ms $(PREFIX)/share/doc/$(PORTNAME) X $(INSTALL_MAN) $(WRKSRC)/larswmrc_refcard.ms $(PREFIX)/share/doc/$(PORTNAME) X $(INSTALL_MAN) $(WRKSRC)/mouse_refcard.ms $(PREFIX)/share/doc/$(PORTNAME) X $(INSTALL_SCRIPT) $(WRKSRC)/sample.barclock $(PREFIX)/share/doc/$(PORTNAME) X $(INSTALL_SCRIPT) $(WRKSRC)/sample.barinfo $(PREFIX)/share/doc/$(PORTNAME) X $(INSTALL_SCRIPT) $(WRKSRC)/sample.editor $(PREFIX)/share/doc/$(PORTNAME) X $(INSTALL_DATA) $(WRKSRC)/sample.larswmrc $(PREFIX)/share/doc/$(PORTNAME) X $(INSTALL_SCRIPT) $(WRKSRC)/sample.xsession $(PREFIX)/share/doc/$(PORTNAME) X.endif X X.include END-of-larswm/Makefile echo c - larswm/files mkdir -p larswm/files > /dev/null 2>&1 echo x - larswm/files/md5 sed 's/^X//' >larswm/files/md5 << 'END-of-larswm/files/md5' XMD5 (larswm-7.0.8.tar.gz) = c7cf85e56b481ebf3354e69780c7a8a5 END-of-larswm/files/md5 echo c - larswm/pkg mkdir -p larswm/pkg > /dev/null 2>&1 echo x - larswm/pkg/COMMENT sed 's/^X//' >larswm/pkg/COMMENT << 'END-of-larswm/pkg/COMMENT' XTiling Window Manager for X END-of-larswm/pkg/COMMENT echo x - larswm/pkg/DESCR sed 's/^X//' >larswm/pkg/DESCR << 'END-of-larswm/pkg/DESCR' XTiling window manager for X, based on David Hogan's 9wm. XIt provides virtual desktops, support for tiled and untiled Xwindows, keyboard shortcuts and more, while using very little Xsystem resources. END-of-larswm/pkg/DESCR echo x - larswm/pkg/PLIST sed 's/^X//' >larswm/pkg/PLIST << 'END-of-larswm/pkg/PLIST' Xbin/larswm Xshare/doc/larswm/README Xshare/doc/larswm/README.9wm Xshare/doc/larswm/ChangeLog Xshare/doc/larswm/keyboard_refcard.ms Xshare/doc/larswm/larswmrc_refcard.ms Xshare/doc/larswm/mouse_refcard.ms Xshare/doc/larswm/sample.barclock Xshare/doc/larswm/sample.barinfo Xshare/doc/larswm/sample.editor Xshare/doc/larswm/sample.larswmrc Xshare/doc/larswm/sample.xsession X@dirrm share/doc/larswm END-of-larswm/pkg/PLIST echo x - larswm/pkg/MESSAGE sed 's/^X//' >larswm/pkg/MESSAGE << 'END-of-larswm/pkg/MESSAGE' XIncluded in this package are a few sample configuration files. XPlease see the /usr/X11R6/share/doc/larswm directory. XNOTE: larswm will not tile windows unless told to do so in X a .larswmrc located in your home directory. END-of-larswm/pkg/MESSAGE exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Oct 7 19:54:15 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 35E5237B502; Sat, 7 Oct 2000 19:54:14 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA88040; Sat, 7 Oct 2000 19:54:14 -0700 (PDT) (envelope-from kris@FreeBSD.org) Date: Sat, 7 Oct 2000 19:54:14 -0700 (PDT) From: Message-Id: <200010080254.TAA88040@freefall.freebsd.org> To: jamie@jamiesdomain.org.uk, kris@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21820: Problems with Netscape 4.73 and select boxes Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Problems with Netscape 4.73 and select boxes State-Changed-From-To: open->closed State-Changed-By: kris State-Changed-When: Sat Oct 7 19:52:57 PDT 2000 State-Changed-Why: Sorry, but there's nothing we (FreeBSD) can do about this. Try a later version of netscape (you should be using a more recent version anyway for security reasons - see the recent advisory) - and if it still persists, you could try reporting the bug to netscape (but I wouldn't expect a solution - netscape for unix has been broken since day 1) http://www.freebsd.org/cgi/query-pr.cgi?pr=21820 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message