From owner-freebsd-ports Sat May 8 13:57:28 1999 Delivered-To: freebsd-ports@freebsd.org Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 43A2B151B2 for ; Sat, 8 May 1999 13:57:19 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id D16E014A8; Sat, 8 May 1999 13:57:14 -0700 (PDT) Content-Length: 4446 Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <199905080150.SAA09657@freefall.freebsd.org> Date: Sat, 08 May 1999 13:57:14 -0700 (PDT) Reply-To: Chris Piazza From: Chris Piazza To: Chris Piazza Subject: RE: ports/11567: Update: games/xqf Cc: freebsd-ports@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I took another look at this and I see the qstat 2.3c support now. It is important that users update their qstat, though. Files removed: patch-ab New patch below: Index: xqf/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/games/xqf/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 1999/04/22 03:20:14 1.2 +++ Makefile 1999/05/08 20:50:22 @@ -1,12 +1,12 @@ # New ports collection makefile for: xqf -# Version required: 0.8.7.2 +# Version required: 0.8.99.2 # Date created: 08 February 1999 # Whom: steve farrell # # $Id: Makefile,v 1.2 1999/04/22 03:20:14 mharo Exp $ # -DISTNAME= xqf-0.8.99.1 +DISTNAME= xqf-0.8.99.2 CATEGORIES= games MASTER_SITES= ftp://ftp.linuxgames.com/xqf/ @@ -16,5 +16,8 @@ LIB_DEPENDS= gtk12:${PORTSDIR}/x11-toolkits/gtk12 USE_GMAKE= yes + +post-install: + @ ${CAT} ${PKGDIR}/MESSAGE .include Index: xqf/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/games/xqf/files/md5,v retrieving revision 1.2 diff -u -r1.2 md5 --- md5 1999/04/22 03:20:14 1.2 +++ md5 1999/05/08 19:40:19 @@ -1 +1 @@ -MD5 (xqf-0.8.99.1.tar.gz) = 09ca80d248b3e469fb4d852c268ed740 +MD5 (xqf-0.8.99.2.tar.gz) = c8ebcbfb208644a56580962e370a6a45 Index: xqf/patches/patch-aa =================================================================== RCS file: /cvs/FreeBSD/ports/games/xqf/patches/patch-aa,v retrieving revision 1.2 diff -u -r1.2 patch-aa --- patch-aa 1999/04/22 03:20:15 1.2 +++ patch-aa 1999/05/08 20:47:41 @@ -1,34 +1,30 @@ -*** Makefile.orig Wed Apr 21 19:36:44 1999 ---- Makefile Thu Apr 22 10:26:50 1999 -*************** -*** 1,6 **** - CC = gcc -! CFLAGS = -O2 -g -Wall `gtk-config --cflags` # -DDEBUG #-DDNS_STANDALONE -! LDFLAGS = `gtk-config --libs` - - INSTALL_ROOT = /usr/local - ---- 1,6 ---- - CC = gcc -! CFLAGS = -O2 -g -Wall `gtk12-config --cflags` # -DDEBUG #-DDNS_STANDALONE -! LDFLAGS = `gtk12-config --libs` - - INSTALL_ROOT = /usr/local - -*************** -*** 22,28 **** - $(CC) $(CFLAGS) $(CPPFLAGS) -MM $$i; done) > Makefile - - install: -! install -s -m 755 -g root -o root $(TARGET) $(INSTALL_ROOT)/bin - - clean: - rm -f *.[oasi] *~ core $(TARGET) Makefile.old ---- 22,28 ---- - $(CC) $(CFLAGS) $(CPPFLAGS) -MM $$i; done) > Makefile - - install: -! install -c -s -m 755 -g wheel -o root $(TARGET) $(INSTALL_ROOT)/bin - - clean: - rm -f *.[oasi] *~ core $(TARGET) Makefile.old +--- Makefile.orig Fri May 7 09:03:16 1999 ++++ Makefile Sat May 8 13:47:29 1999 +@@ -17,13 +17,13 @@ + # -DDEBUG + # + +-EXTRA_CFLAGS = # -DQSTAT23 -DCOMPRESSOR_BZIP2 # -DDEBUG ++EXTRA_CFLAGS = -DQSTAT23 #-DCOMPRESSOR_BZIP2 # -DDEBUG + +-CC = gcc +-CFLAGS = -O2 -g -Wall `gtk-config --cflags` $(EXTRA_CFLAGS) +-LDFLAGS = `gtk-config --libs` ++CC ?= gcc ++CFLAGS += `gtk12-config --cflags` $(EXTRA_CFLAGS) ++LDFLAGS = `gtk12-config --libs` + +-INSTALL_ROOT = /usr/local ++INSTALL_ROOT = ${PREFIX} + + TARGET = xqf + OBJS = xqf.o xqf-ui.o game.o pref.o server.o stat.o rc.o dialogs.o \ +@@ -43,7 +43,7 @@ + $(CC) $(CFLAGS) $(CPPFLAGS) -MM $$i; done) > Makefile + + install: +- install -s -m 755 -g root -o root $(TARGET) $(INSTALL_ROOT)/bin ++ install -c -s -m 755 -g wheel -o root $(TARGET) $(INSTALL_ROOT)/bin + + clean: + rm -f *.[oasi] *~ core $(TARGET) Makefile.old Index: xqf/patches/patch-ab =================================================================== RCS file: patch-ab diff -N patch-ab --- /tmp/cvsE45380 Sat May 8 13:54:03 1999 +++ /dev/null Sat May 8 13:51:45 1999 @@ -1,12 +0,0 @@ -*** srv-list.c.orig Thu Apr 22 10:29:49 1999 ---- srv-list.c Thu Apr 22 10:29:50 1999 -*************** -*** 16,21 **** ---- 16,22 ---- - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA - */ - -+ #include - #include /* inet_ntoa */ - #include /* inet_ntoa */ - #include /* inet_ntoa */ --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 8 14: 0:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 20653151B2 for ; Sat, 8 May 1999 14:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA36621; Sat, 8 May 1999 14:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 8 May 1999 14:00:04 -0700 (PDT) Message-Id: <199905082100.OAA36621@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Chris Piazza Subject: RE: ports/11568: Make qstat use CFLAGS Reply-To: Chris Piazza Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11568; it has been noted by GNATS. From: Chris Piazza To: cpiazza@home.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: RE: ports/11568: Make qstat use CFLAGS Date: Sat, 08 May 1999 13:56:58 -0700 (PDT) I figured out how to get xqf to use 2.3c, so new patch below: files added: patch-aa Index: qstat/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/games/qstat/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 1999/03/15 01:35:02 1.2 +++ Makefile 1999/05/08 20:48:10 @@ -1,13 +1,13 @@ # New ports collection makefile for: qstat -# Version required: 2.2b +# Version required: 2.3c # Date created: 28 May 1998 # Whom: Daniel O'Connor # # $Id: Makefile,v 1.2 1999/03/15 01:35:02 steve Exp $ # -DISTNAME= qstat22b -PKGNAME= qstat-2.2b +DISTNAME= qstat23c +PKGNAME= qstat-2.3c CATEGORIES= misc MASTER_SITES= ftp://ftp.activesw.com/pub/quake/ Index: qstat/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/games/qstat/files/md5,v retrieving revision 1.2 diff -u -r1.2 md5 --- md5 1999/03/15 01:35:05 1.2 +++ md5 1999/05/08 20:48:55 @@ -1 +1 @@ -MD5 (qstat22b.tar.gz) = 368d42a6a92ad749c51a6906973a47ac +MD5 (qstat23c.tar.gz) = 9f178469c6245c693cdf319c0dabc817 Index: qstat/patches/patch-aa =================================================================== RCS file: patch-aa diff -N patch-aa --- /dev/null Sat May 8 13:51:45 1999 +++ patch-aa Sat May 8 13:48:33 1999 @@ -0,0 +1,8 @@ +--- Makefile.orig Fri May 7 18:42:29 1999 ++++ Makefile Fri May 7 18:42:44 1999 +@@ -1,5 +1,4 @@ + +-CFLAGS = + + # Uncomment if you have gcc + # CC = gcc --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 8 14: 0:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 813561522A for ; Sat, 8 May 1999 14:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA36630; Sat, 8 May 1999 14:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from dan-h.fio.cz (fio.vol.cz [195.250.146.50]) by hub.freebsd.org (Postfix) with ESMTP id 9BE22151B2 for ; Sat, 8 May 1999 13:59:15 -0700 (PDT) (envelope-from dan@obluda.cz) Received: (from dan@localhost) by dan-h.fio.cz (8.9.2/8.9.0) id WAA14713; Sat, 8 May 1999 22:58:31 +0200 (CEST) Received: (from dan@localhost) by dan-h.fio.cz (8.9.2/8.9.0) id SAA10538; Sat, 8 May 1999 18:36:26 +0200 (CEST) Message-Id: <199905081636.SAA10538@dan-h.fio.cz> Date: Sat, 8 May 1999 18:36:26 +0200 (CEST) From: dan@obluda.cz Reply-To: dan@obluda.cz To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11593: bug in sources of package tac_plus-2.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11593 >Category: ports >Synopsis: minor bug when config file not found in tacacsd >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 May 8 14:00:04 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dan Lukes >Release: FreeBSD 3.1-RELEASE i386 >Organization: Obludarium >Environment: no specific environment package "tac_plus-2.1 installed" >Description: Segmentation fault when configuration file not found. See the code in the "fix" section: if (cf...==NULL) { ... fclose(cf) ... } The segmentation fault is caused by fclose(NULL) ... >How-To-Repeat: Start tacacsd with nonexistent configuration file. >Fix: The original publisher, Cisco systems, no longer offer and maintain tacacs sources, so we should patch existing sources rather than ask original publisher to correct it's sources ... Apply this patch to source from the package is compiled from: *** config.c.ORIG Fri May 7 22:49:55 1999 --- config.c Fri May 7 23:24:33 1999 *************** *** 1212,1218 **** if ((cf = fopen(cfile, "r")) == NULL) { report(LOG_ERR, "read_config: fopen() error for file %s %s, exiting", cfile, sys_errlist[errno]); - fclose(cf); return (1); } if (parse_decls() || sym_error) { >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 May 8 14:49:22 1999 Delivered-To: freebsd-ports@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 1D44D14CE5 for ; Sat, 8 May 1999 14:49:18 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (d60-077.leach.ucdavis.edu [169.237.60.77]) by relay.nuxi.com (8.9.2/8.9.1) with ESMTP id OAA45307; Sat, 8 May 1999 14:48:55 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id VAA09288; Sat, 8 May 1999 21:48:55 GMT (envelope-from obrien) Date: Sat, 8 May 1999 14:48:55 -0700 From: "David O'Brien" To: Glenn Johnson Cc: ports@freebsd.org Subject: Re: egcs port and -aout flag Message-ID: <19990508144855.C9110@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <19990505164351.A14116@symbion.srrc.usda.gov> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <19990505164351.A14116@symbion.srrc.usda.gov>; from Glenn Johnson on Wed, May 05, 1999 at 04:43:51PM -0500 X-Operating-System: FreeBSD 4.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > However, the egcs port does not know about the '-aout' flag and > possibly some other changes that were made to the base egcs in CURRENT. I take diffs. -- -- David (obrien@NUXI.com -or- 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 Sat May 8 17:55: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from smtp.mtci.ne.jp (smtp.mtci.ne.jp [210.231.230.8]) by hub.freebsd.org (Postfix) with ESMTP id C7A8B14A09 for ; Sat, 8 May 1999 17:55:06 -0700 (PDT) (envelope-from okazaki@be.to) Received: from acidrain (ppp43-Mobara1.mtci.ne.jp [210.172.1.245]) by smtp.mtci.ne.jp (8.8.8/3.6W) with SMTP id JAA05619 for ; Sun, 9 May 1999 09:55:04 +0900 Received: (qmail 675 invoked from network); 9 May 1999 00:51:38 -0000 Received: from localhost (HELO acidrain.localnet) (127.0.0.1) by localhost with SMTP; 9 May 1999 00:51:38 -0000 Date: Sun, 09 May 1999 09:51:36 +0900 Message-ID: <14132.56344.446228.72159A@dolphin.be.to> From: OKAZAKI Tetsurou To: ports@freebsd.org Subject: libtool/patches/patch-ad is empty User-Agent: Wanderlust/0.10.0 (Got My Mind Set On You) SEMI/1.13.4 (Terai) FLIM/1.12.6 (=?ISO-8859-4?Q?Family-K=F2enmae?=) Emacs/20.3 (i386--freebsd) MULE/4.0 (HANANOEN) Organization: Personal. MIME-Version: 1.0 (generated by SEMI 1.13.4 - "Terai") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, In the devel/libtool/patches directory, the patch-ad (revision 1.2 Tue May 4 22:35:35 1999 UTC) is empty. It should be moved to Attic? Tetsurou To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 8 18: 0:47 1999 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 9A03D14A09 for ; Sat, 8 May 1999 18:00:42 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.1a/8.9.0) with ESMTP id UAA19939; Sat, 8 May 1999 20:00:38 -0500 (CDT) Date: Sat, 8 May 1999 20:00:37 -0500 (CDT) From: Steve Price To: OKAZAKI Tetsurou Cc: ports@FreeBSD.ORG Subject: Re: libtool/patches/patch-ad is empty In-Reply-To: <14132.56344.446228.72159A@dolphin.be.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 On Sun, 9 May 1999, OKAZAKI Tetsurou wrote: # Hi, # # In the devel/libtool/patches directory, # the patch-ad (revision 1.2 Tue May 4 22:35:35 1999 UTC) # is empty. It should be moved to Attic? Eek, you're right. I just removed it. Thanks. -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 8 18: 7:40 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 78A6014DB1; Sat, 8 May 1999 18:07:39 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA51051; Sat, 8 May 1999 18:07:39 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sat, 8 May 1999 18:07:39 -0700 (PDT) From: Message-Id: <199905090107.SAA51051@freefall.freebsd.org> To: andy@icc.surw.chel.su, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11492: Update port: devel/ncurses Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: devel/ncurses State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sat May 8 18:07:11 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 8 18:20:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 49498151CA; Sat, 8 May 1999 18:20:19 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA52132; Sat, 8 May 1999 18:20:19 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sat, 8 May 1999 18:20:19 -0700 (PDT) From: Message-Id: <199905090120.SAA52132@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, erich@FreeBSD.org Subject: Re: ports/11460: Update to the xlispstat port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update to the xlispstat port Responsible-Changed-From-To: freebsd-ports->erich Responsible-Changed-By: steve Responsible-Changed-When: Sat May 8 18:20:03 PDT 1999 Responsible-Changed-Why: Over to port's maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 8 18:20:42 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E9F92154A4; Sat, 8 May 1999 18:20:41 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA52275; Sat, 8 May 1999 18:20:41 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sat, 8 May 1999 18:20:41 -0700 (PDT) From: Message-Id: <199905090120.SAA52275@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, chuckr@FreeBSD.org Subject: Re: ports/11504: Update ports math/octave Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update ports math/octave Responsible-Changed-From-To: freebsd-ports->chuckr Responsible-Changed-By: steve Responsible-Changed-When: Sat May 8 18:20:25 PDT 1999 Responsible-Changed-Why: Over to port's maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 8 18:21: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 878F4151CA; Sat, 8 May 1999 18:21:05 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA52349; Sat, 8 May 1999 18:21:05 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sat, 8 May 1999 18:21:05 -0700 (PDT) From: Message-Id: <199905090121.SAA52349@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, nik@FreeBSD.org Subject: Re: ports/11510: new version of www/sitecopy (0.6.0) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new version of www/sitecopy (0.6.0) Responsible-Changed-From-To: freebsd-ports->nik Responsible-Changed-By: steve Responsible-Changed-When: Sat May 8 18:20:50 PDT 1999 Responsible-Changed-Why: Over to port's maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 8 18:21:30 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 534B8151CA; Sat, 8 May 1999 18:21:29 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA52415; Sat, 8 May 1999 18:21:29 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sat, 8 May 1999 18:21:29 -0700 (PDT) From: Message-Id: <199905090121.SAA52415@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/11570: Update: devel/xwpe Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: devel/xwpe Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: steve Responsible-Changed-When: Sat May 8 18:21:12 PDT 1999 Responsible-Changed-Why: Over to port's maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 8 19: 1:47 1999 Delivered-To: freebsd-ports@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 6967F14DA8 for ; Sat, 8 May 1999 19:01:46 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (d60-077.leach.ucdavis.edu [169.237.60.77]) by relay.nuxi.com (8.9.2/8.9.1) with ESMTP id TAA96470 for ; Sat, 8 May 1999 19:01:45 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id CAA85358 for ports@freebsd.org; Sun, 9 May 1999 02:01:45 GMT (envelope-from obrien) Date: Sat, 8 May 1999 19:01:44 -0700 From: "David O'Brien" To: ports@freebsd.org Subject: where should dos2unix type utils go? Message-ID: <19990508190144.A85343@dragon.nuxi.com> Reply-To: obrien@NUXI.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i X-Operating-System: FreeBSD 4.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org we have textproc/tuc and converters/unix2dos -- -- David (obrien@NUXI.com -or- 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 Sat May 8 21:19:16 1999 Delivered-To: freebsd-ports@freebsd.org Received: from hyperhost.net (ether.lightrealm.com [207.159.132.5]) by hub.freebsd.org (Postfix) with ESMTP id 8C43214F17 for ; Sat, 8 May 1999 21:19:11 -0700 (PDT) (envelope-from patseal@hyperhost.net) Received: from p1.a8.du.radix.net (p1.a8.du.radix.net [207.192.132.129]) by hyperhost.net (8.8.5/8.8.5) with ESMTP id AAA10526 for ; Sun, 9 May 1999 00:19:06 -0400 (EDT) Date: Sun, 9 May 1999 00:18:12 -0400 (EDT) From: Patrick Seal To: freebsd-ports@FreeBSD.ORG Subject: weird libtool stuff 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 ports such as ORBit and glib12 won't install because of this code in /usr/ports/*/$portname/work/$portname/libtool ===> Installing for ORBit-0.4.3 ===> ORBit-0.4.3 depends on shared library: glib12.1 - found Making install in popt gmake[1]: Entering directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/popt' gmake[2]: Entering directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/popt' gmake[2]: Nothing to be done for `install-exec-am'. gmake[2]: Nothing to be done for `install-data-am'. gmake[2]: Leaving directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/popt' gmake[1]: Leaving directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/popt' Making install in libIDL gmake[1]: Entering directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/libIDL' gmake[2]: Entering directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/libIDL' /bin/sh ./mkinstalldirs /usr/local/lib >>>>>>>>>>> offender /bin/sh ./libtool --mode=install /usr/bin/install -c -o root -g wheel libIDL.la /usr/local/lib/libIDL.la >>>>>>>>>>> /usr/bin/install -c -o root -g wheel .libs/libIDL.so.1 /usr/local/lib/libIDL.so.1 (cd /usr/local/lib && rm -f libIDL.so && ln -s libIDL.so.1 libIDL.so) (cd /usr/local/lib && rm -f libIDL.so && ln -s libIDL.so.1 libIDL.so) /usr/bin/install -c -o root -g wheel .libs/libIDL.lai /usr/local/lib/libIDL.la /usr/bin/install -c -o root -g wheel .libs/libIDL.a /usr/local/lib/libIDL.a ranlib /usr/local/lib/libIDL.a chmod 644 /usr/local/lib/libIDL.a PATH=" eval: 1: Syntax error: Unterminated quoted string gmake[2]: *** [install-libLTLIBRARIES] Error 2 gmake[2]: Leaving directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/libIDL' gmake[1]: *** [install-am] Error 2 gmake[1]: Leaving directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/libIDL' gmake: *** [install-recursive] Error 1 *** Error code 2 Stop. *** Error code 1 Stop. *** Error code 1 Stop. here's the fix that works for me: --- /usr/ports/devel/ORBit/work/ORBit-0.4.3/libIDL/libtool.bad Sun May 9 00:10:09 1999 +++ /usr/ports/devel/ORBit/work/ORBit-0.4.3/libIDL/libtool.good Sun May 9 00:15:12 1999 @@ -3532,12 +3532,12 @@ $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2 fi - if test -n "$current_libdirs"; then - # Maybe just do a dry run. - test -n "$run" && current_libdirs=" -n$current_libdirs" - exec $SHELL $0 --finish$current_libdirs - exit 1 - fi +# if test -n "$current_libdirs"; then +# # Maybe just do a dry run. +# test -n "$run" && current_libdirs=" -n$current_libdirs" +# exec $SHELL $0 --finish$current_libdirs +# exit 1 +# fi exit 0 ;; I just today did a `make world` to see if it was my system doing this. I really hate having to patch stuff to get this to work, can anyone help!!!! Thanks, ------------------------------------ _____________________________________ Patrick Seal |"Microsoft isn't evil, they just make | really crappy operating systems." Hyperhost - http://www.hyperhost.net| -Linus Torvalds hosting and Design http://www.freebsd.org - http://www.linux.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 8 22:11: 0 1999 Delivered-To: freebsd-ports@freebsd.org Received: from gershwin.tera.com (gershwin.tera.com [207.224.230.28]) by hub.freebsd.org (Postfix) with ESMTP id 8CCCF159D3 for ; Sat, 8 May 1999 22:10:55 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (tao.tera.com [207.108.223.55]) by gershwin.tera.com (8.8.8/8.8.8) with ESMTP id WAA19065; Sat, 8 May 1999 22:10:52 -0700 (PDT) Received: (from kline@localhost) by tao.thought.org (8.8.8/8.7.3) id WAA22261; Sat, 8 May 1999 22:10:43 -0700 (PDT) From: Gary Kline Message-Id: <199905090510.WAA22261@tao.thought.org> Subject: Re: weird libtool stuff In-Reply-To: from Patrick Seal at "May 9, 99 00:18:12 am" To: patseal@hyperhost.net (Patrick Seal) Date: Sat, 8 May 1999 22:10:43 -0700 (PDT) Cc: freebsd-ports@FreeBSD.ORG Organization: <> thought.org: public service Unix since 1986... <> X-Mailer: ELM [version 2.4ME+ PL32 (25)] 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 According to Patrick Seal: > ports such as ORBit and glib12 won't install because of this code in > /usr/ports/*/$portname/work/$portname/libtool > > ===> Installing for ORBit-0.4.3 > ===> ORBit-0.4.3 depends on shared library: glib12.1 - found > Making install in popt > gmake[1]: Entering directory > `/usr/ports/devel/ORBit/work/ORBit-0.4.3/popt' > gmake[2]: Entering directory > `/usr/ports/devel/ORBit/work/ORBit-0.4.3/popt' > gmake[2]: Nothing to be done for `install-exec-am'. > gmake[2]: Nothing to be done for `install-data-am'. > gmake[2]: Leaving directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/popt' > gmake[1]: Leaving directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/popt' > Making install in libIDL > gmake[1]: Entering directory > `/usr/ports/devel/ORBit/work/ORBit-0.4.3/libIDL' > gmake[2]: Entering directory > `/usr/ports/devel/ORBit/work/ORBit-0.4.3/libIDL' > /bin/sh ./mkinstalldirs /usr/local/lib > [[ ... ]] Hmm, I'm having an earlier problem with ORBit and my 2.2.8. I'm tring to build gIDE and other tools. So far, this is as far as I get with ORBit; both from the port makefile and its own makefile. cc -O -pipe -o orbit-idl main.o orbit-c-backend.o orbit-c-header.o orbit-c-skeletons.o orbit-c-stubs.o orbit-c-common.o orbit-c-marshal.o orbit-c-demarshal.o orbit-c-typecode.o orbit-c-skelimpl.o ../../libIDL/.libs/libIDL.a -L/usr/local/lib -lglib12 -L/usr/local/lib -lglib12 ../../popt/.libs/libpopt.al -lm ld: symbol __GLOBAL_OFFSET_TABLE_ remains undefined gmake[3]: Leaving directory `/tmp/pub/FreeBSD/FreeBSD-current/ports/devel/ORBit/work/ORBit-0.4.3/src/idl-compiler' Making all in orb gmake[3]: Entering directory `/tmp/pub/FreeBSD/FreeBSD-current/ports/devel/ORBit/work/ORBit-0.4.3/src/orb' ../../src/idl-compiler/orbit-idl --noskels ../../src/daemons/interface_repository/interface_repository.idl gmake[3]: *** [interface_repository.h] Bus error (core dumped) gmake[3]: Leaving directory `/tmp/pub/FreeBSD/FreeBSD-current/ports/devel/ORBit/work/ORBit-0.4.3/src/orb' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/tmp/pub/FreeBSD/FreeBSD-current/ports/devel/ORBit/work/ORBit-0.4.3/src' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/tmp/pub/FreeBSD/FreeBSD-current/ports/devel/ORBit/work/ORBit-0.4.3' gmake: *** [all-recursive-am] Error 2 *** Error code 2 Stop. *** Error code 1 Stop. *** Error code 1 Stop. Note that I haven't tried to install ORBit by itself; without using the FBSD patches.... --Yet. Feedback, people? Is this something known to run on 3.X systems or whatever else? gary > -- Gary D. Kline kline@tao.thought.org Public service uNix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 8 23:10: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D47431537C for ; Sat, 8 May 1999 23:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA75981; Sat, 8 May 1999 23:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.tg.rim.or.jp (mail.tg.rim.or.jp [202.247.130.149]) by hub.freebsd.org (Postfix) with ESMTP id 5D6EC14D0E for ; Sat, 8 May 1999 23:01:18 -0700 (PDT) (envelope-from inagaki@tg.rim.or.jp) Received: from lunatic.kareidoscope.ne.jp (skai0724.ppp.infoweb.ne.jp [202.248.10.232]) by mail.tg.rim.or.jp (8.8.8/3.6W-RIMNET-98-06-09) with ESMTP id PAA13708 for ; Sun, 9 May 1999 15:01:16 +0900 (JST) Received: from localhost (localhost [127.0.0.1]) by lunatic.kareidoscope.ne.jp (8.9.3/3.7W) with ESMTP id PAA33634 for ; Sun, 9 May 1999 15:02:11 +0900 (JST) Message-Id: <19990509150211A.inagaki@tg.rim.or.jp> Date: Sun, 09 May 1999 15:02:11 +0900 From: Inagaki Kentaro (=?iso-2022-jp?B?GyRCMHAzQDdyQkBPOhsoQg==?=) Reply-To: inagaki@tg.rim.or.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11599: New port: japanese/xdvik-vflib Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11599 >Category: ports >Synopsis: New port: japanese/xdvik-vflib >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat May 8 23:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Inagaki Kentaro & >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: >Description: This port is the renewal of japanese/vfxdvik. The name of port is changed to xdvik-vflib from this version. Therefore, please delete japanese/vfxdvik at the time of commit. Color DVI is able to be displayed by using anti-aliasing from this version. Also the calling method of dvipsk is changed. >How-To-Repeat: >Fix: begin 644 ja-xdvik-vflib-22.02-990504.tar.gz M'XL(```````"`^T;[7+:2-)_T5-T;*J"XT@@/FVR9,T"=K@8\(+B]=9FSS7` M"&2#I).$8Y^+A[EGN1>[[I$$`F,[N5T[=UOJ*B/-3'?/1\]T]W3+-\-KXTJ^ MUB=&/[WU3`#Y3*E0@"T`M510Z8F0"9Y!`8HE-5K=F$13<:/T\QM":RS(]RBD+KF`\^BD9D>8(7#G-M=GS"W)(RHL0#) MX"Y<<\QVG-F;FB)]8(Q\MFV%DYM0GT0;"&JZC?<`>&]V> M4N_4UIN:IL<=DTW.F.,^,-!+>\^S!GMC-LD^B!$XYYN;I\Q!:SCB@HV0*PG[ M&W#WA$@>HC!N9W*?>ZSX`(*-\GV@R6,N,^29Z]X^)B1U7Q?+JCPVR2BF:A>> MQ@UE^C68OEB%"/:PQN63K\&W`]X@'0X-QYG"^G9?K0]Y2=]3_Y.KXSY#!.C; MXG]9TO^J6HCC/]]'_M-AX67M/V0SH?P+^7RQ*.(_L?U_&6C5"Q"]WZ%:=I31 M/W>A`BK+Y=1!,7-0*N3X`>\76>;@0.=ZE@]9X:#`I75:_S;HZ[V`A][O(QNV M7Q@R7M"'I1+>[W/9?*Z0/=CG:GX_OG7\SYW_T,M[P?-?S$3BOQ3_SY?R(_4\-,X)\0Q(Z(^(B`C60^U#"RO'&"?NY1/-@RG*YQ:FN:-!RMX5*E-!5, MT!.=23J-@'XD?<$YUA?/>?\GQ?T,'N!_X?_E\]G8__M>\A=/F?5?+/Z3*X7Q MGRPZ"%A30`\PUO\O`;(L`UY*K\3M\RK=8E=<1+P-4[$<8Y30QC.HVKA`^Y!5 MR_E2.;\/ZL'!@;2WM_<`X3K-?CEWX-,<'H)<++PMP9[X/3RDJ+8?\K'`8QZG MJ#2^ABX(OGXFE&2J>G+2J55W)9#D,#9>$8D(I8_V86^U3@KCYRY6)%-!@8@A MC)6SR:2\;')W?5XJ+*-?-%8U<_!6S<.>>.;$>`T3]\MD(E.L[#X'GQ02R53O M0^/D9!<1/,N^<)T!7O9WTXJ2GEX%'+#"Q68E%]7_X1G^ ML_MX0O^7\J5B:/^SA6Q)Q/]+3FA`\\RI%.@ZU`CGD9 M922V2?13D!TX"]*I0=)U6!97.8H#8&,=E3D,'(X/OX'@0%@%80EVX)>Q-2W# M&@29RC!1"3]LRE2^EW:0/ME$QN&.?7L-JE(0K-,9-:WN0R97SI3*:@EUJJU%)1`(7TNG'8[_RDLF1$Q&TUJI:X[C3;39ZA!#DL7U5 MWZKVM$;WHM?4J%'W['(ZC;^*80^4P=CH,WFFL`$..FW/^O2GW+(I3BD=]IY& M'9=().\BC"[(U)W,)>FTJM4^/`]OP?JH>4*<'X[@!".@-;OH::C`*PG95B6< M->IJ_&MT*XF-N61II_NI?5%OG#;:=>QAJI>3=Z>=KM9#I39/+Y+4E!V0!]9T M:IG2#AJW)87(]F>5;'XSH9".)#7.M6ZUIEUTVB>_5G"BH7#GR;NPJ??IZ!R7 M\E.O<7'+6J=]U#S^U/5K=A;%BVKWN%8FZT^X+.+S MP\HM=W$UU[%H?1>8_:%M5'*93)06-\E597\5;V'X*CBW;N.H>3Y/W\^^+;MJ MM,\J$-C1RG;R+GB=;Q/;T+Z22]"MMB+M817BK1KA*(Y?L\JJ7M6J41PJ1YBT MJNUH*Q;GVY+/IR?&FFB=XKXAK]SZ>R(ON1`R2KEY:S]W`?94#=- M&N?R6D^G)>VH]=6XIQ\WH(I8ED"TKU`>B$:2]\=V7F\<]2K;P1%X,;8D=5FU"#T>WQ`YJ%LC;.+2V6O'="4G2 M&N>MHPJ=V=5IB[21=%;M(H+/,GW-G+0WM:E)S%4BMP%/"9T#P6;N>W8T=2Q? MM#KUQH^5R:5NS1R)_*W>CY6$_Y4(:L5.#=?PJ/JSV*F+G*HH^=FMR.MJ]C32 MX#Z4.GT!$DJ8K]=&,Z4K#_73IYF;?>FUJVYC\_&I$/TNZ$7V1(MW4 M2AIP4_TR.;JI=4-F]"FT15KT0<35G.@C:/<3HD\B+[.A:+G?W`-R&&A'EO$% M3B>0J7JQ+7>@NWS#IK\2Q`DP3]L]Y4P,!WW6^CZ,_*,B)?H"^\YR,P@IG^UULT")=ZC9X],;=?B+*%F^&(OE]#U)E+'X%J/Z"B,EHB!3>9+'%/]2BI>GAA05-E6EY$'YXME@(O&H[GC&839@S MN84^'S#!6O`@RT3(P;(;GIBHX8W%B"Q;>(4X/J$;-@M14O!BB$:8Y#&'2@5\ M(4D15V!/J!RLW&S6`X)5*[M'QIA&(F,S.GNX,I4`4>&3^UTN=LG]CA_I=TGU M5;T_TOFW=OLM';K<5]V59^\*[Z8Z'E;%,`>3V9###WUWJ-`U0;$=KDROWDL2 MOL@ZQU-=EA*'*=(!Z';5/G3FL/WF#\#VNU56D>O!VG06!P@O\\%Q4**WB4=8 M!4K&X3J=,VMQD/U&!.+0K2#=A'C=UIS"%'=S^/P..0TM.=!/]UBEE_$YY$J. MF(8^T!SH1N#[0_0NW.)%Y=%)];@7ENB"0.^AKZ?AKFEH!'O(6 M*8HA+A<4PU@D%(/0AHAKD*IXA3(S3#Y,M3NT8\D'V256=ZV/M'EAW0E:?".3 M.*08CB%B.'=$-O?C-R@@$71:]5PWKD[`"$K$7@)SP(&\X!G8&_5OS? MMX??.?]3$-]_%-3X_[^^F_S%X4;W7S=&,X<_>_P/\H5(_*](\;]BOIB/XW\O M$O][E:9/@-VQ)`W&(PI-5[85D=CQLSOAOU)$1D].7P=0197Y26N*%8VWJ=]LA\VC0/>K]=*PAS$WPO$$$,,,<000PPQ 8Q!!###'$$$,,,<3P_P7_`2!,5.$`4``` ` end Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit >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 May 8 23:27:51 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mx.nsu.ru (mx.nsu.ru [193.124.215.71]) by hub.freebsd.org (Postfix) with ESMTP id 67A40154E1 for ; Sat, 8 May 1999 23:27:44 -0700 (PDT) (envelope-from fjoe@iclub.nsu.ru) Received: from iclub.nsu.ru (fjoe@iclub.nsu.ru [193.124.222.66]) by mx.nsu.ru (8.9.1/8.9.0) with ESMTP id NAA29069 for ; Sun, 9 May 1999 13:26:58 +0700 (NOVST) Received: from localhost (fjoe@localhost) by iclub.nsu.ru (8.9.3/8.8.5) with ESMTP id NAA52748 for ; Sun, 9 May 1999 13:26:57 +0700 (NSS) Date: Sun, 9 May 1999 13:26:56 +0700 (NSS) From: Max Khon To: ports@freebsd.org Subject: PAM 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, there! John Polstra has just committed patches (to both -current and -stable) for PAM which allow samba + PAM, BeroFTPD + PAM, imap-uw + PAM work properly Is there any chance that this stuff will be PAMified in 3.2-RELEASE? You can get PAMified versions of ports for this stuff from http://iclub.nsu.ru/~fjoe Please reply directly as I am not subscribed /fjoe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 0:50: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AB5E14E36 for ; Sun, 9 May 1999 00:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA88450; Sun, 9 May 1999 00:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 9 May 1999 00:50:03 -0700 (PDT) Message-Id: <199905090750.AAA88450@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Andrey Zakhvatov Subject: Re: ports/11492: Update port: devel/ncurses Reply-To: Andrey Zakhvatov Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11492; it has been noted by GNATS. From: Andrey Zakhvatov To: sprice@hiwaay.net (Steve Price) Cc: freebsd-gnats-submit@freebsd.org Subject: Re: ports/11492: Update port: devel/ncurses Date: Sun, 9 May 1999 11:44:21 +0400 (MSD) Hello, > I was able to get the port to work on -current with the following > patch (in addition to your changes). Can you try it on your 3.x > box and make sure it doesn't break there? Thanks. > > -steve No, It doesn't break anything in 3.1-RELEASE. P.S. It's too late ;) Sincerely yours, Andy -- Tel: +7-(3512)-38-39-73, E-mail: andy@icc.surw.chel.su WWW: http://surw.chel.su/~andy/index.html, ICQ:10705306 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 2:57:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 17E3515162; Sun, 9 May 1999 02:57:13 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA15498; Sun, 9 May 1999 02:57:12 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Date: Sun, 9 May 1999 02:57:12 -0700 (PDT) From: Message-Id: <199905090957.CAA15498@freefall.freebsd.org> To: cpiazza@home.net, kuriyama@FreeBSD.org, freebsd-ports@FreeBSD.org, kuriyama@FreeBSD.org Subject: Re: ports/11591: Update: security/gnupg Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: security/gnupg State-Changed-From-To: open->closed State-Changed-By: kuriyama State-Changed-When: Sun May 9 02:56:25 PDT 1999 State-Changed-Why: Committed. Thanks! Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: kuriyama Responsible-Changed-When: Sun May 9 02:56:25 PDT 1999 Responsible-Changed-Why: It's my port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 4:20: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C590E14FF1 for ; Sun, 9 May 1999 04:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA23286; Sun, 9 May 1999 04:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from icc.surw.chel.su (surw.chel.su [195.54.2.162]) by hub.freebsd.org (Postfix) with ESMTP id C08AA14DFA for ; Sun, 9 May 1999 04:11:41 -0700 (PDT) (envelope-from andy@icc.surw.chel.su) Received: (from andy@localhost) by icc.surw.chel.su (8.9.2/8.8.8) id PAA33107; Sun, 9 May 1999 15:11:39 +0400 (MSD) (envelope-from andy) Message-Id: <199905091111.PAA33107@icc.surw.chel.su> Date: Sun, 9 May 1999 15:11:39 +0400 (MSD) From: Andrey Zakhvatov Reply-To: andy@icc.surw.chel.su To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11600: New port: phalanx-21 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11600 >Category: ports >Synopsis: New port: phalanx-21 >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 May 9 04:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Andrey Zakhvatov >Release: FreeBSD 3.1-RELEASE i386 >Organization: South Ural Railway ICC >Environment: >Description: This is a port of phalanx-XXI, an xboard-compatible chess playing program. Phalanx is a chess playing program. Phalanx is xboard compatible. Running with xboard: 'xboard -fcp phalanx'. Note that permanent brain (pondering) is off by default. Newer versions of xboard set it on with the 'hard' command. If this does not work, try 'xboard -fcp "phalanx -p+"' or (for <4.0.0 versions of xboard) change your initString (see Xboard documentation for details). It's better to stop permanent brain in both programs, when playing Phalanx against another program on a machine with one CPU. It's also possible to run phalanx without xboard. Do "phalanx -h" to get a list of command line options. One important command of phalanx's ASCII interface is "help". # 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: # # phalanx-21 # phalanx-21/Makefile # phalanx-21/files # phalanx-21/files/md5 # phalanx-21/patches # phalanx-21/patches/patch-aa # phalanx-21/pkg # phalanx-21/pkg/PLIST # phalanx-21/pkg/COMMENT # phalanx-21/pkg/DESCR # echo c - phalanx-21 mkdir -p phalanx-21 > /dev/null 2>&1 echo x - phalanx-21/Makefile sed 's/^X//' >phalanx-21/Makefile << 'END-of-phalanx-21/Makefile' X# New ports collection makefile for: phalanx X# Version required: 21 X# Date created: 2 May 1999 X# Whom: Andrey Zakhvatov X# X# $Id$ X# X XDISTNAME= phalanx-21 XCATEGORIES= games XMASTER_SITES= ${MASTER_SITE_SUNSITE} \ X ftp://ftp.math.muni.cz/pub/math/people/Dobes/ XMASTER_SITE_SUBDIR= games/strategy X XMAINTAINER= andy@icc.surw.chel.su X XLIB_DEPENDS= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt X XWRKSRC= ${WRKDIR}/Phalanx-XXI XUSE_GMAKE= yes XALL_TARGET= XMAKEFILE= makefile X Xdo-install: X @ ${INSTALL_PROGRAM} ${WRKSRC}/phalanx ${PREFIX}/bin X @ ${MKDIR} ${PREFIX}/share/phalanx X @ ${INSTALL_DATA} ${WRKSRC}/pbook.phalanx ${PREFIX}/share/phalanx X @ ${INSTALL_DATA} ${WRKSRC}/sbook.phalanx ${PREFIX}/share/phalanx X Xpost-install: X.if !defined(NOPORTDOCS) X @ ${MKDIR} ${PREFIX}/share/doc/phalanx X @ ${INSTALL_DATA} ${WRKSRC}/COPYING ${PREFIX}/share/doc/phalanx X @ ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/phalanx X.endif X X.include END-of-phalanx-21/Makefile echo c - phalanx-21/files mkdir -p phalanx-21/files > /dev/null 2>&1 echo x - phalanx-21/files/md5 sed 's/^X//' >phalanx-21/files/md5 << 'END-of-phalanx-21/files/md5' XMD5 (phalanx-21.tar.gz) = ab1ae987833c25cf8ce00ca8cf2b5b8c END-of-phalanx-21/files/md5 echo c - phalanx-21/patches mkdir -p phalanx-21/patches > /dev/null 2>&1 echo x - phalanx-21/patches/patch-aa sed 's/^X//' >phalanx-21/patches/patch-aa << 'END-of-phalanx-21/patches/patch-aa' X--- makefile Sat Jan 30 00:26:13 1999 X+++ /home/andy/tmp/wrk/makefile Sun May 2 16:46:44 1999 X@@ -1,9 +1,10 @@ X X-CC = gcc X+#CC = gcc X X ####### choose the line that makes the binary faster on your machine X # CFLAGS = -O3 -Wall -fomit-frame-pointer -funroll-loops X-CFLAGS = -O -fomit-frame-pointer X+#CFLAGS = -O -fomit-frame-pointer X+CFLAGS+= -I${LOCALBASE}/include X X ####### debug/tuning options for developers X # CFLAGS = -O -Wall -g3 -static X@@ -20,7 +21,7 @@ X ### -DLEARN_DIR=\"/var/local/lib\" X ### -DQCAPSONLY X X-DEFINES = -DGNUFUN X+DEFINES = -DGNUFUN -DPBOOK_DIR=\"${PREFIX}/share/phalanx\" -DSBOOK_DIR=\"${PREFIX}/share/phalanx\" X LDFLAGS = X X OBJ = .o/phalanx.o .o/bcreate.o .o/search.o .o/io.o .o/data.o \ X@@ -28,7 +29,7 @@ X .o/levels.o .o/book.o .o/killers.o .o/endgame.o .o/learn.o X X phalanx: .o $(OBJ) X- $(CC) $(CFLAGS) $(DEFINES) $(LDFLAGS) $(OBJ) -o phalanx X+ $(CC) $(CFLAGS) $(DEFINES) $(LDFLAGS) $(OBJ) -o phalanx -L${LOCALBASE}/lib -lgnugetopt X strip phalanx X X .o/%.o: makefile %.c END-of-phalanx-21/patches/patch-aa echo c - phalanx-21/pkg mkdir -p phalanx-21/pkg > /dev/null 2>&1 echo x - phalanx-21/pkg/PLIST sed 's/^X//' >phalanx-21/pkg/PLIST << 'END-of-phalanx-21/pkg/PLIST' Xbin/phalanx Xshare/doc/phalanx/COPYING Xshare/doc/phalanx/README Xshare/phalanx/pbook.phalanx Xshare/phalanx/sbook.phalanx X@dirrm share/doc/phalanx X@dirrm share/phalanx END-of-phalanx-21/pkg/PLIST echo x - phalanx-21/pkg/COMMENT sed 's/^X//' >phalanx-21/pkg/COMMENT << 'END-of-phalanx-21/pkg/COMMENT' Xxboard-compatible chess playing program END-of-phalanx-21/pkg/COMMENT echo x - phalanx-21/pkg/DESCR sed 's/^X//' >phalanx-21/pkg/DESCR << 'END-of-phalanx-21/pkg/DESCR' X Phalanx is a chess playing program. Phalanx is xboard compatible. XRunning with xboard: 'xboard -fcp phalanx'. Note that permanent brain X(pondering) is off by default. Newer versions of xboard set it on with Xthe 'hard' command. If this does not work, try 'xboard -fcp "phalanx -p+"' Xor (for <4.0.0 versions of xboard) change your initString (see Xboard Xdocumentation for details). It's better to stop permanent brain in both Xprograms, when playing Phalanx against another program on a machine with Xone CPU. X It's also possible to run phalanx without xboard. Do "phalanx -h" to get Xa list of command line options. One important command of phalanx's ASCII Xinterface is "help". END-of-phalanx-21/pkg/DESCR exit >How-To-Repeat: >Fix: Please, check and commit this port. >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 May 9 4:30: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A73A31507E for ; Sun, 9 May 1999 04:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA24159; Sun, 9 May 1999 04:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from wizard.vlink.ru (wizard.vlink.ru [195.9.104.254]) by hub.freebsd.org (Postfix) with SMTP id E28D114DFA for ; Sun, 9 May 1999 04:23:35 -0700 (PDT) (envelope-from denis@wizard.vlink.ru) Received: (qmail 1085 invoked by uid 1001); 9 May 1999 11:23:28 -0000 Message-Id: <19990509112328.1084.qmail@wizard.vlink.ru> Date: 9 May 1999 11:23:28 -0000 From: denis@wizard.vlink.ru Reply-To: denis@wizard.vlink.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11602: new port: gup-0.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11602 >Category: ports >Synopsis: new port: gup-0.4 >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 May 9 04:30:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Denis Shaposhnikov >Release: FreeBSD 3.1-RELEASE i386 >Organization: >Environment: >Description: Gup, the Group Update Program is a Unix mail-server that lets a remote site change their newsgroups subscription without requiring the intervention of the news administrator at the feed site. >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: # # gup/ # gup/Makefile # gup/pkg # gup/pkg/PLIST # gup/pkg/COMMENT # gup/pkg/DESCR # gup/files # gup/files/md5 # gup/patches # gup/patches/patch-aa # gup/patches/patch-ab # echo c - gup/ mkdir -p gup/ > /dev/null 2>&1 echo x - gup/Makefile sed 's/^X//' >gup/Makefile << 'END-of-gup/Makefile' X# New port collection makefile for: gup X# Version required: 0.4 X# Date created: 22 November 1998 X# Whom: Denis Shaposhnikov X# X# $Id$ X# X XDISTNAME= gup-0.4 XCATEGORIES= news XMASTER_SITES= ftp://ftp.isc.org/isc/inn/unoff-contrib/ X XMAINTAINER= wizard@vlink.ru X XWRKSRC= ${WRKDIR}/gup X XMAN1= gup.1 X Xdo-configure: X @{\ X ${ECHO} "P_CFLAGS = ${CFLAGS}";\ X ${ECHO} "P_NO_FLAGS = -DNO_MALLOC_H";\ X } > ${WRKSRC}/config/freebsd X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/gup ${PREFIX}/libexec X ${INSTALL_MAN} ${WRKSRC}/gup.1 ${MANPREFIX}/man/man1 X X.include END-of-gup/Makefile echo c - gup/pkg mkdir -p gup/pkg > /dev/null 2>&1 echo x - gup/pkg/PLIST sed 's/^X//' >gup/pkg/PLIST << 'END-of-gup/pkg/PLIST' Xlibexec/gup END-of-gup/pkg/PLIST echo x - gup/pkg/COMMENT sed 's/^X//' >gup/pkg/COMMENT << 'END-of-gup/pkg/COMMENT' XGroup Update Program. END-of-gup/pkg/COMMENT echo x - gup/pkg/DESCR sed 's/^X//' >gup/pkg/DESCR << 'END-of-gup/pkg/DESCR' XGup, the Group Update Program is a Unix mail-server that lets a remote Xsite change their newsgroups subscription without requiring the Xintervention of the news administrator at the feed site. X X-- Denis Shaposhnikov Xwizard@vlink.ru X END-of-gup/pkg/DESCR echo c - gup/files mkdir -p gup/files > /dev/null 2>&1 echo x - gup/files/md5 sed 's/^X//' >gup/files/md5 << 'END-of-gup/files/md5' XMD5 (gup-0.4.tar.gz) = ecf8d543b1db408909f66f6e222b82ad END-of-gup/files/md5 echo c - gup/patches mkdir -p gup/patches > /dev/null 2>&1 echo x - gup/patches/patch-aa sed 's/^X//' >gup/patches/patch-aa << 'END-of-gup/patches/patch-aa' X--- Makefile.orig Sun Nov 22 13:15:39 1998 X+++ Makefile Sun Nov 22 13:18:46 1998 X@@ -8,7 +8,7 @@ X # a working version for your system, please mail a copy back to the X # author so that others may benefit from your effort. X X-CONFIG = vanilla X+CONFIG = freebsd X X # Destination directories for the executable and man page. Note that X # the executable is only used in a .forward so /usr/local/bin may X@@ -28,20 +28,20 @@ X X # ACTIVE_PATH is the full pathname for your news active file. This X # file is used to validate newgroup names. X-ACTIVE_PATH = X+ACTIVE_PATH = /var/db/news/active X X X # NEWSGROUPS_PATH is the fill pathname for your newsgroups file. This X # file is used to provide descriptions for each newsgroup. X-NEWSGROUPS_PATH = X+NEWSGROUPS_PATH = /var/db/news/newsgroups X X # BACKSTOP_MAILID is used if gup cannot find a FROM: or a REPLY-TO: or X # a valid site command, this is where the mail goes to. X-BACKSTOP_MAILID = news X+BACKSTOP_MAILID = usenet X X # MAIL_COMMAND is the mailer that accepts a mail with rfc822 headers and X # body from stdin. X-MAIL_COMMAND = "/usr/lib/sendmail -t" X+MAIL_COMMAND = "/usr/sbin/sendmail -oi -t" X X # With a command like "include alt.*" the resultant list is, long. X # LOG_MATCH_LIMIT, defines the upper bound on the number of pattern END-of-gup/patches/patch-aa echo x - gup/patches/patch-ab sed 's/^X//' >gup/patches/patch-ab << 'END-of-gup/patches/patch-ab' X--- rfc822.h.orig Sun May 9 12:53:24 1999 X+++ rfc822.h Sun May 9 12:53:58 1999 X@@ -246,7 +246,6 @@ X extern int errno; X extern int sys_nerr; X extern int optind; X-extern char *sys_errlist[]; X extern char **environ; X extern char *optarg; X END-of-gup/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 Sun May 9 4:30:18 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E9A4A15054 for ; Sun, 9 May 1999 04:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA24148; Sun, 9 May 1999 04:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from wizard.vlink.ru (wizard.vlink.ru [195.9.104.254]) by hub.freebsd.org (Postfix) with SMTP id B927C14DFA for ; Sun, 9 May 1999 04:21:54 -0700 (PDT) (envelope-from denis@wizard.vlink.ru) Received: (qmail 930 invoked by uid 1001); 9 May 1999 11:20:56 -0000 Message-Id: <19990509112056.929.qmail@wizard.vlink.ru> Date: 9 May 1999 11:20:56 -0000 From: denis@wizard.vlink.ru Reply-To: denis@wizard.vlink.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11601: new port: ifmail-os-2.14.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11601 >Category: ports >Synopsis: new port: ifmail-os-2.14.5 >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 May 9 04:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Denis Shaposhnikov >Release: FreeBSD 3.1-RELEASE i386 >Organization: >Environment: >Description: FidoNet(tm) transport and gateway for UN*X platform. Delivers Fidonet mail packets over telephone lines and TCP/IP connections; converts Fidonet net- and echomail to RFC-822/RFC-1036 compliant mail and news and vice versa. In cooperation with MTA and netnews packages allows to run a FidoNet node (or point) on a UN*X machine. >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: # # ifmail-os/ # ifmail-os/pkg # ifmail-os/pkg/COMMENT # ifmail-os/pkg/DESCR # ifmail-os/pkg/INSTALL # ifmail-os/pkg/PLIST # ifmail-os/Makefile # ifmail-os/files # ifmail-os/files/md5 # ifmail-os/patches # ifmail-os/patches/patch-aa # ifmail-os/patches/patch-ab # ifmail-os/patches/patch-ac # ifmail-os/patches/patch-ad # ifmail-os/patches/patch-ae # echo c - ifmail-os/ mkdir -p ifmail-os/ > /dev/null 2>&1 echo c - ifmail-os/pkg mkdir -p ifmail-os/pkg > /dev/null 2>&1 echo x - ifmail-os/pkg/COMMENT sed 's/^X//' >ifmail-os/pkg/COMMENT << 'END-of-ifmail-os/pkg/COMMENT' XFidoNet(tm) support package for UN*X platform. END-of-ifmail-os/pkg/COMMENT echo x - ifmail-os/pkg/DESCR sed 's/^X//' >ifmail-os/pkg/DESCR << 'END-of-ifmail-os/pkg/DESCR' XFidoNet(tm) transport and gateway for UN*X platform. Delivers Fidonet mail Xpackets over telephone lines and TCP/IP connections; converts Fidonet net- Xand echomail to RFC-822/RFC-1036 compliant mail and news and vice versa. XIn cooperation with MTA and netnews packages allows to run a FidoNet node X(or point) on a UN*X machine. X X-- Denis Shaposhnikov Xwizard@vlink.ru END-of-ifmail-os/pkg/DESCR echo x - ifmail-os/pkg/INSTALL sed 's/^X//' >ifmail-os/pkg/INSTALL << 'END-of-ifmail-os/pkg/INSTALL' X#! /bin/sh X X USER=ifmail X UID=70 XGROUP=uucp XGECOS="Ifmail pseudo-user" X HOME=/var/spool/ifmail XSHELL=/sbin/nologin X Xcase $2 in X PRE-INSTALL) X if which -s pw; then X : X else X cat << EOF X XI see that it is missing the "pw" utility. I need this utility. XPlease get it and install it, and try again. X XEOF X exit 1 X fi X X if [ `id -u` -ne 0 ]; then X echo "You must be root to add the user." X exit 1 X fi X X if pw user show $USER > /dev/null 2>&1; then X echo "You already have a user \"$USER\", so I will use it." X else X uid=$UID X while pw user show $uid > /dev/null 2>&1; do X uid=$(($uid + 1)) X done X if [ $uid -gt 99 ]; then X echo "I can't find a low UID to use. Please create an" X echo "\"$USER\" user an try the installation again." X exit 1 X fi X echo "Ok, I'll use UID $uid." X pw user add $USER -g $GROUP -u $uid -h - -d $HOME -s $SHELL \ X -c "$GECOS" || exit 1 X fi X X echo "Done." X ;; X POST-INSTALL) X chown $USER $PKG_PREFIX/etc/ifmail X ;; X *) X echo "usage: $0 PKGNAME {PRE-INSTALL|POST-INSTALL}" Xesac END-of-ifmail-os/pkg/INSTALL echo x - ifmail-os/pkg/PLIST sed 's/^X//' >ifmail-os/pkg/PLIST << 'END-of-ifmail-os/pkg/PLIST' Xlibexec/ifmail/ifpack Xlibexec/ifmail/ifunpack Xlibexec/ifmail/iftoss X@owner ifmail Xlibexec/ifmail/ifstat Xlibexec/ifmail/ifmail Xlibexec/ifmail/ifnews Xlibexec/ifmail/ifcico Xlibexec/ifmail/ifindex Xlibexec/ifmail/ifinfo Xlibexec/ifmail/ifreq Xlibexec/ifmail/ifroute Xlibexec/ifmail/nlpatch Xlibexec/ifmail/nlookup Xetc/ifmail/Areas.sample Xetc/ifmail/config.sample Xetc/ifmail/outaltkoi8 Xetc/ifmail/outkoi8alt X@owner Xshare/doc/ifmail/README.ifcico Xshare/doc/ifmail/README.mxlookup Xshare/doc/ifmail/README.ifgate Xshare/doc/ifmail/DEBUG Xshare/doc/ifmail/FAQ X@dirrm etc/ifmail X@dirrm libexec/ifmail X@dirrm share/doc/ifmail END-of-ifmail-os/pkg/PLIST echo x - ifmail-os/Makefile sed 's/^X//' >ifmail-os/Makefile << 'END-of-ifmail-os/Makefile' X# New ports collection makefile for: ifmail-os X# Version required: 2.14.os-p5 X# Date created: 6 October 1998 X# Whom: Denis Shaposhnikov X# X# $Id$ X# X XDISTNAME= ifmail-2.14.os-p5 XPKGNAME= ifmail-os-2.14.5 XCATEGORIES= news XMASTER_SITES= ftp://oskin.macomnet.ru/pub/linux/fido/ X XMAINTAINER= wizard@vlink.ru X XBUILD_DEPENDS= ${PREFIX}/lib/libgdbm.a:${PORTSDIR}/databases/gdbm X XUSE_BZIP2= yes XUSE_GMAKE= yes XWRKSRC= ${WRKDIR}/ifmail-2.14 XMAKE_ENV+= BINGRP=${BINGRP} X XMAN8= ifcico.8 ifindex.8 ifinfo.8 ifreq.8 ifroute.8 ifstat.8 \ X nlpatch.8 ifmail.8 iftoss.8 X Xpre-install: X ${SETENV} PKG_PREFIX=${PREFIX} \ X ${SH} ${PKGDIR}/INSTALL ${PKGNAME} PRE-INSTALL X ${MKDIR} ${PREFIX}/libexec/ifmail X Xpost-install: X ${INSTALL} -d -o ifmail -g uucp ${PREFIX}/etc/ifmail X ${INSTALL} ${COPY} -o ifmail -g uucp -m 444 \ X ${WRKSRC}/misc/Areas \ X ${PREFIX}/etc/ifmail/Areas.sample X ${INSTALL} ${COPY} -o ifmail -g uucp -m 444 \ X ${WRKSRC}/misc/config \ X ${PREFIX}/etc/ifmail/config.sample X ${INSTALL} ${COPY} -o ifmail -g uucp -m 444 \ X ${WRKSRC}/misc/inouttabs/outaltkoi8.new \ X ${PREFIX}/etc/ifmail/outaltkoi8 X ${INSTALL} ${COPY} -o ifmail -g uucp -m 444 \ X ${WRKSRC}/misc/inouttabs/outkoi8alt.new \ X ${PREFIX}/etc/ifmail/outkoi8alt X X ${INSTALL_MAN} ${WRKSRC}/ifcico/*.8 ${WRKSRC}/ifgate/*.8 \ X ${MANPREFIX}/man/man8 X X.if !defined(NOPORTDOCS) X ${MKDIR} ${PREFIX}/share/doc/ifmail X ${INSTALL_MAN} ${WRKSRC}/ifcico/README \ X ${PREFIX}/share/doc/ifmail/README.ifcico X ${INSTALL_MAN} ${WRKSRC}/ifcico/README.mxlookup \ X ${PREFIX}/share/doc/ifmail X ${INSTALL_MAN} ${WRKSRC}/ifgate/README \ X ${PREFIX}/share/doc/ifmail/README.ifgate X ${INSTALL_MAN} ${WRKSRC}/misc/DEBUG ${PREFIX}/share/doc/ifmail X ${INSTALL_MAN} ${WRKSRC}/misc/FAQ ${PREFIX}/share/doc/ifmail X.endif X X.include END-of-ifmail-os/Makefile echo c - ifmail-os/files mkdir -p ifmail-os/files > /dev/null 2>&1 echo x - ifmail-os/files/md5 sed 's/^X//' >ifmail-os/files/md5 << 'END-of-ifmail-os/files/md5' XMD5 (ifmail-2.14.os-p5.tar.bz2) = 50742ca939e033f67ba9a2cbf59420ba END-of-ifmail-os/files/md5 echo c - ifmail-os/patches mkdir -p ifmail-os/patches > /dev/null 2>&1 echo x - ifmail-os/patches/patch-aa sed 's/^X//' >ifmail-os/patches/patch-aa << 'END-of-ifmail-os/patches/patch-aa' X--- CONFIG.orig Wed Feb 3 18:19:18 1999 X+++ CONFIG Wed May 5 21:16:04 1999 X@@ -4,7 +4,7 @@ X SHVER = 2.14.os5 X X # Main configuration file. This default may be overwritten by -I key. X-CONFIGFILE = "/etc/ifmail/config" X+CONFIGFILE = "${PREFIX}/etc/ifmail/config" X X # Debug messages turned on by -x key are written here. X # Some error messages may occationally appear here too. X@@ -29,7 +29,7 @@ X X # Directory where UUCP lock files reside. X #LOCKDIR = "/var/spool/uucp" X-LOCKDIR = "/var/lock" X+LOCKDIR = "/var/spool/lock" X X # Directory from which file requests are resolved. X # This may be changed from the 'config' file. X@@ -185,26 +185,37 @@ X X # define -DEMSI_SIZE - show netmail/arcmail size into EMSI X X+# FreeBSD: X+OPTS = -DHAS_NDBM_H -DHAS_STATFS -DSTATFS_IN_MOUNT_H -DHAS_SETSID \ X+ -DHAS_TERMIOS_H -DASCII_LOCKFILES -DHAS_FSYNC -DFORCEINTL \ X+ -DNEED_UUCPFROM -DHAS_TCP -DHAS_REGEX_H -DHAS_SYSLOG -DNEED_BSY \ X+ -DNEED_FORK -DNEGATIVE_SEEK_BUG -DSLAVE_SENDS_NAK_TOO \ X+ -DHAS_IOCTL_H -DHAS_SYS_ERRLIST -DHAS_BSD_SIGNALS \ X+ -DINT32=long -DINT16=short \ X+ -DLOCALE=\"ru.RU_KOI8-R\" -DHAS_FILLOG -DNO_RECEIVED -DNO_FROM \ X+ -DEXT_FREQ -DSHOW_SPEED -DT_LINE -DFTN_MSGID -DHAVE_TXY -DSECURE_LOG \ X+ -DHAS_SELECT -DRM_SKIP -DDENY_BAD_HEADERS -DEMSI_SIZE X+ X # Linux/x86: (add -DHAS_BSD_SIGNALS if you have glibc2 aka libc6.x) X-OPTS = -DHAS_STATFS -DSTATFS_IN_VFS_H -DHAS_SETSID -DHAS_NDBM_H \ X- -DDONT_HAVE_TM_GMTOFF -DHAS_TERMIOS_H -DASCII_LOCKFILES \ X- -DHAS_FSYNC -DHAS_IOCTL_H -DHAS_REGEX_H -DHAS_TCP \ X- -DFORCEINTL -DHAS_SYSLOG -DNEED_UUCPFROM -DNEED_BSY \ X- -DSLAVE_SENDS_NAK_TOO -DNEED_FORK \ X- -DINT32=long -DINT16=short \ X- -DHAS_SELECT \ X- -DHAS_FILLOG \ X- -DNO_RECEIVED \ X- -DNO_FROM \ X- -DSHOW_SPEED \ X- -DT_LINE \ X- -DFTN_MSGID \ X- -DEXT_FREQ \ X- -DHAVE_TXY \ X- -DSECURE_LOG \ X- -DEMSI_SIZE \ X- -DRM_SKIP \ X- -DLOCALE=\"koi8-r\" X+#OPTS = -DHAS_STATFS -DSTATFS_IN_VFS_H -DHAS_SETSID -DHAS_NDBM_H \ X+# -DDONT_HAVE_TM_GMTOFF -DHAS_TERMIOS_H -DASCII_LOCKFILES \ X+# -DHAS_FSYNC -DHAS_IOCTL_H -DHAS_REGEX_H -DHAS_TCP \ X+# -DFORCEINTL -DHAS_SYSLOG -DNEED_UUCPFROM -DNEED_BSY \ X+# -DSLAVE_SENDS_NAK_TOO -DNEED_FORK \ X+# -DINT32=long -DINT16=short \ X+# -DHAS_SELECT \ X+# -DHAS_FILLOG \ X+# -DNO_RECEIVED \ X+# -DNO_FROM \ X+# -DSHOW_SPEED \ X+# -DT_LINE \ X+# -DFTN_MSGID \ X+# -DEXT_FREQ \ X+# -DHAVE_TXY \ X+# -DSECURE_LOG \ X+# -DEMSI_SIZE \ X+# -DRM_SKIP \ X+# -DLOCALE=\"koi8-r\" X X # 386BSD: X #OPTS = -DHAS_STATFS -DSTATFS_IN_MOUNT_H -DHAS_SETSID -DHAS_NDBM_H \ X@@ -277,18 +288,18 @@ X # -DNEED_BSY -DSLAVE_SENDS_NAK_TOO -DINT32=int -DINT16=short X X # for make install, where to put binaries and what owner to set X-BINDIR = /usr/lib/ifmail X+BINDIR = ${PREFIX}/libexec/ifmail X OWNER = ifmail X-GROUP = uucp X+GROUP = ${BINGRP} X MODE = 0711 X-SMODE = 4711 X+SMODE = 4555 X X INSTALL = install X RANLIB = ranlib X #RANLIB = touch X SHELL = /bin/sh X ECHO = echo -e X-CC = gcc X+#CC = gcc X #YACC = bison -y X YACC = yacc X #LEX = flex X@@ -297,15 +308,15 @@ X TAR = tar X #Make shared lib? X #Yes X-SHARED=1 X+#SHARED=1 X #No X-#SHARED=0 X+SHARED=0 X X #CFLAGS = -g -Wall X # Linux, 386BSD, SunOS, FreeBSD: X # Use -funsigned-char if you're using gcc, and don't want to loose X # letters with 8th bit set from header lines X-CFLAGS = -O2 -Wall -funsigned-char X+#CFLAGS = -O2 -Wall -funsigned-char X # SVR4: X #CFLAGS = -O -Xa X # NeXTSTEP X@@ -315,19 +326,19 @@ X #CFLAGS= -migrate -O5 -ifo -g0 X #LDFLAGS = -s X X-LDFLAGS = -s X+#LDFLAGS = -s X X # For LIBS, you may need to add "-lfl" if you are using flex 2.4.x X # If you need TERM also add e.g. "/usr/src/term112/client.a" X X # Linux X-LIBS = -lgdbm X+#LIBS = -lgdbm X # Linux glibc2 X #LIBS = -lgdbm -lresolv X # SunOS: X #LIBS = X # 386BSD, FreeBSD: X-#LIBS = -lgdbm -lcompat X+LIBS = -lcompat -L${PREFIX}/lib -lgdbm X # SVR4 X #LIBS = -ldbm -lform -lnsl -lsocket -lc -L/usr/ucblib -lucb X # SCO END-of-ifmail-os/patches/patch-aa echo x - ifmail-os/patches/patch-ab sed 's/^X//' >ifmail-os/patches/patch-ab << 'END-of-ifmail-os/patches/patch-ab' X--- ifcico/Makefile.orig Thu Feb 4 20:49:58 1999 X+++ ifcico/Makefile Thu Feb 4 20:52:29 1999 X@@ -81,7 +81,7 @@ X flaglex.o: flaglex.c flagexp.c X X install: all X- ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m ${SMODE} ifcico ${BINDIR}/ifcico X+ ${INSTALL} -s -o ${OWNER} -g dialer -m 6555 ifcico ${BINDIR}/ifcico X ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m ${SMODE} ifindex ${BINDIR}/ifindex X ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m ${SMODE} ifinfo ${BINDIR}/ifinfo X ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m ${SMODE} ifreq ${BINDIR}/ifreq END-of-ifmail-os/patches/patch-ab echo x - ifmail-os/patches/patch-ac sed 's/^X//' >ifmail-os/patches/patch-ac << 'END-of-ifmail-os/patches/patch-ac' X--- ifcico/ifcico.c.orig Thu Feb 4 20:55:24 1999 X+++ ifcico/ifcico.c Thu Feb 4 20:56:30 1999 X@@ -119,6 +119,7 @@ X #endif X #ifdef SHOW_SPEED X strcat( validopts, "S:" ); X+ inconn = getenv("CONNECT"); X #endif X while ((c=getopt(argc,argv,validopts)) != -1) X if (confopt(c,optarg)) switch (c) END-of-ifmail-os/patches/patch-ac echo x - ifmail-os/patches/patch-ad sed 's/^X//' >ifmail-os/patches/patch-ad << 'END-of-ifmail-os/patches/patch-ad' X--- ifgate/Makefile.orig Thu Feb 4 20:59:32 1999 X+++ ifgate/Makefile Thu Feb 4 21:01:14 1999 X@@ -41,9 +41,9 @@ X X install: all X ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m ${SMODE} ifstat ${BINDIR}/ifstat X- ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m ${MODE} ifpack ${BINDIR}/ifpack X- ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m ${MODE} ifunpack ${BINDIR}/ifunpack X- ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m ${MODE} iftoss ${BINDIR}/iftoss X+ ${BSD_INSTALL_PROGRAM} ifpack ${BINDIR}/ifpack X+ ${BSD_INSTALL_PROGRAM} ifunpack ${BINDIR}/ifunpack X+ ${BSD_INSTALL_PROGRAM} iftoss ${BINDIR}/iftoss X ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m ${SMODE} ifmail ${BINDIR}/ifmail X rm -f ${BINDIR}/ifnews X ln ${BINDIR}/ifmail ${BINDIR}/ifnews END-of-ifmail-os/patches/patch-ad echo x - ifmail-os/patches/patch-ae sed 's/^X//' >ifmail-os/patches/patch-ae << 'END-of-ifmail-os/patches/patch-ae' X--- misc/config.orig Fri Dec 18 21:20:57 1998 X+++ misc/config Wed May 5 22:12:09 1999 X@@ -30,7 +30,7 @@ X # Include config extention file (here: file with real passwords). X # Includes may be nested. If the nesting is cyclic, the program cycles too. X # You are warned. X-include /etc/ifmail/passwds X+include /usr/local/etc/ifmail/passwds X X # System alias file - try to fetch ftn-style aliases from there. X # If "from" address of a message from FidoNet matches _right_ side X@@ -42,7 +42,7 @@ X # "jsmith: John.Smith@p89.f567.n234.z1.fidonet.org" X # and fqdn value is "pccross.msk.su", then the resulting message will X # contain a line: "Reply-To: jsmith@pccross.msk.su". X-sysalias /usr/lib/smail/aliases X+sysalias /etc/aliases X X # This host fully qualified domain name to add to the alias above X myfqdn pccross.msk.su X@@ -52,13 +52,13 @@ X # specified. If not specified, beginning of all message is scaned. I X # do not recommend specifying magicname unless you know that parsing X # headers will really break things. X-magicname UUCP X+#magicname UUCP X X # Directory for incoming packets/files: X inbound /var/spool/ifmail/inb X # Directories for "listed" and "protected" sessions X listinbound /var/spool/ifmail/inb X-protinbound /var/spool/ifmail/inb X+protinbound /var/spool/ifmail/inb.sec X X # Directory for outgoing packets (default domain and zone): X # other zones will be like "/usr/spool/ifmail/outb.003", X@@ -71,7 +71,7 @@ X X # External FREQ-processor X # if not defined, then used "public" and "magic". X-ext_rp /usr/local/lib/ifmail/ifextrp X+#ext_rp /usr/local/libexec/ifmail/ifextrp X X # Directory from which the file requests are satisfied X public /var/spool/uucppublic X@@ -82,7 +82,7 @@ X # is not executable, it is read line by line and the lines are X # processed as if they were received file requests (recusively). X # Execution of commands may compromize security! You are warned. X-magic /usr/lib/ifmail/magic X+#magic /usr/local/libexec/ifmail/magic X X # Primary nodelist (serves "outbound" directory and domain from the X # first "address" statement). Name expanded with ".NNN" if neccessary. X@@ -107,13 +107,13 @@ X X # Automatically updated alias database. If omitted or inaccessible, X # ^aREPLYADDR and ^aREPLYTO kludges are generated in fido messages. X-database /var/spool/ifmail/ifdbm X+database /var/db/ifmail/ifdbm X X # Sequencer file (used to generate unique IDs) X sequencer /var/spool/ifmail/seq X X # Areas file (format: "AREA newsgroup distribution") X-areas /etc/ifmail/Areas X+areas /usr/local/etc/ifmail/Areas X X # Bad groups prefixes - do not pass to fido if appear in Newsgroups header X # This is NOT the same as "!news.group" in the cnews "sys" file. X@@ -139,9 +139,9 @@ X # characters cannot be specified using the first (character) notation. X # X # Internet -> FidoNet (outgoing) character mapping table (a la mapchan) X-outtab /usr/lib/ifmail/outkoi8alt X+outtab /usr/local/etc/ifmail/outkoi8alt X # FidoNet -> Internet (incoming) character mapping table X-intab /usr/lib/ifmail/outaltkoi8 X+intab /usr/local/etc/ifmail/outaltkoi8 X X # Delimiter char into user name for replace to space (default '.'). X dots _ X@@ -150,24 +150,31 @@ X # Default - Yes, recomended No. :) X received No X X+# The first symbol from the 'sentmode' config field will stand in the X+# beginning of each line in ?lo ("#" is default). X+sentmode ^ X+ X+# "From:" field in _body_ message (Internet -> FidoNet). X+bodyfrom No X+ X # Transport programs for mail and news, used by iftoss X # for sendmail, $F expands to "from" address, $T - to "to" address. X-sendmail /usr/lib/sendmail -f $F $T X-rnews /bin/rnews X+sendmail /usr/sbin/sendmail -f $F $T X+rnews /usr/local/bin/rnews X X # Toss program, used by ifunpack X-iftoss /usr/lib/ifmail/iftoss X+iftoss /usr/local/libexec/ifmail/iftoss X X # Unpackers, used by ifunpack. X # $F expands to archieve file name X-unzip /usr/bin/unzip -ojq $F X-unarj /usr/bin/unarj e $F X-unarc /usr/bin/unpack $F X-unzoo /usr/bin/zoo -extract $F X+unzip /usr/local/bin/unzip -ojq $F X+unarj /usr/local/bin/unarj e $F X+unarc /usr/local/bin/unpack $F X+unzoo /usr/local/bin/zoo -extract $F X X # Packer program, used by ifpack X # $F expands to archieve file name, $P - to list of packet names X-packer /usr/bin/zip $F $P X+packer /usr/local/bin/zip $F $P X X # Maximum arcmail file size, ifpack will start new arcmail file if exceeds X maxfsize 500000 X@@ -187,7 +194,7 @@ X nonpacked cm X X # cnews log file and (temporary) database for seen-bys X-newslog /usr/lib/news/log X+newslog /var/log/news/news X msgidbm /tmp/ifmsgids X X # From this line on, values may be prefixed by a logical expression in X@@ -229,7 +236,7 @@ X # actual speed is taken from the nodelist. If speed is omitted (or set X # to zero), previous port speed is not changed. X #ModemPort (time Any0000-0900,Sat,Sun) ttyS0 X-ModemPort cua0:L38400 X+ModemPort cuaa0:L38400 X X # PhoneTrans lines provide rules to change phone prefixes to make local X # or long-distance calls. In the example below, my country code is 7, X@@ -250,6 +257,7 @@ X ModemDial (speed < 4800) AT&N3DP\T\r X ModemDial ATDP\T\r X ModemHangup ATZ\r X+ModemAfterCall +++ X ModemOK OK X ModemConnect CONNECT X ModemError BUSY X@@ -260,7 +268,7 @@ X X # Timeouts to wait for "OK" and "CONNECT", cannot be prefixed by logical X # expression. X-TimeoutReset 3 X+TimeoutReset 6 X TimeoutConnect 70 X X # Delay in seconds before every call in "automatic" mode. Ignored END-of-ifmail-os/patches/patch-ae 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 May 9 4:50: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8682D14EC8 for ; Sun, 9 May 1999 04:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA25350; Sun, 9 May 1999 04:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from icc.surw.chel.su (surw.chel.su [195.54.2.162]) by hub.freebsd.org (Postfix) with ESMTP id DB14B14C3B for ; Sun, 9 May 1999 04:47:24 -0700 (PDT) (envelope-from andy@icc.surw.chel.su) Received: (from andy@localhost) by icc.surw.chel.su (8.9.2/8.8.8) id PAA33385; Sun, 9 May 1999 15:47:23 +0400 (MSD) (envelope-from andy) Message-Id: <199905091147.PAA33385@icc.surw.chel.su> Date: Sun, 9 May 1999 15:47:23 +0400 (MSD) From: Andrey Zakhvatov Reply-To: andy@icc.surw.chel.su To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11603: New port: dbview-1.0.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11603 >Category: ports >Synopsis: New port: dbview-1.0.3 >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 May 9 04:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Andrey Zakhvatov >Release: FreeBSD 3.1-RELEASE i386 >Organization: South Ural Railway ICC >Environment: >Description: This is a port of dbview-1.0.3, little tool that will display dBase III files. You can also use it to convert your old .dbf files for further use with Unix. It should also work with dBase IV files, but this is mostly untested. dbview displays the contents of a dBase III or IV database file. This is be done by displaying both the name of the field itself and its value. At the end of every record a newline is appended. # 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: # # dbview-1.0.3 # dbview-1.0.3/Makefile # dbview-1.0.3/files # dbview-1.0.3/files/md5 # dbview-1.0.3/patches # dbview-1.0.3/patches/patch-aa # dbview-1.0.3/pkg # dbview-1.0.3/pkg/PLIST # dbview-1.0.3/pkg/DESCR # dbview-1.0.3/pkg/COMMENT # echo c - dbview-1.0.3 mkdir -p dbview-1.0.3 > /dev/null 2>&1 echo x - dbview-1.0.3/Makefile sed 's/^X//' >dbview-1.0.3/Makefile << 'END-of-dbview-1.0.3/Makefile' X# New ports collection makefile for: dbview X# Version required: 1.0.3 X# Date created: 7 May 1999 X# Whom: Andrey Zakhvatov X# X# $Id$ X# X XDISTNAME= dbview-1.0.3 XCATEGORIES= databases XMASTER_SITES= ${MASTER_SITE_SUNSITE} \ X ftp://ftp.infodrom.north.de/pub/Linux/Devel/dbview/ XMASTER_SITE_SUBDIR= apps/database/proprietary X XMAINTAINER= andy@icc.surw.chel.su X XLIB_DEPENDS= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt X XMAN1= dbview.1 X Xdo-install: X @ ${INSTALL_PROGRAM} ${WRKSRC}/dbview ${PREFIX}/bin X @ ${INSTALL_MAN} ${WRKSRC}/dbview.1 ${PREFIX}/man/man1 X Xpost-install: X.if !defined(NOPORTDOCS) X @ ${MKDIR} ${PREFIX}/share/doc/dbview X @ ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/dbview X @ ${INSTALL_DATA} ${WRKSRC}/dBASE ${PREFIX}/share/doc/dbview X.endif X X.include END-of-dbview-1.0.3/Makefile echo c - dbview-1.0.3/files mkdir -p dbview-1.0.3/files > /dev/null 2>&1 echo x - dbview-1.0.3/files/md5 sed 's/^X//' >dbview-1.0.3/files/md5 << 'END-of-dbview-1.0.3/files/md5' XMD5 (dbview-1.0.3.tar.gz) = 75521f1f3eb461e27481a6098b5da777 END-of-dbview-1.0.3/files/md5 echo c - dbview-1.0.3/patches mkdir -p dbview-1.0.3/patches > /dev/null 2>&1 echo x - dbview-1.0.3/patches/patch-aa sed 's/^X//' >dbview-1.0.3/patches/patch-aa << 'END-of-dbview-1.0.3/patches/patch-aa' X--- Makefile Fri Sep 27 00:05:30 1996 X+++ /home/andy/tmp/wrk/Makefile Fri May 7 09:48:58 1999 X@@ -18,8 +18,8 @@ X X MAN=man X X-CC= gcc X-CFLAGS= -O6 -fomit-frame-pointer -Wall -pipe X+#CC= gcc X+#CFLAGS= -O6 -fomit-frame-pointer -Wall -pipe X # CFLAGS= -g -fomit-frame-pointer -Wall -pipe X X # Look where your install program is X@@ -32,15 +32,15 @@ X obj = db_dump.o dbview.o version.o X X .c.o: X- $(CC) ${CFLAGS} -c $*.c X+ $(CC) ${CFLAGS} -I$(LOCALBASE)/include -c $*.c X X all: dbview X X dbview: $(obj) X- $(CC) $(CFLAGS) -o dbview $(obj) X+ $(CC) $(CFLAGS) -o dbview $(obj) -L$(LOCALBASE)/lib -lgnugetopt X X depend: X- makedepend *.c X+ makedepend -I$(LOCALBASE)/include *.c X X install: all X $(INSTALL) -d -o root -g root -m 755 $(bindir) X@@ -56,13 +56,14 @@ X X # DO NOT DELETE X X-db_dump.o: db_dump.h /usr/include/fcntl.h /usr/include/features.h X-db_dump.o: /usr/include/sys/cdefs.h /usr/include/sys/types.h X-db_dump.o: /usr/include/linux/types.h /usr/include/asm/types.h X-db_dump.o: /usr/include/gnu/types.h /usr/include/linux/fcntl.h X-db_dump.o: /usr/include/sys/stat.h /usr/include/linux/stat.h X-db_dump.o: /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h X-db_dump.o: /usr/include/unistd.h /usr/include/posix_opt.h X-db_dump.o: /usr/include/confname.h /usr/include/malloc.h X-dbview.o: version.h db_dump.h /usr/include/stdio.h /usr/include/libio.h X-dbview.o: /usr/include/_G_config.h /usr/include/getopt.h X+db_dump.o: db_dump.h /usr/include/fcntl.h /usr/include/sys/types.h X+db_dump.o: /usr/include/sys/cdefs.h /usr/include/sys/inttypes.h X+db_dump.o: /usr/include/machine/ansi.h /usr/include/machine/types.h X+db_dump.o: /usr/include/machine/endian.h /usr/include/sys/stat.h X+db_dump.o: /usr/include/sys/time.h /usr/include/time.h X+db_dump.o: /usr/include/sys/_posix.h /usr/include/stdio.h X+db_dump.o: /usr/include/unistd.h /usr/include/sys/unistd.h X+db_dump.o: /usr/include/malloc.h /usr/include/stdlib.h /usr/include/ctype.h X+db_dump.o: /usr/include/runetype.h /usr/include/string.h X+dbview.o: version.h db_dump.h /usr/include/stdio.h /usr/include/sys/cdefs.h X+dbview.o: /usr/include/machine/ansi.h /usr/local/include/getopt.h END-of-dbview-1.0.3/patches/patch-aa echo c - dbview-1.0.3/pkg mkdir -p dbview-1.0.3/pkg > /dev/null 2>&1 echo x - dbview-1.0.3/pkg/PLIST sed 's/^X//' >dbview-1.0.3/pkg/PLIST << 'END-of-dbview-1.0.3/pkg/PLIST' Xbin/dbview Xshare/doc/dbview/README Xshare/doc/dbview/dBASE X@dirrm share/doc/dbview END-of-dbview-1.0.3/pkg/PLIST echo x - dbview-1.0.3/pkg/DESCR sed 's/^X//' >dbview-1.0.3/pkg/DESCR << 'END-of-dbview-1.0.3/pkg/DESCR' Xlittle tool that will display dBase III files. You can also use Xit to convert your old .dbf files for further use with Unix. It should Xalso work with dBase IV files, but this is mostly untested. X Xdbview displays the contents of a dBase III or IV database file. This is be Xdone by displaying both the name of the field itself and its value. At Xthe end of every record a newline is appended. END-of-dbview-1.0.3/pkg/DESCR echo x - dbview-1.0.3/pkg/COMMENT sed 's/^X//' >dbview-1.0.3/pkg/COMMENT << 'END-of-dbview-1.0.3/pkg/COMMENT' Xview dBase III files END-of-dbview-1.0.3/pkg/COMMENT exit >How-To-Repeat: >Fix: Please, check and commit this port. >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 May 9 5:30: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D8EBA14D84 for ; Sun, 9 May 1999 05:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA26977; Sun, 9 May 1999 05:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.kt.rim.or.jp (mail.kt.rim.or.jp [202.247.130.53]) by hub.freebsd.org (Postfix) with ESMTP id E778D14F73 for ; Sun, 9 May 1999 05:22:10 -0700 (PDT) (envelope-from yoshiaki@kt.rim.or.jp) Received: from singer.kt.rim.or.jp (ppp539.kt.rim.or.jp [202.247.140.189]) by mail.kt.rim.or.jp (8.8.8/3.6W-RIMNET-98-06-09) with ESMTP id VAA02184 for ; Sun, 9 May 1999 21:22:09 +0900 (JST) Received: (from yoshiaki@localhost) by singer.kt.rim.or.jp (8.9.3/3.7W-ppp-981208) id VAA00798; Sun, 9 May 1999 21:21:08 +0900 (JST) Message-Id: <199905091221.VAA00798@singer.kt.rim.or.jp> Date: Sun, 9 May 1999 21:21:08 +0900 (JST) From: Yoshiaki Uchikawa Reply-To: yoshiaki@kt.rim.or.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11604: new version port, Mikmod (audio) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11604 >Category: ports >Synopsis: new version port, Mikmod (audio) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun May 9 05:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Yoshiaki Uchikawa >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: FreeBSD 4.0-CURRENT #0: Sun May 9 13:01:31 JST 1999 yoshiaki@singer.tertio.atoll:/usr/src/sys/compile/NLPTTEST Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 400912177 Hz CPU: AMD-K6(tm) 3D processor (400.91-MHz 586-class CPU) Origin = "AuthenticAMD" Id = 0x580 Stepping=0 Features=0x8001bf >Description: Mikmod 3.1.2 was obsolute new. Mikmod is a mod sound file player. This is new version port for mikmod. This port need libmikmod. I make libmikmod's port, too. >How-To-Repeat: >Fix: begin 644 mikmod.tar.gz M'XL(`)$6-#<``^U8;6^C1A#.U_`KIDJD)E(.LX!Q$EU.E\:^B#;8D;&O_1:M M86UO#:QO%^)SJO[WSF(R;N\K'>>G=D9'DCY(A5Q:Z].@&MU M.AW8`]MU+0=[#:OJJQ/P.J1M$<=R'0!"7.+M0;M65A4*E5,)L+<6:L[I@K\T M;C5G+-D%H=TBW<0_H`LVY0FKQ0:Q+,_S7HZ_Y]J/\2=N!^./G;T'5BULGN$K MC_\!+(7,%40B25B4]B?\/BS<;6H=ST8^KWP8I\6,1=&L.[T!_I:_,\7YZW M6JO5RDR+).M:M\;^$>_/\)?;WBQOR7S?I&;DJ>FD.;/ M2\.X\;^[Z_9N>_UNN.5ADO/#7VX'PU'8]8>_MDH.K81/*E\9X[!W=QU<_H#$ MUTP9U_WQW=6@_\&_'@^K2VBX3R[V'^`8_U_VG>_V']MSJ>7=9_VW%W7/^E$/F?C?N?YO^3^-_>8++58>.Q M_K\4?^)LZ[_5(1Z>V[@1=ES_O]+X3WA6U<*:"TV#+Q)/\K_;"Z^&==AX)?\) M<;S'^F_;ELY_8C7YOQ,$?!&(&+@"6BI!.D'AASNB2)B"94+73(*0?,8SFB1K M6$F>YRR#R=H04_B>T>S-+2T2P&D6J`[A2,]'%\=:.T)W$)I@7!52LBR'C:5O MQQG_C!*39S@-DT<*10^#^TI9.J9ENL=(Q@@V.@T^HEF:P]M*M[U/US.:,%1F MLW>>.AD&8^9S`(0VC%[+X5JR7$DN.,L-%3/)OA$>`\*%PCS<1`JAE+5$E2 M%/FRR$^`9C&L.`ZBB1+E.AFLZ#UH):QP&6&QU/YA,6RU<4I1-V\U&[KL!%2> M8N-@D^JCS^F)H:?EN0DP0I*5/TO2651(W6L.D(DS=22 MEBY,!"V7,Y4BA=D#7V+>ZO9!"*`2!?0]"DMM47ND&MQ2]%[_!\.ES2=E\\Q`BAF)97KDE]:*!ZU<#A.;;#I%%\4],I1O!?H MP%4&2REFDJ9*[R.617B9SEC\3?-(^>+QI/Y?#8*@UZ]!`;ZF_XC5?E[_'=MI MZO\NH(M_59965I-_ M>Q$-_C&V^4_S:,Y4/=\`_L[[?ZD%M?XCS?O_+E#%OU0Y=7T!^NOQ)\0MXT_: M;;N)_R[PN_BG<2TN?_7[3Z?]+/ZV;9/F^;\+!-TV'#W]MFZB.\S9PS%<`'6\ MTS@FG8D[C1TGCCR'MD]MYC)WPJ83QVZ>^PT:-&C0H$&#!@T:_+?P&W%%T6`` #*``` ` 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 May 9 5:30: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4A7C014EC7 for ; Sun, 9 May 1999 05:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA26986; Sun, 9 May 1999 05:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.kt.rim.or.jp (mail.kt.rim.or.jp [202.247.130.53]) by hub.freebsd.org (Postfix) with ESMTP id 260A414D84 for ; Sun, 9 May 1999 05:22:11 -0700 (PDT) (envelope-from yoshiaki@kt.rim.or.jp) Received: from singer.kt.rim.or.jp (ppp539.kt.rim.or.jp [202.247.140.189]) by mail.kt.rim.or.jp (8.8.8/3.6W-RIMNET-98-06-09) with ESMTP id VAA02188 for ; Sun, 9 May 1999 21:22:10 +0900 (JST) Received: (from yoshiaki@localhost) by singer.kt.rim.or.jp (8.9.3/3.7W-ppp-981208) id VAA00699; Sun, 9 May 1999 21:19:58 +0900 (JST) Message-Id: <199905091219.VAA00699@singer.kt.rim.or.jp> Date: Sun, 9 May 1999 21:19:58 +0900 (JST) From: Yoshiaki Uchikawa Reply-To: yoshiaki@kt.rim.or.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11605: This is port for libmikmod. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11605 >Category: ports >Synopsis: This is port for libmikmod. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun May 9 05:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Yoshiaki Uchikawa >Release: FreeBSD 4.0-CURRENT i386 >Organization: new library port(audio) for mikmod >Environment: FreeBSD 4.0-CURRENT #0: Sun May 9 13:01:31 JST 1999 yoshiaki@singer.tertio.atoll:/usr/src/sys/compile/NLPTTEST Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 400912177 Hz CPU: AMD-K6(tm) 3D processor (400.91-MHz 586-class CPU) Origin = "AuthenticAMD" Id = 0x580 Stepping=0 Features=0x8001bf >Description: This port is a library package for mikmod. The new mikmod(version 3.1.5) needs this library. >How-To-Repeat: >Fix: begin 644 libmikmod.tar.gz M'XL(`(06-#<``^U:>U?;N!+G7_PI9JEI"L'/Q'$;-CU)26!S2Z`G@;O=L^P& MQY:)BA^L9?.X+=]])=MQ0H!+NP?2;JO?@=@:C4:2YR&-;`^/?'SJAXZR]&2` MJFJ:)BR!7JVJ%7IE4/-K7H":J1FJ5E$-`T#3-4U=`N/IAC1%0F(K`EBZ"LD8 M6Z?X/KZ+,4+>(@:T6'B%_GO6*7*QAQZ_#TU5:[7:O?K75-V=G?U^MS-H+%N)@T.AUQH< M=/K#0?>`T<9Q?%97E(N+"]E/O!C[5H`MV0Y]Q<>A$UDG2F[Y`FW8W3N@_YU^ M8WDRH.9I+$?8E\-(_G`F"(>#SG"GUWI+!W*%B+"S=SC.O_;>#_M:UXH0VR?N4<>"&ZUD3'%`3]#S:"+OP M._P$$FOTKM_9[KZ_5ABCXN`(_MB$>(P".!*6@=8/.FTJ/T!0TC:4'@J2NG)6 M`B4AD4+&5H2F#5_?(6V3B7&Q(-"!V%[B(/AY1!R9V8+LG[X6OK99>EZZJ&Z51JE2HR5=>H:-6* M:1BCD6G9?*'XEV/J_V=6;(^?9`7X@OA?J5$&&O^-"H__"\%M_:=7R1H]7A]W MQ/^*-J-_:A6%_JN&FJ[_QK<6_[]32)($:5XR2?]I0D!3'GRR/+#B-'FC.9SV MLE[5Z^K++)$KE\NWFMSFUG/N9A,DT]@PH9S^-IL"[';?#'?;K7:;+C#-HL`J M]H:#E$:OM)AF9:R%\IUDD*0@E,B9AV,!]GJL;J]' MA;YK;;UM[718.;]EQ-W6;S1QI&-)Z46I^=VO;_?ZO_5X?3QP_E,QU%KJ_U6Z M2M2J+/X;>JW*SW\6`>;_7FR'@8M/;ON]63?,NEJ=^OV$=<[?5:UNZ#/^;IJI MPZ<7YO$,FYL"L+MGL!TA]&;0ALH&4"F>1>(-2`@B<&+;(*6G%P[$(0TRD!>H ME496A!&1!0G`I>U'Q*FLKPGEHD0+:3=69(_Q.1K:OD,:)7%KJY`HA2!20>P_ M''T@I8R?UCEVZ*`A)3LX&KJ>=3(D9\ANE*2^F!'G62D)V7&#'?JPZ6J:7MG0 M="BG-WHEG[*+`TS&0W1N>8V2&T9L%H`#./8(Y(*5=1E?9I.[`OVUXJ!S)4@\ M[WB339Y6!):/&L0?7PZ*);&V"2,;A!:R\L)TI M,SQ_#F(:GMD8X.ZF:RN;\`]:P:=/@"YQ#!J;=8#2IYU:BY3K5E^GDY[5>D%/ ME7Z>'4L.XZLSU"!)$!)&S3L8L@Y)KM'I",2/$?*01="U3$)99"(2U\67Z4@9 M!R679K28F=.[UL$OC1617>H*&>%@!3PG\PB0?)@U%S*F!1I+Q\-S*VKLMMER MTF_U?QNRQOD,R\5,,E.^,9&\AM$?8RI43'J\>)P>$=*A*]0)J%7Z5GQ,%SWD MN9,3QM2I;L_ZZ,:T]]_\9WN_WVL=-&X*C,)4X)U/A39P),N7!T+,XJN[0"VNOG^E1<)FW;BBT/,AM+(BM]\8&B*(QD M@`%";-8@3O:*;+?+WH:`'T8(V!DZ>T:TB9P+_]JK^#_'S/[O].2)W@$7^?_L MON_N_-^HZ6S_IYFZMN#\_P<]_[NI_ZW]7J^S=_#(?3QT_@O5:G'^JQI:>OYK M&M]8_O^=ZK^'3WNA`X,P"1S8S>+I1A%0LQ>M7WN,'$^'F_[?[@RV^H_>QX/O M?\SI^Q_=K#'_-Q:>__^@_G\PQ@3H7V$'<\Y/4_3T"Q%KY"$@:928[+K8AN@P MP)>RD`J9-,-L'XH#[XJV'"4G=`=(O']EVZFW__5M$5___6#^C_+^J:O?[-\2,B_"9I\JS06*,>4BYTR:+=( MZN"YN!(F*_D$8F#@X.#@X.#@X.#@X.#@X.#@X.# <@X.#@X.#@X.#@X.#@X.#XU^&OP$K4W&.`%```(.# ` 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 May 9 6: 0: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C391214EAA for ; Sun, 9 May 1999 06:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA28051; Sun, 9 May 1999 06:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id D4448156F0; Sun, 9 May 1999 05:53:14 -0700 (PDT) Message-Id: <19990509125314.D4448156F0@hub.freebsd.org> Date: Sun, 9 May 1999 05:53:14 -0700 (PDT) From: pfgiffun@bachue.usc.unal.edu.co To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11606: Unbreaking the w3c-httpd port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11606 >Category: ports >Synopsis: Unbreaking the w3c-httpd 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 May 9 06:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Pedro F. Giffuni >Release: 3.1-Release >Organization: U. Nacional de Colombia >Environment: >Description: w3c-httpd doesn't seem to be broken under ELF, it even build with egcs. >How-To-Repeat: Here is a patch that includes a fix provided by Graham Wheeler some time ago (sorry for the delay) >Fix: diff -rNu w3c-httpd.old/Makefile w3c-httpd/Makefile --- w3c-httpd.old/Makefile Fri May 7 20:33:18 1999 +++ w3c-httpd/Makefile Sat May 8 17:45:00 1999 @@ -11,11 +11,9 @@ MASTER_SITES= ftp://ftp.w3.org/pub/httpd/ \ ftp://ftp-eu.w3.org/pub/httpd/ -MAINTAINER= giffunip@asme.org +MAINTAINER= ports@FreeBSD.org NO_WRKSUBDIR= yes - -BROKEN_ELF= yes WWW_ROOT= ${PREFIX}/www diff -rNu w3c-httpd.old/patches/patch-SSL w3c-httpd/patches/patch-SSL --- w3c-httpd.old/patches/patch-SSL Fri May 7 20:33:18 1999 +++ w3c-httpd/patches/patch-SSL Sat May 8 14:18:35 1999 @@ -363,19 +363,19 @@ + fd_set rd_fds, wr_fds; + int status; + -+ memset(&rd_fds, 0, sizeof(rd_fds)); -+ memset(&wr_fds, 0, sizeof(wr_fds)); -+ + if (initial && *initial) { + strcpy(b1, initial); + c1 = strlen(initial); + } + + while (1) { -+ FD_SET(sd1, &rd_fds); -+ FD_SET(sd2, &rd_fds); -+ FD_SET(sd1, &wr_fds); -+ FD_SET(sd2, &wr_fds); ++ FD_ZERO(&rd_fds); ++ FD_ZERO(&wr_fds); ++ /* Only set the FDs that are relevant - 10/12/98 gram@cdsec.com */ ++ if (!c1) FD_SET(sd2, &rd_fds); ++ else FD_SET(sd1, &wr_fds); ++ if (!c2) FD_SET(sd1, &rd_fds); ++ else FD_SET(sd2, &wr_fds); + + if (!(status = select(n_fds, &rd_fds, &wr_fds, NULL, NULL))) + { @@ -404,12 +404,12 @@ + if (shove_buffer(sd2, b2, &i2, &c2) == -1) + closed2 = 1; + } -+ if (r1 && !c2) ++ if (r1) + { + if (!drag_buffer(sd1, b2, &i2, &c2)) + closed1 = 1; + } -+ if (r2 && !c1) ++ if (r2) + { + if (!drag_buffer(sd2, b1, &i1, &c1)) + closed2 = 1; diff -rNu w3c-httpd.old/patches/patch-bb w3c-httpd/patches/patch-bb --- w3c-httpd.old/patches/patch-bb Fri May 7 20:33:18 1999 +++ w3c-httpd/patches/patch-bb Sun May 9 07:48:10 1999 @@ -1,19 +1,44 @@ -*** All/freebsd/Makefile.include.orig Mon Dec 30 17:18:49 1996 ---- All/freebsd/Makefile.include Mon Dec 30 17:19:46 1996 +*** All/freebsd/Makefile.include.orig Wed Jan 10 20:07:31 1996 +--- All/freebsd/Makefile.include Sat May 8 12:30:11 1999 *************** -*** 5,11 **** +*** 4,14 **** + # For W3 distribution, machine type for subdirectories WWW_MACH = freebsd - CFLAGS += -DDEBUG -D__BSD__ +! CFLAGS += -DDEBUG -D__BSD__ ! LFLAGS = # Directory for installed binary: - BINDIR = /usr/local/bin ---- 5,11 ---- +! BINDIR = /usr/local/bin + + # Where is the W3 object library to be installed (not normally done)? + LIBDIR = $(WWW)/Library/Implementation/$(WWW_MACH) +--- 4,14 ---- + # For W3 distribution, machine type for subdirectories WWW_MACH = freebsd - CFLAGS += -DDEBUG -D__BSD__ -! LFLAGS = -lcrypt +! CFLAGS += -D__BSD__ +! LFLAGS += -lcrypt # Directory for installed binary: - BINDIR = /usr/local/bin +! BINDIR = $(PREFIX)/bin + + # Where is the W3 object library to be installed (not normally done)? + LIBDIR = $(WWW)/Library/Implementation/$(WWW_MACH) +*************** +*** 25,31 **** + # + # Uncomment these six lines (and edit them, if necessary). + # +! # WAIS = ../../../freeWAIS + # WAISLIB = $(WAIS)/bin/client.a $(WAIS)/bin/wais.a + # MATHLIB = -lm + # WAISINC = -I$(WAIS)/include +--- 25,31 ---- + # + # Uncomment these six lines (and edit them, if necessary). + # +! # WAIS = ${PORTSDIR}/net/wais/work/freeWAIS-0.5/src + # WAISLIB = $(WAIS)/bin/client.a $(WAIS)/bin/wais.a + # MATHLIB = -lm + # WAISINC = -I$(WAIS)/include >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 May 9 8:23: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from rucus.ru.ac.za (rucus.ru.ac.za [146.231.29.2]) by hub.freebsd.org (Postfix) with SMTP id 63B9A15518 for ; Sun, 9 May 1999 08:23:03 -0700 (PDT) (envelope-from nbm@rucus.ru.ac.za) Received: (qmail 17898 invoked by uid 1003); 9 May 1999 15:24:06 -0000 Date: Sun, 9 May 1999 17:24:06 +0200 From: Neil Blakey-Milner To: Satoshi - Ports Wraith - Asami Cc: ports@FreeBSD.ORG Subject: Re: post-depends? Message-ID: <19990509172406.A61533@rucus.ru.ac.za> References: <19990506171512.A14870@rucus.ru.ac.za> <199905071324.GAA04585@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.1i In-Reply-To: <199905071324.GAA04585@silvia.hip.berkeley.edu>; from Satoshi - Ports Wraith - Asami on Fri, May 07, 1999 at 06:24:49AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Satoshi wrote: > * Is there any way to provide a mechanism such that a port may conditionally > * move on to making another port after it is finished? Something like a > * POST_DEPENDS item that'll generally be built up due to WITH_CONTRIB, &c. > * variables. > * > * This would allow ports, like for example qmail, to offer a menu (using > * my pdlg mechanism, or another) of options for addons that might be > * useful - like qmailcontrib, qmailanalog, ezmlm, &c. > > Um, how's that supposed to work for packages? ;) I don't think it's supposed to - since you're installing it from a port, and not a package, you have more of an interactive interest in the prospect. Just like you won't find a package for tin that sets NNTP_ONLY, this could be a ports-only feature. Actually, I'll take a look at the "auto load" code in pkg_add, and see whether it'd be at all hard to get that to fetch stuff requested. That only leaves the displaying of options and returning of useful information to pkg_add. Neil -- Neil Blakey-Milner nbm@rucus.ru.ac.za To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 8:36:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from rucus.ru.ac.za (rucus.ru.ac.za [146.231.29.2]) by hub.freebsd.org (Postfix) with SMTP id C2D9815701 for ; Sun, 9 May 1999 08:36:09 -0700 (PDT) (envelope-from nbm@rucus.ru.ac.za) Received: (qmail 19766 invoked by uid 1003); 9 May 1999 15:37:13 -0000 Date: Sun, 9 May 1999 17:37:13 +0200 From: Neil Blakey-Milner To: Satoshi - Ports Wraith - Asami Cc: anders@fix.no, freebsd-ports@FreeBSD.ORG Subject: Re: Port dependencies revisited Message-ID: <19990509173712.B61533@rucus.ru.ac.za> References: <19990504174834.A61935@totem.fix.no> <19990506122728.A56033@rucus.ru.ac.za> <199905071331.GAA04919@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.1i In-Reply-To: <199905071331.GAA04919@silvia.hip.berkeley.edu>; from Satoshi - Ports Wraith - Asami on Fri, May 07, 1999 at 06:31:31AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Satoshi wrote: > * Right now, lib-depends uses "grep -F" to do it's checks, which forces > * it into a "literal" mode, and so regex constructs such as qt.[12] won't > * work. > * > * Is there a particularly good reason to use -F? (we may need to add a sed > * statement to replace all .'s to \.'s, but that shouldn't be a problem.) > > Think packages.... I don't really think it'd make a difference - when you build your package, your dependency is on the _packages_ installed, not the libraries. During the package-building process, considering the way it's done, you'll start with an empty PREFIX, and populate it with dependencies, which'll always be the "better" library. Mere mortals are not likely to be concerned - if they're following packages, they'll have to install the depending new library anyway, due to package dependencies. Ports people only might gain something. Not that I'm really prepared to stand for this one - I see minimal, if any use for it - I was just trying to think how the fellow could achieve what he asked. Neil -- Neil Blakey-Milner nbm@rucus.ru.ac.za To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 8:37:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C04A15701; Sun, 9 May 1999 08:37:11 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA96412; Sun, 9 May 1999 08:37:10 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 08:37:10 -0700 (PDT) From: Message-Id: <199905091537.IAA96412@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, billf@FreeBSD.org Subject: Re: ports/11559: net/ntop 1.1 dumps core with -w (web) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: net/ntop 1.1 dumps core with -w (web) Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: steve Responsible-Changed-When: Sun May 9 08:36:46 PDT 1999 Responsible-Changed-Why: Over to port's maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 8:37:49 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EF1E515701; Sun, 9 May 1999 08:37:47 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA96504; Sun, 9 May 1999 08:37:47 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 08:37:47 -0700 (PDT) From: Message-Id: <199905091537.IAA96504@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, fenner@FreeBSD.org Subject: Re: ports/11581: netperf port - rfc1644 forgotten Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: netperf port - rfc1644 forgotten Responsible-Changed-From-To: freebsd-ports->fenner Responsible-Changed-By: steve Responsible-Changed-When: Sun May 9 08:37:24 PDT 1999 Responsible-Changed-Why: Over to port's maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 8:39: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A14BC14D96; Sun, 9 May 1999 08:39:02 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA96730; Sun, 9 May 1999 08:39:02 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 08:39:02 -0700 (PDT) From: Message-Id: <199905091539.IAA96730@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, jseger@FreeBSD.org Subject: Re: ports/11592: Update: graphics/ImageMagick Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: graphics/ImageMagick Responsible-Changed-From-To: freebsd-ports->jseger Responsible-Changed-By: steve Responsible-Changed-When: Sun May 9 08:38:43 PDT 1999 Responsible-Changed-Why: Over to port's maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 8:42:44 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A8A9214F7A; Sun, 9 May 1999 08:42:41 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA97144; Sun, 9 May 1999 08:42:41 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 08:42:41 -0700 (PDT) From: Message-Id: <199905091542.IAA97144@freefall.freebsd.org> To: swjeong@bbs.kitel.co.kr, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11514: ports submit (net/brouted) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports submit (net/brouted) State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 08:42:27 PDT 1999 State-Changed-Why: Duplicate of ports/11515. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 8:47:26 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D543D150C7; Sun, 9 May 1999 08:47:25 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Received: (from flathill@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA97478; Sun, 9 May 1999 08:47:25 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Date: Sun, 9 May 1999 08:47:25 -0700 (PDT) From: Message-Id: <199905091547.IAA97478@freefall.freebsd.org> To: cpiazza@home.net, flathill@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11590: Unbreak vtcl port. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Unbreak vtcl port. State-Changed-From-To: open->closed State-Changed-By: flathill State-Changed-When: Sun May 9 08:46:10 PDT 1999 State-Changed-Why: Fixed by kris. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:14:49 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DA55515A94; Sun, 9 May 1999 09:14:44 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA99646; Sun, 9 May 1999 09:14:44 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:14:44 -0700 (PDT) From: Message-Id: <199905091614.JAA99646@freefall.freebsd.org> To: tobez@plab.ku.dk, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11546: Update to math/PDL (to compile cleanly on the latest 4.0) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update to math/PDL (to compile cleanly on the latest 4.0) State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:13:42 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:16: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DA1E815AC1; Sun, 9 May 1999 09:16:00 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA99843; Sun, 9 May 1999 09:16:00 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:16:00 -0700 (PDT) From: Message-Id: <199905091616.JAA99843@freefall.freebsd.org> To: croyle@gelemna.ft-wayne.in.us, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11565: Update www/amaya to 2.0a Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update www/amaya to 2.0a State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:15:02 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:18: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4AD0415748; Sun, 9 May 1999 09:18:05 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA00139; Sun, 9 May 1999 09:18:04 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:18:04 -0700 (PDT) From: Message-Id: <199905091618.JAA00139@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11585: Update: sysutils/ascpu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: sysutils/ascpu State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:16:49 PDT 1999 State-Changed-Why: UPdate committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:20:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D97A115829; Sun, 9 May 1999 09:20:07 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA00353; Sun, 9 May 1999 09:20:07 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:20:07 -0700 (PDT) From: Message-Id: <199905091620.JAA00353@freefall.freebsd.org> To: jim@blues.ghis.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11573: update port: aterm-0.3.4 to 0.3.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: aterm-0.3.4 to 0.3.5 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:19:12 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:25: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0952914BF4; Sun, 9 May 1999 09:25:04 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA00933; Sun, 9 May 1999 09:25:04 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:25:04 -0700 (PDT) From: Message-Id: <199905091625.JAA00933@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11583: Update: x11-toolkits/fltk Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: x11-toolkits/fltk State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:23:41 PDT 1999 State-Changed-Why: UPdate committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:26:28 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7001B15ACC; Sun, 9 May 1999 09:26:24 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA01235; Sun, 9 May 1999 09:26:23 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:26:23 -0700 (PDT) From: Message-Id: <199905091626.JAA01235@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11584: Update: net/greed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: net/greed State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:25:30 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:28:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D40C015748; Sun, 9 May 1999 09:28:09 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA01561; Sun, 9 May 1999 09:28:09 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:28:09 -0700 (PDT) From: Message-Id: <199905091628.JAA01561@freefall.freebsd.org> To: aw1@stade.co.uk, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11310: Port upgrade: Hylafax - allow to compile with egcs Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port upgrade: Hylafax - allow to compile with egcs State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:27:04 PDT 1999 State-Changed-Why: ommitted, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:29:53 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E1D915735; Sun, 9 May 1999 09:29:51 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA01780; Sun, 9 May 1999 09:29:51 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:29:51 -0700 (PDT) From: Message-Id: <199905091629.JAA01780@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11588: Update: editors/gnotepad+ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: editors/gnotepad+ State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:28:57 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:32:30 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AC0E015780; Sun, 9 May 1999 09:32:23 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA02091; Sun, 9 May 1999 09:32:23 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:32:23 -0700 (PDT) From: Message-Id: <199905091632.JAA02091@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11473: Update: x11-wm/icewm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: x11-wm/icewm State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:30:22 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:34:27 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EA02F14F2A; Sun, 9 May 1999 09:34:26 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA02481; Sun, 9 May 1999 09:34:26 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:34:26 -0700 (PDT) From: Message-Id: <199905091634.JAA02481@freefall.freebsd.org> To: jim@blues.ghis.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11577: update port: irssi-0.7.8 to 0.7/9 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: irssi-0.7.8 to 0.7/9 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:33:12 PDT 1999 State-Changed-Why: Committed by flathill@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 May 9 9:36: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7563E15780; Sun, 9 May 1999 09:36:04 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA02785; Sun, 9 May 1999 09:36:04 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:36:04 -0700 (PDT) From: Message-Id: <199905091636.JAA02785@freefall.freebsd.org> To: nobutaka@nobutaka.com, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11586: Update port: japanese/eterm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: japanese/eterm State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:34:43 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:40: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 741A1156A0; Sun, 9 May 1999 09:40:08 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA03404; Sun, 9 May 1999 09:40:07 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:40:07 -0700 (PDT) From: Message-Id: <199905091640.JAA03404@freefall.freebsd.org> To: rk@ronald.org, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11566: lang/ocaml port fix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: lang/ocaml port fix State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:38:21 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:41:56 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6795C15718; Sun, 9 May 1999 09:41:55 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA03688; Sun, 9 May 1999 09:41:55 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:41:55 -0700 (PDT) From: Message-Id: <199905091641.JAA03688@freefall.freebsd.org> To: obonilla@fisicc-ufm.edu, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11522: Otcl doesn't check for X Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Otcl doesn't check for X State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:40:48 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:45:48 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E9A81580A; Sun, 9 May 1999 09:45:47 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA04375; Sun, 9 May 1999 09:45:47 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:45:47 -0700 (PDT) From: Message-Id: <199905091645.JAA04375@freefall.freebsd.org> To: nosuzuki@e-mail.ne.jp, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11578: update port: net/ppxp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: net/ppxp State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:44:16 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:48:34 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 42C5D15794; Sun, 9 May 1999 09:48:31 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA04904; Sun, 9 May 1999 09:48:30 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:48:30 -0700 (PDT) From: Message-Id: <199905091648.JAA04904@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11568: Make qstat use CFLAGS Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Make qstat use CFLAGS State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:47:37 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:50: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EB8FD15860; Sun, 9 May 1999 09:49:57 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA05156; Sun, 9 May 1999 09:49:57 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:49:57 -0700 (PDT) From: Message-Id: <199905091649.JAA05156@freefall.freebsd.org> To: elwood@mc5sys.in-berlin.de, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11564: Upgrade: qtarch 1.4-1 -> 1.4-4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Upgrade: qtarch 1.4-1 -> 1.4-4 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:49:09 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:52: 0 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A75715B8E; Sun, 9 May 1999 09:51:58 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA05566; Sun, 9 May 1999 09:51:58 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:51:58 -0700 (PDT) From: Message-Id: <199905091651.JAA05566@freefall.freebsd.org> To: dan@obluda.cz, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11593: minor bug when config file not found in tacacsd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: minor bug when config file not found in tacacsd State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:50:35 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:55:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7FAB015CCA; Sun, 9 May 1999 09:55:13 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA06444; Sun, 9 May 1999 09:55:13 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:55:13 -0700 (PDT) From: Message-Id: <199905091655.JAA06444@freefall.freebsd.org> To: greg@greg.rim.or.jp, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11509: Can not rewrite collectly in wget mirror function Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Can not rewrite collectly in wget mirror function State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:54:03 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:56:28 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1380E15B26; Sun, 9 May 1999 09:56:25 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA06842; Sun, 9 May 1999 09:56:25 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:56:25 -0700 (PDT) From: Message-Id: <199905091656.JAA06842@freefall.freebsd.org> To: jim@blues.ghis.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11576: fix port: wmcp-1.2.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix port: wmcp-1.2.6 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:55:26 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:57:42 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E955415845; Sun, 9 May 1999 09:57:40 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA07232; Sun, 9 May 1999 09:57:41 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:57:41 -0700 (PDT) From: Message-Id: <199905091657.JAA07232@freefall.freebsd.org> To: jim@blues.ghis.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11574: update port: xchat-0.9.4 to 0.9.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: xchat-0.9.4 to 0.9.5 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:56:41 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 9:59:52 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2A59215BDE; Sun, 9 May 1999 09:59:46 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA07744; Sun, 9 May 1999 09:59:46 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 09:59:46 -0700 (PDT) From: Message-Id: <199905091659.JAA07744@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11567: Update: games/xqf Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: games/xqf State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 09:58:04 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10: 2:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1AE8715945; Sun, 9 May 1999 10:01:32 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA08355; Sun, 9 May 1999 10:01:32 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 10:01:32 -0700 (PDT) From: Message-Id: <199905091701.KAA08355@freefall.freebsd.org> To: ade@lovett.com, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11548: Port upgrade: gnomeadmin-1.0.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port upgrade: gnomeadmin-1.0.2 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 10:00:21 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10: 3:43 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A04A14F6D; Sun, 9 May 1999 10:03:41 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA08898; Sun, 9 May 1999 10:03:41 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 10:03:41 -0700 (PDT) From: Message-Id: <199905091703.KAA08898@freefall.freebsd.org> To: ade@lovett.com, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11549: Port upgrade: gnomecontrolcenter-1.0.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port upgrade: gnomecontrolcenter-1.0.5 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 10:02:09 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10: 4:32 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7CC9E15BBA; Sun, 9 May 1999 10:04:04 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA09042; Sun, 9 May 1999 10:04:04 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Sun, 9 May 1999 10:04:04 -0700 (PDT) From: Message-Id: <199905091704.KAA09042@freefall.freebsd.org> To: yoshiaki@kt.rim.or.jp, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11605: This is port for libmikmod. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: This is port for libmikmod. State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Sun May 9 10:02:27 PDT 1999 State-Changed-Why: This port already exists. If you have changes to the current version of this port, please send a diff. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10: 4:58 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0252414C34; Sun, 9 May 1999 10:04:55 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA09371; Sun, 9 May 1999 10:04:55 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 10:04:55 -0700 (PDT) From: Message-Id: <199905091704.KAA09371@freefall.freebsd.org> To: nacai@iname.com, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11538: Fixed port: gnome-core Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fixed port: gnome-core State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 10:04:07 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10: 5:35 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DA13615E52; Sun, 9 May 1999 10:05:23 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA09488; Sun, 9 May 1999 10:05:23 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Sun, 9 May 1999 10:05:23 -0700 (PDT) From: Message-Id: <199905091705.KAA09488@freefall.freebsd.org> To: yoshiaki@kt.rim.or.jp, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11604: new version port, Mikmod (audio) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new version port, Mikmod (audio) State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Sun May 9 10:04:32 PDT 1999 State-Changed-Why: mikmod 3.1.5 already exists in ports/audio. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10: 6:55 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2BBFD15C5E; Sun, 9 May 1999 10:06:45 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA09890; Sun, 9 May 1999 10:06:45 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 10:06:45 -0700 (PDT) From: Message-Id: <199905091706.KAA09890@freefall.freebsd.org> To: ade@lovett.com, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11547: Port upgrade: gnomegames-1.0.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port upgrade: gnomegames-1.0.2 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 10:05:31 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10:14: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 457C814C21; Sun, 9 May 1999 10:14:03 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA11211; Sun, 9 May 1999 10:14:03 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 10:14:03 -0700 (PDT) From: Message-Id: <199905091714.KAA11211@freefall.freebsd.org> To: ade@lovett.com, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11529: Port upgrade: gnomelibs-1.0.9 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port upgrade: gnomelibs-1.0.9 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 10:12:19 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10:16:21 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E66314C21; Sun, 9 May 1999 10:16:20 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA11567; Sun, 9 May 1999 10:16:20 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 10:16:20 -0700 (PDT) From: Message-Id: <199905091716.KAA11567@freefall.freebsd.org> To: ade@lovett.com, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11541: Port upgrade: gnomemc-4.5.30 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port upgrade: gnomemc-4.5.30 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 10:14:40 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10:18:35 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 32D1A158DE; Sun, 9 May 1999 10:18:23 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA11951; Sun, 9 May 1999 10:18:22 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 10:18:22 -0700 (PDT) From: Message-Id: <199905091718.KAA11951@freefall.freebsd.org> To: ade@lovett.com, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11550: Fix port gnomenetwork-1.0.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fix port gnomenetwork-1.0.1 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 10:17:02 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10:19:49 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0225214D96; Sun, 9 May 1999 10:19:47 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA12189; Sun, 9 May 1999 10:19:47 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 10:19:47 -0700 (PDT) From: Message-Id: <199905091719.KAA12189@freefall.freebsd.org> To: ade@lovett.com, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11543: Port upgrade: gnomeobjc-1.0.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port upgrade: gnomeobjc-1.0.2 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 10:18:50 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10:21:22 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DC87415B32; Sun, 9 May 1999 10:21:14 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA12448; Sun, 9 May 1999 10:21:14 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 10:21:14 -0700 (PDT) From: Message-Id: <199905091721.KAA12448@freefall.freebsd.org> To: ade@lovett.com, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11545: Port upgrade: gnomepim-1.0.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port upgrade: gnomepim-1.0.7 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 10:20:18 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10:22:32 1999 Delivered-To: freebsd-ports@freebsd.org Received: from muppet.faveve.uni-stuttgart.de (muppet.faveve.uni-stuttgart.de [129.69.139.1]) by hub.freebsd.org (Postfix) with ESMTP id 8304E14D96 for ; Sun, 9 May 1999 10:22:25 -0700 (PDT) (envelope-from chris@elwood.faveve.uni-stuttgart.de) Received: from elwood.faveve.uni-stuttgart.de (chris@elwood.faveve.uni-stuttgart.de [129.69.139.8]) by muppet.faveve.uni-stuttgart.de (8.8.8/8.8.8) with ESMTP id TAA25109 for ; Sun, 9 May 1999 19:22:23 +0200 env-from (chris@elwood.faveve.uni-stuttgart.de) Received: (from chris@localhost) by elwood.faveve.uni-stuttgart.de (8.8.7/8.8.7) id TAA06123 for ports@freebsd.org; Sun, 9 May 1999 19:21:37 +0200 Message-ID: <19990509192134.A6120@elwood.faveve.uni-stuttgart.de> Date: Sun, 9 May 1999 19:21:35 +0200 From: Christian Recktenwald To: ports@freebsd.org Subject: packet misc/mshell description Reply-To: Christian Recktenwald Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2 X-pgp-fingerprint: 1024bit / E2 B2 C7 47 5D CF 6A A4 89 4C DC C3 36 7F C4 25 X-pgp-key-url: http://www.citecs.de/pgpkey.chris.asc Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, for the packet misc/mshell in the freebsd distribution (http://www.freebsd.org/cgi/url.cgi?ftp://ftp.freebsd.org/pub/\ FreeBSD/FreeBSD-current/ports/misc/mshell/pkg/DESCR) one can read: [...] It is was developped for Nyx, a free, public access Unix system. Indeed, you're welcome to try Nyx -- log into Nyx as: - telnet to nyx.cs.du.edu (130.253.192.68), user 'new'. - call 303-871-3324 Curious guy I am I tried, but it looks like the service has been closed down. $ telnet nyx.cs.du.edu nyx.cs.du.edu: Unknown host $ host 130.253.192.68 68.192.253.130.IN-ADDR.ARPA domain name pointer ellingwood.cs.du.edu $ telnet 130.253.192.68 Trying 130.253.192.68... telnet: Unable to connect to remote host: Connection refused maybe the documentation should be adopted :-) Greetings from Stuttgart, Germany, Chris -- Christian Recktenwald | elwood sys adm FaVeVe Uni Stuttgart | chris@faveve.uni-stuttgart.de | +49 711 685-2004 begin 644 .signature.gz M'XL("+.P83```RYS:6<`"\](+%%(5"C(+*E45/`L42]62,TM**E4T`,"!6M= +32X`\H#&@R$```!S ` end To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10:22:35 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D81371548F; Sun, 9 May 1999 10:22:34 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA12930; Sun, 9 May 1999 10:22:34 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 10:22:34 -0700 (PDT) From: Message-Id: <199905091722.KAA12930@freefall.freebsd.org> To: ade@lovett.com, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11544: Port upgrade: gnumeric-0.25 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port upgrade: gnumeric-0.25 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 10:21:32 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10:26:18 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5BB1014F6D; Sun, 9 May 1999 10:26:17 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA13488; Sun, 9 May 1999 10:26:16 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 10:26:16 -0700 (PDT) From: Message-Id: <199905091726.KAA13488@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11476: New port: x11-clocks/bbdate Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: x11-clocks/bbdate State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 10:25:12 PDT 1999 State-Changed-Why: New port committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10:31:30 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B4B51544B; Sun, 9 May 1999 10:31:28 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA14677; Sun, 9 May 1999 10:31:28 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 10:31:28 -0700 (PDT) From: Message-Id: <199905091731.KAA14677@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11477: New port: mail/bbmail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: mail/bbmail State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 10:31:08 PDT 1999 State-Changed-Why: New port committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10:38:55 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AFF2515BF5; Sun, 9 May 1999 10:38:51 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA15799; Sun, 9 May 1999 10:38:50 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 10:38:50 -0700 (PDT) From: Message-Id: <199905091738.KAA15799@freefall.freebsd.org> To: andy@icc.surw.chel.su, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11534: New port: cdk-4.9.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: cdk-4.9.1 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 10:38:08 PDT 1999 State-Changed-Why: New port committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10:44:30 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9DB3915943; Sun, 9 May 1999 10:44:27 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA16850; Sun, 9 May 1999 10:44:27 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 10:44:27 -0700 (PDT) From: Message-Id: <199905091744.KAA16850@freefall.freebsd.org> To: adam@whizkidtech.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11551: Find Unicode mapping for Chinese characters. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Find Unicode mapping for Chinese characters. State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 10:43:42 PDT 1999 State-Changed-Why: New port committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10:50:29 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E193815A8C; Sun, 9 May 1999 10:50:28 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA17948; Sun, 9 May 1999 10:50:28 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 10:50:28 -0700 (PDT) From: Message-Id: <199905091750.KAA17948@freefall.freebsd.org> To: shipley@dis.org, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11557: port of slush 0.1.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port of slush 0.1.0 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 10:49:40 PDT 1999 State-Changed-Why: New port committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10:55:19 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 37D19150AF; Sun, 9 May 1999 10:55:18 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA18531; Sun, 9 May 1999 10:55:18 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 10:55:18 -0700 (PDT) From: Message-Id: <199905091755.KAA18531@freefall.freebsd.org> To: andrew@squiz.co.nz, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/10543: New port uploaded for xslj Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port uploaded for xslj State-Changed-From-To: feedback->closed State-Changed-By: steve State-Changed-When: Sun May 9 10:54:09 PDT 1999 State-Changed-Why: No response from originator. Please submit a new PR when you have a portball available. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 10:56:28 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9731615005; Sun, 9 May 1999 10:56:27 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA18710; Sun, 9 May 1999 10:56:27 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 10:56:27 -0700 (PDT) From: Message-Id: <199905091756.KAA18710@freefall.freebsd.org> To: martti.kuparinen@ericsson.com, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11466: "make clean" will fail in /usr/ports/lang/jdk-tutorial/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: "make clean" will fail in /usr/ports/lang/jdk-tutorial/ State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 10:55:33 PDT 1999 State-Changed-Why: Fixed in a slightly different way by taoka@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 May 9 11: 0:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1EF00150AF for ; Sun, 9 May 1999 11:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA19167; Sun, 9 May 1999 11:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from Terry.Dorm10.NCTU.edu.tw (Terry.Dorm10.NCTU.edu.tw [140.113.122.99]) by hub.freebsd.org (Postfix) with ESMTP id 93E7014D2D for ; Sun, 9 May 1999 10:52:01 -0700 (PDT) (envelope-from ijliao@Terry.Dorm10.NCTU.edu.tw) Received: (from ijliao@localhost) by Terry.Dorm10.NCTU.edu.tw (8.9.3/8.9.3) id BAA43665; Mon, 10 May 1999 01:52:00 +0800 (CST) (envelope-from ijliao) Message-Id: <199905091752.BAA43665@Terry.Dorm10.NCTU.edu.tw> Date: Mon, 10 May 1999 01:52:00 +0800 (CST) From: Ying-Chieh Liao Reply-To: ijliao@Terry.Dorm10.NCTU.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11610: New ports : net/coda5_doc Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11610 >Category: ports >Synopsis: New ports : net/coda5_doc >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 May 9 11:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ying-Chieh Liao >Release: FreeBSD 4.0-CURRENT i386 >Organization: NCTU CSIE >Environment: FreeBSD Terry.Dorm10.NCTU.edu.tw 4.0-CURRENT FreeBSD 4.0-CURRENT #16: Sat May 8 15:52:36 CST 1999 root@Terry.Dorm10.NCTU.edu.tw:/usr/src/sys/compile/TERRY i386 >Description: New ports : net/coda5_doc >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: # # coda5_doc # coda5_doc/files # coda5_doc/files/md5 # coda5_doc/pkg # coda5_doc/pkg/COMMENT # coda5_doc/pkg/DESCR # coda5_doc/pkg/PLIST # coda5_doc/Makefile # echo c - coda5_doc mkdir -p coda5_doc > /dev/null 2>&1 echo c - coda5_doc/files mkdir -p coda5_doc/files > /dev/null 2>&1 echo x - coda5_doc/files/md5 sed 's/^X//' >coda5_doc/files/md5 << 'END-of-coda5_doc/files/md5' XMD5 (coda-doc-5.2.0-1.tgz) = a5bbb2b03ce1fe93b74f05bf0c1f6152 END-of-coda5_doc/files/md5 echo c - coda5_doc/pkg mkdir -p coda5_doc/pkg > /dev/null 2>&1 echo x - coda5_doc/pkg/COMMENT sed 's/^X//' >coda5_doc/pkg/COMMENT << 'END-of-coda5_doc/pkg/COMMENT' Xan experimental, replicated, high-performance network file system. END-of-coda5_doc/pkg/COMMENT echo x - coda5_doc/pkg/DESCR sed 's/^X//' >coda5_doc/pkg/DESCR << 'END-of-coda5_doc/pkg/DESCR' XCoda is a distributed file system. Among its features are disconnected Xoperation, good security model, server replication and persistent client Xside caching. X XThis package builds nothing but only installs(/packages) prebuilt Xdocumentation. X XFor more info, contact or visit the website. X XWWW: http://www.coda.cs.cmu.edu/ END-of-coda5_doc/pkg/DESCR echo x - coda5_doc/pkg/PLIST sed 's/^X//' >coda5_doc/pkg/PLIST << 'END-of-coda5_doc/pkg/PLIST' Xshare/doc/coda-doc-5.2.0/html/admin-1.html Xshare/doc/coda-doc-5.2.0/html/admin.html Xshare/doc/coda-doc-5.2.0/html/coda-howto-1.html Xshare/doc/coda-doc-5.2.0/html/coda-howto-2.html Xshare/doc/coda-doc-5.2.0/html/coda-howto-3.html Xshare/doc/coda-doc-5.2.0/html/coda-howto-4.html Xshare/doc/coda-doc-5.2.0/html/coda-howto-5.html Xshare/doc/coda-doc-5.2.0/html/coda-howto-6.html Xshare/doc/coda-doc-5.2.0/html/coda-howto.html Xshare/doc/coda-doc-5.2.0/html/codadir-1.html Xshare/doc/coda-doc-5.2.0/html/codadir-2.html Xshare/doc/coda-doc-5.2.0/html/codadir-3.html Xshare/doc/coda-doc-5.2.0/html/codadir-4.html Xshare/doc/coda-doc-5.2.0/html/codadir.html Xshare/doc/coda-doc-5.2.0/html/index.html Xshare/doc/coda-doc-5.2.0/html/kernel-venus-protocol-1.html Xshare/doc/coda-doc-5.2.0/html/kernel-venus-protocol-2.html Xshare/doc/coda-doc-5.2.0/html/kernel-venus-protocol-3.html Xshare/doc/coda-doc-5.2.0/html/kernel-venus-protocol-4.html Xshare/doc/coda-doc-5.2.0/html/kernel-venus-protocol-5.html Xshare/doc/coda-doc-5.2.0/html/kernel-venus-protocol-6.html Xshare/doc/coda-doc-5.2.0/html/kernel-venus-protocol-7.html Xshare/doc/coda-doc-5.2.0/html/kernel-venus-protocol.html Xshare/doc/coda-doc-5.2.0/html/manual-1.html Xshare/doc/coda-doc-5.2.0/html/manual-10.html Xshare/doc/coda-doc-5.2.0/html/manual-11.html Xshare/doc/coda-doc-5.2.0/html/manual-12.html Xshare/doc/coda-doc-5.2.0/html/manual-13.html Xshare/doc/coda-doc-5.2.0/html/manual-14.html Xshare/doc/coda-doc-5.2.0/html/manual-15.html Xshare/doc/coda-doc-5.2.0/html/manual-16.html Xshare/doc/coda-doc-5.2.0/html/manual-17.html Xshare/doc/coda-doc-5.2.0/html/manual-18.html Xshare/doc/coda-doc-5.2.0/html/manual-19.html Xshare/doc/coda-doc-5.2.0/html/manual-2.html Xshare/doc/coda-doc-5.2.0/html/manual-3.html Xshare/doc/coda-doc-5.2.0/html/manual-4.html Xshare/doc/coda-doc-5.2.0/html/manual-5.html Xshare/doc/coda-doc-5.2.0/html/manual-6.html Xshare/doc/coda-doc-5.2.0/html/manual-7.html Xshare/doc/coda-doc-5.2.0/html/manual-8.html Xshare/doc/coda-doc-5.2.0/html/manual-9.html Xshare/doc/coda-doc-5.2.0/html/manual.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual-1.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual-10.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual-11.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual-12.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual-13.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual-14.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual-15.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual-16.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual-17.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual-18.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual-19.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual-2.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual-3.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual-4.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual-5.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual-6.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual-7.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual-8.html Xshare/doc/coda-doc-5.2.0/html/rpc2_manual-9.html Xshare/doc/coda-doc-5.2.0/html/rvm_manual-1.html Xshare/doc/coda-doc-5.2.0/html/rvm_manual-10.html Xshare/doc/coda-doc-5.2.0/html/rvm_manual-2.html Xshare/doc/coda-doc-5.2.0/html/rvm_manual-3.html Xshare/doc/coda-doc-5.2.0/html/rvm_manual-4.html Xshare/doc/coda-doc-5.2.0/html/rvm_manual-5.html Xshare/doc/coda-doc-5.2.0/html/rvm_manual-6.html Xshare/doc/coda-doc-5.2.0/html/rvm_manual-7.html Xshare/doc/coda-doc-5.2.0/html/rvm_manual-8.html Xshare/doc/coda-doc-5.2.0/html/rvm_manual-9.html Xshare/doc/coda-doc-5.2.0/html/rvm_manual.html Xshare/doc/coda-doc-5.2.0/html/sec-1.html Xshare/doc/coda-doc-5.2.0/html/sec-2.html Xshare/doc/coda-doc-5.2.0/html/sec-3.html Xshare/doc/coda-doc-5.2.0/html/sec-4.html Xshare/doc/coda-doc-5.2.0/html/sec-5.html Xshare/doc/coda-doc-5.2.0/html/sec.html Xshare/doc/coda-doc-5.2.0/html/server-1.html Xshare/doc/coda-doc-5.2.0/html/server-2.html Xshare/doc/coda-doc-5.2.0/html/server-3.html Xshare/doc/coda-doc-5.2.0/html/server-4.html Xshare/doc/coda-doc-5.2.0/html/server-5.html Xshare/doc/coda-doc-5.2.0/html/server-6.html Xshare/doc/coda-doc-5.2.0/html/server-7.html Xshare/doc/coda-doc-5.2.0/html/server.html Xshare/doc/coda-doc-5.2.0/html/venus-ds-1.html Xshare/doc/coda-doc-5.2.0/html/venus-ds-10.html Xshare/doc/coda-doc-5.2.0/html/venus-ds-11.html Xshare/doc/coda-doc-5.2.0/html/venus-ds-12.html Xshare/doc/coda-doc-5.2.0/html/venus-ds-2.html Xshare/doc/coda-doc-5.2.0/html/venus-ds-3.html Xshare/doc/coda-doc-5.2.0/html/venus-ds-4.html Xshare/doc/coda-doc-5.2.0/html/venus-ds-5.html Xshare/doc/coda-doc-5.2.0/html/venus-ds-6.html Xshare/doc/coda-doc-5.2.0/html/venus-ds-7.html Xshare/doc/coda-doc-5.2.0/html/venus-ds-8.html Xshare/doc/coda-doc-5.2.0/html/venus-ds-9.html Xshare/doc/coda-doc-5.2.0/html/venus-ds.html X@dirrm share/doc/coda-doc-5.2.0/html Xshare/doc/coda-doc-5.2.0/ppt/directories.ppt Xshare/doc/coda-doc-5.2.0/ppt/rdsseg40.ppt Xshare/doc/coda-doc-5.2.0/ppt/rpc2.ppt Xshare/doc/coda-doc-5.2.0/ppt/server.ppt Xshare/doc/coda-doc-5.2.0/ppt/sysad1.ppt X@dirrm share/doc/coda-doc-5.2.0/ppt Xshare/doc/coda-doc-5.2.0/ps/admin.ps.gz Xshare/doc/coda-doc-5.2.0/ps/coda-howto.ps.gz Xshare/doc/coda-doc-5.2.0/ps/codadir.ps.gz Xshare/doc/coda-doc-5.2.0/ps/index.ps.gz Xshare/doc/coda-doc-5.2.0/ps/kernel-venus-protocol.ps.gz Xshare/doc/coda-doc-5.2.0/ps/manual.ps.gz Xshare/doc/coda-doc-5.2.0/ps/rpc2_manual.ps.gz Xshare/doc/coda-doc-5.2.0/ps/rvm_manual.ps.gz Xshare/doc/coda-doc-5.2.0/ps/sec.ps.gz Xshare/doc/coda-doc-5.2.0/ps/server.ps.gz Xshare/doc/coda-doc-5.2.0/ps/venus-ds.ps.gz X@dirrm share/doc/coda-doc-5.2.0/ps X@dirrm share/doc/coda-doc-5.2.0 END-of-coda5_doc/pkg/PLIST echo x - coda5_doc/Makefile sed 's/^X//' >coda5_doc/Makefile << 'END-of-coda5_doc/Makefile' X# New ports collection makefile for: coda X# Version required: 5.2.0 X# Date created: 11 May 1999 X# Whom: Ying-Chieh Liao X# X# $Id$ X# X XDISTNAME= coda-doc-5.2.0-1 XCATEGORIES= net XMASTER_SITES= ftp://ftp.coda.cs.cmu.edu/pub/coda/doc/ XEXTRACT_SUFX= .tgz X XMAINTAINER= ijliao@csie.nctu.edu.tw X XWRKSRC= ${WRKDIR}/usr X XMAN1= cfs.1 \ X clog.1 \ X cmon.1 \ X cpasswd.1 \ X ctokens.1 \ X cunlog.1 \ X filcon.1 \ X hoard.1 \ X mvdb.1 \ X rdsinit.1 \ X repair.1 \ X rvmutl.1 \ X spy.1 XMAN3= histo.3 \ X rds_fake_free.3 \ X rds_free.3 \ X rds_init_heap.3 \ X rds_load_heap.3 \ X rds_malloc.3 \ X rds_prealloc.3 \ X rds_statistics.3 \ X rds_zap_heap.3 \ X rvm_abort_transaction.3 \ X rvm_begin_transaction.3 \ X rvm_create_log.3 \ X rvm_create_segment.3 \ X rvm_end_transaction.3 \ X rvm_flush.3 \ X rvm_initialize.3 \ X rvm_load_segment.3 \ X rvm_map.3 \ X rvm_modify_bytes.3 \ X rvm_print_statistics.3 \ X rvm_query.3 \ X rvm_set_options.3 \ X rvm_set_range.3 \ X rvm_statistics.3 \ X rvm_terminate.3 \ X rvm_truncate.3 \ X rvm_unmap.3 \ X timing.3 XMAN5= backuplogs.5 \ X dumpfile.5 \ X dumplist.5 \ X maxgroupid.5 \ X multicastagents.5 \ X multicastgroups.5 \ X passwd.coda.5 \ X servers.5 \ X vicetab.5 \ X volumelist.5 \ X vrdb.5 \ X vrlist.5 \ X vsgdb.5 \ X vstab.5 XMAN8= au.8 \ X auth2.8 \ X backup.8 \ X bldvldb.8 \ X codasrv.8 \ X createvol.8 \ X createvol_rep.8 \ X initpw.8 \ X merge.8 \ X norton.8 \ X pdbtool.8 \ X purgevol.8 \ X purgevol_rep.8 \ X readdump.8 \ X replay.8 \ X startserver.8 \ X updateclnt.8 \ X updatesrv.8 \ X venus.8 \ X volutil.8 \ X vutil.8 X Xdo-build: X @${ECHO} "At present, Coda documentation is distributed in html, man, ps, and ppt forms" X @${ECHO} "but documentation source is not available. It should appear in a release" X @${ECHO} "or two." X Xdo-install: X cd ${WRKSRC}; tar cf - man | (cd ${PREFIX}; tar xvf -) X.if !defined(NOPORTDOCS) X cd ${WRKSRC}; tar cf - doc | (cd ${PREFIX}/share; tar xvf -) X.endif X X.include END-of-coda5_doc/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 May 9 11:30:32 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 47ED015811 for ; Sun, 9 May 1999 11:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA23733; Sun, 9 May 1999 11:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from totem.tihlde.hist.no (totem.tihlde.hist.no [158.38.48.45]) by hub.freebsd.org (Postfix) with ESMTP id B290315AF5 for ; Sun, 9 May 1999 11:22:39 -0700 (PDT) (envelope-from anders@totem.tihlde.hist.no) Received: (from anders@localhost) by totem.tihlde.hist.no (8.9.3/8.9.3) id UAA95606; Sun, 9 May 1999 20:22:07 +0200 (CEST) Message-Id: <199905091822.UAA95606@totem.tihlde.hist.no> Date: Sun, 9 May 1999 20:22:07 +0200 (CEST) From: Anders Nordby Reply-To: Anders Nordby To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11611: Update port: net/ntop Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11611 >Category: ports >Synopsis: Update port: net/ntop >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 May 9 11:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Anders Nordby >Release: FreeBSD 3.1-STABLE i386 >Organization: >Environment: FreeBSD totem.tihlde.hist.no 3.1-STABLE FreeBSD 3.1-STABLE #0: Thu Apr 29 14:47:08 GMT 1999 (A P133 w/64 MB EDO RAM.) >Description: - This update port still uses too much CPU time (~94% with hardly any traffic). - PR ports/11559 should be closed IMO, as this does not happen on my system (which is built from -STABLE as of the same day). - I'm waiting for feedback from the authors regarding the CPU usage. >How-To-Repeat: >Fix: diff -Nur ntop.old/Makefile ntop/Makefile --- ntop.old/Makefile Sun May 9 19:41:41 1999 +++ ntop/Makefile Sun May 9 19:43:46 1999 @@ -6,10 +6,9 @@ # $Id: Makefile,v 1.9 1999/05/07 19:31:59 billf Exp $ # -DISTNAME= ntop-1.1-src -PKGNAME= ntop-1.1 +DISTNAME= ntop-1.2a0 CATEGORIES= net -MASTER_SITES= ftp://ftp.unipi.it/pub/local/ntop/source/ \ +MASTER_SITES= ftp://ftp.unipi.it/pub/local/ntop/snapshots/ \ http://www.freenix.no/~anders/ \ ftp://totem.fix.no/pub/mirrors/misc/ diff -Nur ntop.old/files/md5 ntop/files/md5 --- ntop.old/files/md5 Fri May 7 16:32:29 1999 +++ ntop/files/md5 Fri May 7 16:32:05 1999 @@ -1 +1 @@ -MD5 (ntop-1.1-src.tar.gz) = 4630ed141d9d5f16f929a9b64b70a45c +MD5 (ntop-1.2a0.tar.gz) = 0d59467352a30413a39d1782608dcb54 >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 May 9 12: 0:19 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 34548156F7 for ; Sun, 9 May 1999 12:00:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA25477; Sun, 9 May 1999 12:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id C8D7314C22 for ; Sun, 9 May 1999 11:58:21 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 07A9B1468; Sun, 9 May 1999 11:58:16 -0700 (PDT) Message-Id: <19990509185816.07A9B1468@norn.ca.eu.org> Date: Sun, 9 May 1999 11:58:16 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11612: Fix: editors/AbiWord Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11612 >Category: ports >Synopsis: Fix: editors/AbiWord >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun May 9 12:00:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD 4.0-CURRENT i386 >Description: This was found by Satoshi's build scripts. Basically the problem was that the program had put a test for "3.1-RELEASE" in a Makefile and if uname -r did not match that, use -ldl. This, of course, broke the port for -STABLE,-BETA,-CURRENT, etc. I'm not sure where exactly the cutoff was for -ldl to be not used, so I used 310000 (3.1-REL) as the port author did. Please change this to the proper number if you know it. I also split the patch file into many patchfiles to make it easier to work on. Files added: patch-ab,patch-ac,patch-ad,patch-ae,patch-af,patch-ag,patch-ai patch-aj,patch-ak,patch-al,patch-am patch-am is new. I removed all the -W, -pedantic, etc stuff. The warnings were an absolute mess. I'm fairly sure this port uses CFLAGS now (it used -O2 before, I think) but I can not be sure. I hate weird build mechanisms! :-) >How-To-Repeat: >Fix: begin 644 abiword.patch.gz M'XL("'O8-3<``V%B:7=OL9.6^/"09E_S?3LS M.Q,UK#Y]4*':-6YLIR]?Z+=T8)@T>_CUKVSK1`/6F0IR[\Z53QU*C[6:/+$= MSY5IW_!LQY6C(^?NL@[U'(/>&=80'/QP#=L")<__9?O&8`#2%"1G=@7F4Y8D M:?XCHQP<',B%BEPH@U)4B[MJ0'8%4+.:4(A#\ M.("CHRQDH=;0VAWM^KC6:!UF9M/&Z]+-S4U':[3KAYF1YTU46;Z_O\_K7<.U MITZ/YGOV6,Y*6;AIO==:)X>9S,O/^!4[^2*CD%3(5_(5V75Z6;C6ZIT/YXWC MP\QO=791?5_W?TM7U?;)NX[6;C6N#C/21&%S>@'>B$)W:IA],%R8F'J/ MXC<+=.@;#NVABA_!TL<4[`$7'=C.F#6;@=$IY16I53^O5W$PH[2_VVD>_Y(' M:(^PMSO=,?2N26&,RG+!\+AB2I6KII@J<[0^KE ML]#4F+ZXKCY.^0PD]V,G^.HLOHX_LC%Q,21O6#USVJ?P4]?MYQE-\A.'YL>W M;[,D"Q/;]:2)[O5&:E;*]/HPUR/\\`.8%O8_@+E&V;H)Y8X!B3>W7 M>DMK-"^_P%LH*05\L3Y>?CZY^@(^;@CA%[EG6P-C**.V/:9/5QZ@-MF")+?05VZX1=>XC/4;H1:HA?N+\6J!J)IE M*[_P]??R\U6K?MKX\(5M6VUJ>%3N&M8*"=/HHL2K)21"U.\;KB-R+HN%KU7:5CXWWDU:\&#L@4&C?3RWC86!;GLOG4)9GJLZ[HQ!<*R3S MMF,,0]1Q<_+4=633[NEF;CZGW(8=+A%F18.X5B.RJ(-'M!L[._`7='5<7#Z\ M4H9*"&,QA/(;KLA@U\;Q7L",1H$INMKFM]^?\1E=U#6M>E:?@2"\AY-+5R&S M\0+3Q,V2R&2AG>(W&\NNE9LNZOJ?DJY_>Q<;G<'&KG8^=>9J@Q\"5UM<VJEK);*W*,H.?0G2J["O(GDC^I,+P%]8MXV^[(^D(<.Y]8\2&#W1-?9 MQ*2TAIE3QX#JQ`$X@(+O[G>!S2LKL:DF=)MI3RE&#(\`92B4U,J!BJZ/MR)L M/$$+OIF2!R-L,-%`VM3R!T(5%=1R054._!;`8Y)*;@]#$O;.'"^<7%VA4=

`B=H]_[6KKK-YF#5^^0C^NOX".':EC3U\E7UN-&I MU:_:[U[+^3S[0]L_L8:H?$G*)(C\R3RB1-)NHQ6>"<3!\.<6(+/4PB,=SA03+JIG#SBDJ MICFAEJ;?T:H;)O>:XLEPI;?+M$=3'\0B*HBJ";;!V9ZG0XN%TEQ]19]`N MF.YZ?;0B/MG#5QTCV`+1JRZ_'-HL[J,K>X\3ZL;D\09&<5[T.JX'AXU<99LH M&';E'@J4<8HQ9"ID@7S-[,R` M_@&O?"MS66TW?JV_SC$)9M].3L^K9QI:1G*8^8C=2/Z<09)Z`U,?NA]1IOZA MW:IV\,2GQ:402R9#HOTH14%/)-Y36&[6%_A'<1_7KWZE<,"A?TP-APJ<6)J` MD!="R:58C8<%I:A32VV^PKGM\RR=_\&YTJK_IW/6?M\YOFZZ'N>*9'[]$ZVIJ8)Q;<_*,Q-\AB,BXT-[*! M-41B>C"PIU;_1Z`/A@<*BR$S1UR@W:PU&6.-P6-`7);$&SI4]ZB##-?]P]C/ M/P>+P'7-UA"F7\*,%BM89EBJ>'C^N)^>7F9D*Z\2/"?P]."8LCF',95Q@C_-P*APZ)5@6$A$1&@TVS"SK MA6)XH'_'9I^@U_N)'/BQF1NK3B9S?YIX=UFSB6*9"\29FWP\S);4$FHWZDF3 MVZ[0[3YWH_M"-VK8W\&+]C'Z'X[=)#_J+_2!O7>N'/1N':TWHF/:Z.,X(54D M2(@TGB#*,P-,Z\H^1I9J$34735RDMP]KOJRB\DO%D.8KA9Q2`N)_^+I'9VU8 M&#-==5@BK/.^_EM'XZK5J)?AKYWY[QU!@UK]M'I]WHXTVJE;U]J.WUY^,R]- M]`W=M(SXY]? MC*YLN.S>#OASQ6##H7!/`?OJPX@E-)F]8-,$O,W-8:U^TJC5X>9=O56']KN& M!MJ[YO5Y#8[K?#5DJZGPHQ1.Z"EG`BFJG4.V-!?QG33HD_K:D;NV[TP# MY^]2SV.8+[*_0=:2K3N^Z'FW3[)HGB`3\$EP/8U/XFZ^"Y]2I_(M^<0F(N:3 M^$X:GY+Z"B_K6?DC]``)`8SP3LSBKPQ=T,66]^.6_M\:M_A%2#(8@?E@5@&.[$\0.(9;`+X%\_FD?4SV"0]@TU69;!)8@:;SVWMS!]9 M19?>\]"E%Z5+;PNZ]**@[:E%)4X7142719)\01AAACU*F%!V/9TRR]EU(LRN M$YY=9Y#%L^LDGEWGV"9DUTEB=CT=X/[S`-R/`MS?`N!^5,7[&%VO`#B6P_?Q M32@PC%)@N`4%AA&UHS=0!%:C-*=`O,X2L0[1"@T' M7E"=60%WI#I#OK8ZXWN"Q.H,6:,Z0]:HSI"UJC-DK>H,F55G?.9]?74FG:6C MYV'I*,K2T18L'<596A&P="_*4F&M)WXJ6JH7A?DJKA6M"(8BM2(2KQ5Q0(-: M$=FL5D0VK161-6I%9(MBRVP1O%9$-JD5D.S<%4M'?W;YT'_-HK^[1;H1R.E2E$MEN/H[T?03RC0^0Q(K/*%&)!6(4QF M0;3"1S:M\,4;/$V%3SR1C2I\Y)]3X2/_F`J?O^V>I,*7#/T_K<*7N.B-*GS) M?/KF%;YD/GWK"E^J:C>K\"7SZ7M7^-*]D?D\WLB,>B-S"V]D1KU122T4TR)/ M81%1%':&*I"!%_JWQIR\^K@RY!P_#\SC*,SC+6`>1Z0*)6'(J40/W,*G1.9@\J]^SQQ##Y_3S`J>WX.24\,+JVE0OWQY]^9D^PW1O>*-+Q M&*?GT#NJFS"8.MBO`_>Z8_'8@YU7P_VPQ]_8T\ZL&WOJ@6X]@M3\GS4==ZGS M?]XQS@6UVKQJ-RX:_ZVW,HIHIQ^P'_8(=)!6BK+S=B@CT4]:W^&)P6#HC1\5]"?, M",B_K7Q(,"+E/R'(:F#^P_BY,EH/_PE!ECQD!#EKOP?/MDVX-=CSYEG.D;&- M3#(L1E7.@!PPXMC@4@IN#]=JN2/;+# 8_$@!WRelease-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 May 9 12: 6:41 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 642CF14EAD; Sun, 9 May 1999 12:06:40 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA25810; Sun, 9 May 1999 12:06:40 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 12:06:40 -0700 (PDT) From: Message-Id: <199905091906.MAA25810@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, billf@FreeBSD.org Subject: Re: ports/11611: Update port: net/ntop Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: net/ntop Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: steve Responsible-Changed-When: Sun May 9 12:06:26 PDT 1999 Responsible-Changed-Why: Over to port's maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 12:10: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E602214F07 for ; Sun, 9 May 1999 12:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA26024; Sun, 9 May 1999 12:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 4925814EAD for ; Sun, 9 May 1999 12:08:24 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id A45871468; Sun, 9 May 1999 12:08:19 -0700 (PDT) Message-Id: <19990509190819.A45871468@norn.ca.eu.org> Date: Sun, 9 May 1999 12:08:19 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11613: Update: audio/mixer.app Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11613 >Category: ports >Synopsis: Update: audio/mixer.app >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 May 9 12:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD 4.0-CURRENT i386 >Description: Update to 1.4.0 and add a WWW: tag in DESCR. I'm the maintainer. >How-To-Repeat: >Fix: Index: mixer.app/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/audio/mixer.app/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 1999/05/05 13:50:15 1.4 +++ Makefile 1999/05/09 19:03:32 @@ -1,13 +1,13 @@ # New ports collection makefile for: mixer.app -# Version required: 1.3.3 +# Version required: 1.4.0 # Date created: 16 April 1999 # Whom: Chris Piazza # # $Id: Makefile,v 1.4 1999/05/05 13:50:15 flathill Exp $ # -DISTNAME= Mixer.app-1.3.3 -PKGNAME= mixer.app-1.3.3 +DISTNAME= Mixer.app-1.4.0 +PKGNAME= mixer.app-1.4.0 CATEGORIES= audio MASTER_SITES= http://www.student.hk-r.se/~pt96pli/mixer/ Index: mixer.app/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/audio/mixer.app/files/md5,v retrieving revision 1.3 diff -u -r1.3 md5 --- md5 1999/05/05 13:50:16 1.3 +++ md5 1999/05/09 19:03:52 @@ -1 +1 @@ -MD5 (Mixer.app-1.3.3.tar.gz) = 3aab92f76112549346b6e1a23e2f590b +MD5 (Mixer.app-1.4.0.tar.gz) = d4d646f8939288a6bc92bb85f6b098c0 Index: mixer.app/pkg/DESCR =================================================================== RCS file: /cvs/FreeBSD/ports/audio/mixer.app/pkg/DESCR,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 DESCR --- DESCR 1999/04/16 12:11:47 1.1.1.1 +++ DESCR 1999/05/09 19:05:52 @@ -5,6 +5,7 @@ Author: Per Liden +WWW: http://www.student.hk-r.se/~pt96pli/mixer/ -Chris Piazza cpiazza@home.net -Chris >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 May 9 12:20: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BC00B14CF2 for ; Sun, 9 May 1999 12:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA26244; Sun, 9 May 1999 12:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 79D5414CF2 for ; Sun, 9 May 1999 12:19:12 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 5D8901468; Sun, 9 May 1999 12:19:07 -0700 (PDT) Message-Id: <19990509191907.5D8901468@norn.ca.eu.org> Date: Sun, 9 May 1999 12:19:07 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11614: Update: net/xwhois Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11614 >Category: ports >Synopsis: Update: net/xwhois >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 May 9 12:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD 4.0-CURRENT i386 >Description: Update to 0.3.5 >How-To-Repeat: >Fix: Index: xwhois/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/net/xwhois/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 1999/04/24 14:13:34 1.4 +++ Makefile 1999/05/09 19:11:08 @@ -1,12 +1,12 @@ # New ports collection makefile for: xwhois -# Version required: 0.3.4 +# Version required: 0.3.5 # Date created: 31 December 1998 # Whom: Kris Kennaway # # $Id: Makefile,v 1.4 1999/04/24 14:13:34 kris Exp $ # -DISTNAME= xwhois-0.3.4 +DISTNAME= xwhois-0.3.5 CATEGORIES= net MASTER_SITES= http://c64.org/~nr/ \ http://www.goatnet.ml.org/ \ Index: xwhois/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/net/xwhois/files/md5,v retrieving revision 1.3 diff -u -r1.3 md5 --- md5 1999/04/24 14:13:42 1.3 +++ md5 1999/05/09 19:12:09 @@ -1 +1 @@ -MD5 (xwhois-0.3.4.tar.gz) = b8fb33ca41bccbfe418af251c8d4ac4f +MD5 (xwhois-0.3.5.tar.gz) = bf0fb83e7a14a534f197366851e544cf Index: xwhois/patches/patch-aa =================================================================== RCS file: /cvs/FreeBSD/ports/net/xwhois/patches/patch-aa,v retrieving revision 1.3 diff -u -r1.3 patch-aa --- patch-aa 1999/04/24 14:14:56 1.3 +++ patch-aa 1999/05/09 19:15:10 @@ -1,6 +1,6 @@ ---- configure.orig Wed Mar 31 16:37:29 1999 -+++ configure Thu Apr 15 12:46:24 1999 -@@ -809,11 +809,13 @@ +--- configure.orig Sat May 8 10:19:38 1999 ++++ configure Sun May 9 12:14:58 1999 +@@ -842,11 +842,13 @@ echo "configure: warning: cant find gtk-config" 1>&2 echo "-------------------------------------------------" echo " GTK+ doesnt seam to be installed on this system" @@ -16,7 +16,7 @@ x=`echo $GTK_PREFIX|cut -d. -f1` y=`echo $GTK_PREFIX|cut -d. -f2` z=`echo $GTK_PREFIX|cut -d. -f3` -@@ -895,10 +897,10 @@ +@@ -928,10 +930,10 @@ XWHOIS_SERVERS='$(prefix)/share/xwhois/xwhois.servers' @@ -29,3 +29,12 @@ DEFINES='-DSTD -DHAVE_SNPRINTF -DXWHOIS_SERVERS=\"$(XWHOIS_SERVERS)\" -D$(GTK_TYPE)' +@@ -1234,7 +1236,7 @@ + CFLAGS="-Wall $CFLAGS" + fi + if test $CC = "cc"; then +- CFLAGS="-g3 $CFLAGS" ++ CFLAGS="$CFLAGS" + fi + + # Special system options. -Chris >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 May 9 13:10:14 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 86FD21578E for ; Sun, 9 May 1999 13:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35487; Sun, 9 May 1999 13:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id A581614D31 for ; Sun, 9 May 1999 13:00:52 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 348AC146C; Sun, 9 May 1999 13:00:48 -0700 (PDT) Message-Id: <19990509200048.348AC146C@norn.ca.eu.org> Date: Sun, 9 May 1999 13:00:48 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11617: Update: main/bbmail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11617 >Category: ports >Synopsis: Update: main/bbmail >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 May 9 13:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD 4.0-CURRENT i386 >Description: Update to 0.5.1 which fixes some problems with 8bit displays. i'm the maintainer. >How-To-Repeat: >Fix: Index: bbmail/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/mail/bbmail/Makefile,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 Makefile --- Makefile 1999/05/09 17:30:44 1.1.1.1 +++ Makefile 1999/05/09 19:56:25 @@ -6,7 +6,7 @@ # $Id: Makefile,v 1.1.1.1 1999/05/09 17:30:44 steve Exp $ # -DISTNAME= bbmail-0.5.0 +DISTNAME= bbmail-0.5.1 CATEGORIES= mail MASTER_SITES= http://bbtools.windsofstorm.net/sources/ Index: bbmail/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/mail/bbmail/files/md5,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 md5 --- md5 1999/05/09 17:30:44 1.1.1.1 +++ md5 1999/05/09 19:56:36 @@ -1 +1 @@ -MD5 (bbmail-0.5.0.tar.gz) = 1b1a92caaa1793c3498627b0723973e5 +MD5 (bbmail-0.5.1.tar.gz) = 4e8c94685e71168058d6f8477546abce -Chris >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 May 9 13:10:16 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A7E215522 for ; Sun, 9 May 1999 13:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA35477; Sun, 9 May 1999 13:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 4D10714D31 for ; Sun, 9 May 1999 13:00:49 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 325E51468; Sun, 9 May 1999 13:00:45 -0700 (PDT) Message-Id: <19990509200045.325E51468@norn.ca.eu.org> Date: Sun, 9 May 1999 13:00:45 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11616: Update: x11-clocks/bbdate Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11616 >Category: ports >Synopsis: Update: x11-clocks/bbdate >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 May 9 13:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD 4.0-CURRENT i386 >Description: Update to 0.2.1 which fixes some problems with 8bit displays I'm the maintainer. >How-To-Repeat: >Fix: Index: bbdate/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/x11-clocks/bbdate/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 1999/05/09 17:35:48 1.2 +++ Makefile 1999/05/09 19:50:07 @@ -1,12 +1,12 @@ # New ports collection makefile for: bbdate -# Version required: 0.2.0 +# Version required: 0.2.1 # Date created: May 3 1999 # Whom: Chris Piazza # # $Id: Makefile,v 1.2 1999/05/09 17:35:48 steve Exp $ # -DISTNAME= bbdate-0.2.0 +DISTNAME= bbdate-0.2.1 CATEGORIES= x11-clocks MASTER_SITES= http://bbtools.windsofstorm.net/sources/ Index: bbdate/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/x11-clocks/bbdate/files/md5,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 md5 --- md5 1999/05/09 17:25:42 1.1.1.1 +++ md5 1999/05/09 19:55:28 @@ -1 +1 @@ -MD5 (bbdate-0.2.0.tar.gz) = df4b75d165ab4861e70d5ca3ed7d23e2 +MD5 (bbdate-0.2.1.tar.gz) = c6912a52f534585fdc2996ab495b113b -Chris >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 May 9 15:50: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from Sisyphos.MI.Uni-Koeln.DE (Sisyphos.MI.Uni-Koeln.DE [134.95.212.10]) by hub.freebsd.org (Postfix) with ESMTP id C803014C8E; Sun, 9 May 1999 15:50:00 -0700 (PDT) (envelope-from se@dialup124.zpr.uni-koeln.de) Received: from dialup124.zpr.Uni-Koeln.DE (dialup124.zpr.Uni-Koeln.DE [134.95.219.124]) by Sisyphos.MI.Uni-Koeln.DE (8.8.7/8.8.7) with ESMTP id AAA20553; Mon, 10 May 1999 00:49:55 +0200 (MET DST) Received: (from se@localhost) by dialup124.zpr.Uni-Koeln.DE (8.9.3/8.6.9) id AAA00922; Mon, 10 May 1999 00:50:03 +0200 (CEST) Date: Mon, 10 May 1999 00:50:03 +0200 From: Stefan Esser To: Satoshi Asami Cc: ports@freebsd.org, Stefan Esser Subject: Re: new kdebase and kdenetwork not packaging Message-ID: <19990510005003.A836@dialup124.mi.uni-koeln.de> Reply-To: se@freebsd.org References: <199905050044.RAA32528@bubble.didi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <199905050044.RAA32528@bubble.didi.com>; from Satoshi Asami on Tue, May 04, 1999 at 05:44:31PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 1999-05-04 17:44 -0700, Satoshi Asami wrote: > http://bento.freebsd.org/~asami/errorlogs/3-latest/ > http://bento.freebsd.org/~asami/errorlogs/3-full/ Sorry, I'll look into this as soon as possible! Regards, STefan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 15:52:30 1999 Delivered-To: freebsd-ports@freebsd.org Received: from hp9000.chc-chimes.com (hp9000.chc-chimes.com [206.67.97.84]) by hub.freebsd.org (Postfix) with ESMTP id 6045F14EE2 for ; Sun, 9 May 1999 15:52:27 -0700 (PDT) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA006945108; Sun, 9 May 1999 14:38:28 -0400 Date: Sun, 9 May 1999 14:38:28 -0400 (EDT) From: Bill Fumerola To: Christian Recktenwald Cc: ports@FreeBSD.ORG Subject: Re: packet misc/mshell description In-Reply-To: <19990509192134.A6120@elwood.faveve.uni-stuttgart.de> 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 Sun, 9 May 1999, Christian Recktenwald wrote: > maybe the documentation should be adopted :-) I fixed this, thanks. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.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 Sun May 9 18: 3:48 1999 Delivered-To: freebsd-ports@freebsd.org Received: from y.ml.org (unknown [204.254.69.29]) by hub.freebsd.org (Postfix) with ESMTP id 6DB4F14DF1 for ; Sun, 9 May 1999 18:03:30 -0700 (PDT) (envelope-from lists+freebsd@y.ml.org) Received: (from j@localhost) by y.ml.org (8.9.3-Y/8.9.3) id SAA12021 for freebsd-ports@freebsd.org; Sun, 9 May 1999 18:03:27 -0700 (PDT) (envelope-from lists+freebsd@y.ml.org) Date: Sun, 9 May 1999 18:03:26 -0700 From: "J. Heinrich" To: freebsd-ports@freebsd.org Subject: egcs-1.1.2 port builds but fails to install on 3.1-RELEASE Message-ID: <19990509180323.A12001@y.ml.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org `make' succeeds, but `make install' fails: gmake[2]: Leaving directory `/usr/ports/lang/egcs/work/egcs-1.1.2/i386-unknown-freebsd3.1/libiberty' gmake[1]: Leaving directory `/usr/ports/lang/egcs/work/egcs-1.1.2/i386-unknown-freebsd3.1/libiberty' ===> Generating temporary packing list /usr/libexec/elf/strip: /usr/local/bin/i386-portbld-freebsd3.1-gcc: No such file or directory *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. egcs appears to have been installed in /usr/local/(bin|include|lib). Is this error just the port failing to register the installation? Is there a way to correct this and/or get the port properly installed? I have the `3.1 to 3.1-stable upgrade kit' installed. -- jh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 20:10:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B4DAE150D2 for ; Sun, 9 May 1999 20:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA59983; Sun, 9 May 1999 20:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from blues.ghis.net (as1f-8.wag.interact.net.au [203.37.48.136]) by hub.freebsd.org (Postfix) with ESMTP id CE70C14E5A for ; Sun, 9 May 1999 20:07:48 -0700 (PDT) (envelope-from jim@blues.ghis.net) Received: (from jim@localhost) by blues.ghis.net (8.9.3/8.9.3) id NAA41877; Mon, 10 May 1999 13:07:45 +1000 (EST) Message-Id: <199905100307.NAA41877@blues.ghis.net> Date: Mon, 10 May 1999 13:07:45 +1000 (EST) From: jim@phrantic.phear.net Reply-To: jim@blues.ghis.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11619: new port: asbutton-0.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11619 >Category: ports >Synopsis: new port: asbutton-0.2 >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 May 9 20:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jim Mock >Release: FreeBSD 3.1-RELEASE i386 >Organization: >Environment: >Description: New port of asbutton, a dockapp that displays 4 or 9 buttons to launch apps of your choice (especially useful if you've got a full dock or Wharf). >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: # # asbutton # asbutton/Makefile # asbutton/files # asbutton/files/md5 # asbutton/pkg # asbutton/pkg/DESCR # asbutton/pkg/PLIST # asbutton/pkg/COMMENT # echo c - asbutton mkdir -p asbutton > /dev/null 2>&1 echo x - asbutton/Makefile sed 's/^X//' >asbutton/Makefile << 'END-of-asbutton/Makefile' X# New ports collection makefile for: asbutton X# Version required: 0.2 X# Date created: 10 May 1999 X# Whom: Jim Mock X# X# $Id$ X# X XDISTNAME= asbutton-0.2 XCATEGORIES= misc windowmaker afterstep XMASTER_SITES= http://www.tigr.net/afterstep/as-apps/download/asbutton/ X XMAINTAINER= jim@phrantic.phear.net X XLIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm X XUSE_X_PREFIX= yes X Xdo-build: X (cd ${WRKSRC} && make) X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/asbutton ${PREFIX}/bin X @${ECHO} " " X @${ECHO} "===> Installing icons in ${PREFIX}/share/asbutton" X @${ECHO} " " X @${MKDIR} ${PREFIX}/share/asbutton && chmod a+rx ${PREFIX}/share/asbutton X ${INSTALL_DATA} ${WRKSRC}/icons/*.xpm ${PREFIX}/share/asbutton X Xpost-install: X @${ECHO} " " X @${ECHO} "===> Installing sample asbuttonrc in ${PREFIX}/share/examples/asbutton" X @${ECHO} "===> Copy to ~/.asbuttonrc and modify to desired config." X @${ECHO} " " X @${MKDIR} ${PREFIX}/share/examples/asbutton && chmod a+rx ${PREFIX}/share/examples/asbutton X ${INSTALL_DATA} ${WRKSRC}/.asbuttonrc ${PREFIX}/share/examples/asbutton/asbuttonrc && chmod u+rw ${PREFIX}/share/examples/asbutton/asbuttonrc X @${ECHO} " " X @${ECHO} "===> Use 'asbutton -h' for help." X X.include END-of-asbutton/Makefile echo c - asbutton/files mkdir -p asbutton/files > /dev/null 2>&1 echo x - asbutton/files/md5 sed 's/^X//' >asbutton/files/md5 << 'END-of-asbutton/files/md5' XMD5 (asbutton-0.2.tar.gz) = 70b6ef9037352161dcd8e4b36f7c939e END-of-asbutton/files/md5 echo c - asbutton/pkg mkdir -p asbutton/pkg > /dev/null 2>&1 echo x - asbutton/pkg/DESCR sed 's/^X//' >asbutton/pkg/DESCR << 'END-of-asbutton/pkg/DESCR' XA swallowable applet presents a number of little buttons inside a XWharf or dock icon and each of those starts an application when Xclicked. X XWWW Homepage: http://www.mindspring.com/~pancake/asbutton.htm X X- Jim END-of-asbutton/pkg/DESCR echo x - asbutton/pkg/PLIST sed 's/^X//' >asbutton/pkg/PLIST << 'END-of-asbutton/pkg/PLIST' Xbin/asbutton Xshare/asbutton/asb4-1.xpm Xshare/asbutton/asb4-2.xpm Xshare/asbutton/asb4-3.xpm Xshare/asbutton/asb4-4.xpm Xshare/asbutton/asb4-blank.xpm Xshare/asbutton/asb4-bullethole.xpm Xshare/asbutton/asb4-filingcabinet.xpm Xshare/asbutton/asb4-gear.xpm Xshare/asbutton/asb4-gnu-button-thang.xpm Xshare/asbutton/asb4-gnu-defaultapp.xpm Xshare/asbutton/asb4-gv.xpm Xshare/asbutton/asb4-info.xpm Xshare/asbutton/asb4-info2.xpm Xshare/asbutton/asb4-netscape.xpm Xshare/asbutton/asb4-network.xpm Xshare/asbutton/asb4-package.xpm Xshare/asbutton/asb4-redhat.xpm Xshare/asbutton/asb4-term-bsd.xpm Xshare/asbutton/asb4-term-linux.xpm Xshare/asbutton/asb4-turn.xpm Xshare/asbutton/asb4-wilbur.xpm Xshare/asbutton/asb4-xv.xpm Xshare/asbutton/asb9-1.xpm Xshare/asbutton/asb9-2.xpm Xshare/asbutton/asb9-3.xpm Xshare/asbutton/asb9-4.xpm Xshare/asbutton/asb9-5.xpm Xshare/asbutton/asb9-6.xpm Xshare/asbutton/asb9-7.xpm Xshare/asbutton/asb9-8.xpm Xshare/asbutton/asb9-9.xpm Xshare/asbutton/asb9-blank.xpm Xshare/asbutton/asb9-bullethole.xpm Xshare/asbutton/asb9-filecabinet.xpm Xshare/asbutton/asb9-gear.xpm Xshare/asbutton/asb9-gnu-button-thang.xpm Xshare/asbutton/asb9-gnu-defaultapp.xpm Xshare/asbutton/asb9-gv.xpm Xshare/asbutton/asb9-info.xpm Xshare/asbutton/asb9-info2.xpm Xshare/asbutton/asb9-netscape.xpm Xshare/asbutton/asb9-network.xpm Xshare/asbutton/asb9-package.xpm Xshare/asbutton/asb9-redhat.xpm Xshare/asbutton/asb9-term-bsd.xpm Xshare/asbutton/asb9-term-linux.xpm Xshare/asbutton/asb9-turn.xpm Xshare/asbutton/asb9-wilbur.xpm Xshare/asbutton/asb9-xv.xpm Xshare/examples/asbutton/asbuttonrc X@dirrm share/asbutton X@dirrm share/examples/asbutton END-of-asbutton/pkg/PLIST echo x - asbutton/pkg/COMMENT sed 's/^X//' >asbutton/pkg/COMMENT << 'END-of-asbutton/pkg/COMMENT' XA dockapp that displays 4 or 9 buttons to run apps of your choice. END-of-asbutton/pkg/COMMENT 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 May 9 20:59:47 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2759A1525B; Sun, 9 May 1999 20:59:46 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA63024; Sun, 9 May 1999 20:59:46 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 20:59:46 -0700 (PDT) From: Message-Id: <199905100359.UAA63024@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, kris@FreeBSD.org Subject: Re: ports/11614: Update: net/xwhois Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: net/xwhois Responsible-Changed-From-To: freebsd-ports->kris Responsible-Changed-By: steve Responsible-Changed-When: Sun May 9 20:59:29 PDT 1999 Responsible-Changed-Why: Over to port's maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 21: 0:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DC40F1525B; Sun, 9 May 1999 21:00:09 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA63189; Sun, 9 May 1999 21:00:09 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 21:00:09 -0700 (PDT) From: Message-Id: <199905100400.VAA63189@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, dburr@FreeBSD.org Subject: Re: ports/11612: Fix: editors/AbiWord Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fix: editors/AbiWord Responsible-Changed-From-To: freebsd-ports->dburr Responsible-Changed-By: steve Responsible-Changed-When: Sun May 9 20:59:54 PDT 1999 Responsible-Changed-Why: Over to port's maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 21: 5:23 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CCE89155CD; Sun, 9 May 1999 21:05:21 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA63669; Sun, 9 May 1999 21:05:21 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 21:05:21 -0700 (PDT) From: Message-Id: <199905100405.VAA63669@freefall.freebsd.org> To: pfgiffun@bachue.usc.unal.edu.co, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11606: Unbreaking the w3c-httpd port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Unbreaking the w3c-httpd port State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 21:01:07 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 21: 7:16 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BAEDC15527; Sun, 9 May 1999 21:07:14 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA63963; Sun, 9 May 1999 21:07:14 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 21:07:14 -0700 (PDT) From: Message-Id: <199905100407.VAA63963@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11613: Update: audio/mixer.app Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: audio/mixer.app State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 21:06:19 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 21: 9: 0 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9785115A7A; Sun, 9 May 1999 21:08:42 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA64200; Sun, 9 May 1999 21:08:42 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 21:08:42 -0700 (PDT) From: Message-Id: <199905100408.VAA64200@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11616: Update: x11-clocks/bbdate Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: x11-clocks/bbdate State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 21:07:56 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 21:10:31 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 38183158D1; Sun, 9 May 1999 21:10:17 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA64364; Sun, 9 May 1999 21:10:16 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 9 May 1999 21:10:16 -0700 (PDT) From: Message-Id: <199905100410.VAA64364@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11617: Update: main/bbmail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: main/bbmail State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 9 21:09:47 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 9 22:20: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C8C4414CD3 for ; Sun, 9 May 1999 22:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA68879; Sun, 9 May 1999 22:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from lambic.physics.montana.edu (lambic.physics.montana.edu [153.90.192.128]) by hub.freebsd.org (Postfix) with ESMTP id 31618156EF for ; Sun, 9 May 1999 22:10:54 -0700 (PDT) (envelope-from handy@lambic.physics.montana.edu) Received: (from handy@localhost) by lambic.physics.montana.edu (8.8.8/8.8.7) id XAA22259; Sun, 9 May 1999 23:10:52 -0600 (MDT) (envelope-from handy) Message-Id: <199905100510.XAA22259@lambic.physics.montana.edu> Date: Sun, 9 May 1999 23:10:52 -0600 (MDT) From: handy@montana.edu Reply-To: handy@montana.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11620: XOSview fix: net stats now work Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11620 >Category: ports >Synopsis: XOSview: fix network stats >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 May 9 22:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Brian Handy >Release: FreeBSD 2.2.8-STABLE i386 >Organization: >Environment: Patch tested on a 3.x-STABLE machine. >Description: Network stats fixed, and turned on by default. Relieved myself as MAINTAINER. (I thought someone else relieved me???) Submitted-by: Tom Pavel >How-To-Repeat: >Fix: diff -urN xosview.orig/Makefile xosview/Makefile --- xosview.orig/Makefile Sun May 9 19:16:51 1999 +++ xosview/Makefile Sun May 9 23:05:07 1999 @@ -1,5 +1,5 @@ # New ports collection makefile for: xosview -# Version required: 1.7.0 +# Version required: 1.7.1 # Date created: 19 Nov 1997 # Whom: Brian Handy # @@ -12,7 +12,7 @@ ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= system/status/xstatus -MAINTAINER= handy@physics.montana.edu +MAINTAINER= ports@freebsd.org FETCH_BEFORE_ARGS= -b USE_X_PREFIX= yes diff -urN xosview.orig/patches/patch-ad xosview/patches/patch-ad --- xosview.orig/patches/patch-ad Wed Dec 31 17:00:00 1969 +++ xosview/patches/patch-ad Sun May 9 22:52:02 1999 @@ -0,0 +1,49 @@ +--- bsd/kernel.cc.orig Mon Jan 25 12:34:24 1999 ++++ bsd/kernel.cc Sun May 9 22:51:33 1999 +@@ -306,15 +306,24 @@ + void + BSDGetNetInOut (long long * inbytes, long long * outbytes) { + +-#if (__FreeBSD_version < 300000) //werner May/29/98 quick hack for current + + struct ifnet * ifnetp; + struct ifnet ifnet; + //char ifname[256]; + ++#if (__FreeBSD_version < 300000) //werner May/29/98 quick hack for current ++ + // The "ifnet" symbol in the kernel points to a 'struct ifnet' pointer. + safe_kvm_read (nlst[IFNET_SYM_INDEX].n_value, &ifnetp, sizeof(ifnetp)); + ++#else // FreeBSD > 3.0 ++ ++ struct ifnethead ifnethd; ++ safe_kvm_read (nlst[IFNET_SYM_INDEX].n_value, &ifnethd, sizeof(ifnethd)); ++ ifnetp = ifnethd.tqh_first; ++ ++#endif ++ + *inbytes = 0; + *outbytes = 0; + +@@ -334,7 +343,7 @@ + // Linked-list step taken from if.c in netstat source, line 120. + #ifdef XOSVIEW_FREEBSD + #if (__FreeBSD_version >= 300000) +- ifnetp = (struct ifnet*) ifnet.if_link.tqe_next; ++ ifnetp = ifnet.if_link.tqe_next; + #else + ifnetp = (struct ifnet*) ifnet.if_next; + #endif +@@ -342,11 +351,6 @@ + ifnetp = (struct ifnet*) ifnet.if_list.tqe_next; + #endif + } +- +-#else +- (void) inbytes; +- (void) outbytes; +-#endif //werner + + } + diff -urN xosview.orig/patches/patch-ae xosview/patches/patch-ae --- xosview.orig/patches/patch-ae Wed Dec 31 17:00:00 1969 +++ xosview/patches/patch-ae Sun May 9 23:01:59 1999 @@ -0,0 +1,11 @@ +--- Xdefaults.orig Sun May 9 23:01:45 1999 ++++ Xdefaults Sun May 9 23:01:10 1999 +@@ -94,7 +94,7 @@ + + ! Network Meter Resources + +-xosview*net: False ++xosview*net: True + ! Suitable for people with 28.8Kbaud with no compression, or 14.4 + ! with compression: + !xosview*netBandwidth: 2000 >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 May 10 0:10: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C41815525 for ; Mon, 10 May 1999 00:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA78702; Mon, 10 May 1999 00:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 8C9C914FB5 for ; Mon, 10 May 1999 00:00:19 -0700 (PDT) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 2.12 #1) id 10gk2z-0001kk-00 for FreeBSD-gnats-submit@freebsd.org; Mon, 10 May 1999 09:00:17 +0200 Message-Id: <6741.926319617@axl.noc.iafrica.com> Date: Mon, 10 May 1999 09:00:17 +0200 From: Sheldon Hearn Reply-To: Sheldon Hearn To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11621: [PATCH] Add WWW URL to xzx DESCR Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11621 >Category: ports >Synopsis: [PATCH] Add WWW URL to xzx DESCR >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 May 10 00:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Sheldon Hearn >Release: FreeBSD 4.0-CURRENT i386 >Organization: UUNET South Africa >Environment: FreeBSD 4.0-CURRENT #0: Mon Apr 19 20:00:59 SAST 1999 i386 >Description: The xzx port's DESCR file does not include the package's home page URL. Adding it would make it easier for folks to find snapshots to use in conjunction with the emulator. >How-To-Repeat: N/A >Fix: The following diff adds a home page URL field to the xzx port's package description file. Index: pkg/DESCR =================================================================== RCS file: /home/ncvs/ports/emulators/xzx/pkg/DESCR,v retrieving revision 1.1.1.1 diff -u -d -r1.1.1.1 DESCR --- DESCR 1997/11/13 12:34:25 1.1.1.1 +++ DESCR 1999/05/10 06:55:12 @@ -10,3 +10,5 @@ contrasting colours are displayed with the darker colour in black and the lighter colour in white, which works reasonably well. Halftoning is used if the scaling factor is increased. + +WWW: http://www.philosys.de/~kunze/xzx/ >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 May 10 0:12:59 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 766) id D57CA15BE7; Mon, 10 May 1999 00:12:45 -0700 (PDT) To: sheldonh@uunet.co.za, mharo@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG From: mharo@FreeBSD.ORG Subject: Re: ports/11621 Message-Id: <19990510071245.D57CA15BE7@hub.freebsd.org> Date: Mon, 10 May 1999 00:12:45 -0700 (PDT) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] Add WWW URL to xzx DESCR State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Mon May 10 00:12:34 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 1:10: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C519C156C2 for ; Mon, 10 May 1999 01:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA88117; Mon, 10 May 1999 01:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from dt051nc7.san.rr.com (dt051nc7.san.rr.com [204.210.32.199]) by hub.freebsd.org (Postfix) with ESMTP id 1559515105 for ; Mon, 10 May 1999 01:08:04 -0700 (PDT) (envelope-from doug@dt051nc7.san.rr.com) Received: (from doug@localhost) by dt051nc7.san.rr.com (8.8.8/8.8.8) id BAA04237; Mon, 10 May 1999 01:08:04 -0700 (PDT) (envelope-from doug) Message-Id: <199905100808.BAA04237@dt051nc7.san.rr.com> Date: Mon, 10 May 1999 01:08:04 -0700 (PDT) From: Studded@gorean.org Reply-To: Studded@gorean.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11622: Upgrade mergemaster port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11622 >Category: ports >Synopsis: Upgrade mergemaster 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 May 10 01:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Doug >Release: FreeBSD 2.2.8-RELEASE i386 >Organization: AAAG >Environment: DNA >Description: Upgrade mergemaster port to version 1.24. >How-To-Repeat: DNA >Fix: Apply the following patch: diff -ur mergemaster.old/Makefile mergemaster/Makefile --- mergemaster.old/Makefile Tue Sep 29 14:53:59 1998 +++ mergemaster/Makefile Mon May 10 00:17:21 1999 @@ -1,17 +1,18 @@ # New ports collection makefile for: mergemaster -# Version required: 1.17 +# Version required: 1.24 # Date created: 11 September 1998 -# Whom: Doug +# Whom: Doug Barton # # $Id: Makefile,v 1.3 1998/09/29 21:53:59 alex Exp $ # -DISTNAME= mergemaster-1.17 +DISTNAME= mergemaster-1.24 CATEGORIES= sysutils -MASTER_SITES= ftp://ftp1.dal.net/dalnet/FreeBSD/ \ - ftp://ftp2.dal.net/dalnet/FreeBSD/ +MASTER_SITES= ftp://ftp.dal.net/dalnet/FreeBSD/ \ + http://doug.simplenet.com/FreeBSD/ \ + http://home.san.rr.com/freebsd/ -MAINTAINER= Studded@dal.net +MAINTAINER= Studded@gorean.org NO_WRKSUBDIR= yes NO_BUILD= yes diff -ur mergemaster.old/files/md5 mergemaster/files/md5 --- mergemaster.old/files/md5 Mon Sep 28 02:22:00 1998 +++ mergemaster/files/md5 Mon May 10 00:19:54 1999 @@ -1 +1 @@ -MD5 (mergemaster-1.17.tar.gz) = a7e6d302b9ba253dd6dbdebc87bb1aa6 +MD5 (mergemaster-1.24.tar.gz) = 5a14cea34cdd090ec8fa94c63beb1447 Thanks, Doug >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 May 10 1:17:25 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B667A156FA; Mon, 10 May 1999 01:17:23 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA89085; Mon, 10 May 1999 01:17:23 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Mon, 10 May 1999 01:17:23 -0700 (PDT) From: Message-Id: <199905100817.BAA89085@freefall.freebsd.org> To: Studded@gorean.org, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11622: Upgrade mergemaster port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Upgrade mergemaster port State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Mon May 10 01:17:10 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 1:24: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 0E92A1589C for ; Mon, 10 May 1999 01:24:01 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (d60-077.leach.ucdavis.edu [169.237.60.77]) by relay.nuxi.com (8.9.3/8.9.1) with ESMTP id BAA83743; Mon, 10 May 1999 01:23:56 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id IAA06301; Mon, 10 May 1999 08:23:55 GMT (envelope-from obrien) Date: Mon, 10 May 1999 01:23:55 -0700 From: "David O'Brien" To: "J. Heinrich" Cc: freebsd-ports@freebsd.org Subject: Re: egcs-1.1.2 port builds but fails to install on 3.1-RELEASE Message-ID: <19990510012354.A6280@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <19990509180323.A12001@y.ml.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <19990509180323.A12001@y.ml.org>; from J. Heinrich on Sun, May 09, 1999 at 06:03:26PM -0700 X-Operating-System: FreeBSD 4.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > `make' succeeds, but `make install' fails: > ===> Generating temporary packing list > /usr/libexec/elf/strip: /usr/local/bin/i386-portbld-freebsd3.1-gcc: No such file or directory *** What is the output of find /usr/local/ -name i386-portbld-freebsd3.1-gcc -- -- David (obrien@NUXI.com -or- 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 Mon May 10 2:40:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A1E5414DEA for ; Mon, 10 May 1999 02:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA99735; Mon, 10 May 1999 02:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from asama.kashio.info.mie-u.ac.jp (asama.kashio.info.mie-u.ac.jp [133.67.36.10]) by hub.freebsd.org (Postfix) with ESMTP id 6829014D6E for ; Mon, 10 May 1999 02:33:37 -0700 (PDT) (envelope-from honda@kashio.info.mie-u.ac.jp) Received: from ena.kashio.info.mie-u.ac.jp (ena [133.67.35.144]) by asama.kashio.info.mie-u.ac.jp (8.9.3+3.1W/3.7W) with ESMTP id SAA07945; Mon, 10 May 1999 18:33:33 +0900 (JST) Received: (from honda@localhost) by ena.kashio.info.mie-u.ac.jp (8.8.8/3.6W) id SAA21185; Mon, 10 May 1999 18:33:33 +0900 (JST) Message-Id: <199905100933.SAA21185@ena.kashio.info.mie-u.ac.jp> Date: Mon, 10 May 1999 18:33:33 +0900 (JST) From: HONDA Yasuhiro Reply-To: honda@kashio.info.mie-u.ac.jp To: FreeBSD-gnats-submit@freebsd.org, honda@kashio.info.mie-u.ac.jp X-Send-Pr-Version: 3.2 Subject: ports/11624: update ports/japanese/rxvt 2.6p3 -> 2.6p4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11624 >Category: ports >Synopsis: update ports/japanese/rxvt 2.6p3 to 2.6p4 >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 May 10 02:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: HONDA Yasuhiro >Release: FreeBSD 2.2.8-RELEASE i386 >Organization: Mie University >Environment: FreeBSD 2.2.8-RELEASE i386 >Description: update ports/japanese/rxvt 2.6p3 to 2.6p4 >How-To-Repeat: >Fix: diff -c -r -N rxvt/Makefile rxvt-2.6p4/Makefile *** rxvt/Makefile Sat May 1 11:08:00 1999 --- rxvt-2.6p4/Makefile Mon May 10 17:54:22 1999 *************** *** 1,13 **** # New ports collection Makefile for: rxvt ! # Version required: 2.6PRE3 ! # Date created: 28 April 1999 # Whom: HONDA Yasuhiro # # $Id: Makefile,v 1.8 1999/05/01 02:08:00 steve Exp $ # ! DISTNAME= rxvt-2.6.PRE3 ! PKGNAME= ja-rxvt-2.6p3 CATEGORIES= japanese x11 MASTER_SITES= ftp://ftp.rxvt.org/pub/rxvt/devel/ --- 1,13 ---- # New ports collection Makefile for: rxvt ! # Version required: 2.6PRE4 ! # Date created: 11 May 1999 # Whom: HONDA Yasuhiro # # $Id: Makefile,v 1.8 1999/05/01 02:08:00 steve Exp $ # ! DISTNAME= rxvt-2.6.PRE4 ! PKGNAME= ja-rxvt-2.6p4 CATEGORIES= japanese x11 MASTER_SITES= ftp://ftp.rxvt.org/pub/rxvt/devel/ diff -c -r -N rxvt/files/md5 rxvt-2.6p4/files/md5 *** rxvt/files/md5 Sat May 1 11:08:03 1999 --- rxvt-2.6p4/files/md5 Mon May 10 17:54:50 1999 *************** *** 1 **** ! MD5 (rxvt-2.6.PRE3.tar.gz) = 63094f1ee4338941f65f66b069b3240b --- 1 ---- ! MD5 (rxvt-2.6.PRE4.tar.gz) = 52f5902b6f4905442c087580c9261b80 diff -c -r -N rxvt/patches/patch-aa rxvt-2.6p4/patches/patch-aa *** rxvt/patches/patch-aa Fri Feb 12 14:56:20 1999 --- rxvt-2.6p4/patches/patch-aa Mon May 10 18:01:39 1999 *************** *** 1,5 **** ! *** Makefile.in.orig Fri Jan 29 22:10:45 1999 ! --- Makefile.in Fri Jan 29 22:11:13 1999 *************** *** 9,15 **** first_rule: all --- 1,5 ---- ! *** Makefile.in.orig Mon Mar 29 14:31:37 1999 ! --- Makefile.in Mon May 10 18:00:33 1999 *************** *** 9,15 **** first_rule: all *************** *** 7,13 **** ! subdirs = src doc rclock src/graphics ! DIST = INSTALL README.configure configure Makefile Makefile.in --- 9,15 ---- first_rule: all --- 7,13 ---- ! subdirs = src doc rclock src/graphics ! DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog --- 9,15 ---- first_rule: all *************** *** 15,19 **** ! subdirs = src doc ! DIST = INSTALL README.configure configure Makefile Makefile.in --- 15,19 ---- ! subdirs = src doc ! DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog diff -c -r -N rxvt/patches/patch-ad rxvt-2.6p4/patches/patch-ad *** rxvt/patches/patch-ad Fri Feb 12 14:56:20 1999 --- rxvt-2.6p4/patches/patch-ad Mon May 10 17:56:26 1999 *************** *** 1,7 **** ! *** src/command.c.orig Sun Jan 24 14:39:54 1999 ! --- src/command.c Fri Jan 29 22:57:48 1999 *************** ! *** 289,295 **** ttydev = tty_name; # define PTYCHAR1 "pqrstuvwxyz" --- 1,7 ---- ! *** src/command.c.orig Mon May 10 09:32:21 1999 ! --- src/command.c Mon May 10 17:55:44 1999 *************** ! *** 303,309 **** ttydev = tty_name; # define PTYCHAR1 "pqrstuvwxyz" *************** *** 9,15 **** for (c1 = PTYCHAR1; *c1; c1++) { ptydev[len] = ttydev[len] = *c1; for (c2 = PTYCHAR2; *c2; c2++) { ! --- 289,295 ---- ttydev = tty_name; # define PTYCHAR1 "pqrstuvwxyz" --- 9,15 ---- for (c1 = PTYCHAR1; *c1; c1++) { ptydev[len] = ttydev[len] = *c1; for (c2 = PTYCHAR2; *c2; c2++) { ! --- 303,309 ---- ttydev = tty_name; # define PTYCHAR1 "pqrstuvwxyz" diff -c -r -N rxvt/patches/patch-aj rxvt-2.6p4/patches/patch-aj *** rxvt/patches/patch-aj Fri Feb 12 14:56:20 1999 --- rxvt-2.6p4/patches/patch-aj Mon May 10 17:57:05 1999 *************** *** 1,5 **** ! *** src/feature.h.orig Fri Jan 22 21:25:16 1999 ! --- src/feature.h Sat Jan 30 00:48:14 1999 *************** *** 153,159 **** * This has been superceded and is only for you older users --- 1,5 ---- ! *** src/feature.h.orig Sun Mar 28 16:36:48 1999 ! --- src/feature.h Mon May 10 17:56:35 1999 *************** *** 153,159 **** * This has been superceded and is only for you older users *************** *** 18,24 **** /* * To use *************** ! *** 351,358 **** #ifdef KANJI # define NFONTS 5 # define FONT0_IDX 2 --- 18,24 ---- /* * To use *************** ! *** 359,366 **** #ifdef KANJI # define NFONTS 5 # define FONT0_IDX 2 *************** *** 27,33 **** #else # ifdef ZH # define NFONTS 5 ! --- 351,358 ---- #ifdef KANJI # define NFONTS 5 # define FONT0_IDX 2 --- 27,33 ---- #else # ifdef ZH # define NFONTS 5 ! --- 359,366 ---- #ifdef KANJI # define NFONTS 5 # define FONT0_IDX 2 diff -c -r -N rxvt/patches/z-patch-aa rxvt-2.6p4/patches/z-patch-aa *** rxvt/patches/z-patch-aa Thu Jan 1 09:00:00 1970 --- rxvt-2.6p4/patches/z-patch-aa Fri Feb 12 14:56:20 1999 *************** *** 0 **** --- 1,19 ---- + *** Makefile.in.orig Fri Jan 29 22:10:45 1999 + --- Makefile.in Fri Jan 29 22:11:13 1999 + *************** + *** 9,15 **** + first_rule: all + dummy: + + ! subdirs = src doc rclock src/graphics + + DIST = INSTALL README.configure configure Makefile Makefile.in + + --- 9,15 ---- + first_rule: all + dummy: + + ! subdirs = src doc + + DIST = INSTALL README.configure configure Makefile Makefile.in + diff -c -r -N rxvt/patches/z-patch-ad rxvt-2.6p4/patches/z-patch-ad *** rxvt/patches/z-patch-ad Thu Jan 1 09:00:00 1970 --- rxvt-2.6p4/patches/z-patch-ad Fri Feb 12 14:56:20 1999 *************** *** 0 **** --- 1,19 ---- + *** src/command.c.orig Sun Jan 24 14:39:54 1999 + --- src/command.c Fri Jan 29 22:57:48 1999 + *************** + *** 289,295 **** + ttydev = tty_name; + + # define PTYCHAR1 "pqrstuvwxyz" + ! # define PTYCHAR2 "0123456789abcdef" + for (c1 = PTYCHAR1; *c1; c1++) { + ptydev[len] = ttydev[len] = *c1; + for (c2 = PTYCHAR2; *c2; c2++) { + --- 289,295 ---- + ttydev = tty_name; + + # define PTYCHAR1 "pqrstuvwxyz" + ! # define PTYCHAR2 "0123456789abcdefghijklmnopqrstuv" + for (c1 = PTYCHAR1; *c1; c1++) { + ptydev[len] = ttydev[len] = *c1; + for (c2 = PTYCHAR2; *c2; c2++) { diff -c -r -N rxvt/patches/z-patch-aj rxvt-2.6p4/patches/z-patch-aj *** rxvt/patches/z-patch-aj Thu Jan 1 09:00:00 1970 --- rxvt-2.6p4/patches/z-patch-aj Fri Feb 12 14:56:20 1999 *************** *** 0 **** --- 1,38 ---- + *** src/feature.h.orig Fri Jan 22 21:25:16 1999 + --- src/feature.h Sat Jan 30 00:48:14 1999 + *************** + *** 153,159 **** + * This has been superceded and is only for you older users + */ + /* #define HOTKEY_CTRL */ + ! /* #define HOTKEY_META */ + + /* + * To use + --- 153,159 ---- + * This has been superceded and is only for you older users + */ + /* #define HOTKEY_CTRL */ + ! #define HOTKEY_META + + /* + * To use + *************** + *** 351,358 **** + #ifdef KANJI + # define NFONTS 5 + # define FONT0_IDX 2 + ! # define MFONT_LIST "k14", "jiskan16", "jiskan18", "jiskan24", "jiskan26" + ! # define NFONT_LIST "7x14", "8x16", "9x18", "12x24", "13x26" + #else + # ifdef ZH + # define NFONTS 5 + --- 351,358 ---- + #ifdef KANJI + # define NFONTS 5 + # define FONT0_IDX 2 + ! # define MFONT_LIST "k14", "k10", "k12", "kanji16", "kanji24" + ! # define NFONT_LIST "7x14", "a10", "r12", "8x16", "12x24" + #else + # ifdef ZH + # define NFONTS 5 diff -c -r -N rxvt/pkg/DESCR rxvt-2.6p4/pkg/DESCR *** rxvt/pkg/DESCR Fri May 7 14:01:41 1999 --- rxvt-2.6p4/pkg/DESCR Mon May 10 18:03:49 1999 *************** *** 8,11 **** http://www.nobutaka.com/programs/rxvt.html Documents are at /usr/X11R6/share/doc/ja/rxvt/. ! WWW: http://babayaga.math.fu-berlin.de/rxvt/ --- 8,11 ---- http://www.nobutaka.com/programs/rxvt.html Documents are at /usr/X11R6/share/doc/ja/rxvt/. ! WWW: http://www.rxvt.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 Mon May 10 3:40: 2 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4F70B152D3 for ; Mon, 10 May 1999 03:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA07776; Mon, 10 May 1999 03:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id C8D01150F2; Mon, 10 May 1999 03:35:00 -0700 (PDT) Message-Id: <19990510103500.C8D01150F2@hub.freebsd.org> Date: Mon, 10 May 1999 03:35:00 -0700 (PDT) From: davidyu@ken.csie.ntu.edu.tw To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11625: Update ports/chinese/aterm to 0.3.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11625 >Category: ports >Synopsis: Update ports/chinese/aterm to 0.3.5 >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 May 10 03:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chia-Hsing Yu >Release: 4.0-CURRENT >Organization: NTU CSIE >Environment: FreeBSD stego.csie.ntu.edu.tw 4.0-CURRENT FreeBSD 4.0-CURRENT #2: Fri May 7 16:02:13 CST 1999 root@stego.csie.ntu.edu.tw:/usr/src/sys/compile/SERVER i386 >Description: Update ports/chinese/aterm from 0.3.4 to 0.3.5 >How-To-Repeat: >Fix: please fetch the port from http://ken.csie.ntu.edu.tw/~davidyu/zh-aterm-0.3.5-port.tar.gz >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 May 10 4:48:57 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B8B6014F6F; Mon, 10 May 1999 04:48:56 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA16711; Mon, 10 May 1999 04:48:56 -0700 (PDT) (envelope-from sada@FreeBSD.org) Date: Mon, 10 May 1999 04:48:56 -0700 (PDT) From: Message-Id: <199905101148.EAA16711@freefall.freebsd.org> To: yoshiaki@kt.rim.or.jp, sada@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11604: new version port, Mikmod (audio) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new version port, Mikmod (audio) State-Changed-From-To: closed->open State-Changed-By: sada State-Changed-When: Mon May 10 04:47:38 PDT 1999 State-Changed-Why: This is upgrade request from the maintainer. Please keep open > mharo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 4:50: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CA64D14F6F; Mon, 10 May 1999 04:50:08 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA17047; Mon, 10 May 1999 04:50:08 -0700 (PDT) (envelope-from sada@FreeBSD.org) Date: Mon, 10 May 1999 04:50:08 -0700 (PDT) From: Message-Id: <199905101150.EAA17047@freefall.freebsd.org> To: yoshiaki@kt.rim.or.jp, sada@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11605: This is port for libmikmod. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: This is port for libmikmod. State-Changed-From-To: closed->open State-Changed-By: sada State-Changed-When: Mon May 10 04:49:06 PDT 1999 State-Changed-Why: This is needed for new version mikmod port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 5:13:48 1999 Delivered-To: freebsd-ports@freebsd.org Received: from gandalf.telecom.at (gandalf.telecom.at [194.118.26.84]) by hub.freebsd.org (Postfix) with ESMTP id 7680C14E4E; Mon, 10 May 1999 05:13:38 -0700 (PDT) (envelope-from Markus.Minihold@telecom.at) Received: from lergontr.server.lan.at (lergonrsm.server.lan.at [10.3.101.84]) by gandalf.telecom.at (xxx/xxx) with ESMTP id OAA106820; Mon, 10 May 1999 14:13:34 +0200 Received: from rtrsco.bahq.co.at (rtrsco.bahq.co.at [10.1.1.180]) by lergontr.server.lan.at (8.9.1/8.9.1) with SMTP id OAA53066; Mon, 10 May 1999 14:09:46 +0200 Message-ID: <3736CB25.6F31968A@telecom.at> Date: Mon, 10 May 1999 14:03:49 +0200 From: Markus Minihold X-Mailer: Mozilla 3.01Gold (X11; I; Linux 2.0.30 i486) MIME-Version: 1.0 To: obrien@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: gv-3.5.8 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 following problem, compiling the gv package on my FreeBSD 3.1 system. Where is xmkmf included? package mkmf has been installed. A symlink to mkmf is not working. Could you please give me some advice, how to compile the package. Thanx in advance, greetings, Markus # make ===> Extracting for gv-3.5.8 >> Checksum OK for gv-3.5.8.tar.gz. ===> gv-3.5.8 depends on shared library: Xaw3d.6 - found ===> gv-3.5.8 depends on shared library: X11.6 - found ===> Patching for gv-3.5.8 ===> Applying FreeBSD patches for gv-3.5.8 ===> Configuring for gv-3.5.8 xmkmf: not found *** Error code 127 -- ----------------------------------------------------------------------- Markus Minihold Tel: +43-1-21717-56108 P.O. Box 50.000 Fax: +43-1-21717-51222 1011 Vienna Email: Markus.Minihold@telecom.at Austria ************************************************************* You can still escape from the GATES of hell ----------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 6:53:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from y.ml.org (unknown [204.254.69.29]) by hub.freebsd.org (Postfix) with ESMTP id 0B9E814CBB; Mon, 10 May 1999 06:52:58 -0700 (PDT) (envelope-from lists+freebsd@y.ml.org) Received: (from j@localhost) by y.ml.org (8.9.3-Y/8.9.3) id GAA13469; Mon, 10 May 1999 06:52:52 -0700 (PDT) (envelope-from lists+freebsd@y.ml.org) Date: Mon, 10 May 1999 06:52:46 -0700 From: "J. Heinrich" To: "David O'Brien" Cc: freebsd-ports@freebsd.org Subject: Re: egcs-1.1.2 port builds but fails to install on 3.1-RELEASE Message-ID: <19990510065243.A13455@y.ml.org> References: <19990509180323.A12001@y.ml.org> <19990510012354.A6280@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.5i In-Reply-To: <19990510012354.A6280@dragon.nuxi.com>; from David O'Brien on Mon, May 10, 1999 at 01:23:55AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, May 10, 1999 at 01:23:55AM -0700, David O'Brien wrote: > What is the output of > > find /usr/local/ -name i386-portbld-freebsd3.1-gcc Nothing (not found). There is however, a `i386-unknown-freebsd3.1-gcc': -rwxr-xr-x 2 root wheel 64924 May 2 22:14 /usr/local/bin/i386-unknown-freebsd3.1-gcc* > -- > -- David (obrien@NUXI.com -or- obrien@FreeBSD.org) -- jh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 7:47:59 1999 Delivered-To: freebsd-ports@freebsd.org Received: from lambic.physics.montana.edu (lambic.physics.montana.edu [153.90.192.128]) by hub.freebsd.org (Postfix) with ESMTP id 0210715153; Mon, 10 May 1999 07:47:56 -0700 (PDT) (envelope-from handy@lambic.physics.montana.edu) Received: from localhost (handy@localhost) by lambic.physics.montana.edu (8.8.8/8.8.7) with ESMTP id IAA24006; Mon, 10 May 1999 08:47:45 -0600 (MDT) (envelope-from handy@lambic.physics.montana.edu) Date: Mon, 10 May 1999 08:47:45 -0600 (MDT) From: Brian Handy To: Markus Minihold Cc: obrien@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: gv-3.5.8 In-Reply-To: <3736CB25.6F31968A@telecom.at> Message-ID: X-files: The truth is out there MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Markus, >I have following problem, compiling the gv package on my FreeBSD 3.1 >system. Where is xmkmf included? package mkmf has been installed. A >symlink to mkmf is not working. >Could you please give me some advice, how to compile the package. Could it be that /usr/X11R6/bin isn't in your PATH? spurned [44]->which xmkmf /usr/X11R6/bin/xmkmf This is all I can think of right off. Check your PATH variable and make sure this binary is there (though I'll be surprised if it isn't) Regards, Brian ># make >===> Extracting for gv-3.5.8 >>> Checksum OK for gv-3.5.8.tar.gz. >===> gv-3.5.8 depends on shared library: Xaw3d.6 - found >===> gv-3.5.8 depends on shared library: X11.6 - found >===> Patching for gv-3.5.8 >===> Applying FreeBSD patches for gv-3.5.8 >===> Configuring for gv-3.5.8 >xmkmf: not found >*** Error code 127 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 8:40: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CFCC315830 for ; Mon, 10 May 1999 08:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA08018; Mon, 10 May 1999 08:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mx.seanet.com (dns2.seanet.com [199.181.164.2]) by hub.freebsd.org (Postfix) with ESMTP id 6EDB514BDA for ; Mon, 10 May 1999 08:38:36 -0700 (PDT) (envelope-from sab@c2-sab.seanet.com) Received: from c2-sab.seanet.com (c2-sab.seanet.com [204.182.113.50]) by mx.seanet.com (8.9.3/Seanet-8.7.3) with ESMTP id IAA08235 for ; Mon, 10 May 1999 08:38:28 -0700 (PDT) Received: (from scott@localhost) by c2-sab.seanet.com (8.8.5/8.6.12) id IAA22440; Mon, 10 May 1999 08:30:23 -0700 (PDT) Message-Id: <199905101530.IAA22440@c2-sab.seanet.com> Date: Mon, 10 May 1999 08:30:23 -0700 (PDT) From: Scott.Blachowicz@seaslug.org Reply-To: Scott.Blachowicz@seaslug.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11628: mail/nmh MASTER_SITES update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11628 >Category: ports >Synopsis: distribution site for nmh is changing >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 May 10 08:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Scott Blachowicz >Release: FreeBSD 2.2.2-RELEASE i386 >Organization: none >Environment: >Description: The old nmh distribution site will become invalid within the next few weeks or so. The MASTER_SITES setting in the port Makefile needs updating. >How-To-Repeat: >Fix: Apply patch to port: diff -ur ../nmh-curr/Makefile ./Makefile --- ../nmh-curr/Makefile Tue Feb 23 02:01:59 1999 +++ ./Makefile Mon May 10 08:16:23 1999 @@ -31,7 +31,7 @@ DISTNAME= nmh-1.0 CATEGORIES= mail -MASTER_SITES= ftp://ftp.math.gatech.edu/pub/nmh/ \ +MASTER_SITES= ftp://ftp.mhost.com/pub/nmh/ \ http://www.freebsd.org/~jkoshy/PORTS/ MAINTAINER= Scott.Blachowicz@seaslug.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 Mon May 10 9: 9: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A44A14BCD; Mon, 10 May 1999 09:09:05 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA12561; Mon, 10 May 1999 09:09:06 -0700 (PDT) (envelope-from sada@FreeBSD.org) Date: Mon, 10 May 1999 09:09:06 -0700 (PDT) From: Message-Id: <199905101609.JAA12561@freefall.freebsd.org> To: yoshiaki@kt.rim.or.jp, sada@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11604: new version port, Mikmod (audio) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new version port, Mikmod (audio) State-Changed-From-To: open->closed State-Changed-By: sada State-Changed-When: Mon May 10 09:07:45 PDT 1999 State-Changed-Why: Requested by the maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 9:10:21 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 86B70151BE; Mon, 10 May 1999 09:10:20 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA12848; Mon, 10 May 1999 09:10:21 -0700 (PDT) (envelope-from sada@FreeBSD.org) Date: Mon, 10 May 1999 09:10:21 -0700 (PDT) From: Message-Id: <199905101610.JAA12848@freefall.freebsd.org> To: yoshiaki@kt.rim.or.jp, sada@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11605: This is port for libmikmod. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: This is port for libmikmod. State-Changed-From-To: open->closed State-Changed-By: sada State-Changed-When: Mon May 10 09:09:18 PDT 1999 State-Changed-Why: Requested by the submitter. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 9:22:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4CC9515610; Mon, 10 May 1999 09:22:09 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Received: (from flathill@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA14305; Mon, 10 May 1999 09:22:08 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Date: Mon, 10 May 1999 09:22:08 -0700 (PDT) From: Message-Id: <199905101622.JAA14305@freefall.freebsd.org> To: davidyu@ken.csie.ntu.edu.tw, flathill@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11625: Update ports/chinese/aterm to 0.3.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update ports/chinese/aterm to 0.3.5 State-Changed-From-To: open->closed State-Changed-By: flathill State-Changed-When: Mon May 10 09:20:12 PDT 1999 State-Changed-Why: Committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 9:27:41 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8602B157B8; Mon, 10 May 1999 09:27:40 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Received: (from flathill@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA14981; Mon, 10 May 1999 09:27:40 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Date: Mon, 10 May 1999 09:27:40 -0700 (PDT) From: Message-Id: <199905101627.JAA14981@freefall.freebsd.org> To: honda@kashio.info.mie-u.ac.jp, flathill@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11624: update ports/japanese/rxvt 2.6p3 to 2.6p4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update ports/japanese/rxvt 2.6p3 to 2.6p4 State-Changed-From-To: open->closed State-Changed-By: flathill State-Changed-When: Mon May 10 09:26:25 PDT 1999 State-Changed-Why: Committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 9:34:21 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F26F8158EC; Mon, 10 May 1999 09:34:05 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Received: (from flathill@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA15804; Mon, 10 May 1999 09:34:06 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Date: Mon, 10 May 1999 09:34:06 -0700 (PDT) From: Message-Id: <199905101634.JAA15804@freefall.freebsd.org> To: handy@montana.edu, flathill@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11620: XOSview: fix network stats Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: XOSview: fix network stats State-Changed-From-To: open->closed State-Changed-By: flathill State-Changed-When: Mon May 10 09:33:37 PDT 1999 State-Changed-Why: Committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 9:56:18 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mail.siol.net (odin.siol.net [193.189.160.10]) by hub.freebsd.org (Postfix) with ESMTP id 5155F150CB for ; Mon, 10 May 1999 09:56:11 -0700 (PDT) (envelope-from tomaz.borstnar@over.net) Received: from hang ([212.30.66.151]) by mail.siol.net (Post.Office MTA v3.5.3 release 223 ID# 620-58654U60000L60000S0V35) with ESMTP id net for ; Mon, 10 May 1999 18:56:08 +0200 Message-Id: <4.2.0.37.19990510175218.00c20580@193.189.189.100> X-Sender: tmail@193.189.189.100 X-Mailer: QUALCOMM Windows Eudora Pro Version 4.2.0.37 (Beta) Date: Mon, 10 May 1999 17:54:17 +0200 To: freebsd-ports@FreeBSD.ORG From: Tomaz Borstnar Subject: textproc/htdig - 3.1.1 in ports can easily be changed to 3.1.2, because of just bugfixes in 3.1.2 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 Hello! Feel free to raise textproc/htdig's version from 3.1.1 to 3.1.2. All that is needed is new version and new MD5 sum. Should I submit patch next time? Tomaz ---- Tomaz Borstnar "Love is the answer to the final question you ask" - Unknown To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 10:28:50 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A157714F68; Mon, 10 May 1999 10:28:49 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Received: (from flathill@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA23033; Mon, 10 May 1999 10:28:49 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Date: Mon, 10 May 1999 10:28:49 -0700 (PDT) From: Message-Id: <199905101728.KAA23033@freefall.freebsd.org> To: jim@blues.ghis.net, flathill@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11619: new port: asbutton-0.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: asbutton-0.2 State-Changed-From-To: open->closed State-Changed-By: flathill State-Changed-When: Mon May 10 10:27:08 PDT 1999 State-Changed-Why: Committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 10:30:45 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 45D9014C21; Mon, 10 May 1999 10:30:43 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Received: (from flathill@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA23519; Mon, 10 May 1999 10:30:43 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Date: Mon, 10 May 1999 10:30:43 -0700 (PDT) From: Message-Id: <199905101730.KAA23519@freefall.freebsd.org> To: stanaka@bb.mbn.or.jp, flathill@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11579: New port : japanese/libjcode Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port : japanese/libjcode State-Changed-From-To: open->closed State-Changed-By: flathill State-Changed-When: Mon May 10 10:30:22 PDT 1999 State-Changed-Why: Committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 10:47:26 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C9C015915; Mon, 10 May 1999 10:47:10 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Received: (from flathill@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA26052; Mon, 10 May 1999 10:47:09 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Date: Mon, 10 May 1999 10:47:09 -0700 (PDT) From: Message-Id: <199905101747.KAA26052@freefall.freebsd.org> To: Scott.Blachowicz@seaslug.org, flathill@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11628: distribution site for nmh is changing Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: distribution site for nmh is changing State-Changed-From-To: open->closed State-Changed-By: flathill State-Changed-When: Mon May 10 10:46:51 PDT 1999 State-Changed-Why: Committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 11: 0:24 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 924B415A73 for ; Mon, 10 May 1999 11:00:15 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA27488 for freebsd-ports@freebsd.org; Mon, 10 May 1999 11:00:14 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 10 May 1999 11:00:14 -0700 (PDT) Message-Id: <199905101800.LAA27488@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 [1999/04/27] ports/11359ports rvplayer 5.0 (Linux) cases ncr PCI SCSI d 1 problem total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1998/09/19] ports/7987 ports Can't post news with TRN + NNTPCACHE o [1999/03/07] ports/10480ports tk81 will not *compile* with threaded app o [1999/03/18] ports/10665ports ports/graphics/sane needs access to /dev/ o [1999/03/19] ports/10681ports lessitf can't find X11 Revision 5 or high o [1999/04/04] ports/10943ports "ports/print/teTeX-beta# make install" fa f [1999/04/07] ports/11003ports wmcdplay is not capable of playing an AUD o [1999/05/03] ports/11465ports The port chipmunk will not run. o [1999/05/05] ports/11521ports Broken openssl port & Apache 1.3.6 o [1999/05/06] ports/11535ports Problems with cyrillic support. 9 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1998/05/19] ports/6699 ports New port: the Generic NQS system o [1998/09/19] ports/7992 ports New port: xemacs20-stepwise (XEmacs20 hac a [1998/11/25] ports/8864 ports useradd - system V compatible implementat o [1999/01/07] docs/9375 ports Information on how to build PLIST automat a [1999/01/24] ports/9657 ports Progressive Networks' RealAudio proxy por o [1999/01/31] ports/9851 ports Port update: update R to 0.63.2 o [1999/02/02] ports/9884 ports samba does not allow "joes" (username+pas o [1999/02/07] ports/9954 ports new port devel/ACE o [1999/02/10] ports/10007ports Port of the mercury compiler version 0.8 o [1999/02/14] ports/10093ports Upgrade GNAT to 3.11p and fix for ELF o [1999/02/15] ports/10103ports revision of port of plugger-3.0 o [1999/02/16] ports/10124ports UNIX|STAT pr submission failed to include o [1999/03/03] ports/10377ports `make' in ports does not honor {f,ht}tp_p o [1999/03/04] ports/10389ports Create new port mod_jserv and JSDK 2.0 o [1999/03/07] ports/10469ports new port: linux-netcape-communicator-4.51 o [1999/03/07] ports/10477ports The fakemail in lib-src fails to link (ne o [1999/03/10] ports/10532ports Port of GNU Pascal o [1999/03/14] ports/10592ports New ports: japanese/exmh2 (ja-exmh-2.0.2) o [1999/03/16] ports/10634ports Update the hylafax port to do a client in f [1999/03/20] ports/10702ports Add NCD audio support for emiclock ports f [1999/03/21] ports/10707ports [ADD] port for doxygen o [1999/03/26] ports/10813ports crossgo32 brokeness f [1999/03/28] ports/10844ports New port: adagdb o [1999/03/30] ports/10874ports [PATCH] html2ps doesn't handle `file:/... o [1999/04/02] ports/10916ports new port biology/molmol again o [1999/04/05] ports/10961ports gzipped manpages and .so macro in ports o [1999/04/08] ports/11029ports Configure scripts for non ported applicat o [1999/04/08] ports/11034ports New ports of crazywwwboardle o [1999/04/10] ports/11072ports Port of remote printing utilities added o [1999/04/11] ports/11086ports Updating AStyle port o [1999/04/13] ports/11127ports New port: Giram o [1999/04/17] ports/11183ports new port: x11/enlightenment-conf-0.15 o [1999/04/20] ports/11250ports PORTS: upgrade lesstif to 0.88.1 o [1999/04/21] ports/11267ports [New port] textproc/fconv (the return) o [1999/04/24] ports/11304ports New port syncal-0.5, syncing of ical and o [1999/04/25] ports/11319ports Netscape4-navigator wasn't FORTIFY'ing o [1999/05/03] ports/11468ports New port: xcin-devel o [1999/05/04] ports/11486ports New port: gedit-0.5.1 o [1999/05/05] ports/11512ports new port: x11-toolkits/wxGTK o [1999/05/05] ports/11520ports Freewais port does not respect ${PREFIX} o [1999/05/08] ports/11580ports New port :japanese/gtkicq o [1999/05/08] ports/11587ports inappropriate internet time calculation o [1999/05/08] ports/11599ports New port: japanese/xdvik-vflib o [1999/05/09] ports/11600ports New port: phalanx-21 o [1999/05/09] ports/11601ports new port: ifmail-os-2.14.5 o [1999/05/09] ports/11602ports new port: gup-0.4 o [1999/05/09] ports/11603ports New port: dbview-1.0.3 o [1999/05/09] ports/11610ports New ports : net/coda5_doc 48 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 May 10 15:50:42 1999 Delivered-To: freebsd-ports@freebsd.org Received: from voyager.fisicc-ufm.edu (unknown [209.198.197.197]) by hub.freebsd.org (Postfix) with ESMTP id 0B32D15512 for ; Mon, 10 May 1999 15:49:53 -0700 (PDT) (envelope-from obonilla@voyager.fisicc-ufm.edu) Received: (from obonilla@localhost) by voyager.fisicc-ufm.edu (8.9.3/8.9.3) id QAA06937; Mon, 10 May 1999 16:48:50 -0600 (CST) (envelope-from obonilla) Date: Mon, 10 May 1999 16:48:50 -0600 From: Oscar Bonilla To: "David O'Brien" Cc: ports@FreeBSD.ORG Subject: Re: where should dos2unix type utils go? Message-ID: <19990510164850.A699@fisicc-ufm.edu> References: <19990508190144.A85343@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <19990508190144.A85343@dragon.nuxi.com>; from David O'Brien on Sat, May 08, 1999 at 07:01:44PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, May 08, 1999 at 07:01:44PM -0700, David O'Brien wrote: > we have textproc/tuc and converters/unix2dos I was expecting them to be on the base system :) -Oscar > > -- > -- David (obrien@NUXI.com -or- obrien@FreeBSD.org) > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 15:53:31 1999 Delivered-To: freebsd-ports@freebsd.org Received: from hp9000.chc-chimes.com (hp9000.chc-chimes.com [206.67.97.84]) by hub.freebsd.org (Postfix) with ESMTP id 96BA515183 for ; Mon, 10 May 1999 15:53:24 -0700 (PDT) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA201081524; Mon, 10 May 1999 14:38:44 -0400 Date: Mon, 10 May 1999 14:38:44 -0400 (EDT) From: Bill Fumerola To: Oscar Bonilla Cc: David O'Brien , ports@FreeBSD.ORG Subject: Re: where should dos2unix type utils go? In-Reply-To: <19990510164850.A699@fisicc-ufm.edu> 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 Mon, 10 May 1999, Oscar Bonilla wrote: > I was expecting them to be on the base system :) It is. tr(1), sed(1), and perl(1). - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.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 Mon May 10 16: 6:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from voyager.fisicc-ufm.edu (unknown [209.198.197.197]) by hub.freebsd.org (Postfix) with ESMTP id F301E14C9A for ; Mon, 10 May 1999 16:05:37 -0700 (PDT) (envelope-from obonilla@voyager.fisicc-ufm.edu) Received: (from obonilla@localhost) by voyager.fisicc-ufm.edu (8.9.3/8.9.3) id RAA07009; Mon, 10 May 1999 17:03:52 -0600 (CST) (envelope-from obonilla) Date: Mon, 10 May 1999 17:03:52 -0600 From: Oscar Bonilla To: Bill Fumerola Cc: Oscar Bonilla , "David O'Brien" , ports@FreeBSD.ORG Subject: Re: where should dos2unix type utils go? Message-ID: <19990510170351.B699@fisicc-ufm.edu> References: <19990510164850.A699@fisicc-ufm.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: ; from Bill Fumerola on Mon, May 10, 1999 at 02:38:44PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, May 10, 1999 at 02:38:44PM -0400, Bill Fumerola wrote: > On Mon, 10 May 1999, Oscar Bonilla wrote: > > > I was expecting them to be on the base system :) > > It is. tr(1), sed(1), and perl(1). > yeah, we had a loooong chat in -questions about this. the case was this: in bsdi you have bsd2dos and dos2bsd, in solaris you have dos2unix and unix2dos and so on, so people accustomed to those systems expect to find stuff like that in freebsd. i know that converting a file from cr/lf to lf and vice-versa can be accomplished in at least 10 ways, but if you're converting multiple files it's nice to have a command that supports metacharacter expansions (unlike the perl thing that's in the faq). those programs are sooooo trivial i don't see why they can't be included in the base system. regards, -Oscar To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 18: 0:13 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BDE315D6C for ; Mon, 10 May 1999 18:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA02009; Mon, 10 May 1999 18:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from asama.kashio.info.mie-u.ac.jp (asama.kashio.info.mie-u.ac.jp [133.67.36.10]) by hub.freebsd.org (Postfix) with ESMTP id C69EF14C89 for ; Mon, 10 May 1999 17:50:54 -0700 (PDT) (envelope-from honda@kashio.info.mie-u.ac.jp) Received: from ena.kashio.info.mie-u.ac.jp (ena [133.67.35.144]) by asama.kashio.info.mie-u.ac.jp (8.9.3+3.1W/3.7W) with ESMTP id JAA10370; Tue, 11 May 1999 09:26:07 +0900 (JST) Received: (from honda@localhost) by ena.kashio.info.mie-u.ac.jp (8.8.8/3.6W) id JAA24517; Tue, 11 May 1999 09:26:06 +0900 (JST) Message-Id: <199905110026.JAA24517@ena.kashio.info.mie-u.ac.jp> Date: Tue, 11 May 1999 09:26:06 +0900 (JST) From: HONDA Yasuhiro Reply-To: honda@kashio.info.mie-u.ac.jp To: FreeBSD-gnats-submit@freebsd.org, honda@kashio.info.mie-u.ac.jp X-Send-Pr-Version: 3.2 Subject: ports/11630: remove some files of ports/japanese/rxvt Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11630 >Category: ports >Synopsis: remove some files of ports/japanese/rxvt >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 May 10 18:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: HONDA Yasuhiro >Release: FreeBSD 2.2.8-RELEASE i386 >Organization: Mie University >Environment: FreeBSD 2.2.8-RELEASE i386 >Description: ports/japanese/rxvt/patches/z-patch-* is garbage and should be removed. It's my mistake, sorry. >How-To-Repeat: >Fix: remove ports/japanese/rxvt/patches/z-patch-a{a,d,j} >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 May 10 18:27:40 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2ACC71553E; Mon, 10 May 1999 18:27:39 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Received: (from flathill@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA04127; Mon, 10 May 1999 18:27:38 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Date: Mon, 10 May 1999 18:27:38 -0700 (PDT) From: Message-Id: <199905110127.SAA04127@freefall.freebsd.org> To: ijliao@Terry.Dorm10.NCTU.edu.tw, flathill@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11610: New ports : net/coda5_doc Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New ports : net/coda5_doc State-Changed-From-To: open->closed State-Changed-By: flathill State-Changed-When: Mon May 10 18:27:20 PDT 1999 State-Changed-Why: Committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 18:30: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CCD1D14C87 for ; Mon, 10 May 1999 18:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA04230; Mon, 10 May 1999 18:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 1408A14EF2; Mon, 10 May 1999 18:21:16 -0700 (PDT) Message-Id: <19990511012116.1408A14EF2@hub.freebsd.org> Date: Mon, 10 May 1999 18:21:16 -0700 (PDT) From: ichiro@ichiro.org To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11632: fix ports japanese/gd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11632 >Category: ports >Synopsis: fix ports japanese/gd >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 May 10 18:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ichiro Fukuhara >Release: >Organization: IMASY >Environment: >Description: begin 664 gd.tar.gz M'XL(`,V$-S<``^T:?U/;R*[_VI]",Z4SY8+M.+\HZ?&&E`0N;0A,DBLW;]X, MX]CK9(OM]=D.@>OPW9^T=AP#Z7%SK]"^G@6QU[NRI)6TVM5Z9XYQ8ETREWOL MQ5.!6:VV&@UX`6#N-JMT1]C-[@"UYFX5H+5KXKU6;6#9-.O-W1=0?3*)"K"( M$RL">,'M.8_$E_&F/'@.<9X;7L*0+2$441*#+3R/V0D7`?B93X`KHK8R<]27 M\)%%,35%[/<%CYC35A3%U.N52ROXQ/702NPY8G6MA($=,;Q)#,7<@\YB!N;> MWAML/I\+7U8KJ;X/TILNHIGZ$MNW^DX;5@ZY?3A.'S]9VLS1J.JP,^D=GX[ZO3'5 MAE;`8@:SR`KGW([5D\YXTAM=C/L3:I\G2=@VC.5RJ4_%(F&>I]O"-V:.02T& M_$=5%%>BX/4.2KB8&MDSH:OJ66=R^,L]NN%,MP..^/JGT#CN&BG247]`.+(# M>D&IFLNO37WV1T:*NGHQGHSZ9_O*2V!^F-RH*'Y_.,%?;[2_0;'JNU_[@^Y% MMW?6&W:1Q=;GLU'OJ/_;K>'Q*?T^'N&EIL>BC4VGH\FXVQ_=&BLM&5CTP^]X45O<+2O>#RX9!&ZC.];@0/XR%3UJ$<2ONL=G8YZ%YW1,?+2\$6= M![:WAY;14E._E`O&$M8O8N:G-CXU;GP=# M)!Z[!?9Y$;8+8LX0LL-3G>'%% MD"1Y*GEIIL^_K+Y(B*0@%L7^/]7?VL2;Q..!PZ[U>>)[0*KA@8X: M@8?<+[J=2>?VSSD]\)8U0S44<7+'%<>]26_X\19.W[U'AS[I3/;3T9$_$[-! M]_!T>-0_OJ6>WK'Z9K]')M+QOW7<7P$&*0JUL?&$/*!1)=>\._]7\_E?/D"K M54R/_O*=K?]^4/N?=)OP.EUSH!YPF;$-^^"Z=8?5[#=-TVY,3==N M66[+-1N.[4[M5K->4PMO;5BI$(F:W=RMF\V:Y3CU1MUE4[/:M.W&7G7O36OJ MF,WO)@#^PP''O[3=4\X`?RW^I_F?V9#Q'T-!&?^?`PKV3\>P97UU'H_D_SCO MU]?Y?Y/L7\.5P'<6_W_0_%_3M#S?UC$]/E9.,,<_L6[`K.(X;#$)V_)6V86J#?KOL'6@&Z!YF%II@P(2KM>Q5N;!>/?5"A(GVA5)&R); MK8PZ0Z2`4UMD!;2\KZ3\*OO([D$N`YH;I)GLQO319!S\D7"XD2M8+8RWJ<<3^0YGLAS/+'.\42> MXXD\QQ,I)33+E2Z(=\JNG;'%]K4<&S)'3!?5BA07QUC";>J3S,`<*CTNNEKY M`K]8?)DA*%NO#P^WUZ]H(BMC`YEC6W8DY=I>L;_7%>3\)82,]YI/WJ[EG5EQ MDFZ:T6U_#1M@MJHI?S-?QSID5&-QY31.%9U@SJN1NV\[E M5"NK4KNPJZ-6%"^0.SU;/\/6P1I)-]M(D$;C-N*DO+64K`P*VC5QWSI8(:65 ML0@LG^T0(11B-8KR\;\B;]VE359=::!8GX:PO$U!HF![S`K:J([4.7Y"+?ST M,+`4M)):`2W\K:>N$KX"T/KOG)26\X>1H> MC^[_5&MR_Z=5K]5JU5U:_U=KW]OWOQ_4_IW\&QC-"I$5W=`G/UR?8Z0_[A^E MG_+HL]_2@/>KSV8?:#8`F2_JY33P?PW9^._VQH>CI^+QR/C'05^[O__;JK7* M\?\<(`W?/YOT3X>JBLMZX#%8#V*"#OT$,),3RSC-PVV!.6XBX/<%MR^]&W`B M:PG^C0<[V`^;^,U8=?)#OB8Y'-$H1,'(L)J>X'D M`P=#"J;WX$;"5Q61S%F4T=R1K:XG!%ZYYV45RX@CNEBD.P81DYL'%G5`I]@E M]S1493+'/N%_:$6X?%YX5H0"+V+F+CSZOG@N(L^!<@% MK1XQ24U5D`2QP?#H6PD1<&2HY`'U,!-4AUR+@4!9D"D/$@@C@2KU48TNZ0^5 MP0`[<\F#F:1Q#P_UA'%85:[3VND-=*TK[L`',?4LZON5Q3UKB@K$)BL0P8TO M%C$<3XW MU$3@B"6,Y4[+V[SAQ+)5A91.#V>'.W:<01+=8-O7I'2B0&[8MCA4,0QIUXY+.:1[%_NB")$LF04*ZPN<#46ZB44[6"+`_M$Y&,R'F*,J+LZ1"W2_U)8!O-&F/(%:=Z5@ M'<:+D+[_2H38MKQ,3$RN4T]6E21:,#D<S.!UPF1%0Z,&_ MSS4W8DQ.^^D@QBZE1WYPB*&/DW-W?IW\3. MW)WGU6[:@TIO4R5MP3VLC3=5)EB9G4Z3&UWKO0(C)BS/P4G1 MY3,Z'O2J*\\%'2R"_XW2J(R1)9100@DEE%!""2644$())9100@DEE%!""264 <4$())9100@DEE%!""2644`+"?P'KK(-F`%```"64 ` end >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 May 10 18:34:31 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D7CF15C18; Mon, 10 May 1999 18:34:27 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Received: (from flathill@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA04671; Mon, 10 May 1999 18:34:26 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Date: Mon, 10 May 1999 18:34:26 -0700 (PDT) From: Message-Id: <199905110134.SAA04671@freefall.freebsd.org> To: honda@kashio.info.mie-u.ac.jp, flathill@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11630: remove some files of ports/japanese/rxvt Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: remove some files of ports/japanese/rxvt State-Changed-From-To: open->closed State-Changed-By: flathill State-Changed-When: Mon May 10 18:33:58 PDT 1999 State-Changed-Why: Committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 18:50: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A49E150A4; Mon, 10 May 1999 18:50:06 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA06056; Mon, 10 May 1999 18:50:06 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Date: Mon, 10 May 1999 18:50:06 -0700 (PDT) From: Message-Id: <199905110150.SAA06056@freefall.freebsd.org> To: stanaka@bb.mbn.or.jp, taoka@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11580: New port :japanese/gtkicq Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port :japanese/gtkicq State-Changed-From-To: open->closed State-Changed-By: taoka State-Changed-When: Mon May 10 18:49:50 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 19: 0:17 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8052015551; Mon, 10 May 1999 19:00:15 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA07144; Mon, 10 May 1999 19:00:15 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Date: Mon, 10 May 1999 19:00:15 -0700 (PDT) From: Message-Id: <199905110200.TAA07144@freefall.freebsd.org> To: clive@cirx.org, taoka@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11183: new port: x11/enlightenment-conf-0.15 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: x11/enlightenment-conf-0.15 State-Changed-From-To: open->closed State-Changed-By: taoka State-Changed-When: Mon May 10 18:54:21 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 19: 0:59 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DF501553F; Mon, 10 May 1999 19:00:58 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA07391; Mon, 10 May 1999 19:00:58 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Date: Mon, 10 May 1999 19:00:58 -0700 (PDT) From: Message-Id: <199905110200.TAA07391@freefall.freebsd.org> To: mi@aldan.algebra.com, taoka@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11072: Port of remote printing utilities added Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port of remote printing utilities added State-Changed-From-To: open->closed State-Changed-By: taoka State-Changed-When: Mon May 10 19:00:39 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 19:14:44 1999 Delivered-To: freebsd-ports@freebsd.org Received: from diana.infonets.hiroshima-u.ac.jp (diana.infonets.hiroshima-u.ac.jp [133.41.33.53]) by hub.freebsd.org (Postfix) with ESMTP id 5920215F96; Mon, 10 May 1999 19:14:35 -0700 (PDT) (envelope-from taoka@infonets.hiroshima-u.ac.jp) Received: from peg.infonets.hiroshima-u.ac.jp (peg.infonets.hiroshima-u.ac.jp [133.41.33.64]) by diana.infonets.hiroshima-u.ac.jp (8.8.8/3.6W) with ESMTP id LAA00931; Tue, 11 May 1999 11:14:32 +0900 (JST) Received: from localhost (localhost.infonets.hiroshima-u.ac.jp [127.0.0.1]) by peg.infonets.hiroshima-u.ac.jp (8.9.2/3.6W) with ESMTP id LAA11452; Tue, 11 May 1999 11:14:32 +0900 (JST) To: taoka@FreeBSD.org Cc: clive@cirx.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11183: new port: x11/enlightenment-conf-0.15 From: TAOKA Satoshi In-Reply-To: Your message of "Mon, 10 May 1999 19:00:15 -0700 (PDT)" <199905110200.TAA07144@freefall.freebsd.org> References: <199905110200.TAA07144@freefall.freebsd.org> X-Mailer: Mew version 1.93 on XEmacs 20.4 (Emerald) X-Prom-Mew: Prom-Mew 1.93 (procmail reader for Mew) X-URL: http://www.infonets.hiroshima-u.ac.jp/~taoka/ Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19990511111432J.taoka@infonets.hiroshima-u.ac.jp> Date: Tue, 11 May 1999 11:14:32 +0900 X-Dispatcher: imput version 980905(IM100) Lines: 7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Synopsis: new port: x11/enlightenment-conf-0.15 I changed the cagegory from x11 to misc. taoka@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 May 10 19:30: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BC7D914E50 for ; Mon, 10 May 1999 19:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA09554; Mon, 10 May 1999 19:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from dt051nc7.san.rr.com (dt051nc7.san.rr.com [204.210.32.199]) by hub.freebsd.org (Postfix) with ESMTP id B500014CB4 for ; Mon, 10 May 1999 19:22:33 -0700 (PDT) (envelope-from doug@dt051nc7.san.rr.com) Received: (from doug@localhost) by dt051nc7.san.rr.com (8.8.8/8.8.8) id TAA15086; Mon, 10 May 1999 19:22:31 -0700 (PDT) (envelope-from doug) Message-Id: <199905110222.TAA15086@dt051nc7.san.rr.com> Date: Mon, 10 May 1999 19:22:31 -0700 (PDT) From: Studded@gorean.org Reply-To: Studded@gorean.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11633: Update mergemaster distribution sites. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11633 >Category: ports >Synopsis: Update mergemaster distribution sites >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 May 10 19:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Doug >Release: FreeBSD 2.2.8-RELEASE i386 >Organization: AAAG >Environment: DNA >Description: Update to the distribution sites for my port, mergemaster. >How-To-Repeat: DNA >Fix: I'm sorry to have to make another change so soon, but I recently discovered that the other site is down indefinitely. The two remaining sites should be 100% reliable. Please apply the following patch to /usr/ports/sysutils/mergemaster/Makefile --- Makefile.old Mon May 10 01:16:58 1999 +++ Makefile Mon May 10 19:16:36 1999 @@ -8,8 +8,7 @@ DISTNAME= mergemaster-1.24 CATEGORIES= sysutils -MASTER_SITES= ftp://ftp.dal.net/dalnet/FreeBSD/ \ - http://doug.simplenet.com/FreeBSD/ \ +MASTER_SITES= http://doug.simplenet.com/FreeBSD/ \ http://home.san.rr.com/freebsd/ MAINTAINER= Studded@gorean.org Thanks, Doug >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 May 10 19:41:51 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 87D7F158EE; Mon, 10 May 1999 19:41:50 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA10334; Mon, 10 May 1999 19:41:50 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Mon, 10 May 1999 19:41:50 -0700 (PDT) From: Message-Id: <199905110241.TAA10334@freefall.freebsd.org> To: Studded@gorean.org, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11633: Update mergemaster distribution sites Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update mergemaster distribution sites State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Mon May 10 19:41:36 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 20: 2:57 1999 Delivered-To: freebsd-ports@freebsd.org Received: from cerberus.student.umd.edu (cerberus.student.umd.edu [129.2.178.155]) by hub.freebsd.org (Postfix) with ESMTP id C3FC31522E for ; Mon, 10 May 1999 20:02:31 -0700 (PDT) (envelope-from bfoz@glue.umd.edu) Received: from glue.umd.edu (poseidon.student.umd.edu [129.2.179.31]) by cerberus.student.umd.edu (8.9.3/8.9.3) with ESMTP id XAA53617 for ; Mon, 10 May 1999 23:02:26 -0400 (EDT) (envelope-from bfoz@glue.umd.edu) Message-ID: <37379D93.23B7A9B4@glue.umd.edu> Date: Mon, 10 May 1999 23:01:39 -0400 From: Brandon Fosdick X-Mailer: Mozilla 4.51 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: Mail Filtering Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Is there a port for doing server-side mail filtering? I can't find one and my mailbox keeps filling up what's left of my server's minimal hard drive (yes, I know I need to upgrade). It would be real nice to have the mail deleted *before* I open netscape. If such a thing doesn't exist but is still possible I'll try and do it myself, but I don't want to duplicate anybody's efforts. -Brandon -- bfoz@starfleet.umd.edu "In life there are those who steer, and those who push" "I'm not impatient, the world is too slow" "Life is short, so have fun, play hard, and leave a good looking corpse" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 20:16:50 1999 Delivered-To: freebsd-ports@freebsd.org Received: from area51.fremont.ca.us (d60-076.leach.ucdavis.edu [169.237.60.76]) by hub.freebsd.org (Postfix) with ESMTP id 937F81591E for ; Mon, 10 May 1999 20:16:47 -0700 (PDT) (envelope-from mharo@area51.fremont.ca.us) Received: (from mharo@localhost) by area51.fremont.ca.us (8.9.2/8.9.2) id UAA63574; Mon, 10 May 1999 20:16:27 -0700 (PDT) (envelope-from mharo) Date: Mon, 10 May 1999 20:16:27 -0700 From: Michael Haro To: Brandon Fosdick Cc: ports@FreeBSD.ORG Subject: Re: Mail Filtering Message-ID: <19990510201627.A63560@area51.fremont.ca.us> References: <37379D93.23B7A9B4@glue.umd.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <37379D93.23B7A9B4@glue.umd.edu>; from Brandon Fosdick on Mon, May 10, 1999 at 11:01:39PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Do you mean something like what procmail does? Michael On Mon, May 10, 1999 at 11:01:39PM -0400, Brandon Fosdick wrote: > Is there a port for doing server-side mail filtering? I can't find one and my > mailbox keeps filling up what's left of my server's minimal hard drive (yes, I > know I need to upgrade). It would be real nice to have the mail deleted *before* > I open netscape. > > If such a thing doesn't exist but is still possible I'll try and do it myself, > but I don't want to duplicate anybody's efforts. > > -Brandon > > -- > bfoz@starfleet.umd.edu > "In life there are those who steer, and those who push" > "I'm not impatient, the world is too slow" > "Life is short, so have fun, play hard, and leave a good looking corpse" > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 20:31:34 1999 Delivered-To: freebsd-ports@freebsd.org Received: from cerberus.student.umd.edu (cerberus.student.umd.edu [129.2.178.155]) by hub.freebsd.org (Postfix) with ESMTP id 1250A14BE0 for ; Mon, 10 May 1999 20:31:30 -0700 (PDT) (envelope-from bfoz@glue.umd.edu) Received: from glue.umd.edu (poseidon.student.umd.edu [129.2.179.31]) by cerberus.student.umd.edu (8.9.3/8.9.3) with ESMTP id XAA53677; Mon, 10 May 1999 23:31:29 -0400 (EDT) (envelope-from bfoz@glue.umd.edu) Message-ID: <3737A465.849311ED@glue.umd.edu> Date: Mon, 10 May 1999 23:30:45 -0400 From: Brandon Fosdick X-Mailer: Mozilla 4.51 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Michael Haro Cc: ports@FreeBSD.ORG Subject: Re: Mail Filtering References: <37379D93.23B7A9B4@glue.umd.edu> <19990510201627.A63560@area51.fremont.ca.us> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Michael Haro wrote: > > Do you mean something like what procmail does? > > Michael > > On Mon, May 10, 1999 at 11:01:39PM -0400, Brandon Fosdick wrote: > > Is there a port for doing server-side mail filtering? I can't find one and my > > mailbox keeps filling up what's left of my server's minimal hard drive (yes, I > > know I need to upgrade). It would be real nice to have the mail deleted *before* > > I open netscape. > > > > If such a thing doesn't exist but is still possible I'll try and do it myself, > > but I don't want to duplicate anybody's efforts. I don't know. What does procmail do? The description isn't very descriptive. -- bfoz@starfleet.umd.edu "In life there are those who steer, and those who push" "I'm not impatient, the world is too slow" "Life is short, so have fun, play hard, and leave a good looking corpse" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 20:36:18 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 51DAB14BEC; Mon, 10 May 1999 20:36:17 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Received: (from flathill@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA14951; Mon, 10 May 1999 20:36:17 -0700 (PDT) (envelope-from flathill@FreeBSD.org) Date: Mon, 10 May 1999 20:36:17 -0700 (PDT) From: Message-Id: <199905110336.UAA14951@freefall.freebsd.org> To: ichiro@ichiro.org, flathill@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11632: fix ports japanese/gd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix ports japanese/gd State-Changed-From-To: open->closed State-Changed-By: flathill State-Changed-When: Mon May 10 20:35:52 PDT 1999 State-Changed-Why: Committed by sada. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 20:50: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EEEE614FE4 for ; Mon, 10 May 1999 20:49:59 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA15562; Mon, 10 May 1999 20:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from smtp.teleway.ne.jp (smtp.teleway.ne.jp [203.140.129.13]) by hub.freebsd.org (Postfix) with ESMTP id 5C61214D2F for ; Mon, 10 May 1999 20:49:42 -0700 (PDT) (envelope-from yasuf@big.or.jp) Received: from post1a.po.teleway.ne.jp (post1a.teleway.ne.jp [203.140.129.22]) by smtp.teleway.ne.jp (8.9.3+3.2W/3.7W) with ESMTP id MAA23741 for ; Tue, 11 May 1999 12:49:41 +0900 (JST) (envelope-from yasuf@big.or.jp) Received: from localhost ([210.234.51.59]) by post1a.po.teleway.ne.jp (Post.Office MTA v3.0 release "turbo_2" ID# 110-55583U50000L50000S0V35) with ESMTP id AAA6818 for ; Tue, 11 May 1999 12:49:40 +0900 Message-Id: <19990511124940X.yasuf@big.or.jp> Date: Tue, 11 May 1999 12:49:40 +0900 From: yasuf@big.or.jp Reply-To: yasuf@big.or.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11635: Fix port: games/pmars Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11635 >Category: ports >Synopsis: Fix port: games/pmars >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon May 10 20:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Yasuhiro Fukuma >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: >Description: Patch for building failure of games/pmars on the Package Builder. cf. http://bento.freebsd.org/errorlogs/3-full/pmars-0.8.log >How-To-Repeat: >Fix: Index: pmars/Makefile =================================================================== RCS file: /home/ncvs/ports/games/pmars/Makefile,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 Makefile --- Makefile 1999/04/02 04:10:14 1.1.1.1 +++ Makefile 1999/05/11 03:28:19 @@ -18,6 +18,7 @@ USE_XLIB= yes NO_WRKSUBDIR= yes MAKEFILE= makefile +ALL_TARGET= pmars MAN6= pmars.6 do-install: Index: pmars/patches/patch-aa =================================================================== RCS file: /home/ncvs/ports/games/pmars/patches/patch-aa,v retrieving revision 1.2 diff -u -r1.2 patch-aa --- patch-aa 1999/04/11 12:47:04 1.2 +++ patch-aa 1999/05/11 03:42:30 @@ -23,12 +23,3 @@ .SUFFIXES: .o .c .c~ .man .doc .6 MAINFILE = pmars -@@ -30,7 +31,7 @@ - OBJ2 = clparse.o global.o token.o - OBJ3 = str_eng.o - --ALL: flags $(MAINFILE) man doc -+all: flags $(MAINFILE) man doc - - flags: - @echo Making $(MAINFILE) with compiler flags $(CFLAGS) Index: pmars/pkg/PLIST =================================================================== RCS file: /home/ncvs/ports/games/pmars/pkg/PLIST,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 PLIST --- PLIST 1999/04/02 04:10:14 1.1.1.1 +++ PLIST 1999/05/11 03:19:30 @@ -6,3 +6,4 @@ share/games/corewars/flashpaper.red share/games/corewars/README @dirrm share/games/corewars +@unexec /bin/rmdir %D/share/games >/dev/null 2>&1 || true >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 May 10 21:15:17 1999 Delivered-To: freebsd-ports@freebsd.org Received: from blues.ghis.net (as1f-9.wag.interact.net.au [203.37.48.137]) by hub.freebsd.org (Postfix) with ESMTP id 46CE014FE4 for ; Mon, 10 May 1999 21:15:03 -0700 (PDT) (envelope-from jim@blues.ghis.net) Received: (from jim@localhost) by blues.ghis.net (8.9.3/8.9.3) id OAA47817; Tue, 11 May 1999 14:12:12 +1000 (EST) Date: Tue, 11 May 1999 14:12:12 +1000 From: Jim Mock To: Brandon Fosdick Cc: Michael Haro , ports@FreeBSD.ORG Subject: Re: Mail Filtering Message-ID: <19990511141211.A47691@blues.ghis.net> Reply-To: jim@blues.ghis.net References: <37379D93.23B7A9B4@glue.umd.edu> <19990510201627.A63560@area51.fremont.ca.us> <3737A465.849311ED@glue.umd.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <3737A465.849311ED@glue.umd.edu> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 10 May 1999 at 23:30:45 -0400, Brandon Fosdick wrote: > Michael Haro wrote: > > Do you mean something like what procmail does? > > I don't know. What does procmail do? The description isn't very > descriptive. Procmail will filter your mail. I just posted a URL to a mail filtering FAQ the other day to -questions. I doubt it's in the archives yet, so here it is again.. http://www.faqs.org/faqs/mail/filtering-faq/preamble.html -- - Jim Mock - jim@blues.ghis.net - systems administrator - ghis.NET - - work: http://www.ghis.net/ - personal: http://www.ghis.net/~jim/ - - FreeBSD 'zine: http://www.freebsdzine.org/ - jim@freebsdzine.org - - FreeBSD: http://advocacy.freebsd.org/ - jim@advocacy.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 May 10 21:17:51 1999 Delivered-To: freebsd-ports@freebsd.org Received: from cerberus.student.umd.edu (cerberus.student.umd.edu [129.2.178.155]) by hub.freebsd.org (Postfix) with ESMTP id 2698B14FE4 for ; Mon, 10 May 1999 21:17:49 -0700 (PDT) (envelope-from bfoz@glue.umd.edu) Received: from glue.umd.edu (poseidon.student.umd.edu [129.2.179.31]) by cerberus.student.umd.edu (8.9.3/8.9.3) with ESMTP id AAA57801; Tue, 11 May 1999 00:17:35 -0400 (EDT) (envelope-from bfoz@glue.umd.edu) Message-ID: <3737AF2F.E3FE6B96@glue.umd.edu> Date: Tue, 11 May 1999 00:16:48 -0400 From: Brandon Fosdick X-Mailer: Mozilla 4.51 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: jim@blues.ghis.net Cc: Michael Haro , ports@FreeBSD.ORG Subject: Re: Mail Filtering References: <37379D93.23B7A9B4@glue.umd.edu> <19990510201627.A63560@area51.fremont.ca.us> <3737A465.849311ED@glue.umd.edu> <19990511141211.A47691@blues.ghis.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jim Mock wrote: > > On Mon, 10 May 1999 at 23:30:45 -0400, Brandon Fosdick wrote: > > Michael Haro wrote: > > > Do you mean something like what procmail does? > > > > I don't know. What does procmail do? The description isn't very > > descriptive. > > Procmail will filter your mail. I just posted a URL to a mail > filtering FAQ the other day to -questions. I doubt it's in the > archives yet, so here it is again.. > > http://www.faqs.org/faqs/mail/filtering-faq/preamble.html Just what I was looking for, thanks. -Brandon -- bfoz@starfleet.umd.edu "In life there are those who steer, and those who push" "I'm not impatient, the world is too slow" "Life is short, so have fun, play hard, and leave a good looking corpse" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 21:20: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 97CF815561 for ; Mon, 10 May 1999 21:20:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA17489; Mon, 10 May 1999 21:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from lambic.physics.montana.edu (lambic.physics.montana.edu [153.90.192.128]) by hub.freebsd.org (Postfix) with ESMTP id CBE0314FE4 for ; Mon, 10 May 1999 21:17:43 -0700 (PDT) (envelope-from handy@lambic.physics.montana.edu) Received: (from handy@localhost) by lambic.physics.montana.edu (8.8.8/8.8.7) id WAA00264; Mon, 10 May 1999 22:17:39 -0600 (MDT) (envelope-from handy) Message-Id: <199905110417.WAA00264@lambic.physics.montana.edu> Date: Mon, 10 May 1999 22:17:39 -0600 (MDT) From: handy@physics.montana.edu Reply-To: handy@physics.montana.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11636: Bugfix: p5-Mail-Folder Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11636 >Category: ports >Synopsis: p5-Mail-Folder missing dependencies >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon May 10 21:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Brian Handy >Release: FreeBSD 2.2.8-STABLE i386 >Organization: MSU - Bozeman >Environment: Done on a 3.x-STABLE box. >Description: The p5-Mail-Folder port has a couple of problems: (1) It can't find Sync.pm due to a bad path. Everytime you reinstall the port, it rebuilds p5-File-Sync. (2) It won't run at all, because p5-MIME-Tools is not included in the RUN_DEPENDS. This is purely a bug fix. IMHO, this should probably go in during the ports freeze. >How-To-Repeat: >Fix: diff -urN p5-Mail-Folder.orig/Makefile p5-Mail-Folder/Makefile --- p5-Mail-Folder.orig/Makefile Mon May 10 21:55:22 1999 +++ p5-Mail-Folder/Makefile Mon May 10 22:07:50 1999 @@ -16,10 +16,11 @@ BUILD_DEPENDS= ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/Mail/Internet.pm:${PORTSDIR}/mail/p5-Mail-Tools \ ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/Date/Format.pm:${PORTSDIR}/devel/p5-TimeDate \ - ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/File/Sync.pm:${PORTSDIR}/devel/p5-File-Sync + ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/File/Sync.pm:${PORTSDIR}/devel/p5-File-Sync RUN_DEPENDS= ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/Mail/Internet.pm:${PORTSDIR}/mail/p5-Mail-Tools \ ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/Date/Format.pm:${PORTSDIR}/devel/p5-TimeDate \ - ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/File/Sync.pm:${PORTSDIR}/devel/p5-File-Sync + ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/File/Sync.pm:${PORTSDIR}/devel/p5-File-Sync \ + ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/MIME/Head.pm:${PORTSDIR}/mail/p5-MIME-Tools USE_PERL5= YES >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 May 10 21:23:23 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7AE76155CA; Mon, 10 May 1999 21:23:22 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA17748; Mon, 10 May 1999 21:23:22 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Date: Mon, 10 May 1999 21:23:22 -0700 (PDT) From: Message-Id: <199905110423.VAA17748@freefall.freebsd.org> To: yasuf@big.or.jp, taoka@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11635: Fix port: games/pmars Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fix port: games/pmars State-Changed-From-To: open->closed State-Changed-By: taoka State-Changed-When: Mon May 10 21:21:45 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 10 23:10: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8387D15921 for ; Mon, 10 May 1999 23:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA26712; Mon, 10 May 1999 23:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from smtp.mtci.ne.jp (smtp.mtci.ne.jp [210.231.230.8]) by hub.freebsd.org (Postfix) with ESMTP id 66438158DC for ; Mon, 10 May 1999 23:07:22 -0700 (PDT) (envelope-from okazaki@be.to) Received: from acidrain (ppp28-Mobara1.mtci.ne.jp [210.172.1.230]) by smtp.mtci.ne.jp (8.8.8/3.6W) with SMTP id PAA10953 for ; Tue, 11 May 1999 15:07:15 +0900 Received: (qmail 27895 invoked by uid 1001); 11 May 1999 06:03:47 -0000 Message-Id: <19990511060347.27894.qmail@acidrain.localnet> Date: 11 May 1999 06:03:47 -0000 From: okazaki@be.to Reply-To: okazaki@be.to To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11638: [New port] ja-emacs-manual Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11638 >Category: ports >Synopsis: [New port] ja-emacs-manual >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 May 10 23:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: OKAZAKI Tetsurou >Release: FreeBSD 3.1-STABLE i386 >Organization: >Environment: >Description: This is a port of a Japanese translation of the GNU Emacs Manual. >How-To-Repeat: >Fix: begin 644 ja-emacs-manual-port.tar.gz M'XL(`";&-S<``^U:;5/;2!+.5\]?V"]]Q&3#$LF2;&'"K1,;6Q`?V%"VD\U> MI8X:2V-0D"6=-`XAE/>W7X]>C,S+DKURR%UEGA)8,]TST],];STM-J5VK$RI M/Z->YWC2&K3G!*OM]D?X9PT:I>"]@YZ5C'5K\S+'9GIWQU M?#08#3O=P;S"'!>'7%Q)R(9&2+$UT7JND+G*3[\@.6E\H26XKI8LY$J$7N+# MPC12L7R:/1RTL7'!]MO@(!'C5H&%'-=J6&:HH.XKU#Y7.?OLP@=2NH/%<^.P M@G0^#1P6BS?7GTRYRCPB1@>#660\F$2AV>LIC(W2@4-DKVC M0:^%LAVV]ALE+LQP8)U8_7>-4LJ\ELDR7X,B*V87DO,U0L(@Y@H*&.',WR&E M9OFJ?2QLG/0ZT4R^8JJN#XF^4'G7N5CDN>W`0I'P[)G0Q?6@:?\=*=@UQ>J/!K]_^.#CD?;;:;XY.>L/].:PU&HU7N+[U@PL06P[/QC-W_=-\ M3*MP[#&*H_Z"NES-!^"?5M<)?+;@='VLV?.0-WM3DIF"&A]8>]WW\XI(IHN) M\I'>S'?P+ZO3\%?G>VY3$-\+2^2\\/_T6/L#7GO\U MPS#UJCC_U31#GO\?!;?LWS[J]7#56V4;#YS_`7!PY/Z?9M3$^5_7Z_+\_QCX M1W8$!CSD^+%'D]-_,`%^Q@`/NV")\0&]]-#_O8656#ENS?^.-6P/5MO&0_,? MMX=\_M=,0]S_U.J:)N?_8V!TYL:`#X6_LA*HZ&HF22PIZ.@5,#]VQQY[`39J M-)BZ7VB2BIDW49S`GDV9GQQU(X8N.7>GC#CH4'CT$E(G5P5(9.GFOAV@EV%' M[IC%<(9G9G0`!2-_$@G[= MD4_9]87P&-4?=V6[-?^/#]'K7&T;#\U_O:XG\[]6KQMFS4SF?U7N_X^"YLQG MGYD-2PZCHCC,8YS!>N>&RYAG"%]QB4*:MZOYT]+?N^,2"9;F?W*EMGH/\*OC M/X9>VS*VQ/ROFEO2_WL,W&'_J;-BQ3^\_AO7]J]I2?Q'KO^/@U['A.>W@BDB MFK`!#1AKVQHSZV-6IW1[2]=T@S+&JA.]SNPMNLW(C>)9($$4-9&S5AV/ZW;= MV*K;ME$;U[_-+[/QWY3.'_;=7J MAIS_CX&1];XK(D99K#`-`8GP1R%3'._2.-OK+%)9#+&];@`GB_#B_K`!RE@$ M;$#Q+_`D.9UYW!U?XF%2\0,E=CE3DM!86N#PJ-4Y[.Z*0HH74*=1C/ZD+'MO M^^W6X>&P45(4]HEZL/8\"Y1SRY">LH@G)9A/H\NR>8O*3\VO9,?F#_2#76Q`HZ6;E%O7YN*#R\6 M-Z7/\[O:#6P#)8=%.XDV[;0V9!87G/YL.L;=D88AHU$,KH^5?V(1;J2A1VV6 MY'!Q\YILRVEI=W&SBY2(,ZS\;%%A=B?J7"^_1I/>4SGH*7]YO_SR;T^%Z45CV4<3`ZMG M]7:M@;CG3=N_J0/LZ2_\+&+LE[OZKA(%1U+1S%;Z^56:FRI8R0R96W%#+?T5 MTV%5R_8B<#P;>VY\ALH:7R:*W4,!81A,^`6-,!7,?">YC"=@OH01FX;8R+$0 M_P4,9Z@FJ%8UZ4U)2$A(2$A(2$A(2$A(2$A(2$A(2$A(2$A(2$A(2$A(2$A( ,_(#X#[*?:'4`4``` ` 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 May 10 23:33: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 75174158F6; Mon, 10 May 1999 23:33:01 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA29583; Mon, 10 May 1999 23:33:01 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Date: Mon, 10 May 1999 23:33:01 -0700 (PDT) From: Message-Id: <199905110633.XAA29583@freefall.freebsd.org> To: watanabe@komadori.planet.sci.kobe-u.ac.jp, taoka@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/10592: New ports: japanese/exmh2 (ja-exmh-2.0.2) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New ports: japanese/exmh2 (ja-exmh-2.0.2) State-Changed-From-To: open->closed State-Changed-By: taoka State-Changed-When: Mon May 10 23:32:37 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 11 1:30:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B03315CC7 for ; Tue, 11 May 1999 01:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA45117; Tue, 11 May 1999 01:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from dipshit.dis.org (dipshit-inside.dis.org [209.157.93.10]) by hub.freebsd.org (Postfix) with ESMTP id BC69015CA2 for ; Tue, 11 May 1999 01:23:11 -0700 (PDT) (envelope-from shipley@dipshit.dis.org) Received: (from root@localhost) by dipshit.dis.org (8.9.2/8.9.1) id BAA11025; Tue, 11 May 1999 01:23:09 -0700 (PDT) (envelope-from shipley) Message-Id: <199905110823.BAA11025@dipshit.dis.org> Date: Tue, 11 May 1999 01:23:09 -0700 (PDT) From: shipley@dis.org Reply-To: shipley@dis.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11639: libnet port update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11639 >Category: ports >Synopsis: Update to port libnet >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 May 11 01:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Peter Shipley >Release: >Organization: Dis.Org >Environment: Ports >Description: this is a update for the latest version of libnet Required for the port of "firewalk" >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: # # libnet # libnet/CVS # libnet/CVS/Root # libnet/CVS/Repository # libnet/CVS/Entries # libnet/files # libnet/files/CVS # libnet/files/CVS/Root # libnet/files/CVS/Repository # libnet/files/CVS/Entries # libnet/files/md5 # libnet/pkg # libnet/pkg/CVS # libnet/pkg/CVS/Root # libnet/pkg/CVS/Repository # libnet/pkg/CVS/Entries # libnet/pkg/COMMENT # libnet/pkg/DESCR # libnet/pkg/PLIST # libnet/Makefile # libnet/patches # libnet/patches/patch-aa # libnet/patches/patch-ab # echo c - libnet mkdir -p libnet > /dev/null 2>&1 echo c - libnet/CVS mkdir -p libnet/CVS > /dev/null 2>&1 echo x - libnet/CVS/Root sed 's/^X//' >libnet/CVS/Root << 'END-of-libnet/CVS/Root' X/home/ncvs END-of-libnet/CVS/Root echo x - libnet/CVS/Repository sed 's/^X//' >libnet/CVS/Repository << 'END-of-libnet/CVS/Repository' X/home/ncvs/ports/net/libnet END-of-libnet/CVS/Repository echo x - libnet/CVS/Entries sed 's/^X//' >libnet/CVS/Entries << 'END-of-libnet/CVS/Entries' X/Makefile/1.4/Sat Oct 10 03:23:40 1998// XD/files//// XD/patches//// XD/pkg//// END-of-libnet/CVS/Entries echo c - libnet/files mkdir -p libnet/files > /dev/null 2>&1 echo c - libnet/files/CVS mkdir -p libnet/files/CVS > /dev/null 2>&1 echo x - libnet/files/CVS/Root sed 's/^X//' >libnet/files/CVS/Root << 'END-of-libnet/files/CVS/Root' X/home/ncvs END-of-libnet/files/CVS/Root echo x - libnet/files/CVS/Repository sed 's/^X//' >libnet/files/CVS/Repository << 'END-of-libnet/files/CVS/Repository' X/home/ncvs/ports/net/libnet/files END-of-libnet/files/CVS/Repository echo x - libnet/files/CVS/Entries sed 's/^X//' >libnet/files/CVS/Entries << 'END-of-libnet/files/CVS/Entries' X/md5/1.1.1.1/Fri Feb 7 23:54:06 1997// XD END-of-libnet/files/CVS/Entries echo x - libnet/files/md5 sed 's/^X//' >libnet/files/md5 << 'END-of-libnet/files/md5' XMD5 (libnet-0.99b.tgz) = 078dc5638c72e39cbc629b19e0e708d3 END-of-libnet/files/md5 echo c - libnet/pkg mkdir -p libnet/pkg > /dev/null 2>&1 echo c - libnet/pkg/CVS mkdir -p libnet/pkg/CVS > /dev/null 2>&1 echo x - libnet/pkg/CVS/Root sed 's/^X//' >libnet/pkg/CVS/Root << 'END-of-libnet/pkg/CVS/Root' X/home/ncvs END-of-libnet/pkg/CVS/Root echo x - libnet/pkg/CVS/Repository sed 's/^X//' >libnet/pkg/CVS/Repository << 'END-of-libnet/pkg/CVS/Repository' X/home/ncvs/ports/net/libsocket++/pkg END-of-libnet/pkg/CVS/Repository echo x - libnet/pkg/CVS/Entries sed 's/^X//' >libnet/pkg/CVS/Entries << 'END-of-libnet/pkg/CVS/Entries' X/COMMENT/1.1.1.1/Fri Feb 7 23:54:07 1997// X/DESCR/1.1.1.1/Fri Feb 7 23:54:07 1997// X/PLIST/1.3/Sat Oct 10 03:23:44 1998// XD END-of-libnet/pkg/CVS/Entries echo x - libnet/pkg/COMMENT sed 's/^X//' >libnet/pkg/COMMENT << 'END-of-libnet/pkg/COMMENT' XA C library to for IP packet creation END-of-libnet/pkg/COMMENT echo x - libnet/pkg/DESCR sed 's/^X//' >libnet/pkg/DESCR << 'END-of-libnet/pkg/DESCR' XLibnet A C library for portable packet creation X Xdomains of sockets and protocols. X XA C library for portable packet creation X XIncluded are also simple example test programs X X XLibnet is a collection of routines to help with the construction Xand handling of network packets. It provides a portable framework Xfor low-level network packet writing and handling. X XLibnet features portable packet creation interfaces at the IP layer Xand link layer, as well as a host of supplementary and complementary Xfunctionality. X XSee http://www.infonexus.com/~daemon9/Projects/Libnet/ for more info END-of-libnet/pkg/DESCR echo x - libnet/pkg/PLIST sed 's/^X//' >libnet/pkg/PLIST << 'END-of-libnet/pkg/PLIST' X@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %D/lib X@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R Xinclude/libnet.h Xinclude/libnet/libnet-headers.h Xinclude/libnet/libnet-functions.h Xinclude/libnet/libnet-structures.h Xinclude/libnet/libnet-macros.h Xinclude/libnet/libnet-asn1.h Xman/man3/libnet.3 Xlib/libnet.a Xlib/libpwrite Xshare/doc/libnet/PORTS Xshare/doc/libnet/README Xshare/doc/libnet/README.asn.1 Xshare/doc/libnet/README.bpf Xshare/doc/libnet/README.examples Xshare/doc/libnet/README.linux Xshare/doc/libnet/README.rawsockets Xshare/doc/libnet/README.stubs X X@dirrm share/doc/libnet X X X END-of-libnet/pkg/PLIST echo x - libnet/Makefile sed 's/^X//' >libnet/Makefile << 'END-of-libnet/Makefile' X# Ports collection makefile for: libnet X# Version required: 0.99b X# Date created: Sun May 10, 1999 X# Whom: shipley@dis.org X# X# $Id$ X# X#DISTDIR= /var/tmp/ # for debuging X XDISTNAME= libnet-0.99b XPKGNAME= libnet-0.9.9b XCATEGORIES= net XMASTER_SITES= http://www.packetfactory.net/libnet/dist/ XEXTRACT_SUFX= .tgz X XMAINTAINER= shipley@dis.org X XMAN= libnet.3 X XGNU_CONFIGURE= yes X X#NOPROFILE= true X XOSVERSION!= sysctl -n kern.osreldate X.if ${OSVERSION} <= 300000 XBROKEN= does not build X.endif X XWRKSRC= ${WRKDIR}/Libnet-0.99b X Xpost-install: X.if !defined(NOPORTDOCS) X @${MKDIR} ${PREFIX}/share/doc/libnet X ${INSTALL_MAN} ${WRKSRC}/doc/PORTS ${PREFIX}/share/doc/libnet X ${INSTALL_MAN} ${WRKSRC}/doc/README ${PREFIX}/share/doc/libnet X ${INSTALL_MAN} ${WRKSRC}/doc/README.asn.1 ${PREFIX}/share/doc/libnet X ${INSTALL_MAN} ${WRKSRC}/doc/README.bpf ${PREFIX}/share/doc/libnet X ${INSTALL_MAN} ${WRKSRC}/doc/README.examples ${PREFIX}/share/doc/libnet X ${INSTALL_MAN} ${WRKSRC}/doc/README.linux ${PREFIX}/share/doc/libnet X ${INSTALL_MAN} ${WRKSRC}/doc/README.rawsockets ${PREFIX}/share/doc/libnet X ${INSTALL_MAN} ${WRKSRC}/doc/README.stubs ${PREFIX}/share/doc/libnet X X.endif X X.include END-of-libnet/Makefile echo c - libnet/patches mkdir -p libnet/patches > /dev/null 2>&1 echo x - libnet/patches/patch-aa sed 's/^X//' >libnet/patches/patch-aa << 'END-of-libnet/patches/patch-aa' X*** configure.in- Mon May 10 18:39:16 1999 X--- configure.in Mon May 10 18:40:09 1999 X*************** X*** 146,152 **** X AC_DEFINE(BSDISH_OS) X AC_DEFINE(BSD_BYTE_SWAP) X MAN_PREFIX="$prefix/man/man3/" X! LIB_PREFIX="$prefix/lib/aout" X INC_PREFIX="$prefix/include/" X BIN_PREFIX="$prefix/bin/" X ln -sf FreeBSD support/bpf-lkm/etherspoof X--- 146,152 ---- X AC_DEFINE(BSDISH_OS) X AC_DEFINE(BSD_BYTE_SWAP) X MAN_PREFIX="$prefix/man/man3/" X! LIB_PREFIX="$prefix/lib/" X INC_PREFIX="$prefix/include/" X BIN_PREFIX="$prefix/bin/" X ln -sf FreeBSD support/bpf-lkm/etherspoof END-of-libnet/patches/patch-aa echo x - libnet/patches/patch-ab sed 's/^X//' >libnet/patches/patch-ab << 'END-of-libnet/patches/patch-ab' X*** configure- Mon May 10 18:39:03 1999 X--- configure Mon May 10 18:40:01 1999 X*************** X*** 1519,1525 **** X EOF X X MAN_PREFIX="$prefix/man/man3/" X! LIB_PREFIX="$prefix/lib/aout" X INC_PREFIX="$prefix/include/" X BIN_PREFIX="$prefix/bin/" X ln -sf FreeBSD support/bpf-lkm/etherspoof X--- 1519,1525 ---- X EOF X X MAN_PREFIX="$prefix/man/man3/" X! LIB_PREFIX="$prefix/lib/" X INC_PREFIX="$prefix/include/" X BIN_PREFIX="$prefix/bin/" X ln -sf FreeBSD support/bpf-lkm/etherspoof END-of-libnet/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 Tue May 11 1:30:23 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8961215CCD for ; Tue, 11 May 1999 01:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA45126; Tue, 11 May 1999 01:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from dipshit.dis.org (dipshit-inside.dis.org [209.157.93.10]) by hub.freebsd.org (Postfix) with ESMTP id 3316C15C53 for ; Tue, 11 May 1999 01:23:55 -0700 (PDT) (envelope-from shipley@dipshit.dis.org) Received: (from root@localhost) by dipshit.dis.org (8.9.2/8.9.1) id BAA11136; Tue, 11 May 1999 01:23:48 -0700 (PDT) (envelope-from shipley) Message-Id: <199905110823.BAA11136@dipshit.dis.org> Date: Tue, 11 May 1999 01:23:48 -0700 (PDT) From: shipley@dis.org Reply-To: shipley@dis.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11640: slush port update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11640 >Category: ports >Synopsis: Update to port slush >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 May 11 01:30:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Peter Shipley >Release: >Organization: Dis.Org >Environment: Posts >Description: this is a update for the latest version of slush >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: # # slush # slush/CVS # slush/CVS/Root # slush/CVS/Repository # slush/CVS/Entries # slush/files # slush/files/CVS # slush/files/CVS/Root # slush/files/CVS/Repository # slush/files/CVS/Entries # slush/files/md5 # slush/pkg # slush/pkg/CVS # slush/pkg/CVS/Root # slush/pkg/CVS/Repository # slush/pkg/CVS/Entries # slush/pkg/COMMENT # slush/pkg/DESCR # slush/pkg/PLIST # slush/Makefile # slush/patches # slush/patches/patch-aa # slush/patches/patch-ab # slush/patches/patch-ac # echo c - slush mkdir -p slush > /dev/null 2>&1 echo c - slush/CVS mkdir -p slush/CVS > /dev/null 2>&1 echo x - slush/CVS/Root sed 's/^X//' >slush/CVS/Root << 'END-of-slush/CVS/Root' X/home/ncvs END-of-slush/CVS/Root echo x - slush/CVS/Repository sed 's/^X//' >slush/CVS/Repository << 'END-of-slush/CVS/Repository' X/home/ncvs/ports/net/libnet END-of-slush/CVS/Repository echo x - slush/CVS/Entries sed 's/^X//' >slush/CVS/Entries << 'END-of-slush/CVS/Entries' X/Makefile/1.4/Sat Oct 10 03:23:40 1998// XD/files//// XD/patches//// XD/pkg//// END-of-slush/CVS/Entries echo c - slush/files mkdir -p slush/files > /dev/null 2>&1 echo c - slush/files/CVS mkdir -p slush/files/CVS > /dev/null 2>&1 echo x - slush/files/CVS/Root sed 's/^X//' >slush/files/CVS/Root << 'END-of-slush/files/CVS/Root' X/home/ncvs END-of-slush/files/CVS/Root echo x - slush/files/CVS/Repository sed 's/^X//' >slush/files/CVS/Repository << 'END-of-slush/files/CVS/Repository' X/home/ncvs/ports/net/libnet/files END-of-slush/files/CVS/Repository echo x - slush/files/CVS/Entries sed 's/^X//' >slush/files/CVS/Entries << 'END-of-slush/files/CVS/Entries' X/md5/1.1.1.1/Fri Feb 7 23:54:06 1997// XD END-of-slush/files/CVS/Entries echo x - slush/files/md5 sed 's/^X//' >slush/files/md5 << 'END-of-slush/files/md5' XMD5 (slush-0.1.1.tar.gz) = 0fb0d298e4dba05ec602d362fdf8f088 END-of-slush/files/md5 echo c - slush/pkg mkdir -p slush/pkg > /dev/null 2>&1 echo c - slush/pkg/CVS mkdir -p slush/pkg/CVS > /dev/null 2>&1 echo x - slush/pkg/CVS/Root sed 's/^X//' >slush/pkg/CVS/Root << 'END-of-slush/pkg/CVS/Root' X/home/ncvs END-of-slush/pkg/CVS/Root echo x - slush/pkg/CVS/Repository sed 's/^X//' >slush/pkg/CVS/Repository << 'END-of-slush/pkg/CVS/Repository' X/home/ncvs/ports/net/libsocket++/pkg END-of-slush/pkg/CVS/Repository echo x - slush/pkg/CVS/Entries sed 's/^X//' >slush/pkg/CVS/Entries << 'END-of-slush/pkg/CVS/Entries' X/COMMENT/1.1.1.1/Fri Feb 7 23:54:07 1997// X/DESCR/1.1.1.1/Fri Feb 7 23:54:07 1997// X/PLIST/1.3/Sat Oct 10 03:23:44 1998// XD END-of-slush/pkg/CVS/Entries echo x - slush/pkg/COMMENT sed 's/^X//' >slush/pkg/COMMENT << 'END-of-slush/pkg/COMMENT' Xslush is a telnet-like application which uses a secure SSL channel END-of-slush/pkg/COMMENT echo x - slush/pkg/DESCR sed 's/^X//' >slush/pkg/DESCR << 'END-of-slush/pkg/DESCR' Xslush SSL remote shell X Xslush is a simple telnet-like application which communicates over a Xsecure SSL channel. It uses X509 certificates for authentication and Xcan be compiled with tcp wrappers support (service name "slushd"). X Xslush is *alpha* software. Use it at your own risk. END-of-slush/pkg/DESCR echo x - slush/pkg/PLIST sed 's/^X//' >slush/pkg/PLIST << 'END-of-slush/pkg/PLIST' Xshare/doc/slush/control.txt Xshare/doc/slush/INSTALL Xshare/doc/slush/HISTORY Xshare/doc/slush/README Xshare/doc/slush/COPYING Xbin/slush Xsbin/slushd X X@dirrm share/doc/slush X END-of-slush/pkg/PLIST echo x - slush/Makefile sed 's/^X//' >slush/Makefile << 'END-of-slush/Makefile' X# Ports collection makefile for: slush X# Version required: 0.1.0 X# Date created: Sun May 3, 1999 X# Whom: shipley@dis.org X# X# $Id$ X# X#DISTDIR= /var/tmp/ # for debuging X XDISTNAME= slush-0.1.1 XCATEGORIES= net security XMASTER_SITES= http://violet.ibs.com.au/slush/files/ \ X ftp://www.dis.org/pub/Security/ X XMAINTAINER= shipley@dis.org X XBUILD_DEPENDS= ssleay:${PORTSDIR}/security/openssl X X#MAN= slush.1 X XGNU_CONFIGURE= yes X X#NOPROFILE= true X XOSVERSION!= sysctl -n kern.osreldate X.if ${OSVERSION} <= 300000 XBROKEN= does not build X.endif X XWRKSRC= ${WRKDIR}/slush-0.1.1 X Xdo-install: X.if !defined(NOPORTDOCS) X @${MKDIR} ${PREFIX}/share/doc/slush X ${INSTALL_MAN} ${WRKSRC}/control.txt ${PREFIX}/share/doc/slush X ${INSTALL_MAN} ${WRKSRC}/INSTALL ${PREFIX}/share/doc/slush X ${INSTALL_MAN} ${WRKSRC}/HISTORY ${PREFIX}/share/doc/slush X ${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/slush X ${INSTALL_MAN} ${WRKSRC}/COPYING ${PREFIX}/share/doc/slush X.endif X X ${INSTALL_PROGRAM} ${WRKSRC}/slush ${PREFIX}/bin/slush X ${INSTALL_PROGRAM} ${WRKSRC}/slushd ${PREFIX}/sbin/slushd X X.include END-of-slush/Makefile echo c - slush/patches mkdir -p slush/patches > /dev/null 2>&1 echo x - slush/patches/patch-aa sed 's/^X//' >slush/patches/patch-aa << 'END-of-slush/patches/patch-aa' X*** Makefile.in- Fri May 7 02:00:37 1999 X--- Makefile.in Fri May 7 02:01:05 1999 X*************** X*** 9,16 **** X X CC=@CC@ X INSTALL=@INSTALL@ X! CFLAGS=@CFLAGS@ -Wall -DVERSION=\"$(VERSION)\" -I/usr/local/ssl/include -I/usr/include/ssl X! LIBS=@LIBS@ -L/usr/local/ssl/lib -lssl -lcrypto X X all: slush slushd X X--- 9,16 ---- X X CC=@CC@ X INSTALL=@INSTALL@ X! CFLAGS=@CFLAGS@ -Wall -DVERSION=\"$(VERSION)\" -I/usr/local/include X! LIBS=@LIBS@ -L/usr/local/lib -lssl -lcrypto -lRSAglue -lrsaref -lutil X X all: slush slushd X END-of-slush/patches/patch-aa echo x - slush/patches/patch-ab sed 's/^X//' >slush/patches/patch-ab << 'END-of-slush/patches/patch-ab' X*** slush.c- Fri May 7 03:31:04 1999 X--- slush.c Fri May 7 03:31:14 1999 X*************** X*** 34,40 **** X #include X #include X #include X! #include X #include X #include X #include X--- 34,40 ---- X #include X #include X #include X! /* #include */ X #include X #include X #include END-of-slush/patches/patch-ab echo x - slush/patches/patch-ac sed 's/^X//' >slush/patches/patch-ac << 'END-of-slush/patches/patch-ac' X*** slushd.c- Fri May 7 04:04:35 1999 X--- slushd.c Fri May 7 04:06:11 1999 X*************** X*** 40,46 **** X #include X #include X #include X! #include X #include X #include X #include X--- 40,46 ---- X #include X #include X #include X! #include X #include X #include X #include X*************** X*** 51,56 **** X--- 51,57 ---- X #include X #include X #include X+ X #ifdef HAVE_UNISTD_H X #include /* fork, execvp, exit */ X #endif X*************** X*** 199,205 **** X if (!hosts_access(&request)) X { X syslog(LOG_ERR, "Connection refused from %s:%d", X! inet_ntoa(addr.sin_addr), ntohs(addr.sin_port)); X exit(2); X } X #endif X--- 200,206 ---- X if (!hosts_access(&request)) X { X syslog(LOG_ERR, "Connection refused from %s:%d", X! inen_ntoa(addr.sin_addr), ntohs(addr.sin_port)); X exit(2); X } X #endif X*************** X*** 654,711 **** X void log_uwtmp(struct passwd *pw, struct in_addr *i, char *tty, int is_logout) X { X struct utmp ut; X- int wtmp; X- int lock; X X tty = strrchr(tty, '/'); X if (tty == NULL) X { X syslog(LOG_ERR, "Can't determine basename of tty"); X! exit(3); X } X tty++; X X- utmpname(_PATH_UTMP); X- setutent(); X- memset(&ut, 0, sizeof(ut)); X X! if (ut.ut_id[0] == 0) X! strncpy(ut.ut_id, tty + 3, sizeof(ut.ut_id)); X X- if (!is_logout) X- strncpy(ut.ut_user, pw->pw_name, sizeof(ut.ut_user)); X- X strncpy(ut.ut_line, tty, sizeof(ut.ut_line) - 1); X! ut.ut_line[sizeof(ut.ut_line) - 1] = 0; X! X! ut.ut_time = time(NULL); X! ut.ut_type = is_logout?DEAD_PROCESS:USER_PROCESS; X! ut.ut_pid = getpid(); X X- strncpy(ut.ut_host, hostname, sizeof(ut.ut_host) - 1); X- ut.ut_host[sizeof(ut.ut_host) - 1] = 0; X X! memcpy(&ut.ut_addr, i, sizeof(ut.ut_addr)); X! X! pututline(&ut); X! endutent(); X! X! lock = open(_PATH_WTMPLOCK, O_CREAT|O_WRONLY, 0660); X! if (lock == -1) X! ioerror("open"); X! X! if (flock(lock, LOCK_EX) == -1) X! ioerror("flock"); X! X! wtmp = open(_PATH_WTMP, O_APPEND|O_WRONLY); X! if (wtmp == -1) X! ioerror("open"); X! X! write(wtmp, (char *)&ut, sizeof(ut)); X! close(wtmp); X! X! flock(lock, LOCK_UN); X! close(lock); X } X X /* Retrieve client X509 certificate and test authentication */ X--- 655,684 ---- X void log_uwtmp(struct passwd *pw, struct in_addr *i, char *tty, int is_logout) X { X struct utmp ut; X X tty = strrchr(tty, '/'); X if (tty == NULL) X { X syslog(LOG_ERR, "Can't determine basename of tty"); X! return; X } X tty++; X+ X X X! if(is_logout) { X! logout(tty); X! return; X! } X X strncpy(ut.ut_line, tty, sizeof(ut.ut_line) - 1); X! strncpy(ut.ut_name, pw->pw_name, sizeof(ut.ut_name)-1); X! strncpy(ut.ut_host, inet_ntoa(*i), sizeof(ut.ut_host) - 1); X! ut.ut_time = time(0); X! login(&ut); X X X! return; X } X X /* Retrieve client X509 certificate and test authentication */ END-of-slush/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 Tue May 11 1:30:26 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4070A15CEF for ; Tue, 11 May 1999 01:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA45135; Tue, 11 May 1999 01:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from dipshit.dis.org (dipshit-inside.dis.org [209.157.93.10]) by hub.freebsd.org (Postfix) with ESMTP id 3F21815C3A for ; Tue, 11 May 1999 01:27:13 -0700 (PDT) (envelope-from shipley@dipshit.dis.org) Received: (from root@localhost) by dipshit.dis.org (8.9.2/8.9.1) id BAA11251; Tue, 11 May 1999 01:27:11 -0700 (PDT) (envelope-from shipley) Message-Id: <199905110827.BAA11251@dipshit.dis.org> Date: Tue, 11 May 1999 01:27:11 -0700 (PDT) From: shipley@dis.org Reply-To: shipley@dis.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11641: firewalk port update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11641 >Category: ports >Synopsis: Port of firewalk >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 May 11 01:30:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Peter Shipley >Release: >Organization: Dis.Org >Environment: Posts >Description: Submition of a port for the firewalk firewall audit tool note this requires the updated libnet 0.99b (port already submitted) to compile >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: # # firewalk # firewalk/CVS # firewalk/CVS/Root # firewalk/CVS/Repository # firewalk/CVS/Entries # firewalk/files # firewalk/files/CVS # firewalk/files/CVS/Root # firewalk/files/CVS/Repository # firewalk/files/CVS/Entries # firewalk/files/md5 # firewalk/pkg # firewalk/pkg/CVS # firewalk/pkg/CVS/Root # firewalk/pkg/CVS/Repository # firewalk/pkg/CVS/Entries # firewalk/pkg/COMMENT # firewalk/pkg/DESCR # firewalk/pkg/PLIST # firewalk/Makefile # firewalk/patches # firewalk/patches/patch-aa # echo c - firewalk mkdir -p firewalk > /dev/null 2>&1 echo c - firewalk/CVS mkdir -p firewalk/CVS > /dev/null 2>&1 echo x - firewalk/CVS/Root sed 's/^X//' >firewalk/CVS/Root << 'END-of-firewalk/CVS/Root' X/home/ncvs END-of-firewalk/CVS/Root echo x - firewalk/CVS/Repository sed 's/^X//' >firewalk/CVS/Repository << 'END-of-firewalk/CVS/Repository' X/home/ncvs/ports/net/libnet END-of-firewalk/CVS/Repository echo x - firewalk/CVS/Entries sed 's/^X//' >firewalk/CVS/Entries << 'END-of-firewalk/CVS/Entries' X/Makefile/1.4/Sat Oct 10 03:23:40 1998// XD/files//// XD/patches//// XD/pkg//// END-of-firewalk/CVS/Entries echo c - firewalk/files mkdir -p firewalk/files > /dev/null 2>&1 echo c - firewalk/files/CVS mkdir -p firewalk/files/CVS > /dev/null 2>&1 echo x - firewalk/files/CVS/Root sed 's/^X//' >firewalk/files/CVS/Root << 'END-of-firewalk/files/CVS/Root' X/home/ncvs END-of-firewalk/files/CVS/Root echo x - firewalk/files/CVS/Repository sed 's/^X//' >firewalk/files/CVS/Repository << 'END-of-firewalk/files/CVS/Repository' X/home/ncvs/ports/net/libnet/files END-of-firewalk/files/CVS/Repository echo x - firewalk/files/CVS/Entries sed 's/^X//' >firewalk/files/CVS/Entries << 'END-of-firewalk/files/CVS/Entries' X/md5/1.1.1.1/Fri Feb 7 23:54:06 1997// XD END-of-firewalk/files/CVS/Entries echo x - firewalk/files/md5 sed 's/^X//' >firewalk/files/md5 << 'END-of-firewalk/files/md5' XMD5 (firewalk-0.99beta.tar.gz) = bd2b1cdbbcd6ef78604062c1d10e614b END-of-firewalk/files/md5 echo c - firewalk/pkg mkdir -p firewalk/pkg > /dev/null 2>&1 echo c - firewalk/pkg/CVS mkdir -p firewalk/pkg/CVS > /dev/null 2>&1 echo x - firewalk/pkg/CVS/Root sed 's/^X//' >firewalk/pkg/CVS/Root << 'END-of-firewalk/pkg/CVS/Root' X/home/ncvs END-of-firewalk/pkg/CVS/Root echo x - firewalk/pkg/CVS/Repository sed 's/^X//' >firewalk/pkg/CVS/Repository << 'END-of-firewalk/pkg/CVS/Repository' X/home/ncvs/ports/net/libsocket++/pkg END-of-firewalk/pkg/CVS/Repository echo x - firewalk/pkg/CVS/Entries sed 's/^X//' >firewalk/pkg/CVS/Entries << 'END-of-firewalk/pkg/CVS/Entries' X/COMMENT/1.1.1.1/Fri Feb 7 23:54:07 1997// X/DESCR/1.1.1.1/Fri Feb 7 23:54:07 1997// X/PLIST/1.3/Sat Oct 10 03:23:44 1998// XD END-of-firewalk/pkg/CVS/Entries echo x - firewalk/pkg/COMMENT sed 's/^X//' >firewalk/pkg/COMMENT << 'END-of-firewalk/pkg/COMMENT' XFirewalk is a network auditing tool END-of-firewalk/pkg/COMMENT echo x - firewalk/pkg/DESCR sed 's/^X//' >firewalk/pkg/DESCR << 'END-of-firewalk/pkg/DESCR' XFirewalk http://www.packetfactory.net/firewalk/ X XFirewalk is a network auditing tool that attempts to Xdetermine what transport protocols a given gateway will Xpass. Firewalk works by sending out TCP or UDP packets Xwith a TTL one greater then the targeted gateway. If the Xgateway allows the traffic, it will forward the packets to Xthe next hop where they will expire and elicit an XICMP_TIME_EXCEEDED message. If the gateway host does not Xallow the traffic, it will likely drop the packets on the Xfloor and we will see no response. END-of-firewalk/pkg/DESCR echo x - firewalk/pkg/PLIST sed 's/^X//' >firewalk/pkg/PLIST << 'END-of-firewalk/pkg/PLIST' Xbin/firewalk END-of-firewalk/pkg/PLIST echo x - firewalk/Makefile sed 's/^X//' >firewalk/Makefile << 'END-of-firewalk/Makefile' X# Ports collection makefile for: slush X# Version required: 0.1.0 X# Date created: Sun May 3, 1999 X# Whom: shipley@dis.org X# X# $Id$ X# X#DISTDIR= /var/tmp/ # for debuging X XDISTNAME= firewalk-0.99beta XPKGNAME= firewalk-0.9.9b XCATEGORIES= net security XMASTER_SITES= http://www.packetfactory.net/firewalk/ X XMAINTAINER= shipley@dis.org X XBUILD_DEPENDS= libnet:${PORTSDIR}/net/libnet X XMAN= firewalk.1 X XLDFLAGS+= -L${PREFIX}/lib XGNU_CONFIGURE= YES X#CONFIGURE_ARGS= --libdir=/usr/local/lib \ X# --includedir=/usr/local/include \ X# --with-includes=/usr/local/include \ X# --with-libraries=/usr/local/lib X XOSVERSION!= sysctl -n kern.osreldate X.if ${OSVERSION} <= 300000 XBROKEN= may not build X.endif X XWRKSRC= ${WRKDIR}/Firewalk-0.99b-beta3 X X.include END-of-firewalk/Makefile echo c - firewalk/patches mkdir -p firewalk/patches > /dev/null 2>&1 echo x - firewalk/patches/patch-aa sed 's/^X//' >firewalk/patches/patch-aa << 'END-of-firewalk/patches/patch-aa' X*** Makefile.in- Sun May 9 23:48:29 1999 X--- Makefile.in Sun May 9 23:49:07 1999 X*************** X*** 12,19 **** X INSTALL = ./install-sh X DEFINES += @DEFS@ X CFLAGS = @CFLAGS@ X! CPPFLAGS = @CPPFLAGS@ X! LIBS = -lnet -lpcap @FW_GTK_CONFIG@ X OBJECTS = main.o firewalk.o watcher.o p_cap.o signal.o \ X packet.o udptcpwalk.o port_list.o util.o @FW_GTK_OBJS@ X X--- 12,19 ---- X INSTALL = ./install-sh X DEFINES += @DEFS@ X CFLAGS = @CFLAGS@ X! CPPFLAGS = -I/usr/local/include @CPPFLAGS@ X! LIBS = -L/usr/local/lib -lnet -lpcap @FW_GTK_CONFIG@ X OBJECTS = main.o firewalk.o watcher.o p_cap.o signal.o \ X packet.o udptcpwalk.o port_list.o util.o @FW_GTK_OBJS@ X END-of-firewalk/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 Tue May 11 2:17:30 1999 Delivered-To: freebsd-ports@freebsd.org Received: from stampede.cs.berkeley.edu (stampede.CS.Berkeley.EDU [128.32.45.124]) by hub.freebsd.org (Postfix) with ESMTP id 07D6915958 for ; Tue, 11 May 1999 02:17:26 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca43-212.ix.netcom.com [209.111.209.212]) by stampede.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id CAA08029; Tue, 11 May 1999 02:18:12 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.2/8.6.9) id CAA29260; Tue, 11 May 1999 02:16:16 -0700 (PDT) Date: Tue, 11 May 1999 02:16:16 -0700 (PDT) Message-Id: <199905110916.CAA29260@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: obrien@NUXI.com Cc: ports@freebsd.org In-reply-to: <19990508190144.A85343@dragon.nuxi.com> (obrien@NUXI.com) Subject: Re: where should dos2unix type utils go? From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) References: <19990508190144.A85343@dragon.nuxi.com> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: "David O'Brien" * * we have textproc/tuc and converters/unix2dos Those stuff should go to converters. After the release let's move tuc. -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 11 2:30: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D576714F77 for ; Tue, 11 May 1999 02:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA55704; Tue, 11 May 1999 02:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id D235814F77; Tue, 11 May 1999 02:21:56 -0700 (PDT) Message-Id: <19990511092156.D235814F77@hub.freebsd.org> Date: Tue, 11 May 1999 02:21:56 -0700 (PDT) From: tarkhil@asteroid.svib.ru To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11642: editors/AbiWord doesn't compile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11642 >Category: ports >Synopsis: editors/AbiWord doesn't compile >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: Tue May 11 02:30:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Alex Povolotsky >Release: 3.1-STABLE >Organization: >Environment: FreeBSD shuttle.svib.ru 3.1-STABLE FreeBSD 3.1-STABLE #5: Sat May 8 09:32:34 MSD 1999 root@shuttle.svib.ru:/mnt/usr/src/sys/compile/SHUTTLE i386 >Description: I can't compile AbiWord, it fails on Linking AbiWord.... /usr/libexec/elf/ld: cannot open -ldl: No such file or directory gmake[3]: *** [AbiWord] Error 1 gmake[3]: Leaving directory `/mnt/usr/ports/editors/AbiWord/work/abi-0.5.5/src/wp/main/unix' etc. >How-To-Repeat: Try to build AbiWord >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 Tue May 11 3:10: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BA61615973 for ; Tue, 11 May 1999 03:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA66282; Tue, 11 May 1999 03:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from icc.surw.chel.su (surw.chel.su [195.54.2.162]) by hub.freebsd.org (Postfix) with ESMTP id 3883C15973 for ; Tue, 11 May 1999 03:08:29 -0700 (PDT) (envelope-from andy@icc.surw.chel.su) Received: (from andy@localhost) by icc.surw.chel.su (8.9.2/8.8.8) id OAA04471; Tue, 11 May 1999 14:08:28 +0400 (MSD) (envelope-from andy) Message-Id: <199905111008.OAA04471@icc.surw.chel.su> Date: Tue, 11 May 1999 14:08:28 +0400 (MSD) From: Andrey Zakhvatov Reply-To: andy@icc.surw.chel.su To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11644: Update port: games/xquarto Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11644 >Category: ports >Synopsis: Update port: games/xquarto >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 May 11 03:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Andrey Zakhvatov >Release: FreeBSD 3.1-RELEASE i386 >Organization: South Ural Railway ICC >Environment: >Description: This is a patch to update games/xquarto port. diff -Nru xquarto/Makefile xquarto-1.0/Makefile --- xquarto/Makefile Thu Sep 17 14:49:47 1998 +++ xquarto-1.0/Makefile Tue May 11 14:03:22 1999 @@ -8,7 +8,7 @@ DISTNAME= xquarto-1.0 CATEGORIES= games -MASTER_SITES= http://www.math.kth.se/~mjo/games/xquarto/ +MASTER_SITES= http://www.math.lsa.umich.edu/~mattiasj/games/xquarto/ MAINTAINER= andy@icc.surw.chel.su diff -Nru xquarto/pkg/DESCR xquarto-1.0/pkg/DESCR --- xquarto/pkg/DESCR Fri Mar 13 12:32:01 1998 +++ xquarto-1.0/pkg/DESCR Tue May 11 14:02:50 1999 @@ -14,5 +14,5 @@ then has to place this piece somewhere and choose a piece for player 1 to put somewhere etc. - Any suggestions, bug reports, complaints etc. should be sent to -mjo@math.kth.se. Feedback is appreciated! + +WWW: http://www.math.lsa.umich.edu/~mattiasj/games/xquarto/ >How-To-Repeat: >Fix: Please, check and apply this patch. >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 May 11 6:20: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 336A915039 for ; Tue, 11 May 1999 06:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA50611; Tue, 11 May 1999 06:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from abduction.xfiles.org.uk (abduction.xfiles.org.uk [194.200.230.244]) by hub.freebsd.org (Postfix) with ESMTP id 43F5715992 for ; Tue, 11 May 1999 06:11:07 -0700 (PDT) (envelope-from stephene@abduction.xfiles.org.uk) Received: (from root@localhost) by abduction.xfiles.org.uk (8.9.2/8.9.2) id OAA49471; Tue, 11 May 1999 14:11:11 +0100 (BST) (envelope-from stephene) Message-Id: <199905111311.OAA49471@abduction.xfiles.org.uk> Date: Tue, 11 May 1999 14:11:11 +0100 (BST) From: stephene@xfiles.org.uk Reply-To: stephene@xfiles.org.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11646: ORBit-0.4.3 port broken Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11646 >Category: ports >Synopsis: ORBit port fails to build >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: Tue May 11 06:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Stephen Earl >Release: FreeBSD 3.1-RELEASE i386 >Organization: >Environment: abduction# printenv USER=stephene MAIL=/var/mail/stephene HOME=/root PAGER=more LOGNAME=stephene TERM=xterm BLOCKSIZE=K PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/bin:/usr/X11R6/bin:/home/stephene/bin DISPLAY=:0.0 SHELL=/bin/csh PWD=/usr/X11R6/share/enlightenment/themes MANPATH=/usr/share/man:/usr/X11R6/man:/usr/local/man EDITOR=/usr/bin/ee EVERSION=0.15.5 EROOT=/usr/X11R6/share/enlightenment EPID=218 ETHEME=/usr/X11R6/share/enlightenment/themes/ShinyMetal ETERM_THEME_ROOT=/usr/X11R6/share/Eterm/themes/Eterm COLORFGBG=15;default;0 WINDOWID=20971524 COLORTERM=Eterm-pixmap Libtool is installed in /usr/local/bin/libtool >Description: gmake[2]: Entering directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/libIDL' /bin/sh ./mkinstalldirs /usr/local/lib /bin/sh ./libtool --mode=install ../ libIDL.la /usr/local/lib/libIDL.la ../ .libs/libIDL-0.6.so.4 /usr/local/lib/libIDL-0.6.so.4 eval: ../: permission denied gmake[2]: *** [install-libLTLIBRARIES] Error 126 gmake[2]: Leaving directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/libIDL' gmake[1]: *** [install-am] Error 2 gmake[1]: Leaving directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/libIDL' gmake: *** [install-recursive] Error 1 *** Error code 2 Stop. *** Error code 1 Stop. *** Error code 1 Stop. >How-To-Repeat: undertake a 'make install' on the port from the top level. >Fix: wish I knew :-) >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 May 11 6:30: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EBA7714FC0 for ; Tue, 11 May 1999 06:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA67630; Tue, 11 May 1999 06:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id CA31714D15; Tue, 11 May 1999 06:29:16 -0700 (PDT) Message-Id: <19990511132916.CA31714D15@hub.freebsd.org> Date: Tue, 11 May 1999 06:29:16 -0700 (PDT) From: rmiya@cc.hirosaki-u.ac.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11647: New port: biology/deft (Density Functional Molecular Orbital Calculation) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11647 >Category: ports >Synopsis: New port: biology/deft (Density Functional Molecular Orbital Calculation) >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 May 11 06:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ryo MIYAMOTO >Release: 2.2.8-RELEASE >Organization: Hirosaki Univ. >Environment: >Description: I submit a new port of biology/deft, Density Functional Molecular Orbital Calculation. >How-To-Repeat: >Fix: tar ball (tar + gzip + uuencode) is following: begin 640 deft-port.tar.gz M'XL(`-6Z-3<``^U;;7/B.!*>K^A7]%2HJQDF-M@8F%"3J6$3DN4VA!2PMW/W M)65L&7RQ+9]?EF&G\M]7LC$8`K*Y"^S6GKMF8I`>/7IIM=1J9!T;0?7-<064 M6JO1@#<`4JM18T\JR7/Y!9HMJ5&O-R1%HK!:7:F_@<:1VQ5)Z`>J!_#&L\V% MRL'-9QA;IVC0:45G^C=,"_O'FP7Y]-]4FC*=!,T6A4E*4RGT?PI)Z;^O/F'V M261IKUF'5*LU%66__JFQQ_J7I*;<8/:O2+7&&ZB]9B/VR?^Y_L_0&22*!X-X M<(UOQN@,C3O#V^X8+J/O(OZ&-71S<]>Y'=$D82"#8*N6.74$G8036E*X=S[6 M9'270-!H>#5J^S/ZT?*A(AIH\,/?64;Y790C&I8^0:EEM*'^/:WM&:/61 MI;(BSZA4_GYS]4R_QN3/208(!,I?$-(LK#IM5/)L$(Q59HKSCQ[B/[6D[-_6 MC[3@9MD_M)+UOZ%(%`"2+$ER8?^GD/YU`]XQ&W^415FD0R'^ZSTUTPENR;B& M<;U5UR871K-1TU6UKC8:-:Q?2'6Y,*J_B*3LG\V"H]1![9_G_TGU5B.V_WJK M)+ M`+#SOU++$_^16HK$SG]2JSC_GT8V]!\]!94W#/^-1/[_?OU+;'(D^J?"/()& M5NJLQ`6J;`K[#M*Y5(/H&\`9>@MG=#6G:[SI0S##X,^P M946AB`U/A$$!*'JG/_+CH-^M)L>85?O6Z"TW91._AFU[)[[F,9-8>B>T>H#= M'@K`#A^%C1;MJP3T@X`^P*:OE?3]@%[*>SNTW^_:V[=-S^O0ONW4Z\4Y]=Z7 MBF7%.'Y.U,D=CI)/0D_#4=,A+#?K][?Y0` M0&;\KRDG\;]&K1G%_V2I5NS_IY!K[/AFL``C=+3`)(YJ@4TLK(46'17B3A59V?_#76]TG/!_EOVW6@UER_^3:\UZ8?^G$'8@7?_$GWQ# MFX?(ZK#;N>YW'^],=6):=)'8SH\#VUN)T4%'U'\U=V>X>PH$^-O+#*HDR]K- M%6?M8HMS=O"MXA?2>5W03<,*B49@H*@_7)!?7))-K864I M;XWB>=WT36MA/6+JEWAAFC,CBX'Q/%XZ=]AY*]<$WL;FY^6/Z38V/R]_;+>Q^7GU`WCU`WCY>MO&YNX.WMGQ"R*_R0O`!PIQI`1_Y'K/SO]P7@` MGZ+1_J)IXLSTB*\^F4(HJIKX;_=S=`>UW-/+[.[I=6\TON_TNY>EU5V-AY]N MXQ0V\/G]564^#X#0B[Q`T$CCF%.0P^WV5LM5P_L-96;WEUW%)79>/\*(BY* MNTZG)!X6EF&MB&'8?P;!8R^]/`R[-[VOS]N7/RBF'S5H/T0T#7A+:Z0[GO[N M?O`P&(ZO!U>C]SG*KM<;$3NZ:2"DDXWV]>Y'X\[=W>/#<'`[[/2?4YU:WXA8 ML[/H8[K8Z&K8>Q@O2T5#5/Z>S(CGS4M(');KSKBSCR.^4;JW?TNUK;K$&ZL\ MU6V'43DUYV2,0Z85>`VF.%SZ&EPKU?#(5J#53-X_D3>575G--]%T-"O4,7R: M^+K(5C'1?OI<_#142"&%%%)((8444D@AA1122"&%%%)((;'\#CQD)@@`4``` ` 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 May 11 6:40: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CBA1D15023 for ; Tue, 11 May 1999 06:40:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA77371; Tue, 11 May 1999 06:40:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from numeri.campus.luth.se (numeri.campus.luth.se [130.240.197.103]) by hub.freebsd.org (Postfix) with ESMTP id 54EA315039 for ; Tue, 11 May 1999 06:30:54 -0700 (PDT) (envelope-from k@numeri.campus.luth.se) Received: (from k@localhost) by numeri.campus.luth.se (8.9.3/8.9.3) id PAA74359; Tue, 11 May 1999 15:31:12 GMT (envelope-from k) Message-Id: <199905111531.PAA74359@numeri.campus.luth.se> Date: Tue, 11 May 1999 15:31:12 GMT From: Johan Karlsson Reply-To: k@numeri.campus.luth.se To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11648: gettext-0.10.35 fails in make install Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11648 >Category: ports >Synopsis: gettext-0.10.35 fails in make install >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue May 11 06:40:03 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Johan Karlsson >Release: FreeBSD 3.2-BETA i386 >Organization: >Environment: FreeBSD Stable cvsup/build 990510 ports cvsup 990510 >Description: make install of ports/devel/gettext fails when generating package list. numeri# make install ===> Installing for gettext-0.10.35 ... ===> Generating temporary packing list install-info: Undefined error: 0 for /usr/local/info/dir *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. >How-To-Repeat: see description >Fix: don't know how packing lists are generated :-( >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 May 11 6:40:13 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 464CF15052 for ; Tue, 11 May 1999 06:40:07 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA77401; Tue, 11 May 1999 06:40:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 53D8314FC0; Tue, 11 May 1999 06:33:43 -0700 (PDT) Message-Id: <19990511133343.53D8314FC0@hub.freebsd.org> Date: Tue, 11 May 1999 06:33:43 -0700 (PDT) From: rmiya@cc.hirosaki-u.ac.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11649: New port: biology/ortep3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11649 >Category: ports >Synopsis: New port: biology/ortep3 >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 May 11 06:40:05 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ryo MIYAMOTO >Release: 2.2.8-RELEASE >Organization: Hirosaki Univ. >Environment: >Description: I submit a new port of biology/ortep3, the Oak Ridge Thermal Ellipsoid Plot Program for Crystal Structure Illustrations. >How-To-Repeat: >Fix: tar ball (tar + gzip + uuencode) is following: begin 644 ortep3-port.tar.gz M'XL(`#:D-C<``^U<>W/BQK+??\VGF%1\`C@@].!ANT(2UN`--\:X@,UN3J5J MCQ`#*"LD11(VG"U_]]NCT5M"$E[;N:FKKEV#9GJZ9[I[>F9^$M(,"^M"X\U+ M$FJRG58+O4&(Z[18\@GD?CH7J-WA6GRKR7,=8&/;3>X-:KUHKQS:FI9H(/3& MV,A[,87O88VQ\AH=>EW2J/]'XF>\E!7\(CHX%OS9/.A_OMT67/\+G2;Q/]_D MFF\0^R*]B=#_<_]_BV[Q`](A#$PD:8J")4O65+1QX@$M->/R9#R9#>[JP^&P M]"WZ#1LFX3#P7UO9P(O+$XYAH;PO6AA)!H8/*#OA+BXNZFRKSIY#W8>UMH&R MD\E>0Z/A[[W1>#8N?0L5I\/%*7PI]8?3V6UO-.@B.QY+=[^^"UP*=:+BJC<; MO!M/AH-I%\UE3=%6^]*H-YT-)I^FPQDI75KZ9:,!?QE)4A@56PU].V](:[R1 M3?KE#A1-^\/)8V-EB/I:ELP&92F5=`/7==&2UI>ED],O5W>/ MZ/3+]?!F0-G=>3\=W+V[ MNQG/JDG";;5U483"N][LZA>[,(5Q'F9DL+J0ES`"S;3<(1Q6/AD]AIJ[RE/J MYIZ*A5:?;V5E`3:J2(O#5D#??0>5H]ZO@TK7)'066I!K9(OY6J8&WHD;7<%F/NZ-J.9CA!'9IO/' M?_IE>#N=]6YN/MU-QN\F/=ONZ<8(*)C+:E!$OS?K'6KOCJAQAOXHG=`\G],` M><2#"7)*=HR51R@9,\NRD,(6&\Q8.RN7`F+DG`HF@UY_-&`X,Y?D$DPF55*V M"XQ^F)L+AN1H9O/YQ]*SYG]G%/:,`W<]JVR7R/ZOR>;8_[%"A^[_>+Y=[/]> MA1S_DY7CA;Q_Q/Z?Y7FVU08VKB.T"O^_!H7\OUF\B,DS]O_@^Y;C?TYH`B/9 M_[/%_O]5:-1OH8H=!'2_6T5=)''G0HN#E-W&"_'\O-44+B[X\P[;Y!>B!%/Y M>5>@@OY."LU_=T_^S#K2YS_?:K>:;OX78.4'-J'9[A3S_S7H[.P,>9M]9GDR MVV+4T\$@/&*Y2Z%Y"?LQ.,NW2_5Z//92:%WR/.&_ M*)V%B5RCEM#D:RVAW49V$4(2^8+Z[T>CW]'T:C(8W*+Q^]G=^QFJC'J_H[<# M-!G7I3X:_#2;H:MP?5%TI7T<@I?2-LQJ9V[FA;2TXPR)9 ME2U3\FH,;&T-U;N$PRE\3VJG8_7!E"KDHWI\:TE3#&@MPZ=F/*$]J(7FN]J^ M)L/7)PB`FO11@[55(?(A%TO`PWB%):OF(8)5Q#6'7:M5:K=>ZG M(T*:@>YE$>'Z1I059&G(^E/_630M0V,D4;&PM&;P8LN@Y^E8((`.QX^T%@U1 MLK!QQK'$+`M\[]=IFXVFHH9J-I"J+VOJPA`?:JIFR%BU:NJ]:'BLLFKA%3:0 MOIKCE3=>KWKW("^Z',=X!?OURNJ>,RV?U777;$V@8471'F1UA623X,2(HGT( M.B.JZ&,=JA;:@XG,O6GAC2^5]A_VF>7&QP_#V_[X0_D(N:-IO3^>>D)17.AH MFE\>K%T26$4SUZD2>U?EH*,TF!058FO8.UA;LUN&@"5;IW(UR"4O4<6V=(6M ME5&YQM6X*F)4S"#XA$A2$-[)EKJJG%?=F6!'P8,,HM!<$:7/,.`%>EC+%O;= M31KJ*]`(8CF&_JLF57,UEJ'_PO*QA;8Z(E%";$*]%&VOBZN8RK^D=44SY?_B M!&WK"AOOQ+UI+:)E#ZJX`-X:B372.1)BB?*2-NC0K?*S4P))5X5BF68/HKYTS//QOQ;@LO+.Y6E`KU,J#C\-9V.&1%.=D MN(39' MDBA`4Y>J"X4S*6+P7PQ;I2R<5TN:VRU"_+8*TL"->.H7PE=-9KRHH@<#XAW9 M\XOC.*K)9H8K,K"-:%7*5^,;\F=O^H276M2'D6'5EU\&<6%CKJ'$W M6#2W!C9]#N(9GF6MM4F6+LA-LBJMGV1NTI.N"HFHPK`L=T8NST`R$S:2S<8H MV#:_W81+J%]9##1U.>!KID>4!]KT")<0]IA//@S[U"?"TWP2VG*XUM]H]QA9 M:YLA9EO+6(I2`^TL0U3-VM[^.,8!D6Q--),1\U6B,;!9.6@[4E+9?>]VX'O: MA>K!E@FVC+7V[`KDFO9F>%NN\14P[A(R4+M:#5H45"0.0\@]#&+DKQD&?W@8 M?'`8H_%OZ<-X2C8-;S2/\[H]?FEKF$$)BF9B,C!OV21Q:&'@W)JP>X(=(:S( MZ`>0AXT?T6>\3UI[$E8D6'OB*Y*]]G1@44E;>HY>S)XFT%[A.DR;+G"_D$%. M!K/WD]L?R:;XA\'M;#"Q!QQ>]YS6$0_E7PVI^;T\K!D&5LC3!,XQ@-2#>AUV M!/:S";`_6B/1TC9>D6GODQ:RJ2OB'A2;6\4*Y`%W\XR"V=G;4?,<@KU]PAZ9 MZ$W@;R-%G&.E)MH?"0P7$"$;V-V(]L>SYZQO8H9/#BQ36B:6KBL<$XKL%6P9 M(C:F9%F+F? MS+QC5I@A&S/$@(<9M".K'\2U<[DGU1#BWJ5"+EN)HF3B(-!>M3.?X/$$#$$. M7;*HH'M1V6)Z5`"#R^*)"7BYW4,2P;;X5+M[' MBC67FS8+E^_=\H!T.Z;(H02Y5/8K[8CT*\L!`RCB"BK\O8`:*`E,67(:H*G/ M*>;M8M$NK`DUF,7=9M69`33,=Q`5M(,"\C(]!RE>;-<$^'M1:^YJ_/*<"61$ M;]1S"*I='6P:KML[=?M]?1^L(XZTVQ)/.Y:FOK=;>:7[*AU@U_[[/9S?HX+!_(ZOY2B.K#>\ZH^F,P!Z5LP^WU^$* M9+`:Q'UX`^=R<4&N=M7I;S0_^4U@!QEJTDEJTO*=7;Z%,XN*18-F9&,O4 M:VV?#>*!1,4%K>C$*^"4_#WZZ:=R*#MA0S0Q(HL:;,^5A'/PD4LMG#EYYMQ? M&%T]!B:I%N&-;NW3U1VU$,?5>1IU`]8::C)9I:8@RYNL'E9O+]`LP]D+-+@F ME(IIL'#!HF20S3G0F#J6Y*4L(6&UESDLH_&%ES1I"!K"$O53TGLH;"4SR*K,6JCT360NT= M9"U4%D+6(MI<9"U4["!KH;)#R%I,7K*F5&0M(L/)@>%2-P>&2@\B:R&N%&2- M4O(MJ.Q;9R^.K#G#.")1A)`U/YR3D#5*063-Y\]`UA(8#R-K*`59.]+^+XRL M'6_N-&0M8/U$9"U:GX2LI7LDB*SE=(F#K*$49.UXG^1!UL*V/7!*S>V`2+:. M(VL>'8VL);?,B:RA/,B:9U&Z%X\/0\@]C,/(6KYA'$#64!YD+32,IV33\',` MQWD]C*PY94]!U@+B`MO]<*F[W0^5'@+"8@*/6LR>)O!H9"W4.N*A_*OABR%K M3O?"R%JDT$?6G#B/(FM1_ABR%F6((6OAP/S:G/5-S/#)@>4A:Y'2G,@:RD+6 M''/E0]9BS&G(FL_\UC%$'6*,60-70$LH9R(6N4DI$UORZ.K/F.?"*REB`@%[+F M40Q9\VNBR)I',60M7!-$UBA%5O,0LH9R(6O^.',C:]$F.9`UE`]90X>0-?05 MR!JEIRZU1R-K,75'+<1?C:R%1!Y`UH+!P@6+_@YD[26>_TUZ_GO^S#JR?O_1 MYGGW^>\.W^+MY[^YXOGO5Z$SY_EO]^?#D0>Z>>&2Y>@#W>X#X-Y/DI.?`.]< M-KG#3X`+M0OW87U]TWLW[:+ZF.3H&WI%9QSY M*2LZ_0(-'N'JY/3+]=6C; M;?+[KV:[PQ?S_S7H6S0*O.K!AH/\MSV4:$RZKV$HA>9-:-8$YXP[64O!X/=" M/RGF7::2(^[24^(UNW:;2>CTAU))4K"H7I9.C`VJ+]$9\_=-H'\XN;___KQZ MN7<`Y?[]-T]^`L!1S? MXHK\_RI$;N..Q<]H(B]6F-S4A<.2@@:*(NNF!H?R.[+#N3.TE2%N[!7BRMB3 MMXF@J65L)6MK8%0DW'\P!>9_?S"]FKR$CHSYSW'N^0_R?TNPYS_?$8KY_QKD M;?9J=._WA%10\E/!4%'`GH9(;QW()LB$/YJ*F5*IPE7MAT9T*J&&W)?^U.Q[ M#)JJD%L6"TW:;K!J4<1&).D%3E'WHJP0L)@\64*Z^>'#!V22NV2B52J1&%I; M]KN_'AX>X.RB*LQ*NW?>ZD5WDFMKHT`7^"H:+M%>VR))5,D])_0?>H@K(]%T M[XJXSV\XX`T89J]#-VP]_[+?C(:\5UMU]]@$N8(GE_18!3LMQ8VLR/2>EJNC M1FKH+5?OR1GSD@A^B\&>V!9`.N6\>,<,N%<:8C&OD;,86Q5E!`#FMC"ZKT#07WJ#WZ#(;F==KB_\_$_>.T+ROT#> M_UGD_Y>GN:RZ[QN+O=K,?U]9O,Y[P1O+LI`"\,Y^85H*7V\V'DV9?F^6QD0T M#F^9ZRP>Z-7-[]-Q&INXQHJ\8Q9B:J\@TDW4YDV>_)T0Z9"ARU#H\.5 MKG+.\5GJ"$NZ*L*1H4:2,M605V*FJP&.##58_:^VW!JBFJG-Y\Q0ZC.FZY:V MF(INV6/+ MT@K=D\GY-'/80=8LW3YGNOH=5G-H=KC2E3I,1-_/"]DP-NCP.W63WHD;?M%M M,@MY;;!A;C>@Y:`2\GK=I%?B1N0?:DY>GGN@KCA'%E1000455%!!!1544$$% 9%51000455%!!!154T)/I?P$;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 May 11 6:40:14 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CD66714FC0 for ; Tue, 11 May 1999 06:40:11 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA77466; Tue, 11 May 1999 06:40:11 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 May 1999 06:40:11 -0700 (PDT) Message-Id: <199905111340.GAA77466@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jeremy Lea Subject: Re: ports/11646: ORBit-0.4.3 port broken Reply-To: Jeremy Lea Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11646; it has been noted by GNATS. From: Jeremy Lea To: stephene@xfiles.org.uk Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/11646: ORBit-0.4.3 port broken Date: Tue, 11 May 1999 15:36:29 +0200 Hi, On Tue, May 11, 1999 at 02:11:11PM +0100, stephene@xfiles.org.uk wrote: > >Synopsis: ORBit port fails to build > > >Description: > > gmake[2]: Entering directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/libIDL' > /bin/sh ./mkinstalldirs /usr/local/lib > /bin/sh ./libtool --mode=install ../ libIDL.la /usr/local/lib/libIDL.la > ../ .libs/libIDL-0.6.so.4 /usr/local/lib/libIDL-0.6.so.4 > eval: ../: permission denied > gmake[2]: *** [install-libLTLIBRARIES] Error 126 > gmake[2]: Leaving directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/libIDL' > gmake[1]: *** [install-am] Error 2 > gmake[1]: Leaving directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/libIDL' > gmake: *** [install-recursive] Error 1 > *** Error code 2 Your port is broken. patch-ae fixes this problem. Try updating the port, or checking patch-ae against the CVS tree from the web. -Jeremy -- | What will people think when they hear that I'm a Jesus freak? --+-- What will people do when they find that it's true? | I don't really care if they label me a Jesus Freak, | There ain't no disguising the truth. - d c Talk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 11 7:18:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from bsd.mbp.ee (bsd.mbp.ee [194.204.12.74]) by hub.freebsd.org (Postfix) with ESMTP id 6FF2D15A4C for ; Tue, 11 May 1999 07:17:56 -0700 (PDT) (envelope-from mauri@aripaev.ee) Received: from lant.mbp.ee (lant.mbp.ee [194.204.12.41]) by bsd.mbp.ee (8.9.3/8.9.3) with ESMTP id RAA01272 for ; Tue, 11 May 1999 17:17:50 +0300 (EEST) (envelope-from mauri@aripaev.ee) Received: by lant.mbp.ee with Internet Mail Service (5.5.2232.9) id ; Tue, 11 May 1999 17:19:23 +0300 Message-ID: <554419C71610D211B3F808003636280213B03C@lant.mbp.ee> From: Lauri Laupmaa To: "'ports@freebsd.org'" Subject: new mergemaster Date: Tue, 11 May 1999 17:19:22 +0300 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2232.9) Content-Type: text/plain; charset="windows-1257" Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi i get: cd /usr/src/etc/mail; install -c -o root -g wheel -m 644 Makefile = README sendmail.cf.additions /var/tmp/temproot/etc/mail install: sendmail.cf.additions: No such file or directory *** Error code 71 Stop. *** FATAL ERROR: Cannot 'cd' to /usr/src/etc and install files to the temproot environment bash-2.03#=20 ______________ Lauri Laupmaa =C4rip=E4ev mauri@mbp.ee Ph. +372 66 70 369 +372 50 13 369 Fx. +372 66 70 165 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 11 7:40: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F3AE214DF8 for ; Tue, 11 May 1999 07:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA10705; Tue, 11 May 1999 07:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 May 1999 07:40:02 -0700 (PDT) Message-Id: <199905111440.HAA10705@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jeremy Lea Subject: Re: ports/11648: gettext-0.10.35 fails in make install Reply-To: Jeremy Lea Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11648; it has been noted by GNATS. From: Jeremy Lea To: Johan Karlsson Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/11648: gettext-0.10.35 fails in make install Date: Tue, 11 May 1999 16:30:20 +0200 Hi, On Tue, May 11, 1999 at 03:31:12PM +0000, Johan Karlsson wrote: > >Synopsis: gettext-0.10.35 fails in make install > >Description: > > make install of ports/devel/gettext fails when > generating package list. > > numeri# make install > ===> Installing for gettext-0.10.35 > ... > ===> Generating temporary packing list > install-info: Undefined error: 0 for /usr/local/info/dir > *** Error code 1 This is only hitting you, since it builds fine in http://bento.freebsd.org/errorlogs/. Firstly, do you have a file named /usr/local/info/dir? and do you have a file named /usr/share/info/dir? The second you should always have, the first should have been created by a new feature in bsd.port.mk, before the pre-install target. The port also tries to make this file, as part of post-install. The only two places which 'install-info' occurs is in bsd.port.mk, as part of the generate-plist target, but it should not be run there, since it is put of a sed expression. Then it occurs in the gettext Makefile, where it installs the info file. This is most likely where it is failing. Why is anyone's guess, but the first four lines of the post-install target in gettext/Makefile are no longer needed. Please delete them and see if they fix your problem. Regards, -Jeremy -- | What will people think when they hear that I'm a Jesus freak? --+-- What will people do when they find that it's true? | I don't really care if they label me a Jesus Freak, | There ain't no disguising the truth. - d c Talk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 11 7:50: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C453514E48 for ; Tue, 11 May 1999 07:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA18619; Tue, 11 May 1999 07:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 May 1999 07:50:02 -0700 (PDT) Message-Id: <199905111450.HAA18619@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Johan Karlsson Subject: Re: ports/11648: gettext-0.10.35 fails in make install Reply-To: Johan Karlsson Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11648; it has been noted by GNATS. From: Johan Karlsson To: Jeremy Lea Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/11648: gettext-0.10.35 fails in make install Date: Tue, 11 May 1999 16:42:46 +0000 At Tue, 11 May 1999 16:30:20 +0200, Jeremy Lea wrote: >Hi, > >On Tue, May 11, 1999 at 03:31:12PM +0000, Johan Karlsson wrote: >> >Synopsis: gettext-0.10.35 fails in make install >> >Description: >> >> make install of ports/devel/gettext fails when >> generating package list. >> >> numeri# make install >> ===> Installing for gettext-0.10.35 >> ... >> ===> Generating temporary packing list >> install-info: Undefined error: 0 for /usr/local/info/dir >> *** Error code 1 > >This is only hitting you, since it builds fine in >http://bento.freebsd.org/errorlogs/. Firstly, do you have a file named >/usr/local/info/dir? and do you have a file named /usr/share/info/dir? > The first exist but: k@numeri ~ >ll /usr/local/info/dir -rw-r--r-- 1 root wheel 0 Dec 18 12:41 /usr/local/info/dir The second: k@numeri ~ >ll /usr/share/info/dir -r--r--r-- 1 root wheel 3180 May 10 20:55 /usr/share/info/dir >The second you should always have, the first should have been created by >a new feature in bsd.port.mk, before the pre-install target. The port >also tries to make this file, as part of post-install. > >The only two places which 'install-info' occurs is in bsd.port.mk, as >part of the generate-plist target, but it should not be run there, since >it is put of a sed expression. Then it occurs in the gettext Makefile, >where it installs the info file. This is most likely where it is >failing. Why is anyone's guess, but the first four lines of the >post-install target in gettext/Makefile are no longer needed. Please >delete them and see if they fix your problem. > Yes it does. I will delete /usr/local/info/dir and hopefully it will be created next time it is needed. I guess this PR can be closed since nobody else has this problem. Thanks for your help. /Johan Karlsson -- Johan Karlsson mailto:k@numeri.campus.luth.se SWEDEN To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 11 8:10: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8AB9415065 for ; Tue, 11 May 1999 08:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA41637; Tue, 11 May 1999 08:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 May 1999 08:10:03 -0700 (PDT) Message-Id: <199905111510.IAA41637@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jeremy Lea Subject: Re: ports/11648: gettext-0.10.35 fails in make install Reply-To: Jeremy Lea Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11648; it has been noted by GNATS. From: Jeremy Lea To: Johan Karlsson Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/11648: gettext-0.10.35 fails in make install Date: Tue, 11 May 1999 16:59:32 +0200 Hi again, On Tue, May 11, 1999 at 04:42:46PM +0000, Johan Karlsson wrote: > The first exist but: > k@numeri ~ >ll /usr/local/info/dir > -rw-r--r-- 1 root wheel 0 Dec 18 12:41 /usr/local/info/dir There's the problem... This file should at least have some stuff in it (which is the whole point of all the work in bsd.port.mk and (previously) the Makefile). Something must have stood on it... glib might have done this, since it was broken. > I will delete /usr/local/info/dir and hopefully it will be created next time > it is needed. > > I guess this PR can be closed since nobody else has this problem. Yip. Pleasure to help. -Jeremy -- | What will people think when they hear that I'm a Jesus freak? --+-- What will people do when they find that it's true? | I don't really care if they label me a Jesus Freak, | There ain't no disguising the truth. - d c Talk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 11 11:30: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C82821501D for ; Tue, 11 May 1999 11:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA65557; Tue, 11 May 1999 11:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hermes.vmunix.dk.eu.org (unknown [195.192.213.120]) by hub.freebsd.org (Postfix) with ESMTP id 884AC14F89 for ; Tue, 11 May 1999 11:29:45 -0700 (PDT) (envelope-from sst@hermes.vmunix.dk.eu.org) Received: (from sst@localhost) by hermes.vmunix.dk.eu.org (8.9.2/8.9.2) id UAA47701; Tue, 11 May 1999 20:30:48 +0200 (CEST) (envelope-from sst) Message-Id: <199905111830.UAA47701@hermes.vmunix.dk.eu.org> Date: Tue, 11 May 1999 20:30:48 +0200 (CEST) From: sst@hermes.vmunix.dk.eu.org Reply-To: sst@hermes.vmunix.dk.eu.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11652: Semi-new port: net/dictd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11652 >Category: ports >Synopsis: New port (net/dictd) >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 May 11 11:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Sune Stjerneby >Release: FreeBSD 3.1-RELEASE i386 >Organization: Koege Gymnasium, Koege, Denmark >Environment: FreeBSD hermes.koege-gym.dk 3.1-RELEASE FreeBSD 3.1-RELEASE #0: Sun May 2 17:19:29 CEST 1999 root@hermes.koege-gym.dk:/usr/src/sys/compile/HERMES i386 >Description: We were in need of a local dict-service (on a non-routed net), thus this modification of net/dict to include dictd and dictzip. It will install a sample dictd.conf with /usr/local/share/dict as a base for dictionary data. >How-To-Repeat: n/a >Fix: n/a ports/net/dictd: # 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: # # dictd # dictd/files # dictd/files/md5 # dictd/patches # dictd/patches/patch-aa # dictd/patches/patch-ab # dictd/patches/patch-ac # dictd/patches/patch-ad # dictd/patches/patch-ae # dictd/pkg # dictd/pkg/COMMENT # dictd/pkg/DESCR # dictd/pkg/PLIST # dictd/pkg/MESSAGE # dictd/Makefile # echo c - dictd mkdir -p dictd > /dev/null 2>&1 echo c - dictd/files mkdir -p dictd/files > /dev/null 2>&1 echo x - dictd/files/md5 sed 's/^X//' >dictd/files/md5 << 'END-of-dictd/files/md5' XMD5 (dictd-1.4.9.tar.gz) = 90e69ac4783b8836dbe98f8367b5f391 END-of-dictd/files/md5 echo c - dictd/patches mkdir -p dictd/patches > /dev/null 2>&1 echo x - dictd/patches/patch-aa sed 's/^X//' >dictd/patches/patch-aa << 'END-of-dictd/patches/patch-aa' X--- configure.orig Mon May 10 22:24:24 1999 X+++ configure Mon May 10 22:25:41 1999 X@@ -549,8 +549,8 @@ X X X X-prefix=/usr X-etcdir=/etc X+#prefix=/usr X+etcdir=$prefix/etc X piddir=/var/run X X echo Configuring for dict END-of-dictd/patches/patch-aa echo x - dictd/patches/patch-ab sed 's/^X//' >dictd/patches/patch-ab << 'END-of-dictd/patches/patch-ab' X--- Makefile.in.orig Mon Jul 6 00:09:59 1998 X+++ Makefile.in Tue May 11 00:06:18 1999 X@@ -141,16 +141,17 @@ X $(CC) -c $(XTRACFLAGS) $(CFLAGS) -Wno-implicit $< X X install.dict: dict X- install dict $(bindir) X- install -m 644 dict.1 $(man1_prefix) X+ $(INSTALL) -m 755 -o bin -g bin dict $(bindir) X+ $(INSTALL) -m 644 -o bin -g bin dict.1 $(man1_prefix) X X install.dictzip: dictzip X- install dictzip $(bindir) X- install -m 644 dictzip.1 $(man1_prefix) X+ $(INSTALL) -m 755 -o bin -g bin dictzip $(bindir) X+ $(INSTALL) -m 644 -o bin -g bin dictzip.1 $(man1_prefix) X X install.dictd: dictd X- install dictd $(sbindir) X- install -m 644 dictd.8 $(man8_prefix) X+ $(INSTALL) -m 755 -o bin -g bin dictd $(sbindir) X+ $(INSTALL) -m 644 -o bin -g bin dictd.8 $(man8_prefix) X+ $(INSTALL) -m 644 -o bin -g bin dictd.conf $(prefix)/etc/dictd.conf.default X X install: $(EXES) install.dict install.dictzip install.dictd X END-of-dictd/patches/patch-ab echo x - dictd/patches/patch-ac sed 's/^X//' >dictd/patches/patch-ac << 'END-of-dictd/patches/patch-ac' X--- dict.1.orig Mon May 10 22:32:44 1999 X+++ dict.1 Mon May 10 22:32:53 1999 X@@ -237,7 +237,7 @@ X .SH FILES X .I ~/.dictrc X .br X-.I /etc/dict.conf X+.I /usr/local/etc/dict.conf X .SH "SEE ALSO" X .BR dictd (8), X .BR dictzip (1), END-of-dictd/patches/patch-ac echo x - dictd/patches/patch-ad sed 's/^X//' >dictd/patches/patch-ad << 'END-of-dictd/patches/patch-ad' X--- dictd.8.orig Mon May 10 22:31:44 1999 X+++ dictd.8 Mon May 10 22:32:23 1999 X@@ -620,9 +620,9 @@ X There is no way to get a running server to re-read the configuration file, X so databases cannot be added or deleted on the fly. X .SH "FILES" X-.I /etc/dictd.conf X+.I /usr/local/etc/dictd.conf X .br X-.I /usr/lib/dictd X+.I /usr/local/share/dict X .SH "SEE ALSO" X .BR dict (1), X .BR dictzip (1), END-of-dictd/patches/patch-ad echo x - dictd/patches/patch-ae sed 's/^X//' >dictd/patches/patch-ae << 'END-of-dictd/patches/patch-ae' X--- dictd.conf.orig Sun Feb 22 19:53:29 1998 X+++ dictd.conf Mon May 10 23:53:11 1999 X@@ -1,16 +1,16 @@ X-database web1913 { data "/usr/lib/dict/web1913.dict.dz" X- index "/usr/lib/dict/web1913.index" } X-database wn { data "/usr/lib/dict/wn.dict.dz" X- index "/usr/lib/dict/wn.index" } X-database gazetteer { data "/usr/lib/dict/gazetteer.dict.dz" X- index "/usr/lib/dict/gazetteer.index" } X-database jargon { data "/usr/lib/dict/jargon.dict.dz" X- index "/usr/lib/dict/jargon.index" } X-database foldoc { data "/usr/lib/dict/foldoc.dict.dz" X- index "/usr/lib/dict/foldoc.index" } X-database elements { data "/usr/lib/dict/elements.dict.dz" X- index "/usr/lib/dict/elements.index" } X-database easton { data "/usr/lib/dict/easton.dict.dz" X- index "/usr/lib/dict/easton.index" } X-database hitchcock { data "/usr/lib/dict/hitchcock.dict.dz" X- index "/usr/lib/dict/hitchcock.index" } X+database web1913 { data "/usr/local/share/dict/web1913.dict.dz" X+ index "/usr/local/share/dict/web1913.index" } X+database wn { data "/usr/local/share/dict/wn.dict.dz" X+ index "/usr/local/share/dict/wn.index" } X+database gazetteer { data "/usr/local/share/dict/gazetteer.dict.dz" X+ index "/usr/local/share/dict/gazetteer.index" } X+database jargon { data "/usr/local/share/dict/jargon.dict.dz" X+ index "/usr/local/share/dict/jargon.index" } X+database foldoc { data "/usr/local/share/dict/foldoc.dict.dz" X+ index "/usr/local/share/dict/foldoc.index" } X+database elements { data "/usr/local/share/dict/elements.dict.dz" X+ index "/usr/local/share/dict/elements.index" } X+database easton { data "/usr/local/share/dict/easton.dict.dz" X+ index "/usr/local/share/dict/easton.index" } X+database hitchcock { data "/usr/local/share/dict/hitchcock.dict.dz" X+ index "/usr/local/share/dict/hitchcock.index" } END-of-dictd/patches/patch-ae echo c - dictd/pkg mkdir -p dictd/pkg > /dev/null 2>&1 echo x - dictd/pkg/COMMENT sed 's/^X//' >dictd/pkg/COMMENT << 'END-of-dictd/pkg/COMMENT' XDictionary Server Protocol (RFC2229) server and client END-of-dictd/pkg/COMMENT echo x - dictd/pkg/DESCR sed 's/^X//' >dictd/pkg/DESCR << 'END-of-dictd/pkg/DESCR' XThe Dictionary Server Protocol (DICT) is a TCP transaction based Xquery/response protocol that allows a client to access dictionary Xdefinitions from a set of natural language dictionary databases. X XRFC 2229 describes the DICT client/server protocol. X Xdictd(8) is a server implementation, while dict(1) is a client Xwhich can access DICT servers from the command line. X Xhttp://www.dict.org/ X X X-- XSune Stjerneby END-of-dictd/pkg/DESCR echo x - dictd/pkg/PLIST sed 's/^X//' >dictd/pkg/PLIST << 'END-of-dictd/pkg/PLIST' Xbin/dict Xbin/dictzip Xetc/dictd.conf.default Xetc/rc.d/dictd.sh Xsbin/dictd END-of-dictd/pkg/PLIST echo x - dictd/pkg/MESSAGE sed 's/^X//' >dictd/pkg/MESSAGE << 'END-of-dictd/pkg/MESSAGE' XFinished installation - now go fetch the actual dictionary data at X X ftp://ftp.dict.org/pub/dict/ X XRunning a web-server? Take a look at ftp://ftp.dict.org/pub/dict/www/Dict, Xa rather nifty CGI interface to dictd. END-of-dictd/pkg/MESSAGE echo x - dictd/Makefile sed 's/^X//' >dictd/Makefile << 'END-of-dictd/Makefile' X# New ports collection makefile for: dict X# Version required: 1.4.8 X# Date created: 10 May 1999 X# Whom: Sune Stjerneby X# Remarks: Based on ports/net/dict, created out of need. X# X# $Id: X# X XDISTNAME= dictd-1.4.9 XPKGNAME= dictd-1.4.9 XCATEGORIES= net textproc XMASTER_SITES= ftp://ftp.cs.unc.edu/pub/users/faith/dict/ \ X ftp://ftp.dict.org/pub/dict/ X XMAINTAINER= sst@hermes.vmunix.dk.eu.org X XGNU_CONFIGURE= yes XUSE_GMAKE= yes XMAN1= dict.1 dictzip.1 XMAN8= dictd.8 X Xpost-install: X @if [ ! -f ${PREFIX}/etc/rc.d/dictd.sh ]; then \ X echo "Installing ${PREFIX}/etc/rc.d/dictd.sh startup file."; \ X echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/dictd.sh; \ X echo "[ -x /usr/local/sbin/dictd ] && /usr/local/sbin/dictd -s > /dev/null && echo -n ' dictd'" >> ${PREFIX}/etc/rc.d/dictd.sh; \ X chmod 751 ${PREFIX}/etc/rc.d/dictd.sh; \ X fi X X @echo "" X @echo "Finished installation - now go fetch the actual dictionary data at" X @echo "" X @echo " ftp://ftp.dict.org/pub/dict/pre/" X @echo "" X @echo "Running a web-server? Take a look at ftp://ftp.dict.org/pub/dict/www/Dict," X @echo "a rather nifty CGI interface to dictd." X X.include END-of-dictd/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 Tue May 11 11:39:46 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4E474151DA; Tue, 11 May 1999 11:39:38 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA66020; Tue, 11 May 1999 11:39:37 -0700 (PDT) (envelope-from billf@FreeBSD.org) Date: Tue, 11 May 1999 11:39:37 -0700 (PDT) From: Message-Id: <199905111839.LAA66020@freefall.freebsd.org> To: stephene@xfiles.org.uk, billf@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11646: ORBit port fails to build Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ORBit port fails to build State-Changed-From-To: open->closed State-Changed-By: billf State-Changed-When: Tue May 11 11:38:54 PDT 1999 State-Changed-Why: Please update your local copy of the port, patches/patch-ae should fix this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 11 11:42:54 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0519315159; Tue, 11 May 1999 11:42:52 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA66284; Tue, 11 May 1999 11:42:52 -0700 (PDT) (envelope-from billf@FreeBSD.org) Date: Tue, 11 May 1999 11:42:52 -0700 (PDT) From: Message-Id: <199905111842.LAA66284@freefall.freebsd.org> To: k@numeri.campus.luth.se, billf@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11648: gettext-0.10.35 fails in make install Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: gettext-0.10.35 fails in make install State-Changed-From-To: open->closed State-Changed-By: billf State-Changed-When: Tue May 11 11:42:31 PDT 1999 State-Changed-Why: Submitter notes that the problem was his local machine. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 11 15:21:29 1999 Delivered-To: freebsd-ports@freebsd.org Received: from catastrophe.gelemna.ft-wayne.in.us (fw-line-138.fwi.com [209.84.172.143]) by hub.freebsd.org (Postfix) with ESMTP id B529015903 for ; Tue, 11 May 1999 15:21:21 -0700 (PDT) (envelope-from croyle@gelemna.ft-wayne.in.us) Received: from emerson.gelemna.ft-wayne.in.us (emerson.gelemna.ft-wayne.in.us [10.23.42.2]) by catastrophe.gelemna.ft-wayne.in.us (8.8.8/8.8.8) with ESMTP id PAA05424; Tue, 11 May 1999 15:35:20 -0500 (EST) (envelope-from croyle@gelemna.ft-wayne.in.us) Received: (from croyle@localhost) by emerson.gelemna.ft-wayne.in.us (8.9.3/8.9.2) id PAA19455; Tue, 11 May 1999 15:35:40 -0500 (EST) (envelope-from croyle@gelemna.ft-wayne.in.us) To: Lauri Laupmaa Cc: ports@freebsd.org Subject: Re: new mergemaster References: Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII From: Don Croyle Date: 11 May 1999 15:35:40 -0500 Organization: Minimal at best In-Reply-To: Lauri Laupmaa's message of "Tue, 11 May 1999 17:19:22 +0300" Message-ID: <86u2tjz6n7.fsf@emerson.gelemna.ft-wayne.in.us> Lines: 19 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Lauri Laupmaa writes: > i get: > > cd /usr/src/etc/mail; install -c -o root -g wheel -m 644 Makefile README > sendmail.cf.additions /var/tmp/temproot/etc/mail > install: sendmail.cf.additions: No such file or directory > *** Error code 71 > > Stop. > > *** FATAL ERROR: Cannot 'cd' to /usr/src/etc and install files to the > temproot environment This was an etc/Makefile problem, not a mergemaster problem. It's fixed now. -- I've always wanted to be a dilettante, but I've never quite been ready to make the commitment. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 11 16:10: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CE41215A86 for ; Tue, 11 May 1999 16:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA84752; Tue, 11 May 1999 16:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from misha.cisco.com (misha.cisco.com [171.69.206.50]) by hub.freebsd.org (Postfix) with ESMTP id 396ED1506E for ; Tue, 11 May 1999 16:06:02 -0700 (PDT) (envelope-from mi@misha.cisco.com) Received: (from mi@localhost) by misha.cisco.com (8.9.2/8.9.1) id TAA29187; Tue, 11 May 1999 19:06:02 -0400 (EDT) (envelope-from mi) Message-Id: <199905112306.TAA29187@misha.cisco.com> Date: Tue, 11 May 1999 19:06:02 -0400 (EDT) From: Mikhail Teterin Reply-To: mi@aldan.algebra.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11656: lyx-port needs a patch until the next LyX release Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11656 >Category: ports >Synopsis: lyx-port needs a patch until the next LyX release >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue May 11 16:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 3.1-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: See: http://www.mail-archive.com/lyx-users@lists.lyx.org/msg00610.html >How-To-Repeat: See description -- the DVI and PostScript previews do not get updated with the changes made inside LyX until LyX is restarted. >Fix: The patch below is from: http://www.mail-archive.com/lyx-users@lists.lyx.org/msg00611.html Index: filetools.C =================================================================== RCS file: /usr/local/lyxsrc/cvsroot/lyx-1_0_x/src/filetools.C,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- src/filetools.C 1999/02/11 14:46:11 1.2 +++ src/filetools.C 1999/05/07 13:09:00 1.3 @@ -517,7 +517,7 @@ delete[] with_drive; #endif } else - TempBase = safer_getcwd(); + TempBase = GetCWD(); //safer_getcwd(); #ifdef __EMX__ if (AbsolutePath(TempRel)) return TempBase.substring(0,1) + TempRel; >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 May 11 17:57: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (Postfix) with ESMTP id 65A5C1518B; Tue, 11 May 1999 17:57:05 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.9.3/8.7.3) id RAA02913; Tue, 11 May 1999 17:56:37 -0700 (PDT) Date: Tue, 11 May 1999 17:56:37 -0700 (PDT) Message-Id: <199905120056.RAA02913@vader.cs.berkeley.edu> X-Authentication-Warning: vader.cs.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: ache@FreeBSD.org, albast@xs4all.nl, ambrisko@whistle.com, andreas@FreeBSD.org, andy@icc.surw.chel.su, chuckr@FreeBSD.org, cjh@kr.freebsd.org, cpiazza@home.net, dburr@FreeBSD.org, domi@saargate.de, ejc@bazzle.com, helbig@informatik.ba-stuttgart.de, imura@cs.titech.ac.jp, jfitz@FreeBSD.org, jmacd@FreeBSD.org, jmz@FreeBSD.org, jseger@FreeBSD.org, junker@jazz.snu.ac.kr, kiri@pis.toba-cmt.ac.jp, kris@FreeBSD.org, Lars.Koeller@Uni-Bielefeld.de, maurice@serc.rmit.edu.au, max@FreeBSD.org, me@FreeBSD.org, mharo@area51.fremont.ca.us, mi@aldan.algebra.com, mph@FreeBSD.org, msmith@FreeBSD.org, murray@cdrom.com, nacai@iname.com, nectar@FreeBSD.org, obonilla@fisicc-ufm.edu, obrien@FreeBSD.org, oly@world.std.com, rssh@cki.ipri.kiev.ua, sbarron@abalonesoft.com, scrappy@FreeBSD.org, se@FreeBSD.org, shige@FreeBSD.org, shipley@dis.org, smpatel@umiacs.umd.edu, thepish@FreeBSD.org, woju@FreeBSD.ee.Ntu.edu.TW, xaa@stack.nl Cc: ports@FreeBSD.org Subject: package building errors From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, You are getting this mail since you are listed as a maintainer of one or more of the 3.2 packages that don't build. If you have some time, please check http://bento.freebsd.org/errorlogs/3-latest/ and send me a fix. Note that the ports tree is currently frozen; do not commit a fix yourself. A "fix" here generally means patches from the -current ports tree. Fixes within the same version is preferred over upgrades, as the latter requires a lot of manual work by me (meaning more chances of mistakes). Also, if the problem is simply that the port is not fetchable (or gets a checksum mismatch because of silent upgrades), just send me a URL of a place that a correct distfile can be fetched from. You have about 24 hours to submit a fix. After that, the distfiles and packages will be sent to the esteemed Steve Price for partitioning so it will be too late to get them in 3.2. Thanks for your help! Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 11 18:20: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C5DBA1529F for ; Tue, 11 May 1999 18:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA93112; Tue, 11 May 1999 18:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 May 1999 18:20:03 -0700 (PDT) Message-Id: <199905120120.SAA93112@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Chris Piazza Subject: RE: ports/11642: editors/AbiWord doesn't compile Reply-To: Chris Piazza Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11642; it has been noted by GNATS. From: Chris Piazza To: tarkhil@asteroid.svib.ru Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: RE: ports/11642: editors/AbiWord doesn't compile Date: Tue, 11 May 1999 18:15:09 -0700 (PDT) See PR# 11612 if you want a fix. --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 11 18:26: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from gvinpin.grad.kiev.ua (KievglavArhit-UTC.ukrtel.net [195.5.25.54]) by hub.freebsd.org (Postfix) with ESMTP id 709DE150E7 for ; Tue, 11 May 1999 18:26:01 -0700 (PDT) (envelope-from Ruslan@Shevchenko.Kiev.UA) Received: from Shevchenko.Kiev.UA (kulshedra [10.0.1.99]) by gvinpin.grad.kiev.ua (8.8.7/8.8.7) with ESMTP id EAA00506; Wed, 12 May 1999 04:24:59 +0300 Message-ID: <3738D938.CA93FE0C@Shevchenko.Kiev.UA> Date: Wed, 12 May 1999 04:28:24 +0300 From: Ruslan Shevchenko Reply-To: rssh@grad.kiev.ua X-Mailer: Mozilla 4.07 [en] (X11; I; FreeBSD 3.0-CURRENT i386) MIME-Version: 1.0 To: Satoshi Asami Cc: ports@freebsd.org Subject: Re: package building errors References: <199905120056.RAA02913@vader.cs.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, > Is elf C symbols not need in leading underscore ? (i. e. for elf I need change _fun to fun in assembler ?) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 11 18:30: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 36B22150E7 for ; Tue, 11 May 1999 18:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA93939; Tue, 11 May 1999 18:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 9E5AB151DE for ; Tue, 11 May 1999 18:26:51 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 211471448; Tue, 11 May 1999 18:26:44 -0700 (PDT) Message-Id: <19990512012644.211471448@norn.ca.eu.org> Date: Tue, 11 May 1999 18:26:44 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11659: Update: net/ninja Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11659 >Category: ports >Synopsis: Update: net/ninja >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 May 11 18:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD 4.0-CURRENT i386 >Description: Update to 1.0.9. This unbreaks the port so should be committed. I'm the maintainer. >How-To-Repeat: >Fix: Index: ninja/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/net/ninja/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 1999/04/21 00:33:34 1.2 +++ Makefile 1999/05/12 01:24:58 @@ -1,5 +1,5 @@ # New ports collection makefile for: Ninja-irc -# Version required: 1.0.7 +# Version required: 1.0.9 # Date created: 10 April 1999 # Whom: Chris Piazza # @@ -7,18 +7,15 @@ # DISTNAME= ninja-src -PKGNAME= ninja-1.0.8 +PKGNAME= ninja-1.0.9 CATEGORIES= net MASTER_SITES= http://ninja.pimped.org/ MAINTAINER= cpiazza@home.net GNU_CONFIGURE= yes +WRKSRC= ${WRKDIR}/${PKGNAME} -WRKSRC= ${WRKDIR}/ninja-irc - -MAN1= ninja.1 - post-patch: @${SED} -e s#__PREFIX__#$(PREFIX)#g $(WRKSRC)/include/config.h.dist > $(WRKSRC)/include/config.h.dist.new @${MV} $(WRKSRC)/include/config.h.dist.new $(WRKSRC)/include/config.h.dist @@ -26,14 +23,5 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/source/ninja ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/source/wserv ${PREFIX}/bin - ${MKDIR} ${PREFIX}/share/ninja/help - ${INSTALL_DATA} ${WRKSRC}/doc/ninja.help ${PREFIX}/share/ninja/help - ${INSTALL_MAN} ${WRKSRC}/doc/ninja.1 ${PREFIX}/man/man1 -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/ninja - ${INSTALL_DATA} ${WRKSRC}/doc/colors.txt ${PREFIX}/share/doc/ninja - ${INSTALL_DATA} ${WRKSRC}/doc/commands.txt ${PREFIX}/share/doc/ninja - ${INSTALL_DATA} ${WRKSRC}/doc/keyinfo.txt ${PREFIX}/share/doc/ninja -.endif .include Index: ninja/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/net/ninja/files/md5,v retrieving revision 1.2 diff -u -r1.2 md5 --- md5 1999/04/21 00:33:35 1.2 +++ md5 1999/05/12 01:18:01 @@ -1 +1 @@ -MD5 (ninja-src.tar.gz) = 7c33c33f1af4ca7c3f6ea1ec16cb685a +MD5 (ninja-src.tar.gz) = 8119460cbd2c0f6a9ebfe1816406a880 Index: ninja/patches/patch-ab =================================================================== RCS file: /cvs/FreeBSD/ports/net/ninja/patches/patch-ab,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 patch-ab --- patch-ab 1999/04/15 03:20:01 1.1.1.1 +++ patch-ab 1999/05/12 01:20:20 @@ -1,6 +1,6 @@ ---- configure.orig Tue Apr 13 23:49:03 1999 -+++ configure Tue Apr 13 23:49:19 1999 -@@ -3741,7 +3741,7 @@ +--- configure.orig Sun May 9 19:34:34 1999 ++++ configure Tue May 11 18:19:26 1999 +@@ -3816,7 +3816,7 @@ if test ! -n "$IRCLIB"; then Index: ninja/pkg/PLIST =================================================================== RCS file: /cvs/FreeBSD/ports/net/ninja/pkg/PLIST,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 PLIST --- PLIST 1999/04/15 03:20:01 1.1.1.1 +++ PLIST 1999/05/12 01:25:18 @@ -1,9 +1,2 @@ bin/ninja bin/wserv -share/doc/ninja/colors.txt -share/doc/ninja/commands.txt -share/doc/ninja/keyinfo.txt -share/ninja/help/ninja.help -@dirrm share/doc/ninja -@dirrm share/ninja/help -@dirrm share/ninja -Chris >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 May 11 19:10: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 72E38151F7 for ; Tue, 11 May 1999 19:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA96370; Tue, 11 May 1999 19:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 08395151F7 for ; Tue, 11 May 1999 19:06:45 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id B6E501448; Tue, 11 May 1999 19:06:38 -0700 (PDT) Message-Id: <19990512020638.B6E501448@norn.ca.eu.org> Date: Tue, 11 May 1999 19:06:38 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11660: Update: x11-clocks/astime Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11660 >Category: ports >Synopsis: Update: x11-clocks/astime >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 May 11 19:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD 4.0-CURRENT i386 >Description: Update to 2.0. >How-To-Repeat: >Fix: Index: astime/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/x11-clocks/astime/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- Makefile 1999/02/22 04:29:39 1.6 +++ Makefile 1999/05/12 02:05:42 @@ -1,17 +1,17 @@ # New ports collection makefile for: astime -# Version required: 1.7 +# Version required: 2.0 # Date created: 21 Nov 1998 # Whom: Brian Handy # # $Id: Makefile,v 1.6 1999/02/22 04:29:39 steve Exp $ # -DISTNAME= astime-1.7 +DISTNAME= astime-2.0 CATEGORIES= x11-clocks windowmaker -MASTER_SITES= http://bewoner.dma.be/Albert/linux/software/ \ +MASTER_SITES= http://bewoner.dma.be/Albert/software/ \ + http://www.tigr.net/afterstep/as-apps/download/astime/ \ ftp://ftp.tux.org/pub/x/afterstep/apps/astime/ \ - ftp://ftp.digex.net/.2/wm/AfterStep/apps/astime/ \ - ftp://ftp.bse.bg/pub/Unix/X11/wm/afterstep/apps/astime/ + ftp://ftp.digex.net/.2/wm/AfterStep/apps/astime/ MAINTAINER= kkennawa@physics.adelaide.edu.au Index: astime/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/x11-clocks/astime/files/md5,v retrieving revision 1.5 diff -u -r1.5 md5 --- md5 1999/02/22 04:29:56 1.5 +++ md5 1999/05/12 02:03:37 @@ -1 +1 @@ -MD5 (astime-1.7.tar.gz) = 9af13c86d442108abdae770c4d780b9f +MD5 (astime-2.0.tar.gz) = 14a4ed9249241726fb53d8be7ebfde24 -Chris >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 May 11 19:19:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from gvinpin.grad.kiev.ua (KievglavArhit-UTC.ukrtel.net [195.5.25.54]) by hub.freebsd.org (Postfix) with ESMTP id D3BFC14E04 for ; Tue, 11 May 1999 19:19:15 -0700 (PDT) (envelope-from Ruslan@Shevchenko.Kiev.UA) Received: from Shevchenko.Kiev.UA (kulshedra [10.0.1.99]) by gvinpin.grad.kiev.ua (8.8.7/8.8.7) with ESMTP id FAA00642; Wed, 12 May 1999 05:18:17 +0300 Message-ID: <3738E5B6.506BE3B4@Shevchenko.Kiev.UA> Date: Wed, 12 May 1999 05:21:42 +0300 From: Ruslan Shevchenko Reply-To: rssh@grad.kiev.ua X-Mailer: Mozilla 4.07 [en] (X11; I; FreeBSD 3.0-CURRENT i386) MIME-Version: 1.0 To: Satoshi Asami Cc: ports@freebsd.org Subject: fix fo lang/sr [Re: package building errors] References: <199905120056.RAA02913@vader.cs.berkeley.edu> Content-Type: multipart/mixed; boundary="------------C95750133F43E342306171D3" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------C95750133F43E342306171D3 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit my port lang/sr was marked as broken-elf 1. attached is patch-ab which fix the problem. 2. I updated my mail address in Makefile (attached Makefile.diff) --------------C95750133F43E342306171D3 Content-Type: text/plain; charset=koi8-r; name="patch-ab" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="patch-ab" diff -udr work.origin/csw/asm.c work/csw/asm.c --- csw/asm.c.orig Mon Nov 22 23:18:14 1993 +++ csw/asm.c Wed May 12 05:05:46 1999 @@ -8,7 +8,17 @@ #include "../arch.h" -#ifdef __svr4__ /* if SVR4 (including Solaris 2.x) */ +#ifdef __FreeBSD__ +#if __FreeBSD__ >= 2 +#include +#if __FreeBSD_version >= 300004 +#define __elf__ +#endif +#endif +#endif + + /* if SVR4 (including Solaris 2.x) or FreeBSD-elf */ +#if defined(__svr4__) || defined (__elf__) #define SR_BUILD_CONTEXT sr_build_context #define SR_CHG_CONTEXT sr_chg_context #define SR_CHECK_STK sr_check_stk --------------C95750133F43E342306171D3 Content-Type: text/plain; charset=koi8-r; name="Makefile.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="Makefile.diff" --- Makefile.orig Wed May 12 05:15:40 1999 +++ Makefile Wed May 12 05:14:46 1999 @@ -1,7 +1,7 @@ # New ports collection makefile for: sr # Version required: 2.3.1 # Date created: 2 Jun 1997 -# Whom: Ruslan Shevchenko +# Whom: Ruslan Shevchenko # # $Id: Makefile,v 1.4 1998/10/14 04:10:03 jseger Exp $ # @@ -12,7 +12,9 @@ MASTER_SITES= ftp://ftp.cs.arizona.edu/sr/ EXTRACT_SUFX= .tar.Z -MAINTAINER= Ruslan@Shevchenko.Kiev.UA +MAINTAINER= rssh@cki.ipri.kiev.ua + +#BROKEN_ELF= yes HAS_CONFIGURE= yes CONFIGURE_ARGS= prefix --------------C95750133F43E342306171D3-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 11 21:30: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 10F3E14DDB for ; Tue, 11 May 1999 21:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA07490; Tue, 11 May 1999 21:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 May 1999 21:30:01 -0700 (PDT) Message-Id: <199905120430.VAA07490@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Denis Shaposhnikov Subject: ports/11601 replace port, please Reply-To: Denis Shaposhnikov Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11601; it has been noted by GNATS. From: Denis Shaposhnikov To: bug-followup@FreeBSD.org Cc: Subject: ports/11601 replace port, please Date: 12 May 1999 08:20:34 +0400 # 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: # # ifmail-os # ifmail-os/pkg # ifmail-os/pkg/COMMENT # ifmail-os/pkg/DESCR # ifmail-os/pkg/INSTALL # ifmail-os/pkg/PLIST # ifmail-os/pkg/DEINSTALL # ifmail-os/Makefile # ifmail-os/files # ifmail-os/files/md5 # ifmail-os/patches # ifmail-os/patches/patch-aa # ifmail-os/patches/patch-ab # ifmail-os/patches/patch-ac # ifmail-os/patches/patch-ad # ifmail-os/patches/patch-ae # echo c - ifmail-os mkdir -p ifmail-os > /dev/null 2>&1 echo c - ifmail-os/pkg mkdir -p ifmail-os/pkg > /dev/null 2>&1 echo x - ifmail-os/pkg/COMMENT sed 's/^X//' >ifmail-os/pkg/COMMENT << 'END-of-ifmail-os/pkg/COMMENT' XFidoNet(tm) support package for UN*X platform. Patched by Serge Oskin. END-of-ifmail-os/pkg/COMMENT echo x - ifmail-os/pkg/DESCR sed 's/^X//' >ifmail-os/pkg/DESCR << 'END-of-ifmail-os/pkg/DESCR' XFidoNet(tm) transport and gateway for UN*X platform. Delivers Fidonet mail Xpackets over telephone lines and TCP/IP connections; converts Fidonet net- Xand echomail to RFC-822/RFC-1036 compliant mail and news and vice versa. XIn cooperation with MTA and netnews packages allows to run a FidoNet node X(or point) on a UN*X machine. X XThis features patched by Serge Oskin: X X * New keyword 'dots' is added to config, first symbol of it's value X is used as a delimiter in user name. X * Using of zone number in addresses is made obligatory. X * Removal fields " Received: " at gated Internet->FidoNet mail. X * Utility nlookup (Boris Tobotras) is added for search of the X information about stations in nodelist. X * The first symbol from the 'sentmode' config field will stand in the X beginning of each line in ?lo. X * The display of speed of connection in logs. X * In pkt ^aMSGID gets Fido-address (for our own outgoing letters). If X incoming mail carries our own address in ^aMSGID/^aREPLY, it is X substituted with myfqdn. X * Opportunity of connection for the external FREQ-processor is added. X * Substitution of X-Mailer, X-Newsreader and User-Agent lines into X X-FTN-Tearline. X * Don't reconstruct an entire SEEN-BY after addition of one line, and X simply add it to index (Yar Tikhiy). X * Hydra protocol (Arjen G. Lentz). X * UTxy flag support (work time definition, accepted in Zone2) (Boris X Tobotras). X * Don't show a some kludges (nonFido) (Eugeny Kuzakov & Ko). X * Original ifcico replaced with ifcico-3.0.cm. X * Show size of files in to EMSI. X * Add netmail bug fixed. Run ifpack after ifmail. X * For skip file while receive delete this file from inbound. X * Removal field " From: " from _body_ message at gated X Internet->FidoNet. X X-- Denis Shaposhnikov Xwizard@vlink.ru END-of-ifmail-os/pkg/DESCR echo x - ifmail-os/pkg/INSTALL sed 's/^X//' >ifmail-os/pkg/INSTALL << 'END-of-ifmail-os/pkg/INSTALL' X#! /bin/sh X X USER=ifmail X UID=70 XGROUP=uucp XGECOS="Ifmail pseudo-user" X HOME=/var/spool/ifmail XSHELL=/sbin/nologin X Xcase $2 in X PRE-INSTALL) X which -s pw || { X cat << EOF X XI see that it is missing the "pw" utility. I need this utility. XPlease get it and install it, and try again. X XEOF X exit 1 X } X X pw usershow $USER > /dev/null 2>&1 && { X echo "You already have a user \"$USER\", so I will use it." X exit X } X X echo "You need a user \"$USER\"." X pw useradd $USER -g $GROUP -u $UID -h - -d $HOME -s $SHELL \ X -c "$GECOS" || X { echo "Please create it, and try again."; exit 1; } X echo "Done." X ;; X POST-INSTALL) X chown $USER $PKG_PREFIX/etc/ifmail X for i in db log spool; do X install -d -o $USER -g $GROUP /var/$i/ifmail X done X ;; X *) X echo "usage: $0 {PRE-INSTALL|POST-INSTALL}" X exit 64 Xesac X Xexit 0 END-of-ifmail-os/pkg/INSTALL echo x - ifmail-os/pkg/PLIST sed 's/^X//' >ifmail-os/pkg/PLIST << 'END-of-ifmail-os/pkg/PLIST' Xlibexec/ifmail/ifpack Xlibexec/ifmail/ifunpack Xlibexec/ifmail/iftoss X@owner ifmail Xlibexec/ifmail/ifstat Xlibexec/ifmail/ifmail Xlibexec/ifmail/ifnews Xlibexec/ifmail/ifcico Xlibexec/ifmail/ifindex Xlibexec/ifmail/ifinfo Xlibexec/ifmail/ifreq Xlibexec/ifmail/ifroute Xlibexec/ifmail/nlpatch Xlibexec/ifmail/nlookup Xetc/ifmail/Areas.sample Xetc/ifmail/config.sample Xetc/ifmail/outaltkoi8 Xetc/ifmail/outkoi8alt X@owner Xshare/doc/ifmail/Readme.os Xshare/doc/ifmail/README.ifcico Xshare/doc/ifmail/README.mxlookup Xshare/doc/ifmail/README.ifgate Xshare/doc/ifmail/DEBUG Xshare/doc/ifmail/FAQ X@dirrm etc/ifmail X@dirrm libexec/ifmail X@dirrm share/doc/ifmail END-of-ifmail-os/pkg/PLIST echo x - ifmail-os/pkg/DEINSTALL sed 's/^X//' >ifmail-os/pkg/DEINSTALL << 'END-of-ifmail-os/pkg/DEINSTALL' X#! /bin/sh X XUSER=ifmail X Xask() { X local question default answer X X question=$1; default=$2 X [ -z "$PACKAGE_BUILDING" ] && read -p "$question [$default]? " answer X [ x$answer = x ] && answer=$default X echo $answer X} X Xyesno() { X local dflt question answer X X question=$1; dflt=$2 X while :; do X answer=$(ask "$question" "$dflt") X case "$answer" in X [Yy]*) return 0;; X [Nn]*) return 1;; X esac X echo "Please answer yes or no." X done X} X Xcase $2 in X DEINSTALL) X X ;; X POST-DEINSTALL) X for i in db log spool; do X yesno "Do you want me to remove /var/$i/ifmail" y && { X rm -rf /var/$i/ifmail || exit 1 X echo "Done." X } X done X yesno "Do you want me to remove user \"$USER\"" y && { X pw userdel $USER || exit 1 X echo "Done." X } X ;; X *) X echo "usage: $0 {DEINSTALL|POST-DEINSTALL}" X exit 64 Xesac X Xexit 0 END-of-ifmail-os/pkg/DEINSTALL echo x - ifmail-os/Makefile sed 's/^X//' >ifmail-os/Makefile << 'END-of-ifmail-os/Makefile' X# New ports collection makefile for: ifmail-os X# Version required: 2.14.os-p5 X# Date created: 6 October 1998 X# Whom: Denis Shaposhnikov X# X# $Id$ X# X XDISTNAME= ifmail-2.14.os-p5 XPKGNAME= ifmail-os-2.14.5 XCATEGORIES= news XMASTER_SITES= ftp://oskin.macomnet.ru/pub/linux/fido/ X XMAINTAINER= wizard@vlink.ru X XBUILD_DEPENDS= ${PREFIX}/lib/libgdbm.a:${PORTSDIR}/databases/gdbm X XUSE_BZIP2= yes XUSE_GMAKE= yes XWRKSRC= ${WRKDIR}/ifmail-2.14 XMAKE_ENV+= BINGRP=${BINGRP} X XMAN8= ifcico.8 ifindex.8 ifinfo.8 ifreq.8 ifroute.8 ifstat.8 \ X nlpatch.8 ifmail.8 iftoss.8 X Xpre-install: X ${SETENV} PKG_PREFIX=${PREFIX} \ X ${SH} ${PKGDIR}/INSTALL ${PKGNAME} PRE-INSTALL X ${MKDIR} ${PREFIX}/libexec/ifmail X Xpost-install: X ${INSTALL} -d -o ifmail -g uucp ${PREFIX}/etc/ifmail X ${INSTALL} ${COPY} -o ifmail -g uucp -m 444 \ X ${WRKSRC}/misc/Areas \ X ${PREFIX}/etc/ifmail/Areas.sample X ${INSTALL} ${COPY} -o ifmail -g uucp -m 444 \ X ${WRKSRC}/misc/config \ X ${PREFIX}/etc/ifmail/config.sample X ${INSTALL} ${COPY} -o ifmail -g uucp -m 444 \ X ${WRKSRC}/misc/inouttabs/outaltkoi8.new \ X ${PREFIX}/etc/ifmail/outaltkoi8 X ${INSTALL} ${COPY} -o ifmail -g uucp -m 444 \ X ${WRKSRC}/misc/inouttabs/outkoi8alt.new \ X ${PREFIX}/etc/ifmail/outkoi8alt X X ${INSTALL_MAN} ${WRKSRC}/ifcico/*.8 ${WRKSRC}/ifgate/*.8 \ X ${MANPREFIX}/man/man8 X X.if !defined(NOPORTDOCS) X ${MKDIR} ${PREFIX}/share/doc/ifmail X ${INSTALL_MAN} ${WRKSRC}/Readme.os ${PREFIX}/share/doc/ifmail X ${INSTALL_MAN} ${WRKSRC}/ifcico/README \ X ${PREFIX}/share/doc/ifmail/README.ifcico X ${INSTALL_MAN} ${WRKSRC}/ifcico/README.mxlookup \ X ${PREFIX}/share/doc/ifmail X ${INSTALL_MAN} ${WRKSRC}/ifgate/README \ X ${PREFIX}/share/doc/ifmail/README.ifgate X ${INSTALL_MAN} ${WRKSRC}/misc/DEBUG ${PREFIX}/share/doc/ifmail X ${INSTALL_MAN} ${WRKSRC}/misc/FAQ ${PREFIX}/share/doc/ifmail X.endif X X ${SETENV} PKG_PREFIX=${PREFIX} \ X ${SH} ${PKGDIR}/INSTALL ${PKGNAME} POST-INSTALL X X.include END-of-ifmail-os/Makefile echo c - ifmail-os/files mkdir -p ifmail-os/files > /dev/null 2>&1 echo x - ifmail-os/files/md5 sed 's/^X//' >ifmail-os/files/md5 << 'END-of-ifmail-os/files/md5' XMD5 (ifmail-2.14.os-p5.tar.bz2) = 50742ca939e033f67ba9a2cbf59420ba END-of-ifmail-os/files/md5 echo c - ifmail-os/patches mkdir -p ifmail-os/patches > /dev/null 2>&1 echo x - ifmail-os/patches/patch-aa sed 's/^X//' >ifmail-os/patches/patch-aa << 'END-of-ifmail-os/patches/patch-aa' X--- CONFIG.orig Wed Feb 3 18:19:18 1999 X+++ CONFIG Mon May 10 10:47:45 1999 X@@ -4,7 +4,7 @@ X SHVER = 2.14.os5 X X # Main configuration file. This default may be overwritten by -I key. X-CONFIGFILE = "/etc/ifmail/config" X+CONFIGFILE = "${PREFIX}/etc/ifmail/config" X X # Debug messages turned on by -x key are written here. X # Some error messages may occationally appear here too. X@@ -29,7 +29,7 @@ X X # Directory where UUCP lock files reside. X #LOCKDIR = "/var/spool/uucp" X-LOCKDIR = "/var/lock" X+LOCKDIR = "/var/spool/lock" X X # Directory from which file requests are resolved. X # This may be changed from the 'config' file. X@@ -185,26 +185,37 @@ X X # define -DEMSI_SIZE - show netmail/arcmail size into EMSI X X+# FreeBSD: X+OPTS = -DHAS_NDBM_H -DHAS_STATFS -DSTATFS_IN_MOUNT_H -DHAS_SETSID \ X+ -DHAS_TERMIOS_H -DASCII_LOCKFILES -DHAS_FSYNC -DFORCEINTL \ X+ -DNEED_UUCPFROM -DHAS_TCP -DHAS_REGEX_H -DHAS_SYSLOG -DNEED_BSY \ X+ -DNEED_FORK -DNEGATIVE_SEEK_BUG -DSLAVE_SENDS_NAK_TOO \ X+ -DHAS_IOCTL_H -DHAS_SYS_ERRLIST -DHAS_BSD_SIGNALS \ X+ -DINT32=long -DINT16=short \ X+ -DHAS_FILLOG -DNO_RECEIVED -DNO_FROM -DEXT_FREQ -DSHOW_SPEED -DT_LINE \ X+ -DFTN_MSGID -DHAVE_TXY -DSECURE_LOG -DHAS_SELECT -DRM_SKIP \ X+ -DDENY_BAD_HEADERS -DEMSI_SIZE X+ X # Linux/x86: (add -DHAS_BSD_SIGNALS if you have glibc2 aka libc6.x) X-OPTS = -DHAS_STATFS -DSTATFS_IN_VFS_H -DHAS_SETSID -DHAS_NDBM_H \ X- -DDONT_HAVE_TM_GMTOFF -DHAS_TERMIOS_H -DASCII_LOCKFILES \ X- -DHAS_FSYNC -DHAS_IOCTL_H -DHAS_REGEX_H -DHAS_TCP \ X- -DFORCEINTL -DHAS_SYSLOG -DNEED_UUCPFROM -DNEED_BSY \ X- -DSLAVE_SENDS_NAK_TOO -DNEED_FORK \ X- -DINT32=long -DINT16=short \ X- -DHAS_SELECT \ X- -DHAS_FILLOG \ X- -DNO_RECEIVED \ X- -DNO_FROM \ X- -DSHOW_SPEED \ X- -DT_LINE \ X- -DFTN_MSGID \ X- -DEXT_FREQ \ X- -DHAVE_TXY \ X- -DSECURE_LOG \ X- -DEMSI_SIZE \ X- -DRM_SKIP \ X- -DLOCALE=\"koi8-r\" X+#OPTS = -DHAS_STATFS -DSTATFS_IN_VFS_H -DHAS_SETSID -DHAS_NDBM_H \ X+# -DDONT_HAVE_TM_GMTOFF -DHAS_TERMIOS_H -DASCII_LOCKFILES \ X+# -DHAS_FSYNC -DHAS_IOCTL_H -DHAS_REGEX_H -DHAS_TCP \ X+# -DFORCEINTL -DHAS_SYSLOG -DNEED_UUCPFROM -DNEED_BSY \ X+# -DSLAVE_SENDS_NAK_TOO -DNEED_FORK \ X+# -DINT32=long -DINT16=short \ X+# -DHAS_SELECT \ X+# -DHAS_FILLOG \ X+# -DNO_RECEIVED \ X+# -DNO_FROM \ X+# -DSHOW_SPEED \ X+# -DT_LINE \ X+# -DFTN_MSGID \ X+# -DEXT_FREQ \ X+# -DHAVE_TXY \ X+# -DSECURE_LOG \ X+# -DEMSI_SIZE \ X+# -DRM_SKIP \ X+# -DLOCALE=\"koi8-r\" X X # 386BSD: X #OPTS = -DHAS_STATFS -DSTATFS_IN_MOUNT_H -DHAS_SETSID -DHAS_NDBM_H \ X@@ -277,18 +288,18 @@ X # -DNEED_BSY -DSLAVE_SENDS_NAK_TOO -DINT32=int -DINT16=short X X # for make install, where to put binaries and what owner to set X-BINDIR = /usr/lib/ifmail X+BINDIR = ${PREFIX}/libexec/ifmail X OWNER = ifmail X-GROUP = uucp X+GROUP = ${BINGRP} X MODE = 0711 X-SMODE = 4711 X+SMODE = 4555 X X INSTALL = install X RANLIB = ranlib X #RANLIB = touch X SHELL = /bin/sh X ECHO = echo -e X-CC = gcc X+#CC = gcc X #YACC = bison -y X YACC = yacc X #LEX = flex X@@ -297,15 +308,15 @@ X TAR = tar X #Make shared lib? X #Yes X-SHARED=1 X+#SHARED=1 X #No X-#SHARED=0 X+SHARED=0 X X #CFLAGS = -g -Wall X # Linux, 386BSD, SunOS, FreeBSD: X # Use -funsigned-char if you're using gcc, and don't want to loose X # letters with 8th bit set from header lines X-CFLAGS = -O2 -Wall -funsigned-char X+#CFLAGS = -O2 -Wall -funsigned-char X # SVR4: X #CFLAGS = -O -Xa X # NeXTSTEP X@@ -315,19 +326,19 @@ X #CFLAGS= -migrate -O5 -ifo -g0 X #LDFLAGS = -s X X-LDFLAGS = -s X+#LDFLAGS = -s X X # For LIBS, you may need to add "-lfl" if you are using flex 2.4.x X # If you need TERM also add e.g. "/usr/src/term112/client.a" X X # Linux X-LIBS = -lgdbm X+#LIBS = -lgdbm X # Linux glibc2 X #LIBS = -lgdbm -lresolv X # SunOS: X #LIBS = X # 386BSD, FreeBSD: X-#LIBS = -lgdbm -lcompat X+LIBS = -lcompat -L${PREFIX}/lib -lgdbm X # SVR4 X #LIBS = -ldbm -lform -lnsl -lsocket -lc -L/usr/ucblib -lucb X # SCO END-of-ifmail-os/patches/patch-aa echo x - ifmail-os/patches/patch-ab sed 's/^X//' >ifmail-os/patches/patch-ab << 'END-of-ifmail-os/patches/patch-ab' X--- ifcico/Makefile.orig Thu Feb 4 20:49:58 1999 X+++ ifcico/Makefile Thu Feb 4 20:52:29 1999 X@@ -81,7 +81,7 @@ X flaglex.o: flaglex.c flagexp.c X X install: all X- ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m ${SMODE} ifcico ${BINDIR}/ifcico X+ ${INSTALL} -s -o ${OWNER} -g dialer -m 6555 ifcico ${BINDIR}/ifcico X ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m ${SMODE} ifindex ${BINDIR}/ifindex X ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m ${SMODE} ifinfo ${BINDIR}/ifinfo X ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m ${SMODE} ifreq ${BINDIR}/ifreq END-of-ifmail-os/patches/patch-ab echo x - ifmail-os/patches/patch-ac sed 's/^X//' >ifmail-os/patches/patch-ac << 'END-of-ifmail-os/patches/patch-ac' X--- ifcico/ifcico.c.orig Thu Feb 4 20:55:24 1999 X+++ ifcico/ifcico.c Thu Feb 4 20:56:30 1999 X@@ -119,6 +119,7 @@ X #endif X #ifdef SHOW_SPEED X strcat( validopts, "S:" ); X+ inconn = getenv("CONNECT"); X #endif X while ((c=getopt(argc,argv,validopts)) != -1) X if (confopt(c,optarg)) switch (c) END-of-ifmail-os/patches/patch-ac echo x - ifmail-os/patches/patch-ad sed 's/^X//' >ifmail-os/patches/patch-ad << 'END-of-ifmail-os/patches/patch-ad' X--- ifgate/Makefile.orig Thu Feb 4 20:59:32 1999 X+++ ifgate/Makefile Thu Feb 4 21:01:14 1999 X@@ -41,9 +41,9 @@ X X install: all X ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m ${SMODE} ifstat ${BINDIR}/ifstat X- ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m ${MODE} ifpack ${BINDIR}/ifpack X- ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m ${MODE} ifunpack ${BINDIR}/ifunpack X- ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m ${MODE} iftoss ${BINDIR}/iftoss X+ ${BSD_INSTALL_PROGRAM} ifpack ${BINDIR}/ifpack X+ ${BSD_INSTALL_PROGRAM} ifunpack ${BINDIR}/ifunpack X+ ${BSD_INSTALL_PROGRAM} iftoss ${BINDIR}/iftoss X ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m ${SMODE} ifmail ${BINDIR}/ifmail X rm -f ${BINDIR}/ifnews X ln ${BINDIR}/ifmail ${BINDIR}/ifnews END-of-ifmail-os/patches/patch-ad echo x - ifmail-os/patches/patch-ae sed 's/^X//' >ifmail-os/patches/patch-ae << 'END-of-ifmail-os/patches/patch-ae' X--- misc/config.orig Fri Dec 18 21:20:57 1998 X+++ misc/config Wed May 5 22:12:09 1999 X@@ -30,7 +30,7 @@ X # Include config extention file (here: file with real passwords). X # Includes may be nested. If the nesting is cyclic, the program cycles too. X # You are warned. X-include /etc/ifmail/passwds X+include /usr/local/etc/ifmail/passwds X X # System alias file - try to fetch ftn-style aliases from there. X # If "from" address of a message from FidoNet matches _right_ side X@@ -42,7 +42,7 @@ X # "jsmith: John.Smith@p89.f567.n234.z1.fidonet.org" X # and fqdn value is "pccross.msk.su", then the resulting message will X # contain a line: "Reply-To: jsmith@pccross.msk.su". X-sysalias /usr/lib/smail/aliases X+sysalias /etc/aliases X X # This host fully qualified domain name to add to the alias above X myfqdn pccross.msk.su X@@ -52,13 +52,13 @@ X # specified. If not specified, beginning of all message is scaned. I X # do not recommend specifying magicname unless you know that parsing X # headers will really break things. X-magicname UUCP X+#magicname UUCP X X # Directory for incoming packets/files: X inbound /var/spool/ifmail/inb X # Directories for "listed" and "protected" sessions X listinbound /var/spool/ifmail/inb X-protinbound /var/spool/ifmail/inb X+protinbound /var/spool/ifmail/inb.sec X X # Directory for outgoing packets (default domain and zone): X # other zones will be like "/usr/spool/ifmail/outb.003", X@@ -71,7 +71,7 @@ X X # External FREQ-processor X # if not defined, then used "public" and "magic". X-ext_rp /usr/local/lib/ifmail/ifextrp X+#ext_rp /usr/local/libexec/ifmail/ifextrp X X # Directory from which the file requests are satisfied X public /var/spool/uucppublic X@@ -82,7 +82,7 @@ X # is not executable, it is read line by line and the lines are X # processed as if they were received file requests (recusively). X # Execution of commands may compromize security! You are warned. X-magic /usr/lib/ifmail/magic X+#magic /usr/local/libexec/ifmail/magic X X # Primary nodelist (serves "outbound" directory and domain from the X # first "address" statement). Name expanded with ".NNN" if neccessary. X@@ -107,13 +107,13 @@ X X # Automatically updated alias database. If omitted or inaccessible, X # ^aREPLYADDR and ^aREPLYTO kludges are generated in fido messages. X-database /var/spool/ifmail/ifdbm X+database /var/db/ifmail/ifdbm X X # Sequencer file (used to generate unique IDs) X sequencer /var/spool/ifmail/seq X X # Areas file (format: "AREA newsgroup distribution") X-areas /etc/ifmail/Areas X+areas /usr/local/etc/ifmail/Areas X X # Bad groups prefixes - do not pass to fido if appear in Newsgroups header X # This is NOT the same as "!news.group" in the cnews "sys" file. X@@ -139,9 +139,9 @@ X # characters cannot be specified using the first (character) notation. X # X # Internet -> FidoNet (outgoing) character mapping table (a la mapchan) X-outtab /usr/lib/ifmail/outkoi8alt X+outtab /usr/local/etc/ifmail/outkoi8alt X # FidoNet -> Internet (incoming) character mapping table X-intab /usr/lib/ifmail/outaltkoi8 X+intab /usr/local/etc/ifmail/outaltkoi8 X X # Delimiter char into user name for replace to space (default '.'). X dots _ X@@ -150,24 +150,31 @@ X # Default - Yes, recomended No. :) X received No X X+# The first symbol from the 'sentmode' config field will stand in the X+# beginning of each line in ?lo ("#" is default). X+sentmode ^ X+ X+# "From:" field in _body_ message (Internet -> FidoNet). X+bodyfrom No X+ X # Transport programs for mail and news, used by iftoss X # for sendmail, $F expands to "from" address, $T - to "to" address. X-sendmail /usr/lib/sendmail -f $F $T X-rnews /bin/rnews X+sendmail /usr/sbin/sendmail -f $F $T X+rnews /usr/local/bin/rnews X X # Toss program, used by ifunpack X-iftoss /usr/lib/ifmail/iftoss X+iftoss /usr/local/libexec/ifmail/iftoss X X # Unpackers, used by ifunpack. X # $F expands to archieve file name X-unzip /usr/bin/unzip -ojq $F X-unarj /usr/bin/unarj e $F X-unarc /usr/bin/unpack $F X-unzoo /usr/bin/zoo -extract $F X+unzip /usr/local/bin/unzip -ojq $F X+unarj /usr/local/bin/unarj e $F X+unarc /usr/local/bin/unpack $F X+unzoo /usr/local/bin/zoo -extract $F X X # Packer program, used by ifpack X # $F expands to archieve file name, $P - to list of packet names X-packer /usr/bin/zip $F $P X+packer /usr/local/bin/zip $F $P X X # Maximum arcmail file size, ifpack will start new arcmail file if exceeds X maxfsize 500000 X@@ -187,7 +194,7 @@ X nonpacked cm X X # cnews log file and (temporary) database for seen-bys X-newslog /usr/lib/news/log X+newslog /var/log/news/news X msgidbm /tmp/ifmsgids X X # From this line on, values may be prefixed by a logical expression in X@@ -229,7 +236,7 @@ X # actual speed is taken from the nodelist. If speed is omitted (or set X # to zero), previous port speed is not changed. X #ModemPort (time Any0000-0900,Sat,Sun) ttyS0 X-ModemPort cua0:L38400 X+ModemPort cuaa0:L38400 X X # PhoneTrans lines provide rules to change phone prefixes to make local X # or long-distance calls. In the example below, my country code is 7, X@@ -250,6 +257,7 @@ X ModemDial (speed < 4800) AT&N3DP\T\r X ModemDial ATDP\T\r X ModemHangup ATZ\r X+ModemAfterCall +++ X ModemOK OK X ModemConnect CONNECT X ModemError BUSY X@@ -260,7 +268,7 @@ X X # Timeouts to wait for "OK" and "CONNECT", cannot be prefixed by logical X # expression. X-TimeoutReset 3 X+TimeoutReset 6 X TimeoutConnect 70 X X # Delay in seconds before every call in "automatic" mode. Ignored END-of-ifmail-os/patches/patch-ae exit -- DSS5-RIPE DSS-RIPN 2:550/5068@fidonet 2:5055/68@fidonet mailto:wizard@vlink.ru http://neva.vlink.ru Key fingerprint = 46 C8 1B 3B 15 1F 64 B0 38 0B 28 CE B0 75 7B E9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 11 22: 0: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A75015A44 for ; Tue, 11 May 1999 22:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA09603; Tue, 11 May 1999 22:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id AA07715254 for ; Tue, 11 May 1999 21:51:11 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 82CCC1457; Tue, 11 May 1999 21:51:04 -0700 (PDT) Message-Id: <19990512045104.82CCC1457@norn.ca.eu.org> Date: Tue, 11 May 1999 21:51:04 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11661: master site update for cmp3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11661 >Category: ports >Synopsis: master site update for cmp3 >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 May 11 22:00:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD 4.0-CURRENT i386 >Description: Update the master_site for the audio/cmp3 port. The md5 change appears to be a slight bugfix applied without changing the version number. >How-To-Repeat: >Fix: Index: cmp3/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/audio/cmp3/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- Makefile 1999/04/15 03:10:06 1.3 +++ Makefile 1999/05/12 04:40:31 @@ -9,7 +9,7 @@ DISTNAME= cmp3-2.0pre3 PKGNAME= cmp3-2.0p3 CATEGORIES= audio -MASTER_SITES= http://nkk104.rh.psu.edu/cmp3/ +MASTER_SITES= http://www.personal.psu.edu/users/n/k/nkk104/cmp3/ MAINTAINER= cpiazza@home.net Index: cmp3/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/audio/cmp3/files/md5,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 md5 --- md5 1999/04/13 23:26:27 1.1.1.1 +++ md5 1999/05/12 04:41:19 @@ -1 +1 @@ -MD5 (cmp3-2.0pre3.tar.gz) = 5f2014ded170a67577ce8323312ce451 +MD5 (cmp3-2.0pre3.tar.gz) = 028354f2d513dff7019db28bee25d570 -Chris >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 May 11 22: 9: 1 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 516AD15254; Tue, 11 May 1999 22:09:00 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA10478; Tue, 11 May 1999 22:09:00 -0700 (PDT) (envelope-from asami@FreeBSD.org) Date: Tue, 11 May 1999 22:09:00 -0700 (PDT) From: Message-Id: <199905120509.WAA10478@freefall.freebsd.org> To: tarkhil@asteroid.svib.ru, asami@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11642: editors/AbiWord doesn't compile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: editors/AbiWord doesn't compile State-Changed-From-To: open->closed State-Changed-By: asami State-Changed-When: Tue May 11 22:08:43 PDT 1999 State-Changed-Why: Fix is in 11612. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 11 22:31: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from stampede.cs.berkeley.edu (stampede.CS.Berkeley.EDU [128.32.45.124]) by hub.freebsd.org (Postfix) with ESMTP id 5F12014F32 for ; Tue, 11 May 1999 22:31:06 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from bubble.didi.com (sji-ca43-212.ix.netcom.com [209.111.209.212]) by stampede.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id WAA09746; Tue, 11 May 1999 22:31:56 -0700 (PDT) Received: (from asami@localhost) by bubble.didi.com (8.9.2/8.8.8) id WAA38761; Tue, 11 May 1999 22:30:46 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Date: Tue, 11 May 1999 22:30:46 -0700 (PDT) Message-Id: <199905120530.WAA38761@bubble.didi.com> X-Authentication-Warning: bubble.didi.com: asami set sender to asami@cs.berkeley.edu using -f To: rssh@grad.kiev.ua Cc: ports@freebsd.org In-reply-to: <3738E5B6.506BE3B4@Shevchenko.Kiev.UA> (message from Ruslan Shevchenko on Wed, 12 May 1999 05:21:42 +0300) Subject: Re: fix fo lang/sr [Re: package building errors] From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) References: <199905120056.RAA02913@vader.cs.berkeley.edu> <3738E5B6.506BE3B4@Shevchenko.Kiev.UA> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Ruslan Shevchenko * my port lang/sr was marked as broken-elf * * 1. attached is patch-ab which fix the problem. * * 2. I updated my mail address in Makefile (attached Makefile.diff) Thanks. It compiled fine with the patch, I had to remove one file from pkg/PLIST to make the package work fine though. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 11 22:40:33 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DC21015A82; Tue, 11 May 1999 22:40:30 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA13958; Tue, 11 May 1999 22:40:30 -0700 (PDT) (envelope-from asami@FreeBSD.org) Date: Tue, 11 May 1999 22:40:30 -0700 (PDT) From: Message-Id: <199905120540.WAA13958@freefall.freebsd.org> To: shipley@dis.org, asami@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11639: Update to port libnet Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update to port libnet State-Changed-From-To: open->closed State-Changed-By: asami State-Changed-When: Tue May 11 22:39:44 PDT 1999 State-Changed-Why: Too many problems (already sent to submitter in private mail). Please resubmit.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 11 23:30: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A534415C45 for ; Tue, 11 May 1999 23:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA19409; Tue, 11 May 1999 23:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from dipshit.dis.org (dipshit-inside.dis.org [209.157.93.10]) by hub.freebsd.org (Postfix) with ESMTP id 58C5214E39 for ; Tue, 11 May 1999 23:25:26 -0700 (PDT) (envelope-from shipley@dipshit.dis.org) Received: (from root@localhost) by dipshit.dis.org (8.9.2/8.9.1) id XAA08441; Tue, 11 May 1999 23:25:25 -0700 (PDT) (envelope-from shipley) Message-Id: <199905120625.XAA08441@dipshit.dis.org> Date: Tue, 11 May 1999 23:25:25 -0700 (PDT) From: shipley@dis.org Reply-To: shipley@dis.org To: FreeBSD-gnats-submit@freebsd.org Cc: asami@cs.berkeley.edu X-Send-Pr-Version: 3.2 Subject: ports/11662: diff update to libnet (0.99a -> 0.99b) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11662 >Category: ports >Synopsis: Update to port libnet >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 May 11 23:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Peter Shipley >Release: >Organization: Dis.Org >Environment: FreeBSD 3.1 i386 >Description: this is a update for the latest version of libnet required for the firewalk port (security) >How-To-Repeat: >Fix: diff -ur libnet-old/Makefile libnet/Makefile --- libnet-old/Makefile Tue May 11 23:15:45 1999 +++ libnet/Makefile Tue May 11 23:17:14 1999 @@ -6,8 +6,8 @@ # $Id: Makefile,v 1.1.1.1 1999/05/09 01:16:34 steve Exp $ # -DISTNAME= libnet-0.99a -PKGNAME= libnet-0.9.2 +DISTNAME= libnet-0.99b +PKGNAME= libnet-0.9.3 CATEGORIES= net MASTER_SITES= http://www.packetfactory.net/libnet/dist/ EXTRACT_SUFX= .tgz @@ -25,7 +25,7 @@ BROKEN= does not build .endif -WRKSRC= ${WRKDIR}/Libnet-0.99a +WRKSRC= ${WRKDIR}/Libnet-0.99b post-install: .if !defined(NOPORTDOCS) diff -ur libnet-old/files/md5 libnet/files/md5 --- libnet-old/files/md5 Tue May 11 23:15:44 1999 +++ libnet/files/md5 Tue May 11 23:19:38 1999 @@ -1 +1 @@ -MD5 (libnet-0.99a.tgz) = c7c9068e9ff7291af9ac7f84531e6a4f +MD5 (libnet-0.99b.tgz) = 078dc5638c72e39cbc629b19e0e708d3 diff -ur libnet-old/patches/patch-aa libnet/patches/patch-aa --- libnet-old/patches/patch-aa Tue May 11 23:15:45 1999 +++ libnet/patches/patch-aa Tue May 11 23:19:09 1999 @@ -1,11 +1,19 @@ ---- configure.orig Fri Apr 16 12:43:19 1999 -+++ configure Fri May 7 15:57:21 1999 -@@ -1519,7 +1519,7 @@ - EOF - - MAN_PREFIX="$prefix/man/man3/" -- LIB_PREFIX="$prefix/lib/aout" -+ LIB_PREFIX="$prefix/lib/" - INC_PREFIX="$prefix/include/" - BIN_PREFIX="$prefix/bin/" - ln -sf FreeBSD support/bpf-lkm/etherspoof +*** configure.in- Mon May 10 18:39:16 1999 +--- configure.in Mon May 10 18:40:09 1999 +*************** +*** 146,152 **** + AC_DEFINE(BSDISH_OS) + AC_DEFINE(BSD_BYTE_SWAP) + MAN_PREFIX="$prefix/man/man3/" +! LIB_PREFIX="$prefix/lib/aout" + INC_PREFIX="$prefix/include/" + BIN_PREFIX="$prefix/bin/" + ln -sf FreeBSD support/bpf-lkm/etherspoof +--- 146,152 ---- + AC_DEFINE(BSDISH_OS) + AC_DEFINE(BSD_BYTE_SWAP) + MAN_PREFIX="$prefix/man/man3/" +! LIB_PREFIX="$prefix/lib/" + INC_PREFIX="$prefix/include/" + BIN_PREFIX="$prefix/bin/" + ln -sf FreeBSD support/bpf-lkm/etherspoof diff -ur libnet-old/patches/patch-ab libnet/patches/patch-ab --- libnet-old/patches/patch-ab Tue May 11 23:15:45 1999 +++ libnet/patches/patch-ab Tue May 11 23:19:09 1999 @@ -1,11 +1,19 @@ ---- Makefile.in.orig Fri May 7 16:02:05 1999 -+++ Makefile.in Fri May 7 16:02:15 1999 -@@ -65,7 +65,7 @@ - $(ENSUREDIR) $(DESTDIR)@MAN_PREFIX@ 755 - $(ENSUREDIR) $(DESTDIR)@BIN_PREFIX@ 755 - $(INSTALL) -c -m 0644 $(LIB) $(DESTDIR)@LIB_PREFIX@ -- $(LN) -sf $(DESTDIR)@LIB_PREFIX@$(LIBNET).a $(DESTDIR)@LIB_PREFIX@$(LIBPWRITE) -+# $(LN) -sf $(DESTDIR)@LIB_PREFIX@$(LIBNET).a $(DESTDIR)@LIB_PREFIX@$(LIBPWRITE) - $(INSTALL) -c -m 0644 $(INCLUDE) $(DESTDIR)@INC_PREFIX@ - $(INSTALL) -c -m 0644 $(INCLUDE-H) $(DESTDIR)@INC_PREFIX@ - $(INSTALL) -c -m 0644 $(INCLUDE-ASN) $(DESTDIR)@INC_PREFIX@ +*** configure- Mon May 10 18:39:03 1999 +--- configure Mon May 10 18:40:01 1999 +*************** +*** 1519,1525 **** + EOF + + MAN_PREFIX="$prefix/man/man3/" +! LIB_PREFIX="$prefix/lib/aout" + INC_PREFIX="$prefix/include/" + BIN_PREFIX="$prefix/bin/" + ln -sf FreeBSD support/bpf-lkm/etherspoof +--- 1519,1525 ---- + EOF + + MAN_PREFIX="$prefix/man/man3/" +! LIB_PREFIX="$prefix/lib/" + INC_PREFIX="$prefix/include/" + BIN_PREFIX="$prefix/bin/" + ln -sf FreeBSD support/bpf-lkm/etherspoof diff -ur libnet-old/pkg/PLIST libnet/pkg/PLIST --- libnet-old/pkg/PLIST Tue May 11 23:15:44 1999 +++ libnet/pkg/PLIST Tue May 11 23:18:43 1999 @@ -1,6 +1,9 @@ include/libnet.h -include/libnet-headers.h -include/libnet-asn1.h +include/libnet/libnet-headers.h +include/libnet/libnet-functions.h +include/libnet/libnet-structures.h +include/libnet/libnet-macros.h +include/libnet/libnet-asn1.h lib/libnet.a share/doc/libnet/PORTS share/doc/libnet/README @@ -11,3 +14,4 @@ share/doc/libnet/README.rawsockets share/doc/libnet/README.stubs @dirrm share/doc/libnet +@dirrm include/libnet >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 May 11 23:35: 1 1999 Delivered-To: freebsd-ports@freebsd.org Received: from smtp1.tig.com.au (stress.tig.com.au [203.109.250.50]) by hub.freebsd.org (Postfix) with ESMTP id E8C5614E39 for ; Tue, 11 May 1999 23:34:57 -0700 (PDT) (envelope-from moonlite@ihug.com.au) Received: from ihug.com.au (IDENT:root@p10-max5.mel.ihug.com.au [209.79.140.74]) by smtp1.tig.com.au (8.9.1/8.9.1) with ESMTP id QAA00809 for ; Wed, 12 May 1999 16:34:55 +1000 Message-ID: <37392C62.1BD3FD0F@ihug.com.au> Date: Wed, 12 May 1999 07:23:14 +0000 From: Leigh Morresi Reply-To: moonlite@ihug.com.au Organization: 4am X-Mailer: Mozilla 4.51 [en] (X11; I; Linux 2.2.8 i586) X-Accept-Language: en MIME-Version: 1.0 To: ports@FreeBSD.ORG Subject: oleo 1.99 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org gday moonlite here ummn, you wouldnt know were i could find oldeo version 1.99? theres 1.6 around eerwere, but im after 1.99 cya To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 11 23:50: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6236714DD7 for ; Tue, 11 May 1999 23:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA20412; Tue, 11 May 1999 23:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 11 May 1999 23:50:02 -0700 (PDT) Message-Id: <199905120650.XAA20412@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) Subject: Re: ports/11662: diff update to libnet (0.99a -> 0.99b) Reply-To: asami@freebsd.org (Satoshi - Ports Wraith - Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11662; it has been noted by GNATS. From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) To: shipley@dis.org Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/11662: diff update to libnet (0.99a -> 0.99b) Date: Tue, 11 May 1999 23:42:45 -0700 (PDT) * Cc: asami@cs.berkeley.edu You shouldn't do this...(if I replied to the first mail I got, that will open up another PR, since the "11662" will not be in the subject line of that mail... :). * diff -ur libnet-old/patches/patch-aa libnet/patches/patch-aa * --- libnet-old/patches/patch-aa Tue May 11 23:15:45 1999 * +++ libnet/patches/patch-aa Tue May 11 23:19:09 1999 * @@ -1,11 +1,19 @@ * ---- configure.orig Fri Apr 16 12:43:19 1999 * -+++ configure Fri May 7 15:57:21 1999 * -@@ -1519,7 +1519,7 @@ * - EOF * - * - MAN_PREFIX="$prefix/man/man3/" * -- LIB_PREFIX="$prefix/lib/aout" * -+ LIB_PREFIX="$prefix/lib/" * - INC_PREFIX="$prefix/include/" * - BIN_PREFIX="$prefix/bin/" * - ln -sf FreeBSD support/bpf-lkm/etherspoof * +*** configure.in- Mon May 10 18:39:16 1999 * +--- configure.in Mon May 10 18:40:09 1999 * +*************** * +*** 146,152 **** * + AC_DEFINE(BSDISH_OS) * + AC_DEFINE(BSD_BYTE_SWAP) * + MAN_PREFIX="$prefix/man/man3/" * +! LIB_PREFIX="$prefix/lib/aout" * + INC_PREFIX="$prefix/include/" * + BIN_PREFIX="$prefix/bin/" * + ln -sf FreeBSD support/bpf-lkm/etherspoof * +--- 146,152 ---- * + AC_DEFINE(BSDISH_OS) * + AC_DEFINE(BSD_BYTE_SWAP) * + MAN_PREFIX="$prefix/man/man3/" * +! LIB_PREFIX="$prefix/lib/" * + INC_PREFIX="$prefix/include/" * + BIN_PREFIX="$prefix/bin/" * + ln -sf FreeBSD support/bpf-lkm/etherspoof Please don't change patch styles gratuitously. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 0:14:29 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8AF8715267; Wed, 12 May 1999 00:14:28 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA22489; Wed, 12 May 1999 00:14:28 -0700 (PDT) (envelope-from asami@FreeBSD.org) Date: Wed, 12 May 1999 00:14:28 -0700 (PDT) From: Message-Id: <199905120714.AAA22489@freefall.freebsd.org> To: shipley@dis.org, asami@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11640: Update to port slush Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update to port slush State-Changed-From-To: open->closed State-Changed-By: asami State-Changed-When: Wed May 12 00:14:08 PDT 1999 State-Changed-Why: Closed at originator's request, new one coming soon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 0:20:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 560A515D01 for ; Wed, 12 May 1999 00:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA22805; Wed, 12 May 1999 00:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from dipshit.dis.org (dipshit-inside.dis.org [209.157.93.10]) by hub.freebsd.org (Postfix) with ESMTP id 240CD15267 for ; Wed, 12 May 1999 00:19:02 -0700 (PDT) (envelope-from shipley@dipshit.dis.org) Received: (from root@localhost) by dipshit.dis.org (8.9.2/8.9.1) id AAA19910; Wed, 12 May 1999 00:19:01 -0700 (PDT) (envelope-from shipley) Message-Id: <199905120719.AAA19910@dipshit.dis.org> Date: Wed, 12 May 1999 00:19:01 -0700 (PDT) From: shipleydis.org@dipshit.dis.org Reply-To: shipley@dis.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11663: diff to update slush-0.1.0 -> slush-0.1.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11663 >Category: ports >Synopsis: Update to port libnet >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 May 12 00:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Peter Shipley >Release: >Organization: Dis.Org >Environment: ports >Description: update for port net/slush to current version also updates distribution site for src package >How-To-Repeat: -- >Fix: diff -ur slush-old/Makefile slush/Makefile --- slush-old/Makefile Tue May 11 23:26:13 1999 +++ slush/Makefile Tue May 11 23:35:56 1999 @@ -6,11 +6,10 @@ # $Id: Makefile,v 1.2 1999/05/09 17:53:12 steve Exp $ # -DISTNAME= slush-0_1_0 -PKGNAME= slush-0.1.0 +DISTNAME= slush-0.1.1 CATEGORIES= security net -MASTER_SITES= ftp://www.dis.org/pub/Security/ -EXTRACT_SUFX= _tar.gz +MASTER_SITES= http://violet.ibs.com.au/slush/files/ \ + ftp://www.dis.org/pub/Security/ MAINTAINER= shipley@dis.org @@ -27,7 +26,7 @@ BROKEN= does not build .endif -WRKSRC= ${WRKDIR}/slush-0.1.0 +WRKSRC= ${WRKDIR}/slush-0.1.1 .if defined(USA_RESIDENT) && ${USA_RESIDENT} == YES MAKE_ENV+= EXTRA_SSL_LIBS="-lRSAglue -lrsaref" .endif diff -ur slush-old/files/md5 slush/files/md5 --- slush-old/files/md5 Tue May 11 23:26:13 1999 +++ slush/files/md5 Tue May 11 23:36:13 1999 @@ -1 +1 @@ -MD5 (slush-0_1_0_tar.gz) = a2a83e760632e2a0c12a7fdb29603ec3 +MD5 (slush-0.1.1.tar.gz) = 0fb0d298e4dba05ec602d362fdf8f088 diff -ur slush-old/patches/patch-aa slush/patches/patch-aa --- slush-old/patches/patch-aa Tue May 11 23:26:13 1999 +++ slush/patches/patch-aa Tue May 11 23:33:01 1999 @@ -1,7 +1,7 @@ -*** Makefile.in.orig Tue Apr 6 03:05:04 1999 ---- Makefile.in Sun May 9 00:05:44 1999 +*** Makefile.in- Fri May 7 02:00:37 1999 +--- Makefile.in Fri May 7 02:01:05 1999 *************** -*** 9,27 **** +*** 9,16 **** CC=@CC@ INSTALL=@INSTALL@ @@ -10,51 +10,12 @@ all: slush slushd - slushd: slushd.o common.o -! $(CC) $(LDFLAGS) -s -o $@ slushd.o common.o $(LIBS) - - slushd.o: slushd.c common.o - $(CC) -c $(CFLAGS) slushd.c - - slush: slush.o common.o -! $(CC) $(LDFLAGS) -s -o $@ slush.o common.o $(LIBS) - - slush.o: slush.c common.o - $(CC) -c $(CFLAGS) slush.c ---- 9,27 ---- +--- 9,16 ---- CC=@CC@ INSTALL=@INSTALL@ ! CFLAGS=@CFLAGS@ -Wall -DVERSION=\"$(VERSION)\" -I/usr/local/include -! LIBS=@LIBS@ -L/usr/local/lib -lssl -lcrypto $(EXTRA_SSL_LIBS) -lutil +! LIBS=@LIBS@ -L/usr/local/lib -lssl -lcrypto -lRSAglue -lrsaref -lutil all: slush slushd - slushd: slushd.o common.o -! $(CC) -static $(LDFLAGS) -o $@ slushd.o common.o $(LIBS) - - slushd.o: slushd.c common.o - $(CC) -c $(CFLAGS) slushd.c - - slush: slush.o common.o -! $(CC) -static $(LDFLAGS) -o $@ slush.o common.o $(LIBS) - - slush.o: slush.c common.o - $(CC) -c $(CFLAGS) slush.c -*************** -*** 38,44 **** - install: $(SBINDIR)/slushd $(MANDIR)/slush.8 - - cert: -! ssleay req -new -x509 -nodes \ - -out slushd.pem -days 365 -keyout slushd.pem - - clean: ---- 38,44 ---- - install: $(SBINDIR)/slushd $(MANDIR)/slush.8 - - cert: -! openssl req -new -x509 -nodes \ - -out slushd.pem -days 365 -keyout slushd.pem - - clean: diff -ur slush-old/patches/patch-ac slush/patches/patch-ac --- slush-old/patches/patch-ac Tue May 11 23:26:13 1999 +++ slush/patches/patch-ac Tue May 11 23:33:01 1999 @@ -1,5 +1,5 @@ -*** slushd.c.orig Tue Apr 6 05:14:04 1999 ---- slushd.c Sat May 8 23:53:40 1999 +*** slushd.c- Fri May 7 04:04:35 1999 +--- slushd.c Fri May 7 04:06:11 1999 *************** *** 40,46 **** #include @@ -26,6 +26,23 @@ + #ifdef HAVE_UNISTD_H #include /* fork, execvp, exit */ + #endif +*************** +*** 199,205 **** + if (!hosts_access(&request)) + { + syslog(LOG_ERR, "Connection refused from %s:%d", +! inet_ntoa(addr.sin_addr), ntohs(addr.sin_port)); + exit(2); + } + #endif +--- 200,206 ---- + if (!hosts_access(&request)) + { + syslog(LOG_ERR, "Connection refused from %s:%d", +! inen_ntoa(addr.sin_addr), ntohs(addr.sin_port)); + exit(2); + } #endif *************** *** 654,711 **** >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 May 12 1: 4:47 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D51314D24; Wed, 12 May 1999 01:04:45 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA26657; Wed, 12 May 1999 01:04:45 -0700 (PDT) (envelope-from asami@FreeBSD.org) Date: Wed, 12 May 1999 01:04:45 -0700 (PDT) From: Message-Id: <199905120804.BAA26657@freefall.freebsd.org> To: shipley@dis.org, asami@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11662: Update to port libnet Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update to port libnet State-Changed-From-To: open->closed State-Changed-By: asami State-Changed-When: Wed May 12 01:04:31 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 2:10: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E9CD15A9A for ; Wed, 12 May 1999 02:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA32164; Wed, 12 May 1999 02:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id A47B014DD7; Wed, 12 May 1999 02:07:34 -0700 (PDT) Message-Id: <19990512090734.A47B014DD7@hub.freebsd.org> Date: Wed, 12 May 1999 02:07:34 -0700 (PDT) From: rmiya@cc.hirosaki-u.ac.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11665: ports tarballs (mopac7, psi88) cannot be get from www page Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11665 >Category: ports >Synopsis: ports tarballs (mopac7, psi88) cannot be get from www page >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed May 12 02:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ryo MIYAMOTO >Release: >Organization: >Environment: >Description: Ports tarballs of biology/mopac and biology/psi88 cannot be obtained from WWW pages of http://www.freebsd.org/ports/biology.html, etc. >How-To-Repeat: >Fix: The ports of biology/mopac and biology/psi88 were changed their category from misc to biology in a few weeks ago. But, descriptions and links in biology.html and misc.html were not changed. >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 May 12 4:12:30 1999 Delivered-To: freebsd-ports@freebsd.org Received: from sims-ha.videotron.net (faure.videotron.net [205.151.222.100]) by hub.freebsd.org (Postfix) with ESMTP id 61B1614F79; Wed, 12 May 1999 04:12:28 -0700 (PDT) (envelope-from nicblais@videotron.ca) Received: from videotron.ca ([207.253.83.142]) by sims-ha.videotron.net (Sun Internet Mail Server sims.3.5.1999.03.02.17.58.p5) with ESMTP id <0FBM00G829SNMD@sims-ha.videotron.net>; Wed, 12 May 1999 07:12:25 -0400 (EDT) Date: Wed, 12 May 1999 07:12:03 -0400 From: Nicolas Blais Subject: FreeBSD Port: netrek-COW-3.00p0 To: dburr@FreeBSD.ORG Cc: ports@FreeBSD.org Message-id: <37396203.C5CE968D@videotron.ca> MIME-version: 1.0 X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.1-RELEASE 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 I have made the binary for COW3.00pl1 for FreeBSD 3.1 so it works perfectly. It's RSA enabled. I'm willing to send it to you so you can add it to the ports/package and an only cost of adding this line to the description: Compiled by Nicolas Blais. Not that hard right? Reply if you want it! I'll be happy to send it. Later, -- Nicolas Blais nicblais@videotron.ca Powered by FreeBSD http://www.freebsd.org My current running version : FreeBSD 3.1-RELEASE http://pages.infinit.net/primary To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 4:51:49 1999 Delivered-To: freebsd-ports@freebsd.org Received: from picnic.mat.net (picnic.mat.net [206.246.122.133]) by hub.freebsd.org (Postfix) with ESMTP id 26D8814FFC; Wed, 12 May 1999 04:51:46 -0700 (PDT) (envelope-from chuckr@picnic.mat.net) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.9.3/8.8.5) with ESMTP id HAA82115; Wed, 12 May 1999 07:49:30 -0400 (EDT) Date: Wed, 12 May 1999 07:49:29 -0400 (EDT) From: Chuck Robey To: Nicolas Blais Cc: dburr@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: netrek-COW-3.00p0 In-Reply-To: <37396203.C5CE968D@videotron.ca> 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 Wed, 12 May 1999, Nicolas Blais wrote: > I have made the binary for COW3.00pl1 for FreeBSD 3.1 so it works > perfectly. It's RSA enabled. I'm willing to send it to you so you can > add it to the ports/package and an only cost of adding this line to the > description: > > Compiled by Nicolas Blais. > > Not that hard right? > Reply if you want it! I'll be happy to send it. You're probably new to FreeBSD ports ... which are a system of adapting a piece of 3rd party software so that it builds and installs cleanly on FreeBSD. It also enables the automatic construction of "packages" which are binary-only aggregations, that are set up to install and delete themselves cleanly on FreeBSD. What would be wanted here would be a port of COW3.00pl1 ... I think, because I haven't any idea what it really is. As long as it's not an instruction manual for making explosives .... :-) ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@picnic.mat.net | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run picnic (FreeBSD-current) (301) 220-2114 | and jaunt (Solaris7). ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 4:54:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from picnic.mat.net (picnic.mat.net [206.246.122.133]) by hub.freebsd.org (Postfix) with ESMTP id B51BA1506E for ; Wed, 12 May 1999 04:54:09 -0700 (PDT) (envelope-from chuckr@picnic.mat.net) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.9.3/8.8.5) with ESMTP id HAA82138 for ; Wed, 12 May 1999 07:51:56 -0400 (EDT) Date: Wed, 12 May 1999 07:51:56 -0400 (EDT) From: Chuck Robey To: FreeBSD Ports Team Subject: games/netrek-COW3-bin 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 While looking around to answer a question, I noticed in the DESCR file for games/netrek-COW3-bin: NOTE 3: This client, since it is still in development, has an expiration date. The current version of the client will expire on Fri, 4/16/99. Shouldn't this port be deleted, then? Or at least marked BROKEN? ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@picnic.mat.net | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run picnic (FreeBSD-current) (301) 220-2114 | and jaunt (Solaris7). ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 5:10: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BD1015357 for ; Wed, 12 May 1999 05:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA49855; Wed, 12 May 1999 05:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 1DE3E14FC3 for ; Wed, 12 May 1999 05:04:27 -0700 (PDT) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 2.12 #1) id 10hXkQ-000EUW-00 for FreeBSD-gnats-submit@freebsd.org; Wed, 12 May 1999 14:04:26 +0200 Message-Id: <55705.926510665@axl.noc.iafrica.com> Date: Wed, 12 May 1999 14:04:25 +0200 From: Sheldon Hearn Reply-To: Sheldon Hearn To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11668: [PATCH] Add WWW URL to xpilot DESCR Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11668 >Category: ports >Synopsis: [PATCH] Add WWW URL to xpilot DESCR >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: Wed May 12 05:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Sheldon Hearn >Release: FreeBSD 4.0-CURRENT i386 >Organization: UUNET South Africa >Environment: FreeBSD 4.0-CURRENT #0: Mon Apr 19 20:00:59 SAST 1999 i386 >Description: The xpilot port's DESCR file does not include the package's home page URL. Adding it would make it easier for folks to find out about available servers, name registrations etc. >How-To-Repeat: N/A >Fix: The following diff adds a home page URL field to the xpilot port's package description file. Index: DESCR =================================================================== RCS file: /home/ncvs/ports/games/xpilot/pkg/DESCR,v retrieving revision 1.1.1.1 diff -u -d -r1.1.1.1 DESCR --- DESCR 1995/07/18 06:17:59 1.1.1.1 +++ DESCR 1999/05/12 12:01:38 @@ -6,3 +6,5 @@ and other robots. Players can pickup special bonuses to improve the possibilities of their ship like more engine power or special weapons. The aim of the game is to score points and to have a lot of fun. + +WWW: http://www.xpilot.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 Wed May 12 7: 2:35 1999 Delivered-To: freebsd-ports@freebsd.org Received: from y.ml.org (unknown [204.254.69.29]) by hub.freebsd.org (Postfix) with ESMTP id C827415BCC for ; Wed, 12 May 1999 07:02:32 -0700 (PDT) (envelope-from j@y.ml.org) Received: (from j@localhost) by y.ml.org (8.9.3-Y/8.9.3) id HAA17371; Wed, 12 May 1999 07:02:26 -0700 (PDT) (envelope-from j) Date: Wed, 12 May 1999 07:02:24 -0700 From: "J. Heinrich" To: "David O'Brien" Cc: freebsd-ports@freebsd.org Subject: Re: egcs-1.1.2 port builds but fails to install on 3.1-RELEASE Message-ID: <19990512070222.A17342@y.ml.org> References: <19990509180323.A12001@y.ml.org> <19990510012354.A6280@dragon.nuxi.com> <19990510065243.A13455@y.ml.org> <19990510104705.B7341@dragon.nuxi.com> <19990510221419.A14164@y.ml.org> <19990511175546.A28635@nuxi.com> <19990511210803.A15992@y.ml.org> <19990511212701.C28846@nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.5i In-Reply-To: <19990511212701.C28846@nuxi.com>; from David O'Brien on Tue, May 11, 1999 at 09:27:01PM -0700 X-Organization: Y Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, May 11, 1999 at 09:27:01PM -0700, David O'Brien wrote: > Latest is > $Id: bsd.port.mk,v 1.312 1999/05/06 12:07:57 asami Exp $ It appears that this was my problem. I mistakenly assumed that this was taken care of in the "3.1 to 3.1-stable upgrade kit" (31upgrade.tgz). I grabbed bsd.port.mk (1.313 1999/05/10 23:11:07) from ftp.freebsd.org/pub/FreeBSD/ports/ports-stable/Mk/bsd.port.mk (along with a new bsd.port.subdir.mk). Thanks for your help. > -- > -- David (obrien@NUXI.com -or- obrien@FreeBSD.org) -- jh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 7: 4: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from Prime-FE2.lvcablemodem.com (prime-fe2.lvcablemodem.com [24.234.0.11]) by hub.freebsd.org (Postfix) with ESMTP id E7EE214CBA; Wed, 12 May 1999 07:04:08 -0700 (PDT) (envelope-from mlholloway@yahoo.com) Received: from prime-fe2.lvcablemodem.com - 24.234.0.11 by lvcablemodem.com with Microsoft SMTPSVC; Wed, 12 May 1999 07:09:57 -0700 Received: from yahoo.com (dhcp200.59.lvcm.com [24.234.59.200]) by prime-fe2.lvcablemodem.com with SMTP (MailShield v1.5); Wed, 12 May 1999 07:09:57 -0700 Message-ID: <37391924.1972E2E4@yahoo.com> Date: Tue, 11 May 1999 23:01:08 -0700 From: Holloway X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 3.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: torstenb@FreeBSD.ORG Cc: ports@FreeBSD.org Subject: FreeBSD Port: ssh-1.2.26 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org All the FTP sites for SSH 1.2.26 do not work. Since this program is required for v2.x could you look into it? Last time I tried this I think 1 or 2 of the sites worked, but now they all fail. Maybe you can try it and let me know.. I appreciate it! BTW, I didn't see the distfiles for this on ftp.freebsd.com either, that's why I'm emailing you.. Take care.. Mark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 8:16: 2 1999 Delivered-To: freebsd-ports@freebsd.org Received: from voyager.fisicc-ufm.edu (ip-46-094.guate.net [200.12.46.94]) by hub.freebsd.org (Postfix) with ESMTP id 73EDE15349; Wed, 12 May 1999 08:15:46 -0700 (PDT) (envelope-from obonilla@voyager.fisicc-ufm.edu) Received: (from obonilla@localhost) by voyager.fisicc-ufm.edu (8.9.3/8.9.3) id JAA09045; Wed, 12 May 1999 09:15:19 -0600 (CST) (envelope-from obonilla) Date: Wed, 12 May 1999 09:15:17 -0600 From: Oscar Bonilla To: Holloway Cc: torstenb@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: ssh-1.2.26 Message-ID: <19990512091517.D8004@fisicc-ufm.edu> References: <37391924.1972E2E4@yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <37391924.1972E2E4@yahoo.com>; from Holloway on Tue, May 11, 1999 at 11:01:08PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, May 11, 1999 at 11:01:08PM -0700, Holloway wrote: > All the FTP sites for SSH 1.2.26 do not work. Since this program is > required for v2.x could you look into it? Last time I tried this I > think 1 or 2 of the sites worked, but now they all fail. Maybe you can > try it and let me know.. I appreciate it! BTW, I didn't see the > distfiles for this on ftp.freebsd.com either, that's why I'm emailing > you.. > actually: what's the point of having ssh2 depend on ssh1? i've installed ssh2 plenty of times and the only reason i can see for making it depend on ssh1 is that the install part blows when trying to move the ssh* stuff to ssh*.old if ssh* doesn't exist. wouldn't it be easier to patch the install script of ssh2? Regards, -Oscar To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 8:42:47 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mx.issei.org (mx.issei.org [210.169.187.134]) by hub.freebsd.org (Postfix) with ESMTP id 2918715D7A; Wed, 12 May 1999 08:42:38 -0700 (PDT) (envelope-from issei@issei.org) Received: from localhost (tole.issei.org [192.168.1.2]) by mx.issei.org (Postfix) with ESMTP id E9A982097; Thu, 13 May 1999 00:42:34 +0900 (JST) To: mlholloway@yahoo.com, torstenb@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: ssh-1.2.26 In-Reply-To: Your message of "Wed, 12 May 1999 09:15:17 -0600" <19990512091517.D8004@fisicc-ufm.edu> References: <19990512091517.D8004@fisicc-ufm.edu> X-Mailer: Mew version 1.93 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19990513004234H.issei@issei.org> Date: Thu, 13 May 1999 00:42:34 +0900 From: Issei Suzuki X-Dispatcher: imput version 980905(IM100) Lines: 22 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In mail "Re: FreeBSD Port: ssh-1.2.26" Oscar Bonilla wrote: > actually: what's the point of having ssh2 depend on ssh1? Compatibility. When you want to build sshd2 that supports both ssh1 and ssh2 client, you must install ssh1 before building ssh2. > wouldn't it be easier to patch the install script of ssh2? You can build ssh2 port without ssh1 client support only if you define USE_SSH1, like # make USE_SSH1=NO install In this case, ssh2 port does not depend on ssh1. Thanks, -- Issei Suzuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 8:53:39 1999 Delivered-To: freebsd-ports@freebsd.org Received: from voyager.fisicc-ufm.edu (ip-46-094.guate.net [200.12.46.94]) by hub.freebsd.org (Postfix) with ESMTP id 383F814FA4; Wed, 12 May 1999 08:53:18 -0700 (PDT) (envelope-from obonilla@voyager.fisicc-ufm.edu) Received: (from obonilla@localhost) by voyager.fisicc-ufm.edu (8.9.3/8.9.3) id JAA22045; Wed, 12 May 1999 09:52:33 -0600 (CST) (envelope-from obonilla) Date: Wed, 12 May 1999 09:52:33 -0600 From: Oscar Bonilla To: Issei Suzuki Cc: mlholloway@yahoo.com, torstenb@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: ssh-1.2.26 Message-ID: <19990512095233.D13848@fisicc-ufm.edu> References: <19990512091517.D8004@fisicc-ufm.edu> <19990513004234H.issei@issei.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <19990513004234H.issei@issei.org>; from Issei Suzuki on Thu, May 13, 1999 at 12:42:34AM +0900 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, May 13, 1999 at 12:42:34AM +0900, Issei Suzuki wrote: > In mail "Re: FreeBSD Port: ssh-1.2.26" > Oscar Bonilla wrote: > > > actually: what's the point of having ssh2 depend on ssh1? > > Compatibility. When you want to build sshd2 that supports both ssh1 > and ssh2 client, you must install ssh1 before building ssh2. ok. now there's a valid reason :) > > > wouldn't it be easier to patch the install script of ssh2? > > You can build ssh2 port without ssh1 client support only if you > define USE_SSH1, like > > # make USE_SSH1=NO install you mean this actually installs ssh2 without having to go all around /usr/local/bin and /usr/local/man "touching" files so the install completes..... man that's a win :) > > In this case, ssh2 port does not depend on ssh1. > > Regards, -Oscar To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 8:58:26 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mortar.carlson.com (mortar.carlson.com [208.240.12.98]) by hub.freebsd.org (Postfix) with ESMTP id 9621014FA4 for ; Wed, 12 May 1999 08:58:08 -0700 (PDT) (envelope-from veldy@visi.com) Received: from mortar.carlson.com (root@localhost) by mortar.carlson.com with ESMTP id KAA03952 for ; Wed, 12 May 1999 10:58:11 -0500 (CDT) Received: from w142844 ([172.25.99.35]) by mortar.carlson.com with SMTP id KAA03948 for ; Wed, 12 May 1999 10:58:10 -0500 (CDT) Message-ID: <00cc01be9c90$4912dff0$236319ac@w142844.carlson.com> From: "Thomas T. Veldhouse" To: "FreeBSD-Ports" Subject: Gnome on Current? Date: Wed, 12 May 1999 10:58:27 -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 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, I am running current as of yesterday and I built the Gnome port as of yesterdays CVSUP. My question is, has anybody had any luck starting Gnome under a similar circumstance. I have the following .xinitrc #!/bin/sh exec gnome-session I have enlightenment installed also, as of yesterday as well. The symptoms that I see are a simple server hang. It is not a true hang, but I never get a window manager or desktop, just the gray X-Windows screen with the X mouse pointer in the center. Nothing else. I start X using "startx -- -bpp 32". Why would this happen? I have followed the directions on the Gnome web page by placing the gnome-session exec in .xinitrc. Tom Veldhouse veldy@visi.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 9:20: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2A42414EAB for ; Wed, 12 May 1999 09:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA72616; Wed, 12 May 1999 09:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 12 May 1999 09:20:02 -0700 (PDT) Message-Id: <199905121620.JAA72616@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Subject: Re: ports/11601 replace port, please Reply-To: dirk.meyer@dinoex.sub.org (Dirk Meyer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11601; it has been noted by GNATS. From: dirk.meyer@dinoex.sub.org (Dirk Meyer) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/11601 replace port, please Date: Wed, 12 May 1999 09:22:28 +0200 Hi, I overlooked the port and approve it. If is an alternative to ports/news/ifmail kind regards Dirk -- Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany -- Tel. +49-5606-6512 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 10:25:18 1999 Delivered-To: freebsd-ports@freebsd.org Received: from dominik.saargate.de (domi.saargate.de [212.88.132.246]) by hub.freebsd.org (Postfix) with ESMTP id 7E24714D16 for ; Wed, 12 May 1999 10:25:14 -0700 (PDT) (envelope-from domi@saargate.de) Received: from localhost (localhost [127.0.0.1]) by dominik.saargate.de (8.9.3/8.8.7) with ESMTP id TAA29447; Wed, 12 May 1999 19:24:51 +0200 (CEST) (envelope-from domi@saargate.de) Date: Wed, 12 May 1999 19:24:51 +0200 (CEST) From: Dominik Brettnacher To: "asami@cs.berkeley.edu" Cc: ports@freebsd.org Subject: Re: package building errors 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 On Wed, 12 May 1999, asami@cs.berkeley.edu wrote: > http://bento.freebsd.org/errorlogs/3-latest/ > and send me a fix. Note that the ports tree is currently frozen; do > not commit a fix yourself. A "fix" here generally means patches from > the -current ports tree. Here is a patch for graphics/xsane, there was a dependency missing: --- Makefile.orig Mon May 10 19:29:50 1999 +++ Makefile Wed May 12 19:22:20 1999 @@ -14,6 +14,7 @@ MAINTAINER= domi@saargate.de LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ + sane.1:${PORTSDIR}/graphics/sane \ jpeg.9:${PORTSDIR}/graphics/jpeg \ tiff.4:${PORTSDIR}/graphics/tiff34 \ png.3:${PORTSDIR}/graphics/png Is that ok? -- Dominik - http://www.saargate.de/~domi/ "Wir brauchen jetzt aktuelle politische Lieder." - Nina Hagen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 10:50:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1CC7A151EC for ; Wed, 12 May 1999 10:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA80139; Wed, 12 May 1999 10:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from whizkidtech.net (r47.bfm.org [208.18.213.143]) by hub.freebsd.org (Postfix) with ESMTP id 6291314DC0 for ; Wed, 12 May 1999 10:48:23 -0700 (PDT) (envelope-from root@whizkidtech.net) Received: (from root@localhost) by whizkidtech.net (8.9.2/8.9.2) id MAA17454; Wed, 12 May 1999 12:48:25 -0500 (CDT) (envelope-from root) Message-Id: <199905121748.MAA17454@whizkidtech.net> Date: Wed, 12 May 1999 12:48:25 -0500 (CDT) From: adam@whizkidtech.net Reply-To: adam@whizkidtech.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11672: New port intel2gas-1.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11672 >Category: ports >Synopsis: New port: intel2gas-1.2 >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 May 12 10:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: G. Adam Stanislav >Release: FreeBSD 3.1-RELEASE i386 >Organization: Whiz Kid Technomagic >Environment: Assembly language programming >Description: Intel2gas converts assembly language source code from Intel (nasm) to AT&T synatx (gas), and vice-versa. >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: # # intel2gas # intel2gas/pkg # intel2gas/pkg/COMMENT # intel2gas/pkg/DESCR # intel2gas/pkg/PLIST # intel2gas/patches # intel2gas/patches/patch-aa # intel2gas/patches/patch-ab # intel2gas/patches/patch-ac # intel2gas/patches/patch-ad # intel2gas/Makefile # intel2gas/files # intel2gas/files/md5 # echo c - intel2gas mkdir -p intel2gas > /dev/null 2>&1 echo c - intel2gas/pkg mkdir -p intel2gas/pkg > /dev/null 2>&1 echo x - intel2gas/pkg/COMMENT sed 's/^X//' >intel2gas/pkg/COMMENT << 'END-of-intel2gas/pkg/COMMENT' XConverts Intel assembly language (nasm) to AT&T syntax (gas). END-of-intel2gas/pkg/COMMENT echo x - intel2gas/pkg/DESCR sed 's/^X//' >intel2gas/pkg/DESCR << 'END-of-intel2gas/pkg/DESCR' Xintel2gas 1.2 (c)1999 Mikko Tiihonen (mikko.tiihonen@hut.fi) X XThis program converts assembler source from intel (NASM), to AT&T (gas) Xsyntax. It is FREE SOFTWARE under the terms of the GNU General Public XLicense (GPL), enclosed in the file 'COPYING'. X---------------------------------------------------------------------------- XIntel2gas is a small text parser that can convert assembler source Xwritten in intel syntax to at&t syntax. And nowadays more often also Xthe other way. X XThe program does minimal error checking and does not understand the Xtext it's converting. It just tries to find matches from its syntax Xdatabase. XYou are encouraged to send any bug reports, suggestions and comments to Xthe author. X XFreeBSD port by G. Adam Stanislav END-of-intel2gas/pkg/DESCR echo x - intel2gas/pkg/PLIST sed 's/^X//' >intel2gas/pkg/PLIST << 'END-of-intel2gas/pkg/PLIST' Xbin/intel2gas Xshare/intel2gas/g2i/+-.01.list Xshare/intel2gas/g2i/+-.02.list Xshare/intel2gas/g2i/addr.syntax Xshare/intel2gas/g2i/address.syntax Xshare/intel2gas/g2i/data.01.list Xshare/intel2gas/g2i/data.02.list Xshare/intel2gas/g2i/data.04.list Xshare/intel2gas/g2i/main.syntax Xshare/intel2gas/g2i/mathnum.syntax Xshare/intel2gas/g2i/num.syntax Xshare/intel2gas/g2i/op.01.list Xshare/intel2gas/g2i/op.02.list Xshare/intel2gas/g2i/op.04.list Xshare/intel2gas/g2i/op.08.list Xshare/intel2gas/g2i/op.10.list Xshare/intel2gas/g2i/op.20.list Xshare/intel2gas/g2i/reg.01.list Xshare/intel2gas/g2i/reg.02.list Xshare/intel2gas/g2i/reg.04.list Xshare/intel2gas/g2i/reg.08.list Xshare/intel2gas/g2i/reg.10.list Xshare/intel2gas/g2i/reg.20.list Xshare/intel2gas/g2i/section.01.list Xshare/intel2gas/g2i/size.01.list Xshare/intel2gas/g2i/size.02.list Xshare/intel2gas/g2i/size.04.list Xshare/intel2gas/i2g/+-.01.list Xshare/intel2gas/i2g/+-.02.list Xshare/intel2gas/i2g/address.syntax Xshare/intel2gas/i2g/data.01.list Xshare/intel2gas/i2g/data.02.list Xshare/intel2gas/i2g/data.04.list Xshare/intel2gas/i2g/discard.01.list Xshare/intel2gas/i2g/main.syntax Xshare/intel2gas/i2g/mathnum.syntax Xshare/intel2gas/i2g/num.syntax Xshare/intel2gas/i2g/op.01.list Xshare/intel2gas/i2g/op.02.list Xshare/intel2gas/i2g/op.04.list Xshare/intel2gas/i2g/op.08.list Xshare/intel2gas/i2g/op.10.list Xshare/intel2gas/i2g/op.20.list Xshare/intel2gas/i2g/reg.01.list Xshare/intel2gas/i2g/reg.02.list Xshare/intel2gas/i2g/reg.04.list Xshare/intel2gas/i2g/reg.08.list Xshare/intel2gas/i2g/reg.10.list Xshare/intel2gas/i2g/reg.20.list Xshare/intel2gas/i2g/section.01.list Xshare/intel2gas/i2g/size.01.list Xshare/intel2gas/i2g/size.02.list Xshare/intel2gas/i2g/size.04.list Xshare/intel2gas/i2g/size.08.list Xshare/doc/intel2gas/BUGS Xshare/doc/intel2gas/CHANGES Xshare/doc/intel2gas/DATAFILES Xshare/doc/intel2gas/DATAFILES.html Xshare/doc/intel2gas/README Xshare/doc/intel2gas/README.html Xshare/doc/intel2gas/TODO X@dirrm share/doc/intel2gas X@dirrm share/intel2gas/i2g X@dirrm share/intel2gas/g2i X@dirrm share/intel2gas END-of-intel2gas/pkg/PLIST echo c - intel2gas/patches mkdir -p intel2gas/patches > /dev/null 2>&1 echo x - intel2gas/patches/patch-aa sed 's/^X//' >intel2gas/patches/patch-aa << 'END-of-intel2gas/patches/patch-aa' X--- Makefile.in.orig Tue May 4 11:56:19 1999 X+++ Makefile.in Wed May 12 10:03:30 1999 X@@ -9,11 +9,6 @@ X CXXFLAGS = @CXXFLAGS@ X OFILES = strhandle.o loaddata.o intel2gas.o X HFILES = strhandle.h loaddata.h intel2gas.h X-DATADIRS = i2g g2i X- X-prefix = @prefix@ X-exec_prefix = @exec_prefix@ X-data_prefix = $(prefix)/share/intel2gas X X all: warning intel2gas X X@@ -30,24 +25,3 @@ X .cc.o: X $(CXX) -c $(CXXFLAGS) $< X X-clean: X- rm -f *.o *~ core X- X-distclean: clean X- rm -f intel2gas config.status config.log config.cache Makefile i2gconf.h X- X- X-install: X- install -m 755 -d $(data_prefix) X- for datadir in $(DATADIRS); do \ X- install -m 755 -d $(data_prefix)/$$datadir; \ X- install -m 0644 $$datadir/* $(data_prefix)/$$datadir; \ X- done X- install -m 755 intel2gas $(exec_prefix)/bin X- X-uninstall: X- for datadir in $(DATADIRS); do \ X- rm -rf $(data_prefix)/$$datadir; \ X- done X- rm -f $(exec_prefix)/bin/intel2gas X- rmdir $(data_prefix) END-of-intel2gas/patches/patch-aa echo x - intel2gas/patches/patch-ab sed 's/^X//' >intel2gas/patches/patch-ab << 'END-of-intel2gas/patches/patch-ab' X--- README.html.orig Wed May 5 11:23:12 1999 X+++ README.html Wed May 12 11:03:47 1999 X@@ -1,13 +1,12 @@ X+ X intel2gas 1.2 (c)1999 Mikko Tiihonen (mikko.tiihonen@hut.fi) X- X+

X This program converts assembler source from intel (NASM), to AT&T (gas) 
X syntax. It is FREE SOFTWARE under the terms of the GNU General Public 
X License (GPL), enclosed in the file 'COPYING'.
X-----------------------------------------------------------------------------
X-
X+

X 1. What's this? X---------------- X- X+

X Intel2gas is a small text parser that can convert assembler source
X written in intel syntax to at&t syntax. And nowadays more often also
X the other way.
X@@ -15,15 +14,14 @@
X The program does minimal error checking and does not understand the
X text it's converting. It's just tries to find matches from its syntax
X database.
X-
X-
X+

X 2. Bug reports: X---------------- X+

X You are encouraged to send any bug reports, suggestions and comments to
X the author.
X-
X-
X+

X 3. Thanks: X----------- X+

X brn                     for creating a need for this tool
X G. Adam Stanislav       for helpping with the commandline
X+
END-of-intel2gas/patches/patch-ab echo x - intel2gas/patches/patch-ac sed 's/^X//' >intel2gas/patches/patch-ac << 'END-of-intel2gas/patches/patch-ac' X--- DATAFILES.html.orig Wed May 5 11:24:59 1999 X+++ DATAFILES.html Wed May 12 11:18:51 1999 X@@ -1,9 +1,10 @@ X+Intel2gas data files
X This document tries to explain how the syntax matching works. You propably
X don't want to know, but it's became so complex that I keep forgetting how
X it works. 
X-
X+

X 1. How it Works(tm) X--------------------- X+

X Before parsing the program reads all .syntax files for parsing 
X information, and .list files for list of registers etc. There 
X is no limit for number of files, or syntaxes in them.
X@@ -16,7 +17,7 @@
X Parsing rules:
X - Normal characters are matched exactly.
X - Space in parse description matches any amount of space in input line.
X-- `text´ inside '<>' is considered a special tag and parsed accordingly, 
X+- `text´ inside '<>' is considered a special tag and parsed accordingly, 
X   after successfull match it's value is stored into a variable of the 
X   same name (`text´).
X 
X@@ -25,12 +26,10 @@
X 
X Output rules:
X - Normal characters (including space) are copied to output.
X-- `text´ inside '<>' is replaced with value of a variable called `text´.
X-
X-
X-
X+- `text´ inside '<>' is replaced with value of a variable called `text´.
X+

X 2. Files X--------- X+

X .syntax file syntax:
X -
X parse rule
X@@ -44,12 +43,10 @@
X val1
X val2
X ...
X-
X-
X-
X+

X 4. Tags X-------- X-Format of a tag is following: c, where X+

X+Format of a tag is following: <tagnameN:hh>c, where
X - tagname is the name of the tag and the variable where the result is stored.
X - N	  an optional number (0-9) to store the result in different variable.
X - hh	  an optional hex bitmask (00-ff) for list matches, defaults to ff.
X@@ -66,12 +63,11 @@
X   *  the output of amatching rule is stored in the variable.
X 
X Special tags:
X-	output a new line character
X-    matches a '#'
X-
X-
X+<nl>	output a new line character
X+<cm>    matches a '#'
X+

X 5. Current set of files X------------------------ X+

X Syntax files:
X main.syntax	the basic syntax file
X num.syntax	converts hex,dec,oct,bin numbers
X@@ -85,3 +81,4 @@
X size.nn.list	byte,dword... memory sizes, sets 'm' to match the proper b/w/l
X data.nn.list	dd, db... sizes used in variable creation
X discard.nn.list	short... discarded
X+
END-of-intel2gas/patches/patch-ac echo x - intel2gas/patches/patch-ad sed 's/^X//' >intel2gas/patches/patch-ad << 'END-of-intel2gas/patches/patch-ad' X--- intel2gas.cc.orig Wed May 5 10:53:34 1999 X+++ intel2gas.cc Wed May 12 12:26:47 1999 X@@ -428,7 +428,7 @@ X static void printHelp(char const *infostr) X { X fprintf(stderr,"%s\n"\ X- "usage: intel2gas [options] [infile] [-o outfile]\n"\ X+ "usage: intel2gas [options] [-o outfile] [infile]\n"\ X "where options include:\n"\ X "\t-h\t\tthis help\n"\ X "\t-i\t\tconvert from intel to at&t format (default)\n"\ END-of-intel2gas/patches/patch-ad echo x - intel2gas/Makefile sed 's/^X//' >intel2gas/Makefile << 'END-of-intel2gas/Makefile' X# New ports collection makefile for: intel2gas X# Version required: 1.2 X# Date created: 12 May 1999 X# Whom: G. Adam Stanislav X# X# $Id:$ X# X XDISTNAME= intel2gas-1.2 XCATEGORIES= devel XMASTER_SITES= http://hermes.terminal.at/intel2gas/ X XMAINTAINER= adam@whizkidtech.net X XGNU_CONFIGURE= yes X XI2G= +-.01.list +-.02.list address.syntax data.01.list data.02.list \ X data.04.list discard.01.list main.syntax mathnum.syntax num.syntax \ X op.01.list op.02.list op.04.list op.08.list op.10.list op.20.list \ X reg.01.list reg.02.list reg.04.list reg.08.list reg.10.list \ X reg.20.list section.01.list size.01.list size.02.list size.04.list \ X size.08.list X XG2I= addr.syntax address.syntax data.01.list data.02.list data.04.list \ X main.syntax mathnum.syntax num.syntax section.01.list size.01.list \ X size.02.list size.04.list X XI2G2I= +-.01.list +-.02.list op.01.list op.02.list op.04.list op.08.list \ X op.10.list op.20.list reg.01.list reg.02.list reg.04.list \ X reg.08.list reg.10.list reg.20.list X XDOCFILES= BUGS CHANGES DATAFILES DATAFILES.html README README.html TODO X Xpre-patch: X ${CP} ${WRKSRC}/README ${WRKSRC}/README.html X ${CP} ${WRKSRC}/DATAFILES ${WRKSRC}/DATAFILES.html X Xpre-install: X ${MKDIR} ${PREFIX}/share/intel2gas X ${MKDIR} ${PREFIX}/share/intel2gas/i2g X ${MKDIR} ${PREFIX}/share/intel2gas/g2i X ${INSTALL_PROGRAM} ${WRKSRC}/intel2gas ${PREFIX}/bin X Xdo-install: X.for f in ${I2G} X ${INSTALL_DATA} ${WRKSRC}/i2g/${f} ${PREFIX}/share/intel2gas/i2g X.endfor X.for f in ${G2I} X ${INSTALL_DATA} ${WRKSRC}/g2i/${f} ${PREFIX}/share/intel2gas/g2i X.endfor X.for f in ${I2G2I} X ln -fs ${PREFIX}/share/intel2gas/i2g/${f} \ X ${PREFIX}/share/intel2gas/g2i/${f} X.endfor X Xpost-install: X.if !defined(NOPORTDOCS) X ${MKDIR} ${PREFIX}/share/doc/intel2gas X.for f in ${DOCFILES} X ${INSTALL_MAN} ${WRKSRC}/${f} ${PREFIX}/share/doc/intel2gas X.endfor X.endif X X.include END-of-intel2gas/Makefile echo c - intel2gas/files mkdir -p intel2gas/files > /dev/null 2>&1 echo x - intel2gas/files/md5 sed 's/^X//' >intel2gas/files/md5 << 'END-of-intel2gas/files/md5' XMD5 (intel2gas-1.2.tar.gz) = 4346c1dd19daac94221c0d984e2b1c67 END-of-intel2gas/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 May 12 11:15:22 1999 Delivered-To: freebsd-ports@freebsd.org Received: from spawn.nectar.cc (gw.nectar.com [204.0.249.101]) by hub.freebsd.org (Postfix) with ESMTP id 5C353151EC for ; Wed, 12 May 1999 11:15:19 -0700 (PDT) (envelope-from nectar@nectar.cc) Received: from spawn.nectar.cc (localhost [127.0.0.1]) by spawn.nectar.cc (Postfix) with ESMTP id EC41F1F23; Wed, 12 May 1999 13:15:14 -0500 (CDT) X-Mailer: exmh version 2.0.2 2/24/98 X-PGP-RSAfprint: 00 F9 E6 A2 C5 4D 0A 76 26 8B 8B 57 73 D0 DE EE X-PGP-RSAkey: http://www.nectar.cc/nectar-rsa.txt X-PGP-DSSfprint: AB2F 8D71 A4F4 467D 352E 8A41 5D79 22E4 71A2 8C73 X-PGP-DHfprint: 2D50 12E5 AB38 60BA AF4B 0778 7242 4460 1C32 F6B1 X-PGP-DH-DSSkey: http://www.nectar.cc/nectar-dh-dss.txt From: Jacques Vidrine To: "Thomas T. Veldhouse" Cc: "FreeBSD-Ports" In-reply-to: <00cc01be9c90$4912dff0$236319ac@w142844.carlson.com> References: <00cc01be9c90$4912dff0$236319ac@w142844.carlson.com> Subject: Re: Gnome on Current? Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 12 May 1999 13:15:14 -0500 Message-Id: <19990512181514.EC41F1F23@spawn.nectar.cc> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 12 May 1999 at 10:58, "Thomas T. Veldhouse" wrote: > I am running current as of yesterday and I built the Gnome port as of > yesterdays CVSUP. My question is, has anybody had any luck starting Gnome > under a similar circumstance. [snip] works here... fresh 3.2-BETA and GNOME from last night ... I use xdm (wdm actually), so my gnome-session is started from ${HOME}/.xsession. Have you looked at your error logs? or stderr of your X server? Jacques Vidrine / n@nectar.cc / 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 Wed May 12 11:23:56 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mortar.carlson.com (mortar.carlson.com [208.240.12.98]) by hub.freebsd.org (Postfix) with ESMTP id 13F4A14FFC for ; Wed, 12 May 1999 11:23:53 -0700 (PDT) (envelope-from veldy@visi.com) Received: from mortar.carlson.com (root@localhost) by mortar.carlson.com with ESMTP id NAA05195; Wed, 12 May 1999 13:23:54 -0500 (CDT) Received: from w142844 ([172.25.99.35]) by mortar.carlson.com with SMTP id NAA05191; Wed, 12 May 1999 13:23:53 -0500 (CDT) Message-ID: <015c01be9ca4$a5900000$236319ac@w142844.carlson.com> From: "Thomas T. Veldhouse" To: "Jacques Vidrine" Cc: "FreeBSD-Ports" Subject: Re: Gnome on Current? Date: Wed, 12 May 1999 13:24:17 -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 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Yes, I have looked at the console output. No messages at all. It just sits there. The only message available is Gnome doing a core dump when the X server shuts down after I press Cntl-Alt-Backspace. It seems that gnome-session is stuck in some sort of infinite loop or something. A little more info: I am using XF86_SVGA on a RivaTNT (Diamond Viper 550). Everything was compiled with egcs except X-Windows itself, and that is because I needed a.out support for netscape, so I built it on 3.1-STABLE before I upgraded to Current. All other apps work fine with X. Tom Veldhouse veldy@visi.com -----Original Message----- From: Jacques Vidrine To: Thomas T. Veldhouse Cc: FreeBSD-Ports Date: Wednesday, May 12, 1999 1:15 PM Subject: Re: Gnome on Current? >On 12 May 1999 at 10:58, "Thomas T. Veldhouse" wrote: >> I am running current as of yesterday and I built the Gnome port as of >> yesterdays CVSUP. My question is, has anybody had any luck starting Gnome >> under a similar circumstance. >[snip] > >works here... fresh 3.2-BETA and GNOME from last night ... I use xdm >(wdm actually), so my gnome-session is started from ${HOME}/.xsession. > >Have you looked at your error logs? or stderr of your X server? > >Jacques Vidrine / n@nectar.cc / nectar@FreeBSD.org > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-ports" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 11:30: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B1751532D for ; Wed, 12 May 1999 11:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA83553; Wed, 12 May 1999 11:30:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from gw-nl3.philips.com (gw-nl3.philips.com [192.68.44.35]) by hub.freebsd.org (Postfix) with ESMTP id D444A15304 for ; Wed, 12 May 1999 11:20:55 -0700 (PDT) (envelope-from mark@xaa.mpn.cp.philips.com) Received: from smtprelay-nl1.philips.com (localhost.philips.com [127.0.0.1]) by gw-nl3.philips.com with ESMTP id UAA28900 for ; Wed, 12 May 1999 20:20:50 +0200 (MEST) (envelope-from mark@xaa.mpn.cp.philips.com) Received: from smtprelay-eur1.philips.com(130.139.36.3) by gw-nl3.philips.com via mwrap (4.0a) id xma028898; Wed, 12 May 99 20:20:50 +0200 Received: from xaa.mpn.cp.philips.com (xaa.mpn.cp.philips.com [130.139.64.114]) by smtprelay-nl1.philips.com (8.9.3/8.6.10-1.2.2m-970826) with ESMTP id UAA19130 for ; Wed, 12 May 1999 20:20:49 +0200 (MET DST) Received: by xaa.mpn.cp.philips.com (Postfix, from userid 1001) id E936E19A2; Wed, 12 May 1999 18:20:48 +0000 (GMT) Message-Id: <19990512182048.E936E19A2@xaa.mpn.cp.philips.com> Date: Wed, 12 May 1999 18:20:48 +0000 (GMT) From: xaa@xaa.iae.nl Reply-To: xaa@xaa.iae.nl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11673: Upgrade for news/slrn Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11673 >Category: ports >Synopsis: Upgrade to 0955 >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 May 12 11:30:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Mark Huizer >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: FreeBSD 40-current >Description: Upgrade for slrn to 0.9.5.5 >How-To-Repeat: >Fix: apply patch diff -udr news/slrn.orig/Makefile news/slrn/Makefile --- news/slrn.orig/Makefile Sun Dec 6 22:40:51 1998 +++ news/slrn/Makefile Wed May 12 19:55:39 1999 @@ -6,8 +6,8 @@ # $Id: Makefile,v 1.12 1998/12/06 21:40:51 billf Exp $ # -DISTNAME= slrn0.9.5.4 -PKGNAME= slrn-0.9.5.4 +DISTNAME= slrn0.9.5.5 +PKGNAME= slrn-0.9.5.5 CATEGORIES= news MASTER_SITES= ftp://space.mit.edu/pub/davis/slrn/ diff -udr news/slrn.orig/files/md5 news/slrn/files/md5 --- news/slrn.orig/files/md5 Sun Dec 6 22:40:52 1998 +++ news/slrn/files/md5 Wed May 12 20:02:18 1999 @@ -1 +1 @@ -MD5 (slrn0.9.5.4.tar.gz) = f28a183a378c8d80e1d1ec3d4ab1e591 +MD5 (slrn0.9.5.5.tar.gz) = dde36c21a59766e0382f5200833413c0 >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 May 12 12:56:41 1999 Delivered-To: freebsd-ports@freebsd.org Received: from spawn.nectar.cc (gw.nectar.com [204.0.249.101]) by hub.freebsd.org (Postfix) with ESMTP id F3960155E0 for ; Wed, 12 May 1999 12:55:10 -0700 (PDT) (envelope-from nectar@nectar.cc) Received: from spawn.nectar.cc (localhost [127.0.0.1]) by spawn.nectar.cc (Postfix) with ESMTP id 2E1FB1F50; Wed, 12 May 1999 14:55:05 -0500 (CDT) X-Mailer: exmh version 2.0.2 2/24/98 X-PGP-RSAfprint: 00 F9 E6 A2 C5 4D 0A 76 26 8B 8B 57 73 D0 DE EE X-PGP-RSAkey: http://www.nectar.cc/nectar-rsa.txt X-PGP-DSSfprint: AB2F 8D71 A4F4 467D 352E 8A41 5D79 22E4 71A2 8C73 X-PGP-DHfprint: 2D50 12E5 AB38 60BA AF4B 0778 7242 4460 1C32 F6B1 X-PGP-DH-DSSkey: http://www.nectar.cc/nectar-dh-dss.txt From: Jacques Vidrine To: "Thomas T. Veldhouse" Cc: "Jacques Vidrine" , "FreeBSD-Ports" In-reply-to: <015c01be9ca4$a5900000$236319ac@w142844.carlson.com> References: <015c01be9ca4$a5900000$236319ac@w142844.carlson.com> Subject: Re: Gnome on Current? Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 12 May 1999 14:55:05 -0500 Message-Id: <19990512195505.2E1FB1F50@spawn.nectar.cc> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 12 May 1999 at 13:24, "Thomas T. Veldhouse" wrote: > Yes, I have looked at the console output. No messages at all. It just sits > there. The only message available is Gnome doing a core dump when the X > server shuts down after I press Cntl-Alt-Backspace. [snip] I can only suggest starting a normal session (i.e. exec mywindowmanager), and once there, try running gnome-session and poke around at it. You'll get an error when it tries to start your window manager, of course, but no biggie. You might also check the panel by itself ... run ``panel''. Finally, try a different window manager ... I vaguely recall, now that you mention it, problems running Enlightenment a few months back when trying the very first 1.0 release of gnome. So I run WindowMaker. Jacques Vidrine / n@nectar.cc / 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 Wed May 12 14:47:27 1999 Delivered-To: freebsd-ports@freebsd.org Received: from sid.c64.org (dial202-184.canit.se [195.190.202.184]) by hub.freebsd.org (Postfix) with ESMTP id 833F914D25 for ; Wed, 12 May 1999 14:47:23 -0700 (PDT) (envelope-from jd@sid.c64.org) Received: (from jd@localhost) by sid.c64.org (8.9.3/8.9.3) id XAA92567 for freebsd-ports@freebsd.org; Wed, 12 May 1999 23:49:18 +0200 (CEST) (envelope-from jd) Date: Wed, 12 May 1999 23:49:17 +0200 From: Johan Dalstrom To: freebsd-ports@freebsd.org Subject: Build of /usr/ports/x11-toolkits/gtk12 Message-ID: <19990512234917.A92549@fx.c64.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Mutt 0.95.4i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I get this when compiling gtk12: ttyp0 root@fx:/usr/ports/x11-toolkits/gtk12# make Error: you don't have the right version of perl in /usr/bin. *** Error code 1 Stop. ttyp0 root@fx:/usr/ports/x11-toolkits/gtk12# /usr/bin/perl -v This is perl, version 5.005_02 built for i386-freebsd ttyp0 root@fx:/usr/ports/x11-toolkits/gtk12# uname -a FreeBSD fx.c64.org 3.1-STABLE FreeBSD 3.1-STABLE #1: Fri May 7 14:12:38 CEST 1999 jd@fx.c64.org:/usr/src/sys/compile/FX i386 ttyp0 root@fx:/usr/ports/x11-toolkits/gtk12# I cvsupped ports today, Wed May 12 23:47:30 CEST 1999. Can't seem to find the answer for this problem. When checking for the ports-perlversion, it's the same. ttyp0 root@fx:/usr/ports/lang/perl5# grep DISTNAME Makefile DISTNAME= perl5.005_02 ttyp0 root@fx:/usr/ports/lang/perl5# Has anyone else experienced this? Could it be a package-error? Regards, Johan Dalström -- Johan Dalstrom / Network/Security Consultant / Powered by FreeBSD and caffeine. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 14:49: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from lambic.physics.montana.edu (lambic.physics.montana.edu [153.90.192.128]) by hub.freebsd.org (Postfix) with ESMTP id 3109314D25 for ; Wed, 12 May 1999 14:49:05 -0700 (PDT) (envelope-from handy@lambic.physics.montana.edu) Received: from localhost (handy@localhost) by lambic.physics.montana.edu (8.8.8/8.8.7) with ESMTP id PAA13413; Wed, 12 May 1999 15:48:52 -0600 (MDT) (envelope-from handy@lambic.physics.montana.edu) Date: Wed, 12 May 1999 15:48:52 -0600 (MDT) From: Brian Handy To: Johan Dalstrom Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Build of /usr/ports/x11-toolkits/gtk12 In-Reply-To: <19990512234917.A92549@fx.c64.org> Message-ID: X-files: The truth is out there MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >I get this when compiling gtk12: > >ttyp0 root@fx:/usr/ports/x11-toolkits/gtk12# make >Error: you don't have the right version of perl in /usr/bin. >*** Error code 1 Look for PERL_VERSION in ports/Mk/bsd.port.mk. It'll probably be different than what you have in your system. Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 15:13:50 1999 Delivered-To: freebsd-ports@freebsd.org Received: from firewall.prosodie.com (firewall.prosodie.com [194.51.95.97]) by hub.freebsd.org (Postfix) with ESMTP id 323A0153C4 for ; Wed, 12 May 1999 15:13:46 -0700 (PDT) (envelope-from segura@worldnet.fr) Received: from rafale (modem8.prosodie.com [194.51.95.107]) by firewall.prosodie.com (8.8.8/8.8.8) with SMTP id AAA07806 for ; Thu, 13 May 1999 00:13:45 +0200 (CEST) (envelope-from segura@worldnet.fr) Message-Id: <3.0.3.32.19990513001342.00934810@worldnet.fr> X-Sender: segura@worldnet.fr X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.3 (32) Date: Thu, 13 May 1999 00:13:42 +0200 To: freebsd-ports@freebsd.org From: Fabrice Segura Subject: Looking for a good VPN software 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'd like to set up a secure VPN between 2 sites, and both are protected by FreeBsd boxes and IPFW. Isn't there a neat package around here to do so ? FreeSWan looks great, but runs only on Linux at this time, and I like FreeBSD extreme reliability too much.... Regards Fabrice Segura To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 15:32: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from sid.c64.org (dial202-234.canit.se [195.190.202.234]) by hub.freebsd.org (Postfix) with ESMTP id 20DDD15549 for ; Wed, 12 May 1999 15:31:51 -0700 (PDT) (envelope-from jd@sid.c64.org) Received: (from jd@localhost) by sid.c64.org (8.9.3/8.9.3) id AAA93195 for freebsd-ports@freebsd.org; Thu, 13 May 1999 00:33:48 +0200 (CEST) (envelope-from jd) Date: Thu, 13 May 1999 00:33:47 +0200 From: Johan Dalstrom To: freebsd-ports@freebsd.org Subject: Re: Build of /usr/ports/x11-toolkits/gtk12 Message-ID: <19990513003347.A93169@fx.c64.org> References: <19990512234917.A92549@fx.c64.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <19990512234917.A92549@fx.c64.org>; from Johan Dalstrom on Wed, May 12, 1999 at 11:49:17PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Okay, PERL_VERSION= 5.00503 but why isn't the ports-tree uppgraded? Is there any special reason for upgrading bsd.port.mk and not /usr/ports/lang/perl5? And as I see it, it would be better to install via ports than installing by hand, because of the package-checking.. Am I wrong? Regards, Johan Dalstrom -- Johan Dalstrom / Network/Security Consultant / Powered by FreeBSD and caffeine. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 15:36:44 1999 Delivered-To: freebsd-ports@freebsd.org Received: from area51.fremont.ca.us (d60-076.leach.ucdavis.edu [169.237.60.76]) by hub.freebsd.org (Postfix) with ESMTP id DC165153C4 for ; Wed, 12 May 1999 15:36:41 -0700 (PDT) (envelope-from mharo@area51.fremont.ca.us) Received: (from mharo@localhost) by area51.fremont.ca.us (8.9.2/8.9.2) id PAA75055; Wed, 12 May 1999 15:36:38 -0700 (PDT) (envelope-from mharo) Date: Wed, 12 May 1999 15:36:38 -0700 From: Michael Haro To: Johan Dalstrom Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Build of /usr/ports/x11-toolkits/gtk12 Message-ID: <19990512153638.A75030@area51.fremont.ca.us> References: <19990512234917.A92549@fx.c64.org> <19990513003347.A93169@fx.c64.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <19990513003347.A93169@fx.c64.org>; from Johan Dalstrom on Thu, May 13, 1999 at 12:33:47AM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org bsd.port.mk was update because perl5 was updated in -current. perl5 in 3.1-stable/beta/whatever_you_call_it is still at 5.00502 AFAIK. As for the perl5 port, I don't know. Michael On Thu, May 13, 1999 at 12:33:47AM +0200, Johan Dalstrom wrote: > Okay, > > PERL_VERSION= 5.00503 > > but why isn't the ports-tree uppgraded? > Is there any special reason for upgrading bsd.port.mk > and not /usr/ports/lang/perl5? > > And as I see it, it would be better to install via ports > than installing by hand, because of the package-checking.. > Am I wrong? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 15:39:42 1999 Delivered-To: freebsd-ports@freebsd.org Received: from stampede.cs.berkeley.edu (stampede.CS.Berkeley.EDU [128.32.45.124]) by hub.freebsd.org (Postfix) with ESMTP id CD9D4152D2 for ; Wed, 12 May 1999 15:39:35 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca43-212.ix.netcom.com [209.111.209.212]) by stampede.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id PAA10827; Wed, 12 May 1999 15:40:26 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.2/8.6.9) id PAA38237; Wed, 12 May 1999 15:39:17 -0700 (PDT) Date: Wed, 12 May 1999 15:39:17 -0700 (PDT) Message-Id: <199905122239.PAA38237@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: domi@saargate.de Cc: ports@freebsd.org In-reply-to: (message from Dominik Brettnacher on Wed, 12 May 1999 19:24:51 +0200 (CEST)) Subject: Re: package building errors From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) References: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Dominik Brettnacher * Here is a patch for graphics/xsane, there was a dependency missing: * LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ * + sane.1:${PORTSDIR}/graphics/sane \ Thanks, committed! -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 16:20:58 1999 Delivered-To: freebsd-ports@freebsd.org Received: from finch-post-10.mail.demon.net (finch-post-10.mail.demon.net [194.217.242.38]) by hub.freebsd.org (Postfix) with ESMTP id 9DF7915DA8 for ; Wed, 12 May 1999 16:20:51 -0700 (PDT) (envelope-from mikec@glces.demon.co.uk) Received: from [194.222.36.150] (helo=glces.demon.co.uk) by finch-post-10.mail.demon.net with smtp (Exim 2.12 #1) id 10hiIz-000BiP-0A; Wed, 12 May 1999 23:20:50 +0000 Message-ID: Date: Thu, 13 May 1999 00:11:09 +0100 To: hetzels@westbend.net Cc: ports@FreeBSD.org From: mike curtis Subject: FreeBSD Port: apache_fp-1.3.6 MIME-Version: 1.0 X-Mailer: Turnpike (32) Version 4.01 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am sorry to contact you direct rather than going to the news groups but I have just spent most of the day trying to resolve this problem. I'm trying to get Apache working with front-page extensions. I have 1.3.6.working (it was a doddle to configure) I had almost successfully installed the front-page part earlier but now have dug a big hole for myself and am totally confused. I really need to know what version of Apache supports Front-page extensions and where to get same plus if there is a document that will show me step by step how to get the assembly working I will be ever so grateful. Pointers to ftp sites for apache13-fp come back with error messages and the when I can track this file reference down it turns out to be a "make dir" Thanks in advance -- mike curtis To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 16:21: 0 1999 Delivered-To: freebsd-ports@freebsd.org Received: from finch-post-10.mail.demon.net (finch-post-10.mail.demon.net [194.217.242.38]) by hub.freebsd.org (Postfix) with ESMTP id 125BF15A38 for ; Wed, 12 May 1999 16:20:53 -0700 (PDT) (envelope-from mikec@glces.demon.co.uk) Received: from [194.222.36.150] (helo=glces.demon.co.uk) by finch-post-10.mail.demon.net with smtp (Exim 2.12 #1) id 10hiIz-000BiQ-0A for ports@FreeBSD.org; Wed, 12 May 1999 23:20:50 +0000 Message-ID: Date: Thu, 13 May 1999 00:18:45 +0100 To: ports@FreeBSD.org From: mike curtis Subject: frontpage and apache MIME-Version: 1.0 X-Mailer: Turnpike (32) Version 4.01 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have just spent a great many hours trying to get apache 1.3.6 working with the front-page extensions. I want to use front-page 98 for web admin. Configuring apache 1.3.6 was easy. but I have had no success with front- page extension (fp30.bsdi3.tar.Z) Can you please point me to the definitive installation notes for this I am using 2.2.8 with the latest upgrade kit ?? -- mike curtis To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 17: 2:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from stampede.cs.berkeley.edu (stampede.CS.Berkeley.EDU [128.32.45.124]) by hub.freebsd.org (Postfix) with ESMTP id 3DAD714CEF for ; Wed, 12 May 1999 17:02:10 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca43-212.ix.netcom.com [209.111.209.212]) by stampede.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id RAA10940; Wed, 12 May 1999 17:02:54 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.2/8.6.9) id RAA38636; Wed, 12 May 1999 17:00:53 -0700 (PDT) Date: Wed, 12 May 1999 17:00:53 -0700 (PDT) Message-Id: <199905130000.RAA38636@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: jd@c64.org Cc: freebsd-ports@freebsd.org In-reply-to: <19990513003347.A93169@fx.c64.org> (message from Johan Dalstrom on Thu, 13 May 1999 00:33:47 +0200) Subject: Re: Build of /usr/ports/x11-toolkits/gtk12 From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) References: <19990512234917.A92549@fx.c64.org> <19990513003347.A93169@fx.c64.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * PERL_VERSION= 5.00503 * * but why isn't the ports-tree uppgraded? * Is there any special reason for upgrading bsd.port.mk * and not /usr/ports/lang/perl5? lang/perl5 is (mostly) obsolete, since it is only for 2.2-stable which is not supported by ports-current anymore. It should probably be deleted but it's still left there for those who want to try. But I'll change the -current bsd.port.mk to check for 2.2-stable so those still running 2.2 will have a fighting chance. As for 3.X users, do a make world or grab one of the upgrade kits. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 17: 3: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from stampede.cs.berkeley.edu (stampede.CS.Berkeley.EDU [128.32.45.124]) by hub.freebsd.org (Postfix) with ESMTP id 93DEA152B2 for ; Wed, 12 May 1999 17:03:04 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca43-212.ix.netcom.com [209.111.209.212]) by stampede.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id RAA10945; Wed, 12 May 1999 17:03:44 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.2/8.6.9) id RAA38645; Wed, 12 May 1999 17:01:40 -0700 (PDT) Date: Wed, 12 May 1999 17:01:40 -0700 (PDT) Message-Id: <199905130001.RAA38645@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: mharo@area51.fremont.ca.us Cc: jd@c64.org, freebsd-ports@FreeBSD.ORG In-reply-to: <19990512153638.A75030@area51.fremont.ca.us> (message from Michael Haro on Wed, 12 May 1999 15:36:38 -0700) Subject: Re: Build of /usr/ports/x11-toolkits/gtk12 From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) References: <19990512234917.A92549@fx.c64.org> <19990513003347.A93169@fx.c64.org> <19990512153638.A75030@area51.fremont.ca.us> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Michael Haro * bsd.port.mk was update because perl5 was updated in -current. * perl5 in 3.1-stable/beta/whatever_you_call_it is still at * 5.00502 AFAIK. Incorrect. 3-stable perl is now 5.00503. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 19: 6:45 1999 Delivered-To: freebsd-ports@freebsd.org Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (Postfix) with ESMTP id F0DD914C88 for ; Wed, 12 May 1999 19:06:40 -0700 (PDT) (envelope-from roberto@keltia.freenix.fr) Received: (from uucp@localhost) by frmug.org (8.9.1/frmug-2.3/nospam) with UUCP id EAA14166 for freebsd-ports@freebsd.org; Thu, 13 May 1999 04:06:36 +0200 (CEST) (envelope-from roberto@keltia.freenix.fr) Received: by keltia.freenix.fr (Postfix, from userid 101) id 715B08837; Thu, 13 May 1999 00:33:29 +0200 (CEST) (envelope-from roberto) Date: Thu, 13 May 1999 00:33:29 +0200 From: Ollivier Robert To: freebsd-ports@freebsd.org Subject: Re: Looking for a good VPN software Message-ID: <19990513003329.A42632@keltia.freenix.fr> Mail-Followup-To: freebsd-ports@freebsd.org References: <3.0.3.32.19990513001342.00934810@worldnet.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/0.95.5i In-Reply-To: <3.0.3.32.19990513001342.00934810@worldnet.fr>; from Fabrice Segura on Thu, May 13, 1999 at 12:13:42AM +0200 X-Operating-System: FreeBSD 4.0-CURRENT/ELF ctm#5322 AMD-K6 MMX @ 200 MHz Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org According to Fabrice Segura: > FreeSWan looks great, but runs only on Linux at this time, and I like > FreeBSD extreme reliability too much.... Why not looking at the IPsec code from our japanese friends at KAME ? -- Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 4.0-CURRENT #71: Sun May 9 20:16:32 CEST 1999 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 19:51:34 1999 Delivered-To: freebsd-ports@freebsd.org Received: from area51.fremont.ca.us (d60-076.leach.ucdavis.edu [169.237.60.76]) by hub.freebsd.org (Postfix) with ESMTP id 943C1155DB; Wed, 12 May 1999 19:51:15 -0700 (PDT) (envelope-from mharo@area51.fremont.ca.us) Received: (from mharo@localhost) by area51.fremont.ca.us (8.9.2/8.9.2) id TAA76468; Wed, 12 May 1999 19:51:15 -0700 (PDT) (envelope-from mharo) Date: Wed, 12 May 1999 19:51:15 -0700 From: Michael Haro To: Satoshi - Ports Wraith - Asami Cc: jd@c64.org, freebsd-ports@FreeBSD.ORG Subject: Re: Build of /usr/ports/x11-toolkits/gtk12 Message-ID: <19990512195114.A76454@area51.fremont.ca.us> References: <19990512234917.A92549@fx.c64.org> <19990513003347.A93169@fx.c64.org> <19990512153638.A75030@area51.fremont.ca.us> <199905130001.RAA38645@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <199905130001.RAA38645@silvia.hip.berkeley.edu>; from Satoshi - Ports Wraith - Asami on Wed, May 12, 1999 at 05:01:40PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, May 12, 1999 at 05:01:40PM -0700, Satoshi - Ports Wraith - Asami wrote: > * From: Michael Haro > > * bsd.port.mk was update because perl5 was updated in -current. > * perl5 in 3.1-stable/beta/whatever_you_call_it is still at > * 5.00502 AFAIK. > > Incorrect. 3-stable perl is now 5.00503. Woops, I guess I missed RELENG_3 on that commit. You are right, perl5 was updated in -stable at 1999/05/05 06:19:11 PDT. Sorry for the confusion, Michael To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 12 20: 0: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4ADD514E5C for ; Wed, 12 May 1999 20:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA19165; Wed, 12 May 1999 20:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ymris.ddm.on.ca (p15.argon.sentex.ca [209.112.4.208]) by hub.freebsd.org (Postfix) with ESMTP id C7D9914D6D for ; Wed, 12 May 1999 19:56:36 -0700 (PDT) (envelope-from dchapes@ddm.on.ca) Received: from squigy.ddm.on.ca (squigy.ddm.on.ca [204.50.152.10]) by ymris.ddm.on.ca (8.8.8/8.8.8) with ESMTP id WAA03393 for ; Wed, 12 May 1999 22:56:32 -0400 (EDT) (envelope-from dchapes@squigy.ddm.on.ca) Received: (from dchapes@localhost) by squigy.ddm.on.ca (8.9.2/8.8.7) id WAA69363; Wed, 12 May 1999 22:56:31 -0400 (EDT) Message-Id: <199905130256.WAA69363@squigy.ddm.on.ca> Date: Wed, 12 May 1999 22:56:31 -0400 (EDT) From: dchapes@ddm.on.ca Reply-To: dchapes@ddm.on.ca To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11678: Port upgrade, games/ifm from 3.0 to 4.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11678 >Category: ports >Synopsis: Port upgrade, games/ifm from 3.0 to 4.1 >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: Wed May 12 20:00:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dave Chapeskie >Release: FreeBSD 3.1-STABLE i386 >Organization: DDM Consulting >Environment: >Description: The tarball for games/ifm version 3.0 is no longer available on the master site (hense the medium instead of priority on this PR). >How-To-Repeat: >Fix: The following patch will bring the port up-to version 4.1. Portlint says it's okay. It installs, packages, deinstalls, pkg_adds and pkg_deletes successfully. Note that patch-aa is no longer needed and that the tarball no longer includes installable man pages (although it still has info pages which the port installs). Also I've added several mirror ftp sites. Index: Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/games/ifm/Makefile,v retrieving revision 1.1.1.1 diff -u -t -r1.1.1.1 Makefile --- Makefile 1998/10/19 17:00:15 1.1.1.1 +++ Makefile 1999/05/13 02:42:59 @@ -6,10 +6,15 @@ # $Id: Makefile,v 1.1.1.1 1998/10/19 17:00:15 mph Exp $ # -DISTNAME= ifm30 -PKGNAME= ifm-3.0 +DISTNAME= ifm41 +PKGNAME= ifm-4.1 CATEGORIES= games -MASTER_SITES= ftp://ftp.gmd.de/if-archive/mapping-tools/ +MASTER_SITES= ftp://ftp.gmd.de/if-archive/mapping-tools/ \ + ftp://wuarchive.wustl.edu/doc/misc/if-archive/mapping-tools/ \ + ftp://ftp.firedrake.org/if-archive/mapping-tools/ \ + ftp://ftp.funet.fi/pub/misc/if-archive/mapping-tools/ \ + ftp://mirror.aarnet.edu.au/pub/if-archive/mapping-tools/ \ + ftp://ftp.nodomainname.net/pub/mirrors/if-archive/mapping-tools/ EXTRACT_SUFX= .tgz MAINTAINER= dchapes@ddm.on.ca @@ -20,12 +25,7 @@ USE_GMAKE= yes GNU_CONFIGURE= yes -MAN1= ifm.1 tkifm.1 -#INSTALL_TARGET= install install-tkifm - post-install: - ${INSTALL_MAN} ${WRKSRC}/doc/ifm.1 ${WRKSRC}/tkifm/tkifm.1 \ - ${PREFIX}/man/man1 install-info ${PREFIX}/info/ifm.info ${PREFIX}/info/dir install-info ${PREFIX}/info/scr2ifm.info ${PREFIX}/info/dir install-info ${PREFIX}/info/tkifm.info ${PREFIX}/info/dir Index: files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/games/ifm/files/md5,v retrieving revision 1.1.1.1 diff -u -t -r1.1.1.1 md5 --- md5 1998/10/19 17:00:15 1.1.1.1 +++ md5 1999/05/13 02:09:56 @@ -1 +1 @@ -MD5 (ifm30.tgz) = 2bb4fe68bbbd3bf30a30c296387e3c3f +MD5 (ifm41.tgz) = 057ce601e85c0b3cd67e8ced1bc737ea Index: patches/patch-aa =================================================================== RCS file: patch-aa diff -N patch-aa --- /tmp/cvsx60394 Wed May 12 22:45:19 1999 +++ /dev/null Wed May 12 22:23:40 1999 @@ -1,12 +0,0 @@ ---- lib/vars-regexp.c.orig Fri Jun 19 05:50:06 1998 -+++ lib/vars-regexp.c Wed Aug 26 18:28:23 1998 -@@ -10,8 +10,8 @@ - #include - #include - #include --#include - #include "vars-defs.h" -+#include - - /* Type definition */ - struct v_regex { Index: pkg/PLIST =================================================================== RCS file: /cvs/FreeBSD/ports/games/ifm/pkg/PLIST,v retrieving revision 1.1.1.1 diff -u -t -r1.1.1.1 PLIST --- PLIST 1998/10/19 17:00:15 1.1.1.1 +++ PLIST 1999/05/13 02:22:54 @@ -1,7 +1,11 @@ bin/ifm bin/tkifm bin/scr2ifm +share/ifm/ifm-init.ifm share/ifm/ifm-pro.ps +share/ifm/ifm-rgb.txt +share/ifm/puzzle.ifm +share/ifm/special.ifm @unexec install-info --delete %D/info/ifm.info %D/info/dir @unexec install-info --delete %D/info/tkifm.info %D/info/dir @unexec install-info --delete %D/info/scr2ifm.info %D/info/dir @@ -11,3 +15,4 @@ @exec install-info %D/info/ifm.info %D/info/dir @exec install-info %D/info/tkifm.info %D/info/dir @exec install-info %D/info/scr2ifm.info %D/info/dir +@dirrm share/ifm >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 May 13 0:50: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D4A121547A for ; Thu, 13 May 1999 00:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA40824; Thu, 13 May 1999 00:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from Terry.Dorm10.NCTU.edu.tw (Terry.Dorm10.NCTU.edu.tw [140.113.122.99]) by hub.freebsd.org (Postfix) with ESMTP id 6FEA014D5B for ; Thu, 13 May 1999 00:47:06 -0700 (PDT) (envelope-from ijliao@Terry.Dorm10.NCTU.edu.tw) Received: (from ijliao@localhost) by Terry.Dorm10.NCTU.edu.tw (8.9.3/8.9.3) id PAA83713; Thu, 13 May 1999 15:47:04 +0800 (CST) (envelope-from ijliao) Message-Id: <199905130747.PAA83713@Terry.Dorm10.NCTU.edu.tw> Date: Thu, 13 May 1999 15:47:04 +0800 (CST) From: Ying-Chieh Liao Reply-To: ijliao@Terry.Dorm10.NCTU.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11682: new port : devel/t1lib Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11682 >Category: ports >Synopsis: new port : devel/t1lib >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 May 13 00:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ying-Chieh Liao >Release: FreeBSD 4.0-CURRENT i386 >Organization: NCTU CSIE >Environment: FreeBSD Terry.Dorm10.NCTU.edu.tw 4.0-CURRENT FreeBSD 4.0-CURRENT #16: Sat May 8 15:52:36 CST 1999 root@Terry.Dorm10.NCTU.edu.tw:/usr/src/sys/compile/TERRY i386 >Description: A Type 1 Rasterizer Library for UNIX/X11 >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: # # t1lib # t1lib/files # t1lib/files/md5 # t1lib/pkg # t1lib/pkg/COMMENT # t1lib/pkg/DESCR # t1lib/pkg/PLIST # t1lib/Makefile # echo c - t1lib mkdir -p t1lib > /dev/null 2>&1 echo c - t1lib/files mkdir -p t1lib/files > /dev/null 2>&1 echo x - t1lib/files/md5 sed 's/^X//' >t1lib/files/md5 << 'END-of-t1lib/files/md5' XMD5 (t1lib-0.9.tar.gz) = dafa28cda3f9eaf89c24a839678e4189 END-of-t1lib/files/md5 echo c - t1lib/pkg mkdir -p t1lib/pkg > /dev/null 2>&1 echo x - t1lib/pkg/COMMENT sed 's/^X//' >t1lib/pkg/COMMENT << 'END-of-t1lib/pkg/COMMENT' XA Type 1 Rasterizer Library for UNIX/X11 END-of-t1lib/pkg/COMMENT echo x - t1lib/pkg/DESCR sed 's/^X//' >t1lib/pkg/DESCR << 'END-of-t1lib/pkg/DESCR' Xt1lib is a library written in the C programming language allowing a programmer Xto generate bitmaps from Adobe (TM) Type 1 fonts quite easily. These bitmaps Xare returned in a data structure with type GLYPH. This special GLYPH-type is Xalso used in the X11 window system to describe character bitmaps. It contains Xthe bitmap data as well as some metric information. But t1lib is in itself Xentirely independent of the X11-system or any other graphical user interface. X XWWW : Xhttp://www.neuroinformatik.ruhr-uni-bochum.de/ini/PEOPLE/rmz/t1lib/t1lib.html X X- Ying-Chieh Liao Xijliao@csie.nctu.edu.tw END-of-t1lib/pkg/DESCR echo x - t1lib/pkg/PLIST sed 's/^X//' >t1lib/pkg/PLIST << 'END-of-t1lib/pkg/PLIST' Xbin/type1afm Xbin/xglyph Xinclude/t1lib.h Xinclude/t1libx.h Xlib/libt1.la Xlib/libt1x.la Xlib/libt1.a Xlib/libt1x.a Xshare/t1lib-0.9/t1lib.config X@dirrm share/t1lib-0.9 END-of-t1lib/pkg/PLIST echo x - t1lib/Makefile sed 's/^X//' >t1lib/Makefile << 'END-of-t1lib/Makefile' X# New ports collection makefile for: libt1 X# Version required: 0.9 X# Date created: 13, May, 1999 X# Whom: Ying-Chieh Liao X# X# $Id$ X# X XDISTNAME= libt1-0.9 XCATEGORIES= devel XMASTER_SITES= ftp://sunsite.unc.edu/pub/Linux/libs/graphics/ XDISTFILES= t1lib-0.9.tar.gz X XMAINTAINER= ijliao@csie.nctu.edu.tw X XWRKSRC= ${WRKDIR}/T1-0.9 X XGNU_CONFIGURE= yes XUSE_GMAKE= yes XALL_TARGET= without_doc X X.include END-of-t1lib/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 Thu May 13 2:10:18 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3350E15E79 for ; Thu, 13 May 1999 02:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA47315; Thu, 13 May 1999 02:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hamhae.wdb.co.kr (hamhae.wdb.co.kr [210.92.121.137]) by hub.freebsd.org (Postfix) with ESMTP id A05A514BD2 for ; Thu, 13 May 1999 02:08:17 -0700 (PDT) (envelope-from cjh@hamhae.wdb.co.kr) Received: (from cjh@localhost) by hamhae.wdb.co.kr (8.9.3/8.9.3) id SAA48706; Thu, 13 May 1999 18:08:01 +0900 (KST) (envelope-from cjh) Message-Id: <199905130908.SAA48706@hamhae.wdb.co.kr> Date: Thu, 13 May 1999 18:08:01 +0900 (KST) From: cjh@kr.freebsd.org Reply-To: cjh@kr.freebsd.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11684: New port: korean/hanIM Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11684 >Category: ports >Synopsis: new port: korean/hanIM >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: Thu May 13 02:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: CHOI Junho >Release: FreeBSD 3.1-STABLE i386 >Organization: Webdatabank Co. Seoul, Korea >Environment: FreeBSD hamhae.wdb.co.kr 3.2-BETA FreeBSD 3.2-BETA #1: Wed May 12 18:15:02 KST 1999 root@hamhae.wdb.co.kr:/usr/src/sys/compile/HAMHAE i386 >Description: New port of Korean Input method, hanIM. It depends linux_locale ports, which will be submitted soon. >How-To-Repeat: Build it with a recent FreeBSD system. >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: # # hanIM # hanIM/files # hanIM/files/md5 # hanIM/files/XLC_LOCALE # hanIM/pkg # hanIM/pkg/COMMENT # hanIM/pkg/DESCR # hanIM/pkg/PLIST # hanIM/pkg/MESSAGE # hanIM/patches # hanIM/patches/patch-aa # hanIM/Makefile # echo c - hanIM mkdir -p hanIM > /dev/null 2>&1 echo c - hanIM/files mkdir -p hanIM/files > /dev/null 2>&1 echo x - hanIM/files/md5 sed 's/^X//' >hanIM/files/md5 << 'END-of-hanIM/files/md5' XMD5 (hanIM-1.1b-glibc2.0.7-1.i386.rpm) = 12d6f527dd6d1e0f030431e1cf81976a END-of-hanIM/files/md5 echo x - hanIM/files/XLC_LOCALE sed 's/^X//' >hanIM/files/XLC_LOCALE << 'END-of-hanIM/files/XLC_LOCALE' X# $XConsortium: ko /main/7 1996/09/28 16:52:27 rws $ X# XLocale Database Sample for ko. X# X X# X# XLC_FONTSET category X# XXLC_FONTSET X# fs0 class (7 bit ASCII) Xfs0 { X charset { X name ISO8859-1:GL X } X font { X primary ISO8859-1:GL X vertical_rotate all X } X} X# fs1 class Xfs1 { X charset { X name KSC5601.1987-0:GL X } X font { X primary KSC5601.1987-0:GL X substitute KSC5601.1987-1:GR X } X} XEND XLC_FONTSET X X# X# XLC_XLOCALE category X# XXLC_XLOCALE X Xencoding_name ko.euc Xmb_cur_max 2 Xstate_depend_encoding False X Xwc_encoding_mask \x30000000 Xwc_shift_bits 7 X X X X X X Xuse_stdc_env True Xforce_convert_to_mb True X X X# cs0 class Xcs0 { X side GL:Default X length 1 X wc_encoding \x00000000 X ct_encoding ISO8859-1:GL X} X X# cs1 class Xcs1 { X side GR:Default X length 2 X X wc_encoding \x30000000 X X X X ct_encoding KSC5601.1987-0:GL; KSC5601.1987-0:GR X} X XEND XLC_XLOCALE END-of-hanIM/files/XLC_LOCALE echo c - hanIM/pkg mkdir -p hanIM/pkg > /dev/null 2>&1 echo x - hanIM/pkg/COMMENT sed 's/^X//' >hanIM/pkg/COMMENT << 'END-of-hanIM/pkg/COMMENT' XMizi Research's Korean X11 Input Method END-of-hanIM/pkg/COMMENT echo x - hanIM/pkg/DESCR sed 's/^X//' >hanIM/pkg/DESCR << 'END-of-hanIM/pkg/DESCR' XhanIM X===== X XhanIM is Mizi Research's Korean X11 Input Method for UNIX/X11R6. X XThis is not a free software. Please read copyright message in X/usr/X11R6/share/doc/hanIM/LICENSE X XFor more information, go to http://www.mizi.co.kr X X-- XPorts by CHOI Junho END-of-hanIM/pkg/DESCR echo x - hanIM/pkg/PLIST sed 's/^X//' >hanIM/pkg/PLIST << 'END-of-hanIM/pkg/PLIST' Xbin/hanIM Xlib/X11/app-defaults/HanIM Xlib/X11/hanIM/hanroman.tbl Xlib/X11/hanIM/help/back5.gif Xlib/X11/hanIM/help/index.html Xlib/X11/hanIM/help/intro.gif Xlib/X11/hanIM/help/property.gif Xlib/X11/hanIM/help/title.gif Xlib/X11/hanIM/help/usage.gif Xlib/X11/hanIM/japanese.tbl X@dirrm lib/X11/hanIM/help X@dirrm lib/X11/hanIM Xshare/doc/hanIM/LICENSE Xshare/doc/hanIM/README Xshare/doc/hanIM/XLC_LOCALE X@comment copy new locale definition(no harm, so need not be uninstalled) X@exec cp %D/share/doc/hanIM/XLC_LOCALE %D/lib/X11/locale/ko/ Xshare/doc/hanIM/samples/CVS/Entries Xshare/doc/hanIM/samples/CVS/Repository Xshare/doc/hanIM/samples/CVS/Root Xshare/doc/hanIM/samples/IMDemo Xshare/doc/hanIM/samples/Makefile Xshare/doc/hanIM/samples/asample.c Xshare/doc/hanIM/samples/geticval.c Xshare/doc/hanIM/samples/getimval.c Xshare/doc/hanIM/samples/gtkimtest.c Xshare/doc/hanIM/samples/gtkimtest.rc Xshare/doc/hanIM/samples/i18n.c Xshare/doc/hanIM/samples/msample.c Xshare/doc/hanIM/samples/offspot.c Xshare/doc/hanIM/samples/onspot.c Xshare/doc/hanIM/samples/overspot.c Xshare/doc/hanIM/samples/rootwin.c X@dirrm share/doc/hanIM/samples/CVS X@dirrm share/doc/hanIM/samples X@dirrm share/doc/hanIM END-of-hanIM/pkg/PLIST echo x - hanIM/pkg/MESSAGE sed 's/^X//' >hanIM/pkg/MESSAGE << 'END-of-hanIM/pkg/MESSAGE' XThis is a product of MIZI Research X---------------------------------- X X1. This package should not be commercial use, X except under permission of Mizi Research. X2. This package should be redistributed under permission of Mizi Research. X3. This package is designed for Linux, so use it at your own risk. X XPlease read /usr/X11R6/share/doc/hanIM/LICENSE. X XFor more information, contact to info@mizi.co.kr or http://www.mizi.co.kr X END-of-hanIM/pkg/MESSAGE echo c - hanIM/patches mkdir -p hanIM/patches > /dev/null 2>&1 echo x - hanIM/patches/patch-aa sed 's/^X//' >hanIM/patches/patch-aa << 'END-of-hanIM/patches/patch-aa' X--- Makefile.orig Mon Apr 19 11:13:05 1999 X+++ usr/doc/hanIM-1.1b/samples/Makefile Mon Apr 19 11:16:26 1999 X@@ -1,17 +1,23 @@ X # $Id: Makefile,v 1.10 1999/04/07 21:52:47 frog Exp $ X X MKDIRHIER = mkdirhier X-DESTDIR = /usr/share/examples/hanIM X+DESTDIR = /usr/X11R6/share/examples/hanIM X X-# Linux (X11R6) X-# RedHat Motif seems not to permit i18n. X+# FreeBSD (X11R6) X CFLAGS= -I/usr/X11R6/include -g X LDFLAGS= -L/usr/X11R6/lib X-XEXTLIB= -lSM -lICE -lXext -lXpm X-#CFLAGS = -I/usr/local/include -DX_LOCALE -g X-#LDFLAGS = -L/usr/local/lib -L/usr/X11R6/lib X-XEXTLIB = -lSM -lICE -lXext -lXpm X+XEXTLIB= -lSM -lICE -lXext -lXpm -lxpg4 X NETLIBS = X+ X+# Linux (X11R6) X+# RedHat Motif seems not to permit i18n. X+#CFLAGS= -I/usr/X11R6/include -g X+#LDFLAGS= -L/usr/X11R6/lib X+#XEXTLIB= -lSM -lICE -lXext -lXpm X+##CFLAGS = -I/usr/local/include -DX_LOCALE -g X+##LDFLAGS = -L/usr/local/lib -L/usr/X11R6/lib X+#XEXTLIB = -lSM -lICE -lXext -lXpm X+#NETLIBS = X X # Solariz 2.x (X11R5 CDE) X # CFLAGS = -I/usr/dt/include -DX_LOCALE END-of-hanIM/patches/patch-aa echo x - hanIM/Makefile sed 's/^X//' >hanIM/Makefile << 'END-of-hanIM/Makefile' X# New ports collection makefile for: hanIM X# Version required: 1.0 X# Date created: 17 Mar 1998 X# Whom: CHOI Junho END-of-hanIM/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 Thu May 13 2:20: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E17C8154B6 for ; Thu, 13 May 1999 02:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA48060; Thu, 13 May 1999 02:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hamhae.wdb.co.kr (hamhae.wdb.co.kr [210.92.121.137]) by hub.freebsd.org (Postfix) with ESMTP id 80E0015613 for ; Thu, 13 May 1999 02:10:07 -0700 (PDT) (envelope-from cjh@hamhae.wdb.co.kr) Received: (from cjh@localhost) by hamhae.wdb.co.kr (8.9.3/8.9.3) id SAA48867; Thu, 13 May 1999 18:09:58 +0900 (KST) (envelope-from cjh) Message-Id: <199905130909.SAA48867@hamhae.wdb.co.kr> Date: Thu, 13 May 1999 18:09:58 +0900 (KST) From: cjh@kr.freebsd.org Reply-To: cjh@kr.freebsd.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11685: New port: korean/linux_locale Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11685 >Category: ports >Synopsis: new port: korean/linux_locale >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: Thu May 13 02:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: CHOI Junho >Release: FreeBSD 3.2-BEtA i386 >Organization: Webdatabank Co. Seoul, Korea >Environment: FreeBSD hamhae.wdb.co.kr 3.2-BETA FreeBSD 3.2-BETA #1: Wed May 12 18:15:02 KST 1999 root@hamhae.wdb.co.kr:/usr/src/sys/compile/HAMHAE i386 >Description: New port of Korean(almost dummy for setlocale() success) locale of linux(glibc-2.0.x). >How-To-Repeat: Build it with a recent FreeBSD system. >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: # # linux_locale # linux_locale/files # linux_locale/files/md5 # linux_locale/pkg # linux_locale/pkg/COMMENT # linux_locale/pkg/DESCR # linux_locale/pkg/PLIST # linux_locale/Makefile # echo c - linux_locale mkdir -p linux_locale > /dev/null 2>&1 echo c - linux_locale/files mkdir -p linux_locale/files > /dev/null 2>&1 echo x - linux_locale/files/md5 sed 's/^X//' >linux_locale/files/md5 << 'END-of-linux_locale/files/md5' XMD5 (linux_locale-ko-1.0.tar.gz) = 39f52a9e246407be6ae6f625f2cf0beb END-of-linux_locale/files/md5 echo c - linux_locale/pkg mkdir -p linux_locale/pkg > /dev/null 2>&1 echo x - linux_locale/pkg/COMMENT sed 's/^X//' >linux_locale/pkg/COMMENT << 'END-of-linux_locale/pkg/COMMENT' Xglibc 2.0 Korean locale for linux compatibility. END-of-linux_locale/pkg/COMMENT echo x - linux_locale/pkg/DESCR sed 's/^X//' >linux_locale/pkg/DESCR << 'END-of-linux_locale/pkg/DESCR' XKorean locale for linux_lib X=========================== X XFor running some linux-emulation program such as hanIM, you may Xneed this for correctly working setlocale() for ko locale. X Xglibc(prior 2.1) have no true multilingual support, so this locale Xdefinition is broken but sufficient for running X11 applications. X XThis definition files(LC_CTYPE, LC_TIME, etc.) is from XAlzza Linux distribution, a leading Linux distribution in Korea. X X-- XPorts by CHOI Junho END-of-linux_locale/pkg/DESCR echo x - linux_locale/pkg/PLIST sed 's/^X//' >linux_locale/pkg/PLIST << 'END-of-linux_locale/pkg/PLIST' Xusr/share/locale/ko/LC_MESSAGES/SYS_LC_MESSAGES Xusr/share/locale/ko/LC_TIME Xusr/share/locale/ko/LC_NUMERIC Xusr/share/locale/ko/LC_MONETARY Xusr/share/locale/ko/LC_CTYPE Xusr/share/locale/ko/LC_COLLATE END-of-linux_locale/pkg/PLIST echo x - linux_locale/Makefile sed 's/^X//' >linux_locale/Makefile << 'END-of-linux_locale/Makefile' X# New ports collection makefile for: linux_locale X# Version required: 1.0 X# Date created: Apr 20 1999 X# Whom: cjh@kr.freebsd.org X# X# $Id$ X# X XDISTNAME= linux_locale-ko-1.0 XPKGNAME= ko-linux_locale-1.0 XCATEGORIES= korean emulators XMASTER_SITES= ftp://ftp.kr.freebsd.org/pub/FreeBSD-kr/distfiles/ X XMAINTAINER= cjh@kr.freebsd.org X XBUILD_DEPENDS= ${PREFIX}/usr/share/locale/ko:${PORTSDIR}/emulators/linux_lib XRUN_DEPENDS= ${PREFIX}/usr/share/locale/ko:${PORTSDIR}/emulators/linux_lib X XONLY_FOR_ARCHS= i386 X XPREFIX= /compat/linux XNO_MTREE= yes XNO_BUILD= yes XEXTRACT_ONLY= # empty XNO_WRKSUBDIR= yes XNO_FILTER_SHLIBS= yes X Xdo-install: X @zcat ${DISTDIR}/${DISTNAME}.tar.gz |(cd ${PREFIX}; pax -r) X X.include END-of-linux_locale/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 Thu May 13 11:20: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D502D1524C for ; Thu, 13 May 1999 11:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA43525; Thu, 13 May 1999 11:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 097E2152BF; Thu, 13 May 1999 11:11:39 -0700 (PDT) Message-Id: <19990513181139.097E2152BF@hub.freebsd.org> Date: Thu, 13 May 1999 11:11:39 -0700 (PDT) From: eischen@vigrid.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11693: Upgrade Xmcd to latest version (xmcd-2.5) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11693 >Category: ports >Synopsis: Upgrade Xmcd to latest version (xmcd-2.5) >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 May 13 11:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Daniel Eischen >Release: 3.2-BETA >Organization: >Environment: FreeBSD klr1.clc.gdeb.com 3.2-BETA FreeBSD 3.2-BETA #3: Tue May 11 19:06:08 EDT 1999 deischen@klr1.clc.gdeb.com:/opt/src/src/sys/compile/klr i386 >Description: Xmcd is out of date; the latest release is version 2.5. >How-To-Repeat: N/A >Fix: Apply the following patch to the port: diff -cNr ../xmcd.orig/Makefile ./Makefile *** ../xmcd.orig/Makefile Wed May 12 18:45:53 1999 --- ./Makefile Thu May 13 14:05:13 1999 *************** *** 6,14 **** # $Id: Makefile,v 1.18 1999/02/22 03:27:30 steve Exp $ # ! DISTNAME= xmcd-2.4 CATEGORIES= audio ! MASTER_SITES= http://mercury.hypersurf.com/~amb/download/xmcd/src/ MAINTAINER= eischen@vigrid.com --- 6,14 ---- # $Id: Makefile,v 1.18 1999/02/22 03:27:30 steve Exp $ # ! DISTNAME= xmcd-2.5 CATEGORIES= audio ! MASTER_SITES= http://metalab.unc.edu/tkan/download/xmcd/src/ MAINTAINER= eischen@vigrid.com *************** *** 30,34 **** --- 30,35 ---- post-install: @${CAT} ${PKGDIR}/MESSAGE + @${CP} ${WRKSRC}/xmcd_d/XMcd.ad ${PREFIX}/lib/X11/app-defaults/XMcd .include diff -cNr ../xmcd.orig/files/md5 ./files/md5 *** ../xmcd.orig/files/md5 Wed May 12 18:45:52 1999 --- ./files/md5 Wed May 12 18:49:12 1999 *************** *** 1 **** ! MD5 (xmcd-2.4.tar.gz) = 34de843d84620b0e0e593faf0fc0fc2f --- 1 ---- ! MD5 (xmcd-2.5.tar.gz) = de8d66770be5acc492e0c7c3ff03e0a0 diff -cNr ../xmcd.orig/patches/patch-ae ./patches/patch-ae *** ../xmcd.orig/patches/patch-ae Wed May 12 18:45:52 1999 --- ./patches/patch-ae Wed May 12 18:49:12 1999 *************** *** 10,24 **** ARCH= -DSVR4 -Di386 TIMER= -DUSE_SELECT TERMIO= -DUSE_TERMIOS - --- makedgux.inc.orig Tue Dec 29 15:53:17 1998 - +++ makedgux.inc Tue Dec 29 15:55:11 1998 - @@ -52,7 +52,8 @@ - RANLIB= /bin/true - AR= ar cq - RM= rm -f - -CFLAGS= -O $(DEFINES) $(INCDIRS) $(ARCH) $(TIMER) $(TERMIO) - +CFLAGS?= -O - +CFLAGS+= $(DEFINES) $(INCDIRS) $(ARCH) $(TIMER) $(TERMIO) - # ARCH= - TIMER= -DUSE_SELECT - TERMIO= -DUSE_TERMIOS --- 10,12 ---- diff -cNr ../xmcd.orig/pkg/PLIST ./pkg/PLIST *** ../xmcd.orig/pkg/PLIST Wed May 12 18:45:53 1999 --- ./pkg/PLIST Thu May 13 13:48:45 1999 *************** *** 20,124 **** lib/X11/xmcd/docs/RELNOTES lib/X11/xmcd/docs/WEB lib/X11/xmcd/help/Ab.btn lib/X11/xmcd/help/DbProg.btn lib/X11/xmcd/help/DdCancel.btn lib/X11/xmcd/help/DdClr.btn lib/X11/xmcd/help/DdOk.btn lib/X11/xmcd/help/DpAddPgm.btn lib/X11/xmcd/help/DpCancel.btn lib/X11/xmcd/help/DpClrPgm.btn lib/X11/xmcd/help/DpDExt.btn lib/X11/xmcd/help/DpLink.btn lib/X11/xmcd/help/DpLoad.btn lib/X11/xmcd/help/DpRmDsbl.btn lib/X11/xmcd/help/DpSave.btn ! lib/X11/xmcd/help/DpSend.btn lib/X11/xmcd/help/DpTExt.btn lib/X11/xmcd/help/DpTimSel.btn ! lib/X11/xmcd/help/DpWeb.btn lib/X11/xmcd/help/DsCancel.btn lib/X11/xmcd/help/DsOk.btn lib/X11/xmcd/help/DtAutoTr.btn lib/X11/xmcd/help/DtCancel.btn lib/X11/xmcd/help/DtClr.btn lib/X11/xmcd/help/DtDir.btn lib/X11/xmcd/help/DtOk.btn lib/X11/xmcd/help/Eject.btn lib/X11/xmcd/help/Ff.btn lib/X11/xmcd/help/Help.btn lib/X11/xmcd/help/HpAbout.btn lib/X11/xmcd/help/HpCancel.btn lib/X11/xmcd/help/Keypad.btn lib/X11/xmcd/help/KpCancel.btn lib/X11/xmcd/help/KpClear.btn lib/X11/xmcd/help/KpEnter.btn lib/X11/xmcd/help/KpNum.btn lib/X11/xmcd/help/KpSel.btn lib/X11/xmcd/help/LsCancel.btn lib/X11/xmcd/help/LsOk.btn lib/X11/xmcd/help/Mode.btn lib/X11/xmcd/help/NextDisc.btn lib/X11/xmcd/help/NextIdx.btn lib/X11/xmcd/help/NextTrk.btn lib/X11/xmcd/help/OpBalCtr.btn lib/X11/xmcd/help/OpOk.btn lib/X11/xmcd/help/OpReset.btn lib/X11/xmcd/help/OpSave.btn lib/X11/xmcd/help/Options.btn lib/X11/xmcd/help/PlayPaus.btn lib/X11/xmcd/help/PrevDisc.btn lib/X11/xmcd/help/PrevIdx.btn lib/X11/xmcd/help/PrevTrk.btn lib/X11/xmcd/help/Quit.btn lib/X11/xmcd/help/Rew.btn lib/X11/xmcd/help/Sample.btn lib/X11/xmcd/help/Stop.btn lib/X11/xmcd/help/Time.btn - lib/X11/xmcd/help/WwCancel.btn - lib/X11/xmcd/help/WwGo.btn - lib/X11/xmcd/help/DbMode.lbl - lib/X11/xmcd/help/Disc.lbl - lib/X11/xmcd/help/DiscId.lbl - lib/X11/xmcd/help/DiscTitl.lbl - lib/X11/xmcd/help/DpTotTim.lbl - lib/X11/xmcd/help/Index.lbl - lib/X11/xmcd/help/Keypad.lbl - lib/X11/xmcd/help/PlayMode.lbl - lib/X11/xmcd/help/ProgMode.lbl - lib/X11/xmcd/help/RptCnt.lbl lib/X11/xmcd/help/Time.lbl lib/X11/xmcd/help/TimeMode.lbl lib/X11/xmcd/help/Track.lbl lib/X11/xmcd/help/TrkTitle.lbl ! lib/X11/xmcd/help/DdDisc.txw ! lib/X11/xmcd/help/DpDTitle.txw ! lib/X11/xmcd/help/DpPgmSeq.txw ! lib/X11/xmcd/help/DpTTitle.txw ! lib/X11/xmcd/help/DtTrack.txw ! lib/X11/xmcd/help/HpText.txw ! lib/X11/xmcd/help/KpWarp.scl ! lib/X11/xmcd/help/Level.scl ! lib/X11/xmcd/help/OpBal.scl ! lib/X11/xmcd/help/DpTrk.lsw ! lib/X11/xmcd/help/DsDir.lsw ! lib/X11/xmcd/help/LsLink.lsw ! lib/X11/xmcd/help/OpChRt.rbx ! lib/X11/xmcd/help/OpExit.rbx ! lib/X11/xmcd/help/OpLoad.rbx ! lib/X11/xmcd/help/OpVolTpr.rbx ! lib/X11/xmcd/help/WwSelect.rbx ! lib/X11/xmcd/help/Main.cbx ! lib/X11/xmcd/help/OpChgr.cbx ! lib/X11/xmcd/help/OpDone.cbx ! lib/X11/xmcd/help/OpEject.cbx ! lib/X11/xmcd/help/OpLoad.cbx ! lib/X11/xmcd/help/HpTopic.opt lib/X11/xmcd/help/WwSearch.opt lib/X11/xmcd/pixmaps/xmcd.icon lib/X11/xmcd/pixmaps/xmcd_a.px lib/X11/xmcd/pixmaps/xmcd_b.px lib/X11/xmcd/pixmaps/xmcd.xpm lib/X11/xmcd/config/common.cfg lib/X11/xmcd/config/device.cfg lib/X11/xmcd/config/sites lib/X11/xmcd/config/.tbl/Acer --- 20,134 ---- lib/X11/xmcd/docs/RELNOTES lib/X11/xmcd/docs/WEB lib/X11/xmcd/help/Ab.btn + lib/X11/xmcd/help/DbMode.lbl lib/X11/xmcd/help/DbProg.btn lib/X11/xmcd/help/DdCancel.btn lib/X11/xmcd/help/DdClr.btn + lib/X11/xmcd/help/DdDisc.txw lib/X11/xmcd/help/DdOk.btn + lib/X11/xmcd/help/Disc.lbl + lib/X11/xmcd/help/DiscId.lbl + lib/X11/xmcd/help/DiscTitl.lbl + lib/X11/xmcd/help/DlCancel.btn + lib/X11/xmcd/help/DlChgTo.btn + lib/X11/xmcd/help/DlDel.btn + lib/X11/xmcd/help/DlDelAll.btn + lib/X11/xmcd/help/DlDisc.lsw + lib/X11/xmcd/help/DlReScan.btn + lib/X11/xmcd/help/DlShow.btn + lib/X11/xmcd/help/DlType.opt lib/X11/xmcd/help/DpAddPgm.btn lib/X11/xmcd/help/DpCancel.btn lib/X11/xmcd/help/DpClrPgm.btn lib/X11/xmcd/help/DpDExt.btn + lib/X11/xmcd/help/DpDList.btn + lib/X11/xmcd/help/DpDTitle.txw lib/X11/xmcd/help/DpLink.btn lib/X11/xmcd/help/DpLoad.btn + lib/X11/xmcd/help/DpPgmSeq.txw lib/X11/xmcd/help/DpRmDsbl.btn lib/X11/xmcd/help/DpSave.btn ! lib/X11/xmcd/help/DpSubmit.btn lib/X11/xmcd/help/DpTExt.btn + lib/X11/xmcd/help/DpTTitle.txw lib/X11/xmcd/help/DpTimSel.btn ! lib/X11/xmcd/help/DpTotTim.lbl ! lib/X11/xmcd/help/DpTrk.lsw lib/X11/xmcd/help/DsCancel.btn + lib/X11/xmcd/help/DsDir.lsw lib/X11/xmcd/help/DsOk.btn lib/X11/xmcd/help/DtAutoTr.btn lib/X11/xmcd/help/DtCancel.btn lib/X11/xmcd/help/DtClr.btn lib/X11/xmcd/help/DtDir.btn lib/X11/xmcd/help/DtOk.btn + lib/X11/xmcd/help/DtTrack.txw lib/X11/xmcd/help/Eject.btn lib/X11/xmcd/help/Ff.btn lib/X11/xmcd/help/Help.btn lib/X11/xmcd/help/HpAbout.btn lib/X11/xmcd/help/HpCancel.btn + lib/X11/xmcd/help/HpText.txw + lib/X11/xmcd/help/HpTopic.opt + lib/X11/xmcd/help/Index.lbl lib/X11/xmcd/help/Keypad.btn + lib/X11/xmcd/help/Keypad.lbl lib/X11/xmcd/help/KpCancel.btn lib/X11/xmcd/help/KpClear.btn lib/X11/xmcd/help/KpEnter.btn lib/X11/xmcd/help/KpNum.btn lib/X11/xmcd/help/KpSel.btn + lib/X11/xmcd/help/KpWarp.scl + lib/X11/xmcd/help/Level.scl lib/X11/xmcd/help/LsCancel.btn + lib/X11/xmcd/help/LsLink.lsw lib/X11/xmcd/help/LsOk.btn + lib/X11/xmcd/help/Main.cbx lib/X11/xmcd/help/Mode.btn lib/X11/xmcd/help/NextDisc.btn lib/X11/xmcd/help/NextIdx.btn lib/X11/xmcd/help/NextTrk.btn + lib/X11/xmcd/help/OpBal.scl lib/X11/xmcd/help/OpBalCtr.btn + lib/X11/xmcd/help/OpChRt.rbx + lib/X11/xmcd/help/OpChgr.cbx + lib/X11/xmcd/help/OpDone.cbx + lib/X11/xmcd/help/OpEject.cbx + lib/X11/xmcd/help/OpExit.rbx + lib/X11/xmcd/help/OpLoad.cbx + lib/X11/xmcd/help/OpLoad.rbx lib/X11/xmcd/help/OpOk.btn lib/X11/xmcd/help/OpReset.btn lib/X11/xmcd/help/OpSave.btn + lib/X11/xmcd/help/OpVolTpr.rbx lib/X11/xmcd/help/Options.btn + lib/X11/xmcd/help/PlayMode.lbl lib/X11/xmcd/help/PlayPaus.btn lib/X11/xmcd/help/PrevDisc.btn lib/X11/xmcd/help/PrevIdx.btn lib/X11/xmcd/help/PrevTrk.btn + lib/X11/xmcd/help/ProgMode.lbl lib/X11/xmcd/help/Quit.btn lib/X11/xmcd/help/Rew.btn + lib/X11/xmcd/help/RptCnt.lbl lib/X11/xmcd/help/Sample.btn lib/X11/xmcd/help/Stop.btn lib/X11/xmcd/help/Time.btn lib/X11/xmcd/help/Time.lbl lib/X11/xmcd/help/TimeMode.lbl lib/X11/xmcd/help/Track.lbl lib/X11/xmcd/help/TrkTitle.lbl ! lib/X11/xmcd/help/WWWwarp.btn ! lib/X11/xmcd/help/WwCancel.btn ! lib/X11/xmcd/help/WwGo.btn lib/X11/xmcd/help/WwSearch.opt + lib/X11/xmcd/help/WwSelect.rbx lib/X11/xmcd/pixmaps/xmcd.icon lib/X11/xmcd/pixmaps/xmcd_a.px lib/X11/xmcd/pixmaps/xmcd_b.px lib/X11/xmcd/pixmaps/xmcd.xpm lib/X11/xmcd/config/common.cfg + lib/X11/xmcd/config/config.sh lib/X11/xmcd/config/device.cfg lib/X11/xmcd/config/sites lib/X11/xmcd/config/.tbl/Acer *************** *** 148,153 **** --- 158,164 ---- lib/X11/xmcd/config/.tbl/Plextor lib/X11/xmcd/config/.tbl/Procom lib/X11/xmcd/config/.tbl/Regal + lib/X11/xmcd/config/.tbl/Ricoh lib/X11/xmcd/config/.tbl/SGI lib/X11/xmcd/config/.tbl/Samsung lib/X11/xmcd/config/.tbl/Sanyo *************** *** 158,164 **** lib/X11/xmcd/config/.tbl/Teac lib/X11/xmcd/config/.tbl/Toshiba lib/X11/xmcd/config/.tbl/Yamaha ! lib/X11/xmcd/config/config.sh lib/X11/xmcd/scripts/ncsarmt lib/X11/xmcd/scripts/ncsawrap lib/X11/xmcd/scripts/nswrap --- 169,175 ---- lib/X11/xmcd/config/.tbl/Teac lib/X11/xmcd/config/.tbl/Toshiba lib/X11/xmcd/config/.tbl/Yamaha ! lib/X11/xmcd/scripts/genidx lib/X11/xmcd/scripts/ncsarmt lib/X11/xmcd/scripts/ncsawrap lib/X11/xmcd/scripts/nswrap >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 May 13 11:44:34 1999 Delivered-To: freebsd-ports@freebsd.org Received: from milehigh.denver.net (milehigh.denver.net [204.144.180.2]) by hub.freebsd.org (Postfix) with ESMTP id 3B00E14F0C for ; Thu, 13 May 1999 11:44:31 -0700 (PDT) (envelope-from jdc@milehigh.denver.net) Received: (from jdc@localhost) by milehigh.denver.net (8.8.8/8.8.8) id MAA20436; Thu, 13 May 1999 12:44:39 -0600 (MDT) Message-ID: <19990513124439.00296@denver.net> Date: Thu, 13 May 1999 12:44:39 -0600 From: John-David Childs To: freebsd-ports@freebsd.org Subject: compiling gnumeric 0.24/0.25 Reply-To: jdc@nterprise.net Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.79 Organization: Enterprise Internet Solutions Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I cannot seem to get gnumeric 0.24 or 0.25 to compile under 3.1-stable, either through the port or by hand from the original tarball. The package seems to be stuck all the way back at 0.6 (which should have really been labeled 0.06 ;-) Compilation seems to fail at the exact same place in both 0.24 and 0.25: Any advice/suggestions appreciated...I've given it a cursory glance and the problem isn't obvious to me. Please CC me on any replies to the list. Script started on Thu May 13 12:34:27 1999 # make ===> Building for gnumeric-0.25 make all-recursive Making all in intl Making all in po Making all in macros Making all in libglade Making all in glade Making all in plugins Making all in stat Making all in excel Making all in ff-csv Making all in text Making all in python Making all in perl Making all in guile Making all in src cc -DHAVE_CONFIG_H -I. -I. -I.. -DGNOMELOCALEDIR=\""/usr/X11R6/share/locale"\" -DGNUMERIC_VERSION=\""0.25"\" -I/usr/X11R6/include -I../libglade -I/usr/X11R6/include -DNEED_GNOMESUPPORT_H -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include -I/usr/local/include -I/usr/X11R6/include -I/usr/X11R6/include/gtk12 -I/usr/X11R6/include -I/usr/local/include/glib12 -O -pipe -I/usr/X11R6/include -Wall -Wno-unused -c Gnumeric-impl.c Gnumeric-impl.c:12: parse error before `POA_GNOME_Table' Gnumeric-impl.c:12: warning: no semicolon at end of struct or union Gnumeric-impl.c:15: parse error before `}' Gnumeric-impl.c:15: warning: data definition has no type or storage class Gnumeric-impl.c:18: parse error before `POA_GNOME_Spreadsheet' Gnumeric-impl.c:18: warning: no semicolon at end of struct or union Gnumeric-impl.c:21: parse error before `}' [ad nauseum] Script done on Thu May 13 12:34:42 1999 -- John-David Childs (JC612) Enterprise Internet Solutions Systems Administration http://www.nterprise.net & Network Engineering 8707 E. Florida Ave #814 Denver, CO 80231 Mad, adj.: Affected with a high degree of intellectual independence ... -- Ambrose Bierce, "The Devil's Dictionary" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 13 11:50: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BCDA71536D for ; Thu, 13 May 1999 11:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA46401; Thu, 13 May 1999 11:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.vlsi.fi (mail.vlsi.fi [195.74.10.147]) by hub.freebsd.org (Postfix) with ESMTP id 1636714F0C for ; Thu, 13 May 1999 11:44:53 -0700 (PDT) (envelope-from ville@vehome.pp.sci.fi) Received: (from smap@localhost) by mail.vlsi.fi (8.8.8/8.8.8) id VAA14462 for ; Thu, 13 May 1999 21:44:52 +0300 (EET DST) (envelope-from ville@vehome.pp.sci.fi) Received: from vlsi1.vlsi.fi(193.64.2.2) by mail.vlsi.fi via smap (V1.3) id xma014458; Thu, 13 May 99 21:44:25 +0300 Received: from vehome.pp.sci.fi (vebsd.vlsi.fi) by vlsi1.vlsi.fi with ESMTP (1.37.109.16/16.2) id AA263801076; Thu, 13 May 1999 21:44:36 +0300 Received: (from ville@localhost) by vehome.pp.sci.fi (8.9.3/8.9.2) id VAA06090; Thu, 13 May 1999 21:43:33 +0300 (EEST) (envelope-from Ville.Eerola@sci.fi) Message-Id: <199905131843.VAA06090@vehome.pp.sci.fi> Date: Thu, 13 May 1999 21:43:33 +0300 (EEST) From: Ville Eerola Reply-To: Ville Eerola To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11694: Update of the fetchmail port to version 5.0.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11694 >Category: ports >Synopsis: Update of the fetchmail port to version 5.0.3 >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 May 13 11:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ville Eerola >Release: FreeBSD 3.1-STABLE i386 >Organization: >Environment: Current FreeBSD ports as of May 13, 1999 >Description: Fetchmail has been upgraded to version 5.0.3 by the author. >How-To-Repeat: % cd /usr/ports/mail/fetchmail % make Note that it builds an old version ;-) >Fix: Commit the patch below: Index: Makefile =================================================================== RCS file: /spare/FreeBSD-current/ports/mail/fetchmail/Makefile,v retrieving revision 1.74 diff -u -2 -r1.74 Makefile --- Makefile 1999/04/06 11:44:16 1.74 +++ Makefile 1999/05/13 12:34:30 @@ -12,5 +12,5 @@ # this Makefile. -DISTNAME= fetchmail-5.0.0 +DISTNAME= fetchmail-5.0.3 CATEGORIES= mail MASTER_SITES= ftp://ftp.ccil.org/pub/esr/fetchmail/ Index: files/md5 =================================================================== RCS file: /spare/FreeBSD-current/ports/mail/fetchmail/files/md5,v retrieving revision 1.66 diff -u -2 -r1.66 md5 --- md5 1999/04/06 11:44:17 1.66 +++ md5 1999/05/13 12:34:42 @@ -1 +1 @@ -MD5 (fetchmail-5.0.0.tar.gz) = b335d27ee666438f49c9eb5422b3a0e7 +MD5 (fetchmail-5.0.3.tar.gz) = 72a9ed7756f7e4bad5566c1df4c1287c >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 May 13 13:37:21 1999 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 7F51714EC3 for ; Thu, 13 May 1999 13:37:06 -0700 (PDT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by shale.csir.co.za (8.9.3/8.9.3) id WAA61012; Thu, 13 May 1999 22:36:15 +0200 (SAT) (envelope-from reg) Date: Thu, 13 May 1999 22:36:15 +0200 From: Jeremy Lea To: John-David Childs Cc: freebsd-ports@FreeBSD.ORG Subject: Re: compiling gnumeric 0.24/0.25 Message-ID: <19990513223615.F344@shale.csir.co.za> References: <19990513124439.00296@denver.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <19990513124439.00296@denver.net>; from John-David Childs on Thu, May 13, 1999 at 12:44:39PM -0600 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Thu, May 13, 1999 at 12:44:39PM -0600, John-David Childs wrote: > Making all in src > cc -DHAVE_CONFIG_H -I. -I. -I.. > -DGNOMELOCALEDIR=\""/usr/X11R6/share/locale"\" > -DGNUMERIC_VERSION=\""0.25"\" -I/usr/X11R6/include -I../libglade > -I/usr/X11R6/include -DNEED_GNOMESUPPORT_H -I/usr/local/include/glib12 > -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include > -I/usr/local/include -I/usr/X11R6/include -I/usr/X11R6/include/gtk12 > -I/usr/X11R6/include -I/usr/local/include/glib12 -O -pipe > -I/usr/X11R6/include -Wall -Wno-unused -c Gnumeric-impl.c > Gnumeric-impl.c:12: parse error before `POA_GNOME_Table' > Gnumeric-impl.c:12: warning: no semicolon at end of struct or union > Gnumeric-impl.c:15: parse error before `}' > Gnumeric-impl.c:15: warning: data definition has no type or storage class > Gnumeric-impl.c:18: parse error before `POA_GNOME_Spreadsheet' > Gnumeric-impl.c:18: warning: no semicolon at end of struct or union > Gnumeric-impl.c:21: parse error before `}' Try uninstalling and reinstalling ORBit. This looks like a problem which could be caused by a bug in orbit-idl. The port (0.25) does build on -STABLE, because it did not appear in the errorloggs on bento, and should be in the 3.2 packages. Otherwise, I'd suggest uninstalling most things it depends on and starting over. Unfortunately the GNOME ports are fairly prone to subtle version problems. Regards, -Jeremy -- | "I could be anything I wanted to, but one things true --+-- Never gonna be as big as Jesus, never gonna hold the world in my hand | Never gonna be as big as Jesus, never gonna build a promised land | But that's, that's all right, OK with me..." -Audio Adrenaline To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 13 15: 0: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D5B5915143 for ; Thu, 13 May 1999 15:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA64332; Thu, 13 May 1999 15:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 9A6FB15200; Thu, 13 May 1999 14:53:02 -0700 (PDT) Message-Id: <19990513215302.9A6FB15200@hub.freebsd.org> Date: Thu, 13 May 1999 14:53:02 -0700 (PDT) From: davidyu@ken.csie.ntu.edu.tw To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11698: Update ports/chinese/aterm from 0.3.5 to 0.3.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11698 >Category: ports >Synopsis: Update ports/chinese/aterm from 0.3.5 to 0.3.6 >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 May 13 15:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chia-Hsing Yu >Release: 4.0-CURRENT >Organization: NTU CSIE >Environment: FreeBSD oio.cx 4.0-CURRENT FreeBSD 4.0-CURRENT #3: Sun May 9 22:49:24 CST 1999 root@oio.cx:/usr/src/sys/compile/DAVIDYU i386 >Description: Update ports/chinese/aterm from 0.3.5 to 0.3.6 >How-To-Repeat: >Fix: Please fetch the port from http://ken.csie.ntu.edu.tw/~davidyu/zh-aterm-0.3.6-port.tar.gz >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 May 13 15:50: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EAE37150D0 for ; Thu, 13 May 1999 15:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA68279; Thu, 13 May 1999 15:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from kronos.alcnet.com (kronos.alcnet.com [207.244.223.187]) by hub.freebsd.org (Postfix) with ESMTP id 3B1B815184 for ; Thu, 13 May 1999 15:43:09 -0700 (PDT) (envelope-from kbyanc@kronos.alcnet.com) Received: (from kbyanc@localhost) by kronos.alcnet.com (8.9.3/8.9.3/antispam) id SAA39025; Thu, 13 May 1999 18:56:24 -0400 (EDT) Message-Id: <199905132256.SAA39025@kronos.alcnet.com> Date: Thu, 13 May 1999 18:56:24 -0400 (EDT) From: kbyanc@alcnet.com Reply-To: kbyanc@alcnet.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11699: new port for FastCGI developers kit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11699 >Category: ports >Synopsis: new port: FastCGI development kit >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 May 13 15:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Kelly Yancey >Release: FreeBSD 3.1-19990309-STABLE i386 >Organization: ALC Communications - http://www.alcnet.com/ >Environment: N/A >Description: New item for the ports tree: the FastCGI development kit from http://www.fastcgi.com >How-To-Repeat: N/A >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # . # ./Makefile # ./pkg # ./pkg/COMMENT # ./pkg/DESCR # ./pkg/PLIST # ./files # ./files/md5 # ./patches # ./patches/patch-aa # ./patches/patch-ab # echo c - . mkdir -p . > /dev/null 2>&1 echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection makefile for: fcgi-devkit X# Version required: 2.1 X# Date created: 13 May 1999 X# Whom: kbyanc X# X# $Id$ X# X XDISTNAME= fcgi-devkit-2.1 XPKGNAME= fcgi-devkit-2.1 XCATEGORIES= www XMASTER_SITES= http://fastcgi.idle.com/dist/ X XMAINTAINER= kbyanc@alcnet.com X XMAN1= cgi-fcgi.1 XMAN3= FCGI_Accept.3 FCGI_Finish.3 FCGI_SetExitStatus.3 FCGI_StartFilterData.3 X XGNU_CONFIGURE= yes X XCONFIGURE_ARGS= X Xpost-install: X @rm -f /usr/local/fcgi-devkit/libfcgi/os_unix.c.orig \ X /usr/local/fcgi-devkit/Makefile.in.orig X X.include END-of-./Makefile echo c - ./pkg mkdir -p ./pkg > /dev/null 2>&1 echo x - ./pkg/COMMENT sed 's/^X//' >./pkg/COMMENT << 'END-of-./pkg/COMMENT' XFastCGI Development Kit. END-of-./pkg/COMMENT echo x - ./pkg/DESCR sed 's/^X//' >./pkg/DESCR << 'END-of-./pkg/DESCR' XFastCGI Development Kit. X XFastCGI is a fast, open, and secure Web server interface that solves the Xperformance problems inherent in CGI, without introducing the overhead and Xcomplexity of proprietary APIs (Application Programming Interfaces). X XFastCGI allows for many nice features such as persistent CGI applications X(eliminating process creation time per request) and being able run CGI Xapplications on hosts remote to the web server itself. X XMost web servers have optional or add-on support for FastCGI. Applications Xwhich are developed with FastCGI behave as standard CGIs when invoked by web Xservers without FastCGI support. In other words, if the server supports XFastCGI, then FastCGI applications get all the perks (mainly being *really* Xfast); if the server does not support FastCGI, then FastCGI applications Xbehave exactly like standard CGIs. X XSee http://www.fastcgi.com/ for more information about the benefits of XFastCGI, for developer documentation, and for the Apache FastCGI module (to Xenable FastCGI support for the popular Apache web server). X X- Kelly Xkbyanc@posi.net END-of-./pkg/DESCR echo x - ./pkg/PLIST sed 's/^X//' >./pkg/PLIST << 'END-of-./pkg/PLIST' Xbin/cgi-fcgi Xlib/libfcgi.a Xfcgi-devkit/FastCGI.mak Xfcgi-devkit/FastCGI.mak.in Xfcgi-devkit/FastCGI.mb Xfcgi-devkit/LICENSE.TERMS Xfcgi-devkit/Makefile Xfcgi-devkit/Makefile.in Xfcgi-devkit/README Xfcgi-devkit/README_NT.txt Xfcgi-devkit/acconfig.h Xfcgi-devkit/build.bat Xfcgi-devkit/build_no_shell.bat Xfcgi-devkit/configure Xfcgi-devkit/configure.in Xfcgi-devkit/dependencies.in Xfcgi-devkit/descrip.dfc Xfcgi-devkit/index.html Xfcgi-devkit/install.sh Xfcgi-devkit/version.conf Xfcgi-devkit/version.in Xfcgi-devkit/Perl/ChangeLog Xfcgi-devkit/Perl/FCGI.PL Xfcgi-devkit/Perl/FCGI.pm Xfcgi-devkit/Perl/Makefile.PL Xfcgi-devkit/Perl/README Xfcgi-devkit/Perl/configure Xfcgi-devkit/Perl/configure.in Xfcgi-devkit/Perl/configure.readme Xfcgi-devkit/Perl/echo.PL Xfcgi-devkit/Perl/typemap Xfcgi-devkit/cgi-fcgi/Makefile Xfcgi-devkit/cgi-fcgi/Makefile.in Xfcgi-devkit/cgi-fcgi/cgi-fcgi.c Xfcgi-devkit/cgi-fcgi/cgi-fcgi.mak Xfcgi-devkit/cgi-fcgi/cgi-fcgi.mak.in Xfcgi-devkit/cgi-fcgi/cgi-fcgi.mdp Xfcgi-devkit/cgi-fcgi/descrip.dfc Xfcgi-devkit/doc/FCGI_Accept.3 Xfcgi-devkit/doc/FCGI_Finish.3 Xfcgi-devkit/doc/FCGI_SetExitStatus.3 Xfcgi-devkit/doc/FCGI_StartFilterData.3 Xfcgi-devkit/doc/Makefile Xfcgi-devkit/doc/cgi-fcgi.1 Xfcgi-devkit/doc/fcgi-devel-kit.htm Xfcgi-devkit/doc/fcgi-java.htm Xfcgi-devkit/doc/fcgi-perf.htm Xfcgi-devkit/doc/fcgi-perl.htm Xfcgi-devkit/doc/fcgi-spec.html Xfcgi-devkit/doc/fcgi-tcl.htm Xfcgi-devkit/doc/omi-logo.gif Xfcgi-devkit/doc/www5-api-workshop.html Xfcgi-devkit/doc/fastcgi-prog-guide/ap_guida.htm Xfcgi-devkit/doc/fastcgi-prog-guide/ap_guide.htm Xfcgi-devkit/doc/fastcgi-prog-guide/apaman.htm Xfcgi-devkit/doc/fastcgi-prog-guide/ch1inta1.gif Xfcgi-devkit/doc/fastcgi-prog-guide/ch1intra.gif Xfcgi-devkit/doc/fastcgi-prog-guide/ch1intro.htm Xfcgi-devkit/doc/fastcgi-prog-guide/ch2c.htm Xfcgi-devkit/doc/fastcgi-prog-guide/ch3perl.htm Xfcgi-devkit/doc/fastcgi-prog-guide/ch4tcl.htm Xfcgi-devkit/doc/fastcgi-prog-guide/cover.htm Xfcgi-devkit/doc/fastcgi-prog-guide/covera.gif Xfcgi-devkit/doc/fastcgi-whitepaper/Makefile Xfcgi-devkit/doc/fastcgi-whitepaper/fastcgi.htm Xfcgi-devkit/doc/fastcgi-whitepaper/img00001.gif Xfcgi-devkit/doc/fastcgi-whitepaper/img00002.gif Xfcgi-devkit/doc/fastcgi-whitepaper/img00003.gif Xfcgi-devkit/examples/Makefile Xfcgi-devkit/examples/Makefile.in Xfcgi-devkit/examples/echo-perl Xfcgi-devkit/examples/echo-tcl Xfcgi-devkit/examples/echo.c Xfcgi-devkit/examples/echo.cgi Xfcgi-devkit/examples/echo.html Xfcgi-devkit/examples/echo.mak Xfcgi-devkit/examples/echo2.c Xfcgi-devkit/examples/echo2.html Xfcgi-devkit/examples/echo2.mak Xfcgi-devkit/examples/echo2_nt.fcgi Xfcgi-devkit/examples/echo_nt.fcgi Xfcgi-devkit/examples/log-dump.c Xfcgi-devkit/examples/sample-store.c Xfcgi-devkit/examples/tclHash.c Xfcgi-devkit/examples/tiny-authorizer.c Xfcgi-devkit/examples/tiny-cgi.c Xfcgi-devkit/examples/tiny-fcgi.c Xfcgi-devkit/examples/tiny-fcgi.cgi Xfcgi-devkit/examples/tiny-fcgi.mak Xfcgi-devkit/examples/tiny-fcgi2.c Xfcgi-devkit/examples/tiny-fcgi2.cgi Xfcgi-devkit/examples/tiny-fcgi2.mak Xfcgi-devkit/examples/tiny-fcgi2_nt.fcgi Xfcgi-devkit/examples/tiny-fcgi_nt.fcgi Xfcgi-devkit/examples/tiny-perl-fcgi Xfcgi-devkit/examples/tiny-tcl-fcgi Xfcgi-devkit/examples/SampleStore/Images/cart-hd.gif Xfcgi-devkit/examples/SampleStore/Images/main-hd.gif Xfcgi-devkit/examples/SampleStore/Images/offer-hd.gif Xfcgi-devkit/examples/SampleStore/Images/purch-hd.gif Xfcgi-devkit/examples/SampleStore/Images/thank-hd.gif Xfcgi-devkit/examples/SampleStore/Protected/RMSTitanic.html Xfcgi-devkit/examples/SampleStore/Unprotected/Purchase.html Xfcgi-devkit/examples/SampleStore/Unprotected/ThankYou.html Xfcgi-devkit/examples/conf/om-httpd.config Xfcgi-devkit/images/aplib-hd.gif Xfcgi-devkit/images/divider.gif Xfcgi-devkit/images/fcgi-hd.gif Xfcgi-devkit/images/mail-hd.gif Xfcgi-devkit/images/navbar.gif Xfcgi-devkit/images/serv-hd.gif Xfcgi-devkit/images/words-hd.gif Xfcgi-devkit/include/fastcgi.h Xfcgi-devkit/include/fcgi_config.h Xfcgi-devkit/include/fcgi_config.h.in Xfcgi-devkit/include/fcgi_config_x86.h Xfcgi-devkit/include/fcgi_stdio.h Xfcgi-devkit/include/fcgiapp.h Xfcgi-devkit/include/fcgiappmisc.h Xfcgi-devkit/include/fcgimisc.h Xfcgi-devkit/include/fcgios.h Xfcgi-devkit/include/tcl.h Xfcgi-devkit/include/tclInt.h Xfcgi-devkit/include/tclRegexp.h Xfcgi-devkit/java/FCGIGlobalDefs.java Xfcgi-devkit/java/FCGIInputStream.java Xfcgi-devkit/java/FCGIInterface.java Xfcgi-devkit/java/FCGIMessage.java Xfcgi-devkit/java/FCGIOutputStream.java Xfcgi-devkit/java/FCGIRequest.java Xfcgi-devkit/libfcgi/Makefile Xfcgi-devkit/libfcgi/Makefile.in Xfcgi-devkit/libfcgi/descrip.dfc Xfcgi-devkit/libfcgi/fcgi_stdio.c Xfcgi-devkit/libfcgi/fcgiapp.c Xfcgi-devkit/libfcgi/libfcgi.mak Xfcgi-devkit/libfcgi/libfcgi.mak.in Xfcgi-devkit/libfcgi/os_unix.c Xfcgi-devkit/libfcgi/os_win32.c Xfcgi-devkit/libfcgi/strerror.c Xfcgi-devkit/tcl/common/tclAppInit.c Xfcgi-devkit/tcl/common/tclFCGI.c Xfcgi-devkit/tcl/tcl7.4/Makefile.in Xfcgi-devkit/tcl/tcl7.4/configure.in X@dirrm fcgi-devkit/Perl X@dirrm fcgi-devkit/cgi-fcgi X@dirrm fcgi-devkit/doc/fastcgi-prog-guide X@dirrm fcgi-devkit/doc/fastcgi-whitepaper X@dirrm fcgi-devkit/doc X@dirrm fcgi-devkit/examples/SampleStore/Images X@dirrm fcgi-devkit/examples/SampleStore/Protected X@dirrm fcgi-devkit/examples/SampleStore/Unprotected X@dirrm fcgi-devkit/examples/SampleStore X@dirrm fcgi-devkit/examples/conf X@dirrm fcgi-devkit/examples X@dirrm fcgi-devkit/images X@dirrm fcgi-devkit/include X@dirrm fcgi-devkit/java X@dirrm fcgi-devkit/libfcgi X@dirrm fcgi-devkit/tcl/common X@dirrm fcgi-devkit/tcl/tcl7.4 X@dirrm fcgi-devkit/tcl X@dirrm fcgi-devkit X 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 (fcgi-devkit-2.1.tar.gz) = c397edce40036372d230193223549f98 END-of-./files/md5 echo c - ./patches mkdir -p ./patches > /dev/null 2>&1 echo x - ./patches/patch-aa sed 's/^X//' >./patches/patch-aa << 'END-of-./patches/patch-aa' X*** Makefile.in.orig Thu May 13 17:22:24 1999 X--- Makefile.in Thu May 13 17:31:56 1999 X*************** X*** 14,20 **** X prefix = @prefix@ X common_prefix = @common_prefix@ X CVS_TAG = @CVS_TAG@ X! EXPORT_DIR = $(prefix)/build X PROTO_DIR = ../proto X BIN_DIR = $(exec_prefix)/bin X LIB_DIR = $(prefix)/lib X--- 14,20 ---- X prefix = @prefix@ X common_prefix = @common_prefix@ X CVS_TAG = @CVS_TAG@ X! EXPORT_DIR = $(prefix)/fcgi-devkit X PROTO_DIR = ../proto X BIN_DIR = $(exec_prefix)/bin X LIB_DIR = $(prefix)/lib X*************** X*** 41,47 **** X (cd cgi-fcgi; make all) X (cd examples; make all) X X! export: X @ for i in $(TARGET_DIRS); \ X do \ X if test ! -d $$i; then \ X--- 41,47 ---- X (cd cgi-fcgi; make all) X (cd examples; make all) X X! install: all X @ for i in $(TARGET_DIRS); \ X do \ X if test ! -d $$i; then \ END-of-./patches/patch-aa echo x - ./patches/patch-ab sed 's/^X//' >./patches/patch-ab << 'END-of-./patches/patch-ab' X*** /usr/ports/www/fcgi-devkit/work/fcgi-devkit-2.1/libfcgi/os_unix.c Sat Feb 6 00:08:33 1999 X--- os_unix.c Thu May 13 10:32:00 1999 X*************** X*** 412,420 **** X */ X int OS_Read(int fd, char * buf, size_t len) X { X! return(read(fd, buf, len)); X } X! X /* X *-------------------------------------------------------------- X * X--- 412,424 ---- X */ X int OS_Read(int fd, char * buf, size_t len) X { X! int result; X! do { X! result = read(fd, buf, len); X! } while((result == -1) && (errno == EINTR)); X! return(result); X } X! X /* X *-------------------------------------------------------------- X * X*************** X*** 433,442 **** X */ X int OS_Write(int fd, char * buf, size_t len) X { X! return(write(fd, buf, len)); X } X X- X /* X *---------------------------------------------------------------------- X * X--- 437,449 ---- X */ X int OS_Write(int fd, char * buf, size_t len) X { X! int result; X! do { X! result = write(fd, buf, len); X! } while((result == -1) && (errno == EINTR)); X! return(result); X } X X /* X *---------------------------------------------------------------------- X * X*************** X*** 761,768 **** X * any work to do. X */ X if(numRdPosted == 0 && numWrPosted == 0) { X! selectStatus = select((maxFd+1), &readFdSetCpy, &writeFdSetCpy, X! NULL, tmo); X if(selectStatus < 0) { X exit(errno); X } X--- 768,777 ---- X * any work to do. X */ X if(numRdPosted == 0 && numWrPosted == 0) { X! do { X! selectStatus = select((maxFd+1), &readFdSetCpy, &writeFdSetCpy, X! NULL, tmo); X! } while ((selectStatus == -1) && (errno == EINTR)); X if(selectStatus < 0) { X exit(errno); X } X*************** X*** 1020,1030 **** X { X struct timeval tval = { READABLE_UNIX_FD_DROP_DEAD_TIMEVAL }; X fd_set read_fds; X X FD_ZERO(&read_fds); X FD_SET(fd, &read_fds); X X! return select(fd + 1, &read_fds, NULL, NULL, &tval) >= 0 && FD_ISSET(fd, &read_fds); X } X X /* X--- 1029,1043 ---- X { X struct timeval tval = { READABLE_UNIX_FD_DROP_DEAD_TIMEVAL }; X fd_set read_fds; X+ int result; X X FD_ZERO(&read_fds); X FD_SET(fd, &read_fds); X X! do { X! result = select(fd + 1, &read_fds, NULL, NULL, &tval); X! } while((result == -1) && (errno == EINTR)); X! return result >= 0 && FD_ISSET(fd, &read_fds); X } X X /* END-of-./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 May 13 16: 0: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2EA2815278 for ; Thu, 13 May 1999 16:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA69222; Thu, 13 May 1999 16:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id E6D1B15210; Thu, 13 May 1999 15:58:56 -0700 (PDT) Message-Id: <19990513225856.E6D1B15210@hub.freebsd.org> Date: Thu, 13 May 1999 15:58:56 -0700 (PDT) From: eischen@vigrid.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11700: DDD port seems broken Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11700 >Category: ports >Synopsis: DDD port seems broken >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: Thu May 13 16:00:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Daniel Eischen >Release: 3.2-BETA >Organization: >Environment: FreeBSD klr1.clc.gdeb.com 3.2-BETA FreeBSD 3.2-BETA #3: Tue May 11 19:06:08 EDT 1999 deischen@klr1.clc.gdeb.com:/opt/src/src/sys/compile/klr i386 >Description: The DDD port fails: bash-2.02$ make ===> Extracting for ddd-3.1.4 >How-To-Repeat: Do not build ddd static. cd /usr/ports/devel/ddd make >Fix: Perhaps stripping the -L from ${MOTIFLIB} before passing it to CONFIGURE_ARGS? >Release-Note: >Audit-Trail: >Unformatted: >> Checksum OK for ddd-3.1.4.tar.gz. ===> ddd-3.1.4 depends on executable: gmake - found ===> ddd-3.1.4 depends on shared library: Xpm.4 - found ===> ddd-3.1.4 depends on shared library: Xpm.4 - found ===> Patching for ddd-3.1.4 ===> Applying FreeBSD patches for ddd-3.1.4 ===> Configuring for ddd-3.1.4 creating cache ./config.cache checking host system type... i386--freebsd3.2 [ ... ] checking for Motif... libraries -L/usr/dt/lib -lXm -lXp -lXt -lXext, headers in default path checking for Athena... libraries /usr/X11R6/lib, headers in default path checking for Xpm... libraries /usr/X11R6/lib, headers in default path checking for XOpenDisplay in -lX11... no configure: error: The X11 library '-lX11' could not be found. Please use the configure options '--x-includes=DIR' and '--x-libraries=DIR' to specify the X location. See the files 'config.log' and 'ddd/config.log' for further diagnostics. configure: error: ./configure failed for ddd *** Error code 1 And from ddd/config.log: configure:6269: checking for XOpenDisplay in -lX11 configure:6291: c++ -o conftest -O -pipe -I/usr/X11R6/include -L-L/usr/dt/lib -lXm -lXp -lXt -lXext -L/usr/X11R6/lib conftest.C -lX11 -lSM -lICE 1>&5 ^^^^^^^^^^^^^^^ /usr/libexec/elf/ld: cannot open -lXm: No such file or directory configure: failed program was: #line 6277 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char XOpenDisplay(); int main() { XOpenDisplay() ; return 0; } I believe the problem is with the ports Makefile and CONFIGURE_ARGS which are set to: CONFIGURE_ARGS= --with-motif-libraries="${MOTIFLIB} -lXt -lXext" configure wants a directory (without the preceding -L) for the --with-motif-libraries option, whereas our /etc/make.conf or bsd.port.mk want to set MOTIFLIB to "-L/lib -lXm -lXp". To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 13 17:10: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D5DAD14E38 for ; Thu, 13 May 1999 17:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA74100; Thu, 13 May 1999 17:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 9A14614CF0 for ; Thu, 13 May 1999 17:08:09 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id DA85D1435; Thu, 13 May 1999 17:08:00 -0700 (PDT) Message-Id: <19990514000800.DA85D1435@norn.ca.eu.org> Date: Thu, 13 May 1999 17:08:00 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11701: Update: audio/gqmpeg Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11701 >Category: ports >Synopsis: Update: audio/gqmpeg >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 May 13 17:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD 4.0-CURRENT i386 >Description: Update to 0.5.2. This will definitely need to be committed before GTK/GLIB 1.2.3, or the port will break. It still works with 1.2.2, though. Keep the master sites current and update WWW:. >How-To-Repeat: >Fix: Index: gqmpeg/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/audio/gqmpeg/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- Makefile 1999/04/02 03:52:51 1.12 +++ Makefile 1999/05/13 23:59:46 @@ -1,14 +1,15 @@ # New ports collection makefile for: gqmpeg -# Version required: 0.5.1 +# Version required: 0.5.2 # Date Created: 28 Oct 1998 # Whom: Vanilla Pooh Shu # # $Id: Makefile,v 1.12 1999/04/02 03:52:51 steve Exp $ # -DISTNAME= gqmpeg-0.5.1 +DISTNAME= gqmpeg-0.5.2 CATEGORIES= audio -MASTER_SITES= http://www.geocities.com/SiliconValley/Haven/5235/ +MASTER_SITES= http://gqview.netpedia.net/ \ + http://www.geocities.com/SiliconValley/Haven/5235/ EXTRACT_SUFX= .src.tgz MAINTAINER= nacai@iname.com Index: gqmpeg/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/audio/gqmpeg/files/md5,v retrieving revision 1.7 diff -u -r1.7 md5 --- md5 1999/04/02 03:52:55 1.7 +++ md5 1999/05/14 00:01:05 @@ -1 +1 @@ -MD5 (gqmpeg-0.5.1.src.tgz) = 9649e5366da9298df19c216791fb9b14 +MD5 (gqmpeg-0.5.2.src.tgz) = 2e1be28d9aaac1af8da6236f656a12c3 Index: gqmpeg/pkg/DESCR =================================================================== RCS file: /cvs/FreeBSD/ports/audio/gqmpeg/pkg/DESCR,v retrieving revision 1.3 diff -u -r1.3 DESCR --- DESCR 1999/05/02 21:31:35 1.3 +++ DESCR 1999/05/14 00:02:39 @@ -1,7 +1,7 @@ A GTK-based mp3 front-end. Uses mpg123 for decoding and supports winamp themes.. -WWW: http://www.geocities.com/SiliconValley/Haven/5235/ +WWW: http://gqview.netpedia.net/mpeg-over.html -Vanilla vanilla@FreeBSD.ORG -Chris >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 May 13 17:30: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F3AC14E91 for ; Thu, 13 May 1999 17:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA75432; Thu, 13 May 1999 17:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 504A814FFB for ; Thu, 13 May 1999 17:25:26 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 89EF81473; Thu, 13 May 1999 17:25:17 -0700 (PDT) Message-Id: <19990514002517.89EF81473@norn.ca.eu.org> Date: Thu, 13 May 1999 17:25:17 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11703: Update: games/qstat Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11703 >Category: ports >Synopsis: Update: games/qstat >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 May 13 17:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD 4.0-CURRENT i386 >Description: update to 2.3d. >How-To-Repeat: >Fix: Index: qstat/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/games/qstat/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- Makefile 1999/05/09 16:48:14 1.3 +++ Makefile 1999/05/14 00:09:36 @@ -1,13 +1,13 @@ # New ports collection makefile for: qstat -# Version required: 2.3c +# Version required: 2.3d # Date created: 28 May 1998 # Whom: Daniel O'Connor # # $Id: Makefile,v 1.3 1999/05/09 16:48:14 steve Exp $ # -DISTNAME= qstat23c -PKGNAME= qstat-2.3c +DISTNAME= qstat23d +PKGNAME= qstat-2.3d CATEGORIES= misc MASTER_SITES= ftp://ftp.activesw.com/pub/quake/ Index: qstat/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/games/qstat/files/md5,v retrieving revision 1.3 diff -u -r1.3 md5 --- md5 1999/05/09 16:48:24 1.3 +++ md5 1999/05/14 00:11:25 @@ -1 +1 @@ -MD5 (qstat23c.tar.gz) = 9f178469c6245c693cdf319c0dabc817 +MD5 (qstat23d.tar.gz) = 0a3894734ea626d0dd48ccaf3f7d36da -Chris >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 May 13 21: 2:32 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D146314E0B; Thu, 13 May 1999 21:02:31 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA89083; Thu, 13 May 1999 21:02:31 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Thu, 13 May 1999 21:02:31 -0700 (PDT) From: Message-Id: <199905140402.VAA89083@freefall.freebsd.org> To: mharo@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/11700: DDD port seems broken Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: DDD port seems broken Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: mharo Responsible-Changed-When: Thu May 13 21:01:37 PDT 1999 Responsible-Changed-Why: Over to maintainer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 13 23:42:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mail.warmmail.com (laura.holler.net [165.90.45.10]) by hub.freebsd.org (Postfix) with ESMTP id D15D114BF7 for ; Thu, 13 May 1999 23:42:07 -0700 (PDT) (envelope-from cbaker9552@yahoo.com) Received: by mail.warmmail.com from localhost (router,SLMail V3.2); Thu, 13 May 1999 21:06:10 -0700 Received: from pcm123072 [216.41.16.6] by mail.warmmail.com [165.90.44.249] (SLmail 3.2.3113) with SMTP id 28B9E21709A511D3918400600859F767 for ; Thu, 13 May 1999 21:06:09 -0700 To: ports@freebsd.org From: cbaker9552@yahoo.com Subject: Small Diameter Silicon, GaAs, Germanium, GaN, InP and other Wafers... Message-Id: Content-Type: TEXT/PLAIN charset=US-ASCII content-length: 548 Date: Thu, 13 May 1999 21:06:10 -0700 X-SLUIDL: FFB1022A-099D11D3-91840060-0859F767 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Visit http://www.open-24-7.com for your free price quote! Or call us at 800-713-9375 We manufacture small diameter Silicon, Germanium, GaAs wafers( 50 MM - 125 MM) single and double side polished with TTV < 1 micron and orientation (100) and (110) for micromachining and sensor applications. 1 week delivery on standard research and development specifications. GaAs Reclaim. Get on the mailing list for GaN wafers, COMING SOON!!! Thank you! To remove yourself from our mailing list, simply type remove in the subject field! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 13 23:48:37 1999 Delivered-To: freebsd-ports@freebsd.org Received: from cs.rpi.edu (mumble.cs.rpi.edu [128.213.8.16]) by hub.freebsd.org (Postfix) with ESMTP id 842FA15279 for ; Thu, 13 May 1999 23:48:34 -0700 (PDT) (envelope-from crossd@cs.rpi.edu) Received: from cs.rpi.edu (loot.cs.rpi.edu [128.213.16.22]) by cs.rpi.edu (8.9.3/8.9.3) with ESMTP id CAA17834; Fri, 14 May 1999 02:48:33 -0400 (EDT) Message-Id: <199905140648.CAA17834@cs.rpi.edu> To: ports@freebsd.org Cc: crossd@cs.rpi.edu Subject: gnome-libs-1.0.9: gnome-pty-helper not installed by default Date: Fri, 14 May 1999 02:47:58 -0400 From: "David E. Cross" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The "gnome-terminal" needs the program "gnome-pty-helper" to be installed in /usr/X11R6/sbin/gnome-pty-helper in order to function correctly. This is not installed anywhere (as of a version CVS-ed late last night/early today). The program is found in the 'zvt' subdirectory of the gnome-libs dist. I compiled it by hand with a 'make gnome-pty-helper', and then cp-ed it into place; it seems to be working 100% (ie, no system conflicts as far as I can tell) -- David Cross | email: crossd@cs.rpi.edu Systems Administrator/Research Programmer | Web: http://www.cs.rpi.edu/~crossd Rensselaer Polytechnic Institute, | Ph: 518.276.2860 Department of Computer Science | Fax: 518.276.4033 I speak only for myself. | WinNT:Linux::Linux:FreeBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 14 4:50: 1 1999 Delivered-To: freebsd-ports@freebsd.org Received: from bih.net.ba (ns2.bih.net.ba [195.222.32.20]) by hub.freebsd.org (Postfix) with SMTP id 4235E14E0C for ; Fri, 14 May 1999 04:49:50 -0700 (PDT) (envelope-from remove@hitsubmitter.com) Received: from Riad by bih.net.ba (SMI-8.6/SMI-SVR4) id NAA23314; Fri, 14 May 1999 13:48:46 -0100 Date: Fri, 14 May 1999 13:48:46 -0100 Message-Id: <199905141448.NAA23314@bih.net.ba> From: "D.Reynolds" To: Reply-To: remove@hitsubmitter.com Subject: "FREE DOWNLOAD" Register Your Web Site On Over 900+ Search Engines "INSTANTLY" Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a responsible email being sent by K.M.A 4401 Vineland= Road, Orlando Fl 32811 Tel. (407)422-6784. Email remove@hitsubmitter.com. The above= statement complies with section 301 requirements relating to= transmissions of unsolicited commercial electronic mail. To= remove your name from our mailing list immediately, please refer= to the statement at the bottom of this message. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D "FREE DOWNLOAD".Register Your Web Site To Over 900+ Search= Engines =09=09=09=09"Instantly". Latest Version 5.00 Just released Today! I would like to inform you about a new, and exciting award= winning product that will save you both countless hours, and increase your exposure on the Internet immeasurably! Known as the Submission Wizard our program offers web users such as yourself, the ability to automatically submit your site to over 900+ search engines in just one session . Select from different categories, even countries, the choice is yours. The submission process is very simple, efficient, and most importantly fast. All you do is provide standard site information i.e. site name, address, description, and a few well chosen keywords. The Submission Wizard takes this information, and changes it into the format required by each different engine, then registers your web site. It's that simple! In addition, the Wizard's database of search engines and directories is constantly being updated every week, thus giving your site fresh and relevant exposure. Also the Wizard allows you to register multiple URL's. Just imagine the possibilities! Take charge of your web exposure, try out the Submission Wizard demo FREE by following the provided hyperlink. We know you'll be as excited about it as much as we are! For your "FREE DOWNLOAD" visit our site at www.hitsubmitter.com =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D PROMOTEONE... GET TO #1 ON THE SEARCH ENGINES NEW PUBLICATION. One of the most asked questions that we get asked is "How do I get my site listed to the top of the search engines?" Like Yahoo, Excite, Infoseek, Webcrawler, HotBot, Lycos, & AltaVista, Here is the answer. Now available "The Step by Step Guide to Successfully Promoting a Web Site" which has been designed to teach you everything you need to know about each of the major search engines before you request search engines to add your web site to their database. By combining the information you learn from "The Guide" and by using the incredible power and flexibility of Submission Wizard to actually list your web site, you are well on your way to making the investment of having a web presence start paying off. What most people don't realize when they try to list their web site with search engines is that each one has it's own way of doing things. Depending on what you know ahead of time could make the difference between finding your site or not. For more information on this book please visit www.hitsubmitter.com and click on the like marked "How To Get To The Top Of The Search Engines" from our menu. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Thank you for your time, and good luck with your web promotion. D.Reynolds Customer Services. We are currently consolidating our many mailing lists and need to update our databases. Our records indicate that you may have inquired in the past. If this is not the case, please reply with "REMOVE" in the subject field to never receive email offers from this vendor. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 14 6:45:40 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B62215054; Fri, 14 May 1999 06:45:39 -0700 (PDT) (envelope-from foxfair@FreeBSD.org) Received: (from foxfair@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA35303; Fri, 14 May 1999 06:45:39 -0700 (PDT) (envelope-from foxfair@FreeBSD.org) Date: Fri, 14 May 1999 06:45:39 -0700 (PDT) From: Message-Id: <199905141345.GAA35303@freefall.freebsd.org> To: foxfair@FreeBSD.org, freebsd-ports@FreeBSD.org, foxfair@FreeBSD.org Subject: Re: ports/11698: Update ports/chinese/aterm from 0.3.5 to 0.3.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update ports/chinese/aterm from 0.3.5 to 0.3.6 Responsible-Changed-From-To: freebsd-ports->foxfair Responsible-Changed-By: foxfair Responsible-Changed-When: Fri May 14 06:42:21 PDT 1999 Responsible-Changed-Why: I'll look at it after the ports tree is unfrozen. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 14 7:10: 0 1999 Delivered-To: freebsd-ports@freebsd.org Received: from crash.lovett.com (crash.lovett.com [38.155.241.4]) by hub.freebsd.org (Postfix) with ESMTP id E344F14C2F for ; Fri, 14 May 1999 07:09:54 -0700 (PDT) (envelope-from ade@lovett.com) Received: from ade by crash.lovett.com with local (Exim 2.12 #1) id 10iIaF-000GRa-00; Fri, 14 May 1999 09:05:03 -0500 Date: Fri, 14 May 1999 09:05:03 -0500 From: Ade Lovett To: John-David Childs Cc: freebsd-ports@freebsd.org Subject: Re: compiling gnumeric 0.24/0.25 Message-ID: <19990514090503.L60934@remarq.com> References: <19990513124439.00296@denver.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <19990513124439.00296@denver.net>; from John-David Childs on Thu, May 13, 1999 at 12:44:39PM -0600 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, May 13, 1999 at 12:44:39PM -0600, John-David Childs wrote: > > Compilation seems to fail at the exact same place in both 0.24 and 0.25: > Any advice/suggestions appreciated...I've given it a cursory glance and > the problem isn't obvious to me. Please CC me on any replies to the > list. Almost certainly you're being hit by weird interactions between different versions of the massive set of ports that make up gnome, in this case, ORBit is probably the culprit -- make sure you're using the 0.43 version -- when I went through and updated all the gnome stuff, I found that I had to upgrade them _all_ to the 'next' versions, since there were so many incompatibilities otherwise. Did I mention already that I hate libtool, too? :) -aDe -- Ade Lovett, Austin, TX. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 14 7:13:27 1999 Delivered-To: freebsd-ports@freebsd.org Received: from crash.lovett.com (crash.lovett.com [38.155.241.4]) by hub.freebsd.org (Postfix) with ESMTP id 59AE014DA5 for ; Fri, 14 May 1999 07:12:46 -0700 (PDT) (envelope-from ade@lovett.com) Received: from ade by crash.lovett.com with local (Exim 2.12 #1) id 10iIeU-000GS1-00; Fri, 14 May 1999 09:09:26 -0500 Date: Fri, 14 May 1999 09:09:26 -0500 From: Ade Lovett To: "Thomas T. Veldhouse" Cc: FreeBSD-Ports Subject: Re: Gnome on Current? Message-ID: <19990514090926.M60934@remarq.com> References: <00cc01be9c90$4912dff0$236319ac@w142844.carlson.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <00cc01be9c90$4912dff0$236319ac@w142844.carlson.com>; from Thomas T. Veldhouse on Wed, May 12, 1999 at 10:58:27AM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, May 12, 1999 at 10:58:27AM -0500, Thomas T. Veldhouse wrote: > > I am running current as of yesterday and I built the Gnome port as of > yesterdays CVSUP. My question is, has anybody had any luck starting Gnome > under a similar circumstance. I have the following .xinitrc > > [snip] Couple of points. gnome-session seems to be, ahem, flakey at best, even on it's "native" Linux platform. On both FreeBSD and Solaris 2.6 it's one of those "sometimes it works, sometimes it doesn't" things, with no apparent reason as to why. From what I can see, the session management isn't particularly good anyway, at the moment, so you might as well simply do a: panel exec window-manager-of-your-choice for now. Others using non-Linux platforms have also reported better success using windowmaker rather than enlightenment. -aDe -- Ade Lovett, Austin, TX. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 14 7:20: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mail.comm.hq.af.mil (mail.comm.hq.af.mil [134.205.80.6]) by hub.freebsd.org (Postfix) with SMTP id 2B3BD14C2D for ; Fri, 14 May 1999 07:19:30 -0700 (PDT) (envelope-from bsletten@nova.org) Received: from nova.org (sam-gatt0011.comm.hq.af.mil [134.205.87.92]) by mail.comm.hq.af.mil (8.6.5/8.6.5) with ESMTP id IAA02081; Fri, 14 May 1999 08:48:19 -0400 Message-ID: <373C3165.1D7FB92D@nova.org> Date: Fri, 14 May 1999 10:21:25 -0400 From: Brian Sletten X-Mailer: Mozilla 4.51 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: Ade Lovett Cc: John-David Childs , freebsd-ports@FreeBSD.ORG Subject: Re: compiling gnumeric 0.24/0.25 References: <19990513124439.00296@denver.net> <19990514090503.L60934@remarq.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Almost certainly you're being hit by weird interactions between > different versions of the massive set of ports that make up gnome, I just went through this too. I was incrementally updating each port to the latest veresion. I had forgotten to remove the earlier ports and there seemed to be some include file conflicts with ORBit. I cleaned everything, started over, and now GNOME is running well (except for Gnome Terminal which I read the fix for this morning). I don't see the monitor applets anymore. Did those go away? I did build libgtop and gtop. I may have missed a step. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 14 7:36:55 1999 Delivered-To: freebsd-ports@freebsd.org Received: from crash.lovett.com (crash.lovett.com [38.155.241.4]) by hub.freebsd.org (Postfix) with ESMTP id 625B114E66 for ; Fri, 14 May 1999 07:36:52 -0700 (PDT) (envelope-from ade@lovett.com) Received: from ade by crash.lovett.com with local (Exim 2.12 #1) id 10iJ29-000GTp-00; Fri, 14 May 1999 09:33:53 -0500 Date: Fri, 14 May 1999 09:33:53 -0500 From: Ade Lovett To: Brian Sletten Cc: freebsd-ports@FreeBSD.ORG Subject: Re: compiling gnumeric 0.24/0.25 Message-ID: <19990514093353.N60934@remarq.com> References: <19990513124439.00296@denver.net> <19990514090503.L60934@remarq.com> <373C3165.1D7FB92D@nova.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <373C3165.1D7FB92D@nova.org>; from Brian Sletten on Fri, May 14, 1999 at 10:21:25AM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, May 14, 1999 at 10:21:25AM -0400, Brian Sletten wrote: > > I just went through this too. I was incrementally updating each port to > the latest veresion. I had forgotten to remove the earlier ports and > there seemed to be some include file conflicts with ORBit. I cleaned > everything, started over, and now GNOME is running well (except for > Gnome Terminal which I read the fix for this morning). Yup. Gnome is definitely one of those things that are best handled by "Oh. One part got upgraded. Nuke everything and rebuild from scratch." > I don't see the monitor applets anymore. Did those go away? I did build > libgtop and gtop. I may have missed a step. Hmm.. /usr/X11R6/share/gnome/applets/Monitors contains a whole bunch of stuff on my install from the gnomecore-1.0.5 port. -aDe -- Ade Lovett, Austin, TX. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 14 11: 7:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from milehigh.denver.net (milehigh.denver.net [204.144.180.2]) by hub.freebsd.org (Postfix) with ESMTP id B9F7915274 for ; Fri, 14 May 1999 11:07:18 -0700 (PDT) (envelope-from jdc@milehigh.denver.net) Received: (from jdc@localhost) by milehigh.denver.net (8.8.8/8.8.8) id MAA04129; Fri, 14 May 1999 12:07:22 -0600 (MDT) Message-ID: <19990514120722.53646@denver.net> Date: Fri, 14 May 1999 12:07:22 -0600 From: John-David Childs To: freebsd-ports@freebsd.org Subject: Re: compiling gnumeric 0.24/0.25 References: <19990513124439.00296@denver.net> <19990514090503.L60934@remarq.com> <373C3165.1D7FB92D@nova.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.79 In-Reply-To: <373C3165.1D7FB92D@nova.org>; from Brian Sletten on Fri, May 14, 1999 at 10:21:25AM -0400 Organization: Enterprise Internet Solutions Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Friday May 14, 1999, Brian Sletten had this to say about "Re: compiling gnumeric 0.24/0.25": > > Almost certainly you're being hit by weird interactions between > > different versions of the massive set of ports that make up gnome, > I just went through this too. I was incrementally updating each port to > the latest veresion. Yep...I just pkg_delete(d) gnomecore and gnome-libs and reinstalled the latest versions in order to get gnumeric to compile (although there were lots of warnings about uninitialized functions). ORBit was already at the most recent version. Thanks for the assistance. What a (&^@#(& that GNOME port is, huh? :) -- John-David Childs (JC612) Enterprise Internet Solutions Systems Administration http://www.nterprise.net & Network Engineering 8707 E. Florida Ave #814 Denver, CO 80231 ADA, n.: Something you need only know the name of to be an Expert in Computing. Useful in sentences like, "We had better develop an ADA awareness." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 14 13:50: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D949814FD8 for ; Fri, 14 May 1999 13:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA28471; Fri, 14 May 1999 13:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from inga.augusta.de (inga.augusta.de [193.175.23.65]) by hub.freebsd.org (Postfix) with ESMTP id 2DEA81551C for ; Fri, 14 May 1999 13:49:08 -0700 (PDT) (envelope-from shanee@rabbit.augusta.de) Received: from rabbit.UUCP (uucp@localhost) by inga.augusta.de (8.8.8/8.8.7) with UUCP id WAA27006 for freebsd.org!FreeBSD-gnats-submit; Fri, 14 May 1999 22:49:08 +0200 (MET DST) Received: from localhost (8343 bytes) by rabbit.augusta.de via sendmail with P:stdio/R:smart_host/T:uux (sender: ) (ident using unix) id for ; Fri, 14 May 1999 22:45:13 +0200 (CEST) (Smail-3.2.0.101 1997-Dec-17 #1 built CET-2-Jan) Message-Id: Date: Fri, 14 May 1999 22:45:13 +0200 (CEST) From: shanee@augusta.de Reply-To: shanee@augusta.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11712: New Port: Rosegarden + tclMidi Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11712 >Category: ports >Synopsis: Rosegarden Port is out to date >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 May 14 13:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Andreas Kohout >Release: FreeBSD 3.2-RELEASE i386 >Organization: Private Site >Environment: Ports-current >Description: Rosegarden Port is out to date >How-To-Repeat: :-) >Fix: Take a look at the attachement. Rosegarden needs tclMidi, whitch is attached, too. But Rosegarden can´t find tclMidi?! Maybe someone ma take a look at my ports ... begin 644 rosegarden+tclmidi.tgz M'XL(`'B(/#<``^T]^W?:1K/]%?T5$^S3V,$2B*=-K_N98)QP:V,?($UZVQX^ M65I`-4A4$GXT3?_V.[-Z(H2Q6YLTK28G6.S.OF9W=F=F9X2C3J:ZIN>_>D:` MKY3+.?K%&\U^K5M+YWP1$Y__B MM-WK/T,;?_0J%2Q(1BM5+X"@K/T)GYVU.D^_`ZSC_ZHL1_;_*J*5L$#*_YN` M3-]=`*#;,%&,T5P9,="8K8\,IL'0M$"UF.+HQ@@40P.FZ?P9B69HBJ4)F;/V M<1N&^H39$L![W1F#,V8PL\P9L["B:UUEH!L.LX8*/3EPHT\FH$QL$_A^DJ%J M<3\Q+0T6ZNKI!A9PPNXI80?M^6QF6M03(3.<&ZJCFP;@]C6Q]ZBNN653`M6L MF@9UV304RKLSYXAFP-QFU$V;87$_[+I9C\5ZP6T_-_(_#7V#_* ML>E9_B7"DOPOF1/MB=M8P_]RJ2;'^+]4KM12_M\$/*>\/U6PJ&+(;DV2+(U^ MBZ1AG;$DKW`"&9#T3'`W\H&4O)[-IP$I*'%F,)R2.6A#RRV"PA M>:I<)=4Q9=8H(9F3(B%YGM0B[KU:8K*:F'J3D&K/)DDUVXZ9-)8;14_")ODG M(?F:67;2R,WK)(*HYBQIY!J;)*0ZEGJ5B'R=A(S$3IIOYO`D11 MA#,\P$B&EW1#0NUTE#E#Y;EC7@,<@+Q?+Q3J.$'RP<&^D,OEHM@+B+5ZN5:7 M91?QZ`A$6=ZK08Y_'AT)(,`6D+;,CR_'1-48CVI'T0U2*,AF@*H([="6@EF* MI8[Q>.&J!2@S,B=8NN(PJH2T$F>,"@L=/Z3GFT/H7]4%L=\\';QN=P;'[2X< MPE'DZY&06\P,+9YY[U#8EPJ\C^)?!'^8)+584X5;)B[9Q+PA%6MJXJFDHV9U MR0T#1(&A/II;S+,H`*XR@Q.O5"'B\4\BWO<7C?Y;&I1MJ4A`3L[FR6GC38\2 MW:M_O-MZV$;-C^V'M[VGX]<),_P4]"[G$%Q/;V1R+G MFU:GU6TWB:14"V=FL>W9?,0VF4(<&Q^L2_S@&PO^M:=#^C1QTL6V1./`JLY. MVJ>\:=J.FE--,OG3.T>?>(\MDM_KJ!;#Z9U&%[YZ)[_K\#&DZG<=;:Q81>L]N^Z/=V!S]^[DI/WATTOXG;-*[^V`UAA2*Z-J@#+4 M-UCHK/$==L>9;H#_A/Q7*J3W_QN!Q?F?:L]!\W7V7ZC% MY;]BK9+>_VP$SHXKL.,M`K$DR1)2`S7F73R+U8/BOJ942ZPR'%8.AF564@OX M[Z!ZH%:8AD+>Y^Y["G\=?/[WI?KG:&.=_EN6>S7.>J`&J\7:,\I8.XQ:G?N99.? MP^\&RJAOWI%.>8`X[\?F-,SSP9VY(V4^HKF4-"9L"<)QN]^V6STW5YEKNBF<-7K]5G?0:_?=]"$?''Y*]/`K;F4Q82K4E:SZ7C`DO1A=EB:CVW+!UATG3X5!2 ML25)_2U_-I\X^AG3="7?H+[%2O/!<8W)&]WV1W^XG[S]6\#AM#M]_-_J'JZ@ MDD!:P''KHM4Y[OWG,$,Z<&'[(R:V/O0_27)]^^/%>;??(^TN3W>#7$LN"`)F M=QO-_N"\<_K#87+KOHK3;W3?M/J'@09QUNC(AYF,=Q\`[AT`!'9_\&S]$-KW MJ4B'B@2F?0C-^1":\"$PVT-HJH?0/`^A21Y",SP$IG<(S>T0F-@A,*M#:$J' MT'P.HQRMEZZ!>"*O=6;:CNCKU%@IUTFSV>"I?49+I]'IU\.TCGG#_2_L ML3F?:*!H6H(5ABNMCDF(5E@4QXO+DIM`F'&M6Z8Q988#UXJE*Y<3]B*;T(43 MX5TER@FI. M/:O(K2SGIUP:BXEXPXEBCPT4.K!A%`8MR[3R^V$52\4#T:GW[N3#84:T\913 MF9TDLR50*BJO<7'-];2H;^_X?=H'G> M.6F_>=?%&;ACMO"NUQHTWO7/*9FG@!!@#%"BP]9%T34Y'Y)AN772_K`;D1SH M'%PMD^0CE7%I!H?5.\R*IRAO\JH^T1&;Y9)+1,38(=K#@O3R#4CY$(GR=[_0 M4_CS080WGBT$Z*'VWUJA4I)E'O]1KJ3VWXU`;/Z?)01@K?VW4HK-?ZE2JJ;G M_R:`KJJ[P1J`%FJ>J#B1KV_/=8%G%MAS.B?3+?2?"#'^?Y80@'7\7Y$K9V21(`_%A3L$624%.]@FR"^'B]X? M*++'(?<7>P^XZ<6>,54?ZJH?N,-Q3["IU[WC/>&4!&:X:-KNOO.F#>UN^P/< MF-:5[;9J2X+08SQF)[I;O6>70*9HBJSQC-$W-S?2I>*,)465YE?Y/Z:*_:>Q,)P*U/#6M!0>=/>`C,HV[J3FWR?)+-BB2\#%_;$"[[('3+&_\\2`KQ._R\7RI[^7RT7Z!GYOYJ>_QN!>/QOU)G_@J%> MQ0-W`Z0/LMRM\IB`B$V`RD36$>6ZNT123K!?Q#,]8VU^-%%^FQOFM41Y<23[ MSD`=TW=6M1U-LB_OQ]&L^=1.P!JSR8Q_IP=I;-S>C\"C(F(8,Z*/1R4_$"(Y MVQ6KUB"=T1W(2I2ED(L(!CUR+'&H3QQFV?FQ8DU-0_^-)3:ZC(_4PK]&@(SS MG%=F,U%C0V4^<>Q\N.M&G>F7IV]%+M%P118NBA4YO(LK\I:&L`)O83$DXWR) MV_:30814S^8"]CC]G]M_\1A(]?]-P-+\/X,+V-KXWT(MF/]2M<#M_]54_M\( M6N6`+G9K/!Y,6L0]L73WXK=, MN,6#>K'H7@)39$YYKPJY\A[FN6$YC:9W]SAXVVH!=SKT!^71%PU/.2?^%4DBKUM-;_S M"49.[?#@H#W@WE^[+K56(^Q+V*8[(WY+H@'9;8Z3]7)X2Y#9Z9W-7[K;/!2;?5>MT[SA(IV*UC M*0-4@ZF-R11)9*I93-^"TV-O>8NG+A_HE^`]S>?0\SD.G*9A]6`*S%S MT>HW3@>GQX<3+?CFN>WM_]797?_ ME^5T_]\$W+__1_(52O519/@@22\9.A()7TCT1BGL5 MR-''ZA-A8>=P5RT_:"46"J$_"WO M%4F@V2N6.(=OO7#=`<9DU7C=[L3BV.A66#QMOXXEH^XHY*+8KDI)V+DH=J!I M"KG&Q44L;>EVF[K@C>$P:X]Q4-XWT1[CAH&90_@17I!0(^47G1_@YV\"PXF[ M4?Q@SE]:WBN*;::1)]'E7)]H].[CH6[9CB1)68Y^BRFR(`YU(>>WSCM*+?@1 MD[@34K7N9]3W"2<)+A5;5WTCA_<*(0]?=%\3TZ(W+T=>N>2^.XFAF*D;$!D% MNV7JW*%@.OCQY;9+X)<_OQ1$"HD$@]WP^>!D<++;[O+,2Y'Z# MHUW5#:2)]_(GWIM(1\A:$.)A7]Q97>@+36NT+V106.R+MQ2"W+`O7H_ZR.U7 MMI>4VX*GH196%*47?GT\Q59VYD_1+-(CS@P+/7H@W;P>!3WS:.O MJ-=VU+T"7--O=:]8@%RY2']H`]CVURTI%%.@$X),R=.IF>"<`[`=-N)ZDT"T M"FTAWW4<$5W#W#"020(U[NNO(T7]IF,XR_7E_E)]R8&E^44Z2'&?HH1N)!:X M1\E\5!6AWY?OC9147!!W>"1./`>^@7O5YU<+LA+L"KE'U?,J+FK![GVK8-E% M*''OCT_:^4E"7[_W3T)"@!;Y&8+-G/"M>NB1?9] M7&O3Z^7D>(+4:WS?.A;$!"Z+EZ)+C:`Y/"T36HNEQKY[;>76M(6%:+KXI'UN ML2<%#U;+_T\7![Q._R]7Y4#_KU7D5/_?(-RO_VOSZ8RV-?ZB3ZX#D$!?1S6@ MLK^L\P?8,3T?-89:5`^HDAI0C6D!XA87:PQVZZ!`8]!]',V,8\/;_X9.UL9;_*_[[GRIRH59U^3^]_]D(W,__GG4_P>0G+[._CQSC_DJ] M4HA:^6IDY7,O-;:"6&W;T713&G\;35.=NQF+I=F.A>Q,B6*8R'T@OL4]()I" MD>9>!KW6U[U2A\[KP=GY<:L'M86T_GFG<=KNMS%#KD'^%1C*E-E[H*C.'`6: M.WB5_ZK^7_T9&VLC_\+^5\NECC_%U+[WT;@?OY?U(T"/[`B;@/%NKR? M>`4<*[,D"[BO"/=E`6X2K,4M@EMPPC6F#K)A'=[Z-?X]A(0MZ%OZM8YJ:CC4 M+U:E6]^[]*RO^;@#7W?Z%E(X'Y$U2`:($ESB]5'\OY M;3(H&`Z]^9\\.JGJO\L>X'7'M;[S+IH6[%PSZPY0#[K<)9PS,M9B]G!(%Y#\ M=Q'=4GM_F]UB-?_K3];&.O]O_L[7!?__2J&4_O[?1F`5_X>&NSCC5^OE!>$_ M@AGE^(-Z91^10X[?WY,KD..?[@W_BQ''$=+!['&;@7WEP\#DZ-5T%4#[DCW-Y\0*ARM@XSJ)],+8BNWJM4U M)<8W+]=U;,VG%X^K*XB#SMU+WO"2-)F\N37D75D^)&_N'O(F%D\@;VXM>1-K M2B3OO$3DJC%XMP`2P!]Y:>ER(/+#N)<,;$8_@<.T&#]X MN,=^[??-__+U0VY]38E#3;K(X*/D/\/C'6W>97IDY'/;^PU1_B9!#25F+6SI=E0FA M,FN!.+0&;^FMO^[/L*PK%/@51`IYG>0OA/5^Y8;JIC>(N#G4[?->+QB&ZW(T MN8,\HH<OX&=.>E_3F%@=7G_R]/UL9Z_3^P_Z/Z7W;U_S3^=R/P M`/^_A=\'2#`%)M@`$LK%M(%RO5A]E.]?\':,AWC^!9?7#_/[\]$?Y/6WA/S% K^?RED$(**:200@HII)!""BFDD$(**:200@HII)!""O]L^'_MZ^6%`*```/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 Fri May 14 16:30: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E1ABD15131 for ; Fri, 14 May 1999 16:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA36862; Fri, 14 May 1999 16:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from whizkidtech.net (r32.bfm.org [208.18.213.128]) by hub.freebsd.org (Postfix) with ESMTP id 66FCC14FFF for ; Fri, 14 May 1999 16:29:53 -0700 (PDT) (envelope-from root@whizkidtech.net) Received: (from root@localhost) by whizkidtech.net (8.9.2/8.9.2) id SAA16205; Fri, 14 May 1999 18:29:55 -0500 (CDT) (envelope-from root) Message-Id: <199905142329.SAA16205@whizkidtech.net> Date: Fri, 14 May 1999 18:29:55 -0500 (CDT) From: adam@whizkidtech.net Reply-To: adam@whizkidtech.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11714: New port: cls-1.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11714 >Category: ports >Synopsis: New port: cls-1.0 (safe version of clear) >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 May 14 16:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: G. Adam Stanislav >Release: FreeBSD 3.1-RELEASE i386 >Organization: Whiz Kid Technomagic >Environment: >Description: This port resulted from a discussion in freebsd-newbies pertaining to the fact that the `clear' command clears the screen but leaves the scrollback video buffer untouched. `cls' works just like `clear' but it first overwrites the scrollback video buffer with 100 blank lines. This number may be modified as needed (`cls' is a shell script). >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: # # cls # cls/Makefile # cls/files # cls/files/md5 # cls/pkg # cls/pkg/PLIST # cls/pkg/DESCR # cls/pkg/COMMENT # echo c - cls mkdir -p cls > /dev/null 2>&1 echo x - cls/Makefile sed 's/^X//' >cls/Makefile << 'END-of-cls/Makefile' X# New ports collection makefile for: cls X# Version required: 1.0 X# Date created: 14 May 1999 X# Whom: G. Adam Stanislav X# X# $Id$ X# X XDISTNAME= cls-1.0 XCATEGORIES= deskutils XMASTER_SITES= http://www.whizkidtech.net/fports/ X XMAINTAINER= adam@whizkidtech.net X XMAN1= blanks.1 cls.1 X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/blanks ${PREFIX}/bin X ${INSTALL_SCRIPT} ${WRKSRC}/cls ${PREFIX}/bin X $(INSTALL_MAN) ${WRKSRC}/blanks.1 ${PREFIX}/man/man1 X ${INSTALL_MAN} ${WRKSRC}/cls.1 ${PREFIX}/man/man1 X X.include END-of-cls/Makefile echo c - cls/files mkdir -p cls/files > /dev/null 2>&1 echo x - cls/files/md5 sed 's/^X//' >cls/files/md5 << 'END-of-cls/files/md5' XMD5 (cls-1.0.tar.gz) = a15b1f7a0cba22cbf9df9ccb7798b6de END-of-cls/files/md5 echo c - cls/pkg mkdir -p cls/pkg > /dev/null 2>&1 echo x - cls/pkg/PLIST sed 's/^X//' >cls/pkg/PLIST << 'END-of-cls/pkg/PLIST' Xbin/blanks Xbin/cls END-of-cls/pkg/PLIST echo x - cls/pkg/DESCR sed 's/^X//' >cls/pkg/DESCR << 'END-of-cls/pkg/DESCR' XThis package contains the `blanks' command which simply prints any number of Xblank lines to stdout. X XIt also contains the `cls' command which clears both the screen and the scroll Xback video buffer. X XIt is a result of a discussion in freebsd-newbies on how to clear the contents Xof your work area from prying eyes. It allows you to wipe it all out by using Xthis command sequence to log out: X X cls;logout X XThis software must NOT be used by any of the following: X X a. Military forces of any country; X b. Manufacturers, distributors, and resellers of weapons; X c. Anyone dealing with mind altering drugs of any kind, X except for strictly medicinal purposes. X XPlease respect. X XG. Adam Stanislav END-of-cls/pkg/DESCR echo x - cls/pkg/COMMENT sed 's/^X//' >cls/pkg/COMMENT << 'END-of-cls/pkg/COMMENT' XSafe clear screen - also wipes scrollback video buffer. END-of-cls/pkg/COMMENT 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 May 14 16:50: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F18514F76 for ; Fri, 14 May 1999 16:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA37441; Fri, 14 May 1999 16:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 0F7A314BE5 for ; Fri, 14 May 1999 16:46:42 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 7E9071489; Fri, 14 May 1999 16:46:33 -0700 (PDT) Message-Id: <19990514234633.7E9071489@norn.ca.eu.org> Date: Fri, 14 May 1999 16:46:33 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11715: Update: x11/aterm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11715 >Category: ports >Synopsis: Update: x11/aterm >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 May 14 16:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: 4.0-CURRENT. >Description: Update to 0.3.6; add master site that was removed last upgrade -- it's just slow(er) to get new versions. >How-To-Repeat: >Fix: Index: aterm/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/x11/aterm/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 1999/05/09 16:19:47 1.4 +++ Makefile 1999/05/14 23:35:36 @@ -1,14 +1,15 @@ # New ports collection makefile for: aterm -# Version required: 0.3.5 +# Version required: 0.3.6 # Date created: 17 January 1999 # Whom: Jim Mock # # $Id: Makefile,v 1.4 1999/05/09 16:19:47 steve Exp $ # -DISTNAME= aterm-0.3.5 +DISTNAME= aterm-0.3.6 CATEGORIES= x11 -MASTER_SITES= http://members.xoom.com/sashav/aterm/ +MASTER_SITES= http://members.xoom.com/sashav/aterm/ \ + http://www.tigr.net/afterstep/as-apps/download/aterm/ MAINTAINER= jim@phrantic.phear.net Index: aterm/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/x11/aterm/files/md5,v retrieving revision 1.6 diff -u -r1.6 md5 --- md5 1999/05/09 16:19:57 1.6 +++ md5 1999/05/14 23:35:44 @@ -1 +1 @@ -MD5 (aterm-0.3.5.tar.gz) = b4d67110343d2d56c3ea21c8b44aca4a +MD5 (aterm-0.3.6.tar.gz) = dba960c51e40c64a84ad61dda42e75f0 -Chris >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 May 14 19:40:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 002A414E1B for ; Fri, 14 May 1999 19:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA57625; Fri, 14 May 1999 19:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from news-ma.rhein-neckar.de (news-ma.rhein-neckar.de [193.197.90.3]) by hub.freebsd.org (Postfix) with ESMTP id 3EA1B14C9D for ; Fri, 14 May 1999 19:37:12 -0700 (PDT) (envelope-from naddy@bigeye.rhein-neckar.de) Received: from mips.rhein-neckar.de (uucp@localhost) by news-ma.rhein-neckar.de (8.8.8/8.8.8) with bsmtp id EAA11954 for FreeBSD-gnats-submit@freebsd.org; Sat, 15 May 1999 04:37:12 +0200 (CEST) (envelope-from naddy@bigeye.rhein-neckar.de) Received: from bigeye.rhein-neckar.de ([193.197.90.235]) by mips.rhein-neckar.de with esmtp id m10iTOU-000WyUC (Debian Smail-3.2.0.101 1997-Dec-17 #2); Sat, 15 May 1999 03:37:38 +0200 (CEST) Received: (from naddy@localhost) by bigeye.rhein-neckar.de (8.9.3/8.9.3) id DAA23485; Sat, 15 May 1999 03:36:56 +0200 (CEST) (envelope-from naddy) Message-Id: <199905150136.DAA23485@bigeye.rhein-neckar.de> Date: Sat, 15 May 1999 03:36:56 +0200 (CEST) From: Christian Weisgerber Reply-To: naddy@mips.rhein-neckar.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11718: New port: sdd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11718 >Category: ports >Synopsis: New port: sdd >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 May 14 19:40:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Christian Weisgerber >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: >Description: sdd: Joerg Schilling's enhanced dd(1), a companion program to sysutils/star. >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: # # sdd # sdd/files # sdd/files/md5 # sdd/pkg # sdd/pkg/COMMENT # sdd/pkg/DESCR # sdd/pkg/PLIST # sdd/Makefile # sdd/patches # sdd/patches/patch-aa # sdd/patches/patch-ab # echo c - sdd mkdir -p sdd > /dev/null 2>&1 echo c - sdd/files mkdir -p sdd/files > /dev/null 2>&1 echo x - sdd/files/md5 sed 's/^X//' >sdd/files/md5 << 'END-of-sdd/files/md5' XMD5 (sdd-1.22.tar.gz) = 2046babedb375af6bc4ce11ba2db8b0a END-of-sdd/files/md5 echo c - sdd/pkg mkdir -p sdd/pkg > /dev/null 2>&1 echo x - sdd/pkg/COMMENT sed 's/^X//' >sdd/pkg/COMMENT << 'END-of-sdd/pkg/COMMENT' XFaster and improved version of dd. END-of-sdd/pkg/COMMENT echo x - sdd/pkg/DESCR sed 's/^X//' >sdd/pkg/DESCR << 'END-of-sdd/pkg/DESCR' Xsdd is a replacement for dd(1). X X- Much faster than dd in cases where input block size (ibs) is not equal X to the output block size (obs). X- sdd does not share the design bugs of dd that cause fragments to be X read from a pipe and filled up to input block size. X- Statistics are much better readable as from 'dd'. X- Timing available, -time option will print transfer speed X- Timing & Statistics available at any time with SIGQUIT (^\) X- Can seek on input and output X- Fast null input X- Fast null output X- Reblocking on pipes does not fill small input blocks to X input block size X- Debug printing X- Progress printing X XAuthor: Joerg Schilling XPlease mail bugs and suggestions to him. END-of-sdd/pkg/DESCR echo x - sdd/pkg/PLIST sed 's/^X//' >sdd/pkg/PLIST << 'END-of-sdd/pkg/PLIST' Xbin/sdd END-of-sdd/pkg/PLIST echo x - sdd/Makefile sed 's/^X//' >sdd/Makefile << 'END-of-sdd/Makefile' X# New ports collection makefile for: sdd X# Version required: 1.22 X# Date created: 1999-05-05 X# Whom: Christian Weisgerber X# X# $Id$ X# X XDISTNAME= sdd-1.22 XCATEGORIES= sysutils XMASTER_SITES= ftp://ftp.fokus.gmd.de/pub/unix/sdd/ X XMAINTAINER= naddy@mips.rhein-neckar.de X XUSE_GMAKE= yes XMAKE_ENV= MAKEPROG=gmake CCOM=${CC} XMAN1= sdd.1 X X.include X X.if ${ARCH} != i386 || ${CC} != cc Xdo-configure: X @${CP} -f ${WRKSRC}/RULES/i386-freebsd-cc.rul \ X ${WRKSRC}/RULES/${ARCH}-freebsd-${CC}.rul X.endif X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/sdd/OBJ/${ARCH}-freebsd-${CC}/sdd \ X ${PREFIX}/bin X ${INSTALL_MAN} ${WRKSRC}/sdd/sdd.1 ${PREFIX}/man/man1 X X.include END-of-sdd/Makefile echo c - sdd/patches mkdir -p sdd/patches > /dev/null 2>&1 echo x - sdd/patches/patch-aa sed 's/^X//' >sdd/patches/patch-aa << 'END-of-sdd/patches/patch-aa' X--- RULES/i386-freebsd-cc.rul.orig Sun Apr 27 01:46:00 1997 X+++ RULES/i386-freebsd-cc.rul Thu May 6 02:12:08 1999 X@@ -24,7 +24,7 @@ X ########################################################################### X X CPPFLAGS= $(CPPOPTS) $(CPPOPTX) X-CFLAGS= $(COPTS) $(CWARNOPTS) $(COPTOPT) $(COPTX) X+CFLAGS+= $(COPTS) $(CWARNOPTS) $(COPTX) X X CPPOPTS= -I. -I$(ARCHDIR) -I$(OINCSDIR) $(INCDIRS:%=-I%) $(OSDEFS) X COPTS= X@@ -47,7 +47,7 @@ X X LIBS_PATH= -L$(OLIBSDIR) X X-LDFLAGS= $(LDOPTS) $(LDOPTX) X+LDFLAGS+= $(LDOPTS) $(LDOPTX) X LDLIBS= $(LIBS) $(LIBX) X X #LDOPTS= $(LIBS_PATH) $(LDPATH) $(RUNPATH) X@@ -57,14 +57,14 @@ X X FLOAT_OPTIONS= X X-CC= @echo " ==> COMPILING \"$@\""; gcc X-LDCC= @echo " ==> LINKING \"$@\""; gcc X-DYNLD= @echo " ==> LINKING dynamic library \"$@\""; gcc X+CC= @echo " ==> COMPILING \"$@\""; ${CCOM} X+LDCC= @echo " ==> LINKING \"$@\""; ${CCOM} X+DYNLD= @echo " ==> LINKING dynamic library \"$@\""; ${CCOM} X RANLIB= @echo " ==> RANDOMIZING ARCHIVE \"$@\""; ranlib X ARFLAGS= cr X LORDER= lorder X TSORT= tsort X X RMDEP= : X-MKDEP= @echo " ==> MAKE DEPENDENCIES \"$@\""; $(RMDEP); gcc -M X+MKDEP= @echo " ==> MAKE DEPENDENCIES \"$@\""; $(RMDEP); ${CCOM} -M X MKDEP_OUT= END-of-sdd/patches/patch-aa echo x - sdd/patches/patch-ab sed 's/^X//' >sdd/patches/patch-ab << 'END-of-sdd/patches/patch-ab' X--- sdd/sdd.c.orig Wed May 5 17:54:07 1999 X+++ sdd/sdd.c Wed May 5 17:56:34 1999 X@@ -1378,11 +1378,13 @@ X usage(ex) X int ex; X { X- error("\ X+ FILE *fp = ex ? stderr : stdout; X+ X+ fprintf(fp, "\ X Usage: sdd [option=value] [-flag]\n\ X Options:\n\ X "); X- error ("\ X+ fprintf(fp, "\ X if=name Read input from name instead of stdin\n\ X of=name Write output to name instead of stdout\n\ X -inull Do not read input from file (use null char's)\n\ X@@ -1396,7 +1398,7 @@ X seek=#,skip=# Seek/skip # bytes on input/output before starting\n\ X ivseek=#,ovseek=# Seek # bytes on input/output volumes before starting\n\ X "); X- error("\ X+ fprintf(fp, "\ X -notrunc Do not trunctate existing output file\n\ X -pg Print a dot on each write to indicate progress\n\ X -noerror Do not stop on error\n\ END-of-sdd/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 Fri May 14 19:40:14 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C66614DCE for ; Fri, 14 May 1999 19:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA57616; Fri, 14 May 1999 19:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from news-ma.rhein-neckar.de (news-ma.rhein-neckar.de [193.197.90.3]) by hub.freebsd.org (Postfix) with ESMTP id 46CFC14C9D for ; Fri, 14 May 1999 19:37:08 -0700 (PDT) (envelope-from naddy@bigeye.rhein-neckar.de) Received: from mips.rhein-neckar.de (uucp@localhost) by news-ma.rhein-neckar.de (8.8.8/8.8.8) with bsmtp id EAA11951 for FreeBSD-gnats-submit@freebsd.org; Sat, 15 May 1999 04:37:08 +0200 (CEST) (envelope-from naddy@bigeye.rhein-neckar.de) Received: from bigeye.rhein-neckar.de ([193.197.90.235]) by mips.rhein-neckar.de with esmtp id m10iTIK-000Wz6C (Debian Smail-3.2.0.101 1997-Dec-17 #2); Sat, 15 May 1999 03:31:16 +0200 (CEST) Received: (from naddy@localhost) by bigeye.rhein-neckar.de (8.9.3/8.9.3) id DAA20847; Sat, 15 May 1999 03:30:34 +0200 (CEST) (envelope-from naddy) Message-Id: <199905150130.DAA20847@bigeye.rhein-neckar.de> Date: Sat, 15 May 1999 03:30:34 +0200 (CEST) From: Christian Weisgerber Reply-To: naddy@mips.rhein-neckar.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11717: Update to sysutils/star Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11717 >Category: ports >Synopsis: Update to sysutils/star >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: Fri May 14 19:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Christian Weisgerber >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: >Description: The current sysutils/star port doesn't build on alpha and doesn't honor the build variables (CC, CFLAGS, LDFLAGS). I have provided an updated version which fixes these problems plus a few other rough edges. >How-To-Repeat: >Fix: diff -uNr /usr/ports/sysutils/star/Makefile star/Makefile --- /usr/ports/sysutils/star/Makefile Thu Dec 24 14:15:23 1998 +++ star/Makefile Sat May 15 03:06:18 1999 @@ -15,12 +15,20 @@ MAINTAINER= andreas@FreeBSD.ORG USE_GMAKE= yes -MAKE_ENV= MAKEPROG=gmake +MAKE_ENV= MAKEPROG=gmake CCOM=${CC} MAN1= star.1 +.include + +.if ${ARCH} != i386 || ${CC} != cc +do-configure: + @${CP} -f ${WRKSRC}/RULES/i386-freebsd-cc.rul \ + ${WRKSRC}/RULES/${ARCH}-freebsd-${CC}.rul +.endif + do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/star/OBJ/i386-freebsd-cc/star ${PREFIX}/bin - ${LN} -sf ${PREFIX}/bin/star ${PREFIX}/bin/ustar + ${INSTALL_PROGRAM} ${WRKSRC}/star/OBJ/${ARCH}-freebsd-${CC}/star \ + ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/star/star.1 ${PREFIX}/man/man1 -.include +.include diff -uNr /usr/ports/sysutils/star/patches/patch-aa star/patches/patch-aa --- /usr/ports/sysutils/star/patches/patch-aa Thu Jan 1 01:00:00 1970 +++ star/patches/patch-aa Thu May 6 02:50:59 1999 @@ -0,0 +1,39 @@ +--- RULES/i386-freebsd-cc.rul.orig Thu May 6 02:48:51 1999 ++++ RULES/i386-freebsd-cc.rul Thu May 6 02:50:11 1999 +@@ -24,7 +24,7 @@ + ########################################################################### + + CPPFLAGS= $(CPPOPTS) $(CPPOPTX) +-CFLAGS= $(COPTS) $(CWARNOPTS) $(COPTOPT) $(COPTX) ++CFLAGS+= $(COPTS) $(CWARNOPTS) $(COPTX) + + CPPOPTS= -I. -I$(ARCHDIR) -I$(OINCSDIR) $(INCDIRS:%=-I%) $(OSDEFS) + COPTS= +@@ -47,7 +47,7 @@ + + LIBS_PATH= -L$(OLIBSDIR) + +-LDFLAGS= $(LDOPTS) $(LDOPTX) ++LDFLAGS+= $(LDOPTS) $(LDOPTX) + LDLIBS= $(LIBS) $(LIBX) + + #LDOPTS= $(LIBS_PATH) $(LDPATH) $(RUNPATH) +@@ -57,14 +57,14 @@ + + FLOAT_OPTIONS= + +-CC= @echo " ==> COMPILING \"$@\""; gcc +-LDCC= @echo " ==> LINKING \"$@\""; gcc +-DYNLD= @echo " ==> LINKING dynamic library \"$@\""; gcc ++CC= @echo " ==> COMPILING \"$@\""; ${CCOM} ++LDCC= @echo " ==> LINKING \"$@\""; ${CCOM} ++DYNLD= @echo " ==> LINKING dynamic library \"$@\""; ${CCOM} + RANLIB= @echo " ==> RANDOMIZING ARCHIVE \"$@\""; ranlib + ARFLAGS= cr + LORDER= lorder + TSORT= tsort + + RMDEP= : +-MKDEP= @echo " ==> MAKE DEPENDENCIES \"$@\""; $(RMDEP); gcc -M ++MKDEP= @echo " ==> MAKE DEPENDENCIES \"$@\""; $(RMDEP); ${CCOM} -M + MKDEP_OUT= diff -uNr /usr/ports/sysutils/star/patches/patch-ab star/patches/patch-ab --- /usr/ports/sysutils/star/patches/patch-ab Thu Jan 1 01:00:00 1970 +++ star/patches/patch-ab Thu May 6 20:52:26 1999 @@ -0,0 +1,248 @@ +--- star/star.c.orig Thu May 6 17:09:19 1999 ++++ star/star.c Thu May 6 17:14:00 1999 +@@ -403,44 +403,46 @@ + usage(ret) + int ret; + { +- error("Usage:\tstar cmd [options] file1 ... filen\n"); +- error("Cmd:\n"); +- error("\t-c/-u/-r\tcreate/update/replace named files to tape\n"); +- error("\t-x/-t/-n\textract/list/trace named files from tape\n"); +- error("\t-diff\t\tdiff archive against file system (see -xhelp)\n"); +- error("Options:\n"); +- error("\t-help,-h\tprint this help\n"); +- error("\t-xhelp\t\tprint extended help\n"); +- error("\tblocks=#,b=#\tset blocking factor to #x512 Bytes (default 20)\n"); +- error("\tfile=nm,f=nm\tuse 'nm' as tape instead of stdin/stdout\n"); +- error("\t-T\t\tuse $TAPE as tape instead of stdin/stdout\n"); ++ FILE *fp = ret ? stderr : stdout; ++ ++ fprintf(fp, "Usage:\tstar cmd [options] file1 ... filen\n"); ++ fprintf(fp, "Cmd:\n"); ++ fprintf(fp, "\t-c/-u/-r\tcreate/update/replace named files to tape\n"); ++ fprintf(fp, "\t-x/-t/-n\textract/list/trace named files from tape\n"); ++ fprintf(fp, "\t-diff\t\tdiff archive against file system (see -xhelp)\n"); ++ fprintf(fp, "Options:\n"); ++ fprintf(fp, "\t-help,-h\tprint this help\n"); ++ fprintf(fp, "\t-xhelp\t\tprint extended help\n"); ++ fprintf(fp, "\tblocks=#,b=#\tset blocking factor to #x512 Bytes (default 20)\n"); ++ fprintf(fp, "\tfile=nm,f=nm\tuse 'nm' as tape instead of stdin/stdout\n"); ++ fprintf(fp, "\t-T\t\tuse $TAPE as tape instead of stdin/stdout\n"); + #ifdef FIFO +- error("\t-fifo/-no_fifo\tuse/don't use a fifo to optimize data flow from/to tape\n"); ++ fprintf(fp, "\t-fifo/-no_fifo\tuse/don't use a fifo to optimize data flow from/to tape\n"); + #if defined(USE_MMAP) && defined(USE_SHM) +- error("\t-shm\t\tuse SysV shared memory for fifo\n"); ++ fprintf(fp, "\t-shm\t\tuse SysV shared memory for fifo\n"); + #endif + #endif +- error("\t-v\t\tbe verbose\n"); +- error("\t-tpath\t\tuse with -t to list path names only\n"); +- error("\tH=header\tgenerate 'header' type archive (see H=help)\n"); +- error("\tC=dir\t\tperform a chdir to 'dir' before storing next file\n"); +- error("\t-z\t\tpipe input/output through gzip, does not work on tapes\n"); +- error("\t-B\t\tperform multiple reads (needed on pipes)\n"); +- error("\t-i\t\tignore checksum errors\n"); +- error("\t-d\t\tdo not store/create directories\n"); +- error("\t-m\t\tdo not restore access and modification time\n"); +- error("\t-nochown\tdo not restore owner and group\n"); +- error("\t-a,-atime\treset access time after storing file\n"); +- error("\t-p\t\trestore filemodes of directories\n"); +- error("\t-l\t\tdo not print a message if not all links are dumped\n"); +- error("\t-L\t\tfollow symbolic links as if they were files\n"); +- error("\t-D\t\tdo not descend directories\n"); +- error("\t-M\t\tdo not descend mounting points\n"); +- error("\t-I\t\tdo interactive creation/extraction/renaming\n"); +- error("\t-O\t\tbe compatible to old tar (except for checksum bug)\n"); +- error("\t-P\t\tlast record may be partial (useful on cartridge tapes)\n"); +- error("\t-S\t\tdo not store/create special files\n"); +- error("\t-U\t\trestore files unconditionally\n"); ++ fprintf(fp, "\t-v\t\tbe verbose\n"); ++ fprintf(fp, "\t-tpath\t\tuse with -t to list path names only\n"); ++ fprintf(fp, "\tH=header\tgenerate 'header' type archive (see H=help)\n"); ++ fprintf(fp, "\tC=dir\t\tperform a chdir to 'dir' before storing next file\n"); ++ fprintf(fp, "\t-z\t\tpipe input/output through gzip, does not work on tapes\n"); ++ fprintf(fp, "\t-B\t\tperform multiple reads (needed on pipes)\n"); ++ fprintf(fp, "\t-i\t\tignore checksum errors\n"); ++ fprintf(fp, "\t-d\t\tdo not store/create directories\n"); ++ fprintf(fp, "\t-m\t\tdo not restore access and modification time\n"); ++ fprintf(fp, "\t-nochown\tdo not restore owner and group\n"); ++ fprintf(fp, "\t-a,-atime\treset access time after storing file\n"); ++ fprintf(fp, "\t-p\t\trestore filemodes of directories\n"); ++ fprintf(fp, "\t-l\t\tdo not print a message if not all links are dumped\n"); ++ fprintf(fp, "\t-L\t\tfollow symbolic links as if they were files\n"); ++ fprintf(fp, "\t-D\t\tdo not descend directories\n"); ++ fprintf(fp, "\t-M\t\tdo not descend mounting points\n"); ++ fprintf(fp, "\t-I\t\tdo interactive creation/extraction/renaming\n"); ++ fprintf(fp, "\t-O\t\tbe compatible to old tar (except for checksum bug)\n"); ++ fprintf(fp, "\t-P\t\tlast record may be partial (useful on cartridge tapes)\n"); ++ fprintf(fp, "\t-S\t\tdo not store/create special files\n"); ++ fprintf(fp, "\t-U\t\trestore files unconditionally\n"); + exit(ret); + /* NOTREACHED */ + } +@@ -449,52 +451,54 @@ + xusage(ret) + int ret; + { +- error("Usage:\tstar cmd [options] file1 ... filen\n"); +- error("Extended options:\n"); +- error("\tdiffopts=optlst\tcomma separated list of diffopts (see diffopts=help)\n"); +- error("\t-not,-V\t\tuse those files which do not match pattern\n"); +- error("\tVOLHDR=name\tuse name to generate a volume header\n"); +- error("\t-xdir\t\textract dir even if the current is never\n"); +- error("\t-keep_old_files,-k\tkeep existing files\n"); +- error("\t-/\t\tdon't strip leading '/'s from file names\n"); +- error("\tlist=name\tread filenames from named file\n"); +- error("\t-dodesc\t\tdo descend directories found in a list= file\n"); +- error("\tpattern=p,pat=p\tset matching pattern\n"); +- error("\tmaxsize=#\tdo not store file if it is bigger than # kBytes\n"); +- error("\tnewer=name\tstore only files which are newer than 'name'\n"); +- error("\t-ctime\t\tuse ctime for newer= option\n"); +- error("\tbs=#\t\tset (output) block size to #\n"); ++ FILE *fp = ret ? stderr : stdout; ++ ++ fprintf(fp, "Usage:\tstar cmd [options] file1 ... filen\n"); ++ fprintf(fp, "Extended options:\n"); ++ fprintf(fp, "\tdiffopts=optlst\tcomma separated list of diffopts (see diffopts=help)\n"); ++ fprintf(fp, "\t-not,-V\t\tuse those files which do not match pattern\n"); ++ fprintf(fp, "\tVOLHDR=name\tuse name to generate a volume header\n"); ++ fprintf(fp, "\t-xdir\t\textract dir even if the current is never\n"); ++ fprintf(fp, "\t-keep_old_files,-k\tkeep existing files\n"); ++ fprintf(fp, "\t-/\t\tdon't strip leading '/'s from file names\n"); ++ fprintf(fp, "\tlist=name\tread filenames from named file\n"); ++ fprintf(fp, "\t-dodesc\t\tdo descend directories found in a list= file\n"); ++ fprintf(fp, "\tpattern=p,pat=p\tset matching pattern\n"); ++ fprintf(fp, "\tmaxsize=#\tdo not store file if it is bigger than # kBytes\n"); ++ fprintf(fp, "\tnewer=name\tstore only files which are newer than 'name'\n"); ++ fprintf(fp, "\t-ctime\t\tuse ctime for newer= option\n"); ++ fprintf(fp, "\tbs=#\t\tset (output) block size to #\n"); + #ifdef FIFO +- error("\tfs=#\t\tset fifo size to #\n"); ++ fprintf(fp, "\tfs=#\t\tset fifo size to #\n"); + #endif +- error("\ttsize=#\t\tset tape volume size to # 512 byte blocks\n"); +- error("\t-qic24\t\tset tape volume size to %d kBytes\n", ++ fprintf(fp, "\ttsize=#\t\tset tape volume size to # 512 byte blocks\n"); ++ fprintf(fp, "\t-qic24\t\tset tape volume size to %d kBytes\n", + TSIZE(QIC_24_TSIZE)/1024); +- error("\t-qic120\t\tset tape volume size to %d kBytes\n", ++ fprintf(fp, "\t-qic120\t\tset tape volume size to %d kBytes\n", + TSIZE(QIC_120_TSIZE)/1024); +- error("\t-qic150\t\tset tape volume size to %d kBytes\n", ++ fprintf(fp, "\t-qic150\t\tset tape volume size to %d kBytes\n", + TSIZE(QIC_150_TSIZE)/1024); +- error("\t-qic250\t\tset tape volume size to %d kBytes\n", ++ fprintf(fp, "\t-qic250\t\tset tape volume size to %d kBytes\n", + TSIZE(QIC_250_TSIZE)/1024); +- error("\t-nowarn\t\tdo not print warning messages\n"); +- error("\t-time\t\tprint timing info\n"); +- error("\t-no_statistics\tdo not print statistics\n"); ++ fprintf(fp, "\t-nowarn\t\tdo not print warning messages\n"); ++ fprintf(fp, "\t-time\t\tprint timing info\n"); ++ fprintf(fp, "\t-no_statistics\tdo not print statistics\n"); + #ifdef FIFO +- error("\t-fifostats\tprint fifo statistics\n"); ++ fprintf(fp, "\t-fifostats\tprint fifo statistics\n"); + #endif +- error("\t-numeric\tdon't use user/group name from tape\n"); +- error("\t-newest\t\tfind newest file on tape\n"); +- error("\t-newest_file\tfind newest regular file on tape\n"); +- error("\t-signed_checksum\tuse signed chars to calculate checksum\n"); +- error("\t-sparse\t\thandle file with holes effectively on store/create\n"); +- error("\t-force_hole\ttry to extract all files with holes\n"); +- error("\t-to_stdout\textract files to stdout\n"); +- error("\t-wready\t\twait for tape drive to become ready\n"); +- error("\t-force_remove\tforce to remove non writable files on extraction\n"); +- error("\t-ask_remove\task to remove non writable files on extraction\n"); +- error("\t-remove_first\tremove files before extraction\n"); +- error("\t-remove_recursive\tremove files recursive\n"); +- error("\t-nullout\tsimulate creating an achive to compute the size\n"); ++ fprintf(fp, "\t-numeric\tdon't use user/group name from tape\n"); ++ fprintf(fp, "\t-newest\t\tfind newest file on tape\n"); ++ fprintf(fp, "\t-newest_file\tfind newest regular file on tape\n"); ++ fprintf(fp, "\t-signed_checksum\tuse signed chars to calculate checksum\n"); ++ fprintf(fp, "\t-sparse\t\thandle file with holes effectively on store/create\n"); ++ fprintf(fp, "\t-force_hole\ttry to extract all files with holes\n"); ++ fprintf(fp, "\t-to_stdout\textract files to stdout\n"); ++ fprintf(fp, "\t-wready\t\twait for tape drive to become ready\n"); ++ fprintf(fp, "\t-force_remove\tforce to remove non writable files on extraction\n"); ++ fprintf(fp, "\t-ask_remove\task to remove non writable files on extraction\n"); ++ fprintf(fp, "\t-remove_first\tremove files before extraction\n"); ++ fprintf(fp, "\t-remove_recursive\tremove files recursive\n"); ++ fprintf(fp, "\t-nullout\tsimulate creating an achive to compute the size\n"); + exit(ret); + /* NOTREACHED */ + } +@@ -503,27 +507,29 @@ + dusage(ret) + int ret; + { +- error("Diff options:\n"); +- error("\tnot\t\tif this option is present, exclude listed options\n"); +- error("\tperm\t\tcompare file permissions\n"); +- error("\tmode\t\tcompare file permissions\n"); +- error("\ttype\t\tcompare file type\n"); +- error("\tnlink\t\tcompare linkcount (not supported)\n"); +- error("\tuid\t\tcompare owner of file\n"); +- error("\tgid\t\tcompare group of file\n"); +- error("\tuname\t\tcompare name of owner of file\n"); +- error("\tgname\t\tcompare name of group of file\n"); +- error("\tid\t\tcompare owner, group, ownername and groupname of file\n"); +- error("\tsize\t\tcompare file size\n"); +- error("\tdata\t\tcompare content of file\n"); +- error("\tcont\t\tcompare content of file\n"); +- error("\trdev\t\tcompare rdev of device node\n"); +- error("\thardlink\tcompare target of hardlink\n"); +- error("\tsymlink\t\tcompare target of symlink\n"); +- error("\tatime\t\tcompare access time of file (only star)\n"); +- error("\tmtime\t\tcompare modification time of file\n"); +- error("\tctime\t\tcompare creation time of file (only star)\n"); +- error("\ttimes\t\tcompare all times of file\n"); ++ FILE *fp = ret ? stderr : stdout; ++ ++ fprintf(fp, "Diff options:\n"); ++ fprintf(fp, "\tnot\t\tif this option is present, exclude listed options\n"); ++ fprintf(fp, "\tperm\t\tcompare file permissions\n"); ++ fprintf(fp, "\tmode\t\tcompare file permissions\n"); ++ fprintf(fp, "\ttype\t\tcompare file type\n"); ++ fprintf(fp, "\tnlink\t\tcompare linkcount (not supported)\n"); ++ fprintf(fp, "\tuid\t\tcompare owner of file\n"); ++ fprintf(fp, "\tgid\t\tcompare group of file\n"); ++ fprintf(fp, "\tuname\t\tcompare name of owner of file\n"); ++ fprintf(fp, "\tgname\t\tcompare name of group of file\n"); ++ fprintf(fp, "\tid\t\tcompare owner, group, ownername and groupname of file\n"); ++ fprintf(fp, "\tsize\t\tcompare file size\n"); ++ fprintf(fp, "\tdata\t\tcompare content of file\n"); ++ fprintf(fp, "\tcont\t\tcompare content of file\n"); ++ fprintf(fp, "\trdev\t\tcompare rdev of device node\n"); ++ fprintf(fp, "\thardlink\tcompare target of hardlink\n"); ++ fprintf(fp, "\tsymlink\t\tcompare target of symlink\n"); ++ fprintf(fp, "\tatime\t\tcompare access time of file (only star)\n"); ++ fprintf(fp, "\tmtime\t\tcompare modification time of file\n"); ++ fprintf(fp, "\tctime\t\tcompare creation time of file (only star)\n"); ++ fprintf(fp, "\ttimes\t\tcompare all times of file\n"); + exit(ret); + /* NOTREACHED */ + } +@@ -532,12 +538,14 @@ + husage(ret) + int ret; + { +- error("Header types:\n"); +- error("\ttar\t\told tar format\n"); +- error("\tstar\t\tstar format\n"); +- error("\tgnutar\t\tgnu tar format\n"); +- error("\tustar\t\tstandard tar (ieee 1003.1) format\n"); +- error("\txstar\t\textended standard tar format\n"); ++ FILE *fp = ret ? stderr : stdout; ++ ++ fprintf(fp, "Header types:\n"); ++ fprintf(fp, "\ttar\t\told tar format\n"); ++ fprintf(fp, "\tstar\t\tstar format\n"); ++ fprintf(fp, "\tgnutar\t\tgnu tar format\n"); ++ fprintf(fp, "\tustar\t\tstandard tar (ieee 1003.1) format\n"); ++ fprintf(fp, "\txstar\t\textended standard tar format\n"); + exit(ret); + /* NOTREACHED */ + } diff -uNr /usr/ports/sysutils/star/pkg/COMMENT star/pkg/COMMENT --- /usr/ports/sysutils/star/pkg/COMMENT Sat May 3 12:16:32 1997 +++ star/pkg/COMMENT Thu May 6 02:44:45 1999 @@ -1 +1 @@ -unique standard tape archiver with many enhancements +Unique standard tape archiver with many enhancements. diff -uNr /usr/ports/sysutils/star/pkg/DESCR star/pkg/DESCR --- /usr/ports/sysutils/star/pkg/DESCR Sat May 3 12:16:32 1997 +++ star/pkg/DESCR Thu May 6 02:45:41 1999 @@ -1,20 +1,20 @@ -Star is the fastest known implementation of a tar archiver. Star +star is the fastest known implementation of a tar archiver. star development started 1982, development is still in progress. The current version is stable. Main advantages over other tar implementations: - fifo - keeps the tape streaming. - pattern matcher - for a convenient user interface - sophisticated diff - user tailorable interface for comparing tar - archives against file trees + fifo - Keeps the tape streaming. + pattern matcher - For a convenient user interface. + sophisticated diff - User tailorable interface for comparing tar + archives against file trees. no namelen limitation - Pathnames up to 1024 Bytes may be archived. - deals with all 3 times - stores/restores all 3 times of a file - does not clobber files - more recent copies on disk will not be - clobbered from tape - automatic byte swap - star automatically detects swapped archives - automatic format detect - automatically detects archive formats: - Old tar, gnu tar, ansi tar, star. - fully ansi compatible - Star is fully ANSI/Posix 1003.1 compatible. + deals with all 3 times - Stores/restores all 3 times of a file. + does not clobber files - More recent copies on disk will not be + clobbered from tape. + automatic byte swap - star automatically detects swapped archives. + automatic format detect - Automatically detects archive formats: + old tar, gnu tar, ansi tar, star. + fully ansi compatible - star is fully ANSI/Posix 1003.1 compatible. Author: Joerg Schilling Please mail bugs and suggestions to him. diff -uNr /usr/ports/sysutils/star/pkg/PLIST star/pkg/PLIST --- /usr/ports/sysutils/star/pkg/PLIST Wed Aug 19 22:43:23 1998 +++ star/pkg/PLIST Sat May 15 02:59:02 1999 @@ -1,2 +1 @@ bin/star -bin/ustar >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 May 15 1: 9:40 1999 Delivered-To: freebsd-ports@freebsd.org Received: from sdcc10.ucsd.edu (sdcc10.ucsd.edu [132.239.50.10]) by hub.freebsd.org (Postfix) with ESMTP id 68CCC14C09 for ; Sat, 15 May 1999 01:09:38 -0700 (PDT) (envelope-from crouilla@ucsd.edu) Received: from localhost (crouilla@localhost) by sdcc10.ucsd.edu (8.9.3/8.9.3) with SMTP id BAA07392 for ; Sat, 15 May 1999 01:09:38 -0700 (PDT) X-Authentication-Warning: sdcc10.ucsd.edu: crouilla owned process doing -bs Date: Sat, 15 May 1999 01:09:37 -0700 (PDT) From: Chuck Rouillard Reply-To: chuck@ucsd.edu To: freebsd-ports@freebsd.org Subject: ISC DHCP-2 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 To all concerned- The ISC DHPC-2 Port is broken(the Makefile even says this). I can fix it, and I want to. But really, the orginal port is so old that it should be redone. My questions are: 1. Should I contact 'jseger' directly? 2. Is it in the interest of freebsd to continue with this port(since the packages area on ftp.freebsd -does- have the newest 'pre-compiled' patchlevel)? -sincerely ---------------------------------------------------------------------__ Chuck Rouillard ___ _______ __ ____ ______ / / chuck@ucsd.edu / _ )/ __/ _ \ / // / |/ / \ \/ / charr@sparc.sandiegoca.ncr.com / _ |\ \/ // /*/ // / / / \ \ chuckr@europa.qnc.org /____/___/____/ /____/_/|_/_/ / /\__\ *The Superior Alternative* /_/ --------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 15 1:30:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9DDDC14D0B for ; Sat, 15 May 1999 01:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA71677; Sat, 15 May 1999 01:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from Crazyman.Dorm10.NCTU.edu.tw (Crazyman.Dorm10.NCTU.edu.tw [140.113.122.212]) by hub.freebsd.org (Postfix) with ESMTP id 640BF14C9D for ; Sat, 15 May 1999 01:24:42 -0700 (PDT) (envelope-from yinjieh@Crazyman.Dorm10.NCTU.edu.tw) Received: (from yinjieh@localhost) by Crazyman.Dorm10.NCTU.edu.tw (8.9.2/8.9.2) id QAA80950; Sat, 15 May 1999 16:24:01 +0800 (CST) (envelope-from yinjieh) Message-Id: <199905150824.QAA80950@Crazyman.Dorm10.NCTU.edu.tw> Date: Sat, 15 May 1999 16:24:01 +0800 (CST) From: ³Çªº¤ß ©pªº¤ß Reply-To: yinjieh@Crazyman.Dorm10.NCTU.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11721: new port: pdq Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11721 >Category: ports >Synopsis: new port: pdq >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 May 15 01:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: ³Çªº¤ß ©pªº¤ß >Release: FreeBSD 3.1-STABLE i386 >Organization: ¦P¤@­Ó¬PªÅ¤U >Environment: FreeBSD Crazyman.Dorm10.NCTU.edu.tw 3.1-STABLE FreeBSD 3.1-STABLE #5: Mon Apr 26 01:57:37 CST 1999 root@Crazyman.Dorm10.NCTU.edu.tw:/home2/src/sys/compile/Y INJIEH i386 >Description: pdq: a straightforward, flexible print subsystem. It has the following features: o Modular driver and interface support. o Jobs can be monitored through completion. o Job status can be checked after completion. o Users can only print files of declared types. o Users can define their own printers. o Multitasking, with no queues to get clogged. o Scripts can be embedded in the rc files. o Custom command-line options. o Root privileges not required. WWW: http://feynman.tam.uiuc.edu/pdq/introduction.html >How-To-Repeat: N/A >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # pdq # pdq/files # pdq/files/md5 # pdq/Makefile # pdq/patches # pdq/patches/patch-aa # pdq/patches/patch-ab # pdq/patches/patch-ac # pdq/patches/patch-ad # pdq/patches/patch-ae # pdq/patches/patch-af # pdq/patches/patch-ag # pdq/patches/patch-ah # pdq/patches/patch-ai # pdq/patches/patch-aj # pdq/patches/patch-ak # pdq/pkg # pdq/pkg/COMMENT # pdq/pkg/DESCR # pdq/pkg/PLIST # echo c - pdq mkdir -p pdq > /dev/null 2>&1 echo c - pdq/files mkdir -p pdq/files > /dev/null 2>&1 echo x - pdq/files/md5 sed 's/^X//' >pdq/files/md5 << 'END-of-pdq/files/md5' XMD5 (pdq-2.1.1.tgz) = bcdcb66d449ae9c5ec544227dc2a059a END-of-pdq/files/md5 echo x - pdq/Makefile sed 's/^X//' >pdq/Makefile << 'END-of-pdq/Makefile' X# New ports collection makefile for: pdq X# Version required: 2.1.1 X# Date created: 15 May 1999 X# Whom: Yin-Jieh Chen X# X# $Id$ X# X XDISTNAME= pdq-2.1.1 XCATEGORIES= print XMASTER_SITES= ftp://feynman.tam.uiuc.edu/pub/pdq/ XEXTRACT_SUFX= .tgz X XMAINTAINER= yinjieh@csie.nctu.edu.tw X XLIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 X XGNU_CONFIGURE= yes XCONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" \ X GLIB_CONFIG="${LOCALBASE}/bin/glib12-config" X XMAN1= lpd_cancel.1 lpd_print.1 lpd_status.1 pdq.1 xpdq.1 XMAN5= printrc.5 X Xpost-install: X ${CP} ${WRKSRC}/sample_etc_printrc ${PREFIX}/etc/printrc.sample X strip ${PREFIX}/bin/pdq X strip ${PREFIX}/bin/xpdq X strip ${PREFIX}/bin/lpd_cancel X strip ${PREFIX}/bin/lpd_print X strip ${PREFIX}/bin/lpd_status X @${ECHO} '*******************************************************' X @${ECHO} '* *' X @${ECHO} '* Please copy /usr/local/etc/printrc.sample to *' X @${ECHO} '* /usr/local/etc/printrc by yourself, thanks. *' X @${ECHO} '* *' X @${ECHO} '*******************************************************' X X.include END-of-pdq/Makefile echo c - pdq/patches mkdir -p pdq/patches > /dev/null 2>&1 echo x - pdq/patches/patch-aa sed 's/^X//' >pdq/patches/patch-aa << 'END-of-pdq/patches/patch-aa' X--- src/job.c.orig Sat May 15 01:03:09 1999 X+++ src/job.c Sat May 15 01:08:30 1999 X@@ -248,12 +248,9 @@ X } X sprintf(pat, "%s/[0-9][0-9][0-9].status", sd); X i = glob (pat, 0, NULL, &globbuf); X- if (i != 0) { X- if (i != GLOB_NOMATCH) { X+ if (i != 0) return (NULL); X /* Unknown error (or on some systems, no match) */ X- return (NULL); X- } X- } else { X+ else { X if (globbuf.gl_pathc == 0) { X /* No match */ X return (NULL); X@@ -385,14 +382,10 @@ X i = glob (pat, 0, NULL, &globbuf); X free (pat); X if (i != 0) { X- if (i != GLOB_NOMATCH) { X fprintf (stderr, "Unknown error globbing for job id.\n"); X perror (NULL); X fprintf (stderr, "Failed to purge old jobs.\n"); X my_exit (1); X- } else { X- /* No match */ X- } X } else { X if (globbuf.gl_pathc == 0) { X return; X@@ -432,14 +425,10 @@ X i = glob (pat, 0, NULL, &globbuf); X free (pat); X if (i != 0) { X- if (i != GLOB_NOMATCH) { X fprintf (stderr, "Unknown error globbing for job id.\n"); X perror (NULL); X fprintf (stderr, "Failed to purge old jobs.\n"); X my_exit (1); X- } else { X- /* No match */ X- } X } else { X if (globbuf.gl_pathc == 0) { X return; X@@ -495,11 +484,9 @@ X i = glob (pat, 0, NULL, &globbuf); X free (pat); X if (i != 0) { X- if (i != GLOB_NOMATCH) { X- fprintf (stderr, "Unknown error globbing for job id.\n"); X- perror (NULL); X- my_exit (1); X- } X+ fprintf (stderr, "Unknown error globbing for job id.\n"); X+ perror (NULL); X+ my_exit (1); X claim_try = 1; X } else { X if (globbuf.gl_pathc == 0) { END-of-pdq/patches/patch-aa echo x - pdq/patches/patch-ab sed 's/^X//' >pdq/patches/patch-ab << 'END-of-pdq/patches/patch-ab' X--- src/parse_rc.c.orig Sat May 15 01:03:20 1999 X+++ src/parse_rc.c Sat May 15 07:06:17 1999 X@@ -23,7 +23,6 @@ X #include X #include X #include X-#include X X X #include "parse.h" X@@ -35,6 +34,8 @@ X #include "driver.h" X #include "interface.h" X X+#define PRINTRC "/usr/local/etc/printrc" X+ X void try_parse_rc_glob (char *rc_glob, rc_items *rc) { X X glob_t globbuf; X@@ -46,12 +47,8 @@ X i = glob (d, 0, NULL, &globbuf); X free (d); X if (i != 0) { X- if (i == GLOB_NOMATCH) { X- /* Keep on going */ X- } else { X- fprintf (stderr, "Died while globbing %s\n", d); X- my_exit (1); X- } X+ fprintf (stderr, "Died while globbing %s\n", d); X+ my_exit (1); X } else { X /* Globbed something real */ X for (i = 0; i < globbuf.gl_pathc; i++) { X@@ -71,11 +68,7 @@ X X i = glob (d, 0, NULL, &globbuf); X if (i != 0) { X- if (i == GLOB_NOMATCH) { X- fprintf (stderr, "No files match %s\n", d); X- } else { X- fprintf (stderr, "Died while globbing %s\n", d); X- } X+ fprintf (stderr, "Died while globbing %s\n", d); X free (d); X my_exit (1); X } else { X@@ -258,7 +251,7 @@ X int trouble_flag; X X rc_locs = NULL; X- find_rc_glob_locations (type, name, "/etc/printrc", &rc_locs); X+ find_rc_glob_locations (type, name, PRINTRC, &rc_locs); X find_rc_glob_locations (type, name, "~/.printrc", &rc_locs); X X set_flag = 0; X@@ -282,7 +275,7 @@ X } X X if ( (set_flag == 0) || (trouble_flag == 1) ) { X- if (0 != append_to_rc_file ("/etc/printrc", buf) ) { X+ if (0 != append_to_rc_file (PRINTRC, buf) ) { X append_to_rc_file ("~/.printrc", buf); /* Return code not checked. X * What else can we do? X */ X@@ -299,7 +292,7 @@ X int trouble_flag; X X rc_locs = NULL; X- find_rc_glob_locations (type, name, "/etc/printrc", &rc_locs); X+ find_rc_glob_locations (type, name, PRINTRC, &rc_locs); X find_rc_glob_locations (type, name, "~/.printrc", &rc_locs); X X trouble_flag = 0; X@@ -315,11 +308,11 @@ X X /* In this case, buf should have been set to some commands that X * indicate to delete the object. For example, say printer foo is X- * defined in /etc/printrc. Ordinary users cannot delete it, but X+ * defined in /usr/local/etc/printrc. Ordinary users cannot delete it, but X * they may add the command "printer foo delete" to their own rc file. X */ X if (trouble_flag == 1) { X- if (0 != append_to_rc_file ("/etc/printrc", buf) ) { X+ if (0 != append_to_rc_file (PRINTRC, buf) ) { X append_to_rc_file ("~/.printrc", buf); /* Return code not checked. X * What else can we do? X */ END-of-pdq/patches/patch-ab echo x - pdq/patches/patch-ac sed 's/^X//' >pdq/patches/patch-ac << 'END-of-pdq/patches/patch-ac' X--- src/pdq_main.c.orig Sat May 15 07:06:41 1999 X+++ src/pdq_main.c Sat May 15 07:07:22 1999 X@@ -34,7 +34,8 @@ X #include "shepherd.h" X #include "reaper.h" X X- X+#define PRINTRC "/usr/local/etc/printrc" X+ X rc_items *rc; X job_info *job; X X@@ -61,7 +62,7 @@ X str_reset (&job->invoke_time, ctime(&t)); X job->invoke_time [strlen(job->invoke_time)-1] = 0; /* Strip \n */ X X- try_parse_rc_glob ("/etc/printrc", rc); X+ try_parse_rc_glob (PRINTRC, rc); X try_parse_rc_glob ("~/.printrc", rc); X pdq_process_argv (argc, argv, job, rc, &file, &nfiles); X END-of-pdq/patches/patch-ac echo x - pdq/patches/patch-ad sed 's/^X//' >pdq/patches/patch-ad << 'END-of-pdq/patches/patch-ad' X--- src/util.c.orig Sat May 15 01:34:56 1999 X+++ src/util.c Sat May 15 02:07:16 1999 X@@ -16,6 +16,7 @@ X * X */ X X+#include X #include X #include X #include END-of-pdq/patches/patch-ad echo x - pdq/patches/patch-ae sed 's/^X//' >pdq/patches/patch-ae << 'END-of-pdq/patches/patch-ae' X--- src/xpdq_main.c.orig Sat May 15 07:10:19 1999 X+++ src/xpdq_main.c Sat May 15 11:44:32 1999 X@@ -39,6 +39,8 @@ X #include "option.h" X #include "shepherd.h" X X+#define PRINTRC "/usr/local/etc/printrc" X+ X void (*my_exit) (int code); X X void xpdq_exit (int code) { X@@ -90,7 +92,7 @@ X rc = new_rc_items(); X job = NULL; X X- try_parse_rc_glob ("/etc/printrc", rc); X+ try_parse_rc_glob (PRINTRC, rc); X try_parse_rc_glob ("~/.printrc", rc); X X gtk_init (&argc, &argv); END-of-pdq/patches/patch-ae echo x - pdq/patches/patch-af sed 's/^X//' >pdq/patches/patch-af << 'END-of-pdq/patches/patch-af' X--- src/xpdq_printer.c.orig Sat May 15 07:19:13 1999 X+++ src/xpdq_printer.c Sat May 15 11:43:47 1999 X@@ -29,23 +29,30 @@ X #include "printer.h" X #include "argument.h" X X+#define PRINTRC "/usr/local/etc/printrc" X+ X void xpdq_add_printer (void) { X X pwizard_state *wizard; X dl_list *list; X+ char *error; X X list = first_list_element (rc->driver_list); X if (list == NULL) { X- xpdq_error ("There are no printer drivers defined in\n" X- "/etc/printrc or ~/.printrc. Without printer drivers,\n" X- "the wizard cannot add printers."); X+ error = malloc(256); X+ sprintf (error, "There are no printer drivers defined in\n" X+ "%s or ~/.printrc. Without printer drivers,\n" X+ "the wizard cannot add printers.", PRINTRC); X+ xpdq_error(error); X return; X } X list = first_list_element (rc->interface_list); X if (list == NULL) { X- xpdq_error ("There are no printer interfaces defined in\n" X- "/etc/printrc or ~/.printrc. Without printer interfaces,\n" X- "the wizard cannot add printers."); X+ error = malloc(256); X+ sprintf (error, "There are no printer drivers defined in\n" X+ "%s or ~/.printrc. Without printer drivers,\n" X+ "the wizard cannot add printers.", PRINTRC); X+ xpdq_error(error); X return; X } X wizard = new_pwizard (); END-of-pdq/patches/patch-af echo x - pdq/patches/patch-ag sed 's/^X//' >pdq/patches/patch-ag << 'END-of-pdq/patches/patch-ag' X--- src/xpdq_wizard.c.orig Sat May 15 11:45:15 1999 X+++ src/xpdq_wizard.c Sat May 15 11:50:44 1999 X@@ -29,6 +29,8 @@ X #include "printer.h" X #include "argument.h" X X+#define PRINTRC "/usr/local/etc/printrc" X+ X pwizard_state *new_pwizard() { X X pwizard_state *wizard; X@@ -315,6 +317,7 @@ X driver *d; X int i, row; X char *dname; X+ char *error; X X panel = gtk_vbox_new (FALSE, 0); X gtk_container_border_width (GTK_CONTAINER (panel), 10); X@@ -348,9 +351,11 @@ X gtk_clist_set_selection_mode (GTK_CLIST(widget), GTK_SELECTION_BROWSE); X list = first_list_element (rc->driver_list); X if (list == NULL) { X- xpdq_error ("This system has no drivers. Please make sure\n" X- "that there are drivers defined in /etc/printrc, ~/.printrc,\n" X- "or in files included by /etc/printrc or ~/.printrc."); X+ error = malloc(256); X+ sprintf(error, "This system has no drivers. Please make sure\n" X+ "that there are drivers defined in %s, ~/.printrc,\n" X+ "or in files included by %s or ~/.printrc.", PRINTRC, PRINTRC); X+ xpdq_error(error); X } X while (list != NULL) { X d = (driver *) list->data; END-of-pdq/patches/patch-ag echo x - pdq/patches/patch-ah sed 's/^X//' >pdq/patches/patch-ah << 'END-of-pdq/patches/patch-ah' X--- doc/pdq.1.orig Sat May 15 12:57:49 1999 X+++ doc/pdq.1 Sat May 15 12:58:05 1999 X@@ -60,7 +60,7 @@ X option may also be used to select X .IR printer . X .SH FILES X-.I /etc/printrc X+.I /usr/local/etc/printrc X .RS X The system wide configuration file. See X .BR printrc (5) END-of-pdq/patches/patch-ah echo x - pdq/patches/patch-ai sed 's/^X//' >pdq/patches/patch-ai << 'END-of-pdq/patches/patch-ai' X--- doc/printrc.5.orig Sat May 15 12:59:52 1999 X+++ doc/printrc.5 Sat May 15 13:00:48 1999 X@@ -5,7 +5,7 @@ X .B printrc X .SH DESCRIPTION X This document describes the structure of the printrc files. The files X-.IR /etc/printrc " and " "~/.printrc" X+.IR /usr/local/etc/printrc " and " "~/.printrc" X are parsed, if they exist, and solely determine the print resources X available, although each printrc file may include other rc files. X .SH LEXICAL STRUCTURE END-of-pdq/patches/patch-ai echo x - pdq/patches/patch-aj sed 's/^X//' >pdq/patches/patch-aj << 'END-of-pdq/patches/patch-aj' X--- doc/xpdq.1.orig Sat May 15 13:01:27 1999 X+++ doc/xpdq.1 Sat May 15 13:01:42 1999 X@@ -11,7 +11,7 @@ X There are no options, other than options of the underlying X11 toolkit and X widget set (in this case gtk). X .SH FILES X-.I /etc/printrc X+.I /usr/local/etc/printrc X .RS X The system wide configuration file. See X .BR printrc (5) END-of-pdq/patches/patch-aj echo x - pdq/patches/patch-ak sed 's/^X//' >pdq/patches/patch-ak << 'END-of-pdq/patches/patch-ak' X--- lpd/lpd_interface.c.orig Sat May 15 02:26:06 1999 X+++ lpd/lpd_interface.c Sat May 15 02:26:25 1999 X@@ -80,7 +80,7 @@ X X MESSAGE (2, connecting...); X X- if ( connect(sckt, &serv_addr, sizeof(serv_addr)) != 0 ) { X+ if ( connect(sckt, (struct sockaddr *)&serv_addr, sizeof(serv_addr)) != 0 ) { X perror ("connect"); X exit (1); X } END-of-pdq/patches/patch-ak echo c - pdq/pkg mkdir -p pdq/pkg > /dev/null 2>&1 echo x - pdq/pkg/COMMENT sed 's/^X//' >pdq/pkg/COMMENT << 'END-of-pdq/pkg/COMMENT' XA straightforward, flexible print subsystem. END-of-pdq/pkg/COMMENT echo x - pdq/pkg/DESCR sed 's/^X//' >pdq/pkg/DESCR << 'END-of-pdq/pkg/DESCR' Xpdq is a straightforward, flexible print subsystem. XIt has the following features: Xo Modular driver and interface support. Xo Jobs can be monitored through completion. Xo Job status can be checked after completion. Xo Users can only print files of declared types. Xo Users can define their own printers. Xo Multitasking, with no queues to get clogged. Xo Scripts can be embedded in the rc files. Xo Custom command-line options. Xo Root privileges not required. X XWWW: http://feynman.tam.uiuc.edu/pdq/introduction.html X X- Yin-Jieh Chen Xyinjieh@csie.nctu.edu.tw END-of-pdq/pkg/DESCR echo x - pdq/pkg/PLIST sed 's/^X//' >pdq/pkg/PLIST << 'END-of-pdq/pkg/PLIST' Xbin/pdq Xbin/xpdq Xbin/lpd_cancel Xbin/lpd_print Xbin/lpd_status Xetc/printrc.sample END-of-pdq/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 Sat May 15 3: 6:35 1999 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 2C62314C35 for ; Sat, 15 May 1999 03:06:11 -0700 (PDT) (envelope-from wosch@panke.de.freebsd.org) Received: (from uucp@localhost) by baerenklau.de.freebsd.org (8.8.8/8.8.8) with UUCP id MAA01173; Sat, 15 May 1999 12:06:10 +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 LAA01104; Sat, 15 May 1999 11:20:59 +0200 (CEST) (envelope-from wosch) Date: Sat, 15 May 1999 11:20:59 +0200 (CEST) Message-Id: <199905150920.LAA01104@paula.panke.de.freebsd.org> From: wosch@freebsd.org 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 2359 ports in the FreeBSD Ports Collection. New ports added last two weeks - ------------------------------ Category archivers (http://www.freebsd.org/ports/archivers.html) ================================================================== deepforest-1.0a A simple compress utilty using on JDE. Maintained by: kiri@pis.toba-cmt.ac.jp Also listed in: converters windowmaker tkstep80 Requires: XFree86-3.3.3.1, jpeg-6b, libimg-1.1.4, png-1.0.3, tcl-8.0.5, tiff-3.4b37, tk-8.0.5, tkstep-8.0.4, xpm-3.4k linux-rar-2.50 general purpose archiving and compression tool (binary port) Maintained by: k5@respo.or.jp Requires: linux_lib-2.6.1 pkzip-2.5 Create/update/list/test/extract pkzip ZIP files. Maintained by: dbader@eece.unm.edu Requires: linux_lib-2.6.1 Category astro (http://www.freebsd.org/ports/astro.html) ================================================================== setiathome-0.47 Donate idle cycles to the search for space aliens Maintained by: stb@freebsd.org wmspaceweather-1.04 A DockApp that shows the weather at geosynchronous orbit. Maintained by: cpiazza@home.net Also listed in: windowmaker Requires: XFree86-3.3.3.1, gmake-3.77, xpm-3.4k wmsun-1.03 A dockapp that displays the rise and set time of the sun. Maintained by: cpiazza@home.net Also listed in: windowmaker Requires: XFree86-3.3.3.1, gmake-3.77, xpm-3.4k Category audio (http://www.freebsd.org/ports/audio.html) ================================================================== cdrdao-1.1.0 Cdrdao - Write audio CD-Rs in disk-at-once mode Maintained by: futatuki@fureai.or.jp Requires: gmake-3.77, pccts-1.33 id3ren-0.97a Mpeg Audio Layer 3 util: rename files, edit tags, search, etc. Maintained by: jonny@jonny.eng.br Requires: unzip-5.40 juke-0.5 A simple curses/ncurses based juke box program. Maintained by: oyvindmo@initio.no kmikmod-2.04 KDE module player based on mikmod. Maintained by: tom@eborcom.com Also listed in: kde Requires: Mesa-3.0, XFree86-3.3.3.1, gettext-0.10.35, giflib-3.0, gmake-3.77, jpeg-6b, kdelibs-1.0, qt-1.42 kmp3-0.2.2 An mp3 player for the KDE Maintained by: obonilla@fisicc-ufm.edu Also listed in: kde Requires: Mesa-3.0, XFree86-3.3.3.1, giflib-3.0, gmake-3.77, jpeg-6b, kdelibs-1.1.1, png-1.0.3, qt-1.42, tiff-3.4b37 libmikmod-3.1.6 A portable sound library for Unix. Maintained by: mharo@area51.fremont.ca.us Requires: gmake-3.77, libtool-1.3 ripenc-0.6 Script that automates the ripping, encoding, and naming of CD's Maintained by: jonny@jonny.eng.br ripit-1.3 A perl-script frontend for encoding audio CDs to MP3 files. Maintained by: oyvindmo@initio.no Requires: XFree86-3.3.3.1, bladeenc-0.76, tosha-0.6, xmcd-2.4, xpm-3.4k snowstar-0.75.5 A GUI interface to copy files to/from the Diamond Rio Maintained by: fenner@FreeBSD.Org Requires: XFree86-3.3.3.1, rio-1.06, tcl-8.0.5, tk-8.0.5 Category biology (http://www.freebsd.org/ports/biology.html) ================================================================== molden-3.4 display molecular orbitals and electron densities in 2D and 3D Maintained by: rmiya@cc.hirosaki-u.ac.jp mopac-7.02 Semi-empirical (MNDO, etc.) molecular orbital calculation Maintained by: rmiya@cc.hirosaki-u.ac.jp Requires: gmake-3.77 platon-070499 PLATON is the one of crystallographic tools. Maintained by: rmiya@cc.hirosaki-u.ac.jp psi88-1.0 Plotting wavefunctions (molecular orbitals) in 3D Maintained by: rmiya@cc.hirosaki-u.ac.jp Category chinese (http://www.freebsd.org/ports/chinese.html) ================================================================== zh-aterm-0.3.5 A color vt102 terminal emulator with transparency support. Maintained by: davidyu@ken.csie.ntu.edu.tw Requires: XFree86-3.3.3.1, jpeg-6b, png-1.0.3, xpm-3.4k zh-muni-1.0 Find Unicode values for Chinese characters Maintained by: adam@whizkidtech.net Category converters (http://www.freebsd.org/ports/converters.html) ================================================================== i18ntools-1.0 Tools for the conversion to and from UTF-8 Unicode encoding Maintained by: adam@whizkidtech.net Requires: libutf-8.1.0, tuc-1.10 kdesupport-i18n-1.1.1 Mime and UUENCODE/DECODE libraries for the KDE integrated X11 desktop Maintained by: imura@cs.titech.ac.jp Also listed in: kde Requires: XFree86-3.3.3.1, bzip2-0.9.0c, gmake-3.77, qt-i18n-1.44 unix2dos-1.0 translate ASCII files from DOS (cr/lf) to UNIX (lf) Maintained by: obonilla@fisicc-ufm.edu Category deskutils (http://www.freebsd.org/ports/deskutils.html) ================================================================== genius-0.4.0 Arbitrary precision calculator for Gnome Desktop Environment. Maintained by: andy@icc.surw.chel.su Also listed in: gnome Requires: ORBit-0.4.3, XFree86-3.3.3.1, esound-0.2.8, gettext-0.10.35, giflib-3.0, glib-1.2.2, gnomelibs-1.0.9, gtk-1.2.2, imlib-1.9.4, jpeg-6b, libaudiofile-0.1.6, png-1.0.3, tiff-3.4b37, xpm-3.4k recycler-0.1a A trashcan software that replaces the offix' trash. Maintained by: kiri@pis.toba-cmt.ac.jp Also listed in: x11-toolkits windowmaker tkstep80 Requires: XFree86-3.3.3.1, jpeg-6b, libimg-1.1.4, png-1.0.3, tcl-8.0.5, tiff-3.4b37, tk-8.0.5, tkstep-8.0.4, xpm-3.4k Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== bison-1.27 GNU's bison (ver 1.27) Maintained by: wghicks@bellsouth.net cdk-4.9.1 Curses Development Kit for speedy development of full screen programs Maintained by: andy@icc.surw.chel.su crossm68k-3.0 Motorola MC68xxx cross development toolchain based on EGCS 1.1.2 Maintained by: wghicks@bellsouth.net Requires: bzip2-0.9.0c, gmake-3.77 fastcrc-1.0 Fast CRC routines. Maintained by: adam@whizkidtech.net Requires: nasm-0.97 gnustep-0.5.5 Objective-C libraries based on the OpenStep standard. Maintained by: ports@FreeBSD.ORG Requires: egcs-1.1.2, gmake-3.77, jpeg-6b, tiff-3.4b37 ktranslator-0.4.0 A powerful utility for kde translators Maintained by: hanspb@persbraten.vgs.no Also listed in: kde Requires: Mesa-3.0, XFree86-3.3.3.1, gettext-0.10.35, giflib-3.0, gmake-3.77, jpeg-6b, kdelibs-1.0, qt-1.42 getline-3.9 a small, portable, and easy to use command line library Maintained by: wghicks@bellsouth.net libgnugetopt-1.1 GNU getopt library. Maintained by: andy@icc.surw.chel.su shtool-1.2.3 Portable Shell Tool Maintained by: rse@engelschall.com tclcl-1.0b8 tcl/C++ interface used by ns and nam Maintained by: obonilla@fisicc-ufm.edu Requires: XFree86-3.3.3.1, otcl-1.0a4, tcl-8.0.5, tk-8.0.5 tclGetOpts-1.0 Pure TCL code for command line options parsing Maintained by: mi@aldan.algebra.com Category editors (http://www.freebsd.org/ports/editors.html) ================================================================== AbiWord-0.5.5 An open-source, cross-platform WYSIWYG word processor. Maintained by: dburr@FreeBSD.ORG Requires: XFree86-3.3.3.1, bash-2.03, gettext-0.10.35, glib-1.2.2, gmake-3.77, gtk-1.2.2, ispell-3.1.20, png-1.0.3 custom-emacs-1.9962 The Custom Library for emacs. Maintained by: shige@FreeBSD.ORG Also listed in: elisp Requires: XFree86-3.3.3.1, emacs-19.34b custom-mule-1.9962 The Custom Library for mule. Maintained by: shige@FreeBSD.ORG Also listed in: elisp Requires: XFree86-3.3.3.1, mule-2.3, mule-common-2.3 flim-emacs-1.12.5 FLIM, message representation or encoding emacs lisp library for emacs. Maintained by: shige@FreeBSD.ORG Also listed in: elisp Requires: XFree86-3.3.3.1, apel-emacs-9.18, custom-emacs-1.9962, emacs-19.34b, ja-nkf-1.62, mm-2.7 flim-emacs-1.9.2 FLIM, message representation or encoding emacs lisp library for emacs. Maintained by: shige@FreeBSD.ORG Also listed in: elisp Requires: XFree86-3.3.3.1, apel-emacs-9.18, custom-emacs-1.9962, emacs-19.34b, ja-nkf-1.62 flim-mule-1.12.5 FLIM, message representation or encoding emacs lisp library for mule. Maintained by: shige@FreeBSD.ORG Also listed in: elisp Requires: XFree86-3.3.3.1, apel-mule-9.18, custom-mule-1.9962, ja-nkf-1.62, mm-2.7, mule-2.3, mule-common-2.3 flim-mule-1.9.2 FLIM, message representation or encoding emacs lisp library for mule. Maintained by: shige@FreeBSD.ORG Also listed in: elisp Requires: XFree86-3.3.3.1, apel-mule-9.18, custom-mule-1.9962, ja-nkf-1.62, mule-2.3, mule-common-2.3 gnotepad+-1.1.4 gnotepad+ is a simple GTK based text/HTML editor. Maintained by: brett@peloton.physics.montana.edu Also listed in: www Requires: XFree86-3.3.3.1, gettext-0.10.35, glib-1.2.2, gtk-1.2.2, xpm-3.4k muggy-1.2b A simple text editor for the X on TkStep. Maintained by: kiri@pis.toba-cmt.ac.jp Also listed in: windowmaker tkstep80 Requires: XFree86-3.3.3.1, jpeg-6b, libimg-1.1.4, png-1.0.3, tcl-8.0.5, tiff-3.4b37, tk-8.0.5, tkstep-8.0.4, xpm-3.4k semi-emacs-1.13.3 SEMI, Library of MIME feature for GNU Emacs for emacs. Maintained by: shige@FreeBSD.ORG Also listed in: elisp Requires: XFree86-3.3.3.1, apel-emacs-9.18, custom-emacs-1.9962, emacs-19.34b, flim-emacs-1.12.5, ja-nkf-1.62, mm-2.7 semi-emacs-1.8.6 SEMI, Library of MIME feature for GNU Emacs for emacs. Maintained by: shige@FreeBSD.ORG Also listed in: elisp Requires: XFree86-3.3.3.1, apel-emacs-9.18, custom-emacs-1.9962, emacs-19.34b, flim-emacs-1.9.2, ja-nkf-1.62 semi-mule-1.13.3 SEMI, Library of MIME feature for GNU Emacs for mule. Maintained by: shige@FreeBSD.ORG Also listed in: elisp Requires: XFree86-3.3.3.1, apel-mule-9.18, custom-mule-1.9962, flim-mule-1.12.5, ja-nkf-1.62, mm-2.7, mule-2.3, mule-common-2.3 semi-mule-1.8.6 SEMI, Library of MIME feature for GNU Emacs for mule. Maintained by: shige@FreeBSD.ORG Also listed in: elisp Requires: XFree86-3.3.3.1, apel-mule-9.18, custom-mule-1.9962, flim-mule-1.9.2, ja-nkf-1.62, mule-2.3, mule-common-2.3 the-2.7 The Hessling Editor, an implementation of the xedit editor Maintained by: ports@FreeBSD.org Requires: rexx-imc-1.6d wemi-emacs-1.13.3 WEMI, Library of MIME feature for GNU Emacs (branch of SEMI kernel package). Maintained by: shige@FreeBSD.ORG Also listed in: elisp Requires: XFree86-3.3.3.1, apel-emacs-9.18, custom-emacs-1.9962, emacs-19.34b, flim-emacs-1.12.5, ja-nkf-1.62, mm-2.7 wemi-emacs-1.8.6 WEMI, Library of MIME feature for GNU Emacs (branch of SEMI kernel package). Maintained by: shige@FreeBSD.ORG Also listed in: elisp Requires: XFree86-3.3.3.1, apel-emacs-9.18, custom-emacs-1.9962, emacs-19.34b, flim-emacs-1.9.2, ja-nkf-1.62 wemi-mule-1.13.3 WEMI, Library of MIME feature for GNU Emacs (branch of SEMI kernel package). Maintained by: shige@FreeBSD.ORG Also listed in: elisp Requires: XFree86-3.3.3.1, apel-mule-9.18, custom-mule-1.9962, flim-mule-1.12.5, ja-nkf-1.62, mm-2.7, mule-2.3, mule-common-2.3 wemi-mule-1.8.6 WEMI, Library of MIME feature for GNU Emacs (branch of SEMI kernel package). Maintained by: shige@FreeBSD.ORG Also listed in: elisp Requires: XFree86-3.3.3.1, apel-mule-9.18, custom-mule-1.9962, flim-mule-1.9.2, ja-nkf-1.62, mule-2.3, mule-common-2.3 Category games (http://www.freebsd.org/ports/games.html) ================================================================== battleball-2.0 3D single/multiplayer military soccer game for X Window System. Maintained by: andy@icc.surw.chel.su Requires: XFree86-3.3.3.1 biorythm-1.1.1 simple biorythm calculation program Maintained by: andy@icc.surw.chel.su Requires: gmake-3.77, libshhmsg-1.4.0, libshhopt-1.1.4 bnetd-0.4.7 A game server for StarCraft Maintained by: ijliao@csie.nctu.edu.tw Also listed in: net miscom-1.0 Atari's "Missile Command" clone. Maintained by: andy@icc.surw.chel.su sol-1.0.6 Solitaire card game for X Window System. Maintained by: andy@icc.surw.chel.su Requires: XFree86-3.3.3.1, gmake-3.77, libshhcards-1.0.4, libshhmsg-1.4.0, libshhopt-1.1.4, libxalloc-1.0.3, xpm-3.4k tetrinet-x.1.13.16 TetriNET is an addictive 6 player tetr*s game Maintained by: freebsd@scotty.masternet.it wmtictactoe-0.4 A dockable TicTacToe game for WindowMaker and AfterStep. Maintained by: jim@phrantic.phear.net Also listed in: windowmaker afterstep Requires: XFree86-3.3.3.1, gmake-3.77, xpm-3.4k xhexagons-5.4.4 Hexagons puzzle (similar to Fifteen Puzzle) for X Window System. Maintained by: andy@icc.surw.chel.su Requires: XFree86-3.3.3.1 Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== Hermes-1.2.4 Fast pixel formats conversion library. Maintained by: andy@icc.surw.chel.su Requires: gmake-3.77 gview-0.1.4 Image viewer for X Window System with interface similar to ACDSee. Maintained by: andy@icc.surw.chel.su Requires: XFree86-3.3.3.1, gettext-0.10.35, giflib-3.0, glib-1.2.2, gtk-1.2.2, imlib-1.9.4, jpeg-6b, png-1.0.3, tiff-3.4b37 jgv-0.2a A graphic viewer with various image types. Maintained by: kiri@pis.toba-cmt.ac.jp Also listed in: windowmaker tkstep80 Requires: XFree86-3.3.3.1, jpeg-6b, libimg-1.1.4, png-1.0.3, tcl-8.0.5, tiff-3.4b37, tk-8.0.5, tkstep-8.0.4, xpm-3.4k tgif-nls-4.1.8 A two-dimensional drawing tool with NLS message catalogs support. Maintained by: one@netlab.is.tsukuba.ac.jp Requires: XFree86-3.3.3.1, gettext-0.10.35, jpeg-6b, netpbm-94.3.1, tiff-3.4b37 tifmerge-1.0 Library to merge TIFF files into multi-page TIFF files. Maintained by: adam@whizkidtech.net Requires: tuc-1.10, unzip-5.40 xbm2gif-1.0 Converts xbm graphics to gif format. Maintained by: adam@whizkidtech.net Requires: gd-1.3 xsane-0.22 XSANE is a gtk based X11 frontend for SANE (Scanner Access Now Easy) Maintained by: domi@saargate.de Requires: XFree86-3.3.3.1, gettext-0.10.35, glib-1.2.2, gmake-3.77, gtk-1.2.2, jpeg-6b, png-1.0.3, sane-1.00, tiff-3.4b37 Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-binder-1.3 A file manager on X window with TkStep. Maintained by: kiri@pis.toba-cmt.ac.jp Also listed in: x11-fm windowmaker tkstep80 Requires: XFree86-3.3.3.1, ja-libimg-1.2b2, ja-tcl-8.0.5, ja-tkstep-8.0.4 ja-deepforest-1.0a A simple compress utilty using on JDE. Maintained by: kiri@pis.toba-cmt.ac.jp Also listed in: archivers windowmaker tkstep80 Requires: XFree86-3.3.3.1, ja-libimg-1.2b2, ja-tcl-8.0.5, ja-tkstep-8.0.4 ja-exmh-2.0.2 X11/TK based mail reader front end to MH for Japanese environments. Maintained by: ports@FreeBSD.ORG Also listed in: mail tk80 Requires: XFree86-3.3.3.1, ja-less-332, ja-mh-6.8.4, ja-tcl-8.0.5, ja-tk-8.0.5, mm-2.7 ja-gtkicq-0.60 icq clone for japanese user Maintained by: stanaka@bb.mbn.or.jp Also listed in: net Requires: XFree86-3.3.3.1, gettext-0.10.35, glib-1.2.2, gmake-3.77, gtk-1.2.2, ja-libjcode-1.00 ja-jgv-0.2a A graphic viewer with various image types. Maintained by: kiri@pis.toba-cmt.ac.jp Also listed in: graphics windowmaker tkstep80 Requires: XFree86-3.3.3.1, ja-libimg-1.2b2, ja-tcl-8.0.5, ja-tkstep-8.0.4 ja-kdelocale-0.9.3 Japanese locale files for the KDE. Maintained by: imura@cs.titech.ac.jp Also listed in: kde Requires: XFree86-3.3.3.1, bzip2-0.9.0c, gettext-0.10.35, giflib-3.0, jpeg-6b, kdelibs-i18n-1.1.1, kdesupport-i18n-1.1.1, qt-i18n-1.44 ja-latex2html-98.1j2.1 Japanese latex2html with latex2html-98.1jpatch-2.1 patch Maintained by: ixtl@utmc.or.jp Also listed in: textproc Requires: XFree86-3.3.3.1, dvips-5.76, ghostscript-5.10, gsfonts-5.10, jpeg-6b, latex2e-98.01, netpbm-94.3.1, png-1.0.3, tex-3.14159, tiff-3.4b37 ja-libimg-1.2b2 Enhanced Tk, adding support for many other Image formats:BMP,XBM,XPM,... Maintained by: kiri@pis.toba-cmt.ac.jp Also listed in: graphics tk80 Requires: XFree86-3.3.3.1, autoconf-2.13, ja-tcl-8.0.5, ja-tk-8.0.5, m4-1.4 ja-libjcode-1.00 Japanese charset conversion libraly Maintained by: stanaka@bb.mbn.or.jp Also listed in: net ja-muggy-1.2b A simple text editor for the X on TkStep. Maintained by: kiri@pis.toba-cmt.ac.jp Also listed in: editors windowmaker tkstep80 Requires: XFree86-3.3.3.1, ja-libimg-1.2b2, ja-tcl-8.0.5, ja-tkstep-8.0.4 ja-recycler-0.1a A trashcan software that replaces the offix' trash. Maintained by: kiri@pis.toba-cmt.ac.jp Also listed in: deskutils windowmaker tkstep80 Requires: XFree86-3.3.3.1, ja-libimg-1.2b2, ja-tcl-8.0.5, ja-tkstep-8.0.4 ja-rubytk-1.2.5 a Ruby interface to Tcl/Tk libraries. Maintained by: yasuf@big.or.jp Also listed in: x11-toolkits Requires: XFree86-3.3.3.1, ja-tcl-8.0.5, ja-tk-8.0.5, ruby-1.2.5 ja-seizedesktop-0.1a A customizer of disktop screen environment. Maintained by: kiri@pis.toba-cmt.ac.jp Also listed in: misc windowmaker tkstep80 Requires: XFree86-3.3.3.1, ja-libimg-1.2b2, ja-tcl-8.0.5, ja-tkstep-8.0.4 ja-tkstep-8.0.4 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.3.1, autoconf-2.13, ja-tcl-8.0.5, m4-1.4 Category lang (http://www.freebsd.org/ports/lang.html) ================================================================== egcs-devel-19990418 EGCS enhanced version of the GNU compiler suite (inprogress version) Maintained by: obrien@FreeBSD.org Requires: gmake-3.77 f2c-2.0.1 Fortran-to-C converter and its run-time libraries. Maintained by: kargl@troutmask.apl.washington.edu f77-0.3 Fortran 77 driver utility for f2c and gcc Maintained by: kargl@troutmask.apl.washington.edu Requires: f2c-2.0.1, fpp-1.1 jdk-tutorial-1.1.7 Sun's Java Developers Kit tutorial Maintained by: martti.kuparinen@ericsson.com otcl-1.0a4 MIT Object Tcl Maintained by: obonilla@fisicc-ufm.edu Requires: XFree86-3.3.3.1, tcl-8.0.5, tk-8.0.5 siod-3.4 a small footprint implementation of the Scheme programming language Maintained by: jkoshy@FreeBSD.ORG Category mail (http://www.freebsd.org/ports/mail.html) ================================================================== bbmail-0.5.1 A tool intended for Blackbox that checks for new mail. Maintained by: cpiazza@home.net Requires: XFree86-3.3.3.1 mailx-0.5 Mail command with mailx extensions. Maintained by: issei@jp.FreeBSD.ORG qmail-contrib-0.1 Contributed programs for qmail. Maintained by: ports@freebsd.org Requires: qmail-1.03 qmailanalog-0.70 A collection of tools to analyze qmail-send's activity Maintained by: ports@freebsd.org Requires: qmail-1.03 Category misc (http://www.freebsd.org/ports/misc.html) ================================================================== asbutton-0.2 A dockapp that displays 4 or 9 buttons to run apps of your choice. Maintained by: jim@phrantic.phear.net Also listed in: windowmaker afterstep Requires: XFree86-3.3.3.1, xpm-3.4k cmatrix-0.98c Show a scrolling 'Matrix' like screen. Maintained by: andy@icc.surw.chel.su colortail-0.2.0 A colour-able replacement for tail(1). Maintained by: cpiazza@home.net enlightenment-conf-0.15 enlightenment's configuration tool. Maintained by: vanilla@FreeBSD.ORG Also listed in: gnome Requires: ORBit-0.4.3, XFree86-3.3.3.1, esound-0.2.8, gettext-0.10.35, giflib-3.0, glib-1.2.2, gmake-3.77, gnomeaudio-1.0.0, gnomecontrolcenter-1.0.5, gnomecore-1.0.5, gnomelibs-1.0.9, gtk-1.2.2, guile-1.3, imlib-1.9.4, jpeg-6b, libaudiofile-0.1.6, libghttp-1.0.2, libgtop-1.0.1, png-1.0.3, tiff-3.4b37, xpm-3.4k seizedesktop-0.1a A customizer of disktop screen environment. Maintained by: kiri@pis.toba-cmt.ac.jp Also listed in: x11-toolkits windowmaker tkstep80 Requires: XFree86-3.3.3.1, jpeg-6b, libimg-1.1.4, png-1.0.3, tcl-8.0.5, tiff-3.4b37, tk-8.0.5, tkstep-8.0.4, xpm-3.4k tkRunIt-0.94.1 GUI app launcher with completion and history Maintained by: steve@farrell.org Requires: XFree86-3.3.3.1, tcl-8.0.5, tk-8.0.5 vera-1.5 Virtual Entity of Relevant Acronyms. Maintained by: dima@Chg.RU wmmand-1.0 A DockApp mandelbrot explorer. Maintained by: cpiazza@home.net Also listed in: windowmaker Requires: XFree86-3.3.3.1, gmake-3.77, xpm-3.4k Category net (http://www.freebsd.org/ports/net.html) ================================================================== IglooFTP-0.6.1 Easy to use FTP client for X Window System. Maintained by: andy@icc.surw.chel.su Requires: XFree86-3.3.3.1, gettext-0.10.35, glib-1.2.2, gtk-1.2.2 coda-doc-5.2.0.1 an experimental, replicated, high-performance network file system. Maintained by: ijliao@csie.nctu.edu.tw icqlib-0.1.3 icqlib (not libicq!), used by kicq Maintained by: paxvel@iname.com irssi-0.7.9 Irssi is an IRC client that uses GTK+ and (optionally) GNOME. Maintained by: jim@phrantic.phear.net Requires: XFree86-3.3.3.1, bzip2-0.9.0c, gettext-0.10.35, glib-1.2.2, gmake-3.77, gtk-1.2.2 kicq-0.3.0 KDE/Qt based ICQ clone Maintained by: paxvel@iname.com Also listed in: kde Requires: Mesa-3.0, XFree86-3.3.3.1, giflib-3.0, icqlib-0.1.3, jpeg-6b, kdelibs-1.1.1, png-1.0.3, qt-1.42, tiff-3.4b37 libicq-0.33 library to add ICQ communication support to your software Maintained by: flathill@FreeBSD.ORG Requires: glib-1.2.2 libnet-0.9.3 A C library for creating IP packets Maintained by: shipley@dis.org nam-1.0a7 The UCB/LBNL Network Animator Maintained by: obonilla@fisicc-ufm.edu Requires: XFree86-3.3.3.1, otcl-1.0a4, tcl-8.0.5, tclcl-1.0b8, tk-8.0.5 ns-2.1b5 The UCB/LBNL Network Simulator Version 2 Maintained by: obonilla@fisicc-ufm.edu Requires: XFree86-3.3.3.1, otcl-1.0a4, tcl-8.0.5, tclcl-1.0b8, tk-8.0.5 tdetect-0.2.1 A Utility for detecting traceroutes and reporting them via. syslog Maintained by: shipley@dis.org Category print (http://www.freebsd.org/ports/print.html) ================================================================== rlpr-2.00 Send print jobs to lpd servers anywhere on a network. Maintained by: mi@aldan.algebra.com Also listed in: net Requires: gettext-0.10.35 t1utils-1.10.1 Five utilities for manipulating t1 scripts. Maintained by: mwm@phone.net Category russian (http://www.freebsd.org/ports/russian.html) ================================================================== ru-apache-1.3.6 The extremely popular Apache http server. Very fast, very clean. Maintained by: vns@delta.odessa.ua Also listed in: www Category security (http://www.freebsd.org/ports/security.html) ================================================================== raproxy-3.0b1 Real Audio (5.0 and previous) stream proxy Maintained by: nsayer@freebsd.org Also listed in: net audio slush-0.1.0 A telnet-like application which uses a secure SSL channel Maintained by: shipley@dis.org Also listed in: net Requires: openssl-0.9.2b Category sysutils (http://www.freebsd.org/ports/sysutils.html) ================================================================== cpbk-2.0 Backup Copy programm. Maintained by: ozz@FreeBSD.org.ru ffsrecov-0.1 recover files from a corrupt FFS Maintained by: jmg@freebsd.org Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== java2html-0.5 Java sources to HTML converter Maintained by: mkamm@gmx.net Also listed in: www Requires: autoconf-2.13, m4-1.4 nicetext-0.9 Convert files to pseudo-natural-language text and back again. Maintained by: markc@ctgi.net Requires: gmake-3.77 Category www (http://www.freebsd.org/ports/www.html) ================================================================== evg-1.0.1 Create index pages in HTML for photo galleries. Maintained by: dima@Chg.RU Requires: ImageMagick-4.2.2, XFree86-3.3.3.1, freetype-1.2, jbigkit-1.0, jpeg-6b, png-1.0.3, python-1.5.2, tcl-8.0.5, tiff-3.4b37, tk-8.0.5, xv-3.10a lynx-ssl-2.8.1.1 A non-graphical, text-based ssl-enabled World-Wide Web client. Maintained by: sec@42.org Requires: openssl-0.9.2b Roxen-1.2.46 an extensible http and ftp server with a lot of features. Maintained by: k@123.org Category x11-clocks (http://www.freebsd.org/ports/x11-clocks.html) ================================================================== asclock-gtk-beta-2.1.10 New flavor of asclock (GTK version). Maintained by: kuriyama@FreeBSD.ORG Also listed in: afterstep windowmaker Requires: XFree86-3.3.3.1, gettext-0.10.35, glib-1.2.2, gtk-1.2.2 asclock-xlib-2.0.10 New flavor of asclock. Maintained by: kuriyama@FreeBSD.ORG Also listed in: afterstep windowmaker Requires: XFree86-3.3.3.1, xpm-3.4k bbdate-0.2.1 A tool made for Blackbox that displays the date in a decorated window Maintained by: cpiazza@home.net Requires: XFree86-3.3.3.1 wmtz-0.2 wmtz is a dockapp that displays the time in different time zones. Maintained by: jim@phrantic.phear.net Also listed in: windowmaker afterstep Requires: XFree86-3.3.3.1, gmake-3.77, xpm-3.4k xtu-1.0 transparent analog clock for X11 Maintained by: runge@rostock.zgdv.de Requires: XFree86-3.3.3.1, xpm-3.4k Category x11-fm (http://www.freebsd.org/ports/x11-fm.html) ================================================================== binder-1.3 A file manager on X window with TkStep. Maintained by: kiri@pis.toba-cmt.ac.jp Also listed in: windowmaker tkstep80 Requires: XFree86-3.3.3.1, jpeg-6b, libimg-1.1.4, png-1.0.3, tcl-8.0.5, tiff-3.4b37, tk-8.0.5, tkstep-8.0.4, xpm-3.4k xnc-4.0.8 File manager for X Window Maintained by: dima@chg.ru Requires: XFree86-3.3.3.1, bzip2-0.9.0c, gmake-3.77, lha-1.14d, rar-2.02, rpm-2.5.5, unarj-2.43, unzip-5.40, zip-2.2 Category x11-toolkits (http://www.freebsd.org/ports/x11-toolkits.html) ================================================================== qt-i18n-1.44 A C++ X GUI toolkit. Maintained by: imura@cs.titech.ac.jp Requires: XFree86-3.3.3.1, egcs-1.1.2, gmake-3.77 rubytk-1.2.5 a Ruby interface to Tcl/Tk libraries. Maintained by: yasuf@big.or.jp Requires: XFree86-3.3.3.1, ruby-1.2.5, tcl-8.0.5, tk-8.0.5 xview-3.2.1 X Window-System-based Visual/Integrated Environment for Workstations Maintained by: ports@FreeBSD.ORG Requires: XFree86-3.3.3.1 Category x11-wm (http://www.freebsd.org/ports/x11-wm.html) ================================================================== fvwm-i18n-2.2 Internationalized fvwm version 2, a window manager for X Maintained by: matusita@jp.freebsd.org Requires: XFree86-3.3.3.1, xpm-3.4k Category x11 (http://www.freebsd.org/ports/x11.html) ================================================================== kdebase-i18n-1.1.1 Base modules for the KDE integrated X11 desktop Maintained by: imura@cs.titech.ac.jp Also listed in: kde Requires: Mesa-3.0, XFree86-3.3.3.1, bzip2-0.9.0c, gettext-0.10.35, giflib-3.0, gmake-3.77, ja-kdelocale-0.9.3, jpeg-6b, kdelibs-i18n-1.1.1, kdesupport-i18n-1.1.1, qt-i18n-1.44, xpm-3.4k kdelibs-i18n-1.1.1 Support libraries for the KDE integrated X11 desktop Maintained by: imura@cs.titech.ac.jp Also listed in: kde Requires: XFree86-3.3.3.1, bzip2-0.9.0c, gettext-0.10.35, giflib-3.0, gmake-3.77, jpeg-6b, kdesupport-i18n-1.1.1, qt-i18n-1.44 xballoon-1.0 Balloons move on root window Maintained by: sakai@miya.ee.kagu.sut.ac.jp Requires: XFree86-3.3.3.1, xpm-3.4k xlupe-1.0 magnifying glass for X. like xmag but with continously updates. Maintained by: runge@rostock.zgdv.de Requires: XFree86-3.3.3.1, xpm-3.4k Updated ports last two weeks - ----------------------------------- Category astro (http://www.freebsd.org/ports/astro.html) ================================================================== wmMoonClock-1.26 Displays the phase of the moon, plus orbital data. Maintained by: kris@FreeBSD.ORG Also listed in: windowmaker Requires: XFree86-3.3.3.1, gmake-3.77, xpm-3.4k Category audio (http://www.freebsd.org/ports/audio.html) ================================================================== ascd-0.12.1 A dockable cd player for AfterStep or WindowMaker. Maintained by: jim@phrantic.phear.net Also listed in: afterstep windowmaker Requires: XFree86-3.3.3.1, xpm-3.4k dap-2.0.2 Audio sample editing and processing suite. Maintained by: yoshiaki@kt.rim.or.jp Requires: XFree86-3.3.3.1, xforms-0.88.1, xpm-3.4k kdemultimedia-1.1.1 KDE audio tools. Maintained by: se@freebsd.org Also listed in: kde Requires: Mesa-3.0, XFree86-3.3.3.1, bzip2-0.9.0c, giflib-3.0, gmake-3.77, jpeg-6b, kdelibs-1.1.1, png-1.0.3, qt-1.42, tiff-3.4b37 mikmod-3.1.5 Mod player which plays MTM, STM, XM, MOD, S3M, ULT, UNI and IT mods. Maintained by: yoshiaki@kt.rim.or.jp Requires: gmake-3.77, libmikmod-3.1.6 mixer.app-1.4.0 Another mixer intended for the windowmaker dockapp. Maintained by: cpiazza@home.net Requires: XFree86-3.3.3.1, xpm-3.4k rio-1.06 Tool for transferring files to and from the Diamond Rio .mp3 player Maintained by: derm@ibm.net Category benchmarks (http://www.freebsd.org/ports/benchmarks.html) ================================================================== polygraph-1.2.0 A benchmarking tool for Web proxies. Maintained by: dima@Chg.RU Also listed in: www Category cad (http://www.freebsd.org/ports/cad.html) ================================================================== geda-19990327 GNU Electronic Design Automation Maintained by: vanilla@FreeBSD.ORG Requires: XFree86-3.3.3.1, gettext-0.10.35, glib-1.2.2, gtk-1.2.2, guile-1.3 Category comms (http://www.freebsd.org/ports/comms.html) ================================================================== rzsz-3.50 Receive/Send files via X/Y/ZMODEM protocol. Maintained by: ache@FreeBSD.ORG Requires: unzip-5.40 Category converters (http://www.freebsd.org/ports/converters.html) ================================================================== kdesupport-1.1.1 Mime and UUENCODE/DECODE libraries for the KDE integrated X11 desktop Maintained by: se@freebsd.org Also listed in: kde Requires: Mesa-3.0, XFree86-3.3.3.1, bzip2-0.9.0c, qt-1.42 Category databases (http://www.freebsd.org/ports/databases.html) ================================================================== mysql-3.22.22 a multithreaded SQL database. Maintained by: dirk@FreeBSD.ORG Category deskutils (http://www.freebsd.org/ports/deskutils.html) ================================================================== gnomepim-1.0.7 gnome pim package. Maintained by: nacai@iname.com Also listed in: gnome Requires: ORBit-0.4.3, XFree86-3.3.3.1, esound-0.2.8, gettext-0.10.35, giflib-3.0, glib-1.2.2, gmake-3.77, gnomeaudio-1.0.0, gnomecore-1.0.5, gnomelibs-1.0.9, gtk-1.2.2, guile-1.3, imlib-1.9.4, jpeg-6b, libaudiofile-0.1.6, libghttp-1.0.2, libgtop-1.0.1, png-1.0.3, tiff-3.4b37, xpm-3.4k gtimer-1.1.4 A timer for your personal activities. Maintained by: cpiazza@home.net Requires: XFree86-3.3.3.1, bzip2-0.9.0c, gettext-0.10.35, glib-1.2.2, gmake-3.77, gtk-1.2.2 korganizer-1.1 A Calendar / Scheduling tool (PIM) for KDE Maintained by: hanspb@persbraten.vgs.no Also listed in: kde Requires: Mesa-3.0, XFree86-3.3.3.1, bzip2-0.9.0c, giflib-3.0, gmake-3.77, jpeg-6b, kdelibs-1.1.1, png-1.0.3, qt-1.42, tiff-3.4b37 teapot-1.03 Full-screen curses based spread sheet program Maintained by: andy@icc.surw.chel.su wmpinboard-0.8.3 Post-it notes for the WindowMaker dock or AfterStep Wharf. Maintained by: jim@phrantic.phear.net Also listed in: afterstep windowmaker Requires: XFree86-3.3.3.1, xpm-3.4k Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== ORBit-0.4.3 high-performance CORBA ORB with support for the C language Maintained by: clkao@CirX.ORG Also listed in: gnome Requires: glib-1.2.2, gmake-3.77 cons-1.6 A Perl-based Make Replacement. Maintained by: rv@fore.com Requires: p5-MD5-1.7 ddd-3.1.4 Data Display Debugger -- a common graphical front-end for GDB/DBX/XDB Maintained by: obrien@FreeBSD.org Requires: XFree86-3.3.3.1, gmake-3.77, xpm-3.4k doc++-3.3.11 Javadoc style C++ documentatation system. Maintained by: Ruslan@Shevchenko.Kiev.UA Requires: XFree86-3.3.3.1, ghostscript-5.10, gmake-3.77, gsfonts-5.10, jpeg-6b, netpbm-94.3.1, png-1.0.3, teTeX-0.4, tiff-3.4b37 glib-1.2.2 Some useful routines of C programming. Maintained by: vanilla@FreeBSD.ORG libtool-1.3 Generic shared library support script. Maintained by: reg@shale.csir.co.za m68kgdb-4.18 A Motorola 68k debugger for cross-development purposes. Maintained by: Jerry.Hicks@Glenayre.com Requires: gmake-3.77 mm-1.0.2 shared memory library for applications with pre-forked process model Maintained by: rse@engelschall.com qtarch-1.4.4 Qt Architect (formerly known as the Qt Dialog Editor or dlgedit) Maintained by: elwood@mc5sys.in-berlin.de Requires: Mesa-3.0, XFree86-3.3.3.1, giflib-3.0, gmake-3.77, jpeg-6b, kdelibs-1.1.1, png-1.0.3, qt-1.42, tiff-3.4b37 ups-3.34b Source level C debugger that runs under X11 Maintained by: obrien@FreeBSD.org Requires: XFree86-3.3.3.1, gmake-3.77 vtcl-1.2.0 An Application Development Environment For the TCL/TK language. Maintained by: vanilla@FreeBSD.ORG Also listed in: tk80 Requires: XFree86-3.3.3.1, tcl-8.0.5, tk-8.0.5 Category editors (http://www.freebsd.org/ports/editors.html) ================================================================== apel-emacs-9.18 A Portable Emacs Library for emacs. Maintained by: shige@FreeBSD.ORG Also listed in: elisp Requires: XFree86-3.3.3.1, emacs-19.34b apel-emacs20-9.18 A Portable Emacs Library for emacs20. Maintained by: shige@FreeBSD.ORG Also listed in: elisp Requires: XFree86-3.3.3.1, emacs-20.3 apel-mule-9.18 A Portable Emacs Library for mule. Maintained by: shige@FreeBSD.ORG Also listed in: elisp Requires: XFree86-3.3.3.1, mule-2.3, mule-common-2.3 le-1.5.1 LE text editor Maintained by: andy@icc.surw.chel.su lpe-1.1.9 A "lightweight programmer's editor." Maintained by: cpiazza@home.net Requires: gmake-3.77, libslang-1.2.2 Category emulators (http://www.freebsd.org/ports/emulators.html) ================================================================== wine-99.04.26 MS-Windows 3.1/95/NT emulator for Unix (Alpha release). Maintained by: se@FreeBSD.ORG Requires: XFree86-3.3.3.1, xpm-3.4k xsystem35-1.0.7 AliceSoft System 3.5 on X Window System Maintained by: k5@respo.or.jp Requires: XFree86-3.3.3.1, gettext-0.10.35, glib-1.2.2, gtk-1.2.2 xzx-2.8.1 ZX Spectrum (48K/128K/+3) Emulator for X11 Windows Maintained by: sheldonh@iafrica.com Requires: XFree86-3.3.3.1 Category games (http://www.freebsd.org/ports/games.html) ================================================================== block-0.6 Small text based maze game Maintained by: andy@icc.surw.chel.su freeciv-1.8.0 A civilisation clone for x; multiplayer Maintained by: ada@bsd.org Requires: XFree86-3.3.3.1, bzip2-0.9.0c, xpm-3.4k gnomegames-1.0.2 the game applications package for the Gnome Desktop Environment Maintained by: nacai@iname.com Also listed in: gnome Requires: ORBit-0.4.3, XFree86-3.3.3.1, esound-0.2.8, gettext-0.10.35, giflib-3.0, glib-1.2.2, gmake-3.77, gnomeaudio-1.0.0, gnomecore-1.0.5, gnomelibs-1.0.9, gtk-1.2.2, guile-1.3, imlib-1.9.4, jpeg-6b, libaudiofile-0.1.6, libghttp-1.0.2, libgtop-1.0.1, png-1.0.3, tiff-3.4b37, xpm-3.4k gtkballs-1.04 Lines-like simple logic game for X Window System. Maintained by: andy@icc.surw.chel.su Requires: XFree86-3.3.3.1, gettext-0.10.35, glib-1.2.2, gtk-1.2.2 inform-6.21 Compiler for producing text adventure games. Maintained by: mph@freebsd.org Requires: unzip-5.40 kdegames-1.1.1 Games for the KDE integrated X11 desktop Maintained by: se@freebsd.org Also listed in: kde Requires: Mesa-3.0, XFree86-3.3.3.1, bzip2-0.9.0c, giflib-3.0, gmake-3.77, jpeg-6b, kdelibs-1.1.1, kdesupport-1.1.1, png-1.0.3, qt-1.42, tiff-3.4b37 libshhcards-1.0.4 Library for displaying game cards on X Window System. Maintained by: andy@icc.surw.chel.su Requires: XFree86-3.3.3.1, gmake-3.77, xpm-3.4k pysol-2.12 Solitaire game, written in Python. Maintained by: tg@FreeBSD.ORG Requires: XFree86-3.3.3.1, python-1.5.2, tcl-8.0.5, tk-8.0.5 qstat-2.3c A command line program to query game servers on the net Maintained by: darius@dons.net.au xqf-0.8.99.2 Find quake servers Maintained by: steve@farrell.org Requires: XFree86-3.3.3.1, gettext-0.10.35, glib-1.2.2, gmake-3.77, gtk-1.2.2, qstat-2.3c xzip-1.8.1 An Infocom game interpreter that runs under X11. Maintained by: mph@freebsd.org Requires: XFree86-3.3.3.1 Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== gtksee-0.3.0 image viewer Maintained by: dirk@FreeBSD.ORG Requires: XFree86-3.3.3.1, bzip-0.21, bzip2-0.9.0c, gettext-0.10.35, glib-1.2.2, gtk-1.2.2, jpeg-6b, png-1.0.3, tiff-3.4b37 kdegraphics-1.1.1 Graphics programs (PS,DVI,FAX,...) for the KDE integrated X11 desktop Maintained by: se@freebsd.org Also listed in: kde Requires: Mesa-3.0, XFree86-3.3.3.1, bzip2-0.9.0c, giflib-3.0, gmake-3.77, jpeg-6b, kdelibs-1.1.1, png-1.0.3, qt-1.42, tiff-3.4b37 povray-3.1e Persistence of Vision Ray Tracer Maintained by: olli@fromme.com Requires: XFree86-3.3.3.1, png-1.0.3 sketch-0.5.5 An interactive drawing program. Maintained by: ports@FreeBSD.ORG Requires: XFree86-3.3.3.1, jpeg-6b, py-imaging-0.3b2, python-1.5.2, tcl-8.0.5, tk-8.0.5 tiff-3.4b37 libtiff provides support for the Tag Image File Format (TIFF) Maintained by: ports@freebsd.org Requires: jpeg-6b Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-eterm-0.8.9 X11 terminal emulator based on rxvt/xterm that supports Japanese Maintained by: nobutaka@nobutaka.com Also listed in: x11 Requires: XFree86-3.3.3.1, gettext-0.10.35, giflib-3.0, glib-1.2.2, gmake-3.77, gtk-1.2.2, imlib-1.9.4, jpeg-6b, png-1.0.3, tiff-3.4b37 ja-ewipe-1.1.0 tcl/tck-based presentation tool, with japanese configuration. Maintained by: itojun@itojun.org Also listed in: misc tk42 Requires: XFree86-3.3.3.1, ja-tcl-7.6, ja-tk-4.2 ja-handbook-3 The Japanese version of FreeBSD handbook. Maintained by: ports@FreeBSD.ORG Requires: docbook-3.0, dsssl-docbook-modular-1.40, iso8879-1986, jade-1.2.1, tidy-0.4.99.2 ja-libslang-1.2.2.j055 A library permits a programmer to develop software. Maintained by: mega@minz.org Also listed in: devel ja-man-doc-3.2 Japanese online manual pages corresponding to /usr/share/man/man* Maintained by: horikawa@jp.FreeBSD.org ja-netscape-communicator-4.51 netscape web-surfboard with Japanese resources Maintained by: sada@FreeBSD.ORG Also listed in: www Requires: XFree86-3.3.3.1, ja-elisa8x8-1.0, ja-kaname12-1.0, ja-kappa20-0.3, ja-naga10-1.0, ja-netscape-fonts-1.0, netscape-communicator-4.51 ja-netscape-navigator-4.51 netscape web-surfboard with Japanese resources Maintained by: sada@FreeBSD.ORG Also listed in: www Requires: XFree86-3.3.3.1, ja-elisa8x8-1.0, ja-kaname12-1.0, ja-kappa20-0.3, ja-naga10-1.0, ja-netscape-fonts-1.0, netscape-navigator-4.5.1 ja-perl-5.005.03 Pattern Extraction and Recognition Language + Japanese patches. Maintained by: shige@FreeBSD.ORG Also listed in: perl5 ja-ppxp-0.99030108 A new and easy to use PPP software Maintained by: nosuzuki@e-mail.ne.jp Also listed in: net tk80 Requires: XFree86-3.3.3.1, gmake-3.77, ja-tcl-8.0.5, ja-tk-8.0.5, xforms-0.88.1, xpm-3.4k ja-rxvt-2.6p4 An xterm replacement that supports pixmap background and Japanese Maintained by: honda@kashio.info.mie-u.ac.jp Also listed in: x11 Requires: XFree86-3.3.3.1, xpm-3.4k ja-xjman-0.3 Japanized X manual from "The X Japanese Documentation Project". Maintained by: sada@FreeBSD.ORG Category lang (http://www.freebsd.org/ports/lang.html) ================================================================== dylan-2.2.0 CMU Gwydion project interpreter and compiler for the Dylan language. Maintained by: housel@acm.org Requires: gmake-3.77 gnomeobjc-1.0.2 objective C libraries for the Gnome Desktop Environment Maintained by: nacai@iname.com Also listed in: gnome Requires: ORBit-0.4.3, XFree86-3.3.3.1, esound-0.2.8, gettext-0.10.35, giflib-3.0, glib-1.2.2, gnomelibs-1.0.9, gtk-1.2.2, imlib-1.9.4, jpeg-6b, libaudiofile-0.1.6, png-1.0.3, tiff-3.4b37, xpm-3.4k nawk-99.04.16 Brian Kernighan's pattern scanning and processing language Maintained by: josh@quick.net python-1.5.2 An interpreted object-oriented programming language. Maintained by: tg@FreeBSD.ORG Also listed in: python tk80 Requires: XFree86-3.3.3.1, tcl-8.0.5, tk-8.0.5 squeak-2.4 Full Smalltalk 80 with portability to UN*X, Mac, and Windows. Maintained by: jesse@cs.uni-magdeburg.de Requires: XFree86-3.3.3.1, gmake-3.77 swi-pl-3.2.5 Edinburgh-style Prolog compiler. Maintained by: max@FreeBSD.ORG tcl-8.0.5 Tool Command Language. Maintained by: cwt@freebsd.org Also listed in: tcl80 Category mail (http://www.freebsd.org/ports/mail.html) ================================================================== adcomplain-3.51 complain about inappropriate commercial use (f.e. SPAM) of usenet/e-mail Maintained by: ache@FreeBSD.org Also listed in: news cyrus-1.5.19 The cyrus mail server, supporting POP3, KPOP, and IMAP4 protocols Maintained by: stb@FreeBSD.ORG Also listed in: tcl80 Requires: makedepend-95.07.05, tcl-8.0.5 glbiff-0.2.11 Xbiff-like program for X Window System with nice 3D output. Maintained by: andy@icc.surw.chel.su Requires: Mesa-3.0, XFree86-3.3.3.1 kbiff-2.3 mail notification utility for KDE with nice features Maintained by: kris@FreeBSD.ORG Also listed in: kde Requires: Mesa-3.0, XFree86-3.3.3.1, bzip2-0.9.0c, gettext-0.10.35, giflib-3.0, jpeg-6b, kdelibs-1.1.1, png-1.0.3, qt-1.42, tiff-3.4b37 mmr-1.5.2 Curses based MIME Mail Reader. Maintained by: andy@icc.surw.chel.su postilion-0.9.2 This is a mail client with the NeXt look. Maintained by: gljohns@bellsouth.net Also listed in: tk80 Requires: XFree86-3.3.3.1, jpeg-6b, libimg-1.1.4, png-1.0.3, tcl-8.0.5, tiff-3.4b37, tk-8.0.5 smail-3.2.0.106 A program used for receiving and delivering mail. Maintained by: torstenb@FreeBSD.ORG Requires: libident-0.22, tcp_wrappers-7.6 Category math (http://www.freebsd.org/ports/math.html) ================================================================== gnumeric-0.25 The GNOME spreadsheet Maintained by: nacai@iname.com Also listed in: gnome Requires: ORBit-0.4.3, XFree86-3.3.3.1, esound-0.2.8, gettext-0.10.35, giflib-3.0, glib-1.2.2, gnomeaudio-1.0.0, gnomecore-1.0.5, gnomelibs-1.0.9, gtk-1.2.2, guile-1.3, imlib-1.9.4, jpeg-6b, libaudiofile-0.1.6, libghttp-1.0.2, libgtop-1.0.1, libxml-1.0.0, png-1.0.3, python-1.5.2, tcl-8.0.5, tiff-3.4b37, tk-8.0.5, xpm-3.4k siag-3.1.9 Scheme-based spreadsheet for X11 and curses. Maintained by: ports@freebsd.org Requires: XFree86-3.3.3.1, Xaw3d-1.5, guile-1.3, xpm-3.4k Category misc (http://www.freebsd.org/ports/misc.html) ================================================================== cstream-1.3 dd(1)-like tool, precise bandwidth limiting/reporting, fifo support Maintained by: cracauer@cons.org ewipe-1.1.0 tcl/tk-based presentation tool. Maintained by: itojun@itojun.org Also listed in: tk42 jargon-4.1.1 The famous jargon file in info file format. Maintained by: s.moeding@ndh.net kdeutils-1.1.1 Utilities for the KDE integrated X11 desktop Maintained by: se@freebsd.org Also listed in: kde Requires: Mesa-3.0, XFree86-3.3.3.1, bzip2-0.9.0c, giflib-3.0, gmake-3.77, jpeg-6b, kdelibs-1.1.1, png-1.0.3, qt-1.42, tiff-3.4b37 kp-1.00 The Keyboard Practicer, touch-type training program Maintained by: asami@FreeBSD.org Requires: XFree86-3.3.3.1, xpm-3.4k lv-4.41 Powerful Multilingual File Viewer Maintained by: sumikawa@kame.net quotes-1.4.0 Script to fetch headlines and financial news. Maintained by: dima@Chg.RU rpm-2.5.5 The Red Hat Package Manager Maintained by: ports@FreeBSD.ORG Requires: gdbm-1.7.3, gmake-3.77 wmWeather-1.31 A WMaker dockapp which displays meteorological data for your city. Maintained by: kris@FreeBSD.ORG Also listed in: windowmaker Requires: XFree86-3.3.3.1, gmake-3.77, xpm-3.4k Category net (http://www.freebsd.org/ports/net.html) ================================================================== curl-5.8 Non-interactive tool to get files from FTP, GOPHER, HTTP(S) servers. Maintained by: kkennawa@physics.adelaide.edu.au Also listed in: www etherboot-4.1p9 Netboot FreeBSD a.out/ELF kernels. Maintained by: ambrisko@whistle.com Requires: bcc-95.3.12, bzip2-0.9.0c, gmake-3.77 ezbounce-0.85 A highly configurable IRC Proxy. Maintained by: cpiazza@home.net gaim-0.8.0 GAIM is a gtk+ open source 'clone' of AOL's Instant Messenger client. Maintained by: jim@phrantic.phear.net Requires: XFree86-3.3.3.1, gettext-0.10.35, glib-1.2.2, gmake-3.77, gtk-1.2.2 greed-0.801 A utility for downloading files with resume capabilities. Maintained by: cpiazza@home.net gtksamba-0.3.2pl1 Samba configuration tool for X Window System. Maintained by: andy@icc.surw.chel.su Requires: ORBit-0.4.3, XFree86-3.3.3.1, esound-0.2.8, gettext-0.10.35, giflib-3.0, glib-1.2.2, gnomelibs-1.0.9, gtk-1.2.2, imlib-1.9.4, jpeg-6b, libaudiofile-0.1.6, png-1.0.3, tiff-3.4b37, xpm-3.4k ipw-3.3a A "whois" replacement that automatically queries several databases. Maintained by: mph@freebsd.org isc-dhcp-2.b1.27 ISC Dynamic Host Configuration Protocol client and server code Maintained by: jseger@FreeBSD.org kdenetwork-1.1.1 Network modules for the KDE integrated X11 desktop Maintained by: se@freebsd.org Also listed in: news kde Requires: Mesa-3.0, XFree86-3.3.3.1, bzip2-0.9.0c, gdbm-1.7.3, giflib-3.0, gmake-3.77, jpeg-6b, kdelibs-1.1.1, kdesupport-1.1.1, png-1.0.3, qt-1.42, tiff-3.4b37, uulib-0.5.13 licq-0.61 X11 and QT-based ICQ-compatible program. Maintained by: green@unixhelp.org Requires: Mesa-3.0, XFree86-3.3.3.1, gmake-3.77, qt-1.42 mpd-2.0b2 Multi-link PPP daemon Maintained by: archie@freebsd.org naim-0.9.4 curses based AOL Instant Messager implementation. Maintained by: mharo@FreeBSD.org ninja-1.0.8 Another ircII based irc client. Maintained by: cpiazza@home.net ntop-1.1 shows network usage with an interface similar to top(1) Maintained by: billf@FreeBSD.org p5-Net-RawIP-0.06b A perl module to manipulate raw IP packets. Maintained by: dima@chg.ru Also listed in: perl5 pavuk-0.9.12 HTTP, FTP and Gopher mirroring tool Maintained by: andy@icc.surw.chel.su Also listed in: www Requires: XFree86-3.3.3.1, gmake-3.77, xpm-3.4k ppxp-0.99030108 A new and easy to use PPP software Maintained by: nosuzuki@e-mail.ne.jp Also listed in: tk80 Requires: XFree86-3.3.3.1, gmake-3.77, tcl-8.0.5, tk-8.0.5, xforms-0.88.1, xpm-3.4k socks5-1.0.9 SOCKS v5 application layer gateway and clients Maintained by: imp@freebsd.org Also listed in: security spegla-1.04 A mirror program for FTP sites (written in C) Maintained by: jkh@FreeBSD.org xchat-0.9.5 X-Chat is a X11 (X Window System) IRC client, using the GTK+ toolkit. Maintained by: jim@phrantic.phear.net Requires: XFree86-3.3.3.1, gettext-0.10.35, glib-1.2.2, gmake-3.77, gtk-1.2.2 xwhois-0.3.4 A GTK-based frontend to the whois service (RFC954). Maintained by: kris@FreeBSD.ORG Requires: XFree86-3.3.3.1, gettext-0.10.35, glib-1.2.2, gtk-1.2.2 zebra-0.64.1 Free multithreaded RIPv1, RIPv2, OSPFv2, BGP4 route software (server/reflector) Maintained by: andreas@FreeBSD.ORG Category news (http://www.freebsd.org/ports/news.html) ================================================================== dejasearch-1.2 A frontend to DejaNews for searching Usenet archives. Maintained by: kris@FreeBSD.ORG Requires: p5-libwww-5.42 inn-2.2 InterNetNews -- the Internet meets Netnews. Maintained by: torstenb@FreeBSD.ORG Requires: gmake-3.77 Category palm (http://www.freebsd.org/ports/palm.html) ================================================================== pilot-link-0.9.2 PalmPilot communications utilities (backup/restore/install/debug/...) Maintained by: dima@freebsd.org Also listed in: comms tk80 Requires: XFree86-3.3.3.1, tcl-8.0.5, tk-8.0.5 Category print (http://www.freebsd.org/ports/print.html) ================================================================== lyx-1.0.2 document processor interfaced with LaTeX (nearly WYSIWYG) Maintained by: andreas@FreeBSD.ORG Requires: XFree86-3.3.3.1, teTeX-0.4, xforms-0.88.1, xpm-3.4k Category security (http://www.freebsd.org/ports/security.html) ================================================================== gnupg-0.9.6 The GNU Privacy Guard Maintained by: kuriyama@FreeBSD.ORG sudo-1.5.9.1 Allow others to run commands as root. Maintained by: mharo@FreeBSD.ORG xinetd-2.1.8.6b5 Replacement for inetd with control and logging Maintained by: markm@FreeBSD.ORG Requires: gmake-3.77 Category sysutils (http://www.freebsd.org/ports/sysutils.html) ================================================================== ascpu-1.6 CPU statistics monitor utility for XFree86 Maintained by: dima@Chg.RU Also listed in: afterstep Requires: XFree86-3.3.3.1, xpm-3.4k cdrecord-1.8a21 cdrecord, cdda2wav (CD-DA ripper) and mkisofs allow you to record CD-R's Maintained by: jmz@FreeBSD.org Requires: gmake-3.77 gnomeadmin-1.0.2 GNOME administraction package Maintained by: nacai@iname.com Also listed in: gnome Requires: ORBit-0.4.3, XFree86-3.3.3.1, esound-0.2.8, gettext-0.10.35, giflib-3.0, glib-1.2.2, gmake-3.77, gnomeaudio-1.0.0, gnomecore-1.0.5, gnomelibs-1.0.9, gnomeobjc-1.0.2, gtk-1.2.2, guile-1.3, imlib-1.9.4, jpeg-6b, libaudiofile-0.1.6, libghttp-1.0.2, libgtop-1.0.1, png-1.0.3, tiff-3.4b37, xpm-3.4k gnomecontrolcenter-1.0.5 control center for GNOME project. Maintained by: vanilla@FreeBSD.ORG Also listed in: gnome Requires: ORBit-0.4.3, XFree86-3.3.3.1, esound-0.2.8, gettext-0.10.35, giflib-3.0, glib-1.2.2, gmake-3.77, gnomeaudio-1.0.0, gnomecore-1.0.5, gnomelibs-1.0.9, gtk-1.2.2, guile-1.3, imlib-1.9.4, jpeg-6b, libaudiofile-0.1.6, libghttp-1.0.2, libgtop-1.0.1, libtool-1.3, png-1.0.3, tiff-3.4b37, xpm-3.4k mergemaster-1.24 Script to aid with merging configuration files during an upgrade Maintained by: Studded@gorean.org mkhybrid-1.12b5.2 create a hybrid ISO9660/JOLIET/HFS/Rock Ridge filesystem. Maintained by: murray@cdrom.com Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== aspell-0.27.2 Spelling checker with better suggestion logic than ispell Maintained by: josh@quick.net Requires: egcs-1.1.2, gmake-3.77 c2html-0.5 C-language sources to HTML converter Maintained by: mkamm@gmx.net Also listed in: www Requires: autoconf-2.13, m4-1.4 dsssl-docbook-modular-1.40 DSSSL stylesheets for the DocBook DTD by Norman Walsh Maintained by: kuriyama@FreeBSD.ORG Requires: docbook-3.0, iso8879-1986, unzip-5.40 tth-2.22 A TeX to HTML translator Maintained by: ports@FreeBSD.ORG Requires: XFree86-3.3.3.1, ghostscript-5.10, gsfonts-5.10, jpeg-6b, netpbm-94.3.1, png-1.0.3, teTeX-0.4, tiff-3.4b37 Category www (http://www.freebsd.org/ports/www.html) ================================================================== amaya-2.0a The W3C's testbed web editor/browser. Maintained by: croyle@gelemna.ft-wayne.in.us Requires: XFree86-3.3.3.1, gmake-3.77, xpm-3.4k apache_fp-1.3.6 The extremely popular Apache http server w/MS FrontPage Extentions. Maintained by: hetzels@westbend.net asWedit-4.0.1 An easy to use HTML and text editor Maintained by: brett@peloton.physics.montana.edu Also listed in: editors Requires: linux_lib-2.6.1 calamaris-2.24 a perl script to product statistics out of Squid log files Maintained by: dima@Chg.RU Also listed in: textproc htmlpp-4.2a A Perl script to allow easy creation of HTML from template files Maintained by: dburr@FreeBSD.ORG p5-Apache-1.19 Embeds a Perl interpreter in the Apache server Maintained by: jfitz@FreeBSD.ORG Also listed in: perl5 Requires: apache-1.2.6 swish-e-1.3.2 simple web indexing for humans - enhanced Maintained by: doconnor@gsoft.com.au Also listed in: textproc Requires: gmake-3.77 tidy-0.4.99.2 Fixes and tidies up HTML files. Maintained by: saken@hotel.rmta.org Category x11-fm (http://www.freebsd.org/ports/x11-fm.html) ================================================================== dfm-0.99.1 OS/2 - like Desktop-File-Manager for X Window System. Maintained by: andy@icc.surw.chel.su Requires: XFree86-3.3.3.1, gettext-0.10.35, glib-1.2.2, gtk-1.2.2, xpm-3.4k gnomemc-4.5.30 A windows explorer work-a-like for the GNOME Desktop Environment Maintained by: reg@shale.csir.co.za Also listed in: gnome Requires: ORBit-0.4.3, XFree86-3.3.3.1, esound-0.2.8, gettext-0.10.35, giflib-3.0, glib-1.2.2, gmake-3.77, gnomeaudio-1.0.0, gnomecore-1.0.5, gnomelibs-1.0.9, gtk-1.2.2, guile-1.3, imlib-1.9.4, jpeg-6b, libaudiofile-0.1.6, libghttp-1.0.2, libgtop-1.0.1, png-1.0.3, tiff-3.4b37, xpm-3.4k Category x11-toolkits (http://www.freebsd.org/ports/x11-toolkits.html) ================================================================== fltk-1.0.3 C++ graphical user interface for X Maintained by: dima@chg.ru Requires: Mesa-3.0, XFree86-3.3.3.1, bzip2-0.9.0c gtk---1.0.0 C++ wrapper for gtk, a x11 graphics library Maintained by: nacai@iname.com Requires: XFree86-3.3.3.1, gettext-0.10.35, glib-1.2.2, gmake-3.77, gtk-1.2.2, m4-1.4 gtk-1.2.2 General Toolkit for X11 GUI. Maintained by: vanilla@FreeBSD.ORG Requires: XFree86-3.3.3.1, gettext-0.10.35, glib-1.2.2 tk-8.0.5 Graphical toolkit for TCL. Maintained by: cwt@Freebsd.ORG Also listed in: tk80 Requires: XFree86-3.3.3.1, tcl-8.0.5 tkstep-8.0.4 The Tk toolkit with a NeXTSTEP look and more. Maintained by: tg@FreeBSD.ORG Also listed in: tk80 Requires: XFree86-3.3.3.1, jpeg-6b, tcl-8.0.5, tiff-3.4b37, xpm-3.4k Category x11-wm (http://www.freebsd.org/ports/x11-wm.html) ================================================================== ctwm-3.5.1 An extension to twm, with support for multiple virtual screens, etc. Maintained by: torstenb@FreeBSD.ORG Requires: XFree86-3.3.3.1, xpm-3.4k flwm-0.23 The Fast Light Window Manager Maintained by: dima@chg.ru Requires: Mesa-3.0, XFree86-3.3.3.1, fltk-1.0.3 fvwm-2.2 The ever popular Fvwm, version 2.2. Maintained by: jcwells@u.washington.edu Requires: XFree86-3.3.3.1, gmake-3.77, xpm-3.4k icewm-0.9.38 Window Manager designed for speed, usability and consistency. Maintained by: nacai@iname.com Requires: XFree86-3.3.3.1, gmake-3.77, xpm-3.4k windowmaker-i18n-0.53.0 A GNUStep-compliant NeXTStep clone window manager with i18n extention Maintained by: mac@jp.freebsd.org Also listed in: windowmaker Requires: XFree86-3.3.3.1, bzip2-0.9.0c, gettext-0.10.35, giflib-3.0, ja-nkf-1.62, jpeg-6b, libproplist-0.8.3, png-1.0.3, tiff-3.4b37, wmicons-1.0, xpm-3.4k windowmaker-0.53.0 This window manager is a GNUStep-compliant NeXTStep clone. Maintained by: handy@physics.montana.edu Also listed in: windowmaker Requires: XFree86-3.3.3.1, bzip2-0.9.0c, giflib-3.0, jpeg-6b, libproplist-0.8.3, png-1.0.3, tiff-3.4b37, xpm-3.4k Category x11 (http://www.freebsd.org/ports/x11.html) ================================================================== aterm-0.3.5 A color vt102 terminal emulator with transparency support. Maintained by: jim@phrantic.phear.net Requires: XFree86-3.3.3.1, jpeg-6b, png-1.0.3, xpm-3.4k gnomecore-1.0.5 core component for the Gnome Desktop Environment Maintained by: nacai@iname.com Also listed in: gnome Requires: ORBit-0.4.3, XFree86-3.3.3.1, esound-0.2.8, gettext-0.10.35, giflib-3.0, glib-1.2.2, gmake-3.77, gnomeaudio-1.0.0, gnomelibs-1.0.9, gtk-1.2.2, guile-1.3, imlib-1.9.4, jpeg-6b, libaudiofile-0.1.6, libghttp-1.0.2, libgtop-1.0.1, png-1.0.3, tiff-3.4b37, xpm-3.4k gnomelibs-1.0.9 libaries for GNOME, a GNU desktop environment Maintained by: nacai@iname.com Also listed in: gnome Requires: ORBit-0.4.3, XFree86-3.3.3.1, esound-0.2.8, gettext-0.10.35, giflib-3.0, glib-1.2.2, gmake-3.77, gtk-1.2.2, imlib-1.9.4, jpeg-6b, libaudiofile-0.1.6, png-1.0.3, tiff-3.4b37, xpm-3.4k kde-1.1.1 The "meta-port" for the KDE integrated X11 desktop Maintained by: se@freebsd.org Also listed in: kde Requires: Mesa-3.0, XFree86-3.3.3.1, gettext-0.10.35, giflib-3.0, jpeg-6b, kdebase-1.1.1, kdegames-1.1.1, kdegraphics-1.1.1, kdelibs-1.1.1, kdemultimedia-1.1.1, kdenetwork-1.1.1, kdesupport-1.1.1, kdeutils-1.1.1, png-1.0.3, qt-1.42, tiff-3.4b37, uulib-0.5.13, xpm-3.4k kdebase-1.1.1 Base modules for the KDE integrated X11 desktop Maintained by: se@freebsd.org Also listed in: kde Requires: Mesa-3.0, XFree86-3.3.3.1, bzip2-0.9.0c, gettext-0.10.35, giflib-3.0, gmake-3.77, jpeg-6b, kdelibs-1.1.1, png-1.0.3, qt-1.42, tiff-3.4b37, xpm-3.4k kdelibs-1.1.1 Support libraries for the KDE integrated X11 desktop Maintained by: se@freebsd.org Also listed in: kde Requires: Mesa-3.0, XFree86-3.3.3.1, bzip2-0.9.0c, giflib-3.0, gmake-3.77, jpeg-6b, png-1.0.3, qt-1.42, tiff-3.4b37 xlockmore-4.13.1 Like XLock session locker/screen saver, but just more. Maintained by: tg@FreeBSD.ORG Requires: Mesa-3.0, XFree86-3.3.3.1, xpm-3.4k xmangekyou-2.0 a kaleidoscope for X Maintained by: sakai@miya.ee.kagu.sut.ac.jp Requires: XFree86-3.3.3.1, xpm-3.4k _________________________________________________________________ © 1996-1998 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: 1999-05-14 11:54:54 UTC; based on revision 1.225 _________________________________________________________________ This information was produced by http://www.freebsd.org/cgi/ports.cgi -----BEGIN PGP SIGNATURE----- Version: 2.6.3ia Charset: noconv iQCVAwUBNz08WDmN/mkrcYGtAQHq9AQAhqM6cYxBDY1s293RAS2GxmbW5O5+wcHa KD3qKQFDnJxR2SyyWVOnaTVJ//rCtbpx1oOcHJaEWADIyFccC4/iTyvzE0xNXyF6 fcMVfNYnV+D8HrsT/iPkoPINbBT90D+8k00dbq/gMjq6L16GvJ06mV5LVFlMZXZ5 ARp2cgabqpc= =gfib -----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 Sat May 15 3:30: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D0E914D58 for ; Sat, 15 May 1999 03:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA78149; Sat, 15 May 1999 03:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from game.over.net (unknown [193.189.189.100]) by hub.freebsd.org (Postfix) with ESMTP id 8EE9E15628 for ; Sat, 15 May 1999 03:28:36 -0700 (PDT) (envelope-from tomaz.borstnar@over.net) Received: by mail.over.net id <95292-303>; Sat, 15 May 1999 12:28:06 +0200 Message-Id: <19990515102816Z95292-303+2@mail.over.net> Date: Sat, 15 May 1999 12:28:06 +0200 From: tomaz.borstnar@over.net Reply-To: tomaz.borstnar@over.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11722: textproc/htdig upgrade from 3.1.1 to 3.1.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11722 >Category: ports >Synopsis: textproc/htdig upgrade from 3.1.1 to 3.1.2 >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 May 15 03:30:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Tomaz Borstnar >Release: FreeBSD 3.2-BETA i386 >Organization: SIIX d.o.o. >Environment: >Description: textproc/htdig lists previous version - 3.1.1. There is new version avaliable - 3.1.2 - with lots of useful bugfixes. Old patches apply cleanly if we just change version number. It works fine for some time here. >How-To-Repeat: >Fix: diff -ur htdig-old/Makefile htdig/Makefile --- htdig-old/Makefile Wed Feb 24 13:24:14 1999 +++ htdig/Makefile Sat May 15 10:35:17 1999 @@ -1,12 +1,12 @@ # New ports collection makefile for: htdig -# Version required: 3.1.1 +# Version required: 3.1.2 # Date created: 18 August 1998 # Whom: Bill Fumerola # # $Id: Makefile,v 1.7 1999/02/21 19:58:47 billf Exp $ # -DISTNAME= htdig-3.1.1 +DISTNAME= htdig-3.1.2 CATEGORIES= textproc www MASTER_SITES= http://www.htdig.org/files/ \ ftp://ftp.ntua.gr/pub/www/htdig/ \ diff -ur htdig-old/files/md5 htdig/files/md5 --- htdig-old/files/md5 Wed Feb 24 13:24:14 1999 +++ htdig/files/md5 Sat May 15 10:36:06 1999 @@ -1 +1 @@ -MD5 (htdig-3.1.1.tar.gz) = fcaf428065fa02c09f2c30e26568b176 +MD5 (htdig-3.1.2.tar.gz) = ddd0305d420e2d6025694d4e1448d5f7 >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 May 15 3:50: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0DDEA14C96 for ; Sat, 15 May 1999 03:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA97153; Sat, 15 May 1999 03:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from p.funk.org (node1484.a2000.nl [62.108.20.132]) by hub.freebsd.org (Postfix) with ESMTP id DAFC914F50 for ; Sat, 15 May 1999 03:46:20 -0700 (PDT) (envelope-from alexlh@p.funk.org) Received: (from alexlh@localhost) by p.funk.org (8.9.3/8.9.2) id AAA46119; Fri, 12 Feb 1999 00:01:10 +0100 (CET) (envelope-from alexlh) Message-Id: <199902112301.AAA46119@p.funk.org> Date: Fri, 12 Feb 1999 00:01:10 +0100 (CET) From: Alex Le Heux Reply-To: alexlh@p.funk.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11723: new port for sslproxy Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11723 >Category: ports >Synopsis: new port for sslproxy >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 May 15 03:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Alex Le Heux >Release: FreeBSD 4.0-CURRENT i386 >Organization: funk.org >Environment: >Description: I made a port for sslproxy, which is a program which will 'proxy' a non-ssl connection over ssl. I hope I did everything right :-) Here's 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: # # sslproxy # sslproxy/Makefile # sslproxy/pkg # sslproxy/pkg/COMMENT # sslproxy/pkg/DESCR # sslproxy/pkg/PLIST # sslproxy/files # sslproxy/files/md5 # sslproxy/patches # sslproxy/patches/patch-aa # echo c - sslproxy mkdir -p sslproxy > /dev/null 2>&1 echo x - sslproxy/Makefile sed 's/^X//' >sslproxy/Makefile << 'END-of-sslproxy/Makefile' X# New ports collection makefile for: sslproxy X# Version required: 1998_Jun_14 X# Date created: 11 February 1999 X# Whom: Alex Le Heux X# X# $Id$ X# X XDISTNAME= sslproxy.1998_Jun_14 XPKGNAME= sslproxy-1998-Jun-14 XCATEGORIES= security XMASTER_SITES= ftp://ftp.obdev.at/pub/Products/sslproxy/ X XMAINTAINER= alexlh@funk.org X XBUILD_DEPENDS= ${PREFIX}/include/ssl.h:${PORTSDIR}/security/openssl XRUN_DEPENDS= ${PREFIX}/lib/libssl.a:${PORTSDIR}/security/openssl X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/sslproxy ${PREFIX}/bin/sslproxy X X.include END-of-sslproxy/Makefile echo c - sslproxy/pkg mkdir -p sslproxy/pkg > /dev/null 2>&1 echo x - sslproxy/pkg/COMMENT sed 's/^X//' >sslproxy/pkg/COMMENT << 'END-of-sslproxy/pkg/COMMENT' XProxies non-SSL request over an SSL connection. END-of-sslproxy/pkg/COMMENT echo x - sslproxy/pkg/DESCR sed 's/^X//' >sslproxy/pkg/DESCR << 'END-of-sslproxy/pkg/DESCR' XYou probably know secure HTTP from secure web sites. Say, you want to operate Xa secure web server but have only a normal server. SSL Proxy can be your Xsolution: It's plugged into the connection between the client and the server Xand adds Secure Socket Layer (SSL) support. Or the other way around: You have Xan ordinary telnet client but want to connect to a secure site. Just start SSL XProxy with the appropriate parameters and -- voila. That's what SSL Proxy can Xdo for you. END-of-sslproxy/pkg/DESCR echo x - sslproxy/pkg/PLIST sed 's/^X//' >sslproxy/pkg/PLIST << 'END-of-sslproxy/pkg/PLIST' Xbin/sslproxy END-of-sslproxy/pkg/PLIST echo c - sslproxy/files mkdir -p sslproxy/files > /dev/null 2>&1 echo x - sslproxy/files/md5 sed 's/^X//' >sslproxy/files/md5 << 'END-of-sslproxy/files/md5' XMD5 (sslproxy.1998_Jun_14.tar.gz) = b3319dd7cfd9d674dcbcac77480cfc86 END-of-sslproxy/files/md5 echo c - sslproxy/patches mkdir -p sslproxy/patches > /dev/null 2>&1 echo x - sslproxy/patches/patch-aa sed 's/^X//' >sslproxy/patches/patch-aa << 'END-of-sslproxy/patches/patch-aa' X--- Makefile.orig Sun Jun 14 22:52:50 1998 X+++ Makefile Thu Feb 11 23:54:59 1999 X@@ -12,7 +12,7 @@ X # if you use cc, remove the -Wall and -g options X CC= gcc X X-SSLROOT= /usr/local/ssl X+SSLROOT= /usr/local X X CFLAGS= -Wall -I$(SSLROOT)/include -O X # for Solaris 2.x add -DSOLARIS2, for SunOS add -DSUNOS and for HP-UX add END-of-sslproxy/patches/patch-aa 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 Sat May 15 5:27:32 1999 Delivered-To: freebsd-ports@freebsd.org Received: from scds.com (jseger.shore.net [204.167.102.1]) by hub.freebsd.org (Postfix) with ESMTP id 152EA150BC for ; Sat, 15 May 1999 05:27:27 -0700 (PDT) (envelope-from jseger@jseger.scds.com) Received: from jseger.scds.com (localhost [127.0.0.1]) by scds.com (8.9.3/8.8.8) with ESMTP id IAA27631; Sat, 15 May 1999 08:27:31 -0400 (EDT) (envelope-from jseger@jseger.scds.com) Message-Id: <199905151227.IAA27631@scds.com> To: chuck@ucsd.edu Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ISC DHCP-2 In-reply-to: Your message of "Sat, 15 May 1999 01:09:37 PDT." Date: Sat, 15 May 1999 08:27:31 -0400 From: "Justin M. Seger" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > The ISC DHPC-2 Port is broken(the Makefile even says this). Your ports tree must be out of date. I fixed it on February 27th. revision 1.23 date: 1999/02/27 04:32:20; author: jseger; state: Exp; lines: +4 -7 Upgrade to isc-dhcp2.b1.16 and unbreak. TTYL, -Justin Seger- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 15 11:40:47 1999 Delivered-To: freebsd-ports@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 85C9D14F5F for ; Sat, 15 May 1999 11:40:46 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (d60-077.leach.ucdavis.edu [169.237.60.77]) by relay.nuxi.com (8.9.3/8.9.1) with ESMTP id LAA37329; Sat, 15 May 1999 11:40:45 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id SAA36735; Sat, 15 May 1999 18:40:44 GMT (envelope-from obrien) Date: Sat, 15 May 1999 11:40:44 -0700 From: "David O'Brien" To: "Justin M. Seger" Cc: chuck@ucsd.edu, freebsd-ports@FreeBSD.ORG Subject: Re: ISC DHCP-2 Message-ID: <19990515114043.A36694@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <199905151227.IAA27631@scds.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <199905151227.IAA27631@scds.com>; from Justin M. Seger on Sat, May 15, 1999 at 08:27:31AM -0400 X-Operating-System: FreeBSD 4.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > But really, the orginal port is so old that it should be redone. > Your ports tree must be out of date. I fixed it on February 27th. > > revision 1.23 > date: 1999/02/27 04:32:20; author: jseger; state: Exp; lines: +4 -7 > Upgrade to isc-dhcp2.b1.16 and unbreak. The latest is 2.0b1pl27 (which is the client in the base system). BTW, you might want to grab the diffs from ``src/contrib/isc-dhcp/client/scripts/freebsd'' if you have not already done so. -- -- David (obrien@NUXI.com -or- 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 Sat May 15 12:42:18 1999 Delivered-To: freebsd-ports@freebsd.org Received: from sdcc10.ucsd.edu (sdcc10.ucsd.edu [132.239.50.10]) by hub.freebsd.org (Postfix) with ESMTP id 41B4D14A2D; Sat, 15 May 1999 12:42:14 -0700 (PDT) (envelope-from crouilla@ucsd.edu) Received: from localhost (crouilla@localhost) by sdcc10.ucsd.edu (8.9.3/8.9.3) with SMTP id MAA18481; Sat, 15 May 1999 12:42:10 -0700 (PDT) X-Authentication-Warning: sdcc10.ucsd.edu: crouilla owned process doing -bs Date: Sat, 15 May 1999 12:42:10 -0700 (PDT) From: Chuck Rouillard Reply-To: chuck@ucsd.edu To: "David O'Brien" Cc: "Justin M. Seger" , freebsd-ports@FreeBSD.ORG Subject: Re: ISC DHCP-2 In-Reply-To: <19990515114043.A36694@dragon.nuxi.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 Fair enough. I installed 3.1 RELEASE, not STABLE. Thank you. > > > But really, the orginal port is so old that it should be redone. > > > Your ports tree must be out of date. I fixed it on February 27th. > > > > revision 1.23 > > date: 1999/02/27 04:32:20; author: jseger; state: Exp; lines: +4 -7 > > Upgrade to isc-dhcp2.b1.16 and unbreak. > > The latest is 2.0b1pl27 (which is the client in the base system). BTW, > you might want to grab the diffs from > ``src/contrib/isc-dhcp/client/scripts/freebsd'' if you have not already > done so. > > -- > -- David (obrien@NUXI.com -or- obrien@FreeBSD.org) ---------------------------------------------------------------------__ Chuck Rouillard ___ _______ __ ____ ______ / / chuck@ucsd.edu / _ )/ __/ _ \ / // / |/ / \ \/ / charr@sparc.sandiegoca.ncr.com / _ |\ \/ // /*/ // / / / \ \ chuckr@europa.qnc.org /____/___/____/ /____/_/|_/_/ / /\__\ *The Superior Alternative* /_/ --------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 15 13:50: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7AE1014BD7 for ; Sat, 15 May 1999 13:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA36561; Sat, 15 May 1999 13:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id A6E5614FB0 for ; Sat, 15 May 1999 13:45:30 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id B9CA613C4; Sat, 15 May 1999 13:45:20 -0700 (PDT) Message-Id: <19990515204520.B9CA613C4@norn.ca.eu.org> Date: Sat, 15 May 1999 13:45:20 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11726: Update: net/gftp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11726 >Category: ports >Synopsis: Update: net/gftp >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 May 15 13:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: 4.0-CURRENT i386 >Description: Update to 2.0.0. Files removed: patch-ad patch-ae >How-To-Repeat: >Fix: Index: gftp/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/net/gftp/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 1999/04/27 00:37:35 1.2 +++ Makefile 1999/05/15 20:40:43 @@ -1,12 +1,12 @@ # New ports collection makefile for: gftp -# Version required: 1.13 +# Version required: 2.0.0 # Date Created: 21 Feb 1999 # Whom: Damjan Marion # # $Id: Makefile,v 1.2 1999/04/27 00:37:35 taoka Exp $ # -DISTNAME= gftp-1.13 +DISTNAME= gftp-2.0.0 CATEGORIES= net MASTER_SITES= http://www.newwave.net/~masneyb/ @@ -17,10 +17,14 @@ USE_AUTOCONF= yes USE_X_PREFIX= yes -post-install: - strip ${PREFIX}/bin/gftp - pre-install: find ${WRKSRC} -name \*.orig -exec ${RM} -f \{} \; + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/gftp ${PREFIX}/bin + @${MKDIR} ${PREFIX}/share/gftp +.for i in sample.gftp/* + ${INSTALL_DATA} ${WRKSRC}/$i ${PREFIX}/share/gftp +.endfor .include Index: gftp/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/net/gftp/files/md5,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 md5 --- md5 1999/04/03 01:38:52 1.1.1.1 +++ md5 1999/05/15 19:45:00 @@ -1 +1 @@ -MD5 (gftp-1.13.tar.gz) = c4fd2c2b21f5efeccf4ba2befb4fa564 +MD5 (gftp-2.0.0.tar.gz) = 322af4ddd82577f3186e22f0101896d0 Index: gftp/patches/patch-ab =================================================================== RCS file: /cvs/FreeBSD/ports/net/gftp/patches/patch-ab,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 patch-ab --- patch-ab 1999/04/03 01:38:52 1.1.1.1 +++ patch-ab 1999/05/15 20:33:59 @@ -1,11 +1,11 @@ ---- Makefile.in.orig Fri Apr 2 13:21:58 1999 -+++ Makefile.in Fri Apr 2 13:22:07 1999 -@@ -8,7 +8,7 @@ +--- Makefile.in.orig Sat May 15 10:56:01 1999 ++++ Makefile.in Sat May 15 13:26:17 1999 +@@ -6,7 +6,7 @@ + SHARE_DIR=$(PREFIX)/share/gftp + INSTALL=@INSTALL@ MACHINE=`uname -m`-`uname -p`-`uname -s` - # Add -DDEBUG to the CFLAGS line below if you want gFTP to print some extra - # information to stdout --CFLAGS=@CFLAGS@ -D_POSIX_SOURCE -D_REENTRANT -Wall -ansi -DSHARE_DIR=\"$(SHARE_DIR)\" -+CFLAGS=@CFLAGS@ -pthread -Wall -ansi -DSHARE_DIR=\"$(SHARE_DIR)\" +-CFLAGS=@CFLAGS@ -Wall -D_REENTRANT -DSHARE_DIR=\"$(SHARE_DIR)\" ++CFLAGS=@CFLAGS@ -pthread -DSHARE_DIR=\"$(SHARE_DIR)\" LIBS=@LIBS@ EXE=gftp - OBJS=cache.o chmod_dialog.o config_file.o connect_dialog.o delete_dialog.o \ + OBJS=bookmarks.o cache.o chmod_dialog.o config_file.o \ Index: gftp/patches/patch-ac =================================================================== RCS file: /cvs/FreeBSD/ports/net/gftp/patches/patch-ac,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 patch-ac --- patch-ac 1999/04/03 01:38:52 1.1.1.1 +++ patch-ac 1999/05/15 19:50:53 @@ -1,14 +1,15 @@ ---- gnome-ftp.h.orig Fri Apr 2 13:29:30 1999 -+++ gnome-ftp.h Fri Apr 2 13:29:46 1999 -@@ -22,9 +22,9 @@ +--- gnome-ftp.h.orig Sat May 15 12:50:04 1999 ++++ gnome-ftp.h Sat May 15 12:50:37 1999 +@@ -22,10 +22,10 @@ #include #include -#include -#include #include + #include +#include +#include - #include #include #include + #include Index: gftp/pkg/PLIST =================================================================== RCS file: /cvs/FreeBSD/ports/net/gftp/pkg/PLIST,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 PLIST --- PLIST 1999/04/03 01:38:52 1.1.1.1 +++ PLIST 1999/05/15 20:38:19 @@ -5,14 +5,13 @@ share/gftp/dir.xpm share/gftp/doc.xpm share/gftp/dotdot.xpm -share/gftp/down.xpm share/gftp/exe.xpm share/gftp/gftp-logo.xpm share/gftp/gftprc share/gftp/linkdir.xpm share/gftp/linkfile.xpm share/gftp/man.xpm +share/gftp/open_dir.xpm share/gftp/tar.xpm share/gftp/txt.xpm -share/gftp/up.xpm @dirrm share/gftp -Chris >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 May 15 15:20: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C030514E8E for ; Sat, 15 May 1999 15:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA40302; Sat, 15 May 1999 15:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from phoenix.unacom.com (phoenix.unacom.com [206.113.48.50]) by hub.freebsd.org (Postfix) with SMTP id 9B71D14C3D for ; Sat, 15 May 1999 15:15:49 -0700 (PDT) (envelope-from root@phoenix.unacom.com) Received: (qmail 51816 invoked by uid 0); 15 May 1999 22:15:48 -0000 Message-Id: <19990515221548.51815.qmail@phoenix.unacom.com> Date: 15 May 1999 22:15:48 -0000 From: root@phoenix.unacom.com Reply-To: root@unacom.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11727: bind8 bug Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11727 >Category: ports >Synopsis: Character combinations halting bind8 >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 May 15 15:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: System Administratos >Release: FreeBSD 3.1-STABLE i386 >Organization: UNACOM Webhosting >Environment: None >Description: when adding a database to the bind a file called 'pics4you' would cause bind to halt on a reload or restart, however when the said file was renamed to picsforyou.db the bind successfully completed reloading/restarting named. You first thought was that bind may treat 's4' or '4u' as a code, and thus choke over it, since we have other letter/number combinations such as 'web4cheap.db' which bind handles without problems. >How-To-Repeat: As stated above our only problem with letter/number combinations was from the file 'pics4you.db', so spoofing this domain (or attempting to enter a similar name for a db file) should repeat this problem. >Fix: Unknown >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 May 15 15:34:13 1999 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 5D89214CC7; Sat, 15 May 1999 15:34:11 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.1a/8.9.0) with ESMTP id RAA05386; Sat, 15 May 1999 17:34:09 -0500 (CDT) Date: Sat, 15 May 1999 17:34:09 -0500 (CDT) From: Steve Price To: se@freebsd.org Cc: freebsd-ports@freebsd.org Subject: Ok to remove kde 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 Stefan, Can we get rid of the version 1.0 kde* ports? It seems as though version 1.1 is stable enough now to not warrant having two versions laying about. If it is okay with you, after the freeze I'll remove them and clean up the mess that's left behind. Thanks. -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 15 16: 0: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AA8FB14C13 for ; Sat, 15 May 1999 16:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA43802; Sat, 15 May 1999 16:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 70FE815285; Sat, 15 May 1999 15:58:45 -0700 (PDT) Message-Id: <19990515225845.70FE815285@hub.freebsd.org> Date: Sat, 15 May 1999 15:58:45 -0700 (PDT) From: pfgiffun@bachue.usc.unal.edu.co To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11728: WAIS support for gopher Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11728 >Category: ports >Synopsis: WAIS support for gopher >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 May 15 16:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Pedro F. Giffuni >Release: 3.1-Release >Organization: U. Nacional de Colombia >Environment: >Description: Added WAIS support to gopher. I also tried FreeWAIS-sf, but it has changed so much that it doesn't build easily, it also seems unreasonable to link PERL into gopher. >How-To-Repeat: Gopher is probably obsolete now, but when I used it I found the WAIS access very useful. I don't know if there is interest for this, or even if it works (I can't test the WAIS part anymore), but this patches won't affect have any negative effect. >Fix: begin 644 gopher.diff M9&EF9B`MU=A:7-4;W!]+VEN8VQU9&4@ M)"A786ES5&]P*2]I<@HK"6QN("US("1[5V%I&5C=71A8FQE+BXN M"BL@(`HK(2!$14)51T=)3D<@/2!`1$5"54='24Y'0`HK("`**R`@(RTM+2TM M+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+2TM+0HK M("`C(%5N8V]M;65N="!O=70@=&AE(&9O;&QO=VEN9R!L:6YEF%T:6]N(&%N M9"!I;G1EF%T:6]N(&9E M871U2`Q,R`Q,#HT,#HU.2`Q.3DY"BLJ*BHJ*BHJ*BHJ*BHJ*BH* M*RHJ*B`Q-#`L,30V("HJ*BH**R`@("`@("`@("`@("`@("`@("`@+BXO=6DO M'`N80HK(2!31E=!25-/0DH@("`@("`]("XN+VER M+VQI8G=A:7,N82`N+B]U:2]S;W5R8V4N;R`N+B]R96=E>'`O;&EB'`N82`**R`@ M"BL@(`HK("!#0T9,04=3"3T@)"A/4%0I("U$1$%405]$25)%0U1/4ED]7"(D M*%-%4E9%4D1!5$$I7"(@)"A$14)51T=)3D"YO.B!786ES:6YD97@N8PHK(2`))"A#0RD@)"A#0T9,04=3*2`D*%=! M25-)3D-,541%4RD@+6,@)"AS"YC"BL@(`HK("!G M;W!H97)D+F\Z(&=O<&AERelease-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 May 16 3:20: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F5EB152FD for ; Sun, 16 May 1999 03:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA84992; Sun, 16 May 1999 03:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 209AA14D6C for ; Sun, 16 May 1999 03:16:01 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 6819A1458; Sun, 16 May 1999 03:15:51 -0700 (PDT) Message-Id: <19990516101551.6819A1458@norn.ca.eu.org> Date: Sun, 16 May 1999 03:15:51 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11729: Update: x11-wm/flwm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11729 >Category: ports >Synopsis: Update: x11-wm/flwm >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 May 16 03:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: 4.0-CURRENT i386 >Description: Update to 0.24 >How-To-Repeat: >Fix: Index: flwm/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/x11-wm/flwm/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 1999/04/27 03:34:35 1.4 +++ Makefile 1999/05/16 10:07:17 @@ -1,12 +1,12 @@ # New ports collection makefile for: flwm -# Version required: 0.22 +# Version required: 0.24 # Date created: 12 February 1999 # Whom: Dima Sivachenko # # $Id: Makefile,v 1.4 1999/04/27 03:34:35 mharo Exp $ # -DISTNAME= flwm-0.23 +DISTNAME= flwm-0.24 CATEGORIES= x11-wm MASTER_SITES= http://www.cinenet.net/users/spitzak/flwm/ \ ftp://ftp.sai.msu.su/pub/X11/win_man/ @@ -18,7 +18,6 @@ USE_X_PREFIX= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= CXXFLAGS="${CFLAGS}" MAN1= flwm.1 .include Index: flwm/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/x11-wm/flwm/files/md5,v retrieving revision 1.3 diff -u -r1.3 md5 --- md5 1999/04/27 03:34:36 1.3 +++ md5 1999/05/16 10:07:27 @@ -1 +1 @@ -MD5 (flwm-0.23.tgz) = 04503d0d5ca612bb3ae1b16d1d70136b +MD5 (flwm-0.24.tgz) = 36a64baff8cbe149e2474f9fe5ca72ae -Chris >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 May 16 4:30: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 071291534F for ; Sun, 16 May 1999 04:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA90488; Sun, 16 May 1999 04:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (Postfix) with ESMTP id 6BBFD152F2 for ; Sun, 16 May 1999 04:22:31 -0700 (PDT) (envelope-from roberto@keltia.freenix.fr) Received: (from uucp@localhost) by frmug.org (8.9.1/frmug-2.3/nospam) with UUCP id NAA23482 for FreeBSD-gnats-submit@freebsd.org; Sun, 16 May 1999 13:22:30 +0200 (CEST) (envelope-from roberto@keltia.freenix.fr) Received: by keltia.freenix.fr (Postfix, from userid 101) id C62E18841; Sun, 16 May 1999 13:20:26 +0200 (CEST) (envelope-from roberto) Message-Id: <19990516112026.C62E18841@keltia.freenix.fr> Date: Sun, 16 May 1999 13:20:26 +0200 (CEST) From: roberto@keltia.freenix.fr Reply-To: roberto@keltia.freenix.fr To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11730: [PATCH] Update to PCRE port up to 2.05 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11730 >Category: ports >Synopsis: Patch to update PCRE port up to 2.05 >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 May 16 04:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ollivier Robert >Release: FreeBSD 4.0-CURRENT i386 >Organization: Usenet Canal Historique >Environment: FreeBSD keltia.freenix.fr 4.0-CURRENT FreeBSD 4.0-CURRENT #71: Sun May 9 20:16:32 CEST 1999 roberto@keltia.freenix.fr:/src/src/sys/compile/KELTIA i386 >Description: Port of PCRE is way outdated. >How-To-Repeat: Just look into devel/pcre/Makefile :-) >Fix: Index: Makefile =================================================================== RCS file: /spare/FreeBSD-current/ports/devel/pcre/Makefile,v retrieving revision 1.1.1.1 diff -u -2 -r1.1.1.1 Makefile --- Makefile 1998/07/12 22:59:19 1.1.1.1 +++ Makefile 1999/05/16 11:16:39 @@ -7,5 +7,5 @@ # -DISTNAME= pcre-1.09 +DISTNAME= pcre-2.05 CATEGORIES= devel MASTER_SITES= ftp://ftp.cus.cam.ac.uk/pub/software/programs/pcre/ @@ -26,5 +26,7 @@ ${INSTALL_PROGRAM} ${WRKSRC}/pgrep ${PREFIX}/bin ${INSTALL_DATA} ${WRKSRC}/libpcre.a ${PREFIX}/lib + ${INSTALL_DATA} ${WRKSRC}/libpcreposix.a ${PREFIX}/lib ${INSTALL_DATA} ${WRKSRC}/pcre.h ${PREFIX}/include + ${INSTALL_DATA} ${WRKSRC}/pcreposix.h ${PREFIX}/include ${INSTALL_MAN} ${WRKSRC}/pcre.3 ${PREFIX}/man/man3 ${INSTALL_MAN} ${WRKSRC}/pcreposix.3 ${PREFIX}/man/man3 Index: files/md5 =================================================================== RCS file: /spare/FreeBSD-current/ports/devel/pcre/files/md5,v retrieving revision 1.1.1.1 diff -u -2 -r1.1.1.1 md5 --- md5 1998/07/12 22:59:19 1.1.1.1 +++ md5 1999/05/16 11:14:45 @@ -1 +1 @@ -MD5 (pcre-1.09.tar.gz) = e6826e6e3b25e3e09e1bf46f637e8fe5 +MD5 (pcre-2.05.tar.gz) = c503d54443b335eaa4cb62ba477304db >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 May 16 4:40: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 70A3D15385 for ; Sun, 16 May 1999 04:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA91081; Sun, 16 May 1999 04:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from blues.ghis.net (pppc1-34.eisa.net.au [203.166.251.34]) by hub.freebsd.org (Postfix) with ESMTP id 9A82C1534F for ; Sun, 16 May 1999 04:30:42 -0700 (PDT) (envelope-from jim@blues.ghis.net) Received: (from jim@localhost) by blues.ghis.net (8.9.3/8.9.3) id VAA21997; Sun, 16 May 1999 21:30:34 +1000 (EST) Message-Id: <199905161130.VAA21997@blues.ghis.net> Date: Sun, 16 May 1999 21:30:34 +1000 (EST) From: jim@phrantic.phear.net Reply-To: jim@blues.ghis.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11731: new port: dopewars-1.4.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11731 >Category: ports >Synopsis: new port: dopewars-1.4.2 >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 May 16 04:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jim Mock >Release: FreeBSD 3.1-RELEASE i386 >Organization: >Environment: >Description: New port of dopewars, a console game where you assume the role of a drug dealer in NYC and try to get rich and pay off your loan shark while avoiding the police. The topic of the game may be somewhat controversial, but it's a pretty decent game nonetheless. >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: # # dopewars # dopewars/Makefile # dopewars/files # dopewars/files/md5 # dopewars/pkg # dopewars/pkg/PLIST # dopewars/pkg/COMMENT # dopewars/pkg/DESCR # echo c - dopewars mkdir -p dopewars > /dev/null 2>&1 echo x - dopewars/Makefile sed 's/^X//' >dopewars/Makefile << 'END-of-dopewars/Makefile' X# New ports collection makefile for: dopewars X# Version required: 1.4.2 X# Date created: 16 May 1999 X# Whom: Jim Mock X# X# $Id$ X# X XDISTNAME= dopewars-1.4.2 XCATEGORIES= games XMASTER_SITES= http://bellatrix.pcl.ox.ac.uk/~ben/dopewars/ X XMAINTAINER= jim@phrantic.phear.net X XUSE_GMAKE= yes X Xdo-build: X (cd ${WRKSRC} && ${GMAKE}) X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/dopewars ${PREFIX}/bin X Xpost-install: X @${ECHO} " " X @${ECHO} "===> Run 'dopewars -h' for usage options." X @${ECHO} " " X X.include END-of-dopewars/Makefile echo c - dopewars/files mkdir -p dopewars/files > /dev/null 2>&1 echo x - dopewars/files/md5 sed 's/^X//' >dopewars/files/md5 << 'END-of-dopewars/files/md5' XMD5 (dopewars-1.4.2.tar.gz) = 3e1ee237f36e323f7631ded652254a52 END-of-dopewars/files/md5 echo c - dopewars/pkg mkdir -p dopewars/pkg > /dev/null 2>&1 echo x - dopewars/pkg/PLIST sed 's/^X//' >dopewars/pkg/PLIST << 'END-of-dopewars/pkg/PLIST' Xbin/dopewars END-of-dopewars/pkg/PLIST echo x - dopewars/pkg/COMMENT sed 's/^X//' >dopewars/pkg/COMMENT << 'END-of-dopewars/pkg/COMMENT' Xdopewars is a UNIX rewrite of a game originally based on "Drug Wars". END-of-dopewars/pkg/COMMENT echo x - dopewars/pkg/DESCR sed 's/^X//' >dopewars/pkg/DESCR << 'END-of-dopewars/pkg/DESCR' XThe idea of dopewars is to deal drugs on the streets of New York, Xamassing a huge fortune and paying off the loan shark, while avoiding Xthe ever-annoying police. The UNIX rewrite, as well as featuring a Xso-called "antique" mode which closely follows the original, Xintroduces new features such as the ability to take part in Xmulti-player games. X XWWW: http://bellatrix.pcl.ox.ac.uk/~ben/dopewars/ X X- Jim END-of-dopewars/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 Sun May 16 4:42:42 1999 Delivered-To: freebsd-ports@freebsd.org Received: from scds.com (jseger.shore.net [204.167.102.1]) by hub.freebsd.org (Postfix) with ESMTP id 80AAD15380; Sun, 16 May 1999 04:42:38 -0700 (PDT) (envelope-from jseger@jseger.scds.com) Received: from jseger.scds.com (localhost [127.0.0.1]) by scds.com (8.9.3/8.8.8) with ESMTP id HAA31392; Sun, 16 May 1999 07:42:48 -0400 (EDT) (envelope-from jseger@jseger.scds.com) Message-Id: <199905161142.HAA31392@scds.com> To: obrien@FreeBSD.ORG Cc: "Justin M. Seger" , chuck@ucsd.edu, freebsd-ports@FreeBSD.ORG Subject: Re: ISC DHCP-2 In-reply-to: Your message of "Sat, 15 May 1999 11:40:44 PDT." <19990515114043.A36694@dragon.nuxi.com> Date: Sun, 16 May 1999 07:42:48 -0400 From: "Justin M. Seger" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > > But really, the orginal port is so old that it should be redone. > > > Your ports tree must be out of date. I fixed it on February 27th. > > > > revision 1.23 > > date: 1999/02/27 04:32:20; author: jseger; state: Exp; lines: +4 -7 > > Upgrade to isc-dhcp2.b1.16 and unbreak. > > The latest is 2.0b1pl27 (which is the client in the base system). BTW, > you might want to grab the diffs from > ``src/contrib/isc-dhcp/client/scripts/freebsd'' if you have not already > done so. I'm sorry, I quoted the wrong line of the original message. Chuck was saying that the port is currently BROKEN, that was fixed in February. The current revision of the port is b1pl27. TTYL, -Justin Seger- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 10: 0: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 473AF14EC6 for ; Sun, 16 May 1999 10:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA72886; Sun, 16 May 1999 10:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 42CC414CF8 for ; Sun, 16 May 1999 09:52:27 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 43FDB1458; Sun, 16 May 1999 09:52:17 -0700 (PDT) Message-Id: <19990516165217.43FDB1458@norn.ca.eu.org> Date: Sun, 16 May 1999 09:52:17 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11735: Update: x11-wm/icewm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11735 >Category: ports >Synopsis: Update: x11-wm/icewm >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 May 16 10:00:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: 4.0-CURRENT i386 >Description: Update to 0.9.39 >How-To-Repeat: >Fix: Index: icewm/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/x11-wm/icewm/Makefile,v retrieving revision 1.35 diff -u -r1.35 Makefile --- Makefile 1999/05/09 16:32:13 1.35 +++ Makefile 1999/05/16 16:31:45 @@ -1,12 +1,12 @@ # New ports collection makefile for: icewm -# Version required: 0.9.38 +# Version required: 0.9.39 # Date created: 10 August 1997 # Whom: Yukihiro Nakai # # $Id: Makefile,v 1.35 1999/05/09 16:32:13 steve Exp $ # -DISTNAME= icewm-0.9.38 +DISTNAME= icewm-0.9.39 CATEGORIES= x11-wm MASTER_SITES= http://www.kiss.uni-lj.si/~k4fr0235/icewm/devel/ \ http://www.physik.TU-Berlin.DE/~ibex/ports/distfiles/icewm/ Index: icewm/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/x11-wm/icewm/files/md5,v retrieving revision 1.23 diff -u -r1.23 md5 --- md5 1999/05/09 16:32:27 1.23 +++ md5 1999/05/16 16:32:26 @@ -1 +1 @@ -MD5 (icewm-0.9.38.src.tar.gz) = af0ffb97ccf521bbd353853d505d47a8 +MD5 (icewm-0.9.39.src.tar.gz) = 1a4d7bc60d6f6235d04a1c43bd739043 Index: icewm/patches/patch-aa =================================================================== RCS file: /cvs/FreeBSD/ports/x11-wm/icewm/patches/patch-aa,v retrieving revision 1.8 diff -u -r1.8 patch-aa --- patch-aa 1999/03/17 06:41:25 1.8 +++ patch-aa 1999/05/16 16:33:37 @@ -1,6 +1,6 @@ ---- Makefile.orig Mon Nov 9 00:19:14 1998 -+++ Makefile Wed Nov 11 20:25:53 1998 -@@ -11,8 +11,7 @@ +--- Makefile.orig Sat May 1 23:20:32 1999 ++++ Makefile Sun May 16 09:33:07 1999 +@@ -12,8 +12,7 @@ GNOMEFILES = src/icewm-gnome all: @@ -8,5 +8,5 @@ - cd doc ; $(MAKE) + cd src ; $(MAKE) LIBDIR=$(LIBDIR) ETCDIR=$(ETCDIR) PREFIX=$(PREFIX) - doc: + docs: cd doc ; $(MAKE) -Chris >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 May 16 12:17:28 1999 Delivered-To: freebsd-ports@freebsd.org Received: from nothing-going-on.demon.co.uk (nothing-going-on.demon.co.uk [193.237.89.66]) by hub.freebsd.org (Postfix) with ESMTP id 7C91F14F59 for ; Sun, 16 May 1999 12:17:22 -0700 (PDT) (envelope-from nik@nothing-going-on.demon.co.uk) Received: (from nik@localhost) by nothing-going-on.demon.co.uk (8.9.2/8.9.2) id TAA29885 for ports@freebsd.org; Sun, 16 May 1999 19:58:33 +0100 (BST) (envelope-from nik) Date: Sun, 16 May 1999 19:58:33 +0100 From: Nik Clayton To: ports@freebsd.org Subject: Package creation, installing in a different place Message-ID: <19990516195833.B75287@catkin.nothing-going-on.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i Organization: Nik at home, where there's nothing going on Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi folks, I'm not sure if -ports is the right place to ask this question. Pointers to better lists accepted. I'm trying to build a FreeBSD package using pkg_create(1), and I'm trying to do this outside of the ports system. Suppose I have /tmp/foo.ps, and I want to package this in to foo.tgz. When the user runs "pkg_add foo.tgz", "foo.ps" should be installed in to /usr/local/share/foo/foo.ps. However, on my system, I'm building the package from /tmp, and /usr/local/share/foo doesn't exist. I don't want to have to copy foo.ps in to /usr/local/share/foo before I build the package. Can I do this? After spending some time experimenting with pkg_create, I don't think I can. It looks as though it expects the package to be created from an installed version of the file, rather than from a version in a staging area. I'd expected to be able to do something like % pwd /tmp % ls foo.ps % cat PLIST @name Foo (Postscript) @srcdir . @cwd /usr/local/share/foo foo.ps % pkg_create -c "-Foo" -d "-Foo" -f PLIST foo and have it create foo.tgz. But it fails with tar: can't add file foo.ps : No such file or directory Any ideas? N -- There's some milk in the fridge about to go off. . . and there it goes. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 15:50:42 1999 Delivered-To: freebsd-ports@freebsd.org Received: from stampede.cs.berkeley.edu (stampede.CS.Berkeley.EDU [128.32.45.124]) by hub.freebsd.org (Postfix) with ESMTP id 69A0C14C96; Sun, 16 May 1999 15:50:40 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca41-214.ix.netcom.com [209.111.208.214]) by stampede.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id PAA19464; Sun, 16 May 1999 15:51:46 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.2/8.6.9) id PAA69901; Sun, 16 May 1999 15:50:24 -0700 (PDT) Date: Sun, 16 May 1999 15:50:24 -0700 (PDT) Message-Id: <199905162250.PAA69901@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 Subject: PORTS FREEZE over From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The 3.2 release is rolled now so the ports freeze is over. Thanks for your cooperation. -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 16:15:43 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 766) id B65641548A; Sun, 16 May 1999 16:15:34 -0700 (PDT) To: roberto@keltia.freenix.fr, mharo@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG From: mharo@FreeBSD.ORG Subject: Re: ports/11730 Message-Id: <19990516231534.B65641548A@hub.freebsd.org> Date: Sun, 16 May 1999 16:15:34 -0700 (PDT) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Patch to update PCRE port up to 2.05 State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Sun May 16 16:15:25 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 16:20:30 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 766) id B64D61518D; Sun, 16 May 1999 16:20:27 -0700 (PDT) To: cpiazza@home.net, mharo@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG From: mharo@FreeBSD.ORG Subject: Re: ports/11735 Message-Id: <19990516232027.B64D61518D@hub.freebsd.org> Date: Sun, 16 May 1999 16:20:27 -0700 (PDT) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: x11-wm/icewm State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Sun May 16 16:20:18 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 16:24:56 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 766) id 79CC815572; Sun, 16 May 1999 16:24:50 -0700 (PDT) To: cpiazza@home.net, mharo@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG From: mharo@FreeBSD.ORG Subject: Re: ports/11661 Message-Id: <19990516232450.79CC815572@hub.freebsd.org> Date: Sun, 16 May 1999 16:24:50 -0700 (PDT) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: master site update for cmp3 State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Sun May 16 16:24:39 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 16:28:48 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5938C151C1; Sun, 16 May 1999 16:28:33 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA00311; Sun, 16 May 1999 16:28:32 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 16 May 1999 16:28:32 -0700 (PDT) From: Message-Id: <199905162328.QAA00311@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, jfitz@FreeBSD.org Subject: Re: ports/11636: p5-Mail-Folder missing dependencies Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: p5-Mail-Folder missing dependencies Responsible-Changed-From-To: freebsd-ports->jfitz Responsible-Changed-By: steve Responsible-Changed-When: Sun May 16 16:28:10 PDT 1999 Responsible-Changed-Why: Over to port's maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 16:29: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CF953152C0; Sun, 16 May 1999 16:29:06 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA00391; Sun, 16 May 1999 16:29:06 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 16 May 1999 16:29:06 -0700 (PDT) From: Message-Id: <199905162329.QAA00391@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, andreas@FreeBSD.org Subject: Re: ports/11656: lyx-port needs a patch until the next LyX release Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: lyx-port needs a patch until the next LyX release Responsible-Changed-From-To: freebsd-ports->andreas Responsible-Changed-By: steve Responsible-Changed-When: Sun May 16 16:28:44 PDT 1999 Responsible-Changed-Why: Over to port's maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 16:29:53 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F0D8214FF9; Sun, 16 May 1999 16:29:51 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA00534; Sun, 16 May 1999 16:29:51 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 16 May 1999 16:29:51 -0700 (PDT) From: Message-Id: <199905162329.QAA00534@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, kris@FreeBSD.org Subject: Re: ports/11660: Update: x11-clocks/astime Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: x11-clocks/astime Responsible-Changed-From-To: freebsd-ports->kris Responsible-Changed-By: steve Responsible-Changed-When: Sun May 16 16:29:36 PDT 1999 Responsible-Changed-Why: Over to port's maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 16:30:32 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3675214FF9; Sun, 16 May 1999 16:30:30 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA00619; Sun, 16 May 1999 16:30:29 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 16 May 1999 16:30:29 -0700 (PDT) From: Message-Id: <199905162330.QAA00619@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, andreas@FreeBSD.org Subject: Re: ports/11717: Update to sysutils/star Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update to sysutils/star Responsible-Changed-From-To: freebsd-ports->andreas Responsible-Changed-By: steve Responsible-Changed-When: Sun May 16 16:30:09 PDT 1999 Responsible-Changed-Why: Over to port's maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 16:30:54 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E222F1552C; Sun, 16 May 1999 16:30:52 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA00697; Sun, 16 May 1999 16:30:52 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 16 May 1999 16:30:52 -0700 (PDT) From: Message-Id: <199905162330.QAA00697@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, billf@FreeBSD.org Subject: Re: ports/11722: textproc/htdig upgrade from 3.1.1 to 3.1.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: textproc/htdig upgrade from 3.1.1 to 3.1.2 Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: steve Responsible-Changed-When: Sun May 16 16:30:37 PDT 1999 Responsible-Changed-Why: Over to port's maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 16:33:51 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 759A7154FC; Sun, 16 May 1999 16:32:50 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA00910; Sun, 16 May 1999 16:32:50 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 16 May 1999 16:32:50 -0700 (PDT) From: Message-Id: <199905162332.QAA00910@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11715: Update: x11/aterm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: x11/aterm State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 16 16:31:51 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 16:34:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 766) id BB35815605; Sun, 16 May 1999 16:34:17 -0700 (PDT) To: cpiazza@home.net, mharo@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG From: mharo@FreeBSD.ORG Subject: Re: ports/11729 Message-Id: <19990516233417.BB35815605@hub.freebsd.org> Date: Sun, 16 May 1999 16:34:17 -0700 (PDT) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: x11-wm/flwm State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Sun May 16 16:34:11 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 16:35: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1598A156C0; Sun, 16 May 1999 16:34:29 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA01132; Sun, 16 May 1999 16:34:28 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 16 May 1999 16:34:28 -0700 (PDT) From: Message-Id: <199905162334.QAA01132@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11701: Update: audio/gqmpeg Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: audio/gqmpeg State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 16 16:33:13 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 16:35:48 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CCDD314BD4; Sun, 16 May 1999 16:35:46 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA01305; Sun, 16 May 1999 16:35:46 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 16 May 1999 16:35:46 -0700 (PDT) From: Message-Id: <199905162335.QAA01305@freefall.freebsd.org> To: ve@sci.fi, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11694: Update of the fetchmail port to version 5.0.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update of the fetchmail port to version 5.0.3 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 16 16:35:05 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 16:38:27 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 345DD14FA9; Sun, 16 May 1999 16:37:46 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA01708; Sun, 16 May 1999 16:37:46 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 16 May 1999 16:37:46 -0700 (PDT) From: Message-Id: <199905162337.QAA01708@freefall.freebsd.org> To: eischen@vigrid.com, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11693: Upgrade Xmcd to latest version (xmcd-2.5) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Upgrade Xmcd to latest version (xmcd-2.5) State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 16 16:36:47 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 16:42:25 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5574915771; Sun, 16 May 1999 16:39:44 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA02076; Sun, 16 May 1999 16:39:44 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 16 May 1999 16:39:44 -0700 (PDT) From: Message-Id: <199905162339.QAA02076@freefall.freebsd.org> To: dchapes@ddm.on.ca, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11678: Port upgrade, games/ifm from 3.0 to 4.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port upgrade, games/ifm from 3.0 to 4.1 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 16 16:39:03 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 16:42:29 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0FEF81575C; Sun, 16 May 1999 16:41:17 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA02298; Sun, 16 May 1999 16:41:16 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 16 May 1999 16:41:16 -0700 (PDT) From: Message-Id: <199905162341.QAA02298@freefall.freebsd.org> To: xaa@xaa.iae.nl, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11673: Upgrade to 0955 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Upgrade to 0955 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 16 16:40:09 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 16:43: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 766) id 0D19E1556C; Sun, 16 May 1999 16:41:41 -0700 (PDT) To: cpiazza@home.net, mharo@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG From: mharo@FreeBSD.ORG Subject: Re: ports/11703 Message-Id: <19990516234141.0D19E1556C@hub.freebsd.org> Date: Sun, 16 May 1999 16:41:41 -0700 (PDT) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: games/qstat State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Sun May 16 16:41:18 PDT 1999 State-Changed-Why: committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 16:43:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AB20B157B5; Sun, 16 May 1999 16:42:40 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA02456; Sun, 16 May 1999 16:42:40 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 16 May 1999 16:42:40 -0700 (PDT) From: Message-Id: <199905162342.QAA02456@freefall.freebsd.org> To: sheldonh@uunet.co.za, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11668: [PATCH] Add WWW URL to xpilot DESCR Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] Add WWW URL to xpilot DESCR State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 16 16:41:45 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 16:44:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 813DD14C3D; Sun, 16 May 1999 16:44:10 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA02824; Sun, 16 May 1999 16:44:10 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 16 May 1999 16:44:10 -0700 (PDT) From: Message-Id: <199905162344.QAA02824@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11659: Update: net/ninja Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: net/ninja State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 16 16:43:04 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 16:46:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3A58B15695; Sun, 16 May 1999 16:46:07 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA03125; Sun, 16 May 1999 16:46:07 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 16 May 1999 16:46:07 -0700 (PDT) From: Message-Id: <199905162346.QAA03125@freefall.freebsd.org> To: andy@icc.surw.chel.su, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11644: Update port: games/xquarto Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/xquarto State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 16 16:44:50 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 17: 4:13 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 130D114A12; Sun, 16 May 1999 17:04:11 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA04259; Sun, 16 May 1999 17:04:11 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 16 May 1999 17:04:11 -0700 (PDT) From: Message-Id: <199905170004.RAA04259@freefall.freebsd.org> To: steve@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11436: New port: Nessus security scanner Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: Nessus security scanner Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: steve Responsible-Changed-When: Sun May 16 17:03:50 PDT 1999 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 17: 7:28 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E9A814A12; Sun, 16 May 1999 17:07:28 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA04944; Sun, 16 May 1999 17:07:27 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 16 May 1999 17:07:27 -0700 (PDT) From: Message-Id: <199905170007.RAA04944@freefall.freebsd.org> To: steve@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: pending/11491: new port of shujit java compiler Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port of shujit java compiler Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: steve Responsible-Changed-When: Sun May 16 17:06:56 PDT 1999 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 17:12: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 89EBD14BDB; Sun, 16 May 1999 17:12:07 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA05550; Sun, 16 May 1999 17:12:07 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 16 May 1999 17:12:07 -0700 (PDT) From: Message-Id: <199905170012.RAA05550@freefall.freebsd.org> To: steve@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: pending/11618: new port: editors/xemacs21 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Old Synopsis: Xemacs21 port New Synopsis: new port: editors/xemacs21 Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: steve Responsible-Changed-When: Sun May 16 17:09:39 PDT 1999 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 17:14:13 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3293214BDB; Sun, 16 May 1999 17:14:12 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA05933; Sun, 16 May 1999 17:14:12 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 16 May 1999 17:14:12 -0700 (PDT) From: Message-Id: <199905170014.RAA05933@freefall.freebsd.org> To: steve@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: pending/11734: New Port: tya JIT compiler for Java Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New Port: tya JIT compiler for Java Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: steve Responsible-Changed-When: Sun May 16 17:13:52 PDT 1999 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 18: 6:21 1999 Delivered-To: freebsd-ports@freebsd.org Received: from poo.smooch (ts99-195.dublin.indigo.ie [194.125.207.204]) by hub.freebsd.org (Postfix) with ESMTP id 928121523D for ; Sun, 16 May 1999 18:06:15 -0700 (PDT) (envelope-from blokey@indigo.ie) Received: (from plop@localhost) by poo.smooch (8.9.3/8.9.1) id CAA02881 for freebsd-ports@freebsd.org; Mon, 17 May 1999 02:06:14 +0100 (IST) (envelope-from plop) Message-ID: <19990517020614.A2864@smooch> Date: Mon, 17 May 1999 02:06:14 +0100 From: Smelly Pooh To: freebsd-ports@freebsd.org Subject: Ports versioning Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've noticed that whenever I install a new version of a package, the ports system leaves the old package there anyway and overwrites bits of it. This is a bit annoying, last time I brought it up I was told to pkg_delete before doing a make install. This is a bit awkward for ports with multiple dependencies (e.g. GNOME or KDE), is there any other way I could go about it? Please reply via e-mail, I'm not subscribed to this list, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 20:16:37 1999 Delivered-To: freebsd-ports@freebsd.org Received: from m0.dynamite.com.au (m0.dynamite.com.au [203.17.154.40]) by hub.freebsd.org (Postfix) with ESMTP id BFBEF1548A for ; Sun, 16 May 1999 20:16:28 -0700 (PDT) (envelope-from balistic@dynamite.com.au) Received: from zoisite.sge.net (tnt.dynamite.com.au [203.17.154.33]) by m0.dynamite.com.au (8.8.5/8.8.5) with SMTP id NAA08817 for ; Mon, 17 May 1999 13:14:48 +1000 Message-Id: <199905170314.NAA08817@m0.dynamite.com.au> To: ports@freebsd.org From: balistic@dynamite.com.au Subject: Quakeserver Date: Mon, 17 May 99 13:17:19 +0000 X-Mailer: Endymion MailMan Standard Edition v3.0.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Guys, I noticed that the Quakeserver 1.0 you have in your ports collection is a Linux version. Would you like the BSD version? If so , drop me a line and I can get it to you. Frayne ---------------------------------------------------------------- This message was sent using Dynamite Internet's Web Mail System. http://home.dynamite.com.au/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 20:16:38 1999 Delivered-To: freebsd-ports@freebsd.org Received: from m0.dynamite.com.au (m0.dynamite.com.au [203.17.154.40]) by hub.freebsd.org (Postfix) with ESMTP id DEDA21548B for ; Sun, 16 May 1999 20:16:34 -0700 (PDT) (envelope-from balistic@dynamite.com.au) Received: from zoisite.sge.net (tnt.dynamite.com.au [203.17.154.33]) by m0.dynamite.com.au (8.8.5/8.8.5) with SMTP id NAA08826 for ; Mon, 17 May 1999 13:14:51 +1000 Message-Id: <199905170314.NAA08826@m0.dynamite.com.au> To: ports@freebsd.org From: balistic@dynamite.com.au Subject: Quakeserver Date: Mon, 17 May 99 13:17:22 +0000 X-Mailer: Endymion MailMan Standard Edition v3.0.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Guys, I noticed that the Quakeserver 1.0 you have in your ports collection is a Linux version. Would you like the BSD version? If so , drop me a line and I can get it to you. Frayne ---------------------------------------------------------------- This message was sent using Dynamite Internet's Web Mail System. http://home.dynamite.com.au/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 20:36:24 1999 Delivered-To: freebsd-ports@freebsd.org Received: from adelphi.physics.adelaide.edu.au (adelphi.physics.adelaide.edu.au [129.127.36.247]) by hub.freebsd.org (Postfix) with ESMTP id D507614EE5 for ; Sun, 16 May 1999 20:36:19 -0700 (PDT) (envelope-from kkennawa@physics.adelaide.edu.au) Received: from bragg (bragg [129.127.36.34]) by adelphi.physics.adelaide.edu.au (8.8.8/8.8.8/UofA-1.5) with SMTP id NAA22995; Mon, 17 May 1999 13:06:18 +0930 (CST) Received: from localhost by bragg; (5.65/1.1.8.2/05Aug95-0227PM) id AA16713; Mon, 17 May 1999 13:07:07 +0930 Date: Mon, 17 May 1999 13:07:07 +0930 (CST) From: Kris Kennaway X-Sender: kkennawa@bragg To: "Gary D. Margiotta" Cc: ports@FreeBSD.ORG Subject: Re: Building ports... 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 On Sun, 16 May 1999, Gary D. Margiotta wrote: > I apologize if this is a slight off topic question, but I think it might > be related to -current... No, it's not (nor -stable, technically). This type of question should go to freebsd-questions or freebsd-ports, too. > Just loaded a 3.1-STABLE box, and went to build a couple of ports. First > it told me that I couldn't use the bsd.port.mk because it was too old. > Fine, so I go and cvsup the current sources for /usr/share, and I do a > make install in /usr/src/share/mk. The files install properly, and I go > to the ports collection. I go into a number of ports, and try a 'make' an > any given port. It then tells me the following: > > fetch: illegal option -- A > Grab the package update kit from the website. You can't use a current ports snapshot with an old source tree without first upgrading your environment with the upgrade kit. Kris > ______________________________________________________________ > -Gary Margiotta Voice: (973) 835-7855 > TBE Internet Services Fax: (973) 835-4755 > http://www.tbe.net E-Mail: gary@tbe.net > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > ----- "That suit's sharper than a page of Oscar Wilde witticisms that's been rolled up into a point, sprinkled with lemon juice and jabbed into someone's eye" "Wow, that's sharp!" - Ace Rimmer and the Cat, _Red Dwarf_ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 16 21:44:52 1999 Delivered-To: freebsd-ports@freebsd.org Received: from dutton3.it.siu.edu (dutton3.it.siu.edu [131.230.6.142]) by hub.freebsd.org (Postfix) with ESMTP id BB88C151E3 for ; Sun, 16 May 1999 21:44:50 -0700 (PDT) (envelope-from jimd@dutton3.it.siu.edu) Received: from dutton3.it.siu.edu (localhost [127.0.0.1]) by dutton3.it.siu.edu (8.9.3/8.9.3/8.9.3.1) with ESMTP id XAA84680; Sun, 16 May 1999 23:44:24 -0500 (CDT) Message-ID: <373F9EA8.9724CC60@dutton3.it.siu.edu> Date: Sun, 16 May 1999 23:44:24 -0500 From: Jim Dutton Organization: Southern Illinois University X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: chris@still.whet.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: portsentry-0.61 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org FYI - the link to psionic.com's products has changed, and the source file link for version 0.61 is a copy of the "has changed" Web page. -- [what I USED to be ...] ________________________________________________________________________ SIU.EDU - DNS Admin, Postmaster, SMTP Admin, Netnews Admin SIUCVMB.SIU.EDU - DNS Admin, Postmaster, SMTP Admin, Sr TCP/IP Sys Prog SIUCMVSA.SIU.EDU - DNS Admin, Postmaster, SMTP Admin, Sr TCP/IP Sys Prog SIUCVMB, SIUCMVSA- Senior RSCS, VTAM, NCP Systems Programmer Systems Admin - Solaris, AIX, FreeBSD, NetBSD LDAP Admin - FreeBSD, NetBSD, Solaris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 17 1:30: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 915E5154EE for ; Mon, 17 May 1999 01:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA49646; Mon, 17 May 1999 01:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from blues.ghis.net (pppc1-13.eisa.net.au [203.166.251.13]) by hub.freebsd.org (Postfix) with ESMTP id 59B611545B for ; Mon, 17 May 1999 01:26:40 -0700 (PDT) (envelope-from jim@blues.ghis.net) Received: (from jim@localhost) by blues.ghis.net (8.9.3/8.9.3) id SAA44519; Mon, 17 May 1999 18:26:35 +1000 (EST) Message-Id: <199905170826.SAA44519@blues.ghis.net> Date: Mon, 17 May 1999 18:26:35 +1000 (EST) From: jim@phrantic.phear.net Reply-To: jim@blues.ghis.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11741: update port: slrn-0.9.5.5 to 0.9.5.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11741 >Category: ports >Synopsis: update port: slrn-0.9.5.5 to 0.9.5.6 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon May 17 01:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jim Mock >Release: FreeBSD 3.1-RELEASE i386 >Organization: >Environment: >Description: Patch updates the slrn update committed earlier today to 0.9.5.6. The current port (0.9.5.5) is unfetchable, so this should be committed ASAP in order to fix it. >How-To-Repeat: >Fix: Apply the following diff.. diff -ruN /usr/ports/news/slrn/Makefile slrn/Makefile --- /usr/ports/news/slrn/Makefile Mon May 17 09:41:01 1999 +++ slrn/Makefile Mon May 17 18:11:18 1999 @@ -6,8 +6,7 @@ # $Id: Makefile,v 1.13 1999/05/16 23:41:01 steve Exp $ # -DISTNAME= slrn0.9.5.5 -PKGNAME= slrn-0.9.5.5 +DISTNAME= slrn-0.9.5.6 CATEGORIES= news MASTER_SITES= ftp://space.mit.edu/pub/davis/slrn/ @@ -15,7 +14,6 @@ LIB_DEPENDS= slang.1:${PORTSDIR}/devel/libslang -WRKSRC= ${WRKDIR}/slrn GNU_CONFIGURE= yes ALL_TARGET= all slrnpull MAN1= slrn.1 diff -ruN /usr/ports/news/slrn/files/md5 slrn/files/md5 --- /usr/ports/news/slrn/files/md5 Mon May 17 09:41:04 1999 +++ slrn/files/md5 Mon May 17 18:11:18 1999 @@ -1 +1 @@ -MD5 (slrn0.9.5.5.tar.gz) = dde36c21a59766e0382f5200833413c0 +MD5 (slrn-0.9.5.6.tar.gz) = bb08c839ff04ac9d30771d9d383c46ef >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 May 17 1:40:41 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 766) id 31CFE156C6; Mon, 17 May 1999 01:40:39 -0700 (PDT) To: jim@blues.ghis.net, mharo@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG From: mharo@FreeBSD.ORG Subject: Re: ports/11741 Message-Id: <19990517084039.31CFE156C6@hub.freebsd.org> Date: Mon, 17 May 1999 01:40:39 -0700 (PDT) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: slrn-0.9.5.5 to 0.9.5.6 State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Mon May 17 01:40:26 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 17 2: 0:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 88D6215561 for ; Mon, 17 May 1999 02:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA52794; Mon, 17 May 1999 02:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.tg.rim.or.jp (mail.tg.rim.or.jp [202.247.130.149]) by hub.freebsd.org (Postfix) with ESMTP id 04709154EE for ; Mon, 17 May 1999 01:55:06 -0700 (PDT) (envelope-from inagaki@tg.rim.or.jp) Received: from lunatic.kareidoscope.ne.jp (skai0730.ppp.infoweb.ne.jp [202.248.10.238]) by mail.tg.rim.or.jp (8.8.8/3.6W-RIMNET-98-06-09) with ESMTP id RAA05673 for ; Mon, 17 May 1999 17:55:01 +0900 (JST) Received: from localhost (localhost [127.0.0.1]) by lunatic.kareidoscope.ne.jp (8.9.3/3.7W) with ESMTP id RAA21221 for ; Mon, 17 May 1999 17:56:05 +0900 (JST) Message-Id: <19990517175605C.inagaki@tg.rim.or.jp> Date: Mon, 17 May 1999 17:56:05 +0900 From: Inagaki Kentaro (=?iso-2022-jp?B?GyRCMHAzQDdyQkBPOhsoQg==?=) To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11742: Problems with japanese/dvipsk* support. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11742 >Category: ports >Synopsis: Problems with japanese/dvipsk* support. >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon May 17 02:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Inagaki Kentaro & >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: >Description: Although japanese/ptex-common makes directory share/texmf/dvips this is the thing without necessity. Japanese/dvipsk* must open this place so that it is able to make a directory because it requires directory share/texmf/dvips. >How-To-Repeat: >Fix: begin 644 ptex-common.diff.gz M'XL(```````"`YU5:V_:,!3]3'Z%IU6J-$A,@)9'M8FNI1M:J3I@TZ1UJDQB M!XO$MNPPI:WX[[,31%_$4??%=G+./??AFQO7=8%(<>8&/$DX@Q.TPH3&V..2 M1K79FH$)N@/^,?"[@Z/FH-,%?K_?=^KU^EZS9Q:]0;,[:/4*B^$0N)U.HP?J M^3H<.L##L<(.J`T/'F:C^>CJYP9ST=78Q_?3QX*`X;H.&O9M7@^7BZ M@=/1]^+IZG0RVH#QU6Q^>GEI]%A(B>,:P?GI=`-<%V=!O`XQ.-2Q)@3J%<;( MK`ND,/QP"-PSL',$U1))#&ZT`@#N?48T=#Z>S7.GQ?%V]N-S_ICKQ73A=KVV MER+I1?=._0V.7S'"OU0H$]&-U@'[XOJ/B$#MO0YI.C&$EWKP,;((,RQI`&F" M(JQ*B`NZR..G"YA0%9A[HP3\!N^`2YZ84$8X#*D$?TY`NL1,YP-T/N:*SW5A MF$[8;\`)9NL!%(<`KI74&*F.,^8^7MD3=/#^E&#\IA:85'9U88A798X:R2(*R,@,=<>D)R M"T.N[!*2"ZM"&%CM\Z.5@;.T(E%"6?[]6N,@:[:ZL\HL=2`V!:$(9ZGR$B1* M.4K@@*+8JF/2J<"#*D*BJV)-QKR@J8ZDBJ3NDBI.15VRN&55R-)2/.",T&B[ M>?J=Q&$U3R@+)R0H6])HZ04DJJ#%O(P4*9)RL8)2_\:P+'%H1J]F*!ZO4STI M.LVF(3X;**9A&$K,M\P7..^<$ER(V(8O:*I2B5%.R2=B\[C5\'T]$IMM?SL3 MAWHXR^25@(**KV6`RPFEB/'MN'O`QPI8X&T5+8SB,BP$TT#E\-ZX=T.\%"W& /?RE<_%V=?Y_?-PN/"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 Mon May 17 2:16:51 1999 Delivered-To: freebsd-ports@freebsd.org Received: from stampede.cs.berkeley.edu (stampede.CS.Berkeley.EDU [128.32.45.124]) by hub.freebsd.org (Postfix) with ESMTP id 5B5A21556C; Mon, 17 May 1999 02:16:45 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca41-214.ix.netcom.com [209.111.208.214]) by stampede.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id CAA20003; Mon, 17 May 1999 02:17:32 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.2/8.6.9) id CAA72207; Mon, 17 May 1999 02:15:38 -0700 (PDT) Date: Mon, 17 May 1999 02:15:38 -0700 (PDT) Message-Id: <199905170915.CAA72207@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: sprice@hiwaay.net Cc: se@freebsd.org, freebsd-ports@freebsd.org In-reply-to: (message from Steve Price on Sat, 15 May 1999 17:34:09 -0500 (CDT)) Subject: Re: Ok to remove kde port? From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) References: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Steve Price * Can we get rid of the version 1.0 kde* ports? It seems as * though version 1.1 is stable enough now to not warrant having * two versions laying about. If it is okay with you, after the * freeze I'll remove them and clean up the mess that's left * behind. Thanks. Actually Stefan sent me a mail regarding this a couple of days ago. This is what he said: * It appears that KDE-1.0 has been removed from the KDE mirrors, so we * probably shouldn't bother to include the old KDE ports anymore. OTOH, there * still are quite a number of KDE application ports, that LIB_DEPEND on the * old libraries. I found the following that want the the KDE-1.0 libraries: * * audio/kmikmod * audio/kmpg * deskutils/kproject * devel/ktranslator * graphics/killustrator * misc/kwatch * net/ksamba * palm/kpilot * print/klyx * x11/kworldwatch * * I'll check for as many as I can, whether I can make them build with * kdelibs11 instead of kdelibs ... * All the other KDE-1.0 port directories are not required any more, AFAICT. I assume this means all the kde* != *11 ports can be removed except for x11/kdelibs. I'm not sure if there aren't any more that depend on stuff other than kdelibs. A quick grep on INDEX show the following: >> for i in base games graphics libs multimedia network support utils; do echo -n "$i "; grep -c kde$i-1.0 /usr/ports/INDEX; done base 3 games 3 graphics 3 libs 18 multimedia 3 network 3 support 5 utils 3 Since the ports themselves and x11/kde account for 2, there seem to be a few more that depend on something other than kdelibs. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 17 2:40: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B3B614ECD for ; Mon, 17 May 1999 02:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA57108; Mon, 17 May 1999 02:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 18ABA14BF4; Mon, 17 May 1999 02:34:52 -0700 (PDT) Message-Id: <19990517093452.18ABA14BF4@hub.freebsd.org> Date: Mon, 17 May 1999 02:34:52 -0700 (PDT) From: marcel@scc.nl To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11743: inn-2.2 (nonfatal) premature stop of build. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11743 >Category: ports >Synopsis: inn-2.2 (nonfatal) premature stop of build. >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: Mon May 17 02:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Marcel Moolenaar >Release: 4.0-current >Organization: SCC vof >Environment: FreeBSD scones.sup.scc.nl 4.0-CURRENT FreeBSD 4.0-CURRENT #1: Sun May 16 16:23:34 CEST 1999 marcel@scones.sup.scc.nl:/usr/src/sys/compile/SCONES i386 >Description: The "do-subst.sh" script in the site subdir. runs make instead of gmake. This stops the build prematurely. >How-To-Repeat: >Fix: The following patch solves the problem *** site/do-subst.sh.orig Mon May 10 12:37:38 1999 --- site/do-subst.sh Mon May 10 12:37:54 1999 *************** *** 52,58 **** for I in ${PLAIN} ${CONTROLLED} ; do echo ../${BASEDIRNAME}/${I} done >${LISTOFFILES} ! ( cd ../config; make quiet FILE=${LISTOFFILES} ) rm -f ${LISTOFFILES} # check which files we really changed --- 52,58 ---- for I in ${PLAIN} ${CONTROLLED} ; do echo ../${BASEDIRNAME}/${I} done >${LISTOFFILES} ! ( cd ../config; gmake quiet FILE=${LISTOFFILES} ) rm -f ${LISTOFFILES} # check which files we really changed >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 May 17 3:34:42 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F373B156A7; Mon, 17 May 1999 03:34:07 -0700 (PDT) (envelope-from foxfair@FreeBSD.org) Received: (from foxfair@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA61890; Mon, 17 May 1999 03:34:07 -0700 (PDT) (envelope-from foxfair@FreeBSD.org) Date: Mon, 17 May 1999 03:34:07 -0700 (PDT) From: Message-Id: <199905171034.DAA61890@freefall.freebsd.org> To: yinjieh@Crazyman.Dorm10.NCTU.edu.tw, foxfair@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11721: new port: pdq Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: pdq State-Changed-From-To: open->closed State-Changed-By: foxfair State-Changed-When: Mon May 17 03:33:41 PDT 1999 State-Changed-Why: Committed, thanks!  To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 17 5:40:28 1999 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 14147152DB; Mon, 17 May 1999 05:40:25 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.1a/8.9.0) with ESMTP id HAA15510; Mon, 17 May 1999 07:40:25 -0500 (CDT) Date: Mon, 17 May 1999 07:40:24 -0500 (CDT) From: Steve Price To: Satoshi - Ports Wraith - Asami Cc: se@freebsd.org, freebsd-ports@freebsd.org Subject: Re: Ok to remove kde port? In-Reply-To: <199905170915.CAA72207@silvia.hip.berkeley.edu> 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 Mon, 17 May 1999, Satoshi - Ports Wraith - Asami wrote: # I assume this means all the kde* != *11 ports can be removed except # for x11/kdelibs. # # I'm not sure if there aren't any more that depend on stuff other than # kdelibs. A quick grep on INDEX show the following: # # >> for i in base games graphics libs multimedia network support utils; do echo -n "$i "; grep -c kde$i-1.0 /usr/ports/INDEX; done # base 3 # games 3 # graphics 3 # libs 18 # multimedia 3 # network 3 # support 5 # utils 3 # # Since the ports themselves and x11/kde account for 2, there seem to be # a few more that depend on something other than kdelibs. The following depend on kde* != 11 ports. audio/kmikmod/Makefile audio/kmpg/Makefile deskutils/kproject/Makefile devel/ktranslator/Makefile graphics/killustrator/Makefile misc/kwatch/Makefile net/ksamba/Makefile palm/kpilot/Makefile print/klyx/Makefile x11/kworldwatch/Makefile I'll look into them later today. -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 17 7:30: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A2A6415561 for ; Mon, 17 May 1999 07:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA48819; Mon, 17 May 1999 07:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 17 May 1999 07:30:02 -0700 (PDT) Message-Id: <199905171430.HAA48819@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Chris Piazza Subject: RE: ports/11726: Update: net/gftp Reply-To: Chris Piazza Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11726; it has been noted by GNATS. From: Chris Piazza To: cpiazza@home.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: RE: ports/11726: Update: net/gftp Date: Mon, 17 May 1999 07:24:23 -0700 (PDT) Program was updated to 2.0.1, new patch below. As a reminder, remove patch-ad and patch-ae Index: gftp/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/net/gftp/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 1999/04/27 00:37:35 1.2 +++ Makefile 1999/05/17 14:18:10 @@ -1,12 +1,12 @@ # New ports collection makefile for: gftp -# Version required: 1.13 +# Version required: 2.0.1 # Date Created: 21 Feb 1999 # Whom: Damjan Marion # # $Id: Makefile,v 1.2 1999/04/27 00:37:35 taoka Exp $ # -DISTNAME= gftp-1.13 +DISTNAME= gftp-2.0.1 CATEGORIES= net MASTER_SITES= http://www.newwave.net/~masneyb/ @@ -17,10 +17,14 @@ USE_AUTOCONF= yes USE_X_PREFIX= yes -post-install: - strip ${PREFIX}/bin/gftp - pre-install: find ${WRKSRC} -name \*.orig -exec ${RM} -f \{} \; + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/gftp ${PREFIX}/bin + @${MKDIR} ${PREFIX}/share/gftp +.for i in sample.gftp/* + ${INSTALL_DATA} ${WRKSRC}/$i ${PREFIX}/share/gftp +.endfor .include Index: gftp/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/net/gftp/files/md5,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 md5 --- md5 1999/04/03 01:38:52 1.1.1.1 +++ md5 1999/05/17 14:19:46 @@ -1 +1 @@ -MD5 (gftp-1.13.tar.gz) = c4fd2c2b21f5efeccf4ba2befb4fa564 +MD5 (gftp-2.0.1.tar.gz) = 66bbc2567cb0c94f6f80aa518656b26d Index: gftp/patches/patch-ab =================================================================== RCS file: /cvs/FreeBSD/ports/net/gftp/patches/patch-ab,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 patch-ab --- patch-ab 1999/04/03 01:38:52 1.1.1.1 +++ patch-ab 1999/05/17 14:17:35 @@ -1,11 +1,11 @@ ---- Makefile.in.orig Fri Apr 2 13:21:58 1999 -+++ Makefile.in Fri Apr 2 13:22:07 1999 -@@ -8,7 +8,7 @@ +--- Makefile.in.orig Sat May 15 10:56:01 1999 ++++ Makefile.in Sat May 15 13:26:17 1999 +@@ -6,7 +6,7 @@ + SHARE_DIR=$(PREFIX)/share/gftp + INSTALL=@INSTALL@ MACHINE=`uname -m`-`uname -p`-`uname -s` - # Add -DDEBUG to the CFLAGS line below if you want gFTP to print some extra - # information to stdout --CFLAGS=@CFLAGS@ -D_POSIX_SOURCE -D_REENTRANT -Wall -ansi -DSHARE_DIR=\"$(SHARE_DIR)\" -+CFLAGS=@CFLAGS@ -pthread -Wall -ansi -DSHARE_DIR=\"$(SHARE_DIR)\" +-CFLAGS=@CFLAGS@ -Wall -D_REENTRANT -DSHARE_DIR=\"$(SHARE_DIR)\" ++CFLAGS=@CFLAGS@ -pthread -DSHARE_DIR=\"$(SHARE_DIR)\" LIBS=@LIBS@ EXE=gftp - OBJS=cache.o chmod_dialog.o config_file.o connect_dialog.o delete_dialog.o \ + OBJS=bookmarks.o cache.o chmod_dialog.o config_file.o \ Index: gftp/patches/patch-ac =================================================================== RCS file: /cvs/FreeBSD/ports/net/gftp/patches/patch-ac,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 patch-ac --- patch-ac 1999/04/03 01:38:52 1.1.1.1 +++ patch-ac 1999/05/17 14:17:35 @@ -1,14 +1,15 @@ ---- gnome-ftp.h.orig Fri Apr 2 13:29:30 1999 -+++ gnome-ftp.h Fri Apr 2 13:29:46 1999 -@@ -22,9 +22,9 @@ +--- gnome-ftp.h.orig Sat May 15 12:50:04 1999 ++++ gnome-ftp.h Sat May 15 12:50:37 1999 +@@ -22,10 +22,10 @@ #include #include -#include -#include #include + #include +#include +#include - #include #include #include + #include Index: gftp/pkg/PLIST =================================================================== RCS file: /cvs/FreeBSD/ports/net/gftp/pkg/PLIST,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 PLIST --- PLIST 1999/04/03 01:38:52 1.1.1.1 +++ PLIST 1999/05/17 14:17:35 @@ -5,14 +5,13 @@ share/gftp/dir.xpm share/gftp/doc.xpm share/gftp/dotdot.xpm -share/gftp/down.xpm share/gftp/exe.xpm share/gftp/gftp-logo.xpm share/gftp/gftprc share/gftp/linkdir.xpm share/gftp/linkfile.xpm share/gftp/man.xpm +share/gftp/open_dir.xpm share/gftp/tar.xpm share/gftp/txt.xpm -share/gftp/up.xpm @dirrm share/gftp --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 17 11: 0:16 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 05C2D15041 for ; Mon, 17 May 1999 11:00:08 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA06417 for freebsd-ports@freebsd.org; Mon, 17 May 1999 11:00:07 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 17 May 1999 11:00:07 -0700 (PDT) Message-Id: <199905171800.LAA06417@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 [1999/04/27] ports/11359ports rvplayer 5.0 (Linux) cases ncr PCI SCSI d 1 problem total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1998/09/19] ports/7987 ports Can't post news with TRN + NNTPCACHE o [1999/03/07] ports/10480ports tk81 will not *compile* with threaded app o [1999/03/18] ports/10665ports ports/graphics/sane needs access to /dev/ o [1999/03/19] ports/10681ports lessitf can't find X11 Revision 5 or high o [1999/04/04] ports/10943ports "ports/print/teTeX-beta# make install" fa f [1999/04/07] ports/11003ports wmcdplay is not capable of playing an AUD o [1999/05/03] ports/11465ports The port chipmunk will not run. o [1999/05/05] ports/11515ports new port: net/brouted o [1999/05/05] ports/11521ports Broken openssl port & Apache 1.3.6 o [1999/05/06] ports/11535ports Problems with cyrillic support. 10 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1998/05/19] ports/6699 ports New port: the Generic NQS system o [1998/09/19] ports/7992 ports New port: xemacs20-stepwise (XEmacs20 hac a [1998/11/25] ports/8864 ports useradd - system V compatible implementat o [1999/01/07] docs/9375 ports Information on how to build PLIST automat a [1999/01/24] ports/9657 ports Progressive Networks' RealAudio proxy por o [1999/01/31] ports/9851 ports Port update: update R to 0.63.2 o [1999/02/02] ports/9884 ports samba does not allow "joes" (username+pas o [1999/02/07] ports/9954 ports new port devel/ACE o [1999/02/10] ports/10007ports Port of the mercury compiler version 0.8 o [1999/02/14] ports/10093ports Upgrade GNAT to 3.11p and fix for ELF o [1999/02/15] ports/10103ports revision of port of plugger-3.0 o [1999/02/16] ports/10124ports UNIX|STAT pr submission failed to include o [1999/03/03] ports/10377ports `make' in ports does not honor {f,ht}tp_p o [1999/03/04] ports/10389ports Create new port mod_jserv and JSDK 2.0 o [1999/03/07] ports/10469ports new port: linux-netcape-communicator-4.51 o [1999/03/07] ports/10477ports The fakemail in lib-src fails to link (ne o [1999/03/10] ports/10532ports Port of GNU Pascal o [1999/03/16] ports/10634ports Update the hylafax port to do a client in f [1999/03/20] ports/10702ports Add NCD audio support for emiclock ports f [1999/03/21] ports/10707ports [ADD] port for doxygen o [1999/03/26] ports/10813ports crossgo32 brokeness f [1999/03/28] ports/10844ports New port: adagdb o [1999/03/30] ports/10874ports [PATCH] html2ps doesn't handle `file:/... o [1999/04/02] ports/10916ports new port biology/molmol again o [1999/04/05] ports/10961ports gzipped manpages and .so macro in ports o [1999/04/08] ports/11029ports Configure scripts for non ported applicat o [1999/04/08] ports/11034ports New ports of crazywwwboardle o [1999/04/11] ports/11086ports Updating AStyle port o [1999/04/13] ports/11127ports New port: Giram o [1999/04/20] ports/11250ports PORTS: upgrade lesstif to 0.88.1 o [1999/04/21] ports/11267ports [New port] textproc/fconv (the return) o [1999/04/24] ports/11304ports New port syncal-0.5, syncing of ical and o [1999/04/25] ports/11319ports Netscape4-navigator wasn't FORTIFY'ing o [1999/05/01] ports/11436ports New port: Nessus security scanner o [1999/05/03] ports/11468ports New port: xcin-devel o [1999/05/04] ports/11486ports New port: gedit-0.5.1 o [1999/05/04] ports/11491ports new port of shujit java compiler o [1999/05/05] ports/11512ports new port: x11-toolkits/wxGTK o [1999/05/05] ports/11520ports Freewais port does not respect ${PREFIX} o [1999/05/08] ports/11587ports inappropriate internet time calculation o [1999/05/08] ports/11599ports New port: japanese/xdvik-vflib o [1999/05/09] ports/11600ports New port: phalanx-21 o [1999/05/09] ports/11601ports new port: ifmail-os-2.14.5 o [1999/05/09] ports/11602ports new port: gup-0.4 o [1999/05/09] ports/11603ports New port: dbview-1.0.3 o [1999/05/09] ports/11618ports new port: editors/xemacs21 o [1999/05/10] ports/11638ports [New port] ja-emacs-manual o [1999/05/11] ports/11641ports New port: net/firewalk o [1999/05/11] ports/11647ports New port: biology/deft (Density Functiona o [1999/05/11] ports/11649ports New port: biology/ortep3 o [1999/05/11] ports/11652ports New port (net/dictd) o [1999/05/12] ports/11663ports Update to port slush o [1999/05/12] ports/11665ports ports tarballs (mopac7, psi88) cannot be o [1999/05/12] ports/11672ports New port: intel2gas-1.2 o [1999/05/13] ports/11682ports new port : devel/t1lib o [1999/05/13] ports/11684ports new port: korean/hanIM o [1999/05/13] ports/11685ports new port: korean/linux_locale o [1999/05/13] ports/11699ports new port: FastCGI development kit o [1999/05/14] ports/11712ports Rosegarden Port is out to date o [1999/05/14] ports/11714ports New port: cls-1.0 (safe version of clear) o [1999/05/14] ports/11718ports New port: sdd o [1999/05/15] ports/11723ports new port for sslproxy o [1999/05/15] ports/11726ports Update: net/gftp o [1999/05/15] ports/11727ports Character combinations halting bind8 o [1999/05/15] ports/11728ports WAIS support for gopher o [1999/05/16] ports/11731ports new port: dopewars-1.4.2 o [1999/05/16] ports/11734ports New Port: tya JIT compiler for Java o [1999/05/17] ports/11742ports Problems with japanese/dvipsk* support. o [1999/05/17] ports/11743ports inn-2.2 (nonfatal) premature stop of buil 69 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 May 17 11:59:58 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mail15.svr.pol.co.uk (mail15.svr.pol.co.uk [195.92.193.25]) by hub.freebsd.org (Postfix) with ESMTP id A9B7C14CD4 for ; Mon, 17 May 1999 11:58:29 -0700 (PDT) (envelope-from tom@eborcom.com) Received: from modem-30.haymaker.dialup.pol.co.uk ([62.136.157.30] ident=[+mI8nasS0mP0WBJEZAJgNTG13NRPf8Bd]) by mail15.svr.pol.co.uk with esmtp (Exim 2.12 #1) id 10jSaq-0003ii-00 for freebsd-ports@freebsd.org; Mon, 17 May 1999 19:58:28 +0100 Received: (qmail 4618 invoked by uid 5000); 17 May 1999 18:12:43 -0000 Date: Mon, 17 May 1999 19:12:43 +0100 From: Tom Hukins To: Satoshi - Ports Wraith - Asami Cc: sprice@hiwaay.net, se@freebsd.org, freebsd-ports@freebsd.org Subject: Re: Ok to remove kde port? Message-ID: <19990517191243.D4493@eborcom.com> Mail-Followup-To: Satoshi - Ports Wraith - Asami , sprice@hiwaay.net, se@freebsd.org, freebsd-ports@freebsd.org References: <199905170915.CAA72207@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <199905170915.CAA72207@silvia.hip.berkeley.edu>; from Satoshi - Ports Wraith - Asami on Mon, May 17, 1999 at 02:15:38AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, May 17, 1999 at 02:15:38AM -0700, Satoshi - Ports Wraith - Asami wrote: > * still are quite a number of KDE application ports, that LIB_DEPEND on the > * old libraries. I found the following that want the the KDE-1.0 libraries: > * > * audio/kmikmod > * audio/kmpg As the MAINTAINER for these two, the only reason I added a dependency to 1.0 was that was what seemed to be standard at the time. kmpg can easily be upgraded - I'm running it with 1.1 with no problem. kmikmod appears to be broken, as the committer (taoka) changed the port significantly when committing it. I wrote to him about this, but have not heard back. > * print/klyx This one is also mine - I'm running it under 1.1 with no problems. I won't be able to do anything about this for the next week or so (new job + new house = busy) but I'll look into things then if they haven't already been dealt with. Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 17 12:44:47 1999 Delivered-To: freebsd-ports@freebsd.org Received: from fleming.cs.strath.ac.uk (fleming.cs.strath.ac.uk [130.159.196.126]) by hub.freebsd.org (Postfix) with ESMTP id 8D35514CD0 for ; Mon, 17 May 1999 12:44:44 -0700 (PDT) (envelope-from roger@cs.strath.ac.uk) Received: from muir-10 (roger@muir-10.cs.strath.ac.uk [130.159.148.10]) by fleming.cs.strath.ac.uk (8.8.8/8.8.8) with SMTP id UAA01069 Mon, 17 May 1999 20:44:43 +0100 (BST) Message-ID: <374071AB.794B@cs.strath.ac.uk> Date: Mon, 17 May 1999 20:44:43 +0100 From: Roger Hardiman Organization: University of Strathclyde X-Mailer: Mozilla 3.04Gold (X11; I; OSF1 V4.0 alpha) MIME-Version: 1.0 To: ports@freebsd.org Subject: 3.2-R and Netscape ports 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 just installed FreeBSD 3.2 from the ftp site. Both the /ports/www/netscape4-communicator and the /ports/www/netscape45-communicator ports fail to install. I'm in the UK so I did not use the USA versions. Netscape 4.08 fails with Couldn't open /usr/libexec/ld.so. Netscape 45 fails with * ERROR * but I did not record it. I'm away from the machine just now. I selected the compat22 during installation. Any suggestions? Roger -- Roger Hardiman | Telepresence Research Group roger@cs.strath.ac.uk | DMEM, University of Strathclyde tel: 0141 548 2897 | Glasgow, Scotland, G1 1XJ, UK fax: 0141 552 0557 | http://telepresence.dmem.strath.ac.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 17 12:52:16 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 766) id 93CA715225; Mon, 17 May 1999 12:52:14 -0700 (PDT) To: cpiazza@home.net, mharo@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG From: mharo@FreeBSD.ORG Subject: Re: ports/11726 Message-Id: <19990517195214.93CA715225@hub.freebsd.org> Date: Mon, 17 May 1999 12:52:14 -0700 (PDT) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: net/gftp State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Mon May 17 12:52:05 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 17 12:57:17 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mortar.carlson.com (mortar.carlson.com [208.240.12.98]) by hub.freebsd.org (Postfix) with ESMTP id 5222B15355 for ; Mon, 17 May 1999 12:57:00 -0700 (PDT) (envelope-from veldy@visi.com) Received: from mortar.carlson.com (root@localhost) by mortar.carlson.com with ESMTP id OAA00530; Mon, 17 May 1999 14:57:02 -0500 (CDT) Received: from w142844 ([172.25.99.35]) by mortar.carlson.com with SMTP id OAA00526; Mon, 17 May 1999 14:57:01 -0500 (CDT) Message-ID: <026001bea09f$8a076fe0$236319ac@w142844.carlson.com> From: "Thomas T. Veldhouse" To: "Roger Hardiman" , Subject: Re: 3.2-R and Netscape ports Date: Mon, 17 May 1999 14:57:47 -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 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org You need to compile XFree86 yourself and choose the a.out compatibility option. compat22 only added OS level compatiblity. There may be binary packages around for XFree86 that you can use, but I am not aware of them. Tom Veldhouse veldy@visi.com -----Original Message----- From: Roger Hardiman To: ports@FreeBSD.ORG Date: Monday, May 17, 1999 2:50 PM Subject: 3.2-R and Netscape ports >I've just installed FreeBSD 3.2 from the ftp site. > >Both the /ports/www/netscape4-communicator > and the /ports/www/netscape45-communicator > >ports fail to install. > >I'm in the UK so I did not use the USA versions. > >Netscape 4.08 fails with >Couldn't open /usr/libexec/ld.so. > >Netscape 45 fails with * ERROR * but I did not >record it. I'm away from the machine just now. > >I selected the compat22 during installation. > >Any suggestions? >Roger > >-- >Roger Hardiman | Telepresence Research Group >roger@cs.strath.ac.uk | DMEM, University of Strathclyde >tel: 0141 548 2897 | Glasgow, Scotland, G1 1XJ, UK >fax: 0141 552 0557 | http://telepresence.dmem.strath.ac.uk > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-ports" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 17 13:21:57 1999 Delivered-To: freebsd-ports@freebsd.org Received: from fleming.cs.strath.ac.uk (fleming.cs.strath.ac.uk [130.159.196.126]) by hub.freebsd.org (Postfix) with ESMTP id 3DEA314F1E for ; Mon, 17 May 1999 13:21:52 -0700 (PDT) (envelope-from roger@cs.strath.ac.uk) Received: from muir-10 (roger@muir-10.cs.strath.ac.uk [130.159.148.10]) by fleming.cs.strath.ac.uk (8.8.8/8.8.8) with SMTP id VAA01487 Mon, 17 May 1999 21:21:46 +0100 (BST) Message-ID: <37407A5A.15FB@cs.strath.ac.uk> Date: Mon, 17 May 1999 21:21:46 +0100 From: Roger Hardiman Organization: University of Strathclyde X-Mailer: Mozilla 3.04Gold (X11; I; OSF1 V4.0 alpha) MIME-Version: 1.0 To: "Thomas T. Veldhouse" Cc: ports@FreeBSD.ORG Subject: Re: 3.2-R and Netscape ports References: <026001bea09f$8a076fe0$236319ac@w142844.carlson.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thomas, > > You need to compile XFree86 yourself and choose the a.out > compatibility option. I hope pkg_add will add all the required bits for me. Otherwise we will have alot of confused 3.2 users. Bye Roger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 17 13:32:27 1999 Delivered-To: freebsd-ports@freebsd.org Received: from fleming.cs.strath.ac.uk (fleming.cs.strath.ac.uk [130.159.196.126]) by hub.freebsd.org (Postfix) with ESMTP id 292AC14D16 for ; Mon, 17 May 1999 13:32:19 -0700 (PDT) (envelope-from roger@cs.strath.ac.uk) Received: from muir-10 (roger@muir-10.cs.strath.ac.uk [130.159.148.10]) by fleming.cs.strath.ac.uk (8.8.8/8.8.8) with SMTP id VAA01588 Mon, 17 May 1999 21:32:15 +0100 (BST) Message-ID: <37407CCE.59E2@cs.strath.ac.uk> Date: Mon, 17 May 1999 21:32:14 +0100 From: Roger Hardiman Organization: University of Strathclyde X-Mailer: Mozilla 3.04Gold (X11; I; OSF1 V4.0 alpha) MIME-Version: 1.0 To: "Thomas T. Veldhouse" Cc: ports@FreeBSD.ORG Subject: Re: 3.2-R and Netscape ports References: <026001bea09f$8a076fe0$236319ac@w142844.carlson.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thomas, well pkg_add on netscape4-communicator does not work either it all installs and then when I run it I get the same error. Does this mean everyone, even users of slow 486's need to compile XFree86? Bye Roger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 17 14:30: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7238E156F3 for ; Mon, 17 May 1999 14:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA34332; Mon, 17 May 1999 14:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from heart-of-gold.ironbridgenetworks.com (ibn-host12.ironbridgenetworks.com [146.115.140.12]) by hub.freebsd.org (Postfix) with ESMTP id A601E15561; Mon, 17 May 1999 14:21:04 -0700 (PDT) (envelope-from lowell@heart-of-gold.ironbridgenetworks.com) Received: (from lowell@localhost) by heart-of-gold.ironbridgenetworks.com (8.9.3/8.9.3) id RAA05921; Mon, 17 May 1999 17:21:04 -0400 (EDT) (envelope-from lowell) Message-Id: <199905172121.RAA05921@heart-of-gold.ironbridgenetworks.com> Date: Mon, 17 May 1999 17:21:04 -0400 (EDT) From: lowell@world.std.com To: FreeBSD-gnats-submit@freebsd.org, jmz@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11748: mtool man page patch Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11748 >Category: ports >Synopsis: mtools.5 breaks whatis >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Mon May 17 14:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Lowell Gilbert >Release: FreeBSD 3.2-BETA i386 >Organization: n/a >Environment: -STABLE, cvsup'd 17 May 1999 >Description: I'm not too good on nroff, but I think the .SS Description line in the mtools.5 man page should be .SH Description instead. I'm not sure what the idea behind the indentation is supposed to be, but as it is, pretty much the whole file gets included in the whatis index. This is presumably because all the other sections -- "Description" etc -- are considered subsections of "Name". Because I think it makes sense for most of them to be subsections of "Descriptions", I think my described change is probably the "right" one. Or have I, perhaps, missed something? If I'm right, this is so obvious that I'm surprised no one else had complained before. >How-To-Repeat: apropos configuration will include among its output virtually the whole mtools man page >Fix: --- ./mtools.5.orig Mon May 17 17:07:07 1999 +++ ./mtools.5 Mon May 17 17:07:22 1999 @@ -20,3 +20,3 @@ .PP -.SS Description +.SH Description .PP >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 May 17 14:52: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3073315219; Mon, 17 May 1999 14:52:06 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Received: (from jmz@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA43329; Mon, 17 May 1999 14:52:06 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Date: Mon, 17 May 1999 14:52:06 -0700 (PDT) From: Message-Id: <199905172152.OAA43329@freefall.freebsd.org> To: lowell@world.std.com, jmz@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11748: mtools.5 breaks whatis Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mtools.5 breaks whatis State-Changed-From-To: open->closed State-Changed-By: jmz State-Changed-When: Mon May 17 14:51:23 PDT 1999 State-Changed-Why: Committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 17 15:40: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DCE41155DC for ; Mon, 17 May 1999 15:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA48468; Mon, 17 May 1999 15:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 66FFC14DBC for ; Mon, 17 May 1999 15:36:47 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id CA1271483; Mon, 17 May 1999 15:36:35 -0700 (PDT) Message-Id: <19990517223635.CA1271483@norn.ca.eu.org> Date: Mon, 17 May 1999 15:36:35 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11749: Update: net/pavuk Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11749 >Category: ports >Synopsis: Update: net/pavuk >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 May 17 15:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: 4.0-CURRENT i386 >Description: Update to pl13. Files removed: patch-aa >How-To-Repeat: >Fix: Index: pavuk/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/net/pavuk/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- Makefile 1999/05/06 14:04:38 1.6 +++ Makefile 1999/05/17 22:12:51 @@ -1,13 +1,13 @@ # New ports collection makefile for: pavuk -# Version required: 0.9pl12 +# Version required: 0.9pl13 # Date created: 19 March 1998 # Whom: Andrey Zakhvatov # # $Id: Makefile,v 1.6 1999/05/06 14:04:38 flathill Exp $ # -DISTNAME= pavuk-0.9pl12 -PKGNAME= pavuk-0.9.12 +DISTNAME= pavuk-0.9pl13 +PKGNAME= pavuk-0.9.13 CATEGORIES= net www MASTER_SITES= ${MASTER_SITE_SUNSITE} \ ftp://ftp.idata.sk/pub/unix/www/ Index: pavuk/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/net/pavuk/files/md5,v retrieving revision 1.5 diff -u -r1.5 md5 --- md5 1999/05/06 14:04:39 1.5 +++ md5 1999/05/17 22:18:59 @@ -1 +1 @@ -MD5 (pavuk-0.9pl12.tgz) = 9c9fc11a271481be4afb24dce8e6f519 +MD5 (pavuk-0.9pl13.tgz) = 704eff1aaf8397533d0ccbb36b654cb3 -Chris >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 May 17 15:48:50 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 766) id 313A914BE0; Mon, 17 May 1999 15:48:49 -0700 (PDT) To: cpiazza@home.net, mharo@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, mharo@FreeBSD.ORG From: mharo@FreeBSD.ORG Subject: Re: ports/11749 Message-Id: <19990517224849.313A914BE0@hub.freebsd.org> Date: Mon, 17 May 1999 15:48:49 -0700 (PDT) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: net/pavuk State-Changed-From-To: open->analyzed State-Changed-By: mharo State-Changed-When: Mon May 17 15:47:29 PDT 1999 State-Changed-Why: Waiting for sunsite to catch up Responsible-Changed-From-To: freebsd-ports->mharo Responsible-Changed-By: mharo Responsible-Changed-When: Mon May 17 15:47:29 PDT 1999 Responsible-Changed-Why: I'll take this one To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 17 16:50: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B5D67155A7 for ; Mon, 17 May 1999 16:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA54629; Mon, 17 May 1999 16:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from btl.42.org (btl.42.org [194.246.250.193]) by hub.freebsd.org (Postfix) with ESMTP id 6401D1540E for ; Mon, 17 May 1999 16:45:14 -0700 (PDT) (envelope-from sec@btl.42.org) Received: (from sec@localhost) by btl.42.org (8.9.3/8.9.1) id BAA10052; Tue, 18 May 1999 01:45:09 +0200 (CEST) (envelope-from sec) Message-Id: <199905172345.BAA10052@btl.42.org> Date: Tue, 18 May 1999 01:45:09 +0200 (CEST) From: Stefan Zehl Reply-To: sec@btl.42.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11750: Update of x11-wm/wmx port (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11750 >Category: ports >Synopsis: Update of x11-wm/wmx port (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: Mon May 17 16:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Stefan Zehl >Release: FreeBSD 3.2-BETA i386 >Organization: >Environment: >Description: I upgraded the x11-wm/wmx port from 4.0 to 5.6. please note that patches/patch-a[abcd] got deleted and instead patches/patch-ae got added. >How-To-Repeat: >Fix: diff -burP /usr/ports/x11-wm/wmx/Makefile wmx/Makefile --- /usr/ports/x11-wm/wmx/Makefile Wed Dec 30 22:46:13 1998 +++ wmx/Makefile Tue May 18 01:24:04 1999 @@ -6,25 +6,26 @@ # $Id: Makefile,v 1.6 1998/12/15 18:56:58 sada Exp $ # -DISTNAME= wmx-4 -PKGNAME= wmx-4.0 +DISTNAME= wmx-5sec6 +PKGNAME= wmx-5.6 CATEGORIES= x11-wm -MASTER_SITES= http://www.all-day-breakfast.com/wmx/ \ - ftp://ftp.tu-clausthal.de/pub/unix.new/x11-wm/ \ - ftp://ftp.maths.tcd.ie/src/eoin-tmp/window_managers/ +MASTER_SITES= ftp://ftp.42.org/pub/wmx/ \ + http://www.all-day-breakfast.com/wmx/ MAINTAINER= sec@42.org LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm USE_X_PREFIX= yes -ALL_TARGET= depend wmx +GNU_CONFIGURE= YES do-install: ${INSTALL_PROGRAM} ${WRKSRC}/wmx ${PREFIX}/bin + @${MKDIR} ${PREFIX}/lib/X11/wmx/menu .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/wmx ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/wmx + ${INSTALL_DATA} ${WRKSRC}/README.contrib ${PREFIX}/share/doc/wmx .endif .include diff -burP /usr/ports/x11-wm/wmx/files/md5 wmx/files/md5 --- /usr/ports/x11-wm/wmx/files/md5 Wed Jun 24 12:52:09 1998 +++ wmx/files/md5 Tue May 18 01:16:38 1999 @@ -1 +1 @@ -MD5 (wmx-4.tar.gz) = 83bb0464f25b941b8077a7c87cee5ef2 +MD5 (wmx-5sec6.tar.gz) = 6b231759d4ff3f35964f466764b98bfd Only in /usr/ports/x11-wm/wmx/patches: patch-aa Only in /usr/ports/x11-wm/wmx/patches: patch-ab Only in /usr/ports/x11-wm/wmx/patches: patch-ac Only in /usr/ports/x11-wm/wmx/patches: patch-ad diff -burP /usr/ports/x11-wm/wmx/patches/patch-ae wmx/patches/patch-ae --- /usr/ports/x11-wm/wmx/patches/patch-ae Thu Jan 1 01:00:00 1970 +++ wmx/patches/patch-ae Tue May 18 01:18:43 1999 @@ -0,0 +1,11 @@ +--- Config.h.orig Wed Jan 13 19:28:43 1999 ++++ Config.h Wed May 5 14:05:01 1999 +@@ -86,7 +86,7 @@ + // middle-button menu + #define CONFIG_COMMAND_MENU ".wmx" + // only used if COMMAND_MENU is not found; ignored if invalid directory: +-#define CONFIG_SYSTEM_COMMAND_MENU "/usr/local/lib/wmx/menu" ++#define CONFIG_SYSTEM_COMMAND_MENU "%%PREFIX%%/lib/wmx/menu" + + // Focus possibilities. + // diff -burP /usr/ports/x11-wm/wmx/pkg/PLIST wmx/pkg/PLIST --- /usr/ports/x11-wm/wmx/pkg/PLIST Wed Jun 24 12:52:13 1998 +++ wmx/pkg/PLIST Tue May 18 01:21:09 1999 @@ -1,3 +1,8 @@ bin/wmx share/doc/wmx/README +share/doc/wmx/README.contrib @dirrm share/doc/wmx +@exec mkdir -p %D/lib/X11/wmx +@exec mkdir -p %D/lib/X11/wmx/menu +@dirrm lib/X11/wmx/menu +@dirrm lib/X11/wmx diff -burP /usr/ports/x11-wm/wmx/scripts/configure wmx/scripts/configure --- /usr/ports/x11-wm/wmx/scripts/configure Wed Jun 24 12:52:14 1998 +++ wmx/scripts/configure Tue May 18 01:27:18 1999 @@ -1,3 +1,3 @@ #!/bin/sh -/usr/bin/perl -pi -e 's|/usr/X11R6|'$X11BASE'|g' $WRKSRC/Makefile +/usr/bin/perl -pi -e 's|%%PREFIX%%|'${X11BASE}'|g' ${WRKSRC}/*.h ${WRKSRC}/*.C Only in /usr/ports/x11-wm/wmx: work >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 May 17 19:44: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from diana.infonets.hiroshima-u.ac.jp (diana.infonets.hiroshima-u.ac.jp [133.41.33.53]) by hub.freebsd.org (Postfix) with ESMTP id 9C418153F2 for ; Mon, 17 May 1999 19:44:05 -0700 (PDT) (envelope-from taoka@infonets.hiroshima-u.ac.jp) Received: from peg.infonets.hiroshima-u.ac.jp (peg.infonets.hiroshima-u.ac.jp [133.41.33.64]) by diana.infonets.hiroshima-u.ac.jp (8.8.8/3.6W) with ESMTP id LAA07229 for ; Tue, 18 May 1999 11:44:04 +0900 (JST) Received: from localhost (localhost.infonets.hiroshima-u.ac.jp [127.0.0.1]) by peg.infonets.hiroshima-u.ac.jp (8.9.2/3.6W) with ESMTP id LAA08748 for ; Tue, 18 May 1999 11:44:04 +0900 (JST) To: freebsd-ports@FreeBSD.org Subject: Do you need editors/xemacs{,20} (Re: pending/11618: new port: editors/xemacs21) From: TAOKA Satoshi In-Reply-To: Your message of "Sun, 16 May 1999 17:12:07 -0700 (PDT)" <199905170012.RAA05550@freefall.freebsd.org> References: <199905170012.RAA05550@freefall.freebsd.org> X-Mailer: Mew version 1.93 on XEmacs 20.4 (Emerald) X-Prom-Mew: Prom-Mew 1.93 (procmail reader for Mew) X-URL: http://www.infonets.hiroshima-u.ac.jp/~taoka/ Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19990518114404B.taoka@infonets.hiroshima-u.ac.jp> Date: Tue, 18 May 1999 11:44:04 +0900 X-Dispatcher: imput version 980905(IM100) Lines: 11 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, XEmacs users. Do you need editors/xemacs{,20} ? I think these are deteted and editors/xemacs21 had better be imported as editors/xemacs. Thanks. taoka@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 May 17 20: 0:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 15C6014C80 for ; Mon, 17 May 1999 20:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA71985; Mon, 17 May 1999 20:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from rr.iij4u.or.jp (h015.p060.iij4u.or.jp [210.130.60.15]) by hub.freebsd.org (Postfix) with SMTP id 0205B15655 for ; Mon, 17 May 1999 19:57:27 -0700 (PDT) (envelope-from sada@rr.iij4u.or.jp) Received: (qmail 2813 invoked by uid 1000); 18 May 1999 11:57:25 +0900 Message-Id: <19990518025725.2812.sada@rr.iij4u.or.jp> Date: 18 May 1999 11:57:25 +0900 From: sada@FreeBSD.ORG Reply-To: sada@FreeBSD.ORG To: FreeBSD-gnats-submit@freebsd.org Cc: ache@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/11751: Update of ports: www/netscape4-communicator, navigator. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11751 >Category: ports >Synopsis: Update of ports: www/netscape4-communicator, navigator. >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 May 17 20:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: SADA Kenji >Release: FreeBSD 3.2-STABLE i386 >Organization: Nagoya.Aichi.Japan >Environment: FreeBSD 3.2-STABLE i386 XFree86 3.3.3.1 >Description: Change of www/netscape4-{communicator,navigator}. This is needed for importation of www/netscape46 ports. I'll commit this change by myself in few days, unless any arguments would be presented. >How-To-Repeat: >Fix: Modified/Removed files: M netscape4-communicator/Makefile R netscape4-communicator/patches/patch-aa R netscape4-communicator/scripts/configure M netscape4-navigator/Makefile Index: netscape4-communicator/Makefile =================================================================== RCS file: /home/ncvs/ports/www/netscape4-communicator/Makefile,v retrieving revision 1.33 diff -u -r1.33 Makefile --- Makefile 1999/04/25 13:34:56 1.33 +++ Makefile 1999/05/18 01:22:39 @@ -10,7 +10,6 @@ CATEGORIES= www MASTER_SITES?= ftp://ftp.netscape.com/pub/communicator/4.08/english/unix/unsupported/freebsd/professional_edition/ DISTFILES?= communicator-v408-export.x86-unknown-freebsd.tar.gz ${AUTOADMIN} -AUTOADMIN= autoadmin-v408.x86-unknown-freebsd.tar.gz MAINTAINER= ache@FreeBSD.ORG @@ -18,13 +17,17 @@ ONLY_FOR_ARCHS= i386 -NO_FILTER_SHLIBS= yes -WRKSRC?= ${WRKDIR}/${BROWSER}-v408.x86-unknown-freebsd NO_BUILD= Yes +NO_FILTER_SHLIBS= yes STRIP= +WRKSRC?= ${WRKDIR}/${BROWSER}-v408.x86-unknown-freebsd +FILESDIR= ${.CURDIR}/files +PKGDIR= ${.CURDIR}/pkg +PKGREQ= ${MASTERDIR}/pkg/REQ +AUTOADMIN= autoadmin-v408.x86-unknown-freebsd.tar.gz BROWSER?= communicator -BROWSER_VER= 4.08 +BROWSER_VER?= 4.08 NDIR= ${PREFIX}/${NSUBDIR} NSUBDIR= lib/netscape BINDIR= ${PREFIX}/bin @@ -35,7 +38,7 @@ PLIST_SUB= BROWSER=${BROWSER} BROWSER_VER=${BROWSER_VER} \ NSUBDIR=${NSUBDIR} -.if defined(USE_128BIT) +.if defined(USE_128BIT) && !defined(NO_FORTIFY) MASTER_SITES+= ftp://ftp.fortify.net/pub/Fortify/ \ ftp://ftp.za.freebsd.org/pub/Fortify/ DISTFILES+= Fortify-1.4.1-unix-x86.tar.gz @@ -44,7 +47,7 @@ .SILENT: -.if !defined(USE_128BIT) +.if !defined(USE_128BIT) && !defined(NO_FORTIFY) pre-extract: ${ECHO} "You can make Netscape use 128-bit encryption by defining USE_128BIT" .endif @@ -77,10 +80,11 @@ ${INSTALL_DATA} ${MAILCAP} ${NDIR}; \ fi ${RM} -rf ${NDIR}/movemail-src -.if (${BROWSER} == "communicator") +.if (${BROWSER} == "communicator") && !defined(NO_AUTOADMIN) tar zxf ${DISTDIR}/${AUTOADMIN} -C ${NDIR} .endif -.if defined(USE_128BIT) && defined(USA_RESIDENT) && ${USA_RESIDENT} == NO +.if defined(USE_128BIT) && defined(USA_RESIDENT) && ${USA_RESIDENT} == NO \ + && !defined(NO_FORTIFY) cd ${WRKDIR}/Fortify-1.4.1-unix-x86 && \ (${ECHO} yes ; ${ECHO} no ; ${ECHO} no) \ | ./Fortify.sh ${NDIR}/${BROWSER}-${BROWSER_VER}.bin Index: netscape4-navigator/Makefile =================================================================== RCS file: /home/ncvs/ports/www/netscape4-navigator/Makefile,v retrieving revision 1.38 diff -u -r1.38 Makefile --- Makefile 1999/02/12 16:01:24 1.38 +++ Makefile 1999/05/18 01:22:49 @@ -12,9 +12,6 @@ MAINTAINER= sada@FreeBSD.ORG MASTERDIR= ${.CURDIR}/../netscape4-communicator -FILESDIR= ${.CURDIR}/files -PKGDIR= ${.CURDIR}/pkg -PKGREQ= ${MASTERDIR}/pkg/REQ BROWSER= navigator INFILE_HEAD= 'Navigator,4.08.0.98306' >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 May 17 20: 0:17 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 324D614CB3 for ; Mon, 17 May 1999 20:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA71995; Mon, 17 May 1999 20:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from rr.iij4u.or.jp (h015.p060.iij4u.or.jp [210.130.60.15]) by hub.freebsd.org (Postfix) with SMTP id 160FE1565C for ; Mon, 17 May 1999 19:57:27 -0700 (PDT) (envelope-from sada@rr.iij4u.or.jp) Received: (qmail 2817 invoked by uid 1000); 18 May 1999 11:57:25 +0900 Message-Id: <19990518025725.2816.sada@rr.iij4u.or.jp> Date: 18 May 1999 11:57:25 +0900 From: sada@FreeBSD.ORG Reply-To: sada@FreeBSD.ORG To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11752: new port: www/netscape46-communicator Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11752 >Category: ports >Synopsis: new port: www/netscape46-communicator >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 May 17 20:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: SADA Kenji >Release: FreeBSD 3.2-STABLE i386 >Organization: Nagoya.Aichi.Japan >Environment: FreeBSD 3.2-STABLE i386 XFree86 3.3.3.1 >Description: This is new port of Netscape Communicator v4.6. The Makefile includes www/netscape4-communicator/Makefile, and also needs update of it. I'll import this port by myself in few days, unless any arguments would be presented. >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: # # netscape46-communicator # netscape46-communicator/files # netscape46-communicator/files/md5 # netscape46-communicator/pkg # netscape46-communicator/pkg/COMMENT # netscape46-communicator/pkg/DESCR # netscape46-communicator/pkg/PLIST # netscape46-communicator/Makefile # echo c - netscape46-communicator mkdir -p netscape46-communicator > /dev/null 2>&1 echo c - netscape46-communicator/files mkdir -p netscape46-communicator/files > /dev/null 2>&1 echo x - netscape46-communicator/files/md5 sed 's/^X//' >netscape46-communicator/files/md5 << 'END-of-netscape46-communicator/files/md5' XMD5 (communicator-v46-export.x86-unknown-freebsd.tar.gz) = 5d11c61d9f6d5f76a543487dd9b42b1b XMD5 (autoadmin-v408.x86-unknown-freebsd.tar.gz) = 0435245b83fc5d9be6844ebfa1a242f0 XMD5 (Fortify-1.4.1-unix-x86.tar.gz) = 561c6405619de7c37d34426b4cff80a2 END-of-netscape46-communicator/files/md5 echo c - netscape46-communicator/pkg mkdir -p netscape46-communicator/pkg > /dev/null 2>&1 echo x - netscape46-communicator/pkg/COMMENT sed 's/^X//' >netscape46-communicator/pkg/COMMENT << 'END-of-netscape46-communicator/pkg/COMMENT' Xnetscape ver 4 communicator web-surfboard END-of-netscape46-communicator/pkg/COMMENT echo x - netscape46-communicator/pkg/DESCR sed 's/^X//' >netscape46-communicator/pkg/DESCR << 'END-of-netscape46-communicator/pkg/DESCR' XThis is the netscape web-surfboard. Please read the file X"/usr/local/lib/netscape/LICENSE" for the licensing terms. X XNote: If Java applets fail to display. Type this as root: X cd /usr/X11R6/lib/X11/fonts/misc X /usr/X11R6/bin/mkfontdir X chmod 444 fonts.dir X And then exit and restart your X server. END-of-netscape46-communicator/pkg/DESCR echo x - netscape46-communicator/pkg/PLIST sed 's/^X//' >netscape46-communicator/pkg/PLIST << 'END-of-netscape46-communicator/pkg/PLIST' Xbin/communicator-%%BROWSER_VER%% X@exec ln -sf %f %B/communicator-4 X@exec ln -sf communicator-4 %B/netscape X@unexec rm -f %B/netscape X@unexec rm -f %B/communicator-4 X%%NSUBDIR%%/LICENSE X%%NSUBDIR%%/Netscape.ad X%%NSUBDIR%%/README X%%NSUBDIR%%/XKeysymDB X%%NSUBDIR%%/bookmark.htm X%%NSUBDIR%%/communicator-4.6.bin X%%NSUBDIR%%/java/classes/aix/font.properties X%%NSUBDIR%%/java/classes/aix/font.properties.cs X%%NSUBDIR%%/java/classes/aix/font.properties.hu X%%NSUBDIR%%/java/classes/aix/font.properties.ja X%%NSUBDIR%%/java/classes/aix/font.properties.ko X%%NSUBDIR%%/java/classes/aix/font.properties.pl X%%NSUBDIR%%/java/classes/aix/font.properties.ru X%%NSUBDIR%%/java/classes/aix/font.properties.zh X%%NSUBDIR%%/java/classes/aix/font.properties.zh_TW X%%NSUBDIR%%/java/classes/awt.properties X%%NSUBDIR%%/java/classes/font.properties X%%NSUBDIR%%/java/classes/font.properties.cs X%%NSUBDIR%%/java/classes/font.properties.el X%%NSUBDIR%%/java/classes/font.properties.hu X%%NSUBDIR%%/java/classes/font.properties.ja X%%NSUBDIR%%/java/classes/font.properties.ko X%%NSUBDIR%%/java/classes/font.properties.lt X%%NSUBDIR%%/java/classes/font.properties.lv X%%NSUBDIR%%/java/classes/font.properties.pl X%%NSUBDIR%%/java/classes/font.properties.ru X%%NSUBDIR%%/java/classes/font.properties.tr X%%NSUBDIR%%/java/classes/font.properties.zh X%%NSUBDIR%%/java/classes/font.properties.zh_GB2312 X%%NSUBDIR%%/java/classes/font.properties.zh_TW X%%NSUBDIR%%/java/classes/font.properties.zh_TW_Big5 X%%NSUBDIR%%/java/classes/font.properties.zh_TW_CNS11643 X%%NSUBDIR%%/java/classes/hpux/font.properties X%%NSUBDIR%%/java/classes/hpux/font.properties.bg X%%NSUBDIR%%/java/classes/hpux/font.properties.cs X%%NSUBDIR%%/java/classes/hpux/font.properties.el X%%NSUBDIR%%/java/classes/hpux/font.properties.hr X%%NSUBDIR%%/java/classes/hpux/font.properties.hu X%%NSUBDIR%%/java/classes/hpux/font.properties.ja X%%NSUBDIR%%/java/classes/hpux/font.properties.ko X%%NSUBDIR%%/java/classes/hpux/font.properties.pl X%%NSUBDIR%%/java/classes/hpux/font.properties.ro X%%NSUBDIR%%/java/classes/hpux/font.properties.ru X%%NSUBDIR%%/java/classes/hpux/font.properties.sk X%%NSUBDIR%%/java/classes/hpux/font.properties.sl X%%NSUBDIR%%/java/classes/hpux/font.properties.tr X%%NSUBDIR%%/java/classes/hpux/font.properties.zh_GB2312 X%%NSUBDIR%%/java/classes/hpux/font.properties.zh_TW_Big5 X%%NSUBDIR%%/java/classes/hpux/font.properties.zh_TW_CNS11643 X%%NSUBDIR%%/java/classes/ifc11.jar X%%NSUBDIR%%/java/classes/iiop10.jar X%%NSUBDIR%%/java/classes/irix/font.properties X%%NSUBDIR%%/java/classes/irix/font.properties.cs X%%NSUBDIR%%/java/classes/irix/font.properties.el X%%NSUBDIR%%/java/classes/irix/font.properties.hu X%%NSUBDIR%%/java/classes/irix/font.properties.ja X%%NSUBDIR%%/java/classes/irix/font.properties.ko X%%NSUBDIR%%/java/classes/irix/font.properties.zh_GB2312 X%%NSUBDIR%%/java/classes/irix/font.properties.zh_TW_Big5 X%%NSUBDIR%%/java/classes/irix/font.properties.zh_TW_CNS11643 X%%NSUBDIR%%/java/classes/jae40.jar X%%NSUBDIR%%/java/classes/java40.jar X%%NSUBDIR%%/java/classes/jio40.jar X%%NSUBDIR%%/java/classes/jsd10.jar X%%NSUBDIR%%/java/classes/ldap30.jar X%%NSUBDIR%%/java/classes/resource.jar X%%NSUBDIR%%/java/classes/scd10.jar X%%NSUBDIR%%/libjsd.so.1.0 X%%NSUBDIR%%/mailcap X%%NSUBDIR%%/movemail X%%NSUBDIR%%/nethelp/Back_dep.gif X%%NSUBDIR%%/nethelp/Back_dis.gif X%%NSUBDIR%%/nethelp/Back_sel.gif X%%NSUBDIR%%/nethelp/Back_up.gif X%%NSUBDIR%%/nethelp/Blank.htm X%%NSUBDIR%%/nethelp/Button.js X%%NSUBDIR%%/nethelp/CntData.js X%%NSUBDIR%%/nethelp/CntTool.htm X%%NSUBDIR%%/nethelp/CntTool.js X%%NSUBDIR%%/nethelp/Exit_dep.gif X%%NSUBDIR%%/nethelp/Exit_sel.gif X%%NSUBDIR%%/nethelp/Exit_up.gif X%%NSUBDIR%%/nethelp/Forw_dep.gif X%%NSUBDIR%%/nethelp/Forw_dis.gif X%%NSUBDIR%%/nethelp/Forw_sel.gif X%%NSUBDIR%%/nethelp/Forw_up.gif X%%NSUBDIR%%/nethelp/Header.js X%%NSUBDIR%%/nethelp/IdxData.js X%%NSUBDIR%%/nethelp/IdxFill.htm X%%NSUBDIR%%/nethelp/IdxKey.htm X%%NSUBDIR%%/nethelp/IdxTool.htm X%%NSUBDIR%%/nethelp/IdxTopic.htm X%%NSUBDIR%%/nethelp/Local-1.js X%%NSUBDIR%%/nethelp/NSHIfrm.htm X%%NSUBDIR%%/nethelp/NavUI.htm X%%NSUBDIR%%/nethelp/NoJSerr.htm X%%NSUBDIR%%/nethelp/Prnt_dep.gif X%%NSUBDIR%%/nethelp/Prnt_sel.gif X%%NSUBDIR%%/nethelp/Prnt_up.gif X%%NSUBDIR%%/nethelp/Stack.js X%%NSUBDIR%%/nethelp/Status.htm X%%NSUBDIR%%/nethelp/System.htm X%%NSUBDIR%%/nethelp/System.js X%%NSUBDIR%%/nethelp/ToolUI.htm X%%NSUBDIR%%/nethelp/Tool_dep.gif X%%NSUBDIR%%/nethelp/Tool_sel.gif X%%NSUBDIR%%/nethelp/Tool_up.gif X%%NSUBDIR%%/nethelp/Topic.js X%%NSUBDIR%%/nethelp/Utility.js X%%NSUBDIR%%/nethelp/Wait.gif X%%NSUBDIR%%/nethelp/netscape/collabra/coll.htm X%%NSUBDIR%%/nethelp/netscape/collabra/collHdr.htm X%%NSUBDIR%%/nethelp/netscape/collabra/collabra.gif X%%NSUBDIR%%/nethelp/netscape/collabra/discgrps.gif X%%NSUBDIR%%/nethelp/netscape/collabra/help.hpf X%%NSUBDIR%%/nethelp/netscape/collabra/mailbox2.gif X%%NSUBDIR%%/nethelp/netscape/composer/comp.htm X%%NSUBDIR%%/nethelp/netscape/composer/compHdr.htm X%%NSUBDIR%%/nethelp/netscape/composer/composer.gif X%%NSUBDIR%%/nethelp/netscape/composer/comtlbr2.gif X%%NSUBDIR%%/nethelp/netscape/composer/fmtlbr3.gif X%%NSUBDIR%%/nethelp/netscape/composer/help.hpf X%%NSUBDIR%%/nethelp/netscape/composer/tagicon2.gif X%%NSUBDIR%%/nethelp/netscape/home/help.hpf X%%NSUBDIR%%/nethelp/netscape/home/home.gif X%%NSUBDIR%%/nethelp/netscape/home/home.htm X%%NSUBDIR%%/nethelp/netscape/home/homeHdr.htm X%%NSUBDIR%%/nethelp/netscape/messengr/abook.gif X%%NSUBDIR%%/nethelp/netscape/messengr/compbar.gif X%%NSUBDIR%%/nethelp/netscape/messengr/help.hpf X%%NSUBDIR%%/nethelp/netscape/messengr/mailbox.gif X%%NSUBDIR%%/nethelp/netscape/messengr/mailbox2.gif X%%NSUBDIR%%/nethelp/netscape/messengr/mess.htm X%%NSUBDIR%%/nethelp/netscape/messengr/messHdr.htm X%%NSUBDIR%%/nethelp/netscape/messengr/messengr.gif X%%NSUBDIR%%/nethelp/netscape/messengr/mpctrl.gif X%%NSUBDIR%%/nethelp/netscape/messengr/newsgrp.gif X%%NSUBDIR%%/nethelp/netscape/messengr/tabs.gif X%%NSUBDIR%%/nethelp/netscape/navigatr/help.hpf X%%NSUBDIR%%/nethelp/netscape/navigatr/nav.htm X%%NSUBDIR%%/nethelp/netscape/navigatr/navHdr.htm X%%NSUBDIR%%/nethelp/netscape/navigatr/navigatr.gif X%%NSUBDIR%%/nethelp/netscape/news/abook.gif X%%NSUBDIR%%/nethelp/netscape/news/collabra.gif X%%NSUBDIR%%/nethelp/netscape/news/compbar.gif X%%NSUBDIR%%/nethelp/netscape/news/discgrps.gif X%%NSUBDIR%%/nethelp/netscape/news/help.hpf X%%NSUBDIR%%/nethelp/netscape/news/mailbox2.gif X%%NSUBDIR%%/nethelp/netscape/news/news.htm X%%NSUBDIR%%/nethelp/netscape/news/newsgrp.gif X%%NSUBDIR%%/nethelp/netscape/shared/NetHelpm.css X%%NSUBDIR%%/nethelp/netscape/shared/NetHelpu.css X%%NSUBDIR%%/nethelp/netscape/shared/NetHelpw.css X%%NSUBDIR%%/nethelp/netscape/shared/admnIcon.gif X%%NSUBDIR%%/nethelp/netscape/shared/calIcon.gif X%%NSUBDIR%%/nethelp/netscape/shared/collIcon.gif X%%NSUBDIR%%/nethelp/netscape/shared/commIcon.gif X%%NSUBDIR%%/nethelp/netscape/shared/compIcon.gif X%%NSUBDIR%%/nethelp/netscape/shared/confIcon.gif X%%NSUBDIR%%/nethelp/netscape/shared/ibmIcon.gif X%%NSUBDIR%%/nethelp/netscape/shared/messIcon.gif X%%NSUBDIR%%/nethelp/netscape/shared/navIcon.gif X%%NSUBDIR%%/nethelp/netscape/shared/netIcon.gif X%%NSUBDIR%%/nethelp/netscape/trouble/help.hpf X%%NSUBDIR%%/nethelp/netscape/trouble/trouble.htm X%%NSUBDIR%%/nethelp/netwatch.gif X%%NSUBDIR%%/nethelp/picsfail.htm X%%NSUBDIR%%/nethelp/picsfail.jar X%%NSUBDIR%%/plugins/cpPack1.jar X%%NSUBDIR%%/plugins/libnullplugin.so X%%NSUBDIR%%/registry X%%NSUBDIR%%/spell/netscape.dic X%%NSUBDIR%%/spell/pen4s324.dat X%%NSUBDIR%%/vreg X@dirrm %%NSUBDIR%%/spell X@dirrm %%NSUBDIR%%/plugins X@dirrm %%NSUBDIR%%/nethelp/netscape/trouble X@dirrm %%NSUBDIR%%/nethelp/netscape/shared X@dirrm %%NSUBDIR%%/nethelp/netscape/news X@dirrm %%NSUBDIR%%/nethelp/netscape/navigatr X@dirrm %%NSUBDIR%%/nethelp/netscape/messengr X@dirrm %%NSUBDIR%%/nethelp/netscape/home X@dirrm %%NSUBDIR%%/nethelp/netscape/composer X@dirrm %%NSUBDIR%%/nethelp/netscape/collabra X@dirrm %%NSUBDIR%%/nethelp/netscape X@dirrm %%NSUBDIR%%/nethelp X@dirrm %%NSUBDIR%%/java/classes/irix X@dirrm %%NSUBDIR%%/java/classes/hpux X@dirrm %%NSUBDIR%%/java/classes/aix X@dirrm %%NSUBDIR%%/java/classes X@dirrm %%NSUBDIR%%/java X@dirrm %%NSUBDIR%% END-of-netscape46-communicator/pkg/PLIST echo x - netscape46-communicator/Makefile sed 's/^X//' >netscape46-communicator/Makefile << 'END-of-netscape46-communicator/Makefile' X# New ports collection makefile for: netscape (full communicator version) X# Version required: 4.6 X# Date created: 18 May 1999 X# Whom: sada X# X# $Id$ X# X XMASTER_SITES?= ftp://ftp.netscape.com/pub/communicator/4.6/english/unix/unsupported/freebsd/complete_install/ XDISTFILES?= communicator-v46-export.x86-unknown-freebsd.tar.gz X XMAINTAINER= sada@FreeBSD.ORG X XMASTERDIR= ${.CURDIR}/../netscape4-communicator XWRKSRC= ${WRKDIR}/${BROWSER}-v46.x86-unknown-freebsd X XBROWSER_VER= 4.6 XINFILE_HEAD?= 'Communicator,4.6.0.99124' XNO_AUTOADMIN= yes XNO_FORTIFY= yes X X.include "${MASTERDIR}/Makefile" END-of-netscape46-communicator/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 May 17 20: 0:25 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 92F0914C44 for ; Mon, 17 May 1999 20:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA72004; Mon, 17 May 1999 20:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from rr.iij4u.or.jp (h015.p060.iij4u.or.jp [210.130.60.15]) by hub.freebsd.org (Postfix) with SMTP id 25A3215680 for ; Mon, 17 May 1999 19:57:27 -0700 (PDT) (envelope-from sada@rr.iij4u.or.jp) Received: (qmail 2823 invoked by uid 1000); 18 May 1999 11:57:26 +0900 Message-Id: <19990518025726.2822.sada@rr.iij4u.or.jp> Date: 18 May 1999 11:57:26 +0900 From: sada@FreeBSD.ORG Reply-To: sada@FreeBSD.ORG To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11753: new port: www/netscape46-navigator Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11753 >Category: ports >Synopsis: new port: www/netscape46-navigator >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 May 17 20:00:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: SADA Kenji >Release: FreeBSD 3.2-STABLE i386 >Organization: Nagoya.Aichi.Japan >Environment: FreeBSD 3.2-STABLE i386 XFree86 3.3.3.1 >Description: This is new port of Netscape Navigator v4.6. The Makefile includes www/netscape46-communicator/Makefile, and also needs importation of it. I'll import this port by myself in few days, unless any arguments would be presented. >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: # # netscape46-navigator # netscape46-navigator/Makefile # netscape46-navigator/files # netscape46-navigator/files/md5 # netscape46-navigator/pkg # netscape46-navigator/pkg/COMMENT # netscape46-navigator/pkg/DESCR # netscape46-navigator/pkg/PLIST # echo c - netscape46-navigator mkdir -p netscape46-navigator > /dev/null 2>&1 echo x - netscape46-navigator/Makefile sed 's/^X//' >netscape46-navigator/Makefile << 'END-of-netscape46-navigator/Makefile' X# New ports collection makefile for: netscape (navigator only) X# Version required: 4.6 X# Date created: 18 May 1999 X# Whom: sada X# X# $Id$ X# X XMASTER_SITES= ftp://ftp.netscape.com/pub/communicator/4.6/english/unix/unsupported/freebsd/navigator_standalone/ XDISTFILES= navigator-v46-export.x86-unknown-freebsd.tar.gz X XMAINTAINER= sada@FreeBSD.ORG X XBROWSER= navigator XINFILE_HEAD= 'Navigator,4.6.0.99124' X X.include "${.CURDIR}/../netscape46-communicator/Makefile" END-of-netscape46-navigator/Makefile echo c - netscape46-navigator/files mkdir -p netscape46-navigator/files > /dev/null 2>&1 echo x - netscape46-navigator/files/md5 sed 's/^X//' >netscape46-navigator/files/md5 << 'END-of-netscape46-navigator/files/md5' XMD5 (navigator-v46-export.x86-unknown-freebsd.tar.gz) = 26e1a60300c732f7c04d676475a528cd END-of-netscape46-navigator/files/md5 echo c - netscape46-navigator/pkg mkdir -p netscape46-navigator/pkg > /dev/null 2>&1 echo x - netscape46-navigator/pkg/COMMENT sed 's/^X//' >netscape46-navigator/pkg/COMMENT << 'END-of-netscape46-navigator/pkg/COMMENT' Xnetscape ver 4.6 navigator web-surfboard END-of-netscape46-navigator/pkg/COMMENT echo x - netscape46-navigator/pkg/DESCR sed 's/^X//' >netscape46-navigator/pkg/DESCR << 'END-of-netscape46-navigator/pkg/DESCR' XThis is the netscape web-surfboard. Please read the file X"/usr/local/lib/netscape/LICENSE" for the licensing terms. X XNote: If Java applets fail to display. Type this as root: X cd /usr/X11R6/lib/X11/fonts/misc X /usr/X11R6/bin/mkfontdir X chmod 444 fonts.dir X And then exit and restart your X server. END-of-netscape46-navigator/pkg/DESCR echo x - netscape46-navigator/pkg/PLIST sed 's/^X//' >netscape46-navigator/pkg/PLIST << 'END-of-netscape46-navigator/pkg/PLIST' Xbin/navigator-%%BROWSER_VER%% X@exec ln -sf %f %B/navigator-4 X@exec ln -sf navigator-4 %B/netscape X@unexec rm -f %B/netscape X@unexec rm -f %B/navigator-4 X%%NSUBDIR%%/LICENSE X%%NSUBDIR%%/Netscape.ad X%%NSUBDIR%%/README X%%NSUBDIR%%/XKeysymDB X%%NSUBDIR%%/bookmark.htm X%%NSUBDIR%%/java/classes/aix/font.properties X%%NSUBDIR%%/java/classes/aix/font.properties.cs X%%NSUBDIR%%/java/classes/aix/font.properties.hu X%%NSUBDIR%%/java/classes/aix/font.properties.ja X%%NSUBDIR%%/java/classes/aix/font.properties.ko X%%NSUBDIR%%/java/classes/aix/font.properties.pl X%%NSUBDIR%%/java/classes/aix/font.properties.ru X%%NSUBDIR%%/java/classes/aix/font.properties.zh X%%NSUBDIR%%/java/classes/aix/font.properties.zh_TW X%%NSUBDIR%%/java/classes/awt.properties X%%NSUBDIR%%/java/classes/font.properties X%%NSUBDIR%%/java/classes/font.properties.cs X%%NSUBDIR%%/java/classes/font.properties.el X%%NSUBDIR%%/java/classes/font.properties.hu X%%NSUBDIR%%/java/classes/font.properties.ja X%%NSUBDIR%%/java/classes/font.properties.ko X%%NSUBDIR%%/java/classes/font.properties.lt X%%NSUBDIR%%/java/classes/font.properties.lv X%%NSUBDIR%%/java/classes/font.properties.pl X%%NSUBDIR%%/java/classes/font.properties.ru X%%NSUBDIR%%/java/classes/font.properties.tr X%%NSUBDIR%%/java/classes/font.properties.zh X%%NSUBDIR%%/java/classes/font.properties.zh_GB2312 X%%NSUBDIR%%/java/classes/font.properties.zh_TW X%%NSUBDIR%%/java/classes/font.properties.zh_TW_Big5 X%%NSUBDIR%%/java/classes/font.properties.zh_TW_CNS11643 X%%NSUBDIR%%/java/classes/hpux/font.properties X%%NSUBDIR%%/java/classes/hpux/font.properties.bg X%%NSUBDIR%%/java/classes/hpux/font.properties.cs X%%NSUBDIR%%/java/classes/hpux/font.properties.el X%%NSUBDIR%%/java/classes/hpux/font.properties.hr X%%NSUBDIR%%/java/classes/hpux/font.properties.hu X%%NSUBDIR%%/java/classes/hpux/font.properties.ja X%%NSUBDIR%%/java/classes/hpux/font.properties.ko X%%NSUBDIR%%/java/classes/hpux/font.properties.pl X%%NSUBDIR%%/java/classes/hpux/font.properties.ro X%%NSUBDIR%%/java/classes/hpux/font.properties.ru X%%NSUBDIR%%/java/classes/hpux/font.properties.sk X%%NSUBDIR%%/java/classes/hpux/font.properties.sl X%%NSUBDIR%%/java/classes/hpux/font.properties.tr X%%NSUBDIR%%/java/classes/hpux/font.properties.zh_GB2312 X%%NSUBDIR%%/java/classes/hpux/font.properties.zh_TW_Big5 X%%NSUBDIR%%/java/classes/hpux/font.properties.zh_TW_CNS11643 X%%NSUBDIR%%/java/classes/ifc11.jar X%%NSUBDIR%%/java/classes/iiop10.jar X%%NSUBDIR%%/java/classes/irix/font.properties X%%NSUBDIR%%/java/classes/irix/font.properties.cs X%%NSUBDIR%%/java/classes/irix/font.properties.el X%%NSUBDIR%%/java/classes/irix/font.properties.hu X%%NSUBDIR%%/java/classes/irix/font.properties.ja X%%NSUBDIR%%/java/classes/irix/font.properties.ko X%%NSUBDIR%%/java/classes/irix/font.properties.zh_GB2312 X%%NSUBDIR%%/java/classes/irix/font.properties.zh_TW_Big5 X%%NSUBDIR%%/java/classes/irix/font.properties.zh_TW_CNS11643 X%%NSUBDIR%%/java/classes/jae40.jar X%%NSUBDIR%%/java/classes/java40.jar X%%NSUBDIR%%/java/classes/jio40.jar X%%NSUBDIR%%/java/classes/jsd10.jar X%%NSUBDIR%%/java/classes/ldap30.jar X%%NSUBDIR%%/java/classes/resource.jar X%%NSUBDIR%%/java/classes/scd10.jar X%%NSUBDIR%%/mailcap X%%NSUBDIR%%/navigator-4.6.bin X%%NSUBDIR%%/nethelp/Back_dep.gif X%%NSUBDIR%%/nethelp/Back_dis.gif X%%NSUBDIR%%/nethelp/Back_sel.gif X%%NSUBDIR%%/nethelp/Back_up.gif X%%NSUBDIR%%/nethelp/Blank.htm X%%NSUBDIR%%/nethelp/Button.js X%%NSUBDIR%%/nethelp/CntData.js X%%NSUBDIR%%/nethelp/CntTool.htm X%%NSUBDIR%%/nethelp/CntTool.js X%%NSUBDIR%%/nethelp/Exit_dep.gif X%%NSUBDIR%%/nethelp/Exit_sel.gif X%%NSUBDIR%%/nethelp/Exit_up.gif X%%NSUBDIR%%/nethelp/Forw_dep.gif X%%NSUBDIR%%/nethelp/Forw_dis.gif X%%NSUBDIR%%/nethelp/Forw_sel.gif X%%NSUBDIR%%/nethelp/Forw_up.gif X%%NSUBDIR%%/nethelp/Header.js X%%NSUBDIR%%/nethelp/IdxData.js X%%NSUBDIR%%/nethelp/IdxFill.htm X%%NSUBDIR%%/nethelp/IdxKey.htm X%%NSUBDIR%%/nethelp/IdxTool.htm X%%NSUBDIR%%/nethelp/IdxTopic.htm X%%NSUBDIR%%/nethelp/Local-1.js X%%NSUBDIR%%/nethelp/NSHIfrm.htm X%%NSUBDIR%%/nethelp/NavUI.htm X%%NSUBDIR%%/nethelp/NoJSerr.htm X%%NSUBDIR%%/nethelp/Prnt_dep.gif X%%NSUBDIR%%/nethelp/Prnt_sel.gif X%%NSUBDIR%%/nethelp/Prnt_up.gif X%%NSUBDIR%%/nethelp/Stack.js X%%NSUBDIR%%/nethelp/Status.htm X%%NSUBDIR%%/nethelp/System.htm X%%NSUBDIR%%/nethelp/System.js X%%NSUBDIR%%/nethelp/ToolUI.htm X%%NSUBDIR%%/nethelp/Tool_dep.gif X%%NSUBDIR%%/nethelp/Tool_sel.gif X%%NSUBDIR%%/nethelp/Tool_up.gif X%%NSUBDIR%%/nethelp/Topic.js X%%NSUBDIR%%/nethelp/Utility.js X%%NSUBDIR%%/nethelp/Wait.gif X%%NSUBDIR%%/nethelp/netscape/home/help.hpf X%%NSUBDIR%%/nethelp/netscape/home/home.gif X%%NSUBDIR%%/nethelp/netscape/home/home.htm X%%NSUBDIR%%/nethelp/netscape/home/homeHdr.htm X%%NSUBDIR%%/nethelp/netscape/navigatr/help.hpf X%%NSUBDIR%%/nethelp/netscape/navigatr/nav.htm X%%NSUBDIR%%/nethelp/netscape/navigatr/navHdr.htm X%%NSUBDIR%%/nethelp/netscape/navigatr/navigatr.gif X%%NSUBDIR%%/nethelp/netscape/shared/NetHelpm.css X%%NSUBDIR%%/nethelp/netscape/shared/NetHelpu.css X%%NSUBDIR%%/nethelp/netscape/shared/NetHelpw.css X%%NSUBDIR%%/nethelp/netscape/shared/admnIcon.gif X%%NSUBDIR%%/nethelp/netscape/shared/calIcon.gif X%%NSUBDIR%%/nethelp/netscape/shared/collIcon.gif X%%NSUBDIR%%/nethelp/netscape/shared/commIcon.gif X%%NSUBDIR%%/nethelp/netscape/shared/compIcon.gif X%%NSUBDIR%%/nethelp/netscape/shared/confIcon.gif X%%NSUBDIR%%/nethelp/netscape/shared/ibmIcon.gif X%%NSUBDIR%%/nethelp/netscape/shared/messIcon.gif X%%NSUBDIR%%/nethelp/netscape/shared/navIcon.gif X%%NSUBDIR%%/nethelp/netscape/shared/netIcon.gif X%%NSUBDIR%%/nethelp/netwatch.gif X%%NSUBDIR%%/nethelp/picsfail.htm X%%NSUBDIR%%/nethelp/picsfail.jar X%%NSUBDIR%%/plugins/cpPack1.jar X%%NSUBDIR%%/plugins/libnullplugin.so X%%NSUBDIR%%/registry X%%NSUBDIR%%/vreg X@dirrm %%NSUBDIR%%/plugins X@dirrm %%NSUBDIR%%/nethelp/netscape/shared X@dirrm %%NSUBDIR%%/nethelp/netscape/navigatr X@dirrm %%NSUBDIR%%/nethelp/netscape/home X@dirrm %%NSUBDIR%%/nethelp/netscape X@dirrm %%NSUBDIR%%/nethelp X@dirrm %%NSUBDIR%%/java/classes/irix X@dirrm %%NSUBDIR%%/java/classes/hpux X@dirrm %%NSUBDIR%%/java/classes/aix X@dirrm %%NSUBDIR%%/java/classes X@dirrm %%NSUBDIR%%/java X@dirrm %%NSUBDIR%% END-of-netscape46-navigator/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 Mon May 17 22:56:30 1999 Delivered-To: freebsd-ports@freebsd.org Received: from scotty.masternet.it (scotty.masternet.it [194.184.65.2]) by hub.freebsd.org (Postfix) with ESMTP id EF7AE14D9A for ; Mon, 17 May 1999 22:56:27 -0700 (PDT) (envelope-from gmarco@scotty.masternet.it) Received: from suzy (modem38.masternet.it [194.184.65.48]) by scotty.masternet.it (8.9.3/8.9.3) with SMTP id HAA26081; Tue, 18 May 1999 07:56:16 +0200 (CEST) (envelope-from gmarco@scotty.masternet.it) Message-Id: <4.1.19990518074747.01751400@194.184.65.4> X-Sender: gmarco@scotty.masternet.it X-Mailer: QUALCOMM Windows Eudora Pro Version 4.1 Date: Tue, 18 May 1999 08:00:15 +0200 To: Roger Hardiman From: Gianmarco Giovannelli Subject: Re: 3.2-R and Netscape ports Cc: ports@FreeBSD.ORG In-Reply-To: <37407CCE.59E2@cs.strath.ac.uk> References: <026001bea09f$8a076fe0$236319ac@w142844.carlson.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 17/05/99, Roger Hardiman wrote: >Thomas, > >well pkg_add on netscape4-communicator does not work either >it all installs and then when I run it I get the same >error. > >Does this mean everyone, even users of slow 486's need to compile >XFree86? I have the same problem of you , and I have to recompile again Xfree (the first time I said NO , which is the default , to the question : "Do you want the compatibility library ? " :-) Btw if you need you can take them from here : http://scotty.masternet.it/libxfreeaout.tgz (760 kb) scotty.masternet.it is 194.184.65.2 if your dns has trouble to locate it. They were built under 3.1-STABLE but I think it doesn't harm too much also because this box is quite -stable : FreeBSD scotty.masternet.it 3.2-RELEASE FreeBSD 3.2-RELEASE #0: Sat May 15 12:20 :44 CEST 1999 root@spock.masternet.it:/usr/src/sys/compile/SCOTTY i386 Please let me know if everything is ok so I can remove them from there :-) Best Regards, Gianmarco Giovannelli , "Unix expert since yesterday" http://www.giovannelli.it/~gmarco http://www2.masternet.it To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 17 23:42:59 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 79C3E14DE9; Mon, 17 May 1999 23:42:58 -0700 (PDT) (envelope-from foxfair@FreeBSD.org) Received: (from foxfair@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA95919; Mon, 17 May 1999 23:42:58 -0700 (PDT) (envelope-from foxfair@FreeBSD.org) Date: Mon, 17 May 1999 23:42:58 -0700 (PDT) From: Message-Id: <199905180642.XAA95919@freefall.freebsd.org> To: anders@fix.no, foxfair@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11436: New port: Nessus security scanner Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: Nessus security scanner State-Changed-From-To: open->closed State-Changed-By: foxfair State-Changed-When: Mon May 17 23:42:10 PDT 1999 State-Changed-Why: Duplicate PR with PR 11457 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 0: 7:56 1999 Delivered-To: freebsd-ports@freebsd.org Received: from fleming.cs.strath.ac.uk (fleming.cs.strath.ac.uk [130.159.196.126]) by hub.freebsd.org (Postfix) with ESMTP id B330C14D9C for ; Tue, 18 May 1999 00:07:51 -0700 (PDT) (envelope-from roger@cs.strath.ac.uk) Received: from cs.strath.ac.uk (scary.dmem.strath.ac.uk [130.159.202.5]) by fleming.cs.strath.ac.uk (8.8.8/8.8.8) with ESMTP id IAA08918 Tue, 18 May 1999 08:07:29 +0100 (BST) Message-ID: <374111D5.EAD6683C@cs.strath.ac.uk> Date: Tue, 18 May 1999 08:08:05 +0100 From: Roger Hardiman Organization: Strathclyde University X-Mailer: Mozilla 4.04 [en] (X11; I; FreeBSD 3.2-STABLE i386) MIME-Version: 1.0 To: Gianmarco Giovannelli Cc: ports@FreeBSD.ORG Subject: Re: 3.2-R and Netscape ports References: <026001bea09f$8a076fe0$236319ac@w142844.carlson.com> <4.1.19990518074747.01751400@194.184.65.4> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Gianmarco Giovannelli wrote: > > >well pkg_add on netscape4-communicator does not work either > >it all installs and then when I run it I get the same > >error. > > > I have the same problem of you I have spoken with Jordan and Mike Smith and we have the fix for FreeBSD 3.2 When installing, if you select the compat22 library, it installs all the required libraries, including the X-11 libs you need. However, the compat22 installation forgot to copy the ld.so file into /usr/libexec. That is why /usr/libexec/ld.so is missing! So, for FreeBSD 3.2 and Netscape, install the compat22 compatability and get ld.so from the /usr/libexec/ directory of another machine (I got it from a 2.2.7 machine and it worked) Or, just install the linux netscape port, which works just fine. Bye Roger -- Roger Hardiman Strathclyde Uni Telepresence Research Group, Glasgow, Scotland. http://telepresence.dmem.strath.ac.uk 0141 548 2897 roger@cs.strath.ac.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 0:41:44 1999 Delivered-To: freebsd-ports@freebsd.org Received: from adelphi.physics.adelaide.edu.au (adelphi.physics.adelaide.edu.au [129.127.36.247]) by hub.freebsd.org (Postfix) with ESMTP id ECC5D14D9C for ; Tue, 18 May 1999 00:41:40 -0700 (PDT) (envelope-from kkennawa@physics.adelaide.edu.au) Received: from bragg (bragg [129.127.36.34]) by adelphi.physics.adelaide.edu.au (8.8.8/8.8.8/UofA-1.5) with SMTP id RAA01416; Tue, 18 May 1999 17:11:40 +0930 (CST) Received: from localhost by bragg; (5.65/1.1.8.2/05Aug95-0227PM) id AA18912; Tue, 18 May 1999 17:12:29 +0930 Date: Tue, 18 May 1999 17:12:28 +0930 (CST) From: Kris Kennaway X-Sender: kkennawa@bragg To: TAOKA Satoshi Cc: freebsd-ports@freebsd.org Subject: Re: Do you need editors/xemacs{,20} (Re: pending/11618: new port: editors/xemacs21) In-Reply-To: <19990518114404B.taoka@infonets.hiroshima-u.ac.jp> 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 Tue, 18 May 1999, TAOKA Satoshi wrote: > Hi, XEmacs users. > > Do you need editors/xemacs{,20} ? > > I think these are deteted and editors/xemacs21 had better be imported > as editors/xemacs. xemacs-21 is still in development, isn't it? I'd prefer to keep the most recent stable version in the tree; anything older can go for all I care. Kris ----- "That suit's sharper than a page of Oscar Wilde witticisms that's been rolled up into a point, sprinkled with lemon juice and jabbed into someone's eye" "Wow, that's sharp!" - Ace Rimmer and the Cat, _Red Dwarf_ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 1: 0: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EA05115421 for ; Tue, 18 May 1999 01:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA04005; Tue, 18 May 1999 01:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id D1E0C14D9C; Tue, 18 May 1999 00:59:41 -0700 (PDT) Message-Id: <19990518075941.D1E0C14D9C@hub.freebsd.org> Date: Tue, 18 May 1999 00:59:41 -0700 (PDT) From: toyonaga@msd.ts.fujitsu.co.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11755: ja-vfghostscript5.5 port has wrong md5 data etc.. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11755 >Category: ports >Synopsis: ja-vfghostscript5.5 port has wrong md5 data etc.. >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 May 18 01:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Tatsuto Toyonaga >Release: 3.2-STABLE >Organization: Fujitsu >Environment: FreeBSD mail.msd.ts.fujitsu.co.jp 3.2-STABLE FreeBSD 3.2-STABLE #4: Tue May 18 13:32:47 JST 1999 toor@mail.msd.ts.fujitsu.co.jp:/usr/src/sys/compile/MSDMAIL i386 >Description: japaese/vfghostscript55 ports fails to build due to md5 mismatch. (but matches to the one in print/ghostscript55). Also this ports requires dated libpng-1.0.2 source. May need/better to reflect fixes in http://www.cs.wisc.edu/~ghost/aladdin/relnotes/gs550/index.html >How-To-Repeat: clean up distfiles and try make. >Fix: update md5 data. tweak Makefile etc. >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 May 18 1: 5:48 1999 Delivered-To: freebsd-ports@freebsd.org Received: from adelphi.physics.adelaide.edu.au (adelphi.physics.adelaide.edu.au [129.127.36.247]) by hub.freebsd.org (Postfix) with ESMTP id 118D315421; Tue, 18 May 1999 01:05:43 -0700 (PDT) (envelope-from kkennawa@physics.adelaide.edu.au) Received: from bragg (bragg [129.127.36.34]) by adelphi.physics.adelaide.edu.au (8.8.8/8.8.8/UofA-1.5) with SMTP id RAA01690; Tue, 18 May 1999 17:35:41 +0930 (CST) Received: from localhost by bragg; (5.65/1.1.8.2/05Aug95-0227PM) id AA24930; Tue, 18 May 1999 17:36:32 +0930 Date: Tue, 18 May 1999 17:36:30 +0930 (CST) From: Kris Kennaway X-Sender: kkennawa@bragg To: Tomer Weller Cc: FreeBSD Current , FreeBSD Ports Subject: Re: your mail In-Reply-To: <99050617135200.58638@Tomer.DrugsAreGood.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, 6 May 1999, Tomer Weller wrote: > whenever i try to compile KDE software (ports also) i get this error, though > packages install fine. > i installed KDE from packages, i suspect that's the problem. I didn't see a response to this as I was going through my inbox, so apologies if this has already been answered: What version of FreeBSD are you running, and which compiler? If you're using egcs as your compiler (either running 4.0, or [23].x + egcs port, then you have to compile the KDE dependencies manually using the same compiler or it will not work. In other words, egcs produces C++ code which is not binary-compatible with that produced by gcc (e.g., the package). You can tell whether this is the case by looking at the error log produced by the port configure script. Kris > > this is from the kmp3 port, but happens with every piece of kde software : > > > checking for KDE... libraries /usr/local/lib, headers /usr/local/include > checking for extra includes... no > checking for extra libs... no > checking for kde headers installed... yes > checking for kde libraries installed... configure: error: your system fails at linking a small KDE application! > Check, if your compiler is installed correctly and if you have used the > same compiler to compile qt and kdelibs as you did use now > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > > > > ====================================== > Tomer Weller > spud@i.am > wellers@netvision.net.il > "Drugs are good, and if you do'em > pepole think that you're cool", NoFX > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > ----- "That suit's sharper than a page of Oscar Wilde witticisms that's been rolled up into a point, sprinkled with lemon juice and jabbed into someone's eye" "Wow, that's sharp!" - Ace Rimmer and the Cat, _Red Dwarf_ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 1:15:22 1999 Delivered-To: freebsd-ports@freebsd.org Received: from adelphi.physics.adelaide.edu.au (adelphi.physics.adelaide.edu.au [129.127.36.247]) by hub.freebsd.org (Postfix) with ESMTP id 853681548D for ; Tue, 18 May 1999 01:15:18 -0700 (PDT) (envelope-from kkennawa@physics.adelaide.edu.au) Received: from bragg (bragg [129.127.36.34]) by adelphi.physics.adelaide.edu.au (8.8.8/8.8.8/UofA-1.5) with SMTP id RAA01662; Tue, 18 May 1999 17:45:17 +0930 (CST) Received: from localhost by bragg; (5.65/1.1.8.2/05Aug95-0227PM) id AA16492; Tue, 18 May 1999 17:46:07 +0930 Date: Tue, 18 May 1999 17:46:06 +0930 (CST) From: Kris Kennaway X-Sender: kkennawa@bragg To: Brandon Fosdick Cc: ports@freebsd.org Subject: Re: Mail Filtering In-Reply-To: <3737AF2F.E3FE6B96@glue.umd.edu> 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 Tue, 11 May 1999, Brandon Fosdick wrote: > > Procmail will filter your mail. I just posted a URL to a mail > > filtering FAQ the other day to -questions. I doubt it's in the > > archives yet, so here it is again.. > > > > http://www.faqs.org/faqs/mail/filtering-faq/preamble.html > > Just what I was looking for, thanks. There's also maildrop, which I haven't used, but it apparently is lighter on system resources. Kris ----- "That suit's sharper than a page of Oscar Wilde witticisms that's been rolled up into a point, sprinkled with lemon juice and jabbed into someone's eye" "Wow, that's sharp!" - Ace Rimmer and the Cat, _Red Dwarf_ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 1:20: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1CC191547A for ; Tue, 18 May 1999 01:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA05742; Tue, 18 May 1999 01:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from blues.ghis.net (pppc1-37.eisa.net.au [203.166.251.37]) by hub.freebsd.org (Postfix) with ESMTP id 385D7155E4 for ; Tue, 18 May 1999 01:13:27 -0700 (PDT) (envelope-from jim@blues.ghis.net) Received: (from jim@localhost) by blues.ghis.net (8.9.3/8.9.3) id SAA13225; Tue, 18 May 1999 18:13:26 +1000 (EST) Message-Id: <199905180813.SAA13225@blues.ghis.net> Date: Tue, 18 May 1999 18:13:26 +1000 (EST) From: jim@phrantic.phear.net Reply-To: jim@blues.ghis.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11756: update port: xchat-0.9.5 to 0.9.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11756 >Category: ports >Synopsis: update port: xchat-0.9.5 to 0.9.6 >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 May 18 01:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jim Mock >Release: FreeBSD 3.2-19990517-STABLE i386 >Organization: >Environment: >Description: Patch updates xchat port from 0.9.5 to 0.9.6 and turns off GNOME panel support which is compiled in by default with the new version. >How-To-Repeat: >Fix: Apply the following patch.. diff -ruN /usr/ports/net/xchat/Makefile xchat/Makefile --- /usr/ports/net/xchat/Makefile Mon May 10 10:13:53 1999 +++ xchat/Makefile Tue May 18 18:00:12 1999 @@ -1,12 +1,12 @@ # New ports collection makefile for: xchat -# Version required: 0.9.5 +# Version required: 0.9.6 # Date created: 17 Nov 1998 # Whom: Jim Mock # # $Id: Makefile,v 1.10 1999/05/09 16:57:20 steve Exp $ # -DISTNAME= xchat-0.9.5 +DISTNAME= xchat-0.9.6 CATEGORIES= net MASTER_SITES= http://xchat.linuxpower.org/files/ \ http://www.ozemail.com.au/~peterzelezny/xchat/ \ @@ -19,7 +19,7 @@ USE_GMAKE= yes USE_PERL5= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-gnome +CONFIGURE_ARGS= --disable-gnome --disable-panel CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" USE_X_PREFIX= yes diff -ruN /usr/ports/net/xchat/files/md5 xchat/files/md5 --- /usr/ports/net/xchat/files/md5 Mon May 10 10:13:53 1999 +++ xchat/files/md5 Tue May 18 18:00:21 1999 @@ -1 +1 @@ -MD5 (xchat-0.9.5.tar.gz) = cc42bdff05d2b5f2c568ad9173a27a25 +MD5 (xchat-0.9.6.tar.gz) = e4f7b79060746dbd0f3ad4bb7e36d86d >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 May 18 1:40: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C3CE51550C for ; Tue, 18 May 1999 01:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA07226; Tue, 18 May 1999 01:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from blues.ghis.net (pppc1-37.eisa.net.au [203.166.251.37]) by hub.freebsd.org (Postfix) with ESMTP id A0A5914FDD for ; Tue, 18 May 1999 01:34:31 -0700 (PDT) (envelope-from jim@blues.ghis.net) Received: (from jim@localhost) by blues.ghis.net (8.9.3/8.9.3) id SAA21506; Tue, 18 May 1999 18:34:24 +1000 (EST) Message-Id: <199905180834.SAA21506@blues.ghis.net> Date: Tue, 18 May 1999 18:34:24 +1000 (EST) From: jim@phrantic.phear.net Reply-To: jim@blues.ghis.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11757: update port: gqmpeg-0.5.2 to 0.5.99 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11757 >Category: ports >Synopsis: update port: gqmpeg-0.5.2 to 0.5.99 >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 May 18 01:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jim Mock >Release: FreeBSD 3.2-19990517-STABLE i386 >Organization: >Environment: >Description: Patch updates gqmpeg port from 0.5.2 to 0.5.99 which supposedly fixes alot of things on non-Linux platforms. Removed patch-ab.. it compiled and ran cleanly without it. >How-To-Repeat: >Fix: Apply the following diff.. diff -ruN /usr/ports/audio/gqmpeg/Makefile gqmpeg/Makefile --- /usr/ports/audio/gqmpeg/Makefile Mon May 17 16:57:34 1999 +++ gqmpeg/Makefile Tue May 18 18:04:16 1999 @@ -1,12 +1,12 @@ # New ports collection makefile for: gqmpeg -# Version required: 0.5.2 +# Version required: 0.5.99 # Date Created: 28 Oct 1998 # Whom: Vanilla Pooh Shu # # $Id: Makefile,v 1.13 1999/05/16 23:34:14 steve Exp $ # -DISTNAME= gqmpeg-0.5.2 +DISTNAME= gqmpeg-0.5.99 CATEGORIES= audio MASTER_SITES= http://gqview.netpedia.net/ \ http://www.geocities.com/SiliconValley/Haven/5235/ diff -ruN /usr/ports/audio/gqmpeg/files/md5 gqmpeg/files/md5 --- /usr/ports/audio/gqmpeg/files/md5 Mon May 17 16:57:34 1999 +++ gqmpeg/files/md5 Tue May 18 18:04:38 1999 @@ -1 +1 @@ -MD5 (gqmpeg-0.5.2.src.tgz) = 2e1be28d9aaac1af8da6236f656a12c3 +MD5 (gqmpeg-0.5.99.src.tgz) = 25fad49cdd1f8bd247479b6415a1aa5d diff -ruN /usr/ports/audio/gqmpeg/patches/patch-aa gqmpeg/patches/patch-aa --- /usr/ports/audio/gqmpeg/patches/patch-aa Sat Apr 3 18:22:57 1999 +++ gqmpeg/patches/patch-aa Tue May 18 18:20:00 1999 @@ -1,20 +1,22 @@ ---- Makefile.orig Sat Mar 27 21:38:09 1999 -+++ Makefile Tue Mar 30 01:48:05 1999 -@@ -1,13 +1,11 @@ +--- Makefile.orig Tue May 18 18:18:07 1999 ++++ Makefile Tue May 18 18:19:40 1999 +@@ -1,15 +1,15 @@ + + PREFIX=/usr/local --PREFIX=/usr/local -- -GTK_INCLUDE = `gtk-config --cflags` -GTK_LIB = `gtk-config --libs` +GTK_INCLUDE = `gtk12-config --cflags` +GTK_LIB = `gtk12-config --libs` IMLIB_INCLUDE = `imlib-config --cflags-gdk` IMLIB_LIB = `imlib-config --libs-gdk` + -CFLAGS = $(GTK_INCLUDE) $(IMLIB_INCLUDE) -LDFLAGS = $(GTK_LIB) $(IMLIB_LIB) --CC = gcc -Wall $(CFLAGS) +CFLAGS += $(GTK_INCLUDE) $(IMLIB_INCLUDE) +LDFLAGS = $(GTK_LIB) $(IMLIB_LIB) -lkvm + +-CC = gcc -g -Wall +CC += -Wall $(CFLAGS) GNOME_PREFIX = `gnome-config --prefix` diff -ruN /usr/ports/audio/gqmpeg/patches/patch-ab gqmpeg/patches/patch-ab --- /usr/ports/audio/gqmpeg/patches/patch-ab Fri Apr 2 13:52:55 1999 +++ gqmpeg/patches/patch-ab Thu Jan 1 10:00:00 1970 @@ -1,75 +0,0 @@ ---- main.c.orig Tue Mar 30 01:40:15 1999 -+++ main.c Tue Mar 30 01:47:25 1999 -@@ -15,6 +15,27 @@ - #include - #include - -+#ifdef __FreeBSD__ -+#include -+#include -+#include -+#include -+#include -+#include -+ -+#ifdef FSCALE -+#define FIXED_PCTCPU FSCALE -+#endif -+ -+#ifdef FIXED_PCTCPU -+typedef long pctcpu; -+#define pctdouble(p) ((double)(p) / FIXED_PCTCPU) -+#else -+typedef double pctcpu; -+#define pctdouble(p) (p) -+#endif -+#endif -+ - static gint fast_advance = FALSE; - static gint advance_max_frame; - static gint advance_max_sec; -@@ -99,6 +120,36 @@ - #define HZ 100 /* for FreeBSD? */ - #endif - -+#ifdef __FreeBSD__ -+static gfloat check_child_cpu_usage(int childs_pid) -+{ -+ static gfloat percent_of_cpu = 0.0; -+ -+ static kvm_t *kd; -+ kd = kvm_open(NULL, NULL, NULL, O_RDONLY, "kvm_open"); -+ if (kd == NULL) return percent_of_cpu; -+ -+ { -+ static struct kinfo_proc *ki; -+ static int nproc; -+ ki = kvm_getprocs(kd, KERN_PROC_PID, childs_pid, &nproc); -+ if (nproc != 1) { -+ percent_of_cpu = 0.0; -+ } else { -+ percent_of_cpu = 100.0 * pctdouble(ki->kp_proc.p_pctcpu); -+ } -+ } -+ -+ kvm_close(kd); -+ -+ if (percent_of_cpu > 99.0) { -+ percent_of_cpu = 99; -+ } -+ -+ return percent_of_cpu; -+} -+ -+#else - static gfloat check_child_cpu_usage(int childs_pid) - { - /* needed for SGI IRIX 5.3 and 6.5 */ -@@ -197,6 +248,7 @@ - - return percent_of_cpu; - } -+#endif - - void set_song_info(gint 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 May 18 1:48:25 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mordor.xti.org (mordor.xti.org [193.212.232.254]) by hub.freebsd.org (Postfix) with SMTP id 60E0A1550C for ; Tue, 18 May 1999 01:48:22 -0700 (PDT) (envelope-from delta@xti.org) Received: (qmail 65628 invoked from network); 18 May 1999 08:48:18 -0000 Received: from mordor.xti.org (193.212.232.254) by login.xti.org with SMTP; 18 May 1999 08:48:18 -0000 Date: Tue, 18 May 1999 10:48:18 +0200 (CEST) From: Terje Elde To: ports@freebsd.org Subject: GXSNMP Message-ID: KEY-ID: 0x5B439BB3 Stuff: Why are you reading all the headers?? Do you think I hide lots of stuff up here?? Question: Do you know where *your* towel is? MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi all, There's a really nice graphical SNMP management prog under development (see www.gxsnmp.org). Anyone planning a port for it? Friendly greetings, Terje Elde "One world, one web, one program" - Microsoft Promo ad. "Ein Volk, Ein Reich, Ein Fuhrer" - Adolf Hitler To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 2:57:53 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ipt2.iptelecom.net.ua (ipt2.iptelecom.net.ua [212.42.68.2]) by hub.freebsd.org (Postfix) with ESMTP id DB24314CFF for ; Tue, 18 May 1999 02:57:34 -0700 (PDT) (envelope-from sobomax@altavista.net) Received: from vega. (dialup1-52.iptelecom.net.ua [212.42.68.179]) by ipt2.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id MAA02887 for ; Tue, 18 May 1999 12:57:22 +0300 (EEST) Received: from altavista.net (big_brother [192.168.1.1]) by vega. (8.9.3/8.9.2) with ESMTP id MAA30850 for ; Tue, 18 May 1999 12:57:28 +0300 (EEST) (envelope-from sobomax@altavista.net) Message-ID: <37413987.6A7F7809@altavista.net> Date: Tue, 18 May 1999 12:57:27 +0300 From: Maxim Sobolev Reply-To: sobomax@altavista.net Organization: Vega International Capital X-Mailer: Mozilla 4.51 [en] (WinNT; I) X-Accept-Language: ru,en MIME-Version: 1.0 To: ports@freebsd.org Subject: Samba 2.0.4 released! Content-Type: text/plain; charset=x-user-defined Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [Quoted from official announcement on http://us1.samba.org/samba/whatsnew/samba-2.0.4.html] The Samba Team is pleased to announce Samba 2.0.4. This is the latest stable release of Samba. This is the version that all production Samba servers should be running for all current bug-fixes. Samba 2.0.4 now supports the viewing and modification of UNIX security ownership and permissions from the standard Windows NT client security dialog. More details may be found in the NT_Security document included in this release. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 4:20: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 65BF7155AF for ; Tue, 18 May 1999 04:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA30405; Tue, 18 May 1999 04:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 40E7F1546F for ; Tue, 18 May 1999 04:14:18 -0700 (PDT) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 3.00 #1) id 10jhpB-0000QG-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 18 May 1999 13:14:17 +0200 Message-Id: <1627.927026056@axl.noc.iafrica.com> Date: Tue, 18 May 1999 13:14:16 +0200 From: Sheldon Hearn Reply-To: Sheldon Hearn To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11759: [PATCH] Add WWW to exim port's package description Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11759 >Category: ports >Synopsis: [PATCH] Add WWW to exim port's package description >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 May 18 04:20:03 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Sheldon Hearn >Release: FreeBSD 4.0-CURRENT i386 >Organization: UUNET South Africa >Environment: N/A >Description: The mail/exim port is missing a WWW: entry in its pkg/DESCR file. >How-To-Repeat: N/A >Fix: Add WWW site to the exim port's pkg/DESCR file. This will make it easier for folks to find sample configs etc. Index: pkg/DESCR =================================================================== RCS file: /home/ncvs/ports/mail/exim/pkg/DESCR,v retrieving revision 1.3 diff -u -d -r1.3 DESCR --- DESCR 1997/09/08 11:19:06 1.3 +++ DESCR 1999/05/18 11:11:19 @@ -15,3 +15,5 @@ are very good. . Its requeuing and retry algorithms are very powerful. + +WWW: http://www.exim.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 Tue May 18 4:20:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 83F5A15581 for ; Tue, 18 May 1999 04:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA30396; Tue, 18 May 1999 04:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 084E91546F for ; Tue, 18 May 1999 04:09:57 -0700 (PDT) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 3.00 #1) id 10jhky-0000JL-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 18 May 1999 13:09:56 +0200 Message-Id: <1198.927025795@axl.noc.iafrica.com> Date: Tue, 18 May 1999 13:09:55 +0200 From: Sheldon Hearn Reply-To: Sheldon Hearn To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11758: [PATCH] Upgrade exim port to 3.00 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11758 >Category: ports >Synopsis: [PATCH] Upgrade exim port to 3.00 >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 May 18 04:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Sheldon Hearn >Release: FreeBSD 4.0-CURRENT i386 >Organization: UUNET South Africa >Environment: N/A >Description: Suggested commit log: Upgrade to version 3.00, featuring: Simplified handling of domain/host/net/address lists. Regex handling bugfixes and improvements. Bugfixes. Logical improvements. Documentation improvements. WARNING: backward compatability issues. See README.UPDATING in the distribution tarball for details. Change maintainer's address. >How-To-Repeat: N/A >Fix: The following diffs against the existing port will upgrade it to version 3.00. This should _not_ be done until the 3.2-RELEASE ports freeze is over, since exim-2.12 is still the official stable release. Index: Makefile =================================================================== RCS file: /home/ncvs/ports/mail/exim/Makefile,v retrieving revision 1.27 diff -u -d -r1.27 Makefile --- Makefile 1999/02/10 16:09:48 1.27 +++ Makefile 1999/05/18 11:05:34 @@ -6,15 +6,15 @@ # $Id: Makefile,v 1.27 1999/02/10 16:09:48 markm Exp $ # -DISTNAME= exim-2.12 +DISTNAME= exim-3.00 CATEGORIES= mail MASTER_SITES= ftp://ftp.cus.cam.ac.uk/pub/software/programs/exim/ \ ftp://ftp.quite.net/pub/exim/ \ http://www.exim.org/ftp/ \ ftp://ftp.is.co.za/networking/mail/transport/exim/ -DISTFILES= exim-2.12.tar.gz exim-texinfo-2.10.tar.gz +DISTFILES= exim-3.00.tar.gz exim-texinfo-3.00.tar.gz -MAINTAINER= axl@iafrica.com +MAINTAINER= sheldonh@FreeBSD.ORG # If USE_XLIB is defined, the eximon monitor, which requires X, will be # built. @@ -39,7 +39,7 @@ ${SED} -e "s#XX_BINOWN_XX#${BINOWN}#" \ < ${FILESDIR}/configure.default > ${WRKSRC}/src/configure.default cd ${WRKSRC}/doc && \ - for i in ../../exim-texinfo-2.10/doc/* ; do \ + for i in ../../exim-texinfo-3.00/doc/* ; do \ ln -sf $$i ; \ done Index: files/configure.default =================================================================== RCS file: /home/ncvs/ports/mail/exim/files/configure.default,v retrieving revision 1.3 diff -u -d -r1.3 configure.default --- configure.default 1998/12/17 10:54:24 1.3 +++ configure.default 1999/05/18 10:51:55 @@ -79,7 +79,7 @@ # expensive, you can specify the networks for which a lookup is done, or # remove the setting entirely. -host_lookup_nets = 0.0.0.0/0 +host_lookup = 0.0.0.0/0 # Exim contains support for the Realtime Blocking List (RBL) that is being @@ -99,7 +99,7 @@ # unscrupulous people out there who will make use of open relays to try to # disguise the source of unsolicited bulk mail. -sender_net_accept_relay = 127.0.0.1/32 +host_accept_relay = "127.0.0.1/32" # If you want Exim to support the "percent hack" for all your local domains, @@ -233,6 +233,8 @@ system_aliases: driver = aliasfile + file_transport = address_file + pipe_transport = address_pipe file = /etc/aliases search_type = lsearch # user = XX_BINOWN_XX @@ -248,6 +250,9 @@ userforward: driver = forwardfile + file_transport = address_file + pipe_transport = address_pipe + reply_transport = address_reply file = .forward no_verify no_expn Index: files/md5 =================================================================== RCS file: /home/ncvs/ports/mail/exim/files/md5,v retrieving revision 1.18 diff -u -d -r1.18 md5 --- md5 1999/02/10 16:09:49 1.18 +++ md5 1999/05/18 10:09:57 @@ -1,2 +1,2 @@ -MD5 (exim-2.12.tar.gz) = 0fb2147e34752cb84d450b61ac89e3fc -MD5 (exim-texinfo-2.10.tar.gz) = ece154c4c8c95e3983d11c5de186005c +MD5 (exim-3.00.tar.gz) = 8d31a444a10c4b8e5c7e609aaa575741 +MD5 (exim-texinfo-3.00.tar.gz) = b02bbc0477d97d94fe597590be2932ab >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 May 18 4:30:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AA312155BD for ; Tue, 18 May 1999 04:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA31287; Tue, 18 May 1999 04:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from narcissus.pel.sys.hiroshima-u.ac.jp (narcissus.pel.sys.hiroshima-u.ac.jp [133.41.37.161]) by hub.freebsd.org (Postfix) with ESMTP id 7EA8D15581 for ; Tue, 18 May 1999 04:25:13 -0700 (PDT) (envelope-from nobutaka@narcissus.pel.sys.hiroshima-u.ac.jp) Received: (from nobutaka@localhost) by narcissus.pel.sys.hiroshima-u.ac.jp (8.9.3/8.9.3) id UAA03862; Tue, 18 May 1999 20:25:11 +0900 (JST) (envelope-from nobutaka) Message-Id: <199905181125.UAA03862@narcissus.pel.sys.hiroshima-u.ac.jp> Date: Tue, 18 May 1999 20:25:11 +0900 (JST) From: nobutaka@nobutaka.com Reply-To: nobutaka@nobutaka.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11760: Update port: graphics/gimp1-i18n from 1.1.3 to 1.1.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11760 >Category: ports >Synopsis: Update port: graphics/gimp1-i18n from 1.1.3 to 1.1.5 >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 May 18 04:30:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: MANTANI Nobutaka >Release: FreeBSD 4.0-CURRENT i386 >Organization: Cluster II, Faculty of Engineering, Hiroshima University, Japan >Environment: >Description: Update graphics/gimp1-i18n port from 1.1.3 to 1.1.5. And I fixed broken GNU gettext PO files. Removed file: patches/patch-ae New file: patches/patch-aq patch-ar patch-as patch-at patch-au patch-av patch-aw patch-ax patch-ay patch-az patch-ba >How-To-Repeat: >Fix: Please apply this patch to current port. It is compressed because it is very large (137KB). begin 644 gimp1-i18n-19990518.diff.gz M'XL("'A#03<``V=I;7`Q+6DQ.&XM,3DY.3`U,3@N9&EF9@#,/%UWVDB6S_:O MJ"&>'3L@0%\@D?:>$!N[F?;7@M/ILYL]C$`%U"`D11^VDW3^YCS-.?.2WS!/ M_;"WJB20A$HFZ9VS2Q($5;?NK;K?]TK$)O,YDN+@!BW(VI!81ST7K=+-S+^@A M>%T.K^_0(XF6:"@;-P@_1=@-`?)0>H%^Q@']B`+\(28!MMD")#?EIG)8KYK6 M*?US*\)H%F"X)%-L&DX0\%T#S+NEM][.I2_7F\:1M;)>IQ^:,V\-X'1/1T-` MEG*D\0#D]`Y#UVIKK;:"VFI/;_$_'YY'?:[7@O4F7 M-[U@T?+C:8M^:<5N&%E3![>HLCVPO;30^T/I(+-J%C;CM=O$=KQ=]\SB9<16 M/SX^-JTUCI:,*%M32?FP_AT[9VMU2KC^;;O.+?R6'2<+0=KHNC^\N8=_@]'I M@4`3F<$I9J.#ZO#.#>[L]N9B>/EV-)CT1Y=P4$FR24AQ2SX.G.S\X.;GTX.S MN[N+JSX`UJ3AT>>KV[/^U9O^>/"E1=R9$]NX!F=`!P>7]S]-^,K3VM'G7V29 M`TV)VUI$*UF19IX[)XL:/_'EU?!-!CR#E2UPR#2W`O##`KJ%JQPPP"')>?(7 M6@(UO!G?]Z^N)N.ST?#N_O1/1T>?DZ$O2%JCKJ[_"9ABBSPD-;F0,;P9XFCN MN5'6O>W.EGG-7:A=_]DV2OUGR=)Q[**^'R"DH;;2T_2>UMYZ4D5C@M42P:*_ M6K[EXA!G793T4IJ3)VQ+QR3T#$,WP?_^E81/;:6]^6"2F/#QEA/R"@&C_\,+B] M>'6([AQL`=-!9*AVU;^YK"'L/I#`<]<8H!ZL@%#K0I&':KXSN;MJ#L>W$\Z% M&K)<&V(9GL40@VI4]+7F8?VP#IB!0?#"3R1Z=5C_0@?)'!T?.9:[0/@#JB7< MJYV@SQSTB&H,W<4IJN58LP;6Q6LID%PO6%N.),D:S*=_.(]KKS@2?K3:&$<1 M`4(0?=$H$1.E'%L+W&PVW[OO7;J"KWD,2(0G8.;![#C=Q,EF-L>L^CIK< M4Y5,`@39#U4FZ?I<1\?;2-V$<-YF9M6S.PTK;-64#VS%Z[DTT@=9H_ZHR'=!N6[[?6%G&;,XB< M9'%P#;G>&/M(D6GZ*>L]1M\T#B5*=PO-]L<`3:0H/47K04[*`.ME:.FF+O"4 MHFT;/:7=4SN;T^309G*B>))-M^A_H4>$^\-GJ)+KS8M2V:]S;0T)TU M&T@WT3U>^V`)=XXUPTA"XQB,#*EJNX'>>&%$0:_[$!1D699DM=UMH+?C?I/A M:S$V&4"@;J147B3A&OW@>#/+P03WEAU2+?&78*WF+B0ZX"Z6L'BX;_:_UUA MN@7MF%9HSG0/M9R6V+.YCUI."VH)Z;NL9M62,@+>4K7TG7@A$3=LQ8%#_VWT M**F.5#`&'3Q#HD>)>NZN8F3_#/\0:&<;-MM3M60!HZMU&@909AU27>;BUW1.6^>T>5S^PJ[8`3]/0Y9/;'0*?NDDF?Z\MZCM M"FG8>XC:_EY1V[D2UNPI<&XS*VI%826LFO-!:=76!"_`N,VI`_.@;(.:S=AD M;QM'E%ER4[8 MLMS9T@N:3_[Z(!F9+2W7Q4[S:;H9LK&#(YP%LF/?@50A/X@_8KXJ^>Y8'W&0 M'R'N"MM9U([WB!/RRY12Y^S`$$%@EQ;L3'KF7;V:W`B$W/D!N!M"8J M#-$,IS`41H&WRIW+C[P0)XT&/IYV&YKK<`:[8"FXC>?IQX`.'CP29PIG(S,/ MF,_^2FEQQ`0@G4.1U][4#"D!KE\$&AKOBS/QH M<#GX97(-]GL^2+8T/#J./'\2!C-*Y8`MS@W!^LB!X:-C5C%2QRIES.M MU+H*]M(!D\E8U\ZB77C=R-H7BY=R$C#K%713GT)K,L@MU)YJ9/*`7;H%5P+[ M-+,NU&`>U$@=*"VC`EC^!*Q\S3_189KZ3K83F:\P"R599`&_8.;HF(^>M%Z? M]^_[('3:Q*$'VHB=024K3K@\\2&JE^$(EU9`A5R]ME[/S^=6;PB@A1OO!P>U M!WZ*N*J4`";S+=^#`B.,IQP*ONT;5G"%YR_MA!9AOC>L8%88_)F6O#*-"&V( MYE1GN^VT,PJU0;O1WDTA$IO&D46RC$\GL58EE,*;6-,RE-*7E+#-A2FF+HO787 MBLV,U+/PB1\"_]>E360%U$_+R%;33.J(^"7U@&)ZD+Q"`JE"<:MEG%^>WD[J MJ&;\GJ;+C!Z[,,\W)]S]478E+N;T*/G`I,IY(D.E46?OJ;^H<6[75^80Z0T+:\XT@T'/=RWZ0`S^(@ M)`])CI3.T4-(UGH+G/*7MZS'F_$U1(GW<*"#@R(DC>M;,"T=@M.4PQ:H]_)[ M$>R3;I%?]_:BZPI'M][#BZZ_MU^T+GI1O:?D;C@6^D6Y2#';ZLBV%02&Q)/) MI"C/KR@"=W@43_M&9>A3Q8**$7P"*%;JINLEZ'>-5S4N+G3 MV(=0T@*2%=H#@O="$R@D"]=R2OH]5K`0MH9X$TAG3:"TVC.H?)"X^'ECV_OV'J^5W3,AQI,$29\ M$!9)>8CAS7T18E_]=2M4S-U#?]WOU5^WT"_.-`I*LP#:.*`9\(26LUD%9ID; M:)C<4XRDEYGI-626%*!5>>L2F:-3V\S1L4L:>4JIOL,V4U7%H'H-WE51,WJ] M0S7?%@?^9"NA3ENA5/DE4:/62Z@]+!M%2_HD@!N!?TJ;B`M[-<%!X`631RMP M(=$,:?/[56%NYMF8CS/EI03,+?I2'#+'05M7?V`T?_T5'1"BB_[5>/"*'](P5-96 MAHO!0V#Z^L+C!W_!$?D#%9M#,@<`IY02D)#=%H*]I),-5)/^&.;^ODRN79W^ MW0[4&J#4OQ]-HT9#)BJ^:IL[8^5KX4_C)=U"<>&<=O&#CV4SUIHX91./F"R6 M42/AK2DSWII*D;?)"WSEY)'8T;($DT^>L`,^[Q-PP/>`)_QS"1+?FH%&-#:2 MV+R@V")0LGUL(.R"-@`0=:_U9Z$:&39NMRC:4;J!Q'5SE$S/[D=O!^G@%W:E M+>2]W;=?X6']/=RW_[U%G%],/XS"[:J"^TZC_4Z>FF]0:?K&F>9R$%'+V.CI M\B:MYRVM#JO7^25UXT+JV5+"A,BUR3KJ(NJ[>8J1<>G@J4G^F,UG>F)2&S::H1UEH48HZ MHWP_.UWZV9+>(^3-;GJN.7A)*-#"YI)R])E&-,E\CK-?,E@>B:LJB?Q-%L;Y MA9AHTL2Q)E?G&7UXX$_I2<2=>^CH^.I^'A[DWSM7PY.8%6`^0,%"T/BUM]OX4&'9'_9P&Q_$ M/;UJM_&AF/5U>[JV=1NT#4AO,>GE"=ADMK8WK;\"HDY/UD196+)NEW;:#&*" M,PW:9(%WN4F/L`,?_A$'/#KTL;!+R80..S8GZ1!NR14 M[\9>"+5PB-^'HY$?*WYA\9P>\F`;Q=.@G<9H%#J62R_;(%R7V(HTHI8'T'K] M.:#&!F8;/+=!L@ZQL$X+(ZC+(S)#_6`1LV=E7NZMXD&%%@9[J'CPO2H>Y.Y] M&+0]*1L[*JZW<[=<;-STO=T[+1`0E9ZBY.^T,-C"X\:T>E(RNJQV-+VA0AW, M/B@=KM#K<`%20+78G>*5Y;H1#M&858PUSNX7/?Y(!W9CL)>>IL(&7X!6Q)\^ M?>3KB8UJK0OPE:WKT5M@2"V#MD4?*B9TXH]MQ2Y'J:NYKT:[@L(-?BQ!?X-C M`6HMCUJN0'WK8[<$]]_FJ%"XE=&=%$0[<9RA=Q\!ML6@[5?JWI>30&WO5A"ZL8%HAT(ZR!Z'+I(7\ M/"5(29RO\1R+Z55YA93>%7UL(D3_AL[XDQC/\'(\6Y+9,L(N@D"$?K+C-X'W&&Z, M__M<4;?@^ZO(_T=,HA)*;S!]1$@0L(PJOS"V'G`)PC%8(7@^`<(JPZ<(D16* M<8)E5[E+H\JH1QB\4AD#JO=;I49GCA>683%F-\1;.-@Z6W8P9)*0Z:I9!>2RJXA-XQB M3IE9+S0ON?V,?:$;J-EMT;ZN"0=PD?6LO5\N*%9K1"IH$)(D%XXGE7.@@L>H00E MMBP+5#[!.UY:0;'\33%#]/L:S(6IJ MBV-)UKV7%E4"^Z#UD^6@L"HWDF6!D?Q,\&/K/SUO#=$VC]^E"*/6CP2YB=P40OP6(?1*1J-*M=U"T>H]@%G.O6/>E5"[H M+R]P0._F!&OVV[:*3H*L5JD;#ZYH!-5F$)82NP)#M`#$7XDSCQTB$MHME5)ITHWQZ[E4Q=9 M06AM+5P<$9K1(Q%1KK<=@_WH237;9D,V!'HKSCU5@3=G&Z7_`PC]4+K%&QSC M$"7J),(N2*$X&U@00N\"RR^7*GU'D$FM0+*N.$QH`J,;`A.AB/8<+PA;@P\Q M^]%C/N$DCIVT+H$JR)Z(*RA9$QA>CDQ)4I@ELI,8CO8*M:_&0KCKU%$%K&[H(Q?TQZ8F.\"6TI(\OB/;GV@F_Z*;9JA%D3&-0NL=OY/,0E(N"4Z*V.,!)G>IH@<>)T^HZ_M%I]VT;L4VF2 MPXAQP$'`NK680Z^LS5TL]J!]F_[6F(E=,QMZJ=@KY"W(C?@^1Y=O=O>4#)8@ MTRLMZ#*P/H;T-T"[*"]I*A3%XF11KS0:UH\M%H$4+TPP=1`%0;U2VTJ5:C\L9,5Z!=ZE07]$=+7X/XOE;$9N;#]]V&T+6!0XXH3NB M/_%$[$LU.>1:LR5Z\`)>1)91$BAD>D+Z^]/]*2V)*R[,13?($E)]]E/;O6B! M+ECN2JP+HAMD":5K*,,P1,B0T/\;@P^**-(KY"^0RFP$"-1I8!,2%^1>"?$+ MA]X"=!'32P%5JIOH4QQ::\!:U481W3!+6I;:=(U(@T5W19+SUCIU;?D:-X3E'MTF?Z'-%U4U]HJ^_T-\^@O MFN@SNID?*ARMV[DBS97CVOJ,BUOG6+!S6[6Z\@3X-=`-C>ZL2:P@LDG3E$<@"_;"C1K>EC5;-*-*EU%MB4-E6(D..=\ M:.98TA1[$3?:,X;9DG5@CKH"S9X&>$/6#!KG08`O*VHK@27I1F.F$ZVO] M&JFO(R-[JO$,9*)AJEU[Z'!O&`H3J!AI9(AL:X\5:$(SE0*1C?Q0@>8VTX@/ M<<[_*"PHW^KS0_R>[ MIM%PV">EY+%Q>K?R7?=-_)<1ML20_P1/HY<$UH\:/FFH:$B%SNWVS@67)HW` MR,J4R.@=TG=)!BD2EWMA]JCPZK8'>TI!Z.A]SB1>%P2#B6>T^CQ*38[I,`&BJJ>C(J>SR:B7-/9ZN"ZFF92&V51U#N/\JJLJVF:G4U>8$, MEX'1G1NEG9,O":+NKI)1O]IMYDT@8,AIY$Q(*)CN'CP>S7%%U/BR9J M!(9#3RYBX<3&^8EX]':[9QIJ6D0Q,S`FH$.)Q@3,",1C^YL9Y-K>EO3M]L+< MMDVP;3A&R!R,E=W1`!,(4)#MWAR]E=.LP)#8?0UKGB%9T;#1G*RIJ"JU+955 MVQ*68'SL7H*C3&'$PSNJ6MO;DDRL\/P%Z]E2 M;:$01X&\Q_48GI@.8CJ":HU[,!%#Z!R(R>Y$D_/7,>079-27R];VW`(80,0$ MC(/=?\9GNV-1X!-MRU#IV572!(R"W45%EH).SYB*-8.R^&0X9[9-U:,W&=3J M2S<#PV+W1I&P3AID<7J1\JP[X]84[>N( MB:,SBQ3\U_$,L_0;\!)V+$+',%NZD'8!%#'PJ8+GUDFSDJ%-M&74N<"1!.=! M8':?$?JR(8`^UC/:R#&J:BK^EX:>-`$#8/<'X0\@DA'@KQ_HE3EA`>*SVWOD M2PE*$:AJ)Z4$/`LP`';C3GY2`44AS1HSAMY6]?1PPJ9@7.PD*O(=1C*DTPLS MLVB$2YUTH-B`0;![F?!7&Y08MA=L=@"N`8C.SHJBGWP*1@6>Q26_(@":KI9PDI8`E&-``NGE);$*"ZG?60I MK;@E&%;VM`QZ/3HKLJSW8F+--AI"IJ2+QAV+A7.$O,@DHZN8,D[*[,"2'AWC M`C#8*A3A"ZIE&RU3[OQ%IJG%$6#Y.#2#:L>GI29Z!M;_M8=I=^2=]"#W2A:> M?_6UVO&N,*Z:/101NT,=QEXIPU9FF+,VIZIQA>T66B(YA"P4'+(73@O-)Q4!P',>7TT,*68&#L M1DZG.\H<[0W^4L8S`^=@\`4=L":GM9XUL^M9"=.-E*;D"\]J"WC] MV)$,JSGJSBAK<_5%*1"3SEI)M52G'J[4J(#$_7DPD]UI%YUQ6M*2?$:&W]'CFQ1UTC43E%W%`415:_Q`Q^8@(V/ M\+U>?$*Z$!$;QFJEN(I-L)RG*K8Q*P]:RR:X"?1*[[71?PJ7L@G6U+?5N6T= MO2=FO)KJU+^Q44_,IDH3L_&O'XB>C>_=LJ0Q)LA&5",V$TR"+(&A*YP?5 MNJ%`+SQMRUH/#9.E]":67^XF%H!%!JBVHH@$-IT\101;V=.:.H6@+4M51NL)(Y0;Y9+ M&H?)F!(3QV%S;H3U<;(Q94052P\KNQ#5RTE^H7#(YS)EB,7D66MO'W@;E17BU;3S'J/;- M)MAN>:1M_/E*Q=R>>ZI"78R`MHWG^932T\&`^<5M/+71M,LXWBPO;1";Y++S"7IRN3/$\5"D2HWC$4]B$]9\!^KUA11J'.='C+9!H;T7H$N3RG_,+4H#DMX< M99)2R7U88Y2'Q5I^+T2/)@/OK3`1&F"U/F),@\TC1\/!$"A0ER8#1\]Y^)6: M*TM3HLC2$"]%R=+0&?ZY9&F8G/T5!N9! M%J9)XWPCDG650%2*AOT56U[YF92OTG)+SJ1^8U:8U$SF+\7RZ\ND??A5D*I, MEF^XBM&2R?(Y5C$R,NSOJAQ1CDJ5B,A4Q\>_S2(R[A*=OU:GX;=8NPU5;V$1 M&1_G!!I:]RP)KXH"-5I00L9'<-/D,P&"\T#0>,K1CRE3]&/\JXN7C_%)>:?Q M*I$L*7@2%A:,$I>-\8%(8BOUO-G>.*)3'",E5S2F\K6+QF1;FLNI')/.+<@G M'9.!3I!3.X:705"4B`P'::`8`1DR?/%R,JE+3.$5ZP(49*+5C M<&7)1D8H0D"&P3\@;;]>=Z6T:N6RKY/BQM'5>JU)5,GP9!8F)TBI#.18QT=A M(U,Z/I"=G-)+1L(;RQA>I+^DQ,?J+^%`4WI92L35C?C'I]$ M#;:I*9,=Q;)0%+N>W8<)G@KJ1)N2+#D[TTON26D7NMV>UI1TU(1GD'-%?_8O M,LL'V0R%'SN#?)`M*A]DQP2`RK5]I4K:;H8S/4@^:&Q??2PJ'T1LXR#5?:71 MR&Z&U;)+"*TF9UWI+9:7_7GX\:PV..8G\?[1+.`X#^?3B5MIZ0M0YL9/^20^ MC^_,S2JMA4'3/0G6:93ASC;1B^%QRV@73OHGO5Q M"M637#L0FB?Q?$!YK&E?V(\MHSU\J(%>=@I\^[DHG@FT8ZIN/V:`Y6!X)K`< M.P;=+@_!,X$VL?B%_MA&OMFE60BQ,P%^:L=66DI;VK&DAB7;AJFS"CDON3-9 MAZS%]M/%J>#(`(F="?`#R,Y6-%522!1/&>"YN9W`G:._Y2Z+N)R?V)E`]GB= MO8XTZ&T-$]@OJ%-RV]`7#<:.I_DYG-Q=52[^)D$[HFH[7;IS/NJF^W[4[1U@ MQ92;M1GR*'4>6^T='7CQ\A(VTT/EXVJZCVWQ,;"#!#]/D_TVY.)H3BPJ9AMU M%#9ZU'./`;%>/HYFX/(8JJ6`,#8G23/P>4#!5>"_`KP-0,G+^@:`M3:+0R ME0+"Q]8,_)]^:CZ%"H2+K!E^;-.*!<7)R=<,>7UJ3BFF/+L(/C\NVF;@^(QJ M68ORG`%Q>_BXFZ&JMM.RE(Z$'$MS!"*47(Z.CWLLSI'1)(LS<%(HCS/6LJ1= M^LZ<9"WB;8GL9R$8`39GK+EEPQ$A=5+:8#8P;G[G$756T9YJ.];PF<<:M+3# MS^\,W#HG'T.B_9P,S\#O:46;52RI#;TSN7F>@6LTMK06_T.WP=5S;JIGX/NH M,J6T_@CYY>=Z!I[74#7Y`HR8F^H9.#Z"QK&@7WZR9^#XD-8!25V\;,_`Z_&G M.F@)9J]R,SYU%/%,HMQ;`*B)` M]21.CZ@-2]49?@6(GJ%H'UL%DSVCO@LE?$9=%TKZC+HNE/@9*^PH^;-2)'\F+BV6`$KD\TJ4L$]B#_HAQ0`K%_2I/;F#3YI'C^)P$X8^BR MMO@$);M#,"53G/I),";LQ^C8G\>RF,BSO.V&'< MZ4Y-0<[%^)^>\Z/*+,.Y*/LS4DZ2^;2UR.K"\S)`_7MY;,_(]A/)=)_.4\M: M5*9WK#]K#&Q1+J@'>JBUX`"V=B"(7&10#R?:?[6]@9@%HN;AA7J@R&JQG04L M#S64?H?4'KI<*KO[#*)L_]M+$3WDKK&Y/VQHDE^<'.HC[-?D[HYI*UI'03F9 M+5DD9Z##"=)$?2PW*YM6M(:EF#M!JW+INR67+5H=2;)%?2>#VFP0)7E69\>6 MYG9:J-[(LR!5-M\6@QZ,NXP;OO_JF$L/K5<2]%`H&#%.*,]RGS`GE(.0($H+ MY>$A"#-#^>D'^5FAPJR#O.S0,+"7M;GT4%;1YJ"'BC$<\C%$Q8@-^7BBJ7R& MK'3!'H/1U\M`%^R)T@5[829?I;0/_Z],V6VP$J8+JC9`%RS7]E5K4;H@L8V! ME$?W5<9"=,&Q,;+;(/[G&]EMD!P]9#6B0J;1B]S38#1%[3!(CR5\24HDJ;L* M5L;<704K(]_(KH(.C;%KLDK;/0W%4M!N@O1(PI>DQ%'0+H+N48V^G43D+!1) M<3L'!G"8$"WI1H>J&DLWHX<'[A=8'O'W"RQ]C?L%'L5?S6CJ\$G#M-&@@OQE M2*HNR9I-W1PO[0(PS%P["8*H4[)%W\0O]0HPT'Q[#'JXR,`P?6!6A`E+,+)B M=AKT<`\:G2E5]X"QMB*Z1-6H/4"&:\"H<^XYZ!=3MZLB&Q5U^9+:06:J3FV- M*?9@F$7L0^AA/R>[XWF9&"ZJ!CM6P!Z,M8`]"4/0R!#E029/M,`E8,#T<1S7 M+H7^4J6#LHX2=^<*9D4`+H""%=JO\$6WAD%[%L;.@]CB^Q;Z"'CF M5Y::JM1"6:E*[7H8MF!DHCL9^EAX2_>&NK@HT_<&!NS`>'+O:>@#$BO57>:B M=G^P*1A>[KT-XYBGU&8/=67.:AC81C-=!0:==]?#.+IKM,A^X!1C,,)\.R`. M])$7LQ/BP(NPR%T1OX$Z6M!^B=]$Y/EV4AQLWB,&[,"X"MAWT:LI>*P`0N7947M->&'1/\VX#W"SQ9*WV6(E\5&+I;3(2,="[SW#:JB]^*,7EMMQCP]( M;H<<[!ES0+3Y%'?H*[DYY';P&?P]#GHJSCO2Z@U<=B=\?A'>`4Q8LY_9: M+<54R4L>#4DTJ:4:INX^$W>GQ9J_TV*))K_C2A$`P0'4MDSR.]CF,,I-T)^H M)!3\NM48&[+E$M^)8!TS;'6.@91'>2<"=%J>0RGB(N/IYA/>B8#AG!MW[JCR M3O'J'`5N,]DX$WUVIDA0GSV&4;V[1G0CNB:[39)MD;1P=(EHP!@R?7WINQ,!QS:&%`IAH,([$6BRPJ5(WB6#W$HQ"NP:H0>. M1M$2N9`!GJ6'2A'?X>NH\DGOT`EA@LH[`-%(7'@GC2,D++R3%BFG[@Z4D>40 MWF&^!_DV1V1-X(H)[["F9`5U=]A3K'E$=S+-E0H*[J1,?8I)[C#G,D45=YB3 MDV):.[[+_;K>`^^==Y/$X.:[BK?$Y6R16![SQ'6J8Y0M$KT+B]TC,=,<:BY9 MG4RSH?D$=3+.:N80T@FFGP[*G2FH3Q"0T@D<4Q<]195T`K>G>S8TQN46T0F\ M'L<)-+AC':^`3N#W>3S'T6JI,L,[OXQ.X/\8UOR69'2QT0!+A5M-)_"/3X)^ M^=5T`LB]\Z,>2W2"6=D-LB571";HM4T`D7;E0]ISKNJN>@]W5" M/2=Z6:'*.1DJD:ABCE?S(W-W^(TZ[0S8X`_B1"5T6(LH!:CGI$_VY]7.`==? M7BI*^.%J.;P,MH*$]!A+*:[%T#`>:1T1);P M"]36R<[`<_=7+'O[*XXDY75\9T5I[,!?).02VLGV:4$.P9WT[P3$A7>",E&; M>.G'0E6FJ(T76>3'P@1XO&]>,J\HB(KO<'P&F%>*A^=+OMS*/%D^RBM,F(?O MJ[K\FCS9/XTK2)PG^_=MQ>CR<'VA5HPZ3X:OS`+Y%V?WQO*W6)IGPET$5/T5 M6-E=+?*6!Z%:*:S5$T`Z60E.W/6F;`+<"D&5G@`%];]X6L\Q"N]N74:#/$>A MIS2:5.@)'`Q&HH>D8WB>6.KA;0R!/B>?/@_".(:'&'($P[GY^JBW>V/UZ]N] M,?O:H+!.3U;N@JA(#P=E05BC1XBID%^FAY^@D%>?)U&8>,;/3_,&H]`#T"$F M4ND0^41Z?-CG5`L-1E1<.=-9$/E$>F+DAZ:B2B'TV):.M7$B15.KH>$(6XPF MOL-C.E<9W.$1Z`EIS,&4'C.^KV.FH(!]'8&^$XJ*TL=2HOKOL'?C'$,O:2Z# M&-._=6!GU]FZ, MM8'AY?>77UE>6OX\Q!%--M@\5%`?X-J%-WX*N,_#!O7]G__[I5.RDMW5VZN;2T=&O0G%`?]?6;;_YLY1]N?E8X*]1'N/R#6W]>VGCC2FAN M;V2DY._$6*=00?UK!T('];TOKZ!_OK_\Q?)KP\L?+.\L7Q@,)92*]][RM5>N M+L.R^WFHH0#@[Y9O++\S&'XH%?$U5*2WT4U>6/X-ZT8+(8A2`_@=^KG]RE5T MV7)_^9^6GRS?6_Y\<%Q16@BWKKSY+\L_6=Y**X/<1%$J^']M;"[?7GX7';@T M0)HHM>A=V*6-M_]X_8-!,D5IZ':+4F_[Q\@ZJ[N=117L+ M_0FD@<_U];>7;C,\./BCA)GJVM+GZ$,\H.E"X!+3NZH4ZSH?I>_0/?] MZEK_%[\%''/Q1XG;J[]=^NSM&U"DG.11XG%I&]W]G:6?>#[=G1EK_LZ,U21Y ME%Q8*'&4>%Q_N__:TE=K[R^=6[K%:C5"O-$D`J,AB?%&0Q#]GRP]6;K-KO@" MO%'4GB3J.+RS_$W*\!3OF)H<2O^?^@#L"R"<_ M,90X??-GYW^X]-72KY;^?ND2Y)J3&AJMKQOGW[G^&\@S-S$TYONM];=_#OD6 MYX82$#PU$HR&EN["60P_-Q0WX6%<+HRVS,\+)5YQB;"\\A-#_6`W?EPL,S3L MN$AJ:-AOD=S0L-\BR:&1`HZR0\MU;V_%:I(=&KNN4'HH\;VZLG07_?^KZ^^> M^Z^E-Y:N0"FW,%.4H*#QUP]0(UM;_N';7]XI?GM%@K'TR=(&N@/H!2).#27> M\="=T>8$.:%.X?P4C4S66,X%>:$A[RA7O[1\!V5>6^&J5QOW=E`L)UF%Y.HB M&:'$(>YR6;7/\3R$_R.4>GQU<^T7-\*/ M?'S4VRZQG.1S$G=%<3F)LV)YG,[MOK;\.S)*.H=GX2#OW!1.Q_<2*K?;Z)&] MN@QEM-S\3DL7F)F][.OOUE?6_O7.3YVI`3)^NPMAYN%J)I[9\J]11_-J M%M@\?,T`-K4'KY7&1]SM%,LCWV+.)EZ4(_]YY_M`B0ES,XGKR[??VEG:N/:C MI;OKCZ'9!T%6)O'??^W"'>3]G=L?DG\W+G[U^J704RCC#::=C1,K25HF\5`\ M(Q/5C!^@^G$-593+MU9_>N\]R+\H'3,"SKXV)F9P\( MCH`P(9.?%I"?C2G,!,A+R@P#AY*V#*6;@Y7)3SK(1\?DY1GD M(V*F4@NR$O3F&1RZ^0P$O7E1@MY\A#N'+JSMJXPF"7KN4-EV_\+&N:T+RRN7=TWN?_9KT6R\^N`J`CO) M`,NCV'AMY?4;*[>E6_U=DZ>?#8W#1TJC>\8\D="1KUFE\?5'*^MOW\(EO6OR MN6>'+W]VX=6W?KIK\@!F[5QCC@.Q>N[9J4&8"YI1MC MB%>>OO;CRZ^^\[,WWM@U^3P#MSCMQE@`K_WVQG^]]B?IQM+YC5V31QD1%"+@ M&`-?_7?IVMK5V[C:#UJZ,8:\\O#"=6GETYNO[)I\D8%=C')C'!O!2E>>K%[' M?PUCB#\Y]`GCCHM^1HYPX MQ2$7S8XS\SU>^OAR:-*I.EHK>22[<>1J_'#<"AB`!CZ#C-HXCV8O@$S:>8XF+T%,VOD-!BY`S- MJYC,8O04S:^`RF+H.,VCD+9BY`S-:SYA1;H)#8>7.7?YXKE/AF_\(]A)\[/F MB,=W?OXZM`HMP)@C+HM74@S<%LF6"[P6R94+O!;)E`L5;(0G-S92=GERZ)V: MX,E%KBJ4)4<\QT[2?`O2XYS*_GVIOW3Y8N&\..+\PF=HR,=X`8H3XXA[/(J^ M](@)(,:-(]Y?>V5E_8U/F=X%R7'$??*\5]O&ZRXUKCJ6I%R1:XNDQA&'X3,T MKR+4..L7)" M]LZ_8A#183J[@ROJE]?Y3:?7OSGW2?[._!'GEHPJZ3M^Z?'-M91-R MF5?BT;$+K3@4+^X80$C7;ES\.3B8%U5T#/D_?X7AGX\/F*A1=+/=\3CBM$): M('F5'AV[RQ=7UE^_+I$;O_W^S5?@&^4B+18!9"#X*FG'R M@5#)BK30^`F(4&0TVT1@5$8C+2Y^AB)88LQW'8OR^`SA*MHS"FKCLJE(4SU5 MLR6\W^^,(DUK"\\X!$2'Z5BKN.J4([5O,=-Q]=_Q(J=W*ECG+X[PZ")$+?#* M%QU(D/;HHH1.!\M2SO,8(2*AZ'F,E1+B:][E1;$>$U6/;A;4.H`\20N$CQ[) MB"1B1PLERK.DQ5*G!."4H5/FH^/.^M?X^$AB_0OR*4:UY&>%"%,N>DY5/F:^'0K',5X MS65.CI<2S$D@#G'"I+\=+NX0Z=[S<",/:VIWIJ=U#=3G>?/$!3(ACVA*SU3T M+CX).,_!>LQ2-D60&[/@Y*0P9GH.>=F*F4#RTA+W=_&V,JAO=,X"*+D)B%F> M25ZB8:;RRLTHS(*2AS:8TK/F8A#&?1]0YF49F"[B91)^=XKF6Y(UH(PX>81< MH7-Q">.>)S3WB7@LJM$Q9T@U6D]^R$8/@(=$Z,'CZ0'K,YRT MP[C?P@B(7#6#CXG(=.VL9U=>/E'J;Y$V8=>DW1L<2-T4UU5%UJ MRZ@]:J'^;KQ4)F-@S`O)-/;D9Q5Z\;RL-F90_]%#&?B<@9+D+OH5CJ16<2(9 MSQJ)"$TM:S#ULJLD54KN(PJ%(\0]BP9T5-45-+B%EKR$*6A1%,]$@RBO8DRT M*,@+:`RBJ;,Z?#-BA+38K4#$M/&Q*A&TJ(Y7:PE!"R`B8797D**C?X;=68KA M(Z;1Z8"W+TCSHD,Y=OBSX'`1>)OACMT&HI'\;"),K+V)> M;;0H['YM6AX^8R@M"?^2W"AL([23=6BOVY'D7K=0F!D(5$!(A4JC15T_;ZJS M%GZ'-<'FQ"V0%D-0R,P/>EL6Q7W:/XW27U5OH=8,X;10F;>3'E!I*@$C(806#""6FD)'%EODWA@ MH'S<)\KC(N_'*E"1E^%XE*IW$_MEP":B<5W4)X4DKFG$2CYR0Y2[%:0A'-,/0\7(!.0^M%^0B'F2L7#EX!C2$K+2"!<;*_T(& M6L&"**U@(;[B/[(/5:SDYHNC85I!%Z(5E,O[ZJ4HK:!+HQ74]]5'([2"2LWY M6@S_B'\M9C25*?3J,B1=519U65^0K(66+I^G/T)HZ!`3B/*<#Y_4U#8^_IU2 M!_'C?D%P'4>R2CB^X0]_\1E9JZ&MJIO3I2'_,WZ*)F(NFRN8CJ#+PY=WX-J`CJ]\S%<\U%7&VD M>67VS8:*!C8#U("*8",37>KY`0Q2_BF"BRW:EM0TVN2*W@"EGR*X1XB-+$V= M_ZSY9'Z0HD\\?5`NB2<"]-("KCC`<(9/X8GX>UGNJA;PYN/6=PIYE&;E-J#8 MPROJE!XGGYR3ZZ_3UM59ND/^K1;9KSA.G:>%QJR,'K0-Q\>I]$0'-?P9<<@H^N1Y)"@#=/;?H$W%Z MTFBHYUJP5Q[BA>?SH#$-.N16?G*CU)_,A[*_T?&*O[LB5?B)7%6P]%.HB:#7 M^.(\&L]`[H6TGT(M)LV_F/Q3J*JG^.>6?WI91N.[QB(:$2PJY\\U@$Y30`/* MGY!AQ6F^-6@ M_!)8,-`!Z&GQRT%Y?@^@:@!-X?+S,#ROIXS%S@+4K_"J0?E%B\:7G[6AU[R` M))3G^.4.&J[-PH[%5:%\!"?K:1J$EG&^!R$!K0/4A7I)1:ES6L'PBT-Y;MGE M(B`1%8T7#3648K6B*/Z+%(WB<\^M'D5Q7Z2,%*WP8_LN5KU]%REZ4O3+"Q66 MRE;O1'6E'._XC-F1\0C?D(RVJNAM>-@IJC+EWHC[BI4T%64B;17"$%:;HL!\ M)EG$%.IB!)6G/"1C7F[J:@-ZP8DJ3_DWLH!S7'D6]Y1=#RQ<0VLNSV5LC*)! MY7@I4H3*\8CGEJ5Y_!-R+*)#Y?A^SNC*%DHC3[1U*+L15Z(Z,67*BTH;I:K( M9F%0:E0QE'#^Y^[5Z#/L*`\M=O5@5*EB()X5RK(AL)P;.'J`SE0B>>D_F7=L MV]`P.]\VCG3$P1*5?%#"47K.:**62Y`E&1T(5X'QNLM/JB2Y]KZ7HK9O]/P5 MNX.C7\#-!I[<5R1K43:--QM0M\Z_CZ.'X,R*&HQA'_=.CI[KESNJ\B^2B=)S M%?IDB7L_1\_W1%O6P+J=5Z;)70H(+0FTW24!"%!,J\G#.6F@5X_RIC1/_H:V M/A04;/)`3DSIZK44"-$]'#V,E^6V8<^K*#U(P_@!(3%C8*(/#:65,VT:A# MD5""#E5U06FC`.=EF?3=(0AW.\>JNYUC93RYG6-P>?%[.N+S)F[P\_83$S5` M//#0@:HIOK&CC]*6KT4QW+T=R][>CO6O;V_'C`MZPBI#/%P"486AC!0"86$A M3OI`?D6A)&N@S68-Y-42BI2@+*E^VL9Z6#ETA#CY"?DTA(1H"?DTA%+8"%EY M?HL,*MYB!I[?HBC/;S%&P:N4]E7'*3R_4ICG9_8@GM_(OGHERO,CMDF02E0^ MJ#KN[.%(?L2U[OZY?V=]8'LX$N>_W]QZ=`?PG8>*1YS_X>'=^X\>`ON=\W/Q M')_2N_N;M6.!./N'^RN;7Z4+JY\5YH_#TR M,N8J#XU4DWLVDLL&PL`CGK?7^NN;M]>&/U][\!"^YUP$O`C.?_2OKV]N/!H( M^2X"]&5_?>WA_?Y@V'<1I-_<[]]<6]UX.&#R703SR?KFFK0FW>UO]-<9A9F7 M>1?!_,.[-]80Z`9J(._?0_>[N35`]ET$^8^D33YXN-67MK8V;S(>:F[F7;24 M-Q\\W'QO8VU5>M^/8)#TNPCXSL;-U;L/I)N;=U-+.S?_+MH5;&X\V%S_4-K\ MY=KUS;N#Y-]%8'_?WUJ[W7^X>5]Z=U.ZMWGS_?7W[J$+_L]A]>PQY?_28\A% MRB/H__;HGW_G?G]C#7H'L3KG_JA/,`A&M4KKC82&A$F!H+>*ZZH[1:_O-_?NMM'C_;^ZD=] MZ,;XB'BNRR=W-]]=N[^Y!7OE8^-YD:*'`#\"$4)>S+$$=QZY_$AZH[!,#F)>:[/+S>W M4,>W%FDS8Z6R1\X;+2?)>>Z5A9+S8@U'VI*NOW]K];[T0%I#][QZ#T(2X.DE M&Y2T]I$#UT_%$^'MQ5M$=C1N%M^_/;JYNH[JR"IZKG?[N"31?<(C(P$Z7X"P ML[&U>O\ALT_BY?4%SLDOTGT\6`5\\[+[`N>_7_OUZFUHXQ!NBE^HS-?[6_V5 MCU?!B/EY?H'SKU8_NHN20JBD^:E^(=?]>U`_);+W8]CQ@X?O_W)U"_;.R?D+ M7/]Q"]6/7^.?D&MNWE_(.6J5'_Z2Y5R<^Q>@!-G5EC.<`M%X^7]?WM]\<&_S MX7VWE##$O?Z#7S[L7P<0^+F``00IJPP0_+1`'^,+QW.QI,"$]R(I@0GG16XG MF7!>)!TP6>A1,F"EXI(!,7TGF1HD+RZ4"N@#_.OFK^_VI8_ZTD/T8Q.86!3F M!/HP.QNW-N_?Z]]8>T_:O"YMWMV`YP)%28$^UN_6-E;OW%V3MNZN#V\]NKL. MP0CS`GVD)P_OH_1`>N!.,KR7"BG&#O3Q?M]_%^5`Z^^M?+RVFHHER!7TP5`. MV=_:6".)'1K/;P38]\+UN#[B4@;'QY/L,]]9D:S!H#@VMS97<66"9_^TM?J0I/";6QOO M@8F**)TPB41)0%WAMY)++"Q3'FW2SV"XA4F\2)`'\^//UB]OPD.:_AIAV$, M9T:8-+6-C4WHT7+3#R,0'SF3&]+]/OH%[6C.2T(,([@Y"7O$FI>0B)=',JZ1 MB'(1"<27FS=Q)RL]6`>3'T$6(G'_AW??)[-L+/^B%$0G_OMK-U;?34/(23YT M;N7Z/ZS>7'/&66LWU^X]6L60:Q"D*//0>?!;JZC8I+6@UD$PN8B'!"O4]4E# M?RFYX\J-/LY4U_OP3$$N\B%!1@T)98]`GITH<1&R5^7;O*WB MCK]^^6CXR_[&ZOJ'D25-H.B$J8AA.)*`X&SX_7N;Z[_N;T"Y@"`;,7)GF^A? MW#/A5*+`Z(G9&!?"[,2L1`M19F*27U$T-S$SKR(_ M*Y&/3I&7DAA=V7?S.-1KOYM"53$Z=D07(BNC#&&ZSMJXREB1!:!W6MXU0?WFVUU;G#R@X[[XX-0'W1%"!-=="Y=B"D1\?UX:=8 MMMLHU#'G'\'0GR,W10Q&@SQ,8IT>-ML66UT!>.V"N$^1F&Q M:K,I&8T9\@V!QBK4O`3(*/`9Q6S;"RU+S=1R\I,@H^@OZAW\?8W>LA1]1K&A MK;CR@XG.C*)N2.E^X8\BA9!K!? M&2_1T7&ZBHK9EJ7IIZ;2VBM-J1J0;'#R'=V([6T=T&GBUR-,>?EQ,2%/*4T5 M]97R\!%-[7:E'B`VP,>%#)SB?>R@A\_)A`Q'BH[@#[8`OP)L2(IS"?@6DI,. MZ7L^A3()J"2XV)"^Q\,+6C$[1`8NT;D%:`M.+BJD[W%5;T$5@),)Z;M\_BEZ MMW="V6**2J%_8:%4R$3+D72YH[?4.7#S#A$69+PII8.(4!]IU3\5B)OU>$PV MVQCDS/9939:ZG_X_>0[RSBY1<?F,0:0N4=N$F M-WI.#VL+^'OV`A4,/<\3[6VS"Y4J/ZO1EFAW$/B^F1/;]LX MF<<;AK:ARB3*.R00[M!,=10)O258&HH8X9"`X/]@9)"Z*Y!`2A\<7 MI#E(.4F(.AB4IM&UU8ZLX1I.*B&`(DX8/(#&OV3V3C&'_WJ[HS-Z9%&F8!@B MEK9E$!X,7ST89F`88?_<-/HQ*+E!@G3$F:ET3>`,-A<-,((T8'5!@D6D!8]N MMUI.$H*%!8="F4@&>4'BIBBJ'W%6+,>/N'S>_!1/U)MX]LPV3`T47./E[Q''6$%0EJ!9N=R4/3*ISS&U+\K;>#HK:?@7 MY%R,M>JTH&MJ*P54 ME+/GH)W$Y]W!#)Z>A3=)S47:6AZ;G- MB-DE_W=1"G27V_QE-^W39N%2@1Z&)Q0X33(".HH@+\^#.+"`$CKDOHMJ>F0O M4Z9(H'?U8"0"45WY7K=K*EW4QA7=FY6G@>21",1+IV08$H;X!A4"LR[_"Y/P MLB[ZBY+P,B[U"U/P.!;X\Y/P^)?U\Q+Q@A5U-P.3NFD%F8.!)\8>R$?"`SD# M`V+AL<@",/NNW1H^>?3%B=,19IQWD,JW\T[^C],]Q:&R89KFD$#+ORGC',L"/S6"C]T(>QB^#77C22FC9T.SB"WX3/#*EZ M0^LUE>%6M[%W)OBSH[3D>;794FQT5/*-&FW\?\HA\BZE'N]T#!V=("%6]I1' M4)"E/2AP'&;,V%[HHGJ0=-)3*0?G4)Y"('=';\&WT]0I?)O#)+1)BR0VT1@] M"U(^P/'&C*SJ4SW;)G=!-4'5KV/!)^>@4],*'M63.]Y-/:]JBN7E8Y`35;8'%%@7+VPT549IXH$=ZI3-!<@@^D@C9W35=NM+%564 M*AIVEW&J%ZXOGCU>/+!46Z'Y\LX=9IT\B>L\.DA.--I#Y;WEO9:QMQK<=Z0A M[$Z:UBD'GY&"0WOER%^:'."A0$*`E*-UVM'`':ZU2@<(CM?IQR-> MT;.2XP>TT!'4[&3RO%`"A)]7O>1FY-)?H7=30QKN6>8P[G506Y!.'/CKPR=. M'=M_^G]^YSLG3YPZ[?_]G>](PQ:VTIH-0Y]66])01_K.`0*#W9#*,8S"&W8J MIX6QG11>T29;ME?2V6S=@LIFC,JI1,HIJWG&0%#KE/46:F=9(_.,D\?.SJIG.TB7,6D!.?;'3;EABUK MASQ3ALNC:FO&1MD"RP8%?6)J%O6K+"/9J=.8N5&3=H][,[R,*Z91(JY,GV6: M,$MKVKE-&_VCL(JCA0:OTV10DF:%_T"_6:`MN6=9DZK*+%7'R-04IM$4.Y[F M@FXK9YF%WE+8"*A;8)_75.9Y%74M;(-IYBVHTYHA-YD>T/#1LM64DOK;*=5B M%P1*Z3NH;9&TJ3:R!Z=-]9$]HRE5L,M\U%V+&;HIZTVC@][K754#&/U]'YH3FTJS)Y[ M3B6K64R3KFETY19^4HQ"F)?G%&:)S\MX:H7DL*Q*E>Y'F9IR6,A,JQG5U%!& MW)AA6JEZDQE,9YIU^=FI#NOJL[/,H<.\3# M&E[W89N8<@M_MV`QK5Y0.EVV`4K$)L\8FBVWV"&]8!A=-M:+#52LYH*%CC'M MCBJD'V&:X/00SR8QK8YABJ*&>AP[Q5J9[&]G-2DW7V/9TR+/8=3>!VP*[>$[HQG^F!31@==KR8'LAN)!,]G5TJ MIU%51IUD2KTX/:-,/F\JBCZ)BJC!+H&7Y)1&]I)AL-LJYI6A.CAYD'2ED2X/ MI[C#^R=1T9G)XXV>25Z4\>-=0UMPTJ5*M8[3I&0H?1O\Q&WCF(':P/%F>M+HH_YW9VT6ON?CI2S1,;S:M;OJKWK1 M+WO>P(O!T$E*IN%>S=!1#FGSNE-(&K\)G)_:@>GNR9 M7HE6.LZRZ+#57MB+_@!.:FA\PSC=F70R:HO8#%%M;$-7JE6& M$]0!3^.4EICL%O*!_FO*\.EY6=-[-NN\B5,F8N"P+T9QI%J#4Q M0L*G:^S3]>0=6T-XU0(UI/!%%EECMX:KS2&C9VNJKNRU\"P%U>2TV6O,*#9H M(3>;0U/*G*(1"W*WHV2`4Z^,)^_6N\I44"]I=N0NZ)=,C"P,R;K:@6WP*&FH M89@H\;>(U6Z*%1I.#]D&\32D=EJ@-V?8/6D;DV08E<%.Q<2F%#O5T(=(G'[Y MU$LU,C=1KS,*:!ZGYJ!K-+P?G-X),@N@ M##>5X:,')X\=FIC8__RA"6*^MV/$C*95JA%YF)4JJ>RCT:;M7M@V,GC7M0Q& M7;K1[HB1V53+3GEX==N]*K:@F#C>0F-[ E[UAR0N.9W]=^`S_Q_ZDU5\N1@"`+:@ ` 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 May 18 4:34:24 1999 Delivered-To: freebsd-ports@freebsd.org Received: from king.ki.informatik.uni-frankfurt.de (king.ki.informatik.uni-frankfurt.de [141.2.10.16]) by hub.freebsd.org (Postfix) with ESMTP id A8B3F15651 for ; Tue, 18 May 1999 04:29:42 -0700 (PDT) (envelope-from marko@king.ki.informatik.uni-frankfurt.de) Received: (from marko@localhost) by king.ki.informatik.uni-frankfurt.de (8.8.6 (PHNE_14041)/8.7.1) id NAA15831; Tue, 18 May 1999 13:29:32 +0200 (MESZ) To: ports@freebsd.org Subject: ports/10007 still open!? Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=NIL From: Marko Schuetz Date: 18 May 1999 13:29:32 +0200 Message-ID: <861zgemx9f.fsf@king.ki.informatik.uni-frankfurt.de> Lines: 9 X-Mailer: Gnus v5.5/Emacs 20.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Arrival-Date Wed Feb 10 06:00:01 PST 1999 Last-Modified Wed Mar 17 02:40:01 PST 1999 It is still open. Why?? Is anything wrong with it? Marko To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 5:30: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 44F7115651 for ; Tue, 18 May 1999 05:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA37779; Tue, 18 May 1999 05:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id C9C8715170 for ; Tue, 18 May 1999 05:22:05 -0700 (PDT) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 3.00 #1) id 10jisl-0007gw-00 for FreeBSD-gnats-submit@freebsd.org; Tue, 18 May 1999 14:22:03 +0200 Message-Id: <29569.927030123@axl.noc.iafrica.com> Date: Tue, 18 May 1999 14:22:03 +0200 From: Sheldon Hearn Reply-To: Sheldon Hearn To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11762: [PATCH] Add WWW site to mail/nmh package description Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11762 >Category: ports >Synopsis: [PATCH] Add WWW site to mail/nmh package description >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 May 18 05:30:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Sheldon Hearn >Release: FreeBSD 4.0-CURRENT i386 >Organization: UUNET South Africa >Environment: N/A >Description: The mail/nmh port is missing a package description. >How-To-Repeat: N/A >Fix: The following diff against the existing port will add the nmh web site URL to its package description. This will make it easier for folks to find information on front-ends for nmh: Index: pkg/DESCR =================================================================== RCS file: /home/ncvs/ports/mail/nmh/pkg/DESCR,v retrieving revision 1.1.1.1 diff -u -d -r1.1.1.1 DESCR --- DESCR 1997/06/04 04:39:25 1.1.1.1 +++ DESCR 1999/05/18 12:11:29 @@ -8,3 +8,5 @@ nmh is currently in BETA testing/development. It seems to be generally stable, but things may break from release to release as changes are made. + +WWW: http://www.math.gatech.edu/nmh/ >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 May 18 7:10:24 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EA13214A2D for ; Tue, 18 May 1999 07:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA08417; Tue, 18 May 1999 07:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 18 May 1999 07:10:02 -0700 (PDT) Message-Id: <199905181410.HAA08417@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Chris Piazza Subject: RE: ports/11757: update port: gqmpeg-0.5.2 to 0.5.99 Reply-To: Chris Piazza Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11757; it has been noted by GNATS. From: Chris Piazza To: jim@blues.ghis.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: RE: ports/11757: update port: gqmpeg-0.5.2 to 0.5.99 Date: Tue, 18 May 1999 07:01:30 -0700 (PDT) > Patch updates gqmpeg port from 0.5.2 to 0.5.99 which supposedly fixes alot > of things on non-Linux platforms. Removed patch-ab.. it compiled and ran > cleanly without it. This is a prerelease version. 0.6 will follow shortly. --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 7:11:27 1999 Delivered-To: freebsd-ports@freebsd.org Received: from uswgne6.uswc.uswest.com (uswgne6.uswest.com [204.26.87.74]) by hub.freebsd.org (Postfix) with ESMTP id 21F3314D19 for ; Tue, 18 May 1999 07:10:19 -0700 (PDT) (envelope-from mmeola@ima2wk6.uswc.uswest.com) Received: from egate2.mnet.uswest.com (mailgate.uswc.uswest.com [151.117.138.135]) by uswgne6.uswc.uswest.com (8.8.5/8.8.5) with ESMTP id JAA18046 for ; Tue, 18 May 1999 09:12:07 -0500 (CDT) Received: from smokey.uswc.uswest.com (smokey.uswc.uswest.com [151.119.16.10]) by egate2.mnet.uswest.com (8.8.8/8.8.8) with ESMTP id JAA24945; Tue, 18 May 1999 09:10:16 -0500 (CDT) Received: from ima2wk6.uswc.uswest.com (ima2wk6.uswc.uswest.com [151.116.151.207]) by smokey.uswc.uswest.com (8.6.11/uswc-hub.950320) with ESMTP id IAA10170; Tue, 18 May 1999 08:10:15 -0600 Received: from ima2wk6.uswc.uswest.com (localhost.uswc.uswest.com [127.0.0.1]) by ima2wk6.uswc.uswest.com (8.6.11/uswc-server.950313) with ESMTP id IAA16172; Tue, 18 May 1999 08:09:19 -0600 Message-Id: <199905181409.IAA16172@ima2wk6.uswc.uswest.com> X-Mailer: exmh version 2.0.2 2/24/98 From: Matt Meola To: freebsd-ports@FreeBSD.ORG, mmeola@lookout.uswc.uswest.com Subject: Re: Do you need editors/xemacs{,20} (Re: pending/11618: new port: editors/xemacs21) In-Reply-To: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 18 May 1999 08:09:17 -0600 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I agree with Kris -- editors/xemacs actually ought to be XEmacs v20.4; but it would be nice to have XEmacs 21-b67 brought in. I have found the v21 beta to be quite stable under Solaris... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 7:11:36 1999 Delivered-To: freebsd-ports@freebsd.org Received: from spawn.nectar.cc (gw.nectar.com [204.0.249.101]) by hub.freebsd.org (Postfix) with ESMTP id 861A61569C for ; Tue, 18 May 1999 07:10:53 -0700 (PDT) (envelope-from nectar@nectar.cc) Received: from spawn.nectar.cc (localhost [127.0.0.1]) by spawn.nectar.cc (Postfix) with ESMTP id B09E41F6D; Tue, 18 May 1999 09:10:55 -0500 (CDT) X-Mailer: exmh version 2.0.2 2/24/98 X-Exmh-Isig-CompType: repl X-Exmh-Isig-Folder: mlist/freebsd/ports X-PGP-RSAfprint: 00 F9 E6 A2 C5 4D 0A 76 26 8B 8B 57 73 D0 DE EE X-PGP-RSAkey: http://www.nectar.cc/nectar-rsa.txt X-PGP-DSSfprint: AB2F 8D71 A4F4 467D 352E 8A41 5D79 22E4 71A2 8C73 X-PGP-DHfprint: 2D50 12E5 AB38 60BA AF4B 0778 7242 4460 1C32 F6B1 X-PGP-DH-DSSkey: http://www.nectar.cc/nectar-dh-dss.txt From: Jacques Vidrine To: TAOKA Satoshi Cc: freebsd-ports@FreeBSD.org In-reply-to: <19990518114404B.taoka@infonets.hiroshima-u.ac.jp> References: <199905170012.RAA05550@freefall.freebsd.org> <19990518114404B.taoka@infonets.hiroshima-u.ac.jp> Subject: Re: Do you need editors/xemacs{,20} (Re: pending/11618: new port: editors/xemacs21) Mime-Version: 1.0 Content-Type: text/plain Date: Tue, 18 May 1999 09:10:55 -0500 Message-Id: <19990518141055.B09E41F6D@spawn.nectar.cc> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 18 May 1999 at 11:44, TAOKA Satoshi wrote: > Hi, XEmacs users. > > Do you need editors/xemacs{,20} ? > > I think these are deteted and editors/xemacs21 had better be imported > as editors/xemacs. I recommend that you ask asami@freebsd.org to repository copy ports/editors/xemacs20 to ports/editors/xemacs21, and do your port upgrade there. Only once xemacs21 has been available in the ports tree for a while should you consider removing xemacs20 (which I use). Unless you get other feedback to the contrary, I don't think that there is much call for XEmacs 19 (ports/editors/xemacs) anymore. XEmacs 20 is very mature. Finally, in all cases, please contact the maintainers directly before doing anything. Jacques Vidrine / n@nectar.cc / 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 Tue May 18 7:50:24 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 218F31558B for ; Tue, 18 May 1999 07:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA14386; Tue, 18 May 1999 07:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 18 May 1999 07:50:02 -0700 (PDT) Message-Id: <199905181450.HAA14386@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jacques Vidrine Subject: Re: ports/11756: update port: xchat-0.9.5 to 0.9.6 Reply-To: Jacques Vidrine Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11756; it has been noted by GNATS. From: Jacques Vidrine To: jim@blues.ghis.net Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/11756: update port: xchat-0.9.5 to 0.9.6 Date: Tue, 18 May 1999 09:41:41 -0500 On 18 May 1999 at 18:13, jim@phrantic.phear.net wrote: > Patch updates xchat port from 0.9.5 to 0.9.6 and turns off GNOME panel > support which is compiled in by default with the new version. The correct behavior would be to compile in GNOME and GNOME panel support if GNOME is installed. If that's too much trouble, then the port Makefile should, at a minimum, honor a USE_GNOME make flag, which could safely default to "NO". Jacques Vidrine / n@nectar.cc / 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 Tue May 18 10:14:35 1999 Delivered-To: freebsd-ports@freebsd.org Received: from thelab.hub.org (nat193.13.mpoweredpc.net [142.177.193.13]) by hub.freebsd.org (Postfix) with ESMTP id 7664914EDB; Tue, 18 May 1999 10:14:24 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.9.3/8.9.1) with ESMTP id OAA33813; Tue, 18 May 1999 14:14:27 -0300 (ADT) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Tue, 18 May 1999 14:14:27 -0300 (ADT) From: The Hermit Hacker To: freebsd-ports@freebsd.org Cc: freebsd-stable@freebsd.org Subject: Couldn't open /usr/libexec/ld.so. 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 Just installed 3.2-RELEASE from scratch, have only had time so far to install a new kernel onto her, and just installed netscape from ports: atelier# /usr/local/netscape-4.51/netscape Couldn't open /usr/libexec/ld.so. Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 10:25:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from miris.lcs.mit.edu (miris.lcs.mit.edu [18.111.0.89]) by hub.freebsd.org (Postfix) with ESMTP id 09DF6151C4; Tue, 18 May 1999 10:25:07 -0700 (PDT) (envelope-from beng@lcs.mit.edu) Received: from alnitak (root@miris.lcs.mit.edu [18.111.0.89]) by miris.lcs.mit.edu (8.8.7/8.8.7) with SMTP id NAA03912; Tue, 18 May 1999 13:24:54 -0400 (EDT) From: "Benjamin Greenwald" To: "The Hermit Hacker" , Cc: Subject: RE: Couldn't open /usr/libexec/ld.so. Date: Tue, 18 May 1999 13:25:09 -0400 Message-ID: <000701bea153$61030d20$160e6f12@lcs.mit.edu> X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2377.0 Importance: Normal In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > -----Original Message----- > From: owner-freebsd-stable@freebsd.org > [mailto:owner-freebsd-stable@freebsd.org]On Behalf Of The Hermit Hacker > Sent: Tuesday, May 18, 1999 1:14 PM > To: freebsd-ports@freebsd.org > Cc: freebsd-stable@freebsd.org > Subject: Couldn't open /usr/libexec/ld.so. > > > > Just installed 3.2-RELEASE from scratch, have only had time so far to > install a new kernel onto her, and just installed netscape from ports: > > atelier# /usr/local/netscape-4.51/netscape > Couldn't open /usr/libexec/ld.so. The netscape binary is a.out format. You need to install the FreeBSD a.out compat libraries and dynamic linker/loader as well as the a.out versions of the X libraries. -Ben Greenwald To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 11: 4: 1 1999 Delivered-To: freebsd-ports@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id E940814CBF; Tue, 18 May 1999 11:03:57 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: (from obrien@localhost) by relay.nuxi.com (8.9.3/8.9.3) id LAA53848; Tue, 18 May 1999 11:03:48 -0700 (PDT) (envelope-from obrien) Message-ID: <19990518110348.A53829@nuxi.com> Date: Tue, 18 May 1999 11:03:48 -0700 From: "David O'Brien" To: camel@avias.com, current@FreeBSD.ORG Cc: ports@FreeBSD.ORG Subject: Re: sane-1.00 port Reply-To: obrien@NUXI.com References: <99051816061300.00444@camel.avias.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <99051816061300.00444@camel.avias.com>; from Ilya Naumov on Tue, May 18, 1999 at 04:02:11PM +0400 X-Operating-System: FreeBSD 3.2-BETA Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > i cannot build sane -1.00 ports (ports/graphics/sane-1.00) for a long time > under FreeBSD. i've tried to contact with maintainer of this > port (gary@hotlava.com), but he doesn't respont. could anyone fix it? Amancio Hasty has sent me a fix for this, but I have not had time to test and commit it. You can find it at ftp://relay.nuxi.com/pub/FreeBSD/sane-1.0.1-portball.tar.gz. (any committer that wishes to be me to checking and committing this, please be my guest) -- -- David (obrien@NUXI.com -or- 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 Tue May 18 11:43:57 1999 Delivered-To: freebsd-ports@freebsd.org Received: from dingo.cdrom.com (castles506.castles.com [208.214.165.70]) by hub.freebsd.org (Postfix) with ESMTP id AF3A415352; Tue, 18 May 1999 11:43:37 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (LOCALHOST [127.0.0.1]) by dingo.cdrom.com (8.9.3/8.8.8) with ESMTP id LAA04698; Tue, 18 May 1999 11:40:49 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Message-Id: <199905181840.LAA04698@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: "Benjamin Greenwald" Cc: "The Hermit Hacker" , freebsd-ports@freebsd.org, freebsd-stable@freebsd.org Subject: Re: Couldn't open /usr/libexec/ld.so. In-reply-to: Your message of "Tue, 18 May 1999 13:25:09 EDT." <000701bea153$61030d20$160e6f12@lcs.mit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 18 May 1999 11:40:49 -0700 From: Mike Smith Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > > > Just installed 3.2-RELEASE from scratch, have only had time so far to > > install a new kernel onto her, and just installed netscape from ports: > > > > atelier# /usr/local/netscape-4.51/netscape > > Couldn't open /usr/libexec/ld.so. > > The netscape binary is a.out format. You need to install the FreeBSD a.out > compat libraries and dynamic linker/loader as well as the a.out versions of > the X libraries. There's a bug in the compat22 distball that causes this. We'll update it sometime today (look for new timestamps on the compat22 stuff); the fixed version will be on the CDROMs as well. -- \\ The mind's the standard \\ Mike Smith \\ of the man. \\ msmith@freebsd.org \\ -- Joseph Merrick \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 12: 1:42 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 766) id 9B16514E7C; Tue, 18 May 1999 12:01:41 -0700 (PDT) To: sheldonh@uunet.co.za, mharo@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG From: mharo@FreeBSD.ORG Subject: Re: ports/11759 Message-Id: <19990518190141.9B16514E7C@hub.freebsd.org> Date: Tue, 18 May 1999 12:01:41 -0700 (PDT) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] Add WWW to exim port's package description State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Tue May 18 11:59:41 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 12: 7:21 1999 Delivered-To: freebsd-ports@freebsd.org Received: from netcom14.netcom.com (netcom14.netcom.com [192.100.81.126]) by hub.freebsd.org (Postfix) with ESMTP id D760014F88; Tue, 18 May 1999 12:07:19 -0700 (PDT) (envelope-from hasty@netcom.com) Received: (from hasty@localhost) by netcom14.netcom.com (8.8.5-r-beta/8.8.5/(NETCOM v1.02)) id MAA20742; Tue, 18 May 1999 12:06:54 -0700 (PDT) Date: Tue, 18 May 1999 12:06:54 -0700 (PDT) From: Amancio Hasty Jr Message-Id: <199905181906.MAA20742@netcom14.netcom.com> To: camel@avias.com, current@FreeBSD.ORG, obrien@NUXI.com Subject: Re: sane-1.00 port Cc: ports@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In case that there are any further problems with SANE I am kind-off line due to my ISP (www.dspeed.net) disappearing from the Net :( Time to look for a different ISP provider Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 12:10: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E625414F88 for ; Tue, 18 May 1999 12:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA42200; Tue, 18 May 1999 12:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 18 May 1999 12:10:03 -0700 (PDT) Message-Id: <199905181910.MAA42200@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Bill Fumerola Subject: Re: ports/11753: new port: www/netscape46-navigator Reply-To: Bill Fumerola Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11753; it has been noted by GNATS. From: Bill Fumerola To: sada@FreeBSD.ORG Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/11753: new port: www/netscape46-navigator Date: Tue, 18 May 1999 10:45:14 -0400 (EDT) On 18 May 1999 sada@FreeBSD.ORG wrote: > This is new port of Netscape Navigator v4.6. > The Makefile includes www/netscape46-communicator/Makefile, > and also needs importation of it. > > I'll import this port by myself in few days, > unless any arguments would be presented. These should be repository copied first. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.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 Tue May 18 12:11:36 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mail.rdc1.on.home.com (ha1.rdc1.on.wave.home.com [24.2.9.66]) by hub.freebsd.org (Postfix) with ESMTP id 9A956152D0 for ; Tue, 18 May 1999 12:11:33 -0700 (PDT) (envelope-from routerg@home.com) Received: from home.com ([24.112.8.100]) by mail.rdc1.on.home.com (InterMail v4.00.03 201-229-104) with ESMTP id <19990518191132.NISE1295.mail.rdc1.on.home.com@home.com> for ; Tue, 18 May 1999 12:11:32 -0700 Message-ID: <3741BAD7.B603E7CE@home.com> Date: Tue, 18 May 1999 15:09:11 -0400 From: Joe Mama X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 2.2.8-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: compiling Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am having lots of troubles compiling ports. This is a fresh install of 2.2.8 (was having lots of troubles with 3.2) and everything else is working the way i wan't it. When I make install a port or make from source it always stops with error code 1 then 2. It always has problems finding something in X11/* The thing is i moved X11R6 to X11R6.old, put in another hard drive and mounted it under /usr/X11R6 then moved everything from X11R6.old to X11R6. I do not have a symlink to /usr/X11 either. should i reinstall X? lost To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 12:12: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from stampede.cs.berkeley.edu (stampede.CS.Berkeley.EDU [128.32.45.124]) by hub.freebsd.org (Postfix) with ESMTP id E39201528F for ; Tue, 18 May 1999 12:12:05 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca41-214.ix.netcom.com [209.111.208.214]) by stampede.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id MAA22194; Tue, 18 May 1999 12:12:54 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.2/8.6.9) id MAA79121; Tue, 18 May 1999 12:10:43 -0700 (PDT) Date: Tue, 18 May 1999 12:10:43 -0700 (PDT) Message-Id: <199905181910.MAA79121@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: n@nectar.cc Cc: taoka@infonets.hiroshima-u.ac.jp, freebsd-ports@FreeBSD.org In-reply-to: <19990518141055.B09E41F6D@spawn.nectar.cc> (message from Jacques Vidrine on Tue, 18 May 1999 09:10:55 -0500) Subject: Re: Do you need editors/xemacs{,20} (Re: pending/11618: new port: editors/xemacs21) From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) References: <199905170012.RAA05550@freefall.freebsd.org> <19990518114404B.taoka@infonets.hiroshima-u.ac.jp> <19990518141055.B09E41F6D@spawn.nectar.cc> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Jacques Vidrine * I recommend that you ask asami@freebsd.org to repository copy I was about to say this myself. :) * ports/editors/xemacs20 to ports/editors/xemacs21, and do your * port upgrade there. Only once xemacs21 has been available in * the ports tree for a while should you consider removing xemacs20 * (which I use). Ok, Taoka-san, please yell when you're ready, and I'll do the copy from xemacs20, which is much closer to xemacs21 than xemacs(19). xemacs has a much richer history, but unfortunately it wasn't repository copied when xemacs20 was brought in -- so that part will be lost forever when it's removed. -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 12:20: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5CF3214F72 for ; Tue, 18 May 1999 12:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA43037; Tue, 18 May 1999 12:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 18 May 1999 12:20:04 -0700 (PDT) Message-Id: <199905181920.MAA43037@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Subject: Re: ports/11752: new port: www/netscape46-communicator Reply-To: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11752; it has been noted by GNATS. From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) To: sada@FreeBSD.ORG Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/11752: new port: www/netscape46-communicator Date: Tue, 18 May 1999 12:12:48 -0700 (PDT) * I'll import this port by myself in few days, Don't forget to ask for a repository copy from netscape45-* before you commit them. :) By the way, can netscape45-* be removed after you commit these? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 12:30:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from cfcl.com (unknown [205.158.144.193]) by hub.freebsd.org (Postfix) with ESMTP id DA253153C3 for ; Tue, 18 May 1999 12:30:09 -0700 (PDT) (envelope-from rdm@cfcl.com) X-Sent-To: Received: from Untitled (cerberus [205.158.144.205]) by cfcl.com (8.9.2/8.9.2) with ESMTP id MAA21398 for ; Tue, 18 May 1999 12:33:23 -0700 (PDT) Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Message-Id: Date: Tue, 18 May 1999 12:17:21 -0700 To: ports@FreeBSD.ORG From: Rich Morin Subject: INDEX file questions Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Can someone point me to the format definition for the INDEX file? I've looked around a bit and can't find it. In particular, I'm a bit confused by what seem to be dependency fields (8 & 9): 1 saoimage-1.22 2 /usr/ports/astro/saoimage 3 /usr/X11R6 4 Smithsonian Astrophysical Observatory image utility for X 5 /usr/ports/astro/saoimage/pkg/DESCR 6 giffunip@asme.org 7 astro 8 XFree86-3.3.3.1 9 XFree86-3.3.3.1 10 ??? Looking in the Makefile for astro/saoimage, I don't see any dependency information, save that USE_X_PREFIX is defined (implicitly requiring ${PORTSDIR}/x11/XFree86). Is someone (Satoshi?) hand-editing these fields, or what? -r -- Rich Morin: rdm@cfcl.com, +1 650-873-7841, http://www.ptf.com/~rdm Prime Time Freeware: info@ptf.com, +1 408-433-9662, http://www.ptf.com MacPerl: http://www.macperl.com, http://www.ptf.com/ptf/products/MPPE MkLinux: http://www.mklinux.apple.com, http://www.ptf.com/ptf/products/MKLP To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 12:35:23 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 766) id 9BE3E1581D; Tue, 18 May 1999 12:35:20 -0700 (PDT) To: sheldonh@uunet.co.za, mharo@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG From: mharo@FreeBSD.ORG Subject: Re: ports/11762 Message-Id: <19990518193520.9BE3E1581D@hub.freebsd.org> Date: Tue, 18 May 1999 12:35:20 -0700 (PDT) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] Add WWW site to mail/nmh package description State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Tue May 18 12:35:03 PDT 1999 State-Changed-Why: Committed, Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 12:50:40 1999 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 83FFD14D6D for ; Tue, 18 May 1999 12:50:34 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.1a/8.9.0) with ESMTP id OAA20588; Tue, 18 May 1999 14:50:24 -0500 (CDT) Date: Tue, 18 May 1999 14:50:24 -0500 (CDT) From: Steve Price To: Rich Morin Cc: ports@FreeBSD.ORG Subject: Re: INDEX file questions 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 On Tue, 18 May 1999, Rich Morin wrote: # Can someone point me to the format definition for the INDEX file? Take a look at /usr/ports/Makefile and /usr/ports/Mk/bsd.port.mk. In particular look at the describe target in bsd.port.mk. # I've looked around a bit and can't find it. In particular, I'm # a bit confused by what seem to be dependency fields (8 & 9): # # 1 saoimage-1.22 # 2 /usr/ports/astro/saoimage # 3 /usr/X11R6 # 4 Smithsonian Astrophysical Observatory image utility for X # 5 /usr/ports/astro/saoimage/pkg/DESCR # 6 giffunip@asme.org # 7 astro # 8 XFree86-3.3.3.1 a list of build dependencies # 9 XFree86-3.3.3.1 a list of run dependencies # 10 ??? the main WWW distribution site for the port # Looking in the Makefile for astro/saoimage, I don't see any dependency # information, save that USE_X_PREFIX is defined (implicitly requiring # ${PORTSDIR}/x11/XFree86). Is someone (Satoshi?) hand-editing these # fields, or what? Nope. It is all done by the Makefiles, bsd.port.mk, and a perl script (ports/Tools/make_index). XFree86 shows up because in bsd.port.mk USE_X_PREFIX -> USE_XLIB -> LIB_DEPENDS+=X11.6:${PORTSDIR}/x11/XFree86 A LIB_DEPENDS is both a build and a runtime dependency. Clear as mud? :) # -r # -- # Rich Morin: rdm@cfcl.com, +1 650-873-7841, http://www.ptf.com/~rdm # Prime Time Freeware: info@ptf.com, +1 408-433-9662, http://www.ptf.com # MacPerl: http://www.macperl.com, http://www.ptf.com/ptf/products/MPPE # MkLinux: http://www.mklinux.apple.com, http://www.ptf.com/ptf/products/MKLP To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 12:54: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from jaguar.ir.miami.edu (jaguar.ir.miami.edu [129.171.32.10]) by hub.freebsd.org (Postfix) with ESMTP id DD9BE1539D for ; Tue, 18 May 1999 12:53:58 -0700 (PDT) (envelope-from marcus@miami.edu) Received: from jaguar.ir.miami.edu ("port 2644"@jaguar.ir.miami.edu [129.171.32.10]) by jaguar.ir.miami.edu (PMDF V5.2-29 #30976) with ESMTP id <0FBY00B8U1XX7H@jaguar.ir.miami.edu> for ports@freebsd.org; Tue, 18 May 1999 15:53:57 -0400 (EDT) Date: Tue, 18 May 1999 15:53:57 -0400 (EDT) From: "Joe \"Marcus\" Clarke" Subject: Re: GXSNMP In-reply-to: To: Terje Elde Cc: ports@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 I work on the network management team at Cisco, and this program looks quite cool. I'm going to work on a port for it. I'll let you know when I have something. I know my team would really be into using it. Joe Clarke On Tue, 18 May 1999, Terje Elde wrote: > > Hi all, > > There's a really nice graphical SNMP management prog under development > (see www.gxsnmp.org). Anyone planning a port for it? > > > Friendly greetings, > Terje Elde > > "One world, one web, one program" - Microsoft Promo ad. > "Ein Volk, Ein Reich, Ein Fuhrer" - Adolf Hitler > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 13:10: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CFDC514ED9 for ; Tue, 18 May 1999 13:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA49241; Tue, 18 May 1999 13:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 18 May 1999 13:10:03 -0700 (PDT) Message-Id: <199905182010.NAA49241@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: sada@rr.IIJ4U.OR.JP (SADA Kenji) Subject: Re: ports/11752: new port: www/netscape46-communicator Reply-To: sada@rr.IIJ4U.OR.JP (SADA Kenji) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11752; it has been noted by GNATS. From: sada@rr.IIJ4U.OR.JP (SADA Kenji) To: asami@FreeBSD.ORG Cc: thepish@FreeBSD.ORG, sada@FreeBSD.ORG, FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/11752: new port: www/netscape46-communicator Date: 19 May 1999 05:07:38 +0900 This is sada from Nagoya. >> * I'll import this port by myself in few days, >> >> Don't forget to ask for a repository copy from netscape45-* before you >> commit them. :) Certainly, please do it. Thanks too > billf >> By the way, can netscape45-* be removed after you commit these? Hm, if netscape46-* are treated as just upgrade of netscape45-*, who should be a maintainer of them ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 13:10:53 1999 Delivered-To: freebsd-ports@freebsd.org Received: from web1002.mail.yahoo.com (web1002.mail.yahoo.com [128.11.23.92]) by hub.freebsd.org (Postfix) with SMTP id 8080914ED9 for ; Tue, 18 May 1999 13:10:48 -0700 (PDT) (envelope-from philipdesign2000@yahoo.it) Message-ID: <19990518201047.21405.rocketmail@web1002.mail.yahoo.com> Received: from [194.243.133.118] by web1002.mail.yahoo.com; Tue, 18 May 1999 13:10:47 PDT Date: Tue, 18 May 1999 13:10:47 -0700 (PDT) From: philip trix Subject: archicad To: ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org please, please where is the crack for "ArchiCAD6 (windows)" Thanking in anticipation philipdesign2000@yahoo.it _________________________________________________________ DO YOU YAHOO!? Il tuo indirizzo gratis e per sempre @yahoo.it su http://mail.yahoo.it To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 13:50: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6520A14E2F for ; Tue, 18 May 1999 13:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA53313; Tue, 18 May 1999 13:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from henoch.cc.fh-lippe.de (henoch.cc.fh-lippe.de [193.16.112.72]) by hub.freebsd.org (Postfix) with ESMTP id AC03714DD5 for ; Tue, 18 May 1999 13:43:06 -0700 (PDT) (envelope-from lkoeller@cc.fh-lippe.de) Received: from spock.cc.fh-lippe.de([193.16.118.120]) (8309 bytes) by henoch.cc.fh-lippe.de via sendmail with P:smtp/R:inet_hosts/T:smtp (sender: ) id for ; Tue, 18 May 1999 22:43:05 +0200 (MET DST) (Smail-3.2.0.101 1997-Dec-17 #3 built 1998-Feb-3) Received: from cc.fh-lippe.de by spock.cc.fh-lippe.de with smtp (Smail3.1.29.1 #2) id m10jqgf-00071sC; Tue, 18 May 99 22:42 MET DST Received: (from lkoeller@localhost) by cc.fh-lippe.de (8.9.2/8.9.1) id VAA38009; Tue, 18 May 1999 21:42:31 +0200 (CEST) (envelope-from lkoeller) Message-Id: <199905181942.VAA38009@cc.fh-lippe.de> Date: Tue, 18 May 1999 21:42:31 +0200 (CEST) From: lkoeller@cc.fh-lippe.de Reply-To: lkoeller@cc.fh-lippe.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11768: Fixes for xbanner-1.31 port in categorie x11 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11768 >Category: ports >Synopsis: Fixes some problems and smother compiling/configuring >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 May 18 13:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Lars Koeller >Release: FreeBSD 3.1-RELEASE i386 >Organization: Fachhochschule Lippe, Lemgo, Germany >Environment: FreeBSD 3.1-RELEASE i386 >Description: Following fixes for xbanner-1.31 port: - installing in libexec directory isn't useful - app-defaults file could only be found when XAPPLRESDIR enviroment variable is set -> patch in sourcefile is needed - some compiler warnings and gets usage is fixed - wrong usage of isnumber macro fixed >How-To-Repeat: Make the port and try and look ;-) >Fix: Apply the appended patch to the port diff -abcr xbanner.org/Makefile xbanner/Makefile *** xbanner.org/Makefile Tue Feb 2 04:27:50 1999 --- xbanner/Makefile Tue May 18 20:16:33 1999 *************** *** 10,15 **** --- 10,16 ---- PKGNAME= xbanner-1.31 CATEGORIES= x11 MASTER_SITES= ftp://physics.fullerton.edu/pub/Linux/XBanner/ \ + ftp://ftp.uni-bielefeld.de/pub/systems/FreeBSD/lkoeller/ \ ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR=X11/xutils *************** *** 19,24 **** --- 20,30 ---- USE_X_PREFIX= yes #USE_IMAKE= yes + + post-patch: + ${MV} ${WRKSRC}/xres.c ${WRKSRC}/xres.c.input + ${SED} "s:%%X11BASE%%:${X11BASE}:" ${WRKSRC}/xres.c.input > ${WRKSRC}/xres.c + ${RM} -f ${WRKSRC}/xres.c.input post-install: ${INSTALL_DATA} ${WRKSRC}/samples/XBanner.ad \ diff -abcr xbanner.org/patches/patch-aa xbanner/patches/patch-aa *** xbanner.org/patches/patch-aa Wed Jan 20 09:18:57 1999 --- xbanner/patches/patch-aa Tue May 18 21:22:42 1999 *************** *** 1,5 **** ! *** Makefile.orig Mon May 12 10:55:59 1997 ! --- Makefile Tue Jan 19 22:27:09 1999 *************** *** 6,30 **** --- 1,5 ---- ! *** Makefile.orig Mon May 12 17:55:59 1997 ! --- Makefile Tue May 18 21:22:21 1999 *************** *** 6,30 **** *************** *** 40,46 **** GZIP =gzip # Binary directory for make install ! ! BINDIR =$(PREFIX)/libexec # Library directories for Linux ! XLIBDIR =$(X11BASE)/lib --- 40,46 ---- GZIP =gzip # Binary directory for make install ! ! BINDIR =$(PREFIX)/bin # Library directories for Linux ! XLIBDIR =$(X11BASE)/lib *************** *** 88,110 **** all: xbanner freetemp random_effect xb_check *************** ! *** 71,79 **** $(CC) $(CFLAGS) -o xb_check xb_check.o ! install: freetemp xbanner xb_check ! $(INSTALL) --strip --mode "0755" --owner root --group bin freetemp $(BINDIR)/freetemp ! $(INSTALL) --strip --mode "0755" --owner root --group bin xbanner $(BINDIR)/xbanner ! $(INSTALL) --strip --mode "0755" --owner root --group bin xb_check $(BINDIR)/xb_check strip: exe strip xbanner freetemp xb_check random_effect ! --- 71,79 ---- $(CC) $(CFLAGS) -o xb_check xb_check.o ! install: freetemp xbanner xb_check ! $(INSTALL) -cs -g bin -m "0755" -o root freetemp $(BINDIR)/freetemp ! $(INSTALL) -cs -g bin -m "0755" -o root xbanner $(BINDIR)/xbanner ! $(INSTALL) -cs -g bin -m "0755" -o root xb_check $(BINDIR)/xb_check strip: exe strip xbanner freetemp xb_check random_effect --- 88,113 ---- all: xbanner freetemp random_effect xb_check *************** ! *** 70,79 **** ! xb_check: xb_check.o $(CC) $(CFLAGS) -o xb_check xb_check.o ! ! install: freetemp xbanner xb_check ! $(INSTALL) --strip --mode "0755" --owner root --group bin freetemp $(BINDIR)/freetemp ! $(INSTALL) --strip --mode "0755" --owner root --group bin xbanner $(BINDIR)/xbanner ! $(INSTALL) --strip --mode "0755" --owner root --group bin xb_check $(BINDIR)/xb_check strip: exe strip xbanner freetemp xb_check random_effect ! --- 70,80 ---- ! xb_check: xb_check.o $(CC) $(CFLAGS) -o xb_check xb_check.o ! ! install: freetemp xbanner xb_check random_effect ! $(INSTALL) -cs -g bin -m "0755" -o root freetemp $(BINDIR)/freetemp ! $(INSTALL) -cs -g bin -m "0755" -o root xbanner $(BINDIR)/xbanner ! $(INSTALL) -cs -g bin -m "0755" -o root xb_check $(BINDIR)/xb_check + ! $(INSTALL) -cs -g bin -m "0755" -o root random_effect $(BINDIR)/random_effect strip: exe strip xbanner freetemp xb_check random_effect diff -abcr xbanner.org/patches/patch-ab xbanner/patches/patch-ab *** xbanner.org/patches/patch-ab Wed Jan 20 09:18:57 1999 --- xbanner/patches/patch-ab Tue May 18 20:51:41 1999 *************** *** 1,5 **** ! *** xb_check.c.orig Mon Jan 18 23:27:31 1999 ! --- xb_check.c Mon Jan 18 23:31:08 1999 *************** *** 145,151 **** } --- 1,5 ---- ! *** xb_check.c.orig Mon May 12 17:55:59 1997 ! --- xb_check.c Tue May 18 20:51:35 1999 *************** *** 145,151 **** } *************** *** 17,19 **** --- 17,70 ---- { if(atoi(s)==0 && *s!='0') return 0; + *************** + *** 303,309 **** + } + } + + ! while(gets(line)!=NULL) + { + if(line[0]=='!') + continue; + --- 303,309 ---- + } + } + + ! while(fgets(line, LNLEN, stdin)!=NULL) + { + if(line[0]=='!') + continue; + *************** + *** 363,369 **** + printf("Valid resource name with unknown program name:\n%s\n",line); + if(val[0]=='\0') + printf("No value in line containing valid resource name:\n%s\n",line); + ! if(!isnumber(val)) + printf("Value in line requiring a numerical value is not numerical:\n%s\n",line); + } + else + --- 363,369 ---- + printf("Valid resource name with unknown program name:\n%s\n",line); + if(val[0]=='\0') + printf("No value in line containing valid resource name:\n%s\n",line); + ! if(!isnumb(val)) + printf("Value in line requiring a numerical value is not numerical:\n%s\n",line); + } + else + *************** + *** 373,379 **** + printf("Valid resource class name with unknown program name:\n%s\n",line); + if(val[0]=='\0') + printf("No value in line containing valid resource class name:\n%s\n",line); + ! if(!isnumber(val)) + printf("Value in line requiring a numerical value is not numerical:\n%s\n",line); + } + break; + --- 373,379 ---- + printf("Valid resource class name with unknown program name:\n%s\n",line); + if(val[0]=='\0') + printf("No value in line containing valid resource class name:\n%s\n",line); + ! if(!isnumb(val)) + printf("Value in line requiring a numerical value is not numerical:\n%s\n",line); + } + break; Only in xbanner/patches: patch-ac Only in xbanner/patches: patch-ad diff -abcr xbanner.org/pkg/PLIST xbanner/pkg/PLIST *** xbanner.org/pkg/PLIST Wed Jan 20 09:18:57 1999 --- xbanner/pkg/PLIST Tue May 18 21:26:41 1999 *************** *** 1,6 **** ! libexec/freetemp ! libexec/xbanner ! libexec/xb_check share/doc/XBanner/COPYING-2.0 share/doc/XBanner/Changes.txt share/doc/XBanner/Credits.txt --- 1,8 ---- ! bin/freetemp ! bin/xbanner ! bin/xb_check ! bin/random_effect ! lib/X11/app-defaults/XBanner share/doc/XBanner/COPYING-2.0 share/doc/XBanner/Changes.txt share/doc/XBanner/Credits.txt *************** *** 23,25 **** --- 25,29 ---- share/examples/XBanner/FgGrad_Idea_2 share/examples/XBanner/Just_an_Idea share/examples/XBanner/My_Home_Setup.tar + @dirrm share/doc/XBanner + @dirrm share/examples/XBanner >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 May 18 13:50:38 1999 Delivered-To: freebsd-ports@freebsd.org Received: from picnic.mat.net (picnic.mat.net [206.246.122.133]) by hub.freebsd.org (Postfix) with ESMTP id C678A14DD5 for ; Tue, 18 May 1999 13:50:20 -0700 (PDT) (envelope-from chuckr@picnic.mat.net) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.9.3/8.8.5) with ESMTP id QAA63954; Tue, 18 May 1999 16:50:32 -0400 (EDT) Date: Tue, 18 May 1999 16:50:32 -0400 (EDT) From: Chuck Robey To: philip trix Cc: ports@FreeBSD.ORG Subject: Re: archicad In-Reply-To: <19990518201047.21405.rocketmail@web1002.mail.yahoo.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 On Tue, 18 May 1999, philip trix wrote: > please, please > > where is the crack for "ArchiCAD6 (windows)" I think you might be confused as to the purpose of this list, which is to discuss topics dealing with the FreeBSD ports collection. I'm not a game player .... your request for a "crack" for the program above, if it's dealing with stealing the program, you'll find a cool reception here. Most of us here are a pretty ethical bunch (at least in general). If it's dealing with breaking it in some way (if it's a game, breaking it so that you can win it), well, it looks like you're talking about a Windows program. You'll not find much interest in Windows programs here either. If I've misjudged you, I'm sorry, but I think you might be well advised to look elsewhere. ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@picnic.mat.net | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run picnic (FreeBSD-current) (301) 220-2114 | and jaunt (Solaris7). ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 14: 0: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 16EE614E87 for ; Tue, 18 May 1999 14:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA54413; Tue, 18 May 1999 14:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 18 May 1999 14:00:02 -0700 (PDT) Message-Id: <199905182100.OAA54413@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Subject: Re: ports/11752: new port: www/netscape46-communicator Reply-To: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11752; it has been noted by GNATS. From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) To: sada@rr.IIJ4U.OR.JP Cc: thepish@FreeBSD.ORG, sada@FreeBSD.ORG, FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/11752: new port: www/netscape46-communicator Date: Tue, 18 May 1999 13:53:12 -0700 (PDT) * This is sada from Nagoya. This is asami from Santa Clara (originally from Nagoya :). * Certainly, please do it. Ok, done. * Hm, if netscape46-* are treated as just upgrade of netscape45-*, * who should be a maintainer of them ? n45-n says "ports@freebsd.org" so go ahead and claim that one. n45-c is maintained by thepish so wait for his response for a while before changing the maintainer line (and possibly deleting n45-c). Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 14: 7:19 1999 Delivered-To: freebsd-ports@freebsd.org Received: from bantu.cl.msu.edu (bantu.cl.msu.edu [35.8.3.18]) by hub.freebsd.org (Postfix) with ESMTP id 41EF814FAE; Tue, 18 May 1999 14:07:11 -0700 (PDT) (envelope-from dervish@bantu.cl.msu.edu) Received: (from dervish@localhost) by bantu.cl.msu.edu (8.9.3/8.9.3) id RAA65744; Tue, 18 May 1999 17:04:19 -0400 (EDT) (envelope-from dervish) Date: Tue, 18 May 1999 17:04:19 -0400 From: bush doctor To: Satoshi - Ports Wraith - Asami Cc: ports@FreeBSD.ORG Subject: How does one claim a port? Message-ID: <19990518170419.A65722@bantu.cl.msu.edu> References: <199905182100.OAA54413@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <199905182100.OAA54413@freefall.freebsd.org>; from Satoshi - Ports Wraith - Asami on Tue, May 18, 1999 at 02:00:02PM -0700 X-Operating-System: FreeBSD 4.0-CURRENT i386 X-PGP-Fingerprint: 35 95 F8 63 DA 5B 32 51 8F A9 AC 3C B4 74 F3 BA WWW-Home-Page: http://www.msu.edu/~ikhala Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Quoting Satoshi - Ports Wraith - Asami (asami@FreeBSD.ORG): > The following reply was made to PR ports/11752; it has been noted by GNATS. > > From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) > To: sada@rr.IIJ4U.OR.JP > Cc: thepish@FreeBSD.ORG, sada@FreeBSD.ORG, > FreeBSD-gnats-submit@FreeBSD.ORG > Subject: Re: ports/11752: new port: www/netscape46-communicator > Date: Tue, 18 May 1999 13:53:12 -0700 (PDT) > > * This is sada from Nagoya. > > This is asami from Santa Clara (originally from Nagoya :). > > * Certainly, please do it. > > Ok, done. > > * Hm, if netscape46-* are treated as just upgrade of netscape45-*, > * who should be a maintainer of them ? > > n45-n says "ports@freebsd.org" so go ahead and claim that one. n45-c > is maintained by thepish so wait for his response for a while before > changing the maintainer line (and possibly deleting n45-c). How does one claim a port whose Maintainer is "ports@freebsd.org"? I now in the handbook it tells how to make a port, but I was never clear on how to take on an existing port. > > Satoshi > #;^) -- So ya want ta here da roots? Dem that feels it knows it ... bush doctor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 14:12:42 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mailhost.waddell.com (bsdbox.waddell.com [208.132.88.26]) by hub.freebsd.org (Postfix) with ESMTP id 2692F14FB3; Tue, 18 May 1999 14:12:35 -0700 (PDT) (envelope-from rarnold@waddell.com) Received: from rob (rob.waddell.com [10.1.2.11]) by mailhost.waddell.com (8.9.1a/8.9.1a) with SMTP id QAA26325; Tue, 18 May 1999 16:14:57 -0500 (CDT) Message-Id: <4.1.19990518144602.009ff7a0@mailhost.waddell.com> X-Sender: rob@mailhost.waddell.com X-Mailer: QUALCOMM Windows Eudora Pro Version 4.1 Date: Tue, 18 May 1999 16:11:28 -0500 To: freebsd-questions@freebsd.org From: Rob Arnold Subject: ORBit 0.4.3 port Cc: freebsd-ports@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, all, FreeBSD 2.2.8, upgrade kit installed, XFree86 3.3.3.1, Enlightenment 0.15 running. Pentium II/233, 128 MB RAM, SCSI drives. Compiling ORBit 0.4.3, on my way to GNOME. gmake proceeds normally until the orb dirctory, then barfs: gmake[3]: Leaving directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/src/idl-compiler' Making all in orb gmake[3]: Entering directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/src/orb' ../../src/idl-compiler/orbit-idl --noskels ../../src/daemons/interface_repository/interface_repository.idl gmake[3]: *** [interface_repository.h] Bus error (core dumped) gmake[3]: Leaving directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/src/orb' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3/src' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/devel/ORBit/work/ORBit-0.4.3' gmake: *** [all-recursive-am] Error 2 *** Error code 2 Stop. *** Error code 1 Stop. *** Error code 1 Stop. ========== This has been the case for a while, starting with ORBit 0.4.0. Is this an aout/elf problem? I'm not even sure which Makefile to look at here. Rob Arnold Waddell & Reed, Inc. NIC Handle: RA288 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 14:13:54 1999 Delivered-To: freebsd-ports@freebsd.org Received: from hp9000.chc-chimes.com (unknown [206.67.97.84]) by hub.freebsd.org (Postfix) with ESMTP id 7630B150DC; Tue, 18 May 1999 14:12:03 -0700 (PDT) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA228126638; Tue, 18 May 1999 12:57:19 -0400 Date: Tue, 18 May 1999 12:57:18 -0400 (EDT) From: Bill Fumerola To: bush doctor Cc: Satoshi - Ports Wraith - Asami , ports@FreeBSD.ORG Subject: Re: How does one claim a port? In-Reply-To: <19990518170419.A65722@bantu.cl.msu.edu> 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 Tue, 18 May 1999, bush doctor wrote: > How does one claim a port whose Maintainer is "ports@freebsd.org"? > I now in the handbook it tells how to make a port, but I was never clear > on how to take on an existing port. Next time the port needs updating, send an update that changes the version and the MAINTAINER as well. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.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 Tue May 18 14:20: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E5AE315099 for ; Tue, 18 May 1999 14:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA56107; Tue, 18 May 1999 14:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 36B8714F3F; Tue, 18 May 1999 14:10:46 -0700 (PDT) Message-Id: <19990518211046.36B8714F3F@hub.freebsd.org> Date: Tue, 18 May 1999 14:10:46 -0700 (PDT) From: rv@fore.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11769: please update cons port with latest changes Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11769 >Category: ports >Synopsis: please update cons port with latest changes >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 May 18 14:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Rajesh Vaidheeswarran >Release: 4.0-current >Organization: >Environment: FreeBSD iceberg.eng.fore.com 4.0-CURRENT FreeBSD 4.0-CURRENT #0: Tue May 11 14:52:04 EDT 1999 bash@iceberg.eng.fore.com:/usr/src/sys/compile/FB i386 >Description: I have updated the version of cons, and would like to submit a patch to the FreeBSD maintainers to update the cons ports files. >How-To-Repeat: >Fix: Here is the patch: Index: Makefile =================================================================== RCS file: /usr2/rv/cvsroot/ports/cons/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 1999/04/20 22:24:05 1.2 +++ Makefile 1999/05/18 21:07:03 @@ -1,12 +1,12 @@ # New ports collection makefile for: cons -# Version required: 1.6a1 -# Date created: 11 December 1998 +# Version required: 1.6a2 +# Date created: May 18th 1999 # Whom: rv@fore.com # # $Id: Makefile,v 1.2 1999/04/20 22:24:05 rv Exp $ # -DISTNAME= cons-1.6a1 +DISTNAME= cons-1.6a2 PKGNAME= cons CATEGORIES= devel MASTER_SITES= http://www.dsmit.com/cons/ \ @@ -19,11 +19,10 @@ USE_PERL5= yes NO_BUILD= yes -PLIST_SUB= CONS_VER=1.6a1 +PLIST_SUB= CONS_VER=1.6a2 MAN1= cons.1 -DOCS= CHANGES COPYRIGHT INSTALL MANIFEST README RELEASE cons.html \ - cons.pod +DOCS= CHANGES COPYRIGHT INSTALL MANIFEST README RELEASE cons.html do-install: ${INSTALL_SCRIPT} ${WRKSRC}/cons ${PREFIX}/bin/cons Index: files/md5 =================================================================== RCS file: /usr2/rv/cvsroot/ports/cons/files/md5,v retrieving revision 1.2 diff -u -r1.2 md5 --- files/md5 1999/04/20 22:24:06 1.2 +++ files/md5 1999/05/18 21:07:03 @@ -1 +1 @@ -MD5 (cons-1.6a1.tgz) = 71f1569efd6aa11b423c120711de183f +MD5 (cons-1.6a2.tgz) = 84445e709097ddcad63818983a248814 Index: pkg/MESSAGE =================================================================== RCS file: /usr2/rv/cvsroot/ports/cons/pkg/MESSAGE,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 MESSAGE --- pkg/MESSAGE 1999/04/20 13:56:01 1.1.1.1 +++ pkg/MESSAGE 1999/05/18 21:07:03 @@ -1,4 +1,4 @@ -Copyright (c) 1996-1998 FORE Systems, Inc. All rights reserved. +Copyright (c) 1996-1999 FORE Systems, Inc. All rights reserved. Permission to use, copy, modify and distribute this software and its documentation for any purpose and without fee is hereby granted, Index: pkg/PLIST =================================================================== RCS file: /usr2/rv/cvsroot/ports/cons/pkg/PLIST,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 PLIST --- pkg/PLIST 1999/04/20 13:56:01 1.1.1.1 +++ pkg/PLIST 1999/05/18 21:07:03 @@ -6,5 +6,4 @@ share/doc/cons-%%CONS_VER%%/README share/doc/cons-%%CONS_VER%%/RELEASE share/doc/cons-%%CONS_VER%%/cons.html -share/doc/cons-%%CONS_VER%%/cons.pod @dirrm share/doc/cons-%%CONS_VER%% >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 May 18 14:54:29 1999 Delivered-To: freebsd-ports@freebsd.org Received: from shell13.ba.best.com (shell13.ba.best.com [206.184.139.144]) by hub.freebsd.org (Postfix) with ESMTP id BF9451532A for ; Tue, 18 May 1999 14:54:23 -0700 (PDT) (envelope-from rone@ennui.org) Received: (from rone@localhost) by shell13.ba.best.com (8.9.3/8.9.2/best.sh) id OAA19315 for ports@freebsd.org; Tue, 18 May 1999 14:54:21 -0700 (PDT) From: "gil i. pollas" Message-Id: <199905182154.OAA19315@shell13.ba.best.com> Subject: Re: archicad In-Reply-To: <19990518201047.21405.rocketmail@web1002.mail.yahoo.com> from philip trix at "May 18, 99 01:10:47 pm" To: ports@freebsd.org Date: Tue, 18 May 1999 14:54:21 -0700 (PDT) X-URL: http://ennui.org/rone/ X-Mailer: ELM [version 2.4ME+ PL38 (25)] 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 philip trix writes: please, please where is the crack for "ArchiCAD6 (windows)" Poor soul, smoked all the crack and now wants to know where it is... rone -- el mercado on the corner has grande bags of clues rilly cheapo. - Patrick J. Finerty To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 15: 0: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 12A6A1538E for ; Tue, 18 May 1999 15:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA60155; Tue, 18 May 1999 15:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 5953015079; Tue, 18 May 1999 14:51:00 -0700 (PDT) Message-Id: <19990518215100.5953015079@hub.freebsd.org> Date: Tue, 18 May 1999 14:51:00 -0700 (PDT) From: rv@fore.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11770: please update cons port with latest changes Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11770 >Category: ports >Synopsis: please update cons port with latest changes >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 May 18 15:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Rajesh Vaidheeswarran >Release: 4.0-current >Organization: >Environment: FreeBSD iceberg.eng.fore.com 4.0-CURRENT FreeBSD 4.0-CURRENT #0: Tue May 11 14:52:04 EDT 1999 bash@iceberg.eng.fore.com:/usr/src/sys/compile/FB i386 >Description: There was a minor change to the cons distribution that required a new md5 file. Please update the cons port with the new md5 file. >How-To-Repeat: >Fix: Here is the patch: Index: md5 =================================================================== RCS file: /usr2/rv/cvsroot/ports/cons/files/md5,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- md5 1999/05/18 21:07:45 1.3 +++ md5 1999/05/18 21:48:47 1.4 @@ -1 +1 @@ -MD5 (cons-1.6a2.tgz) = 84445e709097ddcad63818983a248814 +MD5 (cons-1.6a2.tgz) = 71983fa53cd4ec8590664c383e9b3e36 >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 May 18 15:26: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from polio.ecst.csuchico.edu (polio.ecst.csuchico.edu [132.241.4.13]) by hub.freebsd.org (Postfix) with SMTP id 5E0BF15006 for ; Tue, 18 May 1999 15:26:06 -0700 (PDT) (envelope-from manek@ecst.csuchico.edu) Received: (qmail 19820 invoked by uid 21024); 18 May 1999 15:26:06 -0700 Date: Tue, 18 May 1999 15:26:05 -0700 (PDT) From: "Sameer R. Manek" To: freebsd-ports@freebsd.org Subject: gopher's 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 Can someone please fix this? and update the md5 checksum...guess nbody has installed gopher in a while :) ===> 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 want to override this check, type "make NO_CHECKSUM=yes [other args]". *** Error code 1 -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Sameer Manek manek@ecst.csuchico.edu "They that will sacrifice liberty in exchange for temporary safety deserve neither liberty or safety." -Ben Franklin -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 15:39:40 1999 Delivered-To: freebsd-ports@freebsd.org Received: from min.net (min.net [208.222.210.19]) by hub.freebsd.org (Postfix) with ESMTP id C349214F5E for ; Tue, 18 May 1999 15:39:31 -0700 (PDT) (envelope-from aling@alum.mit.edu) Received: from localhost (outpost.cc.nih.gov [137.187.245.138]) by min.net (8.9.3/8.9.3) with SMTP id SAA26933; Tue, 18 May 1999 18:39:30 -0400 (EDT) Message-Id: <199905182239.SAA26933@min.net> From: "A. Ling" To: "FreeBSD Ports" Cc: "Aling" Date: Tue, 18 May 99 18:39:27 -0400 Reply-To: "A. Ling" X-Mailer: Alexander Ling's Registered PMMail 1.53 For OS/2 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Trouble making certificate after successful make apache13-php/SSL Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Please redirect me if I should post instead to -questions, or somewhere else, and please cc me as I usually just read -stable. Has anyone else seen this? The make (of apache13-php, with SSL enabled) proceeded without problems, and I don't see anything in the archives about it. Plain-vanilla 3.1R with ports upgrade package installed: apache13-php3> make certificate TYPE=test ===> Creating Test Certificate for Server SSL Certificate Generation Utility (mkcert.sh) Copyright (c) 1998 Ralf S. Engelschall, All Rights Reserved. + finding random files on your platform + building ca-fix auxiliary tool gcc -I../os/unix -I../include -DHARD_SERVER_LIMIT=512 -DDOCUMENT_LOCATION= \"/usr/local/www/data/\" -DDEFAULT_PATH=\"/bin:/usr/bin:/usr/local/bin\" -funsigned-char -DMOD_SSL=202102 -DEAPI -O -pipe `../apaci` -DSSL_COMPAT -I/usr/local/include -L../os/unix -L../ap -L/usr/local/lib -L/usr/local/lib -o ca-fix ca-fix.c -los -lap -L/usr/local/lib -Lmodules/php3 -L../modules/php3 -L../../modules/php3 -lmodphp3 -R/usr/local/lib/mysql -L/usr/local/lib/mysql -lmysqlclient -L/usr/local/lib -lgd -lz -lm -lcrypt -lcrypt -lssl -lcrypto -lRSAglue -lrsaref -L/usr/lib -lgcc ca-fix.c: In function `main': ca-fix.c:530: too few arguments to function `i2d_ASN1_SET' ca-fix.c:533: too few arguments to function `i2d_ASN1_SET' *** Error code 1 Stop. **FAILED apache13-php3> uname -a FreeBSD 3.1-RELEASE FreeBSD 3.1-RELEASE #0: Mon Feb 15 11:08:08 GMT 1999 jkh@usw3.freebsd.org:/usr/src/sys/compile/GENERIC i386 apache13-php3> pkg_info -aI 31upgrade-1999.03.08 //and so forth, clipped To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 16:33:35 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mail.rdc1.on.home.com (ha1.rdc1.on.wave.home.com [24.2.9.66]) by hub.freebsd.org (Postfix) with ESMTP id 2F55D14D8A; Tue, 18 May 1999 16:33:28 -0700 (PDT) (envelope-from routerg@home.com) Received: from home.com ([24.112.8.100]) by mail.rdc1.on.home.com (InterMail v4.00.03 201-229-104) with ESMTP id <19990518233327.SWXG1295.mail.rdc1.on.home.com@home.com>; Tue, 18 May 1999 16:33:27 -0700 Message-ID: <3741F83A.E1A71936@home.com> Date: Tue, 18 May 1999 19:31:06 -0400 From: Joe Mama X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 2.2.8-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: questions@freebsd.org, ports@freebsd.org Subject: compling Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org As per my last message about not being able to compile ports in 2.2.8....the problem seems to be /usr/X11R6/include/X11/xpm.h:76: X11/Xlib.h: No such file or directory /usr/X11R6/include/X11/xpm.h:77: X11/Xutil.h: No such file or directory most of the time To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 16:55:49 1999 Delivered-To: freebsd-ports@freebsd.org Received: from WEBBSD1.turnaround.com.au (webbsd1.turnaround.com.au [203.39.138.49]) by hub.freebsd.org (Postfix) with ESMTP id E7F4D14FC5; Tue, 18 May 1999 16:55:38 -0700 (PDT) (envelope-from A_Johns@TurnAround.com.au) Received: from TurnAround.com.au (dhcp64.turnaround.com.au [192.168.1.64]) by WEBBSD1.turnaround.com.au (8.8.7/8.8.7) with ESMTP id KAA06344; Wed, 19 May 1999 10:07:53 +1000 (EST) (envelope-from A_Johns@TurnAround.com.au) Message-ID: <3741FE01.CA50962D@TurnAround.com.au> Date: Wed, 19 May 1999 09:55:45 +1000 From: Andrew Johns Organization: TurnAround Solutions P/L X-Mailer: Mozilla 4.5 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: Joe Mama Cc: questions@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: compling References: <3741F83A.E1A71936@home.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Joe Mama wrote: > > As per my last message about not being able to compile ports in > 2.2.8....the problem seems to be > > /usr/X11R6/include/X11/xpm.h:76: X11/Xlib.h: No such file or directory > /usr/X11R6/include/X11/xpm.h:77: X11/Xutil.h: No such file or directory > > most of the time > When you installed your system, did you add the X windows header file sources - you virtually can't compile anything that uses X without them. -- Regards | _/\_/\ Andrew Johns BSc (Comp Sci) | / \ TurnAround Solutions Pty Ltd | \_...__/ http://www.turnaround.com.au/ | \/ "The box said 'Requires Windows 98, NT, Linux or better' so I installed FreeBSD." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 17:20:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C94F7151C4 for ; Tue, 18 May 1999 17:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA70898; Tue, 18 May 1999 17:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 9BF711571D for ; Tue, 18 May 1999 17:10:21 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id E9395146D; Tue, 18 May 1999 17:10:07 -0700 (PDT) Message-Id: <19990519001007.E9395146D@norn.ca.eu.org> Date: Tue, 18 May 1999 17:10:07 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11771: Update: print/klyx Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11771 >Category: ports >Synopsis: Update: print/klyx >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 May 18 17:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: 4.0-CURRENT i386 >Description: Update to 0.10.0. This now uses kde11 instead of kde10. Also, sort the PLIST. >How-To-Repeat: >Fix: Index: klyx/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/print/klyx/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- Makefile 1998/12/25 17:51:27 1.9 +++ Makefile 1999/05/19 00:04:31 @@ -1,27 +1,23 @@ # New ports collection makefile for: klyx -# Version required: 0.9.8a +# Version required: 0.10.0 # Date created: 23 May 1998 # Whom: Hans Petter Bieker # # $Id: Makefile,v 1.9 1998/12/25 17:51:27 steve Exp $ # -DISTNAME= klyx-0.9.8a +DISTNAME= klyx-0.10.0 CATEGORIES= print kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= unstable/apps/office MAINTAINER= tom@eborcom.com -LIB_DEPENDS= kdecore.1:${PORTSDIR}/x11/kdelibs \ - kdeui.1:${PORTSDIR}/x11/kdelibs \ - kfm.1:${PORTSDIR}/x11/kdelibs \ - kfile.1:${PORTSDIR}/x11/kdelibs +LIB_DEPENDS= kdecore.2:${PORTSDIR}/x11/kdelibs11 USE_QT= yes GNU_CONFIGURE= yes USE_GMAKE= yes -CONFIGURE_ENV= CXXFLAGS="${CXXFLAGS}" \ - INSTALL_SCRIPT="${INSTALL_SCRIPT}" +CONFIGURE_ENV= INSTALL_SCRIPT="${INSTALL_SCRIPT}" .include Index: klyx/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/print/klyx/files/md5,v retrieving revision 1.2 diff -u -r1.2 md5 --- md5 1998/12/25 17:51:31 1.2 +++ md5 1999/05/17 03:47:52 @@ -1 +1 @@ -MD5 (klyx-0.9.8a.tar.gz) = 82873e1b3df3d725eceb31eca54d2a70 +MD5 (klyx-0.10.0.tar.gz) = fcd08d546d3f9520a83084874037dc76 Index: klyx/pkg/PLIST =================================================================== RCS file: /cvs/FreeBSD/ports/print/klyx/pkg/PLIST,v retrieving revision 1.2 diff -u -r1.2 PLIST --- PLIST 1998/12/25 17:51:31 1.2 +++ PLIST 1999/05/18 23:53:10 @@ -1,13 +1,22 @@ bin/klyx +share/applnk/Applications/klyx.kdelnk +share/apps/klyx/CREDITS share/apps/klyx/bind/cua.bind share/apps/klyx/bind/emacs.bind share/apps/klyx/bind/math.bind share/apps/klyx/bind/menus.bind +share/apps/klyx/bind/xemacs.bind +share/apps/klyx/chkconfig.ltx +share/apps/klyx/clipart/platypus.eps +share/apps/klyx/configure +share/apps/klyx/doc/AdvancedEdit.lyx share/apps/klyx/doc/BUGS.lyx share/apps/klyx/doc/Customization.lyx share/apps/klyx/doc/HowDoI-.lyx share/apps/klyx/doc/Intro.lyx share/apps/klyx/doc/LaTeXConfig.lyx +share/apps/klyx/doc/LaTeXConfig.lyx.in +share/apps/klyx/doc/README.Documentation share/apps/klyx/doc/Reference.lyx share/apps/klyx/doc/SpecialTools.lyx share/apps/klyx/doc/Tutorial.lyx @@ -15,8 +24,6 @@ share/apps/klyx/doc/escher-lsd.eps share/apps/klyx/doc/mobius.eps share/apps/klyx/doc/platypus.eps -share/apps/klyx/doc/LaTeXConfig.lyx.in -share/apps/klyx/clipart/platypus.eps share/apps/klyx/examples/Bibliography.lyx share/apps/klyx/examples/Delimiters.lyx share/apps/klyx/examples/Foils.lyx @@ -24,14 +31,19 @@ share/apps/klyx/examples/Maketitle.lyx share/apps/klyx/examples/MathLabeling.lyx share/apps/klyx/examples/Math_macros.lyx +share/apps/klyx/examples/Minipage.lyx share/apps/klyx/examples/TableExamples.lyx +share/apps/klyx/examples/aa_head.lyx +share/apps/klyx/examples/aa_paper.lyx share/apps/klyx/examples/ams-test.lyx +share/apps/klyx/examples/amsart-test.lyx share/apps/klyx/examples/amsbook-test.lyx share/apps/klyx/examples/example_lyxified.lyx share/apps/klyx/examples/example_raw.lyx share/apps/klyx/kbd/american-2.kmap share/apps/klyx/kbd/american.kmap share/apps/klyx/kbd/czech.kmap +share/apps/klyx/kbd/default.kmap share/apps/klyx/kbd/francais.kmap share/apps/klyx/kbd/french.kmap share/apps/klyx/kbd/german-2.kmap @@ -50,7 +62,7 @@ share/apps/klyx/kbd/transilvanian.kmap share/apps/klyx/kbd/turkish-f.kmap share/apps/klyx/kbd/turkish.kmap -share/apps/klyx/kbd/default.kmap +share/apps/klyx/layouts/aapaper.inc share/apps/klyx/layouts/amsart-plain.layout share/apps/klyx/layouts/amsart-seq.layout share/apps/klyx/layouts/amsart.layout @@ -79,20 +91,8 @@ share/apps/klyx/layouts/stdsections.inc share/apps/klyx/layouts/stdstarsections.inc share/apps/klyx/layouts/stdstruct.inc -share/apps/klyx/templates/dinbrief.lyx -share/apps/klyx/templates/iletter.lyx -share/apps/klyx/templates/latex_letter.lyx -share/apps/klyx/templates/linuxdoctemplate.lyx -share/apps/klyx/templates/revtex.lyx -share/apps/klyx/templates/slides.lyx -share/apps/klyx/tex/iletter.cls -share/apps/klyx/tex/revtex.cls -share/apps/klyx/configure share/apps/klyx/lyxrc -share/apps/klyx/CREDITS -share/apps/klyx/chkconfig.ltx share/apps/klyx/lyxrc.defaults -share/apps/klyx/textclass.lst share/apps/klyx/packages.lst share/apps/klyx/pics/Downarrow.xbm share/apps/klyx/pics/Uparrow.xbm @@ -153,7 +153,6 @@ share/apps/klyx/pics/arrowsleftarrow.xbm share/apps/klyx/pics/arrowsleftharpoondown.xbm share/apps/klyx/pics/arrowsleftharpoonup.xbm -share/apps/klyx/pics/banner.xpm share/apps/klyx/pics/arrowsleftrightarrow.xbm share/apps/klyx/pics/arrowsmapsto.xbm share/apps/klyx/pics/arrowsrightarrow.xbm @@ -162,6 +161,7 @@ share/apps/klyx/pics/arrowsrightleftharpoons.xbm share/apps/klyx/pics/arrowsuparrow.xbm share/apps/klyx/pics/arrowsupdownarrow.xbm +share/apps/klyx/pics/banner.xpm share/apps/klyx/pics/banner_bw.xbm share/apps/klyx/pics/blank.xbm share/apps/klyx/pics/bold_bw.xpm @@ -216,7 +216,6 @@ share/apps/klyx/pics/brelll.xbm share/apps/klyx/pics/brelmid.xbm share/apps/klyx/pics/brelmodels.xbm -share/apps/klyx/pics/cut.xpm share/apps/klyx/pics/brelneq.xbm share/apps/klyx/pics/brelni.xbm share/apps/klyx/pics/brelnotin.xbm @@ -241,6 +240,7 @@ share/apps/klyx/pics/bsol.xbm share/apps/klyx/pics/close.xpm share/apps/klyx/pics/copy.xpm +share/apps/klyx/pics/cut.xpm share/apps/klyx/pics/deco.xbm share/apps/klyx/pics/deco.xpm share/apps/klyx/pics/decohat.xbm @@ -267,6 +267,7 @@ share/apps/klyx/pics/exponent.xpm share/apps/klyx/pics/extra.xpm share/apps/klyx/pics/fig.xpm +share/apps/klyx/pics/filenewtmplt.xpm share/apps/klyx/pics/foot.xpm share/apps/klyx/pics/form.xpm share/apps/klyx/pics/frac.xpm @@ -304,7 +305,6 @@ share/apps/klyx/pics/greeksigma.xbm share/apps/klyx/pics/greektau.xbm share/apps/klyx/pics/greektheta.xbm -share/apps/klyx/pics/lyx.xpm share/apps/klyx/pics/greekupsilon.xbm share/apps/klyx/pics/greekvarepsilon.xbm share/apps/klyx/pics/greekvarphi.xbm @@ -322,6 +322,7 @@ share/apps/klyx/pics/lfloor.xbm share/apps/klyx/pics/lparen.xbm share/apps/klyx/pics/lsqb.xbm +share/apps/klyx/pics/lyx.xpm share/apps/klyx/pics/make_ascii_bw.xpm share/apps/klyx/pics/make_latex_bw.xpm share/apps/klyx/pics/margin.xpm @@ -348,7 +349,6 @@ share/apps/klyx/pics/miscjmath.xbm share/apps/klyx/pics/miscnabla.xbm share/apps/klyx/pics/miscnatural.xbm -share/apps/klyx/pics/sol.xbm share/apps/klyx/pics/miscneg.xbm share/apps/klyx/pics/miscpartial.xbm share/apps/klyx/pics/miscprime.xbm @@ -363,6 +363,7 @@ share/apps/klyx/pics/noun.xpm share/apps/klyx/pics/open.xpm share/apps/klyx/pics/paste.xpm +share/apps/klyx/pics/preview.xpm share/apps/klyx/pics/print1.xpm share/apps/klyx/pics/psnfss1-0.xpm share/apps/klyx/pics/psnfss1-1.xpm @@ -413,7 +414,6 @@ share/apps/klyx/pics/psnfss2-16.xpm share/apps/klyx/pics/psnfss2-17.xpm share/apps/klyx/pics/psnfss2-18.xpm -share/apps/klyx/pics/sum.xpm share/apps/klyx/pics/psnfss2-19.xpm share/apps/klyx/pics/psnfss2-2.xpm share/apps/klyx/pics/psnfss2-20.xpm @@ -456,7 +456,6 @@ share/apps/klyx/pics/psnfss3-2.xpm share/apps/klyx/pics/psnfss3-20.xpm share/apps/klyx/pics/psnfss3-21.xpm -share/apps/klyx/pics/tab.xpm share/apps/klyx/pics/psnfss3-22.xpm share/apps/klyx/pics/psnfss3-23.xpm share/apps/klyx/pics/psnfss3-24.xpm @@ -499,7 +498,6 @@ share/apps/klyx/pics/psnfss4-23.xpm share/apps/klyx/pics/psnfss4-24.xpm share/apps/klyx/pics/psnfss4-25.xpm -share/apps/klyx/pics/tex.xpm share/apps/klyx/pics/psnfss4-26.xpm share/apps/klyx/pics/psnfss4-27.xpm share/apps/klyx/pics/psnfss4-28.xpm @@ -532,6 +530,7 @@ share/apps/klyx/pics/sans_bw.xpm share/apps/klyx/pics/save.xpm share/apps/klyx/pics/smallcaps.xpm +share/apps/klyx/pics/sol.xbm share/apps/klyx/pics/space.xpm share/apps/klyx/pics/sqrt.xpm share/apps/klyx/pics/standard.xbm @@ -544,7 +543,6 @@ share/apps/klyx/pics/standard13.xpm share/apps/klyx/pics/standard14.xpm share/apps/klyx/pics/standard15.xpm -share/apps/klyx/pics/up.xpm share/apps/klyx/pics/standard16.xpm share/apps/klyx/pics/standard17.xpm share/apps/klyx/pics/standard18.xpm @@ -573,6 +571,9 @@ share/apps/klyx/pics/standard7.xpm share/apps/klyx/pics/standard8.xpm share/apps/klyx/pics/standard9.xpm +share/apps/klyx/pics/sum.xpm +share/apps/klyx/pics/tab.xpm +share/apps/klyx/pics/tex.xpm share/apps/klyx/pics/toolbar_arrows.xpm share/apps/klyx/pics/toolbar_boperators.xpm share/apps/klyx/pics/toolbar_brelations.xpm @@ -581,7 +582,9 @@ share/apps/klyx/pics/toolbar_misc.xpm share/apps/klyx/pics/toolbar_varsize.xpm share/apps/klyx/pics/unknown.xpm +share/apps/klyx/pics/up.xpm share/apps/klyx/pics/uparrow.xbm +share/apps/klyx/pics/update.xpm share/apps/klyx/pics/updownarrow.xbm share/apps/klyx/pics/varsz.xbm share/apps/klyx/pics/varszbigcap.xbm @@ -602,19 +605,33 @@ share/apps/klyx/pics/view_dvi_bw.xpm share/apps/klyx/pics/view_ps_bw.xpm share/apps/klyx/pics/widthofcolumn.xpm +share/apps/klyx/templates/dinbrief.lyx +share/apps/klyx/templates/iletter.lyx +share/apps/klyx/templates/latex_letter.lyx +share/apps/klyx/templates/linuxdoctemplate.lyx +share/apps/klyx/templates/revtex.lyx +share/apps/klyx/templates/slides.lyx +share/apps/klyx/tex/iletter.cls +share/apps/klyx/tex/revtex.cls +share/apps/klyx/textclass.lst +share/icons/klyx.xpm +share/icons/koffice-intro.gif +share/icons/mini/klyx.xpm +share/locale/cs/LC_MESSAGES/klyx.mo +share/locale/da/LC_MESSAGES/klyx.mo share/locale/de/LC_MESSAGES/klyx.mo -share/locale/fr/LC_MESSAGES/klyx.mo -share/locale/sv/LC_MESSAGES/klyx.mo share/locale/es/LC_MESSAGES/klyx.mo -share/locale/da/LC_MESSAGES/klyx.mo -share/locale/nl/LC_MESSAGES/klyx.mo -share/locale/pt/LC_MESSAGES/klyx.mo -share/locale/no/LC_MESSAGES/klyx.mo share/locale/fi/LC_MESSAGES/klyx.mo +share/locale/fr/LC_MESSAGES/klyx.mo share/locale/hr/LC_MESSAGES/klyx.mo +share/locale/nl/LC_MESSAGES/klyx.mo +share/locale/no/LC_MESSAGES/klyx.mo +share/locale/pl/LC_MESSAGES/klyx.mo +share/locale/pt/LC_MESSAGES/klyx.mo share/locale/sk/LC_MESSAGES/klyx.mo +share/locale/sl/LC_MESSAGES/klyx.mo +share/locale/sv/LC_MESSAGES/klyx.mo share/locale/tr/LC_MESSAGES/klyx.mo -share/icons/koffice-intro.gif @dirrm share/apps/klyx/bind @dirrm share/apps/klyx/doc @dirrm share/apps/klyx/clipart -Chris >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 May 18 17:30:33 1999 Delivered-To: freebsd-ports@freebsd.org Received: from kogge.Hanse.DE (kogge.hanse.de [192.76.134.17]) by hub.freebsd.org (Postfix) with ESMTP id D198515184; Tue, 18 May 1999 17:30:22 -0700 (PDT) (envelope-from stefan.bethke@hanse.de) Received: from transit.hanse.de (transit-a.Hanse.DE [193.174.9.161]) by kogge.Hanse.DE (8.9.1/8.9.1) with ESMTP id CAA53913; Wed, 19 May 1999 02:29:39 +0200 (CEST) (envelope-from stefan.bethke@hanse.de) Received: from monster.transit-a.hanse.de (monster [193.174.9.163]) by transit.hanse.de (8.8.8/8.8.8) with ESMTP id CAA16531; Wed, 19 May 1999 02:29:37 +0200 (CEST) (envelope-from stefan.bethke@hanse.de) Date: Wed, 19 May 1999 02:30:37 +0200 From: Stefan Bethke To: freebsd-hackers@freebsd.org Subject: Re: cvs commit: ports/astro/setiathome Makefile ports/astro/setiathome/files setiathome.sh setiathome.1 ports/astro/setiathome/pkg INSTALL Message-ID: <17658036.3136069837@monster.transit-a.hanse.de> In-Reply-To: <199905182240.PAA63973@freefall.freebsd.org> Originator-Info: login-id=stb; server=transit.transit-a.hanse.de X-Mailer: Mulberry (MacOS) [1.4.0, s/n U-301178] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [ crossposted to -ports, please follow up to -hackers ] stb@FreeBSD.org wrote: > - Added support for SMP systems to etc/rc.d/setiathome.sh > - Added etc/setiathome.conf with options to set the nice level, the max. > number of processes to run, the working directory, and the the user id > to run as. > - setiathome.1 was missing from Makefile (and +CONTENTS subsequently) > - Updated the man page to reflect the changes. I've left out idprio(8) for now. If someone could point me to a man page explaining the use of kern.quantum, and when it might be useful to fiddle with that knob, I'll happily add that reference to the setiathome man page. Stefan -- Stefan Bethke Muehlendamm 12 Phone: +49-40-256848, +49-177-3504009 D-22087 Hamburg Hamburg, Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 17:54:33 1999 Delivered-To: freebsd-ports@freebsd.org Received: from roma.coe.ufrj.br (roma.coe.ufrj.br [146.164.53.65]) by hub.freebsd.org (Postfix) with ESMTP id 171AF14CB0 for ; Tue, 18 May 1999 17:54:25 -0700 (PDT) (envelope-from jonny@jonny.eng.br) Received: (from jonny@localhost) by roma.coe.ufrj.br (8.8.8/8.8.8) id VAA18368 for ports@freebsd.org; Tue, 18 May 1999 21:54:21 -0300 (EST) (envelope-from jonny) From: Joao Carlos Mendes Luis Message-Id: <199905190054.VAA18368@roma.coe.ufrj.br> Subject: wget port To: ports@freebsd.org Date: Tue, 18 May 1999 21:54:21 -0300 (EST) X-Mailer: ELM [version 2.4ME+ PL54 (25)] 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 Hi, Sorry mailing to the list, but wget has no official maintainer. Since the addition of IMS to wget patches, I am having problems with long downloads. This is an example: roma::root [546] wget --proxy=off --continue http://www.freebsd.org/java/jdk1.1.7_AOUT.V99-4-16.tar.gz --21:48:08-- http://www.freebsd.org:80/java/jdk1.1.7_AOUT.V99-4-16.tar.gz => `jdk1.1.7_AOUT.V99-4-16.tar.gz' Connecting to www.freebsd.org:80... connected! HTTP request sent, awaiting response... 304 Not Modified Length: unspecified 21:48:18 (0.00 B/s) - `jdk1.1.7_AOUT.V99-4-16.tar.gz' saved [0] At least, if I said "continue", it should not try IMS. I know the file is incomplete, and I want to get the reminder of it, not to verify if it has been "modified". There are probably other conditions for this, but I can't figure them right now. Sorry for giving no patches, but I have no time for it right now. I'm just recompiling it locally without the IMS patches. Thanks for your attention, Jonny -- João Carlos Mendes Luís jonny@jonny.eng.br Networking Enginner jcml@ieee.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 22:33:31 1999 Delivered-To: freebsd-ports@freebsd.org Received: from palrel3.hp.com (palrel3.hp.com [156.153.255.226]) by hub.freebsd.org (Postfix) with ESMTP id 72C7415129 for ; Tue, 18 May 1999 22:33:25 -0700 (PDT) (envelope-from piet@cup.hp.com) Received: from hpfsvr02.cup.hp.com (root@hpfsvr02.cup.hp.com [15.28.74.198]) by palrel3.hp.com (8.8.6 (PHNE_17135)/8.8.5tis) with ESMTP id WAA11840; Tue, 18 May 1999 22:33:00 -0700 (PDT) Received: from piet1.sparc.engr.sgi.com (piet1.cup.hp.com [15.28.75.241]) by hpfsvr02.cup.hp.com with SMTP (8.8.6/8.7.3 TIS Messaging 5.0) id WAA10608; Tue, 18 May 1999 22:32:59 -0700 (PDT) Date: Tue, 18 May 1999 22:32:59 -0700 (PDT) From: Piet Delaney Message-Id: <199905190532.WAA10608@hpfsvr02.cup.hp.com> To: piet@cup.hp.com, davidh@wr.com.au, davidh@progmatics.com.au Subject: Re: Setting up SANE on FreeBSD with an on Board Adaptec SCSI Controler Cc: sane-devel@mostang.com, freebsd-ports@freebsd.org, piet@hpfsvr02.cup.hp.com, piet@piet.net, hasty@netcom.com, obrien@nuxi.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi David: > You have to set up the right device names in the config file and in > /dev. > I unfortunately can't remember exactly what I had to do, but > when I get home I'll check and mail you. > > But, in /usr/local/lib/sane there is a config file which has to > point to the right /dev entry. I didn`t see it; just looked like linker archives. scanimage --list-devices came up with nothing; should have a -v (verbose option?) The scsi interface is the ahc seems it's go thru a scsi pass thru driver /dev/pass[0123]. The /usr/local/etc/sane.d/hp.conf indicated /dev/scanner should be used. It didn't exist. The scanner is a HP ScanJet 3P (C2570A) and should be supported. dmesg shows: pass1 being the HP Desktop Video 3.60 (A Video CAM) pass2 being the HP C2570A 3430 (Hmmm, not quit a 3406, I wonder if that's the problem). I'm getting some scsi IDENTIFY problems something isn't answering IDENTIFY cmds. Makeing a symbolic pointer from /dev/scanner to /dev/pass2 (or /dev/pass1) didn't change the scanimage --list-devices (still no output). I think my problem is likley that neither device is supported. Seems it would have been nice if it was a bit more verbose about this; something like "HP C2570A 3430" isn't supported. I wonder if a small tweek on the HP backend to recognize the 3406 and the 3430 as a ScanJet 3P would fix this. Tried scanimage -d /dev/pass[012] and it comes back with Invalid Arguement. So it seems the /dev/scanner isn't being used. So what is going on with the HP congfig file. Seems this really could be more communitive when the -v (--verbose) option is provided. Perhaps Dave Obrien is right about this interface needing cleanup. -piet To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 23:11:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from netcom15.netcom.com (netcom15.netcom.com [192.100.81.128]) by hub.freebsd.org (Postfix) with ESMTP id BB30114E1D for ; Tue, 18 May 1999 23:11:09 -0700 (PDT) (envelope-from hasty@netcom.com) Received: (from hasty@localhost) by netcom15.netcom.com (8.8.5-r-beta/8.8.5/(NETCOM v1.02)) id XAA05461; Tue, 18 May 1999 23:09:05 -0700 (PDT) Date: Tue, 18 May 1999 23:09:05 -0700 (PDT) From: Amancio Hasty Jr Message-Id: <199905190609.XAA05461@netcom15.netcom.com> To: davidh@progmatics.com.au, davidh@wr.com.au, piet@cup.hp.com Subject: Re: Setting up SANE on FreeBSD with an on Board Adaptec SCSI Controler Cc: freebsd-ports@freebsd.org, hasty@netcom.com, obrien@nuxi.com, piet@hpfsvr02.cup.hp.com, piet@piet.net, sane-devel@mostang.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Piet, The scsi pass thru on FreeBSD is strange :( Do a man on : pass camcontrol ls -ald /dev/xpt0 /dev/pass1 crw------- 1 hasty operator 104, 0 Nov 22 23:38 /dev/xpt0 crw-rw-r-- 1 root wheel 31, 3 Apr 19 11:20 /dev/pass1 pass1 is my umax scanner -- the minor device in /dev/pass1 denotes the pass device printed with dmes: {hasty} dmesg | grep pass pass3 at ahc1 bus 0 target 5 lun 0 pass3: Fixed Scanner SCSI-2 device pass3: 3.300MB/s transfers cd /usr/local/etc/sane.d {hasty} ls abaton.conf dc210.conf hp.conf ricoh.conf tamarack.conf agfafocus.conf dc25.conf microtek.conf s9036.conf umax.conf apple.conf dll.conf microtek2.conf saned.conf artec.conf dmc.conf mustek.conf sharp.conf coolscan.conf epson.conf net.conf snapscan.conf {hasty} cat umax.conf /dev/pass1 Make doubly sure that your *.conf entry where is required does point to a string /dev/pass[0-9] otherwise the user cam interface will fail to talk to your scsi device --- for instance if I change umax.conf to point to /dev/scanner which is a symlink -- the scsi interface library will fail. Don't forget to create the /dev/xpt0 device or again the cam (scsi) interface library will fail to access your scsi device. That should do it. I found all this out by doing a ktrace on "sane" and examining the devices which it opened :( ---- xscanimage umax works like a charm over here. any attempt to access /dev/scanner will fail not due to sane but to the funky cam interface The sane documentation installed is a generic one for all OSes including FreeBSD. Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 18 23:58:40 1999 Delivered-To: freebsd-ports@freebsd.org Received: from palrel3.hp.com (palrel3.hp.com [156.153.255.226]) by hub.freebsd.org (Postfix) with ESMTP id 3F6CC14FF8 for ; Tue, 18 May 1999 23:58:38 -0700 (PDT) (envelope-from piet@cup.hp.com) Received: from hpfsvr02.cup.hp.com (root@hpfsvr02.cup.hp.com [15.28.74.198]) by palrel3.hp.com (8.8.6 (PHNE_17135)/8.8.5tis) with ESMTP id XAA13524; Tue, 18 May 1999 23:58:25 -0700 (PDT) Received: from piet1.sparc.engr.sgi.com (piet1.cup.hp.com [15.28.75.241]) by hpfsvr02.cup.hp.com with SMTP (8.8.6/8.7.3 TIS Messaging 5.0) id XAA10796; Tue, 18 May 1999 23:58:23 -0700 (PDT) Date: Tue, 18 May 1999 23:58:23 -0700 (PDT) From: Piet Delaney Message-Id: <199905190658.XAA10796@hpfsvr02.cup.hp.com> To: davidh@progmatics.com.au, davidh@wr.com.au, piet@cup.hp.com, hasty@netcom.com Subject: Sane 1.0.1 - Looks like /usr/local/lib/libsaine-net.so.1 wasn't installed. Cc: freebsd-ports@freebsd.org, obrien@nuxi.com, piet@hpfsvr02.cup.hp.com, piet@piet.net, sane-devel@mostang.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > The scsi pass thru on FreeBSD is strange :( > > Do a man on : > pass > camcontrol > > ls -ald /dev/xpt0 /dev/pass1 > crw------- 1 hasty operator 104, 0 Nov 22 23:38 /dev/xpt0 > > crw-rw-r-- 1 root wheel 31, 3 Apr 19 11:20 /dev/pass1 I think using pass1 with minor device 1 would be less confusing. > > pass1 is my umax scanner -- the minor device in /dev/pass1 denotes the > pass device printed with dmes: > {hasty} dmesg | grep pass > pass3 at ahc1 bus 0 target 5 lun 0 > pass3: Fixed Scanner SCSI-2 device > pass3: 3.300MB/s transfers > > cd /usr/local/etc/sane.d > {hasty} ls > abaton.conf dc210.conf hp.conf ricoh.conf tamarack.conf > agfafocus.conf dc25.conf microtek.conf s9036.conf umax.conf > apple.conf dll.conf microtek2.conf saned.conf > artec.conf dmc.conf mustek.conf sharp.conf > coolscan.conf epson.conf net.conf snapscan.conf > {hasty} cat umax.conf > /dev/pass1 My umax file has more stuff in it: scsi UMAX * Scanner scsi LinoHell Office . . . /dev/scanner > Make doubly sure that your *.conf entry where is required does point to > a string /dev/pass[0-9] otherwise the user cam interface will fail > to talk to your scsi device --- for instance if I change umax.conf > to point to /dev/scanner which is a symlink -- the scsi interface > library will fail: I changed from using the symbolic link (Like the docs recomend!), but it didn't change anything. Seems kinda absurd that the guys that wrote this don't fix it. There must be a rational reason for this. > > Don't forget to create the /dev/xpt0 device or again the cam (scsi) > interface library will fail to access your scsi device. > That should do it. I found all this out by doing a ktrace on "sane" > and examining the devices which it opened :( I ran scanimage with ktrace and it seems to be stopping when scanimage tried to access /usr/local/lib/libsane-net.so.1 which doesn't exist. Perhaps the port makefile is missing the install of libsane-net? I briefly looked at the makefile and didn't see where libsain-net is installed. -piet To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 0:20: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1CB471543F for ; Wed, 19 May 1999 00:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA07956; Wed, 19 May 1999 00:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 646C114D91; Wed, 19 May 1999 00:19:13 -0700 (PDT) Message-Id: <19990519071913.646C114D91@hub.freebsd.org> Date: Wed, 19 May 1999 00:19:13 -0700 (PDT) From: nacai@iname.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11776: Fixed port: gtk-- Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11776 >Category: ports >Synopsis: Fixed port: gtk-- >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 May 19 00:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Yukihiro Nakai >Release: 3.1-RELEASE >Organization: InternetSolutions, Inc. Japan >Environment: 3.1-RELEASE + 31stable upgrade kit and recently /usr/ports >Description: This is more gtk-- port fix patch from Yazaki Hiroyuki. The egcs is needed for gtk-- compile. Yukihiro Nakai -------------- begin 644 gtk--.diff.gz M'XL("+7G03<``V=T:RTM+F1I9F8`G5-MCZ(P$/X,OV)B]M/5"JQLC"8DOK&$ M6V4-Z)T?+B$5*Q*1&EIVSVSVOU]].47/7#8V(71FGF?:F9^']])SOL^(X\!&.:D5E*,1=$))$E0?*: MH,C`>R*6K!`XSMA:/NF9:7L_+,49OQR36Y6'CZEA=#N!_:G-DNS0/ARQ;)'$ M%17=23QTJ]>S*K+DJ`*]Z=2JQ!%"E5WYPXY7MP"DD@9?J6HIU;]Z:P2O:I+C53W"D'? M[EV2"O>M$]5=P)85\$XR`8)!P2F00K#=2\-NS`Z%56]11RF5W8:(;;;'EDDA MR1Q:P7,M91%)-;XD.=5(M+=*U-EV=VK.:;JH@EB2;,5K7[SP?;7>W>$_N4-Y %IET%```M ` end >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 Wed May 19 0:28:46 1999 Delivered-To: freebsd-ports@freebsd.org Received: from Argon.Mlink.NET (Argon.Mlink.NET [205.236.182.18]) by hub.freebsd.org (Postfix) with ESMTP id 629FB14CB0 for ; Wed, 19 May 1999 00:28:35 -0700 (PDT) (envelope-from matt@Mlink.NET) Received: from ns-1.ccia.cc (matt@ns-1.ccia.cc [209.104.81.126]) by Argon.Mlink.NET (8.8.8/8.8.2) with ESMTP id DAA14143 for ; Wed, 19 May 1999 03:26:32 -0400 (EDT) Date: Wed, 19 May 1999 03:28:23 -0400 (EDT) From: matt X-Sender: matt@ns-1.ccia.cc To: ports@freebsd.org Subject: HRMMM... Communicator 4.6 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 root[ns-1]:/usr/ports/www/netscape46-communicator# pwd /usr/ports/www/netscape46-communicator root[ns-1]:/usr/ports/www/netscape46-communicator# more Makefile # New ports collection makefile for: netscape (communicator suite) # Version required: 4.5* # Date created: 24 Feb 1997 # Whom: thepish # # $Id: Makefile,v 1.40 1999/04/18 21:35:01 dirk Exp $ # DISTNAME= communicator-v451-export.x86-unknown-freebsd PKGNAME= netscape-communicator-4.51 Shouldn't that be 4.6? -- Mail: matt@mlink.net && matt@ccia.cc @IRC: irc.idirect.ca && mlink.ca.relic.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 0:53:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from shell.futuresouth.com (shell.futuresouth.com [198.78.58.28]) by hub.freebsd.org (Postfix) with ESMTP id 241D014FEE for ; Wed, 19 May 1999 00:53:09 -0700 (PDT) (envelope-from fullermd@futuresouth.com) Received: (from fullermd@localhost) by shell.futuresouth.com (8.9.3/8.9.3) id CAA05670; Wed, 19 May 1999 02:53:01 -0500 (CDT) Date: Wed, 19 May 1999 02:53:01 -0500 From: "Matthew D. Fuller" To: matt Cc: ports@FreeBSD.ORG Subject: Re: HRMMM... Communicator 4.6 Port. Message-ID: <19990519025301.B4947@futuresouth.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: ; from matt on Wed, May 19, 1999 at 03:28:23AM -0400 X-OS: FreeBSD Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, May 19, 1999 at 03:28:23AM -0400, a little birdie told me that matt remarked > > root[ns-1]:/usr/ports/www/netscape46-communicator# more Makefile > ... > > DISTNAME= communicator-v451-export.x86-unknown-freebsd > PKGNAME= netscape-communicator-4.51 Already bitten by it (that'll teach me to jump at a chance to reduce crash rates on Netscrape ;) It appears to have been repository copied, but not upgraded to 4.6 yet. This (quick horribly ugly) hack will let you at least get it installed (provided you 'make NO_CHECKSUM=yes'), though it'll still be in /usr/local/netscape4.51/, and the binary will be called communicator-4.51.bin, and other sundry ugly bits: Index: Makefile =================================================================== RCS file: /usr/cvs/ports/www/netscape46-communicator/Makefile,v retrieving revision 1.40 diff -u -r1.40 Makefile --- Makefile 1999/04/18 21:35:01 1.40 +++ Makefile 1999/05/19 07:49:41 @@ -6,10 +6,10 @@ # $Id: Makefile,v 1.40 1999/04/18 21:35:01 dirk Exp $ # -DISTNAME= communicator-v451-export.x86-unknown-freebsd +DISTNAME= communicator-v46-export.x86-unknown-freebsd PKGNAME= netscape-communicator-4.51 CATEGORIES= www -MASTER_SITES= ftp://ftp.netscape.com/pub/communicator/4.51/english/unix/unsupported/freebsd/complete_install/ +MASTER_SITES= ftp://ftp.netscape.com/pub/communicator/4.6/english/unix/unsupported/freebsd/complete_install/ # DISTFILES must be set to begin with so USE_128BIT can add on to it. DISTFILES= ${DISTNAME}${EXTRACT_SUFX} @@ -20,7 +20,7 @@ ONLY_FOR_ARCHS= i386 NO_LATEST_LINK= yes -WRKSRC= ${WRKDIR}/communicator-v451.x86-unknown-freebsd +WRKSRC= ${WRKDIR}/communicator-v46.x86-unknown-freebsd NO_BUILD= Yes PLIST_SUB= NDIRBASE=${NDIRBASE} NO_FILTER_SHLIBS=yes (of course, anyone who actually COMMITS a piece of garbage like this hack should be shot. Repeatedly. With an elephant gun. In the head. And televised on cable) -- *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* | Matthew Fuller MF4839 http://www.over-yonder.net/ | * fullermd@futuresouth.com fullermd@over-yonder.net * | UNIX Systems Administrator Specializing in FreeBSD | * FutureSouth Communications ISPHelp ISP Consulting * | "The only reason I'm burning my candle at both ends, | * is because I haven't figured out how to light the * | middle yet" | *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 1:50: 2 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7F28714E39 for ; Wed, 19 May 1999 01:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA21345; Wed, 19 May 1999 01:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 19 May 1999 01:50:01 -0700 (PDT) Message-Id: <199905190850.BAA21345@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: ports/11758 [PATCH] Upgrade exim port to 3.00 Reply-To: Sheldon Hearn Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11758; it has been noted by GNATS. From: Sheldon Hearn To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/11758 [PATCH] Upgrade exim port to 3.00 Date: Wed, 19 May 1999 10:43:22 +0200 Now that 3.2-RELEASE ports freeze is over, this is a commit candidate. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 2:13:50 1999 Delivered-To: freebsd-ports@freebsd.org Received: from Argon.Mlink.NET (Argon.Mlink.NET [205.236.182.18]) by hub.freebsd.org (Postfix) with ESMTP id D1027152E5 for ; Wed, 19 May 1999 02:13:46 -0700 (PDT) (envelope-from matt@Mlink.NET) Received: from ns-1.ccia.cc (matt@ns-1.ccia.cc [209.104.81.126]) by Argon.Mlink.NET (8.8.8/8.8.2) with ESMTP id FAA20884; Wed, 19 May 1999 05:11:42 -0400 (EDT) Date: Wed, 19 May 1999 05:13:26 -0400 (EDT) From: matt X-Sender: matt@ns-1.ccia.cc To: "Matthew D. Fuller" Cc: ports@FreeBSD.ORG Subject: Re: HRMMM... Communicator 4.6 Port. In-Reply-To: <19990519025301.B4947@futuresouth.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 On Wed, 19 May 1999, Matthew D. Fuller wrote: [...] LOL, well it doesn't affect me too much I installed 4.6 myself the day it came out, but I thought I'd look at the port for it anyways, see if there were any neat patches or anything. Unfortunately, Fortify isn't out for 4.6-communicator *nix yet =( and even though I'm in canada, my box reverses to a .cc domain, and the bloody netscape people won't lemme download the US version. Oh well. : (of course, anyone who actually COMMITS a piece of garbage like this hack : should be shot. Repeatedly. With an elephant gun. In the head. And : televised on cable) Where do I buy a ticket? =) [...] Matt -- Mail: matt@mlink.net && matt@ccia.cc @IRC: irc.idirect.ca && mlink.ca.relic.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 2:23:57 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mail.wr.com.au (wr.com.au [203.12.42.10]) by hub.freebsd.org (Postfix) with ESMTP id 7CF2B15279 for ; Wed, 19 May 1999 02:23:49 -0700 (PDT) (envelope-from davidh@wr.com.au) Received: from ishtar.wr.com.au (dialup129.wr.com.au [203.27.69.129]) by mail.wr.com.au (8.8.7/8.8.7) with ESMTP id SAA10555; Wed, 19 May 1999 18:53:35 +1000 (EST) Received: by ishtar.wr.com.au (Postfix, from userid 1411) id 3B56BCA; Wed, 19 May 1999 18:58:09 +1000 (EST) Message-ID: <19990519185808.A356@wr.com.au> Date: Wed, 19 May 1999 18:58:08 +1000 From: David Hobley To: Piet Delaney , davidh@progmatics.com.au, hasty@netcom.com Cc: freebsd-ports@freebsd.org, obrien@nuxi.com, piet@hpfsvr02.cup.hp.com, piet@piet.net, sane-devel@mostang.com Subject: Re: Sane 1.0.1 - Looks like /usr/local/lib/libsaine-net.so.1 wasn't installed. References: <199905190658.XAA10796@hpfsvr02.cup.hp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199905190658.XAA10796@hpfsvr02.cup.hp.com>; from Piet Delaney on Tue, May 18, 1999 at 11:58:23PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Well, I have checked my config here. My dmesg reports: pt0 at ncr0 bus 0 target 5 lun 0 pt0: Fixed Processor SCSI-2 device pt0: 3.300MB/s transfers My hp.conf file has in it: scsi HP /dev/scanner My /dev reports: [4 ishtar: etc/sane.d] % ls -l /dev/scanner lrwxr-xr-x 1 root wheel 3 Feb 3 07:23 /dev/scanner@ -> pt0 [5 ishtar: etc/sane.d] % ls -l /dev/pt0 crw-rw-rw- 1 root sysprog 61, 0 Feb 1 08:30 /dev/pt0 My kernel is configured to have: device pt0 at scbus? # SCSI processor type device sctarg0 at scbus? # SCSI target For some reason, when I run scanimage --list-devices, mine doesn't appear, but if I type xscanimage hp:/dev/pt0 everything runs as expected. Hope that helps. On Tue, May 18, 1999 at 11:58:23PM -0700, Piet Delaney wrote: > > > The scsi pass thru on FreeBSD is strange :( > > > > Do a man on : > > pass > > camcontrol > > > > ls -ald /dev/xpt0 /dev/pass1 > > crw------- 1 hasty operator 104, 0 Nov 22 23:38 /dev/xpt0 > > > > crw-rw-r-- 1 root wheel 31, 3 Apr 19 11:20 /dev/pass1 > > I think using pass1 with minor device 1 would be less confusing. > > > > > > pass1 is my umax scanner -- the minor device in /dev/pass1 denotes the > > pass device printed with dmes: > > {hasty} dmesg | grep pass > > pass3 at ahc1 bus 0 target 5 lun 0 > > pass3: Fixed Scanner SCSI-2 device > > pass3: 3.300MB/s transfers > > > > cd /usr/local/etc/sane.d > > {hasty} ls > > abaton.conf dc210.conf hp.conf ricoh.conf tamarack.conf > > agfafocus.conf dc25.conf microtek.conf s9036.conf umax.conf > > apple.conf dll.conf microtek2.conf saned.conf > > artec.conf dmc.conf mustek.conf sharp.conf > > coolscan.conf epson.conf net.conf snapscan.conf > > {hasty} cat umax.conf > > /dev/pass1 > > My umax file has more stuff in it: > > scsi UMAX * Scanner > scsi LinoHell Office > . > . > . > /dev/scanner > > > > > Make doubly sure that your *.conf entry where is required does point to > > a string /dev/pass[0-9] otherwise the user cam interface will fail > > to talk to your scsi device --- for instance if I change umax.conf > > to point to /dev/scanner which is a symlink -- the scsi interface > > library will fail: > > I changed from using the symbolic link (Like the docs recomend!), > but it didn't change anything. Seems kinda absurd that the guys > that wrote this don't fix it. There must be a rational reason for this. > > > > > > Don't forget to create the /dev/xpt0 device or again the cam (scsi) > > interface library will fail to access your scsi device. > > That should do it. I found all this out by doing a ktrace on "sane" > > and examining the devices which it opened :( > > I ran scanimage with ktrace and it seems to be stopping when scanimage > tried to access /usr/local/lib/libsane-net.so.1 which doesn't exist. > Perhaps the port makefile is missing the install of libsane-net? > I briefly looked at the makefile and didn't see where libsain-net > is installed. > > -piet > > -- Cheers, david -- http://www.angelfire.com/wa/hobley To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 2:53:34 1999 Delivered-To: freebsd-ports@freebsd.org Received: from palrel3.hp.com (palrel3.hp.com [156.153.255.226]) by hub.freebsd.org (Postfix) with ESMTP id 26BE815422 for ; Wed, 19 May 1999 02:53:29 -0700 (PDT) (envelope-from piet@cup.hp.com) Received: from hpfsvr02.cup.hp.com (root@hpfsvr02.cup.hp.com [15.28.74.198]) by palrel3.hp.com (8.8.6 (PHNE_17135)/8.8.5tis) with ESMTP id CAA18674; Wed, 19 May 1999 02:53:19 -0700 (PDT) Received: from piet1.sparc.engr.sgi.com (piet1.cup.hp.com [15.28.75.241]) by hpfsvr02.cup.hp.com with SMTP (8.8.6/8.7.3 TIS Messaging 5.0) id CAA11098; Wed, 19 May 1999 02:53:18 -0700 (PDT) Date: Wed, 19 May 1999 02:53:18 -0700 (PDT) From: Piet Delaney Message-Id: <199905190953.CAA11098@hpfsvr02.cup.hp.com> To: piet@cup.hp.com, davidh@progmatics.com.au, hasty@netcom.com, davidh@wr.com.au Subject: Re: Sane 1.0.1 - Looks like /usr/local/lib/libsaine-net.so.1 wasn't installed. Cc: freebsd-ports@freebsd.org, obrien@nuxi.com, piet@hpfsvr02.cup.hp.com, piet@piet.net, sane-devel@mostang.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > Well, I have checked my config here. My dmesg reports: > > pt0 at ncr0 bus 0 target 5 lun 0 > pt0: Fixed Processor SCSI-2 device > pt0: 3.300MB/s transfers Perhaps your using on an old kernel. Mine comes up with pass0 and pass1 so it's using the new (brooken?) CAM interface. > > My hp.conf file has in it: > > scsi HP > /dev/scanner > > My /dev reports: > > [4 ishtar: etc/sane.d] % ls -l /dev/scanner > lrwxr-xr-x 1 root wheel 3 Feb 3 07:23 /dev/scanner@ -> pt0 > [5 ishtar: etc/sane.d] % ls -l /dev/pt0 > crw-rw-rw- 1 root sysprog 61, 0 Feb 1 08:30 /dev/pt0 So symbolic pointers aren't a problem. I had a feeling that was the case. > > My kernel is configured to have: > > device pt0 at scbus? # SCSI processor type > device sctarg0 at scbus? # SCSI target Interesting. My GENERIC kernel config doesn't have this. I'm using version 1.169 of GENERIC. What version are you using? Does your have a line: device pass0 > > For some reason, when I run scanimage --list-devices, In my case I think scanimage is looking for the wrong type of objects in /usr/local/lib/sane. I have all .a and .dl files. What are .dl files (dynamic link I assume). Seems sane is looking for .so.1 files (shared objects). > mine doesn't > appear, but if I type > > xscanimage hp:/dev/pt0 I don't recall the docs suggesting this : format? Where was that? That style is usually used by X. So scanimage and xscanimage have a different syntax for the device even though it's the same executable. Boy talking about under-documented features. I think some OS specific examples would be helpfull. > > everything runs as expected. Sure does, but I'm still stuck. Not surprise Dave O'Brien gave up on this turkey. It's not very close to the Microsoft plug and play paradigm. I'll read the SANE 1.01 manual when I get home; might help. Seems like the Indian Blind man story where every observer has a different view of reality. I suppose that's being in-sane. -piet > > Hope that helps. > On Tue, May 18, 1999 at 11:58:23PM -0700, Piet Delaney wrote: > > > > > The scsi pass thru on FreeBSD is strange :( > > > > > > Do a man on : > > > pass > > > camcontrol > > > > > > ls -ald /dev/xpt0 /dev/pass1 > > > crw------- 1 hasty operator 104, 0 Nov 22 23:38 /dev/xpt0 > > > > > > crw-rw-r-- 1 root wheel 31, 3 Apr 19 11:20 /dev/pass1 > > > > I think using pass1 with minor device 1 would be less confusing. > > > > > > > > > > pass1 is my umax scanner -- the minor device in /dev/pass1 denotes the > > > pass device printed with dmes: > > > {hasty} dmesg | grep pass > > > pass3 at ahc1 bus 0 target 5 lun 0 > > > pass3: Fixed Scanner SCSI-2 device > > > pass3: 3.300MB/s transfers > > > > > > cd /usr/local/etc/sane.d > > > {hasty} ls > > > abaton.conf dc210.conf hp.conf ricoh.conf tamarack.conf > > > agfafocus.conf dc25.conf microtek.conf s9036.conf umax.conf > > > apple.conf dll.conf microtek2.conf saned.conf > > > artec.conf dmc.conf mustek.conf sharp.conf > > > coolscan.conf epson.conf net.conf snapscan.conf > > > {hasty} cat umax.conf > > > /dev/pass1 > > > > My umax file has more stuff in it: > > > > scsi UMAX * Scanner > > scsi LinoHell Office > > . > > . > > . > > /dev/scanner > > > > > > > > > Make doubly sure that your *.conf entry where is required does point to > > > a string /dev/pass[0-9] otherwise the user cam interface will fail > > > to talk to your scsi device --- for instance if I change umax.conf > > > to point to /dev/scanner which is a symlink -- the scsi interface > > > library will fail: > > > > I changed from using the symbolic link (Like the docs recomend!), > > but it didn't change anything. Seems kinda absurd that the guys > > that wrote this don't fix it. There must be a rational reason for this. > > > > > > > > > > Don't forget to create the /dev/xpt0 device or again the cam (scsi) > > > interface library will fail to access your scsi device. > > > That should do it. I found all this out by doing a ktrace on "sane" > > > and examining the devices which it opened :( > > > > I ran scanimage with ktrace and it seems to be stopping when scanimage > > tried to access /usr/local/lib/libsane-net.so.1 which doesn't exist. > > Perhaps the port makefile is missing the install of libsane-net? > > I briefly looked at the makefile and didn't see where libsain-net > > is installed. > > > > -piet > > > > > > -- > Cheers, > david -- http://www.angelfire.com/wa/hobley > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 3:33:24 1999 Delivered-To: freebsd-ports@freebsd.org Received: from news-ma.rhein-neckar.de (news-ma.rhein-neckar.de [193.197.90.3]) by hub.freebsd.org (Postfix) with ESMTP id 580EA154D0 for ; Wed, 19 May 1999 03:33:11 -0700 (PDT) (envelope-from naddy@mips.rhein-neckar.de) Received: from mips.rhein-neckar.de (uucp@localhost) by news-ma.rhein-neckar.de (8.8.8/8.8.8) with bsmtp id MAA14017 for freebsd-ports@freebsd.org; Wed, 19 May 1999 12:33:07 +0200 (CEST) (envelope-from naddy@mips.rhein-neckar.de) Received: by mips.rhein-neckar.de id m10k3DM-000WyXC (Debian Smail-3.2.0.101 1997-Dec-17 #2); Wed, 19 May 1999 12:04:40 +0200 (CEST) From: naddy@mips.rhein-neckar.de (Christian Weisgerber) Subject: Re: How does one claim a port? Date: 19 May 1999 12:04:37 +0200 Message-ID: <7hu2bl$p5j$1@mips.rhein-neckar.de> References: <19990518170419.A65722@bantu.cl.msu.edu> To: freebsd-ports@freebsd.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Bill Fumerola wrote: > Next time the port needs updating, send an update that changes the version > and the MAINTAINER as well. Which reminds me: Should problems with ports, updates, etc preferably be discussed with the maintainer first or be submitted with send-pr? -- Christian "naddy" Weisgerber naddy@mips.rhein-neckar.de LinuxTag '99 - 26./27. Juni, Uni Kaiserslautern - http://www.linuxtag.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 3:54:17 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mail.wr.com.au (wr.com.au [203.12.42.10]) by hub.freebsd.org (Postfix) with ESMTP id 8FB9214DE1 for ; Wed, 19 May 1999 03:54:10 -0700 (PDT) (envelope-from davidh@wr.com.au) Received: from ishtar.wr.com.au (dialup129.wr.com.au [203.27.69.129]) by mail.wr.com.au (8.8.7/8.8.7) with ESMTP id UAA14126; Wed, 19 May 1999 20:27:51 +1000 (EST) Received: by ishtar.wr.com.au (Postfix, from userid 1411) id D93D2CD; Wed, 19 May 1999 20:32:26 +1000 (EST) Message-ID: <19990519203226.A17799@wr.com.au> Date: Wed, 19 May 1999 20:32:26 +1000 From: David Hobley To: Piet Delaney , davidh@progmatics.com.au, hasty@netcom.com Cc: freebsd-ports@freebsd.org, obrien@nuxi.com, piet@hpfsvr02.cup.hp.com, piet@piet.net, sane-devel@mostang.com Subject: Re: Sane 1.0.1 - Looks like /usr/local/lib/libsaine-net.so.1 wasn't installed. References: <199905190953.CAA11098@hpfsvr02.cup.hp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199905190953.CAA11098@hpfsvr02.cup.hp.com>; from Piet Delaney on Wed, May 19, 1999 at 02:53:18AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, May 19, 1999 at 02:53:18AM -0700, Piet Delaney wrote: > > > > Well, I have checked my config here. My dmesg reports: > > > > pt0 at ncr0 bus 0 target 5 lun 0 > > pt0: Fixed Processor SCSI-2 device > > pt0: 3.300MB/s transfers > > Perhaps your using on an old kernel. Mine comes up with pass0 and pass1 > so it's using the new (brooken?) CAM interface. Well, I am using a 4.0-current kernel immediately prior to the newbus merge. However the actual config dates back to a 3.0-current around last October or so. I guess I may be using an outdated driver. My other SCSI devices (disks) are definitely using CAM though, so I don't know. The date in the file is: # $Id: GENERIC,v 1.130 1998/11/03 22:01:21 des Exp $ > > My kernel is configured to have: > > > > device pt0 at scbus? # SCSI processor type > > device sctarg0 at scbus? # SCSI target > > Interesting. My GENERIC kernel config doesn't have this. > I'm using version 1.169 of GENERIC. What version are you using? > > Does your have a line: > > device pass0 Yes it does, but nothing appears to use it. > > For some reason, when I run scanimage --list-devices, > > In my case I think scanimage is looking for the wrong type of > objects in /usr/local/lib/sane. I have all .a and .dl files. > What are .dl files (dynamic link I assume). Seems sane is > looking for .so.1 files (shared objects). Yep - my /usr/local/lib/sane has .so and .so.1 files in it (built from the port). > > > > xscanimage hp:/dev/pt0 > > I don't recall the docs suggesting this : format? Where was that? > That style is usually used by X. So scanimage and xscanimage have > a different syntax for the device even though it's the same executable. > Boy talking about under-documented features. I think some OS specific > examples would be helpfull. Yeah - this one was buried deep somewhere. It specifies the driver followed by the device. > Sure does, but I'm still stuck. Not surprise Dave O'Brien gave up > on this turkey. It's not very close to the Microsoft plug and play > paradigm. > > I'll read the SANE 1.01 manual when I get home; might help. > Seems like the Indian Blind man story where every observer > has a different view of reality. I suppose that's being in-sane. > -- Cheers, david -- http://www.angelfire.com/wa/hobley To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 5: 6:35 1999 Delivered-To: freebsd-ports@freebsd.org Received: from diana.infonets.hiroshima-u.ac.jp (diana.infonets.hiroshima-u.ac.jp [133.41.33.53]) by hub.freebsd.org (Postfix) with ESMTP id 291CA14E33 for ; Wed, 19 May 1999 05:06:32 -0700 (PDT) (envelope-from taoka@infonets.hiroshima-u.ac.jp) Received: from peg.infonets.hiroshima-u.ac.jp (peg.infonets.hiroshima-u.ac.jp [133.41.33.64]) by diana.infonets.hiroshima-u.ac.jp (8.8.8/3.6W) with ESMTP id VAA14499; Wed, 19 May 1999 21:06:31 +0900 (JST) Received: from localhost (localhost.infonets.hiroshima-u.ac.jp [127.0.0.1]) by peg.infonets.hiroshima-u.ac.jp (8.9.2/3.6W) with ESMTP id VAA14511; Wed, 19 May 1999 21:06:30 +0900 (JST) To: kkennawa@physics.adelaide.edu.au Cc: freebsd-ports@freebsd.org Subject: Re: Do you need editors/xemacs{,20} (Re: pending/11618: new port: editors/xemacs21) From: TAOKA Satoshi In-Reply-To: Your message of "Tue, 18 May 1999 17:12:28 +0930 (CST)" References: X-Mailer: Mew version 1.93 on XEmacs 20.4 (Emerald) X-URL: http://www.infonets.hiroshima-u.ac.jp/~taoka/ Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19990519210630S.taoka@infonets.hiroshima-u.ac.jp> Date: Wed, 19 May 1999 21:06:30 +0900 X-Dispatcher: imput version 980905(IM100) Lines: 30 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From: Kris Kennaway Date: Tue, 18 May 1999 17:12:28 +0930 (CST) > > xemacs-21 is still in development, isn't it? Sorry. I thought xemacs-21 was released. > I'd prefer to keep the most > recent stable version in the tree; anything older can go for all I care. Off course!! From: Jacques Vidrine Date: Tue, 18 May 1999 09:10:55 -0500 > I recommend that you ask asami@freebsd.org to repository copy > ports/editors/xemacs20 to ports/editors/xemacs21, and do your > port upgrade there. Off course. I think so. By the way, are there a lot of users for xemacs-19 ? I think that we change editors/xemacs from 19 to 20.4, and 21.1 is imported as editors/xemacs-devel (by repository copy from editors/xemacs20(?) ). And, if xemacs-21 is released, it will be imported as editors/xemacs. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 6:28:40 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C5AB614D5B; Wed, 19 May 1999 06:28:39 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA23899; Wed, 19 May 1999 06:28:39 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Date: Wed, 19 May 1999 06:28:39 -0700 (PDT) From: Message-Id: <199905191328.GAA23899@freefall.freebsd.org> To: okazaki@be.to, taoka@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11638: [New port] ja-emacs-manual Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [New port] ja-emacs-manual State-Changed-From-To: open->closed State-Changed-By: taoka State-Changed-When: Wed May 19 06:28:01 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 6:29:51 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mail.comm.hq.af.mil (mail.comm.hq.af.mil [134.205.80.6]) by hub.freebsd.org (Postfix) with SMTP id 20E2E154C8 for ; Wed, 19 May 1999 06:29:25 -0700 (PDT) (envelope-from bsletten@nova.org) Received: from nova.org (sam-gatt0011.comm.hq.af.mil [134.205.87.92]) by mail.comm.hq.af.mil (8.6.5/8.6.5) with ESMTP id HAA09349; Wed, 19 May 1999 07:59:57 -0400 Message-ID: <3742BD33.43670202@nova.org> Date: Wed, 19 May 1999 09:31:31 -0400 From: Brian Sletten X-Mailer: Mozilla 4.51 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: "Matthew D. Fuller" Cc: matt , ports@FreeBSD.ORG Subject: Re: HRMMM... Communicator 4.6 Port. References: <19990519025301.B4947@futuresouth.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Already bitten by it (that'll teach me to jump at a chance to reduce > crash rates on Netscrape ;) Has anyone else seen problems with 4.6 yet? It's hosed X three times since I downloaded it the day it came out. There's nothing really different about the port from the distribution, is there? I am using Enlightenment and Gnome so they might be at fault, but 4.5 wouldn't usually take X out with it too... Just curious. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 6:31:39 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7912B14E2A; Wed, 19 May 1999 06:31:38 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA24411; Wed, 19 May 1999 06:31:38 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Date: Wed, 19 May 1999 06:31:38 -0700 (PDT) From: Message-Id: <199905191331.GAA24411@freefall.freebsd.org> To: rmiya@cc.hirosaki-u.ac.jp, taoka@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11665: ports tarballs (mopac7, psi88) cannot be get from www page Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports tarballs (mopac7, psi88) cannot be get from www page State-Changed-From-To: open->closed State-Changed-By: taoka State-Changed-When: Wed May 19 06:30:20 PDT 1999 State-Changed-Why: Already fixed To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 6:39:47 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 84EF5154D9; Wed, 19 May 1999 06:39:46 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA25691; Wed, 19 May 1999 06:39:46 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Date: Wed, 19 May 1999 06:39:46 -0700 (PDT) From: Message-Id: <199905191339.GAA25691@freefall.freebsd.org> To: rmiya@cc.hirosaki-u.ac.jp, taoka@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11649: New port: biology/ortep3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: biology/ortep3 State-Changed-From-To: open->closed State-Changed-By: taoka State-Changed-When: Wed May 19 06:39:01 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 6:40:16 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A46E0157C7; Wed, 19 May 1999 06:40:15 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Received: (from taoka@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA25818; Wed, 19 May 1999 06:40:15 -0700 (PDT) (envelope-from taoka@FreeBSD.org) Date: Wed, 19 May 1999 06:40:15 -0700 (PDT) From: Message-Id: <199905191340.GAA25818@freefall.freebsd.org> To: rmiya@cc.hirosaki-u.ac.jp, taoka@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11647: New port: biology/deft (Density Functional Molecular Orbital Calculation) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: biology/deft (Density Functional Molecular Orbital Calculation) State-Changed-From-To: open->closed State-Changed-By: taoka State-Changed-When: Wed May 19 06:39:52 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 7:10: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F98D14D11 for ; Wed, 19 May 1999 07:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA88132; Wed, 19 May 1999 07:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 19 May 1999 07:10:03 -0700 (PDT) Message-Id: <199905191410.HAA88132@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Inagaki Kentaro (=?iso-2022-jp?B?GyRCMHAzQDdyQkBPOhsoQg==?=) Subject: Re: ports/11599: New port: japanese/xdvik-vflib Reply-To: Inagaki Kentaro (=?iso-2022-jp?B?GyRCMHAzQDdyQkBPOhsoQg==?=) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11599; it has been noted by GNATS. From: Inagaki Kentaro (=?iso-2022-jp?B?GyRCMHAzQDdyQkBPOhsoQg==?=) To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/11599: New port: japanese/xdvik-vflib Date: Wed, 19 May 1999 23:01:52 +0900 update and bug fix. files/zeit.c.diff is added. diff -ruN xdvik-vflib.orig/Makefile xdvik-vflib/Makefile --- xdvik-vflib.orig/Makefile Tue May 4 21:17:27 1999 +++ xdvik-vflib/Makefile Wed May 19 22:55:49 1999 @@ -9,8 +9,12 @@ DISTNAME= xdvik-22.02 PKGNAME= ja-xdvik-vflib-22.02 CATEGORIES= japanese print -MASTER_SITES= ftp://ftp.ipc.chiba-u.ac.jp/pub/pub.yamaga/xdvik-22/ \ +MASTER_SITES= ftp://ftp.tex.ac.uk/tex-archive/dviware/xdvik/ \ + ftp://ftp.iij.ad.jp/pub/TeX/CTAN/dviware/xdvik/ \ + ftp://ftp.ipc.chiba-u.ac.jp/pub/pub.yamaga/xdvik-22/ \ + ftp://ftp.ascii.co.jp/pub/TeX/ascii-ptex/ptex218/web2c/ \ ${MASTER_SITE_LOCAL} +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ptex/plib-1.4-euc.tar.gz PATCH_SITES= ftp://ftp.ipc.chiba-u.ac.jp/pub/pub.yamaga/xdvik-22/ \ ${MASTER_SITE_LOCAL} @@ -20,7 +24,7 @@ MAINTAINER= inagaki@tg.rim.or.jp #RUN_DEPENDS= mf:${PORTSDIR}/japanese/ptex-common -#LIB_DEPENDS= VFlib2.24:${PORTSDIR}/japanese/vflib +LIB_DEPENDS= VFlib2.24:${PORTSDIR}/japanese/vflib EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} @@ -28,23 +32,31 @@ GNU_CONFIGURE=YES #CONFIGURE_ARGS= --enable-shared=yes \ CONFIGURE_ARGS= \ - --enable-bdpi=300 --enable-shrink=8 \ + --enable-a4 --enable-bdpi=300 --enable-shrink=8 \ --enable-xdviprint=${PREFIX}/libexec/xdviprint CONFIGURE_ENV= INSTALL="${INSTALL}" \ INSTALL_PROGRAM="${INSTALL_PROGRAM}" INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ INSTALL_DATA="${INSTALL_DATA}" INSTALL_MAN="${INSTALL_MAN}" SCRIPTS_ENV= MV=${MV} SED=${SED} VFFONTS= .:${PREFIX}/share/fonts/makejvf// -TFMFONTS= .:${PREFIX}/share/fonts/makejvf// -PKFONTS= .:${PREFIX}/lib/fonts/pk300// +TFMFONTS= .:${PREFIX}/share/fonts/{makejvf:tfm/ptex}// +PKFONTS= .:${PREFIX}/lib/fonts/pk{118:240:300:360:400:600}// MAKE_ENV= XDEFS="-DDEFAULT_VFFONTS='"\"\\\"${VFFONTS}\\\""\"' -DDEFAULT_TFMFONTS='"\"\\\"${TFMFONTS}\\\""\"' -DDEFAULT_PKFONTS='"\"\\\"${PKFONTS}\\\""\"'" MAN1=xdvi.1 TEXMF= ${PREFIX}/share/texmf VARTEXFONTS=/var/tmp/texfonts XDVIDIR= ${TEXMF}/xdvi -MAKETEX_MODE?=ljfour -DVIPS?= dvipsk +PTEXTFMDIR= ${PREFIX}/share/fonts/tfm/ptex +MAKETEX_MODE?= ljfour +DVIPS?= dvipsk + +PTEXTFM=goth10.tfm goth5.tfm goth6.tfm goth7.tfm goth8.tfm goth9.tfm \ + min10.tfm min5.tfm min6.tfm min7.tfm min8.tfm min9.tfm \ + ngoth10.tfm ngoth5.tfm ngoth6.tfm ngoth7.tfm ngoth8.tfm ngoth9.tfm \ + nmin10.tfm nmin5.tfm nmin6.tfm nmin7.tfm nmin8.tfm nmin9.tfm \ + tgoth10.tfm tgoth5.tfm tgoth6.tfm tgoth7.tfm tgoth8.tfm tgoth9.tfm \ + tmin10.tfm tmin5.tfm tmin6.tfm tmin7.tfm tmin8.tfm tmin9.tfm DOCS= FAQ \ xdvi.icon \ @@ -65,7 +77,7 @@ READMEs/README.xdvik18f-j1.1p5.patch \ READMEs/README.xdvik20a-j1.1.patch \ READMEs/README.xdvik20c-j1.0+hal2+dvisel \ - READMEs/README.xdvik20c-j1.0p1.patch + READMEs/README.xdvik20c-j1.0p1.patch # ****************** # DVIPS: @@ -104,11 +116,26 @@ ${ECHO} "* Please refer to Makefile about a change. *"; \ ${ECHO} "************************************************************") +post-extract: + @${TAR} -C ${WRKDIR}/ -zxf ${DISTDIR}/ptex/plib-1.4-euc.tar.gz \ + texmf/fonts/tfm/ptex + +post-patch: + @${CAT} ${FILESDIR}/zeit.c.diff | ${PATCH} -p1 -s -d ${WRKSRC} + pre-build: @(cd ${WRKSRC} ; find . -name '*.orig' -exec ${RM} -f {} \;) +pre-install: + @${MKDIR} ${PTEXTFMDIR} + @for i in ${PTEXTFM} ; do \ + ${INSTALL_DATA} ${WRKDIR}/texmf/fonts/tfm/ptex/$$i \ + ${PTEXTFMDIR} ; \ + done + do-install: - @(cd ${WRKSRC}/texk/xdvik ; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${INSTALL_TARGET}) + @(cd ${WRKSRC}/texk/xdvik ; ${SETENV} ${MAKE_ENV} ${GMAKE} \ + ${MAKE_FLAGS} ${MAKEFILE} ${INSTALL_TARGET}) post-install: @$(INSTALL_DATA) $(FILESDIR)/vfontmap $(XDVIDIR) diff -ruN xdvik-vflib.orig/files/md5 xdvik-vflib/files/md5 --- xdvik-vflib.orig/files/md5 Tue May 4 20:25:42 1999 +++ xdvik-vflib/files/md5 Wed May 19 21:59:16 1999 @@ -1,2 +1,3 @@ MD5 (xdvik-22.02.tar.gz) = 1a331c609753e9eb6a099fef2eda595e +MD5 (ptex/plib-1.4-euc.tar.gz) = 8913238d89fd1d4a57e9853a91c76c4d MD5 (xdvik-22.02-j1.02.patch.gz) = fbb1a3a85dae5fd7710332435298e148 diff -ruN xdvik-vflib.orig/files/vfontmap xdvik-vflib/files/vfontmap --- xdvik-vflib.orig/files/vfontmap Thu Apr 8 20:46:45 1999 +++ xdvik-vflib/files/vfontmap Wed May 19 21:48:05 1999 @@ -1,10 +1,11 @@ -min min # for ASCII +min min # for ASCII nmin min # for ASCII goth goth # for ASCII ngoth goth # for ASCII -dm min # for NTT -dg goth # for NTT + +dm min # for NTT +dg goth # for NTT mgoth maru fmin fmin diff -ruN xdvik-vflib.orig/files/zeit.c.diff xdvik-vflib/files/zeit.c.diff --- xdvik-vflib.orig/files/zeit.c.diff Thu Jan 1 09:00:00 1970 +++ xdvik-vflib/files/zeit.c.diff Wed May 19 20:43:14 1999 @@ -0,0 +1,37 @@ +--- xdvik-22.05b/texk/xdvik/zeit.c.orig Sun May 16 18:57:03 1999 ++++ xdvik-22.05b/texk/xdvik/zeit.c Sun May 16 18:58:51 1999 +@@ -225,7 +225,7 @@ + for (h = 0; h < bm->h; h++) { + unsigned char *p = (unsigned char *) &bm->bits[h * bwidth]; + +- if (d2 > 0) ++ if (d2 > 0) { + for (w = 0; w < bwidth - 1; w++) { + unsigned int word; + +@@ -233,6 +233,8 @@ + word <<= d2; + *(p + w) = word >> 8; + } ++ *(p + bwidth - 1) = *(p + bwidth - 1) << d2; ++ } + + for (w = 0; w < bwidth; w++) + *(p + w) = (w < bwidth - d1) ? *(p + w + d1) : 0; +@@ -244,7 +246,7 @@ + for (h = 0; h < bm->h; h++) { + unsigned char *p = (unsigned char *) &bm->bits[h * bwidth]; + +- if (d2 > 0) ++ if (d2 > 0) { + for (w = bwidth - 1; 0 < w; w--) { + unsigned int word; + +@@ -253,6 +255,7 @@ + *(p + w) = word & 0xff; + } + *p = *p >> d2; ++ } + + for (w = bwidth - 1; w <= 0; w++) + *(p + w) = (w > d1) ? *(p + w - d1) : 0; diff -ruN xdvik-vflib.orig/pkg/DESCR xdvik-vflib/pkg/DESCR --- xdvik-vflib.orig/pkg/DESCR Tue May 4 22:29:39 1999 +++ xdvik-vflib/pkg/DESCR Wed May 19 21:23:08 1999 @@ -10,5 +10,6 @@ 6. print out from this program (use lpr). 7. convert dvi -> ps (default use japanese/dvipsk). -- Kentarou Inagaki +---- +Kentaro Inagaki inagaki@tg.rim.or.jp diff -ruN xdvik-vflib.orig/pkg/PLIST xdvik-vflib/pkg/PLIST --- xdvik-vflib.orig/pkg/PLIST Thu Apr 8 22:11:00 1999 +++ xdvik-vflib/pkg/PLIST Wed May 19 21:47:22 1999 @@ -24,5 +24,43 @@ share/doc/xdvi/README.xdvik20a-j1.1.patch share/doc/xdvi/README.xdvik20c-j1.0+hal2+dvisel share/doc/xdvi/README.xdvik20c-j1.0p1.patch +share/fonts/tfm/ptex/goth10.tfm +share/fonts/tfm/ptex/goth5.tfm +share/fonts/tfm/ptex/goth6.tfm +share/fonts/tfm/ptex/goth7.tfm +share/fonts/tfm/ptex/goth8.tfm +share/fonts/tfm/ptex/goth9.tfm +share/fonts/tfm/ptex/min10.tfm +share/fonts/tfm/ptex/min5.tfm +share/fonts/tfm/ptex/min6.tfm +share/fonts/tfm/ptex/min7.tfm +share/fonts/tfm/ptex/min8.tfm +share/fonts/tfm/ptex/min9.tfm +share/fonts/tfm/ptex/ngoth10.tfm +share/fonts/tfm/ptex/ngoth5.tfm +share/fonts/tfm/ptex/ngoth6.tfm +share/fonts/tfm/ptex/ngoth7.tfm +share/fonts/tfm/ptex/ngoth8.tfm +share/fonts/tfm/ptex/ngoth9.tfm +share/fonts/tfm/ptex/nmin10.tfm +share/fonts/tfm/ptex/nmin5.tfm +share/fonts/tfm/ptex/nmin6.tfm +share/fonts/tfm/ptex/nmin7.tfm +share/fonts/tfm/ptex/nmin8.tfm +share/fonts/tfm/ptex/nmin9.tfm +share/fonts/tfm/ptex/tgoth10.tfm +share/fonts/tfm/ptex/tgoth5.tfm +share/fonts/tfm/ptex/tgoth6.tfm +share/fonts/tfm/ptex/tgoth7.tfm +share/fonts/tfm/ptex/tgoth8.tfm +share/fonts/tfm/ptex/tgoth9.tfm +share/fonts/tfm/ptex/tmin10.tfm +share/fonts/tfm/ptex/tmin5.tfm +share/fonts/tfm/ptex/tmin6.tfm +share/fonts/tfm/ptex/tmin7.tfm +share/fonts/tfm/ptex/tmin8.tfm +share/fonts/tfm/ptex/tmin9.tfm @dirrm share/texmf/xdvi +@dirrm share/fonts/tfm/ptex +@dirrm share/fonts/tfm @dirrm share/doc/xdvi ---- Kentaro Inagaki inagaki@tg.rim.or.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 7:23:47 1999 Delivered-To: freebsd-ports@freebsd.org Received: from Argon.Mlink.NET (Argon.Mlink.NET [205.236.182.18]) by hub.freebsd.org (Postfix) with ESMTP id 43FA814CCA for ; Wed, 19 May 1999 07:23:44 -0700 (PDT) (envelope-from matt@Mlink.NET) Received: from ns-1.ccia.cc (matt@ns-1.ccia.cc [209.104.81.126]) by Argon.Mlink.NET (8.8.8/8.8.2) with ESMTP id KAA01322; Wed, 19 May 1999 10:21:24 -0400 (EDT) Date: Wed, 19 May 1999 10:23:08 -0400 (EDT) From: matt X-Sender: matt@ns-1.ccia.cc To: Brian Sletten Cc: "Matthew D. Fuller" , ports@FreeBSD.ORG Subject: Re: HRMMM... Communicator 4.6 Port. In-Reply-To: <3742BD33.43670202@nova.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 Wed, 19 May 1999, Brian Sletten wrote: [...] : Has anyone else seen problems with 4.6 yet? It's hosed X three times : since I downloaded it the day it came out. There's nothing really : different about the port from the distribution, is there? No, there isn't much difference between 4.51 and 4.6 that I can tell, but well maybe it's just my imagination.. but 4.6 seems to run faster on my system now... I'm using WindowMaker w/ 3.1-R : I am using Enlightenment and Gnome so they might be at fault, but 4.5 : wouldn't usually take X out with it too... : : Just curious. : : Thanks. -- Mail: matt@mlink.net && matt@ccia.cc @IRC: irc.idirect.ca && mlink.ca.relic.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 8: 0: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2276815520 for ; Wed, 19 May 1999 08:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA94354; Wed, 19 May 1999 08:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 7BEFB155DE; Wed, 19 May 1999 07:51:07 -0700 (PDT) Message-Id: <19990519145107.7BEFB155DE@hub.freebsd.org> Date: Wed, 19 May 1999 07:51:07 -0700 (PDT) From: m.seaman@inpharmatica.co.uk To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11781: Option to not use X windows support wherever possible Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11781 >Category: ports >Synopsis: Option to not use X windows support wherever possible >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 May 19 08:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Matthew Seaman >Release: 3.2-STABLE of 19990519 >Organization: Inpharmatica Ltd. >Environment: uname -a FreeBSD b9.farm.inpharmatica.co.uk 3.2-STABLE FreeBSD 3.2-STABLE #0: Wed May 19 13:27:30 BST 1999 matthew@b9.farm.inpharmatica.co.uk:/usr/src/sys/compile/FARM alpha >Description: Certain ports could optionally be built without X windows support: for example editors/emacs20 --- the underlying GNU autoconf mechanism supports a `--with-x=no' argument. In cases like this I suggest that X windows support should be excluded conditionally on setting an environment variable, eg. `NO_X' >How-To-Repeat: cd /usr/ports/editors/emacs20 make >Fix: diff -u Makefile Makefile.no-x --- Makefile Thu Mar 11 21:47:10 1999 +++ Makefile.no-x Wed May 19 15:28:53 1999 @@ -16,10 +16,16 @@ Y2K= http://www.gnu.org/software/year2000.html USE_AUTOCONF= yes +.if !defined(NO_X) USE_XLIB= yes +.endif USE_GMAKE= yes CONFIGURE_TARGET= ${MACHINE_ARCH}--freebsd +.if !defined(NO_X) CONFIGURE_ARGS= --with-x-toolkit --with-pop +.else +CONFIGURE_ARGS= --with-x=no --with-pop +.endif MAKE_ENV= INSTALL_SCRIPT="${INSTALL_SCRIPT}" MAN1= emacs.1 etags.1 ctags.1 >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 May 19 8: 0: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 73C7C155CE for ; Wed, 19 May 1999 08:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA94360; Wed, 19 May 1999 08:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 19 May 1999 08:00:03 -0700 (PDT) Message-Id: <199905191500.IAA94360@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: sada@rr.IIJ4U.OR.JP (SADA Kenji) Subject: Re: ports/11752: new port: www/netscape46-communicator Reply-To: sada@rr.IIJ4U.OR.JP (SADA Kenji) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11752; it has been noted by GNATS. From: sada@rr.IIJ4U.OR.JP (SADA Kenji) To: asami@FreeBSD.ORG Cc: sada@rr.iij4u.or.jp, thepish@FreeBSD.ORG, FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/11752: new port: www/netscape46-communicator Date: 19 May 1999 23:59:33 +0900 This is sada from Nagoya. >> This is asami from Santa Clara (originally from Nagoya :). Oh, I've never heard of it ! \(^o^)/ >> Ok, done. TNX. >> * Hm, if netscape46-* are treated as just upgrade of netscape45-*, >> * who should be a maintainer of them ? >> >> n45-n says "ports@freebsd.org" so go ahead and claim that one. n45-c >> is maintained by thepish so wait for his response for a while before >> changing the maintainer line (and possibly deleting n45-c). All right about maintainer line. However I'm anxious about deleting n45-*, because n46-* couldn't utilize Fortify yet, so some one could still need n45-*. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 9: 0: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DE2FF14C28 for ; Wed, 19 May 1999 09:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA02272; Wed, 19 May 1999 09:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 19 May 1999 09:00:02 -0700 (PDT) Message-Id: <199905191600.JAA02272@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Inagaki Kentaro (=?iso-2022-jp?B?GyRCMHAzQDdyQkBPOhsoQg==?=) Subject: Re: ports/11599: New port: japanese/xdvik-vflib Reply-To: Inagaki Kentaro (=?iso-2022-jp?B?GyRCMHAzQDdyQkBPOhsoQg==?=) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11599; it has been noted by GNATS. From: Inagaki Kentaro (=?iso-2022-jp?B?GyRCMHAzQDdyQkBPOhsoQg==?=) To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/11599: New port: japanese/xdvik-vflib Date: Thu, 20 May 1999 00:55:39 +0900 update and bug fix. pkg/MESSAGE is added. diff -ruN xdvik-vflib.orig/Makefile xdvik-vflib/Makefile --- xdvik-vflib.orig/Makefile Thu May 20 00:52:48 1999 +++ xdvik-vflib/Makefile Thu May 20 00:15:37 1999 @@ -93,17 +93,13 @@ # ****************** .if ${DVIPS} == dvi2ps -RUN_DEPENDS+= dvi2ps:${PORTSDIR}/japanese/dvi2ps CONFIGURE_ARGS+= --with-dvifilter=dvi2ps .elif ${DVIPS} == dvipsk-vflib -RUN_DEPENDS+= dvips:${PORTSDIR}/japanese/dvipsk-vflib CONFIGURE_ARGS+= --with-dvifilter=dvips .elif ${DVIPS} == dvipsk -RUN_DEPENDS+= dvips:${PORTSDIR}/japanese/dvipsk CONFIGURE_ARGS+= --with-dvifilter=dvips .else DVIPS=dvipsk -RUN_DEPENDS+= dvips:${PORTSDIR}/japanese/dvipsk CONFIGURE_ARGS+= --with-dvifilter=dvips .endif @@ -145,5 +141,6 @@ ${INSTALL_DATA} ${WRKSRC}/texk/xdvik/$$i ${PREFIX}/share/doc/xdvi ; \ done .endif + @${CAT} ${PKGDIR}/MESSAGE .include diff -ruN xdvik-vflib.orig/pkg/MESSAGE xdvik-vflib/pkg/MESSAGE --- xdvik-vflib.orig/pkg/MESSAGE Thu Jan 1 09:00:00 1970 +++ xdvik-vflib/pkg/MESSAGE Thu May 20 00:40:29 1999 @@ -0,0 +1,21 @@ +********************************************************************** +******************* ATTENTION ********** ATTENTION ******************* +********************************************************************** +This port/package requires which whether of japanese/ptex-common and +print/pkfont*. + +If you do not install japanese/ptex-*you must install print/pkfont*. + +Also, you must install any of japanese/dvipsk or japanese/dvipsk-vflib, +if you even a printing want to cause to this port/package. + +If you want to use japanese/dvi2ps on a printing you must edit +${PREFIX}/libexec/xdviprint, whether or not this port/package is compiled +once again. Although it is an easy case it will had better not do it. + +ps. +For the people who, do not do a printing or request a different choice +this port/package is not defining reliance relation purposely :-) + +Kentaro Inagaki +********************************************************************** ---- Kentaro Inagaki inagaki@tg.rim.or.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 10:10: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 973081500B for ; Wed, 19 May 1999 10:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA09163; Wed, 19 May 1999 10:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id 1A96714DA5 for ; Wed, 19 May 1999 10:00:07 -0700 (PDT) (envelope-from eoin@maths.tcd.ie) Received: from gosset.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 19 May 99 18:00:07 +0100 (BST) Message-Id: <199905191800.aa95525@gosset.maths.tcd.ie> Date: Wed, 19 May 1999 18:00:07 +0100 (BST) From: eoin@maths.tcd.ie Reply-To: eoin@maths.tcd.ie To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11783: ParMETIS-2.0 port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11783 >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: Wed May 19 10:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Eoin Lawless >Release: FreeBSD 3.1-STABLE i386 >Organization: >Environment: >Description: New port - ParMETIS-2.0. This is a parallel version of the metis package already in /usr/ports/math. It depends on mpich. >How-To-Repeat: # 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: # # parmetis # parmetis/files # parmetis/files/md5 # parmetis/patches # parmetis/patches/patch-aa # parmetis/pkg # parmetis/pkg/COMMENT # parmetis/pkg/DESCR # parmetis/pkg/PLIST # parmetis/Makefile # echo c - parmetis mkdir -p parmetis > /dev/null 2>&1 echo c - parmetis/files mkdir -p parmetis/files > /dev/null 2>&1 echo x - parmetis/files/md5 sed 's/^X//' >parmetis/files/md5 << 'END-of-parmetis/files/md5' XMD5 (ParMetis-2.0.tar.gz) = 18bc0ce30a2157c3ac97fc3220fd9720 END-of-parmetis/files/md5 echo c - parmetis/patches mkdir -p parmetis/patches > /dev/null 2>&1 echo x - parmetis/patches/patch-aa sed 's/^X//' >parmetis/patches/patch-aa << 'END-of-parmetis/patches/patch-aa' X--- ParMETISLib/parmetis.h.orig Wed May 19 17:32:56 1999 X+++ ParMETISLib/parmetis.h Wed May 19 17:33:05 1999 X@@ -14,7 +14,6 @@ X X #include X #include X-#include X #include X #include X #include END-of-parmetis/patches/patch-aa echo c - parmetis/pkg mkdir -p parmetis/pkg > /dev/null 2>&1 echo x - parmetis/pkg/COMMENT sed 's/^X//' >parmetis/pkg/COMMENT << 'END-of-parmetis/pkg/COMMENT' XA package for parallel (mpi) unstructured graph partitioning. END-of-parmetis/pkg/COMMENT echo x - parmetis/pkg/DESCR sed 's/^X//' >parmetis/pkg/DESCR << 'END-of-parmetis/pkg/DESCR' XParMETIS is an MPI-based parallel library that implements a variety Xof algorithms for partitioning unstructured graphs and for computing Xfill-reducing orderings of sparse matrices. ParMETIS extends the Xfunctionality provided by METIS and includes routines that are Xespecially suited for parallel AMR computations and large scale Xnumerical simulations. The algorithms implemented in ParMETIS are Xbased on the parallel multilevel k-way graph-partitioning algorithms Xdescribed in [KK95d], [KK96], [KK97], and the adaptive repartitioning Xalgorithms described in [SKK97a], [SKK97b], [SK+98], and [SKK98]. END-of-parmetis/pkg/DESCR echo x - parmetis/pkg/PLIST sed 's/^X//' >parmetis/pkg/PLIST << 'END-of-parmetis/pkg/PLIST' Xlib/parmetis/libmetis.a Xlib/parmetis/libparmetis.a Xinclude/parmetis/parmetis.h Xshare/doc/ParMETIS/manual.ps X@dirrm lib/parmetis X@dirrm share/doc/ParMETIS END-of-parmetis/pkg/PLIST echo x - parmetis/Makefile sed 's/^X//' >parmetis/Makefile << 'END-of-parmetis/Makefile' X# New ports collection makefile for: ParMETIS X# Version required: 2.0 X# Date created: 19 May 99 X# Whom: Eoin Lawless (eoin@maths.tcd.ie) X# X# $Id$ X# X XDISTNAME= ParMetis-2.0 XCATEGORIES= math XMASTER_SITES= http://www-users.cs.umn.edu/~karypis/metis/parmetis/files/ X XMAINTAINER= eoin@maths.tcd.ie X XRUN_DEPENDS= $(PREFIX)/mpich/bin/mpirun:${PORTSDIR}/net/mpich XBUILD_DEPENDS= $(PREFIX)/mpich/bin/mpicc:${PORTSDIR}/net/mpich X XALL_TARGET= X Xdo-install: X ${MKDIR} $(PREFIX)/lib/parmetis X $(INSTALL_DATA) $(WRKSRC)/libmetis.a $(PREFIX)/lib/parmetis X $(INSTALL_DATA) $(WRKSRC)/libparmetis.a $(PREFIX)/lib/parmetis X ${MKDIR} $(PREFIX)/include/parmetis X $(INSTALL_DATA) $(WRKSRC)/parmetis.h $(PREFIX)/include/parmetis X.if !defined(NOPORTDOCS) X ${MKDIR} $(PREFIX)/share/doc/ParMETIS X $(INSTALL_DATA) ${WRKSRC}/Doc/manual.ps $(PREFIX)/share/doc/ParMETIS X.endif X X.include END-of-parmetis/Makefile exit >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 Wed May 19 11:12:36 1999 Delivered-To: freebsd-ports@freebsd.org Received: from bantu.cl.msu.edu (bantu.cl.msu.edu [35.8.3.18]) by hub.freebsd.org (Postfix) with ESMTP id 14F0414F92 for ; Wed, 19 May 1999 11:11:57 -0700 (PDT) (envelope-from dervish@bantu.cl.msu.edu) Received: (from dervish@localhost) by bantu.cl.msu.edu (8.9.3/8.9.3) id OAA67989; Wed, 19 May 1999 14:09:04 -0400 (EDT) (envelope-from dervish) Date: Wed, 19 May 1999 14:09:04 -0400 From: bush doctor To: Bill Fumerola Cc: ports@freebsd.org, dervish@ikhala.tcimet.net Subject: Re: How does one claim a port? Message-ID: <19990519140904.A67965@bantu.cl.msu.edu> References: <19990518170419.A65722@bantu.cl.msu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: ; from Bill Fumerola on Tue, May 18, 1999 at 12:57:18PM -0400 X-Operating-System: FreeBSD 4.0-CURRENT i386 X-PGP-Fingerprint: 35 95 F8 63 DA 5B 32 51 8F A9 AC 3C B4 74 F3 BA WWW-Home-Page: http://www.msu.edu/~ikhala Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Quoting Bill Fumerola (billf@chc-chimes.com): > On Tue, 18 May 1999, bush doctor wrote: > > > How does one claim a port whose Maintainer is "ports@freebsd.org"? > > I now in the handbook it tells how to make a port, but I was never clear > > on how to take on an existing port. > > Next time the port needs updating, send an update that changes the version > and the MAINTAINER as well. Now I may be slow, but just to be clear if the port does not need to be updated and one wants to become the maintainer we should send an update that changes the MAINTAINER only? > > - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - > - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - > > > #;^) -- So ya want ta here da roots? Dem that feels it knows it ... bush doctor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 11:22:23 1999 Delivered-To: freebsd-ports@freebsd.org Received: from hp9000.chc-chimes.com (unknown [206.67.97.84]) by hub.freebsd.org (Postfix) with ESMTP id 7600815164 for ; Wed, 19 May 1999 11:20:59 -0700 (PDT) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA069952767; Wed, 19 May 1999 10:06:07 -0400 Date: Wed, 19 May 1999 10:06:07 -0400 (EDT) From: Bill Fumerola To: Christian Weisgerber Cc: freebsd-ports@FreeBSD.ORG Subject: Re: How does one claim a port? In-Reply-To: <7hu2bl$p5j$1@mips.rhein-neckar.de> 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 19 May 1999, Christian Weisgerber wrote: > Which reminds me: Should problems with ports, updates, etc preferably be > discussed with the maintainer first or be submitted with send-pr? Maintainer, then send-pr. If the Maintainer is unresponsive(even I am at times) send-pr. If the maintainer is a committer, send-pr, it should get assigned to the maintainer. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.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 Wed May 19 11:29:27 1999 Delivered-To: freebsd-ports@freebsd.org Received: from hp9000.chc-chimes.com (unknown [206.67.97.84]) by hub.freebsd.org (Postfix) with ESMTP id 19F0F14E16 for ; Wed, 19 May 1999 11:28:04 -0700 (PDT) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA069582481; Wed, 19 May 1999 10:01:21 -0400 Date: Wed, 19 May 1999 10:01:21 -0400 (EDT) From: Bill Fumerola To: Piet Delaney Cc: davidh@wr.com.au, davidh@progmatics.com.au, sane-devel@mostang.com, freebsd-ports@FreeBSD.ORG Subject: Re: Setting up SANE on FreeBSD with an on Board Adaptec SCSI Controler In-Reply-To: <199905190532.WAA10608@hpfsvr02.cup.hp.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 On Tue, 18 May 1999, Piet Delaney wrote: > > But, in /usr/local/lib/sane there is a config file which has to > > point to the right /dev entry. > > I didn`t see it; just looked like linker archives. This file doesn't belong there, anyways. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.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 Wed May 19 11:32:44 1999 Delivered-To: freebsd-ports@freebsd.org Received: from hp9000.chc-chimes.com (unknown [206.67.97.84]) by hub.freebsd.org (Postfix) with ESMTP id 4553514E2B for ; Wed, 19 May 1999 11:31:21 -0700 (PDT) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA075253410; Wed, 19 May 1999 10:16:50 -0400 Date: Wed, 19 May 1999 10:16:50 -0400 (EDT) From: Bill Fumerola To: bush doctor Cc: ports@freebsd.org, dervish@ikhala.tcimet.net Subject: Re: How does one claim a port? In-Reply-To: <19990519140904.A67965@bantu.cl.msu.edu> 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 Wed, 19 May 1999, bush doctor wrote: > Now I may be slow, but just to be clear if the port does not need to be updated > and one wants to become the maintainer we should send an update that changes > the MAINTAINER only? I guess you could file a change of maintainership PR. It would just be low priority. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.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 Wed May 19 11:40: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 576B714E2B for ; Wed, 19 May 1999 11:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA21568; Wed, 19 May 1999 11:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 6224614DF2; Wed, 19 May 1999 11:31:00 -0700 (PDT) Message-Id: <19990519183100.6224614DF2@hub.freebsd.org> Date: Wed, 19 May 1999 11:31:00 -0700 (PDT) From: mvh@ix.netcom.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11784: Bind 8.2 port missing patch file Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11784 >Category: ports >Synopsis: Bind 8.2 port missing patch file >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 May 19 11:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Mike Harding >Release: 3.2-STABLE >Organization: stamps.com >Environment: >Description: The Bind 8.2 port does not include the patch file available on the isc site. This patch may fix a memory leak or crash problem with lame delegations, making 8.2 less stable. As 8.2 is the only supported version in the 8 tree right now, it should be kept up to date. >How-To-Repeat: Examine ISC site and Bind 8 port >Fix: Include the patch in the port >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 May 19 11:40:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D15FA1527D for ; Wed, 19 May 1999 11:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA21596; Wed, 19 May 1999 11:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 01D5C14E2B; Wed, 19 May 1999 11:33:55 -0700 (PDT) Message-Id: <19990519183355.01D5C14E2B@hub.freebsd.org> Date: Wed, 19 May 1999 11:33:55 -0700 (PDT) From: mvh@ix.netcom.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11786: gnupg-0.9.6 port does not install Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11786 >Category: ports >Synopsis: gnupg-0.9.6 port does not install >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: Wed May 19 11:40:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Mike Harding >Release: 3.2-STABLE >Organization: stamps.com >Environment: reeBSD medusa.stamps.com 3.2-STABLE FreeBSD 3.2-STABLE #1: Mon May 17 15:43:16 PDT 1999 root@medusa.stamps.com:/usr/src/sys/compile/STAMPS i386 >Description: gnupg port install hangs forever at: cc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -O -pipe -Wall -Wcast-align -Wshado w -Wstrict-prototypes -c mpiutil.c cc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -O -pipe -Wall -Wcast-align -Wshado w -Wstrict-prototypes -c g10m.c cc -E -I../include -DHAVE_CONFIG_H -I. -I. -I.. mpih-mul1.S | grep -v '^#' >tmp-mpi h-mul1.s cc -O -pipe -Wall -Wcast-align -Wshadow -Wstrict-prototypes -c tmp-mpih-mul1.s tmp-mpih-mull.S is an empty file at this point. >How-To-Repeat: Update the ports directory and try to install /usr/ports/security/gnupg >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 Wed May 19 12:10: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8FE57155E2 for ; Wed, 19 May 1999 12:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA25874; Wed, 19 May 1999 12:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from dominik.saargate.de (domi.saargate.de [212.88.132.246]) by hub.freebsd.org (Postfix) with ESMTP id 3711C151A2 for ; Wed, 19 May 1999 12:05:10 -0700 (PDT) (envelope-from domi@saargate.de) Received: from localhost (localhost [127.0.0.1]) by dominik.saargate.de (8.9.3/8.8.7) with ESMTP id VAA34938 for ; Tue, 18 May 1999 21:37:45 +0200 (CEST) (envelope-from domi@saargate.de) Message-Id: Date: Tue, 18 May 1999 21:37:44 +0200 (CEST) From: Dominik Brettnacher To: FreeBSD-gnats-submit@freebsd.org Subject: ports/11787: New port: gpasman-1.1.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11787 >Category: ports >Synopsis: New port: gpasman-1.1.3 >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 May 19 12:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dominik Brettnacher >Release: FreeBSD 3.1-STABLE i386 >Organization: >Environment: >Description: >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # gpasman # gpasman/files # gpasman/files/md5 # gpasman/patches # gpasman/patches/patch-ab # gpasman/patches/patch-aa # gpasman/pkg # gpasman/pkg/COMMENT # gpasman/pkg/DESCR # gpasman/pkg/PLIST # gpasman/Makefile # echo c - gpasman mkdir -p gpasman > /dev/null 2>&1 echo c - gpasman/files mkdir -p gpasman/files > /dev/null 2>&1 echo x - gpasman/files/md5 sed 's/^X//' >gpasman/files/md5 << 'END-of-gpasman/files/md5' XMD5 (gpasman-1.1.3.tar.gz) = 866e9e87fa7df0bc0c627ebaa3c36166 END-of-gpasman/files/md5 echo c - gpasman/patches mkdir -p gpasman/patches > /dev/null 2>&1 echo x - gpasman/patches/patch-ab sed 's/^X//' >gpasman/patches/patch-ab << 'END-of-gpasman/patches/patch-ab' X--- configure.orig Thu May 6 05:46:20 1999 X+++ configure Mon May 10 19:06:10 1999 X@@ -871,8 +871,8 @@ X done X test -n "$strip" || strip="/usr/bin/strip" X X-# Extract the first word of "gtk-config", so it can be a program name with args. X-set dummy gtk-config; ac_word=$2 X+# Extract the first word of "gtk12-config", so it can be a program name with args. X+set dummy gtk12-config; ac_word=$2 X echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 X echo "configure:878: checking for $ac_word" >&5 X if eval "test \"`echo '$''{'ac_cv_path_GTKCONFIG'+set}'`\" = set"; then END-of-gpasman/patches/patch-ab echo x - gpasman/patches/patch-aa sed 's/^X//' >gpasman/patches/patch-aa << 'END-of-gpasman/patches/patch-aa' X--- configure.in.orig Thu May 6 05:37:14 1999 X+++ configure.in Mon May 10 19:06:10 1999 X@@ -7,7 +7,7 @@ X AC_PROG_CC X AC_PROG_INSTALL X AC_PATH_PROGS(strip, strip, /usr/bin/strip) X-AC_PATH_PROG(GTKCONFIG,gtk-config) X+AC_PATH_PROG(GTKCONFIG,gtk12-config) X X dnl Check for architecture X AC_C_BIGENDIAN END-of-gpasman/patches/patch-aa echo c - gpasman/pkg mkdir -p gpasman/pkg > /dev/null 2>&1 echo x - gpasman/pkg/COMMENT sed 's/^X//' >gpasman/pkg/COMMENT << 'END-of-gpasman/pkg/COMMENT' XGpasman is a password manager that stored password information encrypted. END-of-gpasman/pkg/COMMENT echo x - gpasman/pkg/DESCR sed 's/^X//' >gpasman/pkg/DESCR << 'END-of-gpasman/pkg/DESCR' XGpasman is a password manager. People working with the internet have to remember lots of passwords. Saving them in a textfile is not a secure idea. Gpasman is a GTK solution to this problem since it saves the password information encrypted, so now you have to remember only one password instead of ten (or more). END-of-gpasman/pkg/DESCR echo x - gpasman/pkg/PLIST sed 's/^X//' >gpasman/pkg/PLIST << 'END-of-gpasman/pkg/PLIST' Xbin/gpasman END-of-gpasman/pkg/PLIST echo x - gpasman/Makefile sed 's/^X//' >gpasman/Makefile << 'END-of-gpasman/Makefile' X# New ports collection makefile for: gpasman X# Version required: 1.1.3 X# Date created: Mon Mai 10 1999 X# Whom: domi@saargate.de X# X# $Id$ X# X XDISTNAME= gpasman-1.1.3 XCATEGORIES= security X XMASTER_SITES= http://www.student.wau.nl/~olivier/gpasman/ X XMAINTAINER= domi@saargate.de X XLIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 X XUSE_GMAKE= yes XUSE_X_PREFIX= yes XGNU_CONFIGURE= yes X XCONFIGURE_ARGS+= --prefix=${PREFIX} X X.include END-of-gpasman/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 May 19 12:12:28 1999 Delivered-To: freebsd-ports@freebsd.org Received: from unix.aecinfo.com (unix.aecinfo.com [209.146.217.236]) by hub.freebsd.org (Postfix) with ESMTP id 06CBF1546E; Wed, 19 May 1999 12:12:23 -0700 (PDT) (envelope-from mitayai@aecinfo.com) Received: from p09 (tor-239.on.ca.aecinfo.com [209.146.217.239]) by unix.aecinfo.com (8.8.8/8.8.8) with SMTP id PAA20822; Wed, 19 May 1999 15:12:23 -0400 (EDT) (envelope-from mitayai@aecinfo.com) Message-ID: <005401bea22b$87715ec0$efd992d1@aecinfo.com> Reply-To: "Will Mitayai Keeso Rowe" From: "Will Mitayai Keeso Rowe" To: , Subject: MySQL 322 port Date: Wed, 19 May 1999 15:12:23 -0400 Organization: AEC Infocenter, Inc 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 Hiya... i'm running a 2.2.8-stable system with the latest stable-src and ports dists via cvsup (as of noon today EDT). I've completely removed perl and mysql and am trying to reinstall them via the ports collection, but mysql keeps whining that it wants a perl of a greater version that the one in the ports collection. Any idea why that is? And yes, i'm using the latest /usr/share/mk files too... :) -Mit --- Will Mitayai Keeso Rowe Director of Internet Technology AEC InfoCenter, Inc Suite 200, 25 Imperial Street / Toronto, Ontario / M5P 1B9 / Canada Phone: +1(416)489-9000 Fax: +1(416)489-3201 Email: mitayai@aecinfo.com Web: http://www.aecinfo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 14:34:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from octopus.originative (originat.demon.co.uk [158.152.220.9]) by hub.freebsd.org (Postfix) with ESMTP id 5F91615824 for ; Wed, 19 May 1999 14:34:01 -0700 (PDT) (envelope-from paul@originative.co.uk) Received: by octopus with Internet Mail Service (5.5.2232.9) id ; Wed, 19 May 1999 22:31:56 +0100 Message-ID: From: paul@originative.co.uk To: ports@FreeBSD.org Subject: Mozilla LDAP sdk and file reference counts Date: Wed, 19 May 1999 22:31:55 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2232.9) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm working on port of the Mozilla LDAP sdk and the installation step has raised a few issues. The Mozilla directory structure is a little bit involved. The root of the tree is ./mozilla and then under that sit a number of the components that make up the Mozilla product, such as the browser, the portability code (nsprpub) and the ldap code (in ./mozilla/directory). The build mechanism creates OS specific object directories local to the actual sources, for instance mozilla/directory/c-sdk/ldap/libraries/libldap/FreeBSD4.0_DBG.OBJ in the case of libldap, where the source files are held in the libldap directory. When you run the install step it uses the mozilla specific nsinstall program which creates a link farm rooted at ./mozilla/dist/FreeBSD4.0_DBG.OBJ where the links point into the object directories in the src tree. The directory layout under /mozilla/dist/FreeBSD4.0_DBG.OBJ can't really be changed since other software (such as the perldap) expect to be passed the root directory and find all the required bits (include files, libraries etc) in the right places underneath. So, probably the only way to install this is to put it somewhere like /usr/local/mozilla. I took a look at the mozilla browser port and that puts the common binaries in /usr/local/lib/mozilla/bin and the actual browser binary in /usr/local/bin. This makes sense but it's going to become a mess if we start to add other components of the mozilla project as ports. This leads to the real problem, reference counting of installed files. If we agree to put the mozilla installed files under /usr/local/mozilla (for instance) then each port will need to install its own copies of the shared components, i.e. nsinstall etc. When you install a second component it will also need to install those same components into the same place. That's OK, but when you uninstall one of these sub-ports how does it know whether to remove the binary that's shared. If it removes it then the other sub-port stops working. If nothing ever removes it then the uninstall mechanism will leave cruft around. My current solutions is to treat the ldap port as totally distinct from the mozilla port but that's not a good solution. We need a more complex installation tool that records what files are installed by the ports mechanism and which port did the installing. When a port tries to uninstall a file the ports mechanism should be able to remove it as *one* of the owners of that file and not actually remove the file until the last owner tries to remove it. If you've used installation tools under Windows you'll have seen this crop up a lot :-) The reference counting problem is something that needs thinking about and eventually solving but in the meantime I'd like to commit my port asap so what's the current thinking on where to install the mozilla components to? Paul Richards. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 15: 1:40 1999 Delivered-To: freebsd-ports@freebsd.org Received: from rr.iij4u.or.jp (h027.p060.iij4u.or.jp [210.130.60.27]) by hub.freebsd.org (Postfix) with SMTP id 9C7DC15487 for ; Wed, 19 May 1999 15:01:37 -0700 (PDT) (envelope-from sada@rr.iij4u.or.jp) Received: (qmail 5407 invoked by uid 1000); 20 May 1999 07:01:35 +0900 Date: 20 May 1999 07:01:35 +0900 Message-ID: <19990519220135.5406.sada@rr.iij4u.or.jp> To: asami@FreeBSD.ORG, freebsd-ports@FreeBSD.org From: sada@FreeBSD.ORG Subject: Re: ports/11752: new port: www/netscape46-communicator In-Reply-To: Your message of "Thu, 20 May 1999 00:00:03 JST". <199905191500.IAA94360@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Mailer: mnews [version 1.21] 1997-12/23(Tue) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >> However I'm anxious about deleting n45-*, >> because n46-* couldn't utilize Fortify yet, Now they can .. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 15:17:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from lambic.physics.montana.edu (lambic.physics.montana.edu [153.90.192.128]) by hub.freebsd.org (Postfix) with ESMTP id 8C0E315511; Wed, 19 May 1999 15:17:11 -0700 (PDT) (envelope-from handy@lambic.physics.montana.edu) Received: from localhost (handy@localhost) by lambic.physics.montana.edu (8.8.8/8.8.7) with ESMTP id QAA12465; Wed, 19 May 1999 16:17:01 -0600 (MDT) (envelope-from handy@lambic.physics.montana.edu) Date: Wed, 19 May 1999 16:17:01 -0600 (MDT) From: Brian Handy To: sada@FreeBSD.ORG Cc: asami@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/11752: new port: www/netscape46-communicator In-Reply-To: <19990519220135.5406.sada@rr.iij4u.or.jp> Message-ID: X-files: The truth is out there MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>> However I'm anxious about deleting n45-*, >>> because n46-* couldn't utilize Fortify yet, > >Now they can .. I just installed NS4.6 on my 2.2.x box. I don't have time just now to make patches, I totally munged all the Makefiles for the three-odd ports it hunts through before it installs the software. I also had to munge the REQ script (in netscape4-communicator/pkg/) to let me install this on a 2.2 box. Well, actually in my case I deleted that logic entirely and it installed fine. Would be nice to keep this sort of working for the 2.2 folks for a while, I mean HEY, it was compiled on a 2.2 box... :-) Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 15:20: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4AA8E157A0 for ; Wed, 19 May 1999 15:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA43616; Wed, 19 May 1999 15:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 19 May 1999 15:20:02 -0700 (PDT) Message-Id: <199905192220.PAA43616@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Chris Piazza Subject: RE: ports/11786: gnupg-0.9.6 port does not install Reply-To: Chris Piazza Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11786; it has been noted by GNATS. From: Chris Piazza To: mvh@ix.netcom.com Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: RE: ports/11786: gnupg-0.9.6 port does not install Date: Wed, 19 May 1999 15:16:53 -0700 (PDT) On 19-May-99 mvh@ix.netcom.com wrote: >>Description: > gnupg port install hangs forever at: > > cc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -O -pipe -Wall -Wcast-align > -Wshado > w -Wstrict-prototypes -c mpiutil.c > cc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -O -pipe -Wall -Wcast-align > -Wshado > w -Wstrict-prototypes -c g10m.c > cc -E -I../include -DHAVE_CONFIG_H -I. -I. -I.. mpih-mul1.S | grep -v '^#' >>tmp-mpi > h-mul1.s > cc -O -pipe -Wall -Wcast-align -Wshadow -Wstrict-prototypes -c > tmp-mpih-mul1.s > > tmp-mpih-mull.S is an empty file at this point. While I am unsure why you would get this error, I do know that the port works. I say this for two reasons: * It works here. ===> Registering installation for gnupg-0.9.6 * http://bento.freebsd.org shows no errors or problems with the gnupg port. My suggestions for you are, make clean and try to build it again *OR* install the package if this behaviour continues. --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 16:10: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F29B15657 for ; Wed, 19 May 1999 16:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA46846; Wed, 19 May 1999 16:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 1EF7815164 for ; Wed, 19 May 1999 16:09:24 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id EC284156C; Wed, 19 May 1999 16:09:10 -0700 (PDT) Message-Id: <19990519230910.EC284156C@norn.ca.eu.org> Date: Wed, 19 May 1999 16:09:10 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11791: new master site for bbdate Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11791 >Category: ports >Synopsis: new master site for bbdate >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 May 19 16:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: 4.0-CURRENT i386 >Description: Add a new master site. >How-To-Repeat: >Fix: Index: bbdate/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/x11-clocks/bbdate/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- Makefile 1999/05/10 04:08:20 1.3 +++ Makefile 1999/05/19 23:05:05 @@ -8,7 +8,8 @@ DISTNAME= bbdate-0.2.1 CATEGORIES= x11-clocks -MASTER_SITES= http://bbtools.windsofstorm.net/sources/ +MASTER_SITES= http://bbtools.windsofstorm.net/sources/ \ + ftp://stokes.tte.ele.tue.nl/ MAINTAINER= cpiazza@home.net -Chris >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 May 19 16:10:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F37A41572F for ; Wed, 19 May 1999 16:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA46855; Wed, 19 May 1999 16:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id D03B215164 for ; Wed, 19 May 1999 16:09:28 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id EB4B1156E; Wed, 19 May 1999 16:09:14 -0700 (PDT) Message-Id: <19990519230914.EB4B1156E@norn.ca.eu.org> Date: Wed, 19 May 1999 16:09:14 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11792: Update: mail/bbmail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11792 >Category: ports >Synopsis: Update: mail/bbmail >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 May 19 16:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: 4.0-CURRENT i386 >Description: Update to 0.5.2 and add another master site. >How-To-Repeat: >Fix: Index: bbmail/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/mail/bbmail/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 1999/05/10 04:09:55 1.2 +++ Makefile 1999/05/19 23:01:59 @@ -1,14 +1,15 @@ # New ports collection makefile for: bbmail -# Version required: 0.5.0 +# Version required: 0.5.2 # Date created: May 3 1999 # Whom: Chris Piazza # # $Id: Makefile,v 1.2 1999/05/10 04:09:55 steve Exp $ # -DISTNAME= bbmail-0.5.1 +DISTNAME= bbmail-0.5.2 CATEGORIES= mail -MASTER_SITES= http://bbtools.windsofstorm.net/sources/ +MASTER_SITES= http://bbtools.windsofstorm.net/sources/ \ + ftp://stokes.tte.ele.tue.nl/ MAINTAINER= cpiazza@home.net Index: bbmail/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/mail/bbmail/files/md5,v retrieving revision 1.2 diff -u -r1.2 md5 --- md5 1999/05/10 04:10:04 1.2 +++ md5 1999/05/19 23:02:39 @@ -1 +1 @@ -MD5 (bbmail-0.5.1.tar.gz) = 4e8c94685e71168058d6f8477546abce +MD5 (bbmail-0.5.2.tar.gz) = 15e5663f017bcf00d52f5d077478319d -Chris >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 May 19 16:16: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from repulse.lovett.com (repulse.lovett.com [38.155.241.4]) by hub.freebsd.org (Postfix) with ESMTP id B748B156A8 for ; Wed, 19 May 1999 16:16:06 -0700 (PDT) (envelope-from ade@lovett.com) Received: from ade by repulse.lovett.com with local (Exim 2.12 #1) id 10kFXq-0006kQ-00; Wed, 19 May 1999 18:14:38 -0500 Date: Wed, 19 May 1999 18:14:38 -0500 From: Ade Lovett To: Chris Piazza Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/11786: gnupg-0.9.6 port does not install Message-ID: <19990519181438.E20130@lovett.com> References: <199905192220.PAA43616@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <199905192220.PAA43616@freefall.freebsd.org>; from Chris Piazza on Wed, May 19, 1999 at 03:20:02PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, May 19, 1999 at 03:20:02PM -0700, Chris Piazza wrote: > > >>Description: > > gnupg port install hangs forever at: > > [snip] > > cc -O -pipe -Wall -Wcast-align -Wshadow -Wstrict-prototypes -c > > tmp-mpih-mul1.s > I say this for two reasons: > > * It works here. ===> Registering installation for gnupg-0.9.6 > * http://bento.freebsd.org shows no errors or problems with the gnupg > port. Similar thing happened here after I freshly reinstalled my laptop with 3.2-RELEASE. gnupg-0.9.6 hung in exactly the same place as is mentioned above. Doing some further investigation, including a blank install again followed by attempting to install the gnupg port before any other ports at all had been installed (just to make sure that there was no weird conflicts going on), it hung in exactly the same place. However, I managed to fix the problem after experimenting with removing various parts of CFLAGS. It works (on this box at least), if, and only if, I remove '-pipe'. Initially I just cut-n-pasted the compile line, ran it by hand (without -pipe), and then re-ran the make install. It hung in exactly the same manner on the next file, which was also a .S -> cpp -> .s -> cc -> .o combination. I've got another (desktop) box to move to 3.2-RELEASE in the next day or so, so I'll see what happens with that one. -aDe -- Ade Lovett, Austin, TX. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 17:50:43 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B0800157EC for ; Wed, 19 May 1999 17:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA53967; Wed, 19 May 1999 17:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 19 May 1999 17:50:02 -0700 (PDT) Message-Id: <199905200050.RAA53967@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Subject: Re: ports/11752: new port: www/netscape46-communicator Reply-To: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11752; it has been noted by GNATS. From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) To: sada@rr.IIJ4U.OR.JP Cc: sada@rr.IIJ4U.OR.JP, thepish@FreeBSD.ORG, FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/11752: new port: www/netscape46-communicator Date: Wed, 19 May 1999 17:41:08 -0700 (PDT) * This is sada from Nagoya. * >> This is asami from Santa Clara (originally from Nagoya :). * * Oh, I've never heard of it ! \(^o^)/ Well, I was born in Nagoya, but was only there for 6 months.... * All right about maintainer line. * However I'm anxious about deleting n45-*, * because n46-* couldn't utilize Fortify yet, * so some one could still need n45-*. I just saw a report from someone who claims 46 kills his X. Why don't you keep 45 for a couple of weeks, so people can try it out. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 17:50:44 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 23CCA157E5 for ; Wed, 19 May 1999 17:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA53976; Wed, 19 May 1999 17:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from trumpet.partitur.se (trumpet.partitur.se [193.219.246.210]) by hub.freebsd.org (Postfix) with ESMTP id 7EF4814EFC for ; Wed, 19 May 1999 17:43:14 -0700 (PDT) (envelope-from girgen@trumpet.partitur.se) Received: (from girgen@localhost) by trumpet.partitur.se (8.9.3/8.9.3) id CAA01010; Thu, 20 May 1999 02:43:11 +0200 (CEST) (envelope-from girgen) Message-Id: <199905200043.CAA01010@trumpet.partitur.se> Date: Thu, 20 May 1999 02:43:11 +0200 (CEST) From: girgen@partitur.se Reply-To: girgen@partitur.se To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11793: lsof updated Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11793 >Category: ports >Synopsis: lsof updated, old distfile removed >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 May 19 17:50:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Palle Girgensohn >Release: FreeBSD 2.2.7-STABLE i386 >Organization: Partitur >Environment: 3.2-BETA FreeBSD 3.2-BETA #0: Fri May 14 12:29:49 CEST 1999 >Description: lsof updated, and old version removed from the ftp sites. >How-To-Repeat: >Fix: Here's a trivial patch: diff -urN lsof.orig/Makefile lsof/Makefile --- lsof.orig/Makefile Wed May 19 23:45:52 1999 +++ lsof/Makefile Wed May 19 23:46:07 1999 @@ -7,8 +7,8 @@ # $Id: Makefile,v 1.41 1999/03/30 21:51:42 obrien Exp $ # -DISTNAME= lsof_4.42_W -PKGNAME= lsof-4.42 +DISTNAME= lsof_4.43_W +PKGNAME= lsof-4.43 CATEGORIES= sysutils MASTER_SITES= ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/ \ ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/NEW/ \ diff -urN lsof.orig/files/md5 lsof/files/md5 --- lsof.orig/files/md5 Wed May 19 23:45:52 1999 +++ lsof/files/md5 Wed May 19 23:46:19 1999 @@ -1 +1 @@ -MD5 (lsof_4.42_W.tar.gz) = 30b4bf27f46f397d7be5dd0bc1cf1753 +MD5 (lsof_4.43_W.tar.gz) = 4d5263b853c882a33f626be0a47c937d diff -urN lsof.orig/patches/patch-ab lsof/patches/patch-ab --- lsof.orig/patches/patch-ab Wed May 19 23:45:52 1999 +++ lsof/patches/patch-ab Thu Jan 1 01:00:00 1970 @@ -1,21 +0,0 @@ ---- Configure.orig Mon Mar 29 12:06:49 1999 -+++ Configure Mon May 10 19:09:54 1999 -@@ -764,6 +764,9 @@ - 3.1*) - LSOF_VERS=310 - ;; -+ 3.2*) -+ LSOF_VERS=320 -+ ;; - 4.0*) - LSOF_VERS=400 - ;; -@@ -831,7 +834,7 @@ - LSOF_CFGF="$LSOF_CFGF -DHASVMLOCKH" - fi # } - ;; -- 300|310) -+ 300|310|320) - LSOF_CFGL="-lkvm" - if test -r ${LSOF_INCLUDE}/nfs/rpcv2.h # { - then >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 May 19 18:10: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2944614D3F for ; Wed, 19 May 1999 18:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA55260; Wed, 19 May 1999 18:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 19 May 1999 18:10:01 -0700 (PDT) Message-Id: <199905200110.SAA55260@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: mvh@ix.netcom.com (Mike Harding) Subject: Re: ports/11786: gnupg-0.9.6 port does not install Reply-To: mvh@ix.netcom.com (Mike Harding) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11786; it has been noted by GNATS. From: mvh@ix.netcom.com (Mike Harding) To: cpiazza@home.net Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/11786: gnupg-0.9.6 port does not install Date: Wed, 19 May 1999 18:05:56 -0700 (PDT) I tried this at home and at work and neither system worked - both are running 3.2-stable. What system are you running? - Mike Harding X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Date: Wed, 19 May 1999 15:16:53 -0700 (PDT) Reply-To: Chris Piazza Sender: norn@norn.ca.eu.org From: Chris Piazza Cc: freebsd-gnats-submit@FreeBSD.ORG X-RULES: lists On 19-May-99 mvh@ix.netcom.com wrote: >>Description: > gnupg port install hangs forever at: > > cc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -O -pipe -Wall -Wcast-align > -Wshado > w -Wstrict-prototypes -c mpiutil.c > cc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -O -pipe -Wall -Wcast-align > -Wshado > w -Wstrict-prototypes -c g10m.c > cc -E -I../include -DHAVE_CONFIG_H -I. -I. -I.. mpih-mul1.S | grep -v '^#' >>tmp-mpi > h-mul1.s > cc -O -pipe -Wall -Wcast-align -Wshadow -Wstrict-prototypes -c > tmp-mpih-mul1.s > > tmp-mpih-mull.S is an empty file at this point. While I am unsure why you would get this error, I do know that the port works. I say this for two reasons: * It works here. ===> Registering installation for gnupg-0.9.6 * http://bento.freebsd.org shows no errors or problems with the gnupg port. My suggestions for you are, make clean and try to build it again *OR* install the package if this behaviour continues. --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 18:36:26 1999 Delivered-To: freebsd-ports@freebsd.org Received: from stampede.cs.berkeley.edu (stampede.CS.Berkeley.EDU [128.32.45.124]) by hub.freebsd.org (Postfix) with ESMTP id 0BDCA14C9B for ; Wed, 19 May 1999 18:36:24 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca41-214.ix.netcom.com [209.111.208.214]) by stampede.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id SAA24534; Wed, 19 May 1999 18:37:24 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.2/8.6.9) id SAA86397; Wed, 19 May 1999 18:36:08 -0700 (PDT) Date: Wed, 19 May 1999 18:36:08 -0700 (PDT) Message-Id: <199905200136.SAA86397@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: billf@chc-chimes.com Cc: dervish@bantu.cl.msu.edu, ports@freebsd.org, dervish@ikhala.tcimet.net In-reply-to: (message from Bill Fumerola on Wed, 19 May 1999 10:16:50 -0400 (EDT)) Subject: Re: How does one claim a port? From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) References: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Bill Fumerola * I guess you could file a change of maintainership PR. It would just be low * priority. One more thing -- if you have already talked to the previous maintainer and s/he agreed to the m12p change, then make sure to mention that in the PR. Otherwise there could be an even longer delay while a committer tries to contact the previous maintainer. -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 19:30: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4AA6515063 for ; Wed, 19 May 1999 19:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA61495; Wed, 19 May 1999 19:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 19 May 1999 19:30:02 -0700 (PDT) Message-Id: <199905200230.TAA61495@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Chris Piazza Subject: RE: ports/11792: Update: mail/bbmail Reply-To: Chris Piazza Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11792; it has been noted by GNATS. From: Chris Piazza To: cpiazza@home.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: RE: ports/11792: Update: mail/bbmail Date: Wed, 19 May 1999 19:21:02 -0700 (PDT) On 19-May-99 cpiazza@home.net wrote: >>Description: > > Update to 0.5.2 and add another master site. > >>How-To-Repeat: > > >>Fix: > > Index: bbmail/Makefile > =================================================================== > RCS file: /cvs/FreeBSD/ports/mail/bbmail/Makefile,v > retrieving revision 1.2 > diff -u -r1.2 Makefile > --- Makefile 1999/05/10 04:09:55 1.2 > +++ Makefile 1999/05/19 23:01:59 [..] > -DISTNAME= bbmail-0.5.1 > +DISTNAME= bbmail-0.5.2 > CATEGORIES= mail > -MASTER_SITES= http://bbtools.windsofstorm.net/sources/ > +MASTER_SITES= http://bbtools.windsofstorm.net/sources/ \ > + ftp://stokes.tte.ele.tue.nl/ > This second one should be ftp://stokes.tte.ele.tue.nl/pub/ --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 19:30: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3A5CA15063 for ; Wed, 19 May 1999 19:30:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA61503; Wed, 19 May 1999 19:30:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 19 May 1999 19:30:05 -0700 (PDT) Message-Id: <199905200230.TAA61503@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Chris Piazza Subject: RE: ports/11791: new master site for bbdate Reply-To: Chris Piazza Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11791; it has been noted by GNATS. From: Chris Piazza To: cpiazza@home.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: RE: ports/11791: new master site for bbdate Date: Wed, 19 May 1999 19:22:03 -0700 (PDT) >>Description: > > Add a new master site. > The new master site should be: ftp://stokes.tte.ele.tue.nl/pub/ instead, sorry. --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 21:33: 0 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 766) id A015C14E1B; Wed, 19 May 1999 21:32:59 -0700 (PDT) To: mharo@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, obrien@FreeBSD.ORG From: mharo@FreeBSD.ORG Subject: Re: ports/11793 Message-Id: <19990520043259.A015C14E1B@hub.freebsd.org> Date: Wed, 19 May 1999 21:32:59 -0700 (PDT) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: lsof updated, old distfile removed Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: mharo Responsible-Changed-When: Wed May 19 21:32:34 PDT 1999 Responsible-Changed-Why: Over to maintainer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 19 22:30:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1970C14C56 for ; Wed, 19 May 1999 22:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA85996; Wed, 19 May 1999 22:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 19 May 1999 22:30:03 -0700 (PDT) Message-Id: <199905200530.WAA85996@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: mvh@ix.netcom.com (Mike Harding) Subject: Re: ports/11786: gnupg-0.9.6 port does not install Reply-To: mvh@ix.netcom.com (Mike Harding) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11786; it has been noted by GNATS. From: mvh@ix.netcom.com (Mike Harding) To: cpiazza@home.net Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/11786: gnupg-0.9.6 port does not install Date: Wed, 19 May 1999 22:23:22 -0700 (PDT) More information on the following: I am using GCC 2.7.2.1. On the line where it hangs, if I remove the '-pipe' then the compile succeeds. Might be a bug in this C compiler, don't know. - Mike Harding X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Date: Wed, 19 May 1999 15:16:53 -0700 (PDT) Reply-To: Chris Piazza Sender: norn@norn.ca.eu.org From: Chris Piazza Cc: freebsd-gnats-submit@FreeBSD.ORG X-RULES: lists On 19-May-99 mvh@ix.netcom.com wrote: >>Description: > gnupg port install hangs forever at: > > cc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -O -pipe -Wall -Wcast-align > -Wshado > w -Wstrict-prototypes -c mpiutil.c > cc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -O -pipe -Wall -Wcast-align > -Wshado > w -Wstrict-prototypes -c g10m.c > cc -E -I../include -DHAVE_CONFIG_H -I. -I. -I.. mpih-mul1.S | grep -v '^#' >>tmp-mpi > h-mul1.s > cc -O -pipe -Wall -Wcast-align -Wshadow -Wstrict-prototypes -c > tmp-mpih-mul1.s > > tmp-mpih-mull.S is an empty file at this point. While I am unsure why you would get this error, I do know that the port works. I say this for two reasons: * It works here. ===> Registering installation for gnupg-0.9.6 * http://bento.freebsd.org shows no errors or problems with the gnupg port. My suggestions for you are, make clean and try to build it again *OR* install the package if this behaviour continues. --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 20 0: 0: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9AA4E1507A for ; Thu, 20 May 1999 00:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA92482; Thu, 20 May 1999 00:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 20 May 1999 00:00:03 -0700 (PDT) Message-Id: <199905200700.AAA92482@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Narvi Subject: Re: ports/11465: The port chipmunk will not run. Reply-To: Narvi Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11465; it has been noted by GNATS. From: Narvi To: Thomas Dean Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/11465: The port chipmunk will not run. Date: Thu, 20 May 1999 09:54:00 +0300 (EEST) Acording to my experience, you *HAVE* to be in 8bpp mode for chipmunk to work. Sander There is no love, no good, no happiness and no future - all these are just illusions. On Mon, 3 May 1999, Thomas Dean wrote: > > >Number: 11465 > >Category: ports > >Synopsis: The port chipmunk will not run. > >Confidential: yes > >Severity: serious > >Priority: medium > >Responsible: freebsd-ports > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Mon May 3 07:40:01 PDT 1999 > >Closed-Date: > >Last-Modified: > >Originator: Thomas Dean > >Release: FreeBSD 4.0-CURRENT i386 SMP > >Organization: > >Environment: > I am running 4.0-current SMP as of Apr 29, 1999 > > # ls -l /var/db/pkg | grep chip > drwxr-xr-x 2 root wheel 512 May 2 17:06 chipmunk-5.10/ > > >From XF86Config: > ... > Section "Device" > Identifier "MGA" > VendorName "MGA" > BoardName "MGA 2064W" > #VideoRam 2048 > # Insert Clocks lines here if appropriate > EndSection > ... > Section "Screen" > Driver "svga" > # Use Device "Generic VGA" for Standard VGA 320x200x256 > #Device "Generic VGA" > Device "MGA" > Monitor "Sony" > DefaultColorDepth 16 > Subsection "Display" > Depth 8 > # Omit the Modes line for the "Generic VGA" device > Modes "640x480" "800x600" "1024x768" > ViewPort 0 0 > # Use Virtual 320 200 for Generic VGA > EndSubsection > Subsection "Display" > Depth 16 > Modes "1024x768" "640x480" "800x600" > ViewPort 0 0 > EndSubsection > Subsection "Display" > Depth 24 > Modes "640x480" "800x600" > ViewPort 0 0 > EndSubsection > Subsection "Display" > Depth 32 > Modes "640x480" "800x600" > ViewPort 0 0 > EndSubsection > EndSection > > > > > >Description: > The chipmunk tools, diglog, analog, etc., all exit with > the same error. This may be related to X configuration. > > # diglog > X Error of failed request: BadMatch (invalid parameter attributes) > Major opcode of failed request: 78 (X_CreateColormap) > Serial number of failed request: 7 > Current serial number in output stream: 9 > # analog > X Error of failed request: BadMatch (invalid parameter attributes) > Major opcode of failed request: 78 (X_CreateColormap) > Serial number of failed request: 7 > Current serial number in output stream: 9 > > > This error comes from psys/src/mylib.c, function DisplayInitialize(), > line 508. I created a -g version of log/src/log. > > # ./log > X Error of failed request: BadMatch (invalid parameter attributes) > Major opcode of failed request: 78 (X_CreateColormap) > Serial number of failed request: 7 > Current serial number in output stream: 9 > > gdb ./log > GDB is free software and you are welcome to distribute copies of it > under certain conditions; type "show copying" to see the conditions. > There is absolutely no warranty for GDB; type "show warranty" for details. > GDB 4.16 (i386-unknown-freebsd), > Copyright 1996 Free Software Foundation, Inc... > (gdb) l DisplayInitialize > ... > 508 XAllocColorCells(m_display, colormap, True, plane_masks, WinDepth, > 509 &pixel, 1); > ... > (gdb) b 508 > Breakpoint 1 at 0x80dd645: file mylib.c, line 508. > (gdb) r > Starting program: /usr/ports/cad/chipmunk/work/log/src/./log > > Breakpoint 1, DisplayInitialize () at mylib.c:508 > 508 XAllocColorCells(m_display, colormap, True, plane_masks, WinDepth, > (gdb) p m_display > $1 = (Display *) 0x8188800 > (gdb) p colormap > $2 = 46137345 > (gdb) p plane_masks > $3 = {0 } > (gdb) p &pixel > $4 = (long unsigned int *) 0x810f404 > (gdb) s > X Error of failed request: BadMatch (invalid parameter attributes) > Major opcode of failed request: 78 (X_CreateColormap) > Serial number of failed request: 7 > Current serial number in output stream: 9 > > Program exited with code 01. > (gdb) > > In psys/src/mylib.c, #define WinDepth 4 > > > >How-To-Repeat: > Run any of the X tools from the command line. > # diglog > - or - > # analog > > > >Fix: > > > > > >Release-Note: > >Audit-Trail: > >Unformatted: > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 20 1:30: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B2CE414EBD for ; Thu, 20 May 1999 01:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA02376; Thu, 20 May 1999 01:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shell2.ba.best.com (shell2.ba.best.com [206.184.139.133]) by hub.freebsd.org (Postfix) with ESMTP id D58C914E4B for ; Thu, 20 May 1999 01:28:03 -0700 (PDT) (envelope-from asaddi@shell2.ba.best.com) Received: (from asaddi@localhost) by shell2.ba.best.com (8.9.3/8.9.2/best.sh) id BAA00611; Thu, 20 May 1999 01:27:48 -0700 (PDT) Message-Id: <199905200827.BAA00611@shell2.ba.best.com> Date: Thu, 20 May 1999 01:27:48 -0700 (PDT) From: Allan Saddi Reply-To: asaddi@philosophysw.com To: FreeBSD-gnats-submit@freebsd.org Subject: ports/11798: Update of port news/newsfish to 1.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11798 >Category: ports >Synopsis: Update of port news/newsfish to 1.1 >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 May 20 01:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Allan Saddi >Release: FreeBSD 3.2-STABLE i386 >Organization: Philosophy SoftWorks >Environment: >Description: The port has been updated to use newsfish 1.1. >How-To-Repeat: >Fix: begin 600 newsfish.diff M9&EF9B`M=7(@;F5W2`R,"`P,3HQ M-3HP,R`Q.3DY"BLK*R!N97=S9FES:"]-86ME9FEL90E4:'4@36%Y(#(P(#`P M.C0X.C4U(#$Y.3D*0$`@+3$L,3(@*S$L,3(@0$`*(",@3F5W('!O2`Q.3DY"B`C(%=H;VTZ"0D)87-A9&1I M0'!H:6QO'`@)`HK(R`D260D"B`C M"B`*+41)4U1.04U%/0EN97=S9FES:"TQ+C`N,0HK1$E35$Y!344]"6YE=W-F M:7-H+3$N,0H@0T%414=/4DE%4ST);F5W7-W+F-O;2]S;V9T=V%R92\*(`ID:69F("UU2`R,"`P,3HQ-3HP,R`Q.3DY"BLK M*R!N97=S9FES:"]P871C:&5S+W!A=&-H+6%A"51H=2!-87D@,C`@,#`Z-34Z M,#<@,3DY.0I`0"`M,2PX("LQ+#@@0$`*+2TM+2!-86ME9FEL92YO2`R M,"`P,#HS-#HS,2`Q.3DY"BLK*RL@36%K969I;&4)5&AU($UA>2`R,"`P,#HU M,SHT-2`Q.3DY"B!`0"`M,2PV("LQ+#8@0$`*+2`C("1)9#H@<&%T8V@M86$L M=B`Q+C$N,2XQ(#$Y.3DO,#$O,C8@,#,Z,SDZ,#<@'`@)`HK+4-&3$%' M4ST)"2U786QL("UG"B`M3$1&3$%'4ST)"B`K0T9,04=3*ST)+41.1$5"54<* /("M,1$9,04=3*ST)+7,* ` 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 Thu May 20 2:30:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from emerald.ts.ee (emerald.ts.ee [194.204.16.66]) by hub.freebsd.org (Postfix) with ESMTP id 2894C14C9D for ; Thu, 20 May 1999 02:30:04 -0700 (PDT) (envelope-from r.jemets@ts.ee) Received: from vegas.sadam (vegas.sadam [192.168.10.250]) by emerald.ts.ee (8.8.3/8.7.3) with ESMTP id LAA27078 for ; Thu, 20 May 1999 11:30:17 +0300 Received: from white (rjemets.sadam [192.168.10.19]) by vegas.sadam (8.8.7/8.8.7) with SMTP id MAA02016 for ; Thu, 20 May 1999 12:29:52 +0300 Message-Id: <3.0.6.32.19990520123114.03182d70@vegas> X-Sender: r.jemets@vegas X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Thu, 20 May 1999 12:31:14 +0300 To: freebsd-ports@freebsd.org From: Roman Jemets Subject: LICQ-0.61 Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org There is a problem with the port LICQ-0.61: original Makefile contains the line that points to to moc executable: MOC="/usr/bin/moc" which actually locates at /usr/X11R6/bin the build process doesn't succeed without such change in Makefile With regards, Roman. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 20 5:30: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mordor.xti.org (mordor.xti.org [193.212.232.254]) by hub.freebsd.org (Postfix) with SMTP id BA39B14E58 for ; Thu, 20 May 1999 05:30:02 -0700 (PDT) (envelope-from delta@xti.org) Received: (qmail 92800 invoked from network); 20 May 1999 12:30:01 -0000 Received: from mordor.xti.org (193.212.232.254) by login.xti.org with SMTP; 20 May 1999 12:30:01 -0000 Date: Thu, 20 May 1999 14:30:00 +0200 (CEST) From: Terje Elde To: ports@freebsd.org Subject: Netscape 4.6 fortify thingy out Message-ID: KEY-ID: 0x5B439BB3 Stuff: Why are you reading all the headers?? Do you think I hide lots of stuff up here?? Question: Do you know where *your* towel is? MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Finally there's a fortifier out for Netscape 4.6. Could anyone update the port to include support? Friendly greetings, Terje Elde "One world, one web, one program" - Microsoft Promo ad. "Ein Volk, Ein Reich, Ein Fuhrer" - Adolf Hitler To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 20 6:20: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AE5CC14CFE for ; Thu, 20 May 1999 06:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA34284; Thu, 20 May 1999 06:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 20 May 1999 06:20:03 -0700 (PDT) Message-Id: <199905201320.GAA34284@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Thomas Dean Subject: Re: ports/11465: The port chipmunk will not run. Reply-To: Thomas Dean Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11465; it has been noted by GNATS. From: Thomas Dean To: narvi@haldjas.folklore.ee Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/11465: The port chipmunk will not run. Date: Thu, 20 May 1999 06:10:34 -0700 (PDT) The distribution from Berkeley works, with a couple of simple edits, not related to X! The port does not! tomdean To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 20 7: 5:51 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mailhost.criterion.canon.co.uk (mailhost.criterion.canon.co.uk [194.223.249.254]) by hub.freebsd.org (Postfix) with ESMTP id D590C14D8B; Thu, 20 May 1999 07:05:35 -0700 (PDT) (envelope-from adamn@csl.com) Received: from csl.com (hermes.criterion.canon.co.uk [194.223.249.13]) by mailhost.criterion.canon.co.uk (8.8.8/8.7.3) with ESMTP id OAA25587; Thu, 20 May 1999 14:56:18 +0100 (BST) Message-ID: <374415C8.4003B9E1@csl.com> Date: Thu, 20 May 1999 14:01:44 +0000 From: Adam Nealis Organization: Criterion Software, Ltd. X-Mailer: Mozilla 4.51 [en] (X11; U; Linux 2.0.34 i686) X-Accept-Language: en MIME-Version: 1.0 To: Will Mitayai Keeso Rowe Cc: stable@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: MySQL 322 port References: <005401bea22b$87715ec0$efd992d1@aecinfo.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Will Mitayai Keeso Rowe wrote: > > Hiya... > > i'm running a 2.2.8-stable system with the latest stable-src and ports dists via cvsup (as of noon > today EDT). I've completely removed perl and mysql and am trying to reinstall them via the ports > collection, but mysql keeps whining that it wants a perl of a greater version that the one in the > ports collection. Any idea why that is? I have MySQL 3.2.2 installed fine on my 2.2.7-STABLE. I built it from the ports collection too. First, what verison of perl _are_ you running? in sh: for f in `whereis perl`; do if [ -x $f -a -f $f ]; then echo $f ; $f -version | grep version; fi; done will get you all the versions of all the perls that whereis finds - but check /us/local/bin anyway ;). IIRC, the 'BSD system perl in a lot of 2.2.X is perl 4.x. This is set in /etc/make.conf, BTW. It was a long time ago, but I recall hacking /etc/make.conf to point to /usr/local/bin/perl (coz that's the one the port builds), because a make world kept shafting my perl 5 with perl 4 before I found out what was happening. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 20 7:20: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E3F8814EBD for ; Thu, 20 May 1999 07:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA39257; Thu, 20 May 1999 07:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 20 May 1999 07:20:02 -0700 (PDT) Message-Id: <199905201420.HAA39257@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Mike Harding Subject: Re: ports/11786: gnupg-0.9.6 port does not install Reply-To: Mike Harding Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11786; it has been noted by GNATS. From: Mike Harding To: freebsd-gnats-submit@freebsd.org, mvh@ix.netcom.com Cc: Subject: Re: ports/11786: gnupg-0.9.6 port does not install Date: Thu, 20 May 1999 07:10:22 -0700 I have verified this problem on 3 separate 3.2 systems and on a 3.1 release system. The problem seems to be the -pipe in the options for the assembly code - the compiler hangs for some reason. Removing the -pipe makes it work, or forcing the port to not make the assembly code. I've tried this with egcs as well and the same thing happens. - Mike Harding To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 20 8: 3:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from rr.iij4u.or.jp (h025.p060.iij4u.or.jp [210.130.60.25]) by hub.freebsd.org (Postfix) with SMTP id 40A31150AF for ; Thu, 20 May 1999 08:03:03 -0700 (PDT) (envelope-from sada@rr.iij4u.or.jp) Received: (qmail 2071 invoked by uid 1000); 21 May 1999 00:03:00 +0900 Date: 21 May 1999 00:03:00 +0900 Message-ID: <19990520150300.2070.sada@rr.iij4u.or.jp> To: delta@xti.org Cc: ports@freebsd.org Subject: Re: Netscape 4.6 fortify thingy out In-Reply-To: Your message of "Thu, 20 May 1999 21:30:00 JST". From: sada@rr.IIJ4U.OR.JP (SADA Kenji) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Mailer: mnews [version 1.21] 1997-12/23(Tue) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is sada from Nagoya. >> Finally there's a fortifier out for Netscape 4.6. Could anyone update the >> port to include support? Done, check it please. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 20 8: 3:14 1999 Delivered-To: freebsd-ports@freebsd.org Received: from rr.iij4u.or.jp (h025.p060.iij4u.or.jp [210.130.60.25]) by hub.freebsd.org (Postfix) with SMTP id 4F54B152D3 for ; Thu, 20 May 1999 08:03:03 -0700 (PDT) (envelope-from sada@rr.iij4u.or.jp) Received: (qmail 2075 invoked by uid 1000); 21 May 1999 00:03:01 +0900 Date: 21 May 1999 00:03:01 +0900 Message-ID: <19990520150301.2074.sada@rr.iij4u.or.jp> To: handy@lambic.physics.montana.edu Cc: sada@FreeBSD.ORG, asami@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/11752: new port: www/netscape46-communicator In-Reply-To: Your message of "Thu, 20 May 1999 07:17:01 JST". From: sada@rr.IIJ4U.OR.JP (SADA Kenji) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Mailer: mnews [version 1.21] 1997-12/23(Tue) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is sada from Nagoya. >> I just installed NS4.6 on my 2.2.x box. I don't have time just now to >> make patches, I totally munged all the Makefiles for the three-odd ports >> it hunts through before it installs the software. Sorry I have no "munge" word on my dictionary. >> I also had to munge the >> REQ script (in netscape4-communicator/pkg/) to let me install this on a >> 2.2 box. How about a patch: Index: pkg/REQ =================================================================== RCS file: /home/ncvs/ports/www/netscape4-communicator/pkg/REQ,v retrieving revision 1.3 diff -u -r1.3 REQ --- REQ 1999/03/19 22:38:51 1.3 +++ REQ 1999/05/20 14:10:16 @@ -1,6 +1,6 @@ #!/bin/sh if [ x$2 = xINSTALL ]; then - ldconfig -r -aout | fgrep -q -e '-lc.3' + env OBJFORMAT=aout ldconfig -r | fgrep -q -e '-lc.3' if [ $? -ne 0 ]; then cat <> Well, actually in my case I deleted that logic entirely and it >> installed fine. Would be nice to keep this sort of working for the 2.2 >> folks for a while, I mean HEY, it was compiled on a 2.2 box... :-) Anyone create and maintain `misc/228upgrade', isn't it a better way ? We don't have to maintain ports for 2.2-* persistently. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 20 9: 0:39 1999 Delivered-To: freebsd-ports@freebsd.org Received: from picalon.gun.de (picalon.gun.de [194.77.0.18]) by hub.freebsd.org (Postfix) with ESMTP id 343B115034 for ; Thu, 20 May 1999 09:00:25 -0700 (PDT) (envelope-from andreas@klemm.gtn.com) Received: from klemm.gtn.com (pppak04.gtn.com [194.231.123.169]) by picalon.gun.de (8.8.6/8.8.6) with ESMTP id RAA16957 for ; Thu, 20 May 1999 17:59:53 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.9.3/8.9.3) id RAA33113 for ports@FreeBSD.ORG; Thu, 20 May 1999 17:23:31 +0200 (CEST) (envelope-from andreas) Date: Thu, 20 May 1999 17:23:31 +0200 From: Andreas Klemm To: ports@FreeBSD.ORG Subject: could somebody take over maintainership of bb (big brother) port ? Message-ID: <19990520172331.B32858@titan.klemm.gtn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i X-Operating-System: FreeBSD 3.2-STABLE SMP X-Disclaimer: A free society is one where it is safe to be unpopular Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ... or could somebody send me diffs to update the port to 1.2 ? Have no time at the moment to do it myself. -- Andreas Klemm http://www.FreeBSD.ORG/~andreas http://www.freebsd.org/~fsmp/SMP/SMP.html powered by Symmetric MultiProcessor FreeBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 20 9:20: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 797CA15177 for ; Thu, 20 May 1999 09:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA51865; Thu, 20 May 1999 09:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from Terry.Dorm10.NCTU.edu.tw (Terry.Dorm10.NCTU.edu.tw [140.113.122.99]) by hub.freebsd.org (Postfix) with ESMTP id 8178215177 for ; Thu, 20 May 1999 09:16:39 -0700 (PDT) (envelope-from ijliao@Terry.Dorm10.NCTU.edu.tw) Received: (from ijliao@localhost) by Terry.Dorm10.NCTU.edu.tw (8.9.3/8.9.3) id AAA83226; Fri, 21 May 1999 00:09:01 +0800 (CST) (envelope-from ijliao) Message-Id: <199905201609.AAA83226@Terry.Dorm10.NCTU.edu.tw> Date: Fri, 21 May 1999 00:09:01 +0800 (CST) From: Ying-Chieh Liao Reply-To: ijliao@Terry.Dorm10.NCTU.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11802: new port : gtksheet Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11802 >Category: ports >Synopsis: new port : gtksheet >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 May 20 09:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ying-Chieh Liao >Release: FreeBSD 4.0-CURRENT i386 >Organization: NCTU CSIE >Environment: FreeBSD Terry.Dorm10.NCTU.edu.tw 4.0-CURRENT FreeBSD 4.0-CURRENT #19: Wed May 19 18:38:28 CST 1999 root@Terry.Dorm10.NCTU.edu.tw:/usr/src/sys/compile/TERRY i386 >Description: new port : gtksheet >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: # # gtksheet # gtksheet/files # gtksheet/files/md5 # gtksheet/patches # gtksheet/patches/patch-aa # gtksheet/pkg # gtksheet/pkg/COMMENT # gtksheet/pkg/DESCR # gtksheet/pkg/PLIST # gtksheet/Makefile # echo c - gtksheet mkdir -p gtksheet > /dev/null 2>&1 echo c - gtksheet/files mkdir -p gtksheet/files > /dev/null 2>&1 echo x - gtksheet/files/md5 sed 's/^X//' >gtksheet/files/md5 << 'END-of-gtksheet/files/md5' XMD5 (gtksheet-7.4.tar.gz) = 36e80e46aff1f8c112af60bfefb5f44a END-of-gtksheet/files/md5 echo c - gtksheet/patches mkdir -p gtksheet/patches > /dev/null 2>&1 echo x - gtksheet/patches/patch-aa sed 's/^X//' >gtksheet/patches/patch-aa << 'END-of-gtksheet/patches/patch-aa' X--- Makefile.orig Fri Apr 23 04:58:11 1999 X+++ Makefile Thu May 20 23:30:33 1999 X@@ -11,8 +11,8 @@ X OBJS = gtkcombobox.o gtkbordercombo.o gtkcolorcombo.o gtksheetentry.o \ X gtksheet.o X X-LIBDIRS = $(shell gtk-config --libs) X-CFLAGS = -Wall $(shell gtk-config --cflags) X+LIBDIRS = `gtk-config --libs` X+CFLAGS = -Wall `gtk-config --cflags` X X all: demo libGtkSheet.a X END-of-gtksheet/patches/patch-aa echo c - gtksheet/pkg mkdir -p gtksheet/pkg > /dev/null 2>&1 echo x - gtksheet/pkg/COMMENT sed 's/^X//' >gtksheet/pkg/COMMENT << 'END-of-gtksheet/pkg/COMMENT' XGtkSheet is a matrix widget for GTK+. END-of-gtksheet/pkg/COMMENT echo x - gtksheet/pkg/DESCR sed 's/^X//' >gtksheet/pkg/DESCR << 'END-of-gtksheet/pkg/DESCR' XGtkSheet is a matrix widget for GTK+. It consists of an scrollable grid of Xcells where you can allocate text which can be edited interactively. It is Xalso a container subclass, allowing you to display buttons, curves, pixmaps Xand any other widget in it. You can also set many attributes as: border, Xforeground and background color, text justification, and more. GtkSheet comes Xalso with an extra set of useful widgets and a demo program showing all of Xthem interacting in a spreadsheet-like GUI. X XThis distribution includes the following set of widgets: X X* GtkSheet X* GtkSheetEntry X* GtkComboBox X* GtkColorCombo X* GtkBorderCombo X Xand a demo program showing their features. X XWWW : http://www.ifir.edu.ar/grupos/gtk/ X X- Ying-Chieh Liao X ijliao@csie.nctu.edu.tw END-of-gtksheet/pkg/DESCR echo x - gtksheet/pkg/PLIST sed 's/^X//' >gtksheet/pkg/PLIST << 'END-of-gtksheet/pkg/PLIST' Xlib/libGtkSheet.a END-of-gtksheet/pkg/PLIST echo x - gtksheet/Makefile sed 's/^X//' >gtksheet/Makefile << 'END-of-gtksheet/Makefile' X# New ports collection makefile for: gtksheet X# Version required: 7.4 X# Date created: May 21 1999 X# Whom: Ying-Chieh Liao X# X# $Id$ X# X XDISTNAME= gtksheet-7.4 XCATEGORIES= devel XMASTER_SITES= ftp://ripley.ifir.edu.ar/pub/gtk/gtksheet/ X XMAINTAINER= ijliao@csie.nctu.edu.tw X XLIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 X XUSE_X_PREFIX= yes X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/libGtkSheet.a ${PREFIX}/lib X X.include END-of-gtksheet/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 Thu May 20 12: 4:41 1999 Delivered-To: freebsd-ports@freebsd.org Received: from hp9000.chc-chimes.com (unknown [206.67.97.84]) by hub.freebsd.org (Postfix) with ESMTP id 7657F15294; Thu, 20 May 1999 12:03:16 -0700 (PDT) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA282211745; Thu, 20 May 1999 10:49:05 -0400 Date: Thu, 20 May 1999 10:49:05 -0400 (EDT) From: Bill Fumerola To: Satoshi - Ports Wraith - Asami Cc: dervish@bantu.cl.msu.edu, ports@freebsd.org, dervish@ikhala.tcimet.net Subject: Re: How does one claim a port? In-Reply-To: <199905200136.SAA86397@silvia.hip.berkeley.edu> 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 Wed, 19 May 1999, Satoshi - Ports Wraith - Asami wrote: > * I guess you could file a change of maintainership PR. It would just be low > * priority. > > One more thing -- if you have already talked to the previous > maintainer and s/he agreed to the m12p change, then make sure to > mention that in the PR. Otherwise there could be an even longer delay > while a committer tries to contact the previous maintainer. This thread is one that I think was related to a 'ports@FreeBSD.org' port, but I could be wrong. Regardless, I guess these rules could into handbook/ports/chapter.sgml in the 'porting' section. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.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 Thu May 20 13:40: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5908215342 for ; Thu, 20 May 1999 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA78294; Thu, 20 May 1999 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from paris.dppl.com (paris.dppl.com [205.230.74.150]) by hub.freebsd.org (Postfix) with SMTP id D407015090 for ; Thu, 20 May 1999 13:38:04 -0700 (PDT) (envelope-from yds@dppl.com) Received: (qmail 83109 invoked by uid 1001); 20 May 1999 20:37:59 -0000 Message-Id: <19990520203759.83108.qmail@paris.dppl.com> Date: 20 May 1999 20:37:59 -0000 From: yds@dppl.com Reply-To: yds@dppl.com To: FreeBSD-gnats-submit@freebsd.org Cc: jfitz@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/11807: Port update: net/ratoolset Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11807 >Category: ports >Synopsis: Port update: net/ratoolset >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu May 20 13:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Yarema >Release: FreeBSD 3.1-STABLE i386 >Organization: >Environment: FreeBSD 3.1-STABLE Feb 24 02:20:15 EST 1999 i386 >Description: Distribution file no longer available. Updated to the latest 3.5.x release cuz 4.3.3 does not compile with gcc version 2.7.2.1 Since 4.3.3 is being developed on Linux with egcs, perhaps it does build on 4.0-CURRENT. >How-To-Repeat: cd /usr/ports/net/ratoolset && make >Fix: diff -ruN ratoolset-3.5.2/Makefile ratoolset/Makefile --- ratoolset-3.5.2/Makefile Sun Sep 27 21:02:07 1998 +++ ratoolset/Makefile Thu May 20 15:52:12 1999 @@ -6,20 +6,21 @@ # $Id: Makefile,v 1.7 1998/09/28 01:02:07 steve Exp $ # -DISTNAME= RAToolSet-3.5.2 -PKGNAME= ratoolset-3.5.2 -CATEGORIES= net tk41 +DISTNAME= RAToolSet-3.5.8 +PKGNAME= ratoolset-3.5.8 +CATEGORIES= net tk80 MASTER_SITES= ftp://ftp.isi.edu/ra/RAToolSet/ MAINTAINER= jfitz@FreeBSD.ORG -LIB_DEPENDS= tk41.1:${PORTSDIR}/x11-toolkits/tk41 +LIB_DEPENDS= tk80.1:${PORTSDIR}/x11-toolkits/tk80 GNU_CONFIGURE= Yes -CONFIGURE_ENV= TCL_TK_INCLUDE_DIR="${PREFIX}/include/tcl7.5: \ - ${PREFIX}/include/tk4.1" \ +CONFIGURE_ENV= TCL_TK_INCLUDE_DIR="${PREFIX}/include/tcl8.0:${PREFIX}/include/tk8.0" \ TCL_TK_LIBRARY_DIR=${PREFIX}/lib \ - LD_TCL_TK_LIBS="-ltcl75 -ltk41" + TCL_LIBRARY=/usr/local/lib/tcl8.0 \ + TK_LIBRARY=/usr/local/lib/tk8.0 \ + LD_TCL_TK_LIBS="-ltk80 -ltcl80" MAN1= CIDRAdvisor.1 aoe.1 pmatch.1 prpath.1 RtConfig.1 peval.1 \ prcheck.1 roe.1 diff -ruN ratoolset-3.5.2/files/md5 ratoolset/files/md5 --- ratoolset-3.5.2/files/md5 Mon May 5 06:46:19 1997 +++ ratoolset/files/md5 Thu May 20 14:51:57 1999 @@ -1 +1 @@ -MD5 (RAToolSet-3.5.2.tar.gz) = 5ebc74261aa1136bdf28aa8240d01cbd +MD5 (RAToolSet-3.5.8.tar.gz) = 4c7a04539a878ba3bcc5a6de3d12ac38 >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 May 20 13:49:40 1999 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 25644154DA for ; Thu, 20 May 1999 13:49:30 -0700 (PDT) (envelope-from wosch@panke.de.freebsd.org) Received: (from uucp@localhost) by baerenklau.de.freebsd.org (8.8.8/8.8.8) with UUCP id WAA07522; Thu, 20 May 1999 22:49:29 +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 WAA06076; Thu, 20 May 1999 22:07:04 +0200 (CEST) (envelope-from wosch) Message-ID: <19990520220704.16538@panke.de.freebsd.org> Date: Thu, 20 May 1999 22:07:04 +0200 From: Wolfram Schneider To: ports@freebsd.org Cc: hosokawa@jp.FreeBSD.org Subject: [Smith@iftech.com: Samba Port] Reply-To: hosokawa@jp.FreeBSD.org, ports@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ----- Forwarded message from Shane Smith ----- Message-ID: <2D4E786F0EE8D11183BC00A0C903FC2E0132B3@NTS1.iftech.com> From: Shane Smith To: "'wosch@freebsd.org'" Subject: Samba Port Date: Thu, 20 May 1999 11:41:03 -0400 Do you know when the new Samba port (v2.0.4) is to be released for FreeBSD (new current version)? If you don't, do you know how I can compile the new version of Samba to work on FreeBSD? Thank you for your time and have a great day. Shane Smith smith@iftech.com Interface Technologies, Inc. ----- End forwarded message ----- -- 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 Thu May 20 13:59:34 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C35014CFE; Thu, 20 May 1999 13:59:33 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA80070; Thu, 20 May 1999 13:59:32 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Thu, 20 May 1999 13:59:32 -0700 (PDT) From: Message-Id: <199905202059.NAA80070@freefall.freebsd.org> To: mharo@FreeBSD.org, freebsd-ports@FreeBSD.org, jfitz@FreeBSD.org Subject: Re: ports/11807: Port update: net/ratoolset Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: net/ratoolset Responsible-Changed-From-To: freebsd-ports->jfitz Responsible-Changed-By: mharo Responsible-Changed-When: Thu May 20 13:59:16 PDT 1999 Responsible-Changed-Why: Over to maintainer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 20 14:40: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E7FBF14FC1 for ; Thu, 20 May 1999 14:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA83068; Thu, 20 May 1999 14:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (Postfix) with ESMTP id 85C3A1584F for ; Thu, 20 May 1999 14:34:18 -0700 (PDT) (envelope-from roberto@keltia.freenix.fr) Received: (from uucp@localhost) by frmug.org (8.9.1/frmug-2.3/nospam) with UUCP id XAA23699; Thu, 20 May 1999 23:34:00 +0200 (CEST) (envelope-from roberto@keltia.freenix.fr) Received: by keltia.freenix.fr (Postfix, from userid 101) id 5E52487AE; Thu, 20 May 1999 23:29:46 +0200 (CEST) (envelope-from roberto) Message-Id: <19990520212946.5E52487AE@keltia.freenix.fr> Date: Thu, 20 May 1999 23:29:46 +0200 (CEST) From: roberto@keltia.freenix.fr Reply-To: roberto@keltia.freenix.fr To: FreeBSD-gnats-submit@freebsd.org, Jim Mock X-Send-Pr-Version: 3.2 Subject: ports/11809: [PATCH] Update net/xchat up to 0.9.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11809 >Category: ports >Synopsis: net/xchat port is outdated. >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 May 20 14:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ollivier Robert >Release: FreeBSD 4.0-CURRENT i386 >Organization: Usenet Canal Historique >Environment: 4.0-CURRENT. FreeBSD keltia.freenix.fr 4.0-CURRENT FreeBSD 4.0-CURRENT #71: Sun May 9 20:16:32 CEST 1999 roberto@keltia.freenix.fr:/src/src/sys/compile/KELTIA i386 >Description: The author of xchat issued a new version on the 19th of May. Here is a patch to update the port. >How-To-Repeat: Look into net/xchat/Makefile :-) >Fix: Index: Makefile =================================================================== RCS file: /spare/FreeBSD-current/ports/net/xchat/Makefile,v retrieving revision 1.10 diff -u -2 -r1.10 Makefile --- Makefile 1999/05/09 16:57:20 1.10 +++ Makefile 1999/05/20 17:45:24 @@ -1,4 +1,4 @@ # New ports collection makefile for: xchat -# Version required: 0.9.5 +# Version required: 0.9.6 # Date created: 17 Nov 1998 # Whom: Jim Mock @@ -7,5 +7,5 @@ # -DISTNAME= xchat-0.9.5 +DISTNAME= xchat-0.9.6 CATEGORIES= net MASTER_SITES= http://xchat.linuxpower.org/files/ \ Index: files/md5 =================================================================== RCS file: /spare/FreeBSD-current/ports/net/xchat/files/md5,v retrieving revision 1.7 diff -u -2 -r1.7 md5 --- md5 1999/05/09 16:57:29 1.7 +++ md5 1999/05/20 17:45:29 @@ -1 +1 @@ -MD5 (xchat-0.9.5.tar.gz) = cc42bdff05d2b5f2c568ad9173a27a25 +MD5 (xchat-0.9.6.tar.gz) = e4f7b79060746dbd0f3ad4bb7e36d86d >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 May 20 15: 0: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E481C14FC1 for ; Thu, 20 May 1999 15:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA84658; Thu, 20 May 1999 15:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 20 May 1999 15:00:02 -0700 (PDT) Message-Id: <199905202200.PAA84658@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Chris Piazza Subject: Re: ports/11786: gnupg-0.9.6 port does not install Reply-To: Chris Piazza Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11786; it has been noted by GNATS. From: Chris Piazza To: Mike Harding , freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/11786: gnupg-0.9.6 port does not install Date: Thu, 20 May 1999 14:54:01 -0700 (PDT) On 20-May-99 Mike Harding wrote: > I have verified this problem on 3 separate 3.2 systems and on a 3.1 > release system. The > problem seems to be the -pipe in the options for the assembly code - the > compiler hangs > for some reason. Removing the -pipe makes it work, or forcing the port > to not make > the assembly code. > Yes, I confirm that this happens. I just tested it out on my 3.2-RELEASE system and it hung, here's a fix -- I'm still not sure why it happens, though. Index: Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/security/gnupg/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- Makefile 1999/05/09 04:46:30 1.10 +++ Makefile 1999/05/20 21:52:56 @@ -16,16 +16,10 @@ RESTRICTED= "Crypto; export-controlled" GNU_CONFIGURE= YES -CONFIGURE_ARGS= --with-included-gettext +CONFIGURE_ARGS= --with-included-gettext --disable-asm MAN1= gpg.1 MLINKS= gpg.1 gpgm.1 -.include - -.if ${OSVERSION} < 300000 -CONFIGURE_ARGS+=--disable-asm -.endif - post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/share/doc/gnupg @@ -42,4 +36,4 @@ check: (cd ${WRKSRC}; ${MAKE} check) -.include +.include --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 20 15:10: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 918B6151E0 for ; Thu, 20 May 1999 15:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA85729; Thu, 20 May 1999 15:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 20 May 1999 15:10:02 -0700 (PDT) Message-Id: <199905202210.PAA85729@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jim Mock Subject: Re: ports/11809: [PATCH] Update net/xchat up to 0.9.6 Reply-To: Jim Mock Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11809; it has been noted by GNATS. From: Jim Mock To: roberto@keltia.freenix.fr Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/11809: [PATCH] Update net/xchat up to 0.9.6 Date: Fri, 21 May 1999 08:08:23 +1000 On Thu, 20 May 1999 at 23:29:46 +0200, roberto@keltia.freenix.fr wrote: > >Number: 11809 > >Category: ports > >Synopsis: net/xchat port is outdated. > >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 May 20 14:40:01 PDT 1999 > >Closed-Date: > >Last-Modified: > >Originator: Ollivier Robert > >Release: FreeBSD 4.0-CURRENT i386 > >Organization: [snip..] > >Description: > > The author of xchat issued a new version on the 19th of May. Here is > a patch to update the port. ports/11756 already updates this. It just hasn't been committed yet. -- - Jim Mock - jim@blues.ghis.net - systems administrator - ghis.NET - - work: http://www.ghis.net/ - personal: http://www.ghis.net/~jim/ - - FreeBSD 'zine: http://www.freebsdzine.org/ - jim@freebsdzine.org - - FreeBSD: http://advocacy.freebsd.org/ - jim@advocacy.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 May 20 15:50: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EF0F014D97 for ; Thu, 20 May 1999 15:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA89149; Thu, 20 May 1999 15:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 2677914CFC for ; Thu, 20 May 1999 15:43:57 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 639AA1446; Thu, 20 May 1999 15:43:43 -0700 (PDT) Message-Id: <19990520224343.639AA1446@norn.ca.eu.org> Date: Thu, 20 May 1999 15:43:43 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11810: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11810 >Category: ports >Synopsis: >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 May 20 15:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #213: Wed May 19 09:07:23 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: Update tgif to 4.1.9 >How-To-Repeat: >Fix: Index: tgif/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/graphics/tgif/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- Makefile 1999/04/16 16:07:02 1.14 +++ Makefile 1999/05/20 22:39:46 @@ -1,24 +1,19 @@ # New ports collection makefile for: tgif -# Version required: 4.1.1 +# Version required: 4.1.9 # Date created: 30 Jan 1999 # Whom: bmc@WillsCreek.COM # # $Id: Makefile,v 1.14 1999/04/16 16:07:02 mharo Exp $ # -DISTNAME= tgif-4.1.8 +DISTNAME= tgif-4.1.9 CATEGORIES= graphics MASTER_SITES= ftp://bourbon.cs.umd.edu/pub/tgif/ \ ftp://ftp.cs.ucla.edu/pub/tgif/ MAINTAINER= bmc@WillsCreek.COM -RUN_DEPENDS= giftopnm:${PORTSDIR}/graphics/netpbm \ - pnmtotiff:${PORTSDIR}/graphics/netpbm \ - ppmtoxpm:${PORTSDIR}/graphics/netpbm \ - ppmtogif:${PORTSDIR}/graphics/netpbm \ - xbmtopbm:${PORTSDIR}/graphics/netpbm \ - xpmtoppm:${PORTSDIR}/graphics/netpbm +RUN_DEPENDS= giftopnm:${PORTSDIR}/graphics/netpbm USE_IMAKE= yes MAN1= tgif.1 Index: tgif/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/graphics/tgif/files/md5,v retrieving revision 1.12 diff -u -r1.12 md5 --- md5 1999/04/16 16:07:02 1.12 +++ md5 1999/05/20 22:13:06 @@ -1 +1 @@ -MD5 (tgif-4.1.8.tar.gz) = 63cce3cdd6c53d45bef8328ce7f7c959 +MD5 (tgif-4.1.9.tar.gz) = 5f95dbe5452de0fd5373ce7d4a75bfa7 Index: tgif/patches/patch-aa =================================================================== RCS file: /cvs/FreeBSD/ports/graphics/tgif/patches/patch-aa,v retrieving revision 1.9 diff -u -r1.9 patch-aa --- patch-aa 1999/04/16 16:07:03 1.9 +++ patch-aa 1999/05/20 22:17:22 @@ -1,11 +1,11 @@ ---- tgif.man.orig Mon Mar 22 11:54:24 1999 -+++ tgif.man Tue Apr 6 03:30:32 1999 +--- tgif.man.orig Thu May 20 15:17:00 1999 ++++ tgif.man Thu May 20 15:17:09 1999 @@ -8,7 +8,7 @@ .\" .\" .\" --.TH tgif n "Version 4.1 Patchlevel 5 and Above" "Tgif" -+.TH tgif 1L "Version 4.1 Patchlevel 5 and Above" "Tgif" +-.TH tgif n "Version 4.1 Patchlevel 9 and Above" "Tgif" ++.TH tgif 1L "Version 4.1 Patchlevel 9 and Above" "Tgif" .\" .SH NAME .\" -Chris >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 May 20 16:40: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 560AF158F2 for ; Thu, 20 May 1999 16:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA92873; Thu, 20 May 1999 16:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 3CBC31530E for ; Thu, 20 May 1999 16:31:59 -0700 (PDT) (envelope-from root@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 0) id 180781446; Thu, 20 May 1999 16:31:44 -0700 (PDT) Message-Id: <19990520233144.180781446@norn.ca.eu.org> Date: Thu, 20 May 1999 16:31:44 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11811: Update databases/gdbm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11811 >Category: ports >Synopsis: Update databases/gdbm >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 May 20 16:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #213: Wed May 19 09:07:23 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: Update to 1.8.0. This now creates shared libraries and, to the best of my knowledge, is the first port to USE_LIBTOOL ;-) (it was easier than mucking around with the ones that came with the distribution, for sure.) >How-To-Repeat: >Fix: Index: gdbm/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/databases/gdbm/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- Makefile 1999/01/17 04:01:49 1.6 +++ Makefile 1999/05/20 23:30:27 @@ -1,26 +1,26 @@ # New ports collection makefile for: gdbm -# Version required: 1.7.3 +# Version required: 1.8.0 # Date created: 8 Apr 1996 # Whom: Brent J. Nordquist # # $Id: Makefile,v 1.6 1999/01/17 04:01:49 fenner Exp $ # -DISTNAME= gdbm-1.7.3 -CATEGORIES= databases -MASTER_SITES= ${MASTER_SITE_GNU} +DISTNAME= gdbm-1.8.0 +CATEGORIES= databases +MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= gdbm -MAINTAINER= bjn@visi.com +MAINTAINER= bjn@visi.com -GNU_CONFIGURE= yes -MAKE_FLAGS= CFLAGS="${CFLAGS}" LDFLAGS=-s -f -MAN3= gdbm.3 +USE_LIBTOOL= yes +MAN3= gdbm.3 post-install: @if [ ! -f ${PREFIX}/info/dir ]; then \ ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ fi @install-info ${PREFIX}/info/gdbm.info ${PREFIX}/info/dir + @${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib .include Index: gdbm/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/databases/gdbm/files/md5,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 md5 --- md5 1996/04/12 06:44:15 1.1.1.1 +++ md5 1999/05/20 03:42:23 @@ -1 +1 @@ -MD5 (gdbm-1.7.3.tar.gz) = d7fe897b181e2d2295a8d47afa0ac150 +MD5 (gdbm-1.8.0.tar.gz) = cd543862287f55ad66e62cc9d82cc906 Index: gdbm/patches/patch-ab =================================================================== RCS file: /cvs/FreeBSD/ports/databases/gdbm/patches/patch-ab,v retrieving revision 1.1 diff -u -r1.1 patch-ab --- patch-ab 1998/02/15 17:01:02 1.1 +++ patch-ab 1999/05/20 23:01:28 @@ -1,15 +1,24 @@ ---- Makefile.in.orig Sun May 15 13:28:49 1994 -+++ Makefile.in Sat Feb 14 16:37:46 1998 -@@ -88,7 +88,7 @@ +--- Makefile.in.orig Tue May 18 20:16:06 1999 ++++ Makefile.in Thu May 20 16:01:22 1999 +@@ -31,7 +31,7 @@ + LDFLAGS = + # Common prefix for installation directories +-prefix = /usr/local ++prefix = @prefix@ + exec_prefix = $(prefix) + binprefix = $(exec_prefix) + manprefix = $(prefix) +@@ -115,7 +115,7 @@ + DISTFILES = $(SRCS) $(HDRS) $(MSCFILES) --all: libgdbm.a -+all: libgdbm.a info +-all: libgdbm.la ++all: libgdbm.la info progs: $(PROGS) -@@ -149,7 +149,7 @@ +@@ -187,7 +187,7 @@ info: gdbm.info Index: gdbm/pkg/PLIST =================================================================== RCS file: /cvs/FreeBSD/ports/databases/gdbm/pkg/PLIST,v retrieving revision 1.3 diff -u -r1.3 PLIST --- PLIST 1998/08/17 08:31:58 1.3 +++ PLIST 1999/05/20 23:12:50 @@ -4,3 +4,8 @@ @exec [ -f %D/info/dir ] || sed -ne '1,/Menu:/p' /usr/share/info/dir > %D/info/dir @exec install-info %D/info/gdbm.info %D/info/dir lib/libgdbm.a +lib/libgdbm.la +lib/libgdbm.so +lib/libgdbm.so.2 +@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R +@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B -Chris >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 May 20 18:10:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D7D815992 for ; Thu, 20 May 1999 18:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA00207; Thu, 20 May 1999 18:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 20 May 1999 18:10:02 -0700 (PDT) Message-Id: <199905210110.SAA00207@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: mvh@ix.netcom.com (Mike Harding) Subject: Re: ports/11786: gnupg-0.9.6 port does not install Reply-To: mvh@ix.netcom.com (Mike Harding) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11786; it has been noted by GNATS. From: mvh@ix.netcom.com (Mike Harding) To: cpiazza@home.net Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/11786: gnupg-0.9.6 port does not install Date: Thu, 20 May 1999 18:07:51 -0700 (PDT) I also got it to work by putting CFLAGS=-O in /etc/make.conf. It's the -pipe that's making it choke. The build picks up CFLAGS=-O -pipe if you don't define it. X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Date: Thu, 20 May 1999 14:54:01 -0700 (PDT) Reply-To: Chris Piazza Sender: norn@norn.ca.eu.org From: Chris Piazza X-RULES: lists On 20-May-99 Mike Harding wrote: > I have verified this problem on 3 separate 3.2 systems and on a 3.1 > release system. The > problem seems to be the -pipe in the options for the assembly code - the > compiler hangs > for some reason. Removing the -pipe makes it work, or forcing the port > to not make > the assembly code. > Yes, I confirm that this happens. I just tested it out on my 3.2-RELEASE system and it hung, here's a fix -- I'm still not sure why it happens, though. Index: Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/security/gnupg/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- Makefile 1999/05/09 04:46:30 1.10 +++ Makefile 1999/05/20 21:52:56 @@ -16,16 +16,10 @@ RESTRICTED= "Crypto; export-controlled" GNU_CONFIGURE= YES -CONFIGURE_ARGS= --with-included-gettext +CONFIGURE_ARGS= --with-included-gettext --disable-asm MAN1= gpg.1 MLINKS= gpg.1 gpgm.1 -.include - -.if ${OSVERSION} < 300000 -CONFIGURE_ARGS+=--disable-asm -.endif - post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/share/doc/gnupg @@ -42,4 +36,4 @@ check: (cd ${WRKSRC}; ${MAKE} check) -.include +.include --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 20 18:40: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4D94814F4D for ; Thu, 20 May 1999 18:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA02785; Thu, 20 May 1999 18:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id C79B314D4B; Thu, 20 May 1999 18:39:46 -0700 (PDT) Message-Id: <19990521013946.C79B314D4B@hub.freebsd.org> Date: Thu, 20 May 1999 18:39:46 -0700 (PDT) From: nakaji@tutrp.tut.ac.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11813: [New port] gnuplot+ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11813 >Category: ports >Synopsis: [New port] gnuplot+ >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 May 20 18:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: NAKAJI Hiroyuki >Release: FreeBSD-4.0-current >Organization: Toyohashi University of Technology >Environment: FreeBSD nakaji.tutrp.tut.ac.jp 4.0-CURRENT FreeBSD 4.0-CURRENT #10: Wed May 19 13:29:51 JST 1999 root@nakaji.tutrp.tut.ac.jp:/usr/src/sys/compile/PV5000 i386 >Description: Gnuplot+ is a patch package to add some enhanced functions to gnuplot(version 3.7) and enable it to treat Japanese text. Category may be japanese, math and graphics. >How-To-Repeat: >Fix: The skelton is http://nakaji.tutrp.tut.ac.jp/~nakaji/install/FreeBSD/ref/gnuplot+.tgz >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 May 20 23: 9:59 1999 Delivered-To: freebsd-ports@freebsd.org Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 174F5150A8; Thu, 20 May 1999 23:09:49 -0700 (PDT) (envelope-from cpiazza@home.net) Received: from norn.ca.eu.org (localhost.norn.ca.eu.org [127.0.0.1]) by norn.ca.eu.org (Postfix) with ESMTP id 1EFFD1476; Thu, 20 May 1999 23:09:48 -0700 (PDT) Content-Length: 5363 Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Thu, 20 May 1999 23:09:47 -0700 (PDT) Reply-To: Chris Piazza From: Chris Piazza To: dburr@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: AbiWord port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello Donald Burr, porters, I've been looking at upgrading the AbiWord port to 0.7.0, but I've run into a snag and I'd like to see if anyone can shed some light on this. (The current patch is attached.) What is happening is AbiWord is not finding the fonts in the FontPath defined in /etc/XF86Config so it gives an error. FontPath "/usr/local/AbiSuite/fonts/" is in /etc/XF86Config and I've restarted the X server, but no go. What seems to be happening is it's only searching ./fonts/ so if I cd to /usr/local/AbiSuite and run AbiWord it is successful. So basically, I can't seem to find the problem in this mess of C++ code they call AbiWord, and I'm hoping someone else can! So, here is what I have already - which effectively upgrades it. All it is missing is a fix for the font problems. (There's also a problem with using the dictionary (you can't set the ispell path any more) but I haven't looked at that). *NOTE* the abisource.com server is _extremely_ slow right now. I was downloading these files at less than 1KB/sec! YMMV! Thanks, Chris begin 644 AbiWord.patch.gz M'XL("!;T1#<``T%B:5=O?LV=UO M188+ESSUH#_UWX>1*U[;GXCG!Z1^\M=?]=&Y!=19#T3G1(2<60-Q&49) M+!+73\(H%O[75'215D!2>\I4D\S:M2VT6@<*BDR5=*Z/;U;/ST%06[*;6C@7P-.3^OP M"F[((Z1PP0F#@#@)A3+/W8`71CW`5YY"77@%[TB4PHW([RL_(FXJ!ZFEM_1Z M@RUNTV`#.R'@1`3?<@%]J0@[`HJ8ZKQ_".<;V?HU"!=VX,+9*HK@9W>*;Z=Y ML5NWH\M?T)#:'@_1[:;,M*104BZP8WON@_FTA./4LBX,AM;XIG]MGM3LJ2^D MV0AQY-2%N[>7V?V\!$*>Z;Y!NR75X;P_-B]O1T/3.JGEHU^'Z[XU-D<3:SBF MMQ^29-D3Q>B&SXN@M!V8S%#1GH^_FA_& MH_[Y>&+=7WQX!O*TM)-68D>MV1_PG[I0JZT6_I,7+I(X1:GEL@SL"_UEJ6R\ M-G:];F18-4QM>#/&7W-T4CL8%%2@':

PX1<:_M./J0.-CQ+/!<%14E0[! M^]%;:W1^4D.(^!&ESV(Q%B(=BP93`U&E&G!OF9,/5\.SD]IOII5=7E[WWYKY M=0I(59JJ!`U5;BI2/@G<4/`7<6('`6!R,Y*TZG!K4:`IR(^KA3TG(,0?)^N/ MT>;C_./D]NS?-(.6OW""E4O@YVGLMNBL:BTCTII_^J4NU'&6Q8F`%78>>CA6 MI^"X4.0!/_P`P0(C>%#D3#]1GQZJW5KOS)$UO+UYAE]`E25\41_'7\_OGB$K M!U;F673"A>?/Q&5@)SAUY['HX7A0,/-/68>\2+7U.9O$60C+'#R#0"!NJBU9 M&)E79M\RFYM"-&=_PC6F\7(CK`)9X-*(S5A1-FR$M&S89ILQ[=5IB:XSB^.O M=R/S8OCAF2[+ULI/B#CU::8\C<"?HL;KG=A;S>GZ<2+20//P.!?* MP@_ZXWX:&^6LC+=C9YVV->_V5AHQ+W4K?M@:UPK-5ACY,QS3TL3R*5U1UGSY MF+CH8C5?PE^M\O)(:C(_@O3&U,J[6=(QWWK5*7ET[\,:MY/@L/Z[PI[PM+EF98J7K8 M-H56558-='V%&%.\Y4EMVFHGD?7]E[C(^G''/&L&Y`AI?=Y>IK"O3N_L_3WR(TD_^F/SL<./T!"I=28'PO MB*VD@:ST%*,GR;6U)67`VSJ4_&H]1>_)V0OIS@ MO($3F"J*+$M=M=LQU*DG26Y;T;R.;7<=Q2#2U-USL\W(J'F73-MRFVBZ)VO= MKM[6M;8LVWI'-CS%,5QGS[R^L(4;4GM.D15=;5= M;Y2DL^%JU(77]=RV9NAJ5W6,MN))B*6M&E-;<:>2HZM[+@[)('6B*FW5(QV) M:+*A&3*1;978'FE+AMJ5/-O=U#>K*F2JJ MJN[W;_?/MNX^`W<6['0P%9-K"ZXO]4YS MMFYD@S9R>H83J-NDH[.V@)-,ZA M5.#$F2JK.%DS5PU& M;`J6&B`MQWJH^$_-#=+8'26-G;Y1V@ZO\+"(M/0A7.')T'FP%S,"R8,?P^,# M60"R>%B$"V&6?(*<=,:`D&A/MO"%#O"?[Y'?X?7QZ_[9<'+3'P_?F6^:5.-- M10-^^IL;L'";]<[-Y@8ML9C,E[1%X\M.1^[L%$KIZ3A(6E%9$%WR65RL@F!/ M#0=?S@<@?Q"`U92:4M%#CTO17HI/]._D+L(QF5B8\9P,W;B5;^LHLT?RDAYB0@]+4)(8? M10:0,W)K#:TE"8*!'Q$'%XHOJ?.2^PA-8$$K=W.4$0!_*OHQE1U!AA7;.B+P M2+!E%BX\4&J3[JD($U`\OAW/^K.3)A_.O0`NO7V_NK`9R9:3:- M/P6%])P71GVYDN!E)7 MG%_=#^BCX-I'Y$9"MOZ!(#A>8,_BCW5H[*G(2HD2G6[YXQ54*[X?@'ICZ_;Q MZ[/A#1YSWVQ.U!OYQ"K5B`^Z_--L?4K^#@V^"?[-Q]8UZ/3;F^QSR?%5V3F^ M[NMEW]^@JBKE39Y^?9..N_!;N(+Y*D[`=EUDOH3Q($_,'HNXZ_4*DA"^A*L( M/D!,(N3&_XKKC0-?94O:"QP!U:&3]:$%]0 M$4J7SP*X>%1O\%77:C@/_$4:X^B";A]'""O[0@L97@I4)(DC?KCH&.=90Z>3 MM`[#5`RKF(`-="!QI<8LUFDU81D0&X4Q(>#3"H3.:HX:=N9\`0_A(RV&&Y8U M[]W5T!I_G]9-0W]SXV:`:=NFGRJ;=E]D(VY(L2;(:M&QOSA8N/9LAU'F6.L=2Y<54>3%57DR5$7,JR1U)5LHM M"R';DA&S$#(M55Y,E1>3E6+(1L2UY,E1'3E73Z[6.Y92$LLTS_MG#S.)`L)+F+ MLZ'<9R$L\YD)-9ZEQK%4>#$57DR%%U/AQ=1X,35>3(T74^/%-'@Q#5Y,@Q?3 M8,949,YXYD*V)3-F+F1:LL3'9XZDHO#P57IX*+T^%EZ?"RU/AY:GP M\E28>2XEG9UG(61;,F(60J8E*\]"R+;DQ63E&?/6MIBWMOV!%9!41LQ"2"UA M^WM$H8P,;=VE'!A_\=K\W+)+!1?SA"&YC!B"X7QI/BT9PKOQ-&"(TJ$A?,#TVZ2?=%6(KR.4Y\^>3R0EG!(K@(=+;:"7N5!K_"@ M5F%0JS"H51A4#H8=CLE5X'O@8-CAFTP%M0J#6H6!5X<=_EFJL.:@3"'/TN>: M^CS;B&<:<2VY42-VU!V.RE7@>S"J/!@5'GB]O\-;V0I5&%0.AAT.RU5@>=AP MV3+I#I_E*K#\[_!:K@+7@U*%0:G"H%1A4*HP:%48M"H,6A4&K0J#487!J,)@ M5&$PN!BV^#!7@>^!BV&+&S,5^/VPQ9'9"E48^/VPQ9>Y"GP/?`Q*51V4JCHH M5750JNJ@<.NPPZ>Y"GP/'`P[W)JIP*O##L=F*U1AX-4AKEJ'XZIU>(=WX8D=S.-0K%=4;6X\B]^69&>S?3O^;W][-^O\`,.M+[H(R``!U ` end --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 21 3: 0: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B846715976 for ; Fri, 21 May 1999 03:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA52064; Fri, 21 May 1999 03:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.palmerharvey.co.uk (mail.palmerharvey.co.uk [62.172.109.58]) by hub.freebsd.org (Postfix) with ESMTP id 116EC158F7 for ; Fri, 21 May 1999 02:56:49 -0700 (PDT) (envelope-from Dom.Mitchell@palmerharvey.co.uk) Received: from ho-nt-01.pandhm.co.uk (unverified) by mail.palmerharvey.co.uk (Content Technologies SMTPRS 2.0.15) with ESMTP id for ; Fri, 21 May 1999 10:56:23 +0100 Received: from voodoo.pandhm.co.uk ([10.100.35.12]) by ho-nt-01.pandhm.co.uk with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2448.0) id L1BALP3D; Fri, 21 May 1999 10:48:36 +0100 Received: from dom by voodoo.pandhm.co.uk with local (Exim 2.10 #1) id 10km64-000BYj-00 for FreeBSD-gnats-submit@freebsd.org; Fri, 21 May 1999 11:00:08 +0100 Message-Id: Date: Fri, 21 May 1999 11:00:08 +0100 From: Dom Mitchell Reply-To: Dom.Mitchell@palmerharvey.co.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11817: New version of ytalk. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11817 >Category: ports >Synopsis: New version of ytalk. >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 May 21 03:00:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dominic Mitchell >Release: FreeBSD 4.0-CURRENT i386 >Organization: Palmer & Harvey McLane Ltd. >Environment: FreeBSD voodoo.pandhm.co.uk 4.0-CURRENT FreeBSD 4.0-CURRENT #0: Thu May 20 10:56:32 BST 1999 dom@voodoo.pandhm.co.uk:/usr/src/sys/compile/VOODOO i386 >Description: Update to v3.1.1 >How-To-Repeat: n/a >Fix: Here's the patch. No added or deleted files. diff -urP /usr/ports/net/ytalk/Makefile ytalk/Makefile --- /usr/ports/net/ytalk/Makefile Thu Nov 26 00:02:43 1998 +++ ytalk/Makefile Fri May 21 10:56:49 1999 @@ -1,14 +1,17 @@ # New ports collection makefile for: ytalk -# Version required: 3.1 +# Version required: 3.1.1 # Date created: 18 March 1995 # Whom: dom@myrddin.demon.co.uk # # $Id: Makefile,v 1.8 1998/11/25 22:48:06 billf Exp $ # -DISTNAME= ytalk-3.1 +DISTNAME= ytalk-3.1.1 CATEGORIES= net -MASTER_SITES= http://www.eleves.ens.fr:8080/home/espel/ytalk/ +# This site is very slow, so we use sunsite instead. +#MASTER_SITES= http://www.eleves.ens.fr:8080/home/espel/ytalk/ +MASTER_SITES= ${MASTER_SITE_SUNSITE} +MASTER_SITE_SUBDIR= system/network/chat MAINTAINER= dom@myrddin.demon.co.uk diff -urP /usr/ports/net/ytalk/files/md5 ytalk/files/md5 --- /usr/ports/net/ytalk/files/md5 Thu Nov 26 00:02:44 1998 +++ ytalk/files/md5 Fri May 21 10:55:51 1999 @@ -1 +1 @@ -MD5 (ytalk-3.1.tar.gz) = faefb277a3347ff85c4b63a9443743ee +MD5 (ytalk-3.1.1.tar.gz) = 8e4d3cb9832b1653ed1b925c3043d9f0 -- ********************************************************************** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This footnote also confirms that this email message has been swept by MIMEsweeper for the presence of computer viruses. ********************************************************************** >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 May 21 3: 0: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 388301590D for ; Fri, 21 May 1999 03:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA52055; Fri, 21 May 1999 03:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 713D71590D; Fri, 21 May 1999 02:55:56 -0700 (PDT) Message-Id: <19990521095556.713D71590D@hub.freebsd.org> Date: Fri, 21 May 1999 02:55:56 -0700 (PDT) From: sobomax@altavista.net To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11816: New port of mserver modem-sahring server Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11816 >Category: ports >Synopsis: New port of mserver modem-sahring server >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 May 21 03:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Maxim Sobolev >Release: 3.2-STABLE >Organization: Vega International Capital >Environment: FreeBSD vega 3.2-STABLE FreeBSD 3.2-STABLE #0: Tue May 18 11:14:36 EEST 1999 max@vega:/usr/src/sys/compile/MYKERNEL i386 >Description: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # mserver # mserver/Makefile # mserver/pkg # mserver/pkg/PLIST # mserver/pkg/COMMENT # mserver/pkg/DESCR # mserver/files # mserver/files/md5 # mserver/patches # mserver/patches/patch-aa # mserver/patches/patch-ab # mserver/patches/patch-ac # mserver/patches/patch-ad # echo c - mserver mkdir -p mserver > /dev/null 2>&1 echo x - mserver/Makefile sed 's/^X//' >mserver/Makefile << 'END-of-mserver/Makefile' X# New ports collection makefile for: mserver X# Version required: 0.23a X# Date created: 21 May 1999 X# Whom: Maxim Sobolev X# X# $Id$ X# X XDISTNAME= mserver-0.23a XCATEGORIES= comms XMASTER_SITES= ftp://ftp.innet.be/pub/staff/carl/ X XMAINTAINER= sobomax@altavista.net X Xdo-install: X ${MKDIR} ${PREFIX}/share/doc/mserver X ${INSTALL_PROGRAM} ${WRKSRC}/mserver ${PREFIX}/sbin X ${INSTALL_PROGRAM} ${WRKSRC}/tcpconn ${PREFIX}/sbin X ${INSTALL_DATA} ${WRKSRC}/mserver.conf ${PREFIX}/etc/mserver.conf.default X ${INSTALL_SCRIPT} ${WRKSRC}/mserver.sh.sample ${PREFIX}/etc/rc.d/mserver.sh.sample X ${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/mserver X ${INSTALL_MAN} ${WRKSRC}/README.tcpconn ${PREFIX}/share/doc/mserver X X.include END-of-mserver/Makefile echo c - mserver/pkg mkdir -p mserver/pkg > /dev/null 2>&1 echo x - mserver/pkg/PLIST sed 's/^X//' >mserver/pkg/PLIST << 'END-of-mserver/pkg/PLIST' Xsbin/mserver Xsbin/tcpconn Xetc/mserver.conf.default Xetc/rc.d/mserver.sh.sample Xshare/doc/mserver/README Xshare/doc/mserver/README.tcpconn X@dirrm share/doc/mserverEND-of-mserver/pkg/PLIST echo x - mserver/pkg/COMMENT sed 's/^X//' >mserver/pkg/COMMENT << 'END-of-mserver/pkg/COMMENT' XThe mserver program is a network modem sharing server. END-of-mserver/pkg/COMMENT echo x - mserver/pkg/DESCR sed 's/^X//' >mserver/pkg/DESCR << 'END-of-mserver/pkg/DESCR' XThe mserver program is a network modem sharing server which allows modems to Xbe exported to any number of hosts on the (local) internet. Access control to Xeach individually exported modem is performed on a per-host basis. X X- Maxim Sobolev Xsobomax@altavista.net END-of-mserver/pkg/DESCR echo c - mserver/files mkdir -p mserver/files > /dev/null 2>&1 echo x - mserver/files/md5 sed 's/^X//' >mserver/files/md5 << 'END-of-mserver/files/md5' XMD5 (mserver-0.23a.tar.gz) = ff3a68a80de1559b992f4de982a7b876 END-of-mserver/files/md5 echo c - mserver/patches mkdir -p mserver/patches > /dev/null 2>&1 echo x - mserver/patches/patch-aa sed 's/^X//' >mserver/patches/patch-aa << 'END-of-mserver/patches/patch-aa' Xdiff -ruN mserver-0.23a.orig/Makefile mserver-0.23a/Makefile X--- Makefile.orig Thu Jan 15 21:12:33 1998 X+++ Makefile Fri May 21 11:10:30 1999 X@@ -1,8 +1,7 @@ X # X # Makefile for mserver X # X-CC = gcc X-CCOPTS = -O2 X+CC = cc X LIBS = X X INCLUDES = config.h stty.h X@@ -16,13 +15,13 @@ X $(CC) tcpconn.o stty.o -o tcpconn $(LIBS) X X mserver.o: mserver.c $(INCLUDES) X- $(CC) $(CCOPTS) -c -o mserver.o mserver.c X+ $(CC) $(CFLAGS) -c -o mserver.o mserver.c X X tcpconn.o: tcpconn.c $(INCLUDES) X- $(CC) $(CCOPTS) -c -o tcpconn.o tcpconn.c X+ $(CC) $(CFLAGS) -c -o tcpconn.o tcpconn.c X X stty.o: stty.c $(INCLUDES) X- $(CC) $(CCOPTS) -c -o stty.o stty.c X+ $(CC) $(CFLAGS) -c -o stty.o stty.c X X clean: X rm -f mserver tcpconn *.o core END-of-mserver/patches/patch-aa echo x - mserver/patches/patch-ab sed 's/^X//' >mserver/patches/patch-ab << 'END-of-mserver/patches/patch-ab' Xdiff -ruN mserver-0.23a.orig/config.h mserver-0.23a/config.h X--- config.h.orig Sun Jan 18 11:57:10 1998 X+++ config.h Fri May 21 11:51:00 1999 X@@ -4,7 +4,6 @@ X X /* #define if we are building on a BSD system */ X X-#undef BSD X X /* location of the runtime config file */ X X@@ -12,5 +11,5 @@ X X /* location of the spool dir for modem locks */ X X-#define LOCK_DIR "/var/lock" X+#define LOCK_DIR "/var/spool/lock" END-of-mserver/patches/patch-ab echo x - mserver/patches/patch-ac sed 's/^X//' >mserver/patches/patch-ac << 'END-of-mserver/patches/patch-ac' Xdiff -ruN mserver-0.23a.orig/mserver.c mserver-0.23a/mserver.c X--- mserver.c.orig Wed Jan 28 21:52:09 1998 X+++ mserver.c Thu May 20 19:36:14 1999 X@@ -264,7 +264,7 @@ X X static struct { int ibaud, speed; } btable[] = X { X-#if !defined(BSDI) X+#if !defined(BSD) X { 460800, B460800 }, X #endif X { 230400, B230400 }, END-of-mserver/patches/patch-ac echo x - mserver/patches/patch-ad sed 's/^X//' >mserver/patches/patch-ad << 'END-of-mserver/patches/patch-ad' Xdiff -ruN mserver-0.23a.orig/mserver.sh.sample mserver-0.23a/mserver.sh.sample X--- mserver.sh.sample Thu Jan 1 03:00:00 1970 X+++ mserver.sh.sample Fri May 21 12:01:53 1999 X@@ -0,0 +1,3 @@ X+#!/bin/sh X+echo -n " mserver" X+/usr/local/sbin/mserver END-of-mserver/patches/patch-ad 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 Fri May 21 4:44:51 1999 Delivered-To: freebsd-ports@freebsd.org Received: from gate2.consol.de (gate2.consol.de [194.221.87.12]) by hub.freebsd.org (Postfix) with ESMTP id 260B4152DF; Fri, 21 May 1999 04:44:46 -0700 (PDT) (envelope-from Michael.Elbel@consol.de) X-Envelope-Sender-Is: Michael.Elbel@consol.de (at relayer gate2.consol.de) Received: from msgsrv.bb.consol.de (root@msgsrv.bb.consol.de [10.250.0.100]) by gate2.consol.de (8.9.1a/8.9.1) with ESMTP id NAA24440; Fri, 21 May 1999 13:44:46 +0200 (CEST) Received: from fourier.int.consol.de (fourier.int.consol.de [10.0.1.17]) by msgsrv.bb.consol.de (8.8.8/8.8.8) with ESMTP id NAA06874; Fri, 21 May 1999 13:44:06 +0200 Received: (from me@localhost) by fourier.int.consol.de (8.9.3/8.8.7) id NAA13864; Fri, 21 May 1999 13:44:05 +0200 (CEST) (envelope-from me) Date: Fri, 21 May 1999 13:44:05 +0200 From: Michael Elbel To: asami@FreeBSD.ORG Cc: ports@FreeBSD.ORG Subject: Re: Do you need editors/xemacs{,20} (Re: pending/11618: new port: editors/xemacs21) Message-ID: <19990521134405.A793@consol.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i Orig-To: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In lists.freebsd.ports you write: > * From: Jacques Vidrine >Ok, Taoka-san, please yell when you're ready, and I'll do the copy >from xemacs20, which is much closer to xemacs21 than xemacs(19). >xemacs has a much richer history, but unfortunately it wasn't >repository copied when xemacs20 was brought in -- so that part will be >lost forever when it's removed. Hrm. I sent a reply to this thread yesterday, but it seems to have gone down the bitbucket somewhere :-( As the current maintainer of the xemacs and xemacs20 ports, I'm not quite sure how to go on about xemacs-21 since there's a couple of issues that probably should be resolved: - I think it would be feasible to keep the xemacs20 port around, they have changed the way elisp packages are distributed and I can imagine quite a few people that might want to stay with 20.4 no matter what. Yes, they are at xemacs-21.1.2 now and it is very stable, but nevertheless ... - I think it would be wise to *have* the major number in the port name (similar to what e.g. mysql and netscape has) simply so people know what's going on - but I'm perfectly willing to be overruled by people more knowledgeable than me, especially our esteemed ports meister. - In this vein, would it make sense to make a repository copy from xemacs20 to xemacs21 and *keep* 20? That'd give us a complete history even if/when the xemacs20 port gets deleted in the future. - We currently have a mule option in the "base port". Now we also have the explicit mule ports as well. Are there actually people who use the mule stuff with editors/xemacs20? I get the feeling that it might be better to drop mule support in the "base" port and let people who know more about that stuff handle it in the explicit ports. - As I mentioned further up, with xemacs-21, the handling of elisp packages has changed. Earlier releases came with a full set of lisp packages. Now almost everything is distributed as separate "packages". This means that a port without any packages, as submitted in pending/11618, is nearly useless. I see two solutions to that: - Distribute a reasonable set of packages with the actual xemacs port. this requres some Makefile hackery since the packages reside in different dirs on the servers as the rest of xemacs. - provide a reasonable (or not so reasonable :-) set of packages as a seperate port (editors/xemacs-packages). I'm currently leaning toward the later solution since it decouples packages from the base, which reflects what the xemacs people themselves wanted in the first place. Right now I have the following packages installed in my /usr/local/lib/xemacs/xemacs-packages: size name 69913 c-support-1.12-pkg.tar.gz 186436 cc-mode-1.13-pkg.tar.gz 103161 debug-1.09-pkg.tar.gz 187654 dired-1.05-pkg.tar.gz 577970 edit-utils-1.39-pkg.tar.gz 369742 efs-1.14-pkg.tar.gz 17347 fsf-compat-1.05-pkg.tar.gz 1873480 gnus-1.40-pkg.tar.gz 131968 mail-lib-1.23-pkg.tar.gz 107193 net-utils-1.11-pkg.tar.gz 228261 os-utils-1.15-pkg.tar.gz 596965 prog-modes-1.19-pkg.tar.gz 425458 psgml-1.12-pkg.tar.gz 26938 sgml-1.04-pkg.tar.gz 207865 text-modes-1.19-pkg.tar.gz 20006 time-1.07-pkg.tar.gz 317899 viper-1.14-pkg.tar.gz 430640 xemacs-base-1.30-pkg.tar.gz 83543 xemacs-devel-1.21-pkg.tar.gz one could probably leave gnus with its almost 2MB off if not too many people scream, after all there's a nice pagage-retrieval mechanism right there in xemacs. Ok, enough blubbering, I'm in the middle of implementing the mule-less port with separate packages port. If nobody shouts, I'll finish it over the weekend. If there is somebody else who wants to reliably take over the maintenance of the base xemacs ports, please speak up and I'll retire (it's not as if I don't have enough other things to do). Michael -- \|/ -O- Michael Elbel, ConSol* GmbH, - me@consol.de - 089 / 45841-256 /|\ Fermentation fault (coors dumped) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 21 5:40: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 86C961531A for ; Fri, 21 May 1999 05:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA69435; Fri, 21 May 1999 05:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.delanet.com (hermes.delanet.com [208.9.136.62]) by hub.freebsd.org (Postfix) with SMTP id 5DD6214CCB for ; Fri, 21 May 1999 05:37:06 -0700 (PDT) (envelope-from bmc@WillsCreek.COM) Received: (qmail 58543 invoked from network); 21 May 1999 12:38:06 -0000 Received: from unknown (HELO footbridge.willscreek.com) (209.186.57.175) by mail.delanet.com with SMTP; 21 May 1999 12:38:06 -0000 Received: from current.willscreek.com (current.willscreek.com [172.16.87.1]) by footbridge.willscreek.com (8.9.1a/8.9.1) with ESMTP id IAA17502; Fri, 21 May 1999 08:36:51 -0400 (EDT) Received: (from bmc@localhost) by current.willscreek.com (8.9.1/8.8.5) id IAA06821; Fri, 21 May 1999 08:36:49 -0400 (EDT) Message-Id: <199905211236.IAA06821@current.willscreek.com> Date: Fri, 21 May 1999 08:36:49 -0400 (EDT) From: Brian Clapper Reply-To: bmc@WillsCreek.COM To: FreeBSD-gnats-submit@freebsd.org Cc: bmc@WillsCreek.COM X-Send-Pr-Version: 3.2 Subject: ports/11819: [UPDATE] tgif port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11819 >Category: ports >Synopsis: Update of tgif port from version 4.1.8 to version 4.1.10 >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 May 21 05:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Brian Clapper >Release: FreeBSD 3.0-RELEASE i386 >Organization: WillsCreek.COM >Environment: FreeBSD 3.0-RELEASE i386, with 3.0-RELEASE-to-3.1-stable patch applied >Description: Enclosed is an update to the `tgif' port, to bring it up to date with the latest version (4.1.10) of the tgif software distribution. >How-To-Repeat: N/A >Fix: Enclosed is the result of a "diff -uNr tgif-4.1.8 tgif-4.1.10'. Apply this recursive patch to bring the port up-to-date. diff -uNr tgif-4.1.8/Makefile tgif-4.1.10/Makefile --- tgif-4.1.8/Makefile Fri Apr 16 19:28:04 1999 +++ tgif-4.1.10/Makefile Fri May 21 08:18:10 1999 @@ -1,12 +1,12 @@ # New ports collection makefile for: tgif -# Version required: 4.1.1 +# Version required: 4.1.10 # Date created: 30 Jan 1999 # Whom: bmc@WillsCreek.COM # # $Id: Makefile,v 1.14 1999/04/16 16:07:02 mharo Exp $ # -DISTNAME= tgif-4.1.8 +DISTNAME= tgif-4.1.10 CATEGORIES= graphics MASTER_SITES= ftp://bourbon.cs.umd.edu/pub/tgif/ \ ftp://ftp.cs.ucla.edu/pub/tgif/ diff -uNr tgif-4.1.8/files/md5 tgif-4.1.10/files/md5 --- tgif-4.1.8/files/md5 Fri Apr 16 19:28:05 1999 +++ tgif-4.1.10/files/md5 Fri May 21 08:18:39 1999 @@ -1 +1 @@ -MD5 (tgif-4.1.8.tar.gz) = 63cce3cdd6c53d45bef8328ce7f7c959 +MD5 (tgif-4.1.10.tar.gz) = 7ee632f064e5d875037571e5e1979c7a diff -uNr tgif-4.1.8/patches/patch-aa tgif-4.1.10/patches/patch-aa --- tgif-4.1.8/patches/patch-aa Fri Apr 16 19:28:05 1999 +++ tgif-4.1.10/patches/patch-aa Fri May 21 08:19:31 1999 @@ -4,8 +4,8 @@ .\" .\" .\" --.TH tgif n "Version 4.1 Patchlevel 5 and Above" "Tgif" -+.TH tgif 1L "Version 4.1 Patchlevel 5 and Above" "Tgif" +-.TH tgif n "Version 4.1 Patchlevel 10 and Above" "Tgif" ++.TH tgif 1L "Version 4.1 Patchlevel 10 and Above" "Tgif" .\" .SH NAME .\" >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 May 21 8:31:16 1999 Delivered-To: freebsd-ports@freebsd.org Received: from min.net (min.net [208.222.210.19]) by hub.freebsd.org (Postfix) with ESMTP id 635FB14D4B for ; Fri, 21 May 1999 08:31:14 -0700 (PDT) (envelope-from aling@alum.mit.edu) Received: from localhost (outpost.cc.nih.gov [137.187.245.138]) by min.net (8.9.3/8.9.3) with SMTP id LAA20764 for ; Fri, 21 May 1999 11:31:14 -0400 (EDT) Message-Id: <199905211531.LAA20764@min.net> From: "A. Ling" To: "FreeBSD Ports" Date: Fri, 21 May 99 11:31:04 -0400 Reply-To: "A. Ling" X-Mailer: Alexander Ling's Registered PMMail 1.53 For OS/2 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Apache13-php --> Apache-php-1.3.6 config confusion (was: Apache?!) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 28 Mar 1999 23:12:38 +0200 (CEST) Paul Dekkers said: I installed apache 1.3.2 from 3.0R and got the following errors (even after a reboot): # sh apache.sh start Syntax error on line 26 of /usr/local/etc/apache/httpd.conf: Cannot load /usr/local/libexec/apache/mod_mime_magic.so into server: /usr/local/libexec/apache/mod_mime_magic.so: Undefined symbol "ap_make_sub_pool" What do I have to do? When just removing those first lines from httpd.conf the server won't start ether. ------------------------------ I recently had a similar error which arose because the newer Apache-php-1.3.6 port I installed changed the name of httpd.conf to apache.conf. It also meant that none of my access controls worked, because I had put them in httpd.conf. I dont know if this is the right place to mention it, but I also noticed that there's now no "httpd(8)" man page -- it's listed under "apache(8)". Thanks from this user to dirk@FreeBSD.ORG and kudos to all the ports maintainers for all your work! Alex Ling To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 21 9:10: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D096159B7 for ; Fri, 21 May 1999 09:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA56879; Fri, 21 May 1999 09:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from soleil.uvsq.fr (soleil.uvsq.fr [193.51.24.1]) by hub.freebsd.org (Postfix) with ESMTP id 7A0A314F5F for ; Fri, 21 May 1999 09:06:49 -0700 (PDT) (envelope-from card@ens.uvsq.fr) Received: from atlas.ens.uvsq.fr (root@atlas.ens.uvsq.fr [193.51.26.1]) by soleil.uvsq.fr (8.9.3/jtpda-5.3.2) with ESMTP id SAA05330 for ; Fri, 21 May 1999 18:06:48 +0200 (CEST) Received: from alsace.ens.uvsq.fr (alsace.ens.uvsq.fr [193.51.26.20]) by atlas.ens.uvsq.fr (8.8.8/jtpda-5.2) with ESMTP id SAA26727 for ; Fri, 21 May 1999 18:06:48 +0200 (CEST) Received: from (card@localhost) by alsace.ens.uvsq.fr (8.9.3/jtpda-5.2) id SAA94247 ; Fri, 21 May 1999 18:06:47 +0200 (CEST) Message-Id: <199905211606.SAA94247@alsace.ens.uvsq.fr> Date: Fri, 21 May 1999 18:06:47 +0200 (CEST) From: card@ens.uvsq.fr (Remy Card) Reply-To: card@csi.uvsq.fr, bayartb@edgard.fdn.fr To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11820: `makesum' target not defined in bsd.port.subdir.mk Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11820 >Category: ports >Synopsis: bsd.port.subdir.mk does not define the `makesum' target >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: Fri May 21 09:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Remy Card >Release: FreeBSD 3.2-RELEASE i386 >Organization: UVSQ >Environment: >Description: bsd.port.subdir.mk does not define the `makesum' target. So one cannot recursively create checksums in a port hierarchy. >How-To-Repeat: >Fix: Apply the following (untested) patch to bsd.port.subdir.mk *** bsd.port.subdir.mk.bordel Fri May 21 18:04:06 1999 --- bsd.port.subdir.mk Fri May 21 18:04:39 1999 *************** *** 27,33 **** # README.html: # Creating README.html for package. # ! # afterinstall, all, beforeinstall, build, checksum, clean, # clean-for-cdrom, clean-restricted, # clean-for-cdrom-list, clean-restricted-list, # configure, deinstall, --- 27,33 ---- # README.html: # Creating README.html for package. # ! # afterinstall, all, beforeinstall, build, makesum, checksum, clean, # clean-for-cdrom, clean-restricted, # clean-for-cdrom-list, clean-restricted-list, # configure, deinstall, *************** *** 85,91 **** build clean clean-for-cdrom clean-restricted \ clean-for-cdrom-list clean-restricted-list \ deinstall depend depends describe distclean \ ! reinstall tags checksum \ ignorelist .if !target(${__target}) ${__target}: _SUBDIRUSE --- 85,91 ---- build clean clean-for-cdrom clean-restricted \ clean-for-cdrom-list clean-restricted-list \ deinstall depend depends describe distclean \ ! reinstall tags makesum checksum \ ignorelist .if !target(${__target}) ${__target}: _SUBDIRUSE >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 May 21 10: 0:25 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F3B4C15A58 for ; Fri, 21 May 1999 10:00:23 -0700 (PDT) (envelope-from fenner@FreeBSD.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA62307 for ports@freebsd.org; Fri, 21 May 1999 10:00:23 -0700 (PDT) (envelope-from fenner@FreeBSD.org) Date: Fri, 21 May 1999 10:00:23 -0700 (PDT) From: Message-Id: <199905211700.KAA62307@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://www.freebsd.org/~fenner/portsurvey/ . In particular, the list of ports with no MAINTAINER with distfile problems is http://www.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. 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 Fri May 21 10:29:31 1999 Delivered-To: freebsd-ports@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 558) id C866C159DE; Fri, 21 May 1999 10:29:30 -0700 (PDT) To: ports@FreeBSD.ORG Subject: jam port source Message-Id: <19990521172930.C866C159DE@hub.freebsd.org> Date: Fri, 21 May 1999 10:29:30 -0700 (PDT) From: hsu@FreeBSD.ORG (Jeffrey Hsu) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The jam source is no longer available as a tar file. We can fetch the entire source directory from ftp://ftp.perforce.com/pub/jam/src or we can use Perforce Webkeeper client program to get it (see http://public.perforce.com/public/index.html), but that seems very cumbersome. Please advise. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 21 11:50: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B4EF114F9F for ; Fri, 21 May 1999 11:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA75369; Fri, 21 May 1999 11:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 21 May 1999 11:50:01 -0700 (PDT) Message-Id: <199905211850.LAA75369@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Tim Vanderhoek Subject: Re: ports/11820: `makesum' target not defined in bsd.port.subdir.mk Reply-To: Tim Vanderhoek Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11820; it has been noted by GNATS. From: Tim Vanderhoek To: card@csi.uvsq.fr, bayartb@edgard.fdn.fr Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/11820: `makesum' target not defined in bsd.port.subdir.mk Date: Fri, 21 May 1999 14:45:17 -0400 On Fri, May 21, 1999 at 06:06:47PM +0200, Remy Card wrote: > > >Description: > > bsd.port.subdir.mk does not define the `makesum' target. So one cannot > recursively create checksums in a port hierarchy. Out of curiousity, why would one want to recursively create checksums in a port hierarchy? -- This .sig is not innovative, witty, or profund. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 21 13:40: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BA3AC14EF0 for ; Fri, 21 May 1999 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA83608; Fri, 21 May 1999 13:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from rr.iij4u.or.jp (h018.p060.iij4u.or.jp [210.130.60.18]) by hub.freebsd.org (Postfix) with SMTP id 6AE4E14EB6 for ; Fri, 21 May 1999 13:31:10 -0700 (PDT) (envelope-from sada@rr.iij4u.or.jp) Received: (qmail 2787 invoked by uid 1000); 22 May 1999 05:31:09 +0900 Message-Id: <19990521203109.2786.sada@rr.iij4u.or.jp> Date: 22 May 1999 05:31:09 +0900 From: sada@FreeBSD.ORG Reply-To: sada@FreeBSD.ORG To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11824: New port: ld.so Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11824 >Category: ports >Synopsis: New port: ld.so >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri May 21 13:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: SADA Kenji >Release: FreeBSD 3.2-STABLE i386 >Organization: Nagoya.Aichi.Japan >Environment: FreeBSD 3.2-STABLE i386 XFree86 3.3.3.1 >Description: Aout ld.so binary which was forgotten to include in 3.2-RELEASE/compat22. Of cource this is intended to be depended from aout ports, such as netscape browsers. >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: # # ld.so # ld.so/Makefile # ld.so/files # ld.so/files/md5 # ld.so/pkg # ld.so/pkg/COMMENT # ld.so/pkg/DESCR # ld.so/pkg/PLIST # echo c - ld.so mkdir -p ld.so > /dev/null 2>&1 echo x - ld.so/Makefile sed 's/^X//' >ld.so/Makefile << 'END-of-ld.so/Makefile' X# New ports collection makefile for: ld.so X# Version required: 3.2-RELEASE X# Date created: 22 May 1999 X# Whom: sada X# X# $Id$ X# X XDISTNAME= ld.so-3.2r XCATEGORIES= misc XMASTER_SITES= ftp://ftp.freebsd.org/pub/FreeBSD/3.2-RELEASE/compat22/ \ X ftp://ftp.jp.freebsd.org/pub/FreeBSD/3.2-RELEASE/compat22/ XDISTFILES= compat22.aa compat22.ab compat22.ac compat22.ad compat22.ae X XMAINTAINER= sada@FreeBSD.ORG X XDIST_SUBDIR= FreeBSD/3.2-RELEASE/compat22 XEXTRACT_ONLY= XNO_BUILD= yes XSTRIP= X Xpost-extract: X @for i in ${DISTFILES}; do \ X ${CAT} ${DISTDIR}/${DIST_SUBDIR}/$$i; \ X done | tar xzfC - ${WRKDIR} usr/libexec/ld.so X Xdo-install: X @${INSTALL_PROGRAM} ${WRKDIR}/usr/libexec/ld.so ${PREFIX}/libexec/ X @${LN} -sf ${PREFIX}/libexec/ld.so /usr/libexec/ X X.include END-of-ld.so/Makefile echo c - ld.so/files mkdir -p ld.so/files > /dev/null 2>&1 echo x - ld.so/files/md5 sed 's/^X//' >ld.so/files/md5 << 'END-of-ld.so/files/md5' XMD5 (FreeBSD/3.2-RELEASE/compat22/compat22.aa) = 5eff16078992dc1749053b54c03f7c0b XMD5 (FreeBSD/3.2-RELEASE/compat22/compat22.ab) = a5c09ad06494f32aad325ce55381b28a XMD5 (FreeBSD/3.2-RELEASE/compat22/compat22.ac) = 47690fa788086be150100c9c1ccd5e0c XMD5 (FreeBSD/3.2-RELEASE/compat22/compat22.ad) = 023f374bbf5606631f48769277143a8f XMD5 (FreeBSD/3.2-RELEASE/compat22/compat22.ae) = dbd3fcf60442afce65ca8342f9a35828 END-of-ld.so/files/md5 echo c - ld.so/pkg mkdir -p ld.so/pkg > /dev/null 2>&1 echo x - ld.so/pkg/COMMENT sed 's/^X//' >ld.so/pkg/COMMENT << 'END-of-ld.so/pkg/COMMENT' Xaout ld.so - forgotten to include in compat22. END-of-ld.so/pkg/COMMENT echo x - ld.so/pkg/DESCR sed 's/^X//' >ld.so/pkg/DESCR << 'END-of-ld.so/pkg/DESCR' Xaout ld.so - forgotten to include in compat22. XThis is intended to be depended from aout ports, Xsuch as netscape browsers. X X- SADA Kenji Xsada@FreeBSD.ORG END-of-ld.so/pkg/DESCR echo x - ld.so/pkg/PLIST sed 's/^X//' >ld.so/pkg/PLIST << 'END-of-ld.so/pkg/PLIST' Xlibexec/ld.so X@exec ln -sf %D/%F /usr/libexec/ X@unexec rm /usr/%F END-of-ld.so/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 May 21 14: 0: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9CB87152A4 for ; Fri, 21 May 1999 14:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA85547; Fri, 21 May 1999 14:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from wh4-422.st.uni-magdeburg.de (wh4-422.st.Uni-Magdeburg.DE [141.44.164.142]) by hub.freebsd.org (Postfix) with ESMTP id 0A7EF14EF0 for ; Fri, 21 May 1999 13:51:27 -0700 (PDT) (envelope-from j@wh4-422.st.uni-magdeburg.de) Received: (from j@localhost) by wh4-422.st.uni-magdeburg.de (8.9.3/8.9.1) id WAA29329; Fri, 21 May 1999 22:51:22 +0200 (CEST) (envelope-from j) Message-Id: <199905212051.WAA29329@wh4-422.st.uni-magdeburg.de> Date: Fri, 21 May 1999 22:51:22 +0200 (CEST) From: jesse@cs.uni-magdeburg.de Reply-To: jesse@cs.uni-magdeburg.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11825: port update: lang/squeak2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11825 >Category: ports >Synopsis: port update: lang/squeak2 >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 May 21 14:00:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Roland Jesse >Release: FreeBSD 3.1-STABLE i386 >Organization: Otto-von-Guericke University of Magdeburg >Environment: FreeBSD wh4-422.st.uni-magdeburg.de 3.1-STABLE FreeBSD 3.1-STABLE #10: Sun May 9 01:46:54 MEST 1999 j@wh4-422.st.uni-magdeburg.de:/usr/src/sys/compile/RDJ i386 >Description: Update of the Squeak port from version 2.3 to version 2.4. >How-To-Repeat: n/a >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # squeak2 # squeak2/pkg # squeak2/pkg/PLIST # squeak2/pkg/DESCR # squeak2/pkg/COMMENT # squeak2/Makefile # squeak2/files # squeak2/files/md5 # echo c - squeak2 mkdir -p squeak2 > /dev/null 2>&1 echo c - squeak2/pkg mkdir -p squeak2/pkg > /dev/null 2>&1 echo x - squeak2/pkg/PLIST sed 's/^X//' >squeak2/pkg/PLIST << 'END-of-squeak2/pkg/PLIST' Xbin/SqueakVM Xlib/Squeak3D.so Xlib/SoundCodecPrims.so Xshare/squeak/Squeak2.4.changes Xshare/squeak/Squeak2.4.image Xshare/squeak/SqueakV2.sources X@dirrm share/squeak END-of-squeak2/pkg/PLIST echo x - squeak2/pkg/DESCR sed 's/^X//' >squeak2/pkg/DESCR << 'END-of-squeak2/pkg/DESCR' XSqueak is an implementation of the Smalltalk programming Xenvironment; it includes among other things: X X * a rapid-turn-around Smalltalk-80 compiler, X * a caching-JIT run-time virtual machine (with full source in X Smalltalk), X * large class libraries with portable data and GUI models, and X * an integrated development environment with coding tools, GUI X construction. X XSqueak was developed at Apple Labs and Walt Disney and has been ported Xto a variety of computers (including most flavors of UNIX and XWindows). Compared to other Smalltalk systems, Squeak has 4 important Xfeatures: X X * Portability (to almost anything with a processor and display); X * Speed (it uses native C for compute-intensive code); X * Price (free, including all source code and the right to distribute X applications!); and X * Sophistication (full Smalltalk-80 language, libraries, and tools). X XSee http://www.squeak.org/ for more information. X XJacques Vidrine , Roland Jesse END-of-squeak2/pkg/DESCR echo x - squeak2/pkg/COMMENT sed 's/^X//' >squeak2/pkg/COMMENT << 'END-of-squeak2/pkg/COMMENT' XA Smalltalk system with graphical user interface. END-of-squeak2/pkg/COMMENT echo x - squeak2/Makefile sed 's/^X//' >squeak2/Makefile << 'END-of-squeak2/Makefile' X# New ports collection makefile for: squeak X# Version required: 2.4 X# Date created: 21 May 1999 X# Whom: jesse@cs.uni-magdeburg.de X# X# $Id$ X# X XDISTNAME= Squeak-2.4-src XPKGNAME= squeak-2.4 XCATEGORIES= lang XMASTER_SITES= http://www-sor.inria.fr/~piumarta/squeak/unix/release/ X XMAINTAINER= jesse@cs.uni-magdeburg.de X XDISTFILES= ${DISTNAME}${EXTRACT_SUFX} image/${SQUEAK_SRC} X XALLFILES= ${DISTNAME}${EXTRACT_SUFX} ${SQUEAK_SRC} XEXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} X XUSE_XLIB= yes XUSE_GMAKE= yes XDIST_SUBDIR= squeak XSQUEAK_SRC= Squeak2.4.changes.gz Squeak2.4.image.gz SqueakV2.sources.gz XWRKSRC= ${WRKDIR}/2.4 XMAKEFILE= GNUmakefile XVMBUILD= freebsd XMAKE_ARGS= VMBUILD=${VMBUILD} XPORTMAKE= ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} \ X ${MAKEFILE} ${MAKE_ARGS} X Xdo-build: X @(cd ${WRKSRC} && ${PORTMAKE} mkdir) X @(cd ${WRKSRC}/${VMBUILD} && ${PORTMAKE} interp) X @(cd ${WRKSRC}/${VMBUILD} && ${PORTMAKE} plugins) X Xdo-install: X (cd ${WRKSRC}/${VMBUILD} && \ X ${INSTALL_PROGRAM} SqueakVM-2.4-${VMBUILD} ${PREFIX}/bin/SqueakVM) X ${MKDIR} ${PREFIX}/share/squeak X.for f in ${SQUEAK_SRC} X ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/$f ${PREFIX}/share/squeak/$f X (cd ${PREFIX}/share/squeak && ${GUNZIP_CMD} $f) X.endfor X (cd ${WRKSRC}/${VMBUILD} && ${INSTALL_DATA} Squeak3D.so ${PREFIX}/lib) X (cd ${WRKSRC}/${VMBUILD} && \ X ${INSTALL_DATA} SoundCodecPrims.so ${PREFIX}/lib) X ${LDCONFIG} -R X.include END-of-squeak2/Makefile echo c - squeak2/files mkdir -p squeak2/files > /dev/null 2>&1 echo x - squeak2/files/md5 sed 's/^X//' >squeak2/files/md5 << 'END-of-squeak2/files/md5' XMD5 (squeak/Squeak-2.4-src.tar.gz) = ceec574506450570f105e2221fb0837c XMD5 (squeak/Squeak2.4.changes.gz) = f0153d90b57ad1c2acee05ea974b4a0b XMD5 (squeak/Squeak2.4.image.gz) = 9d7f513913444e76c5efcdb719e8d69d XMD5 (squeak/SqueakV2.sources.gz) = 80487895bb1d1cbfddc8736273cccc92 END-of-squeak2/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 Fri May 21 14:20: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EB44514FE2 for ; Fri, 21 May 1999 14:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA87257; Fri, 21 May 1999 14:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 21 May 1999 14:20:02 -0700 (PDT) Message-Id: <199905212120.OAA87257@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Tim Vanderhoek Subject: Re: ports/11825: port update: lang/squeak2 Reply-To: Tim Vanderhoek Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11825; it has been noted by GNATS. From: Tim Vanderhoek To: jesse@cs.uni-magdeburg.de Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/11825: port update: lang/squeak2 Date: Fri, 21 May 1999 17:17:36 -0400 On Fri, May 21, 1999 at 10:51:22PM +0200, jesse@cs.uni-magdeburg.de wrote: > > X > XSee http://www.squeak.org/ for more information. No, list webpages as WWW: http://www.squeak.org/ -- This .sig is not innovative, witty, or profund. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 21 14:20:13 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CE13D14DCC for ; Fri, 21 May 1999 14:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA87251; Fri, 21 May 1999 14:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 21 May 1999 14:20:01 -0700 (PDT) Message-Id: <199905212120.OAA87251@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Benjamin BAYART Subject: Re: ports/11820: `makesum' target not defined in bsd.port.subdir.mk Reply-To: Benjamin BAYART Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11820; it has been noted by GNATS. From: Benjamin BAYART To: vanderh@ecf.utoronto.ca (Tim Vanderhoek) Cc: Subject: Re: ports/11820: `makesum' target not defined in bsd.port.subdir.mk Date: Fri, 21 May 1999 15:13:08 -0400 "Mon ami Tim Vanderhoek m'a dit:" > > On Fri, May 21, 1999 at 06:06:47PM +0200, Remy Card wrote: > > > > >Description: > > > > bsd.port.subdir.mk does not define the `makesum' target. So one cannot > > recursively create checksums in a port hierarchy. > > Out of curiousity, why would one want to recursively create checksums > in a port hierarchy? > When one automatically generates 450 ports :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 21 14:30: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 268AD1509F for ; Fri, 21 May 1999 14:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA88179; Fri, 21 May 1999 14:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 21 May 1999 14:30:02 -0700 (PDT) Message-Id: <199905212130.OAA88179@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "David O'Brien" Subject: Re: ports/11824: New port: ld.so Reply-To: "David O'Brien" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11824; it has been noted by GNATS. From: "David O'Brien" To: freebsd-gnats-submit@freebsd.org, sada@freebsd.org Cc: Subject: Re: ports/11824: New port: ld.so Date: Fri, 21 May 1999 14:20:03 -0700 I am not sure this port is necessary. The compat22 distribution has been fixed on the FTP site (so mirrors should have it now), and the CDROM will have ld.so as part of the compat22 distribution. I have also added ld.so to all three of the compat2* distributions. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 21 14:32: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (Postfix) with ESMTP id CD15414DCC for ; Fri, 21 May 1999 14:31:45 -0700 (PDT) (envelope-from roberto@keltia.freenix.fr) Received: (from uucp@localhost) by frmug.org (8.9.1/frmug-2.3/nospam) with UUCP id XAA27894 for ports@FreeBSD.ORG; Fri, 21 May 1999 23:31:43 +0200 (CEST) (envelope-from roberto@keltia.freenix.fr) Received: by keltia.freenix.fr (Postfix, from userid 101) id 34D88870A; Fri, 21 May 1999 22:05:26 +0200 (CEST) (envelope-from roberto) Date: Fri, 21 May 1999 22:05:26 +0200 From: Ollivier Robert To: "FreeBSD's ports list" Subject: Re: ports/11809: [PATCH] Update net/xchat up to 0.9.6 Message-ID: <19990521220526.A25128@keltia.freenix.fr> Mail-Followup-To: FreeBSD's ports list References: <19990520212946.5E52487AE@keltia.freenix.fr> <19990521080823.C42726@blues.ghis.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/0.95.5i In-Reply-To: <19990521080823.C42726@blues.ghis.net>; from Jim Mock on Fri, May 21, 1999 at 08:08:23AM +1000 X-Operating-System: FreeBSD 4.0-CURRENT/ELF ctm#5322 AMD-K6 MMX @ 200 MHz Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org According to Jim Mock: > ports/11756 already updates this. It just hasn't been committed yet. Sorry. Do you want me to close the PR ? -- Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 4.0-CURRENT #71: Sun May 9 20:16:32 CEST 1999 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 21 17:20: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 04817150F5 for ; Fri, 21 May 1999 17:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA01090; Fri, 21 May 1999 17:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mango.attlabs.att.com (gate.ipo.att.com [135.197.57.2]) by hub.freebsd.org (Postfix) with ESMTP id 5081314CC7 for ; Fri, 21 May 1999 17:14:31 -0700 (PDT) (envelope-from fenner@mango.attlabs.att.com) Received: (from fenner@localhost) by mango.attlabs.att.com (8.9.3/8.9.2) id RAA11962; Fri, 21 May 1999 17:11:17 -0700 (PDT) (envelope-from fenner) Message-Id: <199905220011.RAA11962@mango.attlabs.att.com> Date: Fri, 21 May 1999 17:11:17 -0700 (PDT) From: Bill Fenner Reply-To: fenner@research.att.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11826: textproc/catdoc: wordview uses wrong wish Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11826 >Category: ports >Synopsis: textproc/catdoc: wordview uses wrong wish >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri May 21 17:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Bill Fenner >Release: FreeBSD 3.1-STABLE i386 >Organization: AT&T >Environment: catdoc port as of Fri May 21 17:07:55 PDT 1999 >Description: textproc/catdoc uses #!/usr/local/bin/wish to run wish, which is not wish on FreeBSD. >How-To-Repeat: % cd /usr/ports/textproc/catdoc % make % rehash % wordview set: Variable name must begin with a letter. % >Fix: If it's acceptable to make the port depend on TK, then: CONFIGURE_ARGS= --with-wish=/usr/local/bin/wish8.0 RUN_DEPENDS= wish8.0:${PORTSDIR}/x11-toolkits/tk80 If it's not, then modify configure to look for wish8.0 before looking for wish. >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 May 21 17:40: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 691AC14DD6 for ; Fri, 21 May 1999 17:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA01924; Fri, 21 May 1999 17:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 21 May 1999 17:40:02 -0700 (PDT) Message-Id: <199905220040.RAA01924@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Bill Fenner Subject: Re: ports/11826: textproc/catdoc: wordview uses wrong wish Reply-To: Bill Fenner Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11826; it has been noted by GNATS. From: Bill Fenner To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/11826: textproc/catdoc: wordview uses wrong wish Date: Fri, 21 May 1999 17:33:02 -0700 >CONFIGURE_ARGS= --with-wish=/usr/local/bin/wish8.0 Uh, of course I meant ${PREFIX}/bin =) Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 21 20:50: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BD6DB151CB for ; Fri, 21 May 1999 20:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA12842; Fri, 21 May 1999 20:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id C234E15024 for ; Fri, 21 May 1999 20:46:03 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 2E49F142F; Fri, 21 May 1999 20:45:56 -0700 (PDT) Message-Id: <19990522034556.2E49F142F@norn.ca.eu.org> Date: Fri, 21 May 1999 20:45:56 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11827: New port: quirc Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11827 >Category: ports >Synopsis: New port: quirc >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 May 21 20:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #213: Wed May 19 09:07:23 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: A port of "QuIRC" -- a nice IRC client for X that uses TCL/TK. Portlint checks out fine. >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: # # quirc # quirc/files # quirc/files/md5 # quirc/pkg # quirc/pkg/COMMENT # quirc/pkg/DESCR # quirc/pkg/PLIST # quirc/Makefile # echo c - quirc mkdir -p quirc > /dev/null 2>&1 echo c - quirc/files mkdir -p quirc/files > /dev/null 2>&1 echo x - quirc/files/md5 sed 's/^X//' >quirc/files/md5 << 'END-of-quirc/files/md5' XMD5 (quirc.tar.gz) = 78732d2641cf8aaf5cb60e9f4ea4f100 END-of-quirc/files/md5 echo c - quirc/pkg mkdir -p quirc/pkg > /dev/null 2>&1 echo x - quirc/pkg/COMMENT sed 's/^X//' >quirc/pkg/COMMENT << 'END-of-quirc/pkg/COMMENT' XAn irc client for the X Window System that uses TCL/TK. END-of-quirc/pkg/COMMENT echo x - quirc/pkg/DESCR sed 's/^X//' >quirc/pkg/DESCR << 'END-of-quirc/pkg/DESCR' XAn IRC client for the X Window System that uses TCL/TK. It boasts Xmany advanced scripting facilities and a clean interface. X XWWW: http://quirc.org/ X X-Chris Piazza Xcpiazza@home.net END-of-quirc/pkg/DESCR echo x - quirc/pkg/PLIST sed 's/^X//' >quirc/pkg/PLIST << 'END-of-quirc/pkg/PLIST' Xbin/quirc Xbin/quirc.inst Xshare/quirc/VERSION Xshare/quirc/country.tcl Xshare/quirc/dal.tcl Xshare/quirc/default.tcl Xshare/quirc/fun.tcl Xshare/quirc/global.tcl Xshare/quirc/killjpq.tcl Xshare/quirc/mircservers.tcl Xshare/quirc/newserver.tcl Xshare/quirc/notify.tcl Xshare/quirc/popups.tcl Xshare/quirc/qwidgets.tcl Xshare/quirc/servers Xshare/quirc/style.tcl Xshare/quirc/translate.tcl Xshare/quirc/variables.tcl Xshare/quirc/winpopup.tcl X@dirrm share/quirc END-of-quirc/pkg/PLIST echo x - quirc/Makefile sed 's/^X//' >quirc/Makefile << 'END-of-quirc/Makefile' X# New ports collection makefile for: QuIRC X# Version required: 0.9.76 X# Date created: 21 May 1999 X# Whom: Chris Piazza X# X# $Id$ X# X XDISTNAME= quirc XPKGNAME= quirc-0.9.76 XCATEGORIES= net tk80 XMASTER_SITES= http://www.quirc.org/ \ X http://patearl.powersurfr.com/quirc/ X XMAINTAINER= cpiazza@home.net X XLIB_DEPENDS= tk80.1:${PORTSDIR}/x11-toolkits/tk80 X XUSE_XLIB= yes XGNU_CONFIGURE= yes X X.include END-of-quirc/Makefile exit -Chris >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 May 21 21: 0: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9191C14D6C for ; Fri, 21 May 1999 21:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA13723; Fri, 21 May 1999 21:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 21 May 1999 21:00:01 -0700 (PDT) Message-Id: <199905220400.VAA13723@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Tim Vanderhoek Subject: Re: ports/11826: textproc/catdoc: wordview uses wrong wish Reply-To: Tim Vanderhoek Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11826; it has been noted by GNATS. From: Tim Vanderhoek To: Bill Fenner Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/11826: textproc/catdoc: wordview uses wrong wish Date: Fri, 21 May 1999 23:57:57 -0400 On Fri, May 21, 1999 at 05:11:17PM -0700, Bill Fenner wrote: > > If it's acceptable to make the port depend on TK, then: > > CONFIGURE_ARGS= --with-wish=/usr/local/bin/wish8.0 > > RUN_DEPENDS= wish8.0:${PORTSDIR}/x11-toolkits/tk80 Why not just configure it for wish8.0 but leave out the RUN_DEPENDS. I believe that's how it was in the original port, without generating any complaints. -- This .sig is not innovative, witty, or profund. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 21 21:55: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from smtp04.nwnexus.com (smtp04.nwnexus.com [206.63.63.52]) by hub.freebsd.org (Postfix) with ESMTP id 22DFB14C18; Fri, 21 May 1999 21:55:01 -0700 (PDT) (envelope-from wrsomsky@halcyon.com) Received: from gramarye (evt-lx100-ip46.nwnexus.net [204.57.235.46]) by smtp04.nwnexus.com (8.8.8/8.8.8) with ESMTP id VAA08082; Fri, 21 May 1999 21:54:01 -0700 (PDT) Received: (from wrsomsky@localhost) by gramarye (8.9.3/8.9.3) id TAA17306; Fri, 21 May 1999 19:04:15 -0700 (PDT) (envelope-from wrsomsky) Date: Fri, 21 May 1999 19:04:15 -0700 From: "William R. Somsky" To: Mike Smith Cc: Benjamin Greenwald , The Hermit Hacker , freebsd-ports@FreeBSD.ORG, freebsd-stable@FreeBSD.ORG Subject: Re: Couldn't open /usr/libexec/ld.so. Message-ID: <19990521190415.A7247@gramarye.halcyon.com> References: <000701bea153$61030d20$160e6f12@lcs.mit.edu> <199905181840.LAA04698@dingo.cdrom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <199905181840.LAA04698@dingo.cdrom.com>; from Mike Smith on Tue, May 18, 1999 at 11:40:49AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, May 18, 1999 at 11:40:49AM -0700, Mike Smith wrote: > > > > > > Just installed 3.2-RELEASE from scratch, have only had time so far to > > > install a new kernel onto her, and just installed netscape from ports: > > > > > > atelier# /usr/local/netscape-4.51/netscape > > > Couldn't open /usr/libexec/ld.so. > > > > The netscape binary is a.out format. You need to install the FreeBSD a.out > > compat libraries and dynamic linker/loader as well as the a.out versions of > > the X libraries. > > There's a bug in the compat22 distball that causes this. We'll update > it sometime today (look for new timestamps on the compat22 stuff); the > fixed version will be on the CDROMs as well. As of yesterday (99/05/20), there still seems to be a problem when doing a "buildworld/installworld" w/ COMPAT22=YES however... I sucked down the compat22 distball, and it worked, but a build w/ COMPAT22=YES didn't. The only difference seems to be the presence of /usr/lib/exec/ld.so. All the other aout compatibility libraries/files seem to be there, but ld.so is missing... ________________________________________________________________________ William R. Somsky wrsomsky@halcyon.com Physicist, Baritone, Guitarist http://www.halcyon.com/wrsomsky To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 21 23:41:58 1999 Delivered-To: freebsd-ports@freebsd.org Received: from area51.fremont.ca.us (d60-076.leach.ucdavis.edu [169.237.60.76]) by hub.freebsd.org (Postfix) with ESMTP id 1889C151CB for ; Fri, 21 May 1999 23:41:56 -0700 (PDT) (envelope-from mharo@area51.fremont.ca.us) Received: (from mharo@localhost) by area51.fremont.ca.us (8.9.3/8.9.2) id XAA36172; Fri, 21 May 1999 23:40:59 -0700 (PDT) (envelope-from mharo) Date: Fri, 21 May 1999 23:40:59 -0700 From: Michael Haro To: Benjamin BAYART Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/11820: `makesum' target not defined in bsd.port.subdir.mk Message-ID: <19990521234059.A28031@area51.fremont.ca.us> Mail-Followup-To: Benjamin BAYART , freebsd-ports@FreeBSD.ORG References: <199905212120.OAA87251@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <199905212120.OAA87251@freefall.freebsd.org>; from Benjamin BAYART on Fri, May 21, 1999 at 02:20:01PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, May 21, 1999 at 02:20:01PM -0700, Benjamin BAYART wrote: > > Out of curiosity, why would one want to recursively create checksums > > in a port hierarchy? > > > > When one automatically generates 450 ports :-) Why are you automaticly generating 450 ports? Michael To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 21 23:44:29 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 916FB151CB; Fri, 21 May 1999 23:44:28 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA24397; Fri, 21 May 1999 23:44:28 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Fri, 21 May 1999 23:44:28 -0700 (PDT) From: Message-Id: <199905220644.XAA24397@freefall.freebsd.org> To: cpiazza@home.net, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11810: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Fri May 21 23:43:37 PDT 1999 State-Changed-Why: PR 11819 updates to version 4.1.10 (newer) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 21 23:53:21 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C1CB51573D; Fri, 21 May 1999 23:53:12 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA24929; Fri, 21 May 1999 23:53:12 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Fri, 21 May 1999 23:53:12 -0700 (PDT) From: Message-Id: <199905220653.XAA24929@freefall.freebsd.org> To: Dom.Mitchell@palmerharvey.co.uk, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11817: New version of ytalk. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New version of ytalk. State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Fri May 21 23:53:02 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 21 23:56:32 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 771CB152EA; Fri, 21 May 1999 23:56:31 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA25123; Fri, 21 May 1999 23:56:31 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Fri, 21 May 1999 23:56:31 -0700 (PDT) From: Message-Id: <199905220656.XAA25123@freefall.freebsd.org> To: mharo@FreeBSD.org, freebsd-ports@FreeBSD.org, mharo@FreeBSD.org Subject: Re: ports/11819: Update of tgif port from version 4.1.8 to version 4.1.10 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update of tgif port from version 4.1.8 to version 4.1.10 Responsible-Changed-From-To: freebsd-ports->mharo Responsible-Changed-By: mharo Responsible-Changed-When: Fri May 21 23:56:06 PDT 1999 Responsible-Changed-Why: I'll do this To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 22 0: 0: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E978915214 for ; Sat, 22 May 1999 00:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA25341; Sat, 22 May 1999 00:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 6B9EB15387 for ; Fri, 21 May 1999 23:53:48 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 67D8C143A; Fri, 21 May 1999 23:53:42 -0700 (PDT) Message-Id: <19990522065342.67D8C143A@norn.ca.eu.org> Date: Fri, 21 May 1999 23:53:42 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11830: Update net/imcq Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11830 >Category: ports >Synopsis: Update net/imcq >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 May 22 00:00:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #213: Wed May 19 09:07:23 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: Update to 0.4.1 >How-To-Repeat: asdf >Fix: Index: micq/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/net/micq/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- Makefile 1999/04/06 20:46:56 1.5 +++ Makefile 1999/05/22 06:38:25 @@ -1,14 +1,14 @@ # New ports collection makefile for: micq -# Version required: 0.4.0 +# Version required: 0.4.1 # Date created: 11 Oct 1998 # Whom: mph # # $Id: Makefile,v 1.5 1999/04/06 20:46:56 mph Exp $ # -DISTNAME= micq-0.4.0 +DISTNAME= micq-0.4.1 CATEGORIES= net -MASTER_SITES= ftp://micq.chatzone.org/pub/micq/V0.4.0/ +MASTER_SITES= ftp://micq.chatzone.org/pub/micq/V0.4.1/ EXTRACT_SUFX= .tgz MAINTAINER= mph@freebsd.org Index: micq/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/net/micq/files/md5,v retrieving revision 1.5 diff -u -r1.5 md5 --- md5 1999/04/06 20:46:58 1.5 +++ md5 1999/05/22 06:41:25 @@ -1 +1 @@ -MD5 (micq-0.4.0.tgz) = 5d020c7a6c208ad06ea791c4a425307c +MD5 (micq-0.4.1.tgz) = c0d9d32727335401386964e8f256e73f Index: micq/patches/patch-aa =================================================================== RCS file: /cvs/FreeBSD/ports/net/micq/patches/patch-aa,v retrieving revision 1.5 diff -u -r1.5 patch-aa --- patch-aa 1999/04/06 20:47:00 1.5 +++ patch-aa 1999/05/22 06:52:26 @@ -1,13 +1,22 @@ ---- Makefile.orig Tue Apr 6 13:40:57 1999 -+++ Makefile Tue Apr 6 13:41:19 1999 +--- Makefile.orig Thu May 20 20:06:38 1999 ++++ Makefile Fri May 21 23:52:15 1999 @@ -1,8 +1,8 @@ # Anyone who knows how to make Makefiles please help out. # I have no clue but this appears to work fairly well # be sure to use gmake -CC = gcc -CFLAGS = -O4 -Wall -DUNIX -DANSI_COLOR -+#CC = gcc ++CC ?= gcc +CFLAGS += -DUNIX -DANSI_COLOR + CFLAGS += -DMAX_CONTACTS=255 CFLAGS += -DUSE_MREADLINE CFLAGS += -DENGLISH_LANG - #CFLAGS += -DBRAZIL_LANG +@@ -18,7 +18,7 @@ + # Uncomment the below line for humorous messages + CFLAGS += -DFUNNY_MSGS + # uncomment the line below for debuging info +-CFLAGS += -g ++#CFLAGS += -g + CLIBS = + #uncomment the line below if your using Solaris + #CLIBS= -lnsl -lsocket -Chris >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 May 22 0: 2: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3906F1533B; Sat, 22 May 1999 00:02:05 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA25442; Sat, 22 May 1999 00:02:05 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Sat, 22 May 1999 00:02:05 -0700 (PDT) From: Message-Id: <199905220702.AAA25442@freefall.freebsd.org> To: jim@phrantic.phear.net, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11809: net/xchat port is outdated. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: net/xchat port is outdated. State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Sat May 22 00:01:36 PDT 1999 State-Changed-Why: Duplicater of ports/11756 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 22 0:10: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B883152EA for ; Sat, 22 May 1999 00:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA25735; Sat, 22 May 1999 00:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 1A0A315491 for ; Sat, 22 May 1999 00:05:25 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 7B90A143A; Sat, 22 May 1999 00:05:23 -0700 (PDT) Message-Id: <19990522070523.7B90A143A@norn.ca.eu.org> Date: Sat, 22 May 1999 00:05:23 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11831: Update: graphics/gview Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11831 >Category: ports >Synopsis: Update: graphics/gview >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 May 22 00:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #213: Wed May 19 09:07:23 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: Update to 0.1.5. >How-To-Repeat: >Fix: Index: gview/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/graphics/gview/Makefile,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 Makefile --- Makefile 1999/05/03 04:21:32 1.1.1.1 +++ Makefile 1999/05/22 06:55:03 @@ -1,12 +1,12 @@ # New ports collection makefile for: gview -# Version required: 0.1.4 +# Version required: 0.1.5 # Date created: 30 April 1999 # Whom: Andrey Zakhvatov # # $Id: Makefile,v 1.1.1.1 1999/05/03 04:21:32 steve Exp $ # -DISTNAME= gview-0.1.4 +DISTNAME= gview-0.1.5 CATEGORIES= graphics MASTER_SITES= http://www.geocities.com/ResearchTriangle/Facility/1468/sg/ Index: gview/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/graphics/gview/files/md5,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 md5 --- md5 1999/05/03 04:21:33 1.1.1.1 +++ md5 1999/05/22 06:57:03 @@ -1 +1 @@ -MD5 (gview-0.1.4.tar.gz) = 165d1ab2b25707a369c35fb85fb89330 +MD5 (gview-0.1.5.tar.gz) = f80d8ae4904003e21f2b403f162610e2 -Chris >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 May 22 1:40: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C65C014BF1 for ; Sat, 22 May 1999 01:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA30988; Sat, 22 May 1999 01:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 22 May 1999 01:40:01 -0700 (PDT) Message-Id: <199905220840.BAA30988@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Bill Fenner Subject: Re: ports/11826: textproc/catdoc: wordview uses wrong wish Reply-To: Bill Fenner Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11826; it has been noted by GNATS. From: Bill Fenner To: vanderh@ecf.utoronto.ca Cc: freebsd-gnats-submit@freebsd.org Subject: Re: ports/11826: textproc/catdoc: wordview uses wrong wish Date: Sat, 22 May 1999 01:31:48 -0700 I thought that the configure script complains if you give it a --with-wish that doesn't exist; it doesn't, but it will still build and install a non-working wordview. I guess this is not too bad. Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 22 5:50: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 78B8D14EB7 for ; Sat, 22 May 1999 05:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA48846; Sat, 22 May 1999 05:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 5CD6314C05 for ; Sat, 22 May 1999 05:47:56 -0700 (PDT) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 3.00 #1) id 10lBBz-000NbE-00 for FreeBSD-gnats-submit@freebsd.org; Sat, 22 May 1999 14:47:55 +0200 Message-Id: <90719.927377275@axl.noc.iafrica.com> Date: Sat, 22 May 1999 14:47:55 +0200 From: Sheldon Hearn Reply-To: Sheldon Hearn To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11833: [PATCH] Fix xosview's SwapMeter for 4.0-CURRENT Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11833 >Category: ports >Synopsis: [PATCH] Fix xosview's SwapMeter for 4.0-CURRENT >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 May 22 05:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Sheldon Hearn >Release: FreeBSD 4.0-CURRENT i386 >Organization: UUNET South Africa >Environment: FreeBSD 4.0-CURRENT #3: Wed May 19 11:19:10 SAST 1999 i386 >Description: xosview's SwapMeter has been broken for 4.0-CURRENT since Matt started working on the VM subsystem. >How-To-Repeat: Compile and run xosview on 4.0-CURRENT, paying attention to the STDERR text it spits out. >Fix: Make use of the function kvm_getswapinfo() provided by Matt for querying swap usage in 4.0-CURRENT. Index: Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/xosview/Makefile,v retrieving revision 1.15 diff -u -d -r1.15 Makefile --- Makefile 1999/05/10 16:33:50 1.15 +++ Makefile 1999/05/22 12:36:35 @@ -19,6 +19,4 @@ GNU_CONFIGURE= yes MAN1= xosview.1 -# BROKEN= SwapMeter broken for 4.0+ - .include Index: patches/patch-af =================================================================== RCS file: patch-af diff -N patch-af --- /dev/null Sat May 22 14:32:47 1999 +++ patch-af Sat May 22 14:31:03 1999 @@ -0,0 +1,21 @@ +--- configure.orig Thu Feb 25 19:13:19 1999 ++++ configure Sat May 22 14:30:39 1999 +@@ -1785,6 +1785,18 @@ + echo host_dir is $host_dir + host_os=netbsd ;; + ++freebsd4*) ++ EXTRALIBS="-lkvm $XPMLIB $DEVSTATLIB" ++ INSTALL_ARGS='-s -g kmem -m 02555' ++ cat >> confdefs.h <<\EOF ++#define XOSVIEW_FREEBSD 1 ++#define USE_KVM_GETSWAPINFO 1 ++EOF ++ ++ ++ host_dir=bsd ++ host_os=freebsd ;; ++ + freebsd*) + EXTRALIBS="-lkvm $XPMLIB $DEVSTATLIB" + INSTALL_ARGS='-s -g kmem -m 02555' Index: patches/patch-ag =================================================================== RCS file: patch-ag diff -N patch-ag --- /dev/null Sat May 22 14:32:47 1999 +++ patch-ag Sat May 22 14:23:48 1999 @@ -0,0 +1,99 @@ +--- bsd/swapinternal.cc.orig Fri Sep 18 17:38:56 1998 ++++ bsd/swapinternal.cc Sat May 22 14:22:21 1999 +@@ -77,6 +77,9 @@ + #endif + #include /* For malloc(). */ + #include /* For bzero(). */ ++#ifdef USE_KVM_GETSWAPINFO ++#include /* For getpagesize(). */ ++#endif + + + +@@ -91,6 +94,11 @@ + #define swap_kd kd + extern kvm_t* swap_kd; + ++#ifdef USE_KVM_GETSWAPINFO ++static struct kvm_swap kvmsw[16]; ++static int kvnsw; ++static int pagesize; ++#else /* USE_KVM_GETSWAPINFO */ + struct nlist syms[] = { + { "_swdevt" }, /* list of swap devices and sizes */ + #define VM_SWDEVT 0 +@@ -134,14 +142,25 @@ + printf("cannot read %s: %s", msg, kvm_geterr(swap_kd)); \ + return (0); \ + } ++#endif /* USE_KVM_GETSWAPINFO */ + + int + BSDInitSwapInfo() + { + static int once = 0; +- u_long ptr; ++#ifdef USE_KVM_GETSWAPINFO ++ char msgbuf[BUFSIZ]; ++ struct kvm_swap dummy; + ++ if (kvm_getswapinfo(kd, &dummy, 1, 0) < 0) { ++ snprintf(msgbuf, sizeof(msgbuf), ++ "xosview: swap: kvm_getswapinfo failed"); ++ } ++ pagesize = getpagesize(); ++#else /* USE_KVM_GETSWAPINFO */ ++ u_long ptr; + (void) ptr; // Avoid gcc warnings. ++ + if (once) + return (1); + if (kvm_nlist(swap_kd, syms)) { +@@ -185,6 +204,7 @@ + } + KGET1(VM_SWDEVT, sw, (signed) (nswdev * sizeof(*sw)), "swdevt"); + #endif /* XOSVIEW_FREEBSD */ ++#endif /* USE_KVM_GETSWAPINFO */ + once = 1; + return (1); + } +@@ -194,6 +214,7 @@ + int + fetchswap() + { ++#ifndef USE_KVM_GETSWAPINFO + struct rlist head; + struct rlist *swapptr; + +@@ -236,6 +257,9 @@ + + swapptr = head.rl_next; + } ++#else /* USE_KVM_GETSWAPINFO */ ++ kvnsw = kvm_getswapinfo(kd, kvmsw, 1, 0); ++#endif /* USE_KVM_GETSWAPINFO */ + return 0; + + } +@@ -308,6 +332,15 @@ + int i, avail, npfree, used=0, xsize, xfree; + + fetchswap(); ++#ifdef USE_KVM_GETSWAPINFO ++ avail = used = 0; ++ if (kvnsw == 0) { ++ avail += pagesize * kvmsw[0].ksw_total; ++ used += pagesize * kvmsw[0].ksw_used; ++ } ++ *total = avail; ++ *free = avail - used; ++#else /* USE_KVM_GETSWAPINFO */ + avail = npfree = 0; + for (i = 0; i < nswdev; i++) { + /* +@@ -350,4 +383,5 @@ + /* Convert from 512-byte blocks to bytes. */ + *total = 512*avail; + *free = 512*(avail-used); ++#endif /* USE_KVM_GETSWAPINFO */ + } >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 May 22 6:10: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BC18714C05 for ; Sat, 22 May 1999 06:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA49861; Sat, 22 May 1999 06:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 22 May 1999 06:10:01 -0700 (PDT) Message-Id: <199905221310.GAA49861@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: ports/11833: [PATCH] Fix xosview's SwapMeter for 4.0-CURRENT Reply-To: Sheldon Hearn Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11833; it has been noted by GNATS. From: Sheldon Hearn To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/11833: [PATCH] Fix xosview's SwapMeter for 4.0-CURRENT Date: Sat, 22 May 1999 15:04:47 +0200 I need a review of this one under 3.2-STABLE because I haaven't tested it in that environment. Thanks, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 22 6:40: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C96D14D3D for ; Sat, 22 May 1999 06:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA51337; Sat, 22 May 1999 06:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 22 May 1999 06:40:02 -0700 (PDT) Message-Id: <199905221340.GAA51337@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Tim Vanderhoek Subject: Re: ports/11826: textproc/catdoc: wordview uses wrong wish Reply-To: Tim Vanderhoek Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11826; it has been noted by GNATS. From: Tim Vanderhoek To: Bill Fenner Cc: freebsd-gnats-submit@freebsd.org Subject: Re: ports/11826: textproc/catdoc: wordview uses wrong wish Date: Sat, 22 May 1999 09:32:59 -0400 On Sat, May 22, 1999 at 04:31:48AM -0400, Bill Fenner wrote: > > I thought that the configure script complains if you give it a --with-wish > that doesn't exist; it doesn't, but it will still build and install a > non-working wordview. I guess this is not too bad. I would hardly classify wordview as essential to catdoc. It's more like a handy add-on. Kinda "Oh hey. If I have X installed, I can do this, too." Nifty, but unnecessary. So yes, it is not too bad. :-) -- This .sig is not innovative, witty, or profund. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 22 8: 1:45 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C8E414EE8; Sat, 22 May 1999 08:01:44 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA33799; Sat, 22 May 1999 08:01:44 -0700 (PDT) (envelope-from sada@FreeBSD.org) Date: Sat, 22 May 1999 08:01:44 -0700 (PDT) From: Message-Id: <199905221501.IAA33799@freefall.freebsd.org> To: sada@FreeBSD.ORG, sada@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11824: New port: ld.so Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: ld.so State-Changed-From-To: open->closed State-Changed-By: sada State-Changed-When: Sat May 22 08:00:45 PDT 1999 State-Changed-Why: Using newly distributed compat22 would be better. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 22 9: 0: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9B78A14CE9 for ; Sat, 22 May 1999 09:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA73913; Sat, 22 May 1999 09:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from inga.augusta.de (inga.augusta.de [193.175.23.65]) by hub.freebsd.org (Postfix) with ESMTP id 0924814BC9 for ; Sat, 22 May 1999 08:57:54 -0700 (PDT) (envelope-from shanee@rabbit.augusta.de) Received: from rabbit.UUCP (uucp@localhost) by inga.augusta.de (8.8.8/8.8.7) with UUCP id RAA25830 for freebsd.org!FreeBSD-gnats-submit; Sat, 22 May 1999 17:57:51 +0200 (MET DST) Received: from localhost (1361 bytes) by rabbit.augusta.de via sendmail with P:stdio/R:smart_host/T:uux (sender: ) (ident using unix) id for ; Sat, 22 May 1999 17:34:33 +0200 (CEST) (Smail-3.2.0.101 1997-Dec-17 #1 built CET-2-Jan) Message-Id: Date: Sat, 22 May 1999 17:34:33 +0200 (CEST) From: shanee@augusta.de Reply-To: shanee@augusta.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11834: strange logsurfer behaviour Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11834 >Category: ports >Synopsis: strange logsurfer behaviour >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 May 22 09:00:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Andreas Kohout >Release: FreeBSD 3.2-STABLE i386 >Organization: Private Site >Environment: logsurfer-1.41 from the ports >Description: Stack overflow with empty config file >How-To-Repeat: n/a >Fix: *** src/logsurfer.c.OLD Mon Apr 8 17:15:53 1996 --- src/logsurfer.c Sat Mar 20 16:58:19 1999 *************** *** 382,387 **** --- 382,388 ---- (void) fprintf(stderr, "unable to allocate memory for logline_buffer\n"); exit(99); } + logline_buffer[0]='\0'; while ( (opt = getopt(argc, argv, "fc:d:l:p:r:s")) != EOF ) switch(opt) { *** src/readcf.c.OLD Fri Feb 16 14:45:31 1996 --- src/readcf.c Sat Mar 20 17:03:10 1999 *************** *** 112,117 **** --- 112,118 ---- (void) fprintf(stderr, "memory problems reading configfile\n"); return(1); } + buffer[0]='\0'; /* dito for one complete configline */ cfline_size=1024; if ( (cfline=(char *)malloc(cfline_size)) == NULL ) { >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 May 22 10:20: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 351D314D93 for ; Sat, 22 May 1999 10:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA03983; Sat, 22 May 1999 10:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 10FCD14D93 for ; Sat, 22 May 1999 10:12:11 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 2412D144A; Sat, 22 May 1999 10:12:08 -0700 (PDT) Message-Id: <19990522171208.2412D144A@norn.ca.eu.org> Date: Sat, 22 May 1999 10:12:08 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11835: New port: aumix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11835 >Category: ports >Synopsis: New port: aumix >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 May 22 10:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #213: Wed May 19 09:07:23 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: A fullscreen mixer for the console using ncurses >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: # # aumix # aumix/files # aumix/files/md5 # aumix/pkg # aumix/pkg/COMMENT # aumix/pkg/DESCR # aumix/pkg/PLIST # aumix/Makefile # echo c - aumix mkdir -p aumix > /dev/null 2>&1 echo c - aumix/files mkdir -p aumix/files > /dev/null 2>&1 echo x - aumix/files/md5 sed 's/^X//' >aumix/files/md5 << 'END-of-aumix/files/md5' XMD5 (aumix-1.18.4.tar.gz) = 1451d865adc0a529c7b0fb5e7e2888ee END-of-aumix/files/md5 echo c - aumix/pkg mkdir -p aumix/pkg > /dev/null 2>&1 echo x - aumix/pkg/COMMENT sed 's/^X//' >aumix/pkg/COMMENT << 'END-of-aumix/pkg/COMMENT' XA fullscreen ncurses based audio mixer for the console. END-of-aumix/pkg/COMMENT echo x - aumix/pkg/DESCR sed 's/^X//' >aumix/pkg/DESCR << 'END-of-aumix/pkg/DESCR' XA program for adjusting audio mixers from the command line or Xscripts, or interactively at the console or a terminal with a full-screen, Xncurses-based interface X XWWW: http://jpj.net/~trevor/aumix.html X X-Chris Piazza Xcpiazza@home.net END-of-aumix/pkg/DESCR echo x - aumix/pkg/PLIST sed 's/^X//' >aumix/pkg/PLIST << 'END-of-aumix/pkg/PLIST' Xbin/aumix Xshare/locale/de/LC_MESSAGES/aumix.mo Xshare/locale/es/LC_MESSAGES/aumix.mo Xshare/locale/pl/LC_MESSAGES/aumix.mo Xshare/locale/pt_BR/LC_MESSAGES/aumix.mo Xshare/locale/ru/LC_MESSAGES/aumix.mo Xshare/locale/ua/LC_MESSAGES/aumix.mo END-of-aumix/pkg/PLIST echo x - aumix/Makefile sed 's/^X//' >aumix/Makefile << 'END-of-aumix/Makefile' X# New ports collection makefile for: aumix X# Version required: 1.18.4 X# Date created: 21 May 1999 X# Whom: Chris Piazza X# X# $Id$ X# X XDISTNAME= aumix-1.18.4 XCATEGORIES= audio XMASTER_SITES= http://jpj.net/~trevor/aumix/ \ X ${MASTER_SITE_SUNSITE} XMASTER_SITE_SUBDIR= apps/sound/mixers X XMAINTAINER= cpiazza@home.net X XLIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext X XGNU_CONFIGURE= yes XUSE_GMAKE= yes XCONFIGURE_ENV+= CPPFLAGS="-L${LOCALBASE}/lib -I${LOCALBASE}/include" \ X LDFLAGS="-L${LOCALBASE}/lib -I${LOCALBASE}/include" X XMAN1= aumix.1 X X.include END-of-aumix/Makefile exit -Chris >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 May 22 12:20: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B0BE315101 for ; Sat, 22 May 1999 12:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA20798; Sat, 22 May 1999 12:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from henoch.cc.fh-lippe.de (henoch.cc.fh-lippe.de [193.16.112.72]) by hub.freebsd.org (Postfix) with ESMTP id E62A014FAC for ; Sat, 22 May 1999 12:10:50 -0700 (PDT) (envelope-from lkoeller@cc.fh-lippe.de) Received: from spock.cc.fh-lippe.de([193.16.118.120]) (9640 bytes) by henoch.cc.fh-lippe.de via sendmail with P:smtp/R:inet_hosts/T:smtp (sender: ) id for ; Sat, 22 May 1999 21:10:49 +0200 (MET DST) (Smail-3.2.0.101 1997-Dec-17 #3 built 1998-Feb-3) Received: from cc.fh-lippe.de by spock.cc.fh-lippe.de with smtp (Smail3.1.29.1 #2) id m10lH51-0006yhC; Sat, 22 May 99 21:05 MET DST Received: (from lkoeller@localhost) by cc.fh-lippe.de (8.9.2/8.9.1) id UAA85061; Sat, 22 May 1999 20:48:54 +0200 (CEST) (envelope-from lkoeller) Message-Id: <199905221848.UAA85061@cc.fh-lippe.de> Date: Sat, 22 May 1999 20:48:54 +0200 (CEST) From: lkoeller@cc.fh-lippe.de Reply-To: lkoeller@cc.fh-lippe.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11836: Update of grace to 5.0.2b Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11836 >Category: ports >Synopsis: Upgrade of grace port from 5.0.1a to 5.0.2b >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 May 22 12:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Lars Koeller >Release: FreeBSD 3.1-RELEASE i386 >Organization: Fachhochschule Lippe, Lemgo, Germany >Environment: FreeBSD 3.1-RELEASE i386 >Description: Upgrade of grace port from 5.0.1a to 5.0.2b. A lot of enhancements are added, and many bugs are fixed. >How-To-Repeat: - >Fix: Apply the appended patch! diff -abcr ../grace-5.0.1-port/Makefile ./Makefile *** ../grace-5.0.1-port/Makefile Fri Apr 2 14:32:37 1999 --- ./Makefile Sat May 22 20:17:00 1999 *************** *** 6,13 **** # $Id: Makefile,v 1.1.1.1 1999/03/18 08:41:40 taoka Exp $ # ! DISTNAME= grace-5.0.1 ! PKGNAME= grace-5.0.1a CATEGORIES= math print # # You never know when and why this caotic team moves it to ../src/old/ :-) --- 6,13 ---- # $Id: Makefile,v 1.1.1.1 1999/03/18 08:41:40 taoka Exp $ # ! DISTNAME= grace-5.0.2beta ! PKGNAME= grace-5.0.2b CATEGORIES= math print # # You never know when and why this caotic team moves it to ../src/old/ :-) *************** *** 19,25 **** ftp://abragam.med.utoronto.ca/pub/mirrors/grace/src/old/ \ ftp://linux.mathematik.tu-darmstadt.de/pub/linux/mirrors/misc/grace/src/old/ \ ftp://linux.mathematik.tu-darmstadt.de/pub/linux/mirrors/misc/grace/src/ - EXTRACT_SUFX= alpha.tar.gz MAINTAINER= Lars.Koeller@Uni-Bielefeld.DE --- 19,24 ---- *************** *** 28,36 **** ${LOCALBASE}/lib/libgd.a:${PORTSDIR}/graphics/gd \ ${LOCALBASE}/lib/libpdf.a:${PORTSDIR}/print/pdflib LIB_DEPENDS= Xbae.6:${PORTSDIR}/x11-toolkits/xbae \ ! fftw.2:${PORTSDIR}/math/fftw USE_X_PREFIX= YES REQUIRE_MOTIF= YES HAS_CONFIGURE= YES CONFIGURE_ARGS= -prefix=${X11BASE} \ --- 27,37 ---- ${LOCALBASE}/lib/libgd.a:${PORTSDIR}/graphics/gd \ ${LOCALBASE}/lib/libpdf.a:${PORTSDIR}/print/pdflib LIB_DEPENDS= Xbae.6:${PORTSDIR}/x11-toolkits/xbae \ ! fftw.2:${PORTSDIR}/math/fftw \ ! Xpm.4:${PORTSDIR}/graphics/xpm USE_X_PREFIX= YES + USE_GMAKE= YES REQUIRE_MOTIF= YES HAS_CONFIGURE= YES CONFIGURE_ARGS= -prefix=${X11BASE} \ diff -abcr ../grace-5.0.1-port/files/md5 ./files/md5 *** ../grace-5.0.1-port/files/md5 Sun Dec 20 16:41:51 1998 --- ./files/md5 Sat May 22 19:43:36 1999 *************** *** 1 **** ! MD5 (grace-5.0.1alpha.tar.gz) = c367387d3fd2b0565cf8c2e81f9c37c0 --- 1 ---- ! MD5 (grace-5.0.2beta.tar.gz) = 7c65b81366aeb95e01766b41c6d4e32d diff -abcr ../grace-5.0.1-port/pkg/PLIST ./pkg/PLIST *** ../grace-5.0.1-port/pkg/PLIST Wed Dec 23 21:29:03 1998 --- ./pkg/PLIST Sat May 22 20:40:52 1999 *************** *** 2,58 **** lib/X11/grace/auxiliary/fdf2fit lib/X11/grace/auxiliary/greg2jul.c lib/X11/grace/auxiliary/jul2greg.c ! lib/X11/grace/auxiliary/magic.xmgr lib/X11/grace/bin/gracebat lib/X11/grace/bin/grconvert lib/X11/grace/bin/xmgrace lib/X11/grace/doc/CHANGES.html lib/X11/grace/doc/FAQ.html lib/X11/grace/doc/GPL.html ! lib/X11/grace/doc/MIGRATION.html ! lib/X11/grace/doc/acegr_np.html ! lib/X11/grace/doc/commands.html ! lib/X11/grace/doc/data.html ! lib/X11/grace/doc/dblclick.html ! lib/X11/grace/doc/dlmodule.html ! lib/X11/grace/doc/edcrset.html ! lib/X11/grace/doc/file.html ! lib/X11/grace/doc/fonts.html ! lib/X11/grace/doc/graphops.html ! lib/X11/grace/doc/guide.html ! lib/X11/grace/doc/hotkeys.html ! lib/X11/grace/doc/intro.html ! lib/X11/grace/doc/main.html ! lib/X11/grace/doc/nohelp.html ! lib/X11/grace/doc/npipe.html ! lib/X11/grace/doc/options.html ! lib/X11/grace/doc/page.html lib/X11/grace/doc/philosophical-gnu-sm.jpg - lib/X11/grace/doc/plot.html - lib/X11/grace/doc/points.html - lib/X11/grace/doc/regions.html - lib/X11/grace/doc/sets.html - lib/X11/grace/doc/test_np.c - lib/X11/grace/doc/testf_np.f - lib/X11/grace/doc/trans.html - lib/X11/grace/doc/usage.html - lib/X11/grace/doc/view.html lib/X11/grace/examples/altaxis.par ! lib/X11/grace/examples/au.d lib/X11/grace/examples/axes.agr ! lib/X11/grace/examples/bar.d ! lib/X11/grace/examples/bar2.d ! lib/X11/grace/examples/bars.d lib/X11/grace/examples/brw.dat ! lib/X11/grace/examples/co2.all lib/X11/grace/examples/co2.par lib/X11/grace/examples/dotest lib/X11/grace/examples/explain.agr ! lib/X11/grace/examples/fills.dat lib/X11/grace/examples/graphs.par ! lib/X11/grace/examples/hilo.dat ! lib/X11/grace/examples/log.d ! lib/X11/grace/examples/logistic.d lib/X11/grace/examples/logistic.fit lib/X11/grace/examples/logtest.par lib/X11/grace/examples/manygraphs.agr --- 2,48 ---- lib/X11/grace/auxiliary/fdf2fit lib/X11/grace/auxiliary/greg2jul.c lib/X11/grace/auxiliary/jul2greg.c ! lib/X11/grace/auxiliary/magic.grace lib/X11/grace/bin/gracebat lib/X11/grace/bin/grconvert lib/X11/grace/bin/xmgrace lib/X11/grace/doc/CHANGES.html lib/X11/grace/doc/FAQ.html lib/X11/grace/doc/GPL.html ! lib/X11/grace/doc/10.1.dat ! lib/X11/grace/doc/10a.dat ! lib/X11/grace/doc/10b.dat ! lib/X11/grace/doc/10c.dat ! lib/X11/grace/doc/2.1.dat ! lib/X11/grace/doc/3.dat ! lib/X11/grace/doc/7.1.2.agr ! lib/X11/grace/doc/7.1.3.agr ! lib/X11/grace/doc/8.2.dat ! lib/X11/grace/doc/FAQ.dvi ! lib/X11/grace/doc/Tutorial.dvi ! lib/X11/grace/doc/Tutorial.html ! lib/X11/grace/doc/UsersGuide.dvi ! lib/X11/grace/doc/UsersGuide.html ! lib/X11/grace/doc/mygraph.gif ! lib/X11/grace/doc/shiftdata.sh lib/X11/grace/doc/philosophical-gnu-sm.jpg lib/X11/grace/examples/altaxis.par ! lib/X11/grace/examples/au.agr lib/X11/grace/examples/axes.agr ! lib/X11/grace/examples/bar.agr lib/X11/grace/examples/brw.dat ! lib/X11/grace/examples/chartebar.agr ! lib/X11/grace/examples/charts.agr ! lib/X11/grace/examples/co2.agr lib/X11/grace/examples/co2.par lib/X11/grace/examples/dotest lib/X11/grace/examples/explain.agr ! lib/X11/grace/examples/fills.agr lib/X11/grace/examples/graphs.par ! lib/X11/grace/examples/hilo.agr ! lib/X11/grace/examples/log.dat ! lib/X11/grace/examples/log2.agr ! lib/X11/grace/examples/logistic.agr lib/X11/grace/examples/logistic.fit lib/X11/grace/examples/logtest.par lib/X11/grace/examples/manygraphs.agr *************** *** 62,89 **** lib/X11/grace/examples/props.agr lib/X11/grace/examples/regions.par lib/X11/grace/examples/slideshow.d ! lib/X11/grace/examples/stackedb.d lib/X11/grace/examples/symslines.agr ! lib/X11/grace/examples/tbar3.dat ! lib/X11/grace/examples/terr.d ! lib/X11/grace/examples/terr2.d lib/X11/grace/examples/test.com lib/X11/grace/examples/test.dat lib/X11/grace/examples/test1.par ! lib/X11/grace/examples/test2.d lib/X11/grace/examples/tfonts.agr lib/X11/grace/examples/tforms.par ! lib/X11/grace/examples/times.dat ! lib/X11/grace/examples/tinset.d lib/X11/grace/examples/tlog.agr lib/X11/grace/examples/tmc.c ! lib/X11/grace/examples/tpipe.d ! lib/X11/grace/examples/tstack.dat ! lib/X11/grace/examples/txyr.dat lib/X11/grace/examples/typeset.agr lib/X11/grace/fonts/FontDataBase - lib/X11/grace/fonts/enc/Default.enc lib/X11/grace/fonts/enc/IsoLatin1.enc lib/X11/grace/fonts/type1/d050000l.afm lib/X11/grace/fonts/type1/d050000l.pfb lib/X11/grace/fonts/type1/n019003l.afm --- 52,77 ---- lib/X11/grace/examples/props.agr lib/X11/grace/examples/regions.par lib/X11/grace/examples/slideshow.d ! lib/X11/grace/examples/stackedb.agr lib/X11/grace/examples/symslines.agr ! lib/X11/grace/examples/terr.agr ! lib/X11/grace/examples/terr2.agr lib/X11/grace/examples/test.com lib/X11/grace/examples/test.dat lib/X11/grace/examples/test1.par ! lib/X11/grace/examples/test2.agr lib/X11/grace/examples/tfonts.agr lib/X11/grace/examples/tforms.par ! lib/X11/grace/examples/times.agr ! lib/X11/grace/examples/tinset.agr lib/X11/grace/examples/tlog.agr lib/X11/grace/examples/tmc.c ! lib/X11/grace/examples/tstack.agr ! lib/X11/grace/examples/txyr.agr lib/X11/grace/examples/typeset.agr lib/X11/grace/fonts/FontDataBase lib/X11/grace/fonts/enc/IsoLatin1.enc + lib/X11/grace/fonts/enc/IsoLatin2.enc lib/X11/grace/fonts/type1/d050000l.afm lib/X11/grace/fonts/type1/d050000l.pfb lib/X11/grace/fonts/type1/n019003l.afm *************** *** 114,120 **** lib/X11/grace/fonts/type1/s050000l.pfb lib/X11/grace/include/grace_np.h lib/X11/grace/lib/libgrace_np.a ! lib/X11/grace/gracerc.sample bin/xmgrace bin/gracebat @dirrm lib/X11/grace/auxiliary --- 102,111 ---- lib/X11/grace/fonts/type1/s050000l.pfb lib/X11/grace/include/grace_np.h lib/X11/grace/lib/libgrace_np.a ! lib/libgrace_np.a ! lib/X11/grace/templates/Default.agr ! lib/X11/grace/gracerc ! lib/X11/grace/gracerc.user bin/xmgrace bin/gracebat @dirrm lib/X11/grace/auxiliary *************** *** 126,129 **** --- 117,121 ---- @dirrm lib/X11/grace/fonts @dirrm lib/X11/grace/include @dirrm lib/X11/grace/lib + @dirrm lib/X11/grace/templates @dirrm lib/X11/grace >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 May 22 12:50: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 847E914D13 for ; Sat, 22 May 1999 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA26807; Sat, 22 May 1999 12:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 668AA14CC9 for ; Sat, 22 May 1999 12:44:45 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 811E3147C; Sat, 22 May 1999 12:44:41 -0700 (PDT) Message-Id: <19990522194441.811E3147C@norn.ca.eu.org> Date: Sat, 22 May 1999 12:44:41 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11837: Update: net/curl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11837 >Category: ports >Synopsis: Update: net/curl >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 May 22 12:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #213: Wed May 19 09:07:23 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: Update to 5.9 >How-To-Repeat: >Fix: Index: curl/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/net/curl/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- Makefile 1999/05/06 14:09:05 1.5 +++ Makefile 1999/05/22 19:37:13 @@ -1,11 +1,11 @@ # New ports collection makefile for: curl -# Version required: 5.8 +# Version required: 5.9 # Date created: 12 December 1998 # Whom: Neil Blakey-Milner # # $Id: Makefile,v 1.5 1999/05/06 14:09:05 flathill Exp $ -DISTNAME= curl-5.8 +DISTNAME= curl-5.9 CATEGORIES= net www MASTER_SITES= http://www.fts.frontec.se/~dast/stuff/ \ ftp://ftp.rhrz.uni-bonn.de/pub-koeln/net/inet/ \ Index: curl/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/net/curl/files/md5,v retrieving revision 1.3 diff -u -r1.3 md5 --- md5 1999/05/06 14:09:08 1.3 +++ md5 1999/05/22 19:37:40 @@ -1 +1 @@ -MD5 (curl-5.8.tar.gz) = f4df722201de1984e22193708d1cda12 +MD5 (curl-5.9.tar.gz) = c073c04a85392825bc7c8be279799ad6 -Chris >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 May 22 14:50: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8252914E06 for ; Sat, 22 May 1999 14:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA49638; Sat, 22 May 1999 14:50:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id EFD0514D7B for ; Sat, 22 May 1999 14:48:04 -0700 (PDT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by shale.csir.co.za (8.9.3/8.9.3) id XAA10810; Sat, 22 May 1999 23:48:02 +0200 (SAT) (envelope-from reg) Message-Id: <199905222148.XAA10810@shale.csir.co.za> Date: Sat, 22 May 1999 23:48:02 +0200 (SAT) From: reg@shale.csir.co.za Reply-To: reg@shale.csir.co.za To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11840: Feature fixup: bsd.port.mk Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11840 >Category: ports >Synopsis: Feature fixup: bsd.port.mk >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 May 22 14:50:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jeremy Lea >Release: FreeBSD 4.0-CURRENT i386 >Organization: Arb's Inc. >Environment: FreeBSD Ports collection. >Description: Make some changes to the USE_LIBTOOL feature to better support the collection. With these changes I've been able to convert most of the libtool using ports with a minimum of fuss, including all the GTK+/GNOME ports and the KDE ports. It should also support non-standard install prefixes. >How-To-Repeat: >Fix: Index: bsd.port.mk =================================================================== RCS file: /usr/home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.313 diff -u -r1.313 bsd.port.mk --- bsd.port.mk 1999/05/10 23:11:07 1.313 +++ bsd.port.mk 1999/05/22 21:20:55 @@ -126,6 +126,7 @@ # LIBTOOL - Set to path of libtool (default: libtool). # LIBTOOLFILES - Files to patch for libtool (defaults: "aclocal.m4" if # USE_AUTOCONF is set, "configure" otherwise). +# LIBTOOLFLAGS - Additional flags to pass to ltconfig. # USE_PERL5 - Says that the port uses perl5 for building and running. # PERL5 - Set to full path of perl5, either in the system or # installed from a port. @@ -660,7 +661,7 @@ # Miscellaneous overridable commands: GMAKE?= gmake AUTOCONF?= autoconf -LIBTOOL?= ${LOCALBASE}/bin/libtool +LIBTOOL?= libtool XMKMF?= xmkmf -a .if exists(/sbin/md5) MD5?= /sbin/md5 @@ -1836,11 +1837,17 @@ .if !target(patch-libtool) patch-libtool: - @(cd ${WRKSRC}; \ + @(LIBTOOLDIR=`${LIBTOOL} --prefix`/share/libtool || \ + (echo "Your libtool installation is out of date. Please remove"; \ + echo "and reinstall ${PORTSDIR}/devel/libtool."; \ + exit 1); \ + cd ${WRKSRC}; \ for file in ${LIBTOOLFILES}; do \ ${CP} $$file $$file.tmp; \ - ${SED} -e s^\$$\(top_builddir\)/libtool^${LIBTOOL}^g \ - $$file.tmp > $$file; \ + ${SED} -e "s^\$$ac_aux_dir/ltconfig^$${LIBTOOLDIR}/ltconfig^g" \ + $$file.tmp | \ + ${SED} -e "s^\$$ac_aux_dir/ltmain.sh^${LIBTOOLFLAGS} $${LIBTOOLDIR}/ltmain.sh^g" \ + > $$file; \ done); .endif >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 May 22 14:50:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 33D1914D9F for ; Sat, 22 May 1999 14:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA49617; Sat, 22 May 1999 14:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 87A4514DFE for ; Sat, 22 May 1999 14:40:07 -0700 (PDT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by shale.csir.co.za (8.9.3/8.9.3) id XAA05344; Sat, 22 May 1999 23:40:02 +0200 (SAT) (envelope-from reg) Message-Id: <199905222140.XAA05344@shale.csir.co.za> Date: Sat, 22 May 1999 23:40:02 +0200 (SAT) From: reg@shale.csir.co.za Reply-To: reg@shale.csir.co.za To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11839: Port change: devel/libtool Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11839 >Category: ports >Synopsis: Port change: devel/libtool >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 May 22 14:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jeremy Lea >Release: FreeBSD 4.0-CURRENT i386 >Organization: Arb's Inc. >Environment: FreeBSD Ports collection. >Description: Make some changes to the libtool port to support the ports environment: 1. Add a -prefix arguement to libtool, to find where the installed copies of ltconfig and ltmain.sh reside. 2. Don't install the .la files unless --install-ltlibs is passed to ltconfig. 3. Don't force linking with -lc, and allow -?thread to be passed to the linker. 4. Don't build static libs if not using version numbers (for plugins). 5. Install instead of lib${release}.a lib.a lib${release}.so lib.so lib${release}.so.${ver} lib${release}.so.${ver} to support multi-release installations. 6. Change version to "1.3-freebsd-ports" so people know who to blame. 7. Misc fixes. >How-To-Repeat: >Fix: devel/libtool: Changes: Makefile patches/patch-ac pkg/PLIST Adds : patches/patch-ad Removes: --- /usr/ports.ref/devel/libtool/Makefile Thu May 6 10:20:55 1999 +++ devel/libtool/Makefile Sat May 22 17:38:36 1999 @@ -15,10 +15,6 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-ltdl-install - -pre-install: - @if [ -d ${PREFIX}/info -a ! -f ${PREFIX}/info/dir -a -f /usr/share/info/dir ]; then \ - ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ - fi +CONFIGURE_ENV= PREFIX=${PREFIX} .include --- /usr/ports.ref/devel/libtool/patches/patch-ac Thu May 6 10:20:55 1999 +++ devel/libtool/patches/patch-ac Sat May 22 20:59:32 1999 @@ -1,22 +1,90 @@ ---- ltconfig.orig Mon Mar 15 19:38:58 1999 -+++ ltconfig Mon Apr 5 01:40:53 1999 -@@ -1672,14 +1672,16 @@ +--- ltconfig.orig Thu Apr 29 15:30:36 1999 ++++ ltconfig Sat May 22 15:52:24 1999 +@@ -169,7 +169,7 @@ + # Constants: + PROGRAM=ltconfig + PACKAGE=libtool +-VERSION=1.3 ++VERSION=1.3-freebsd-ports + TIMESTAMP=" (1.385.2.117 1999/04/29 13:07:13)" + ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.c 1>&5' + ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.c $LIBS 1>&5' +@@ -184,6 +184,7 @@ + # All known linkers require a `.a' archive for static linking. + enable_static=yes + enable_fast_install=yes ++install_ltlibs=no + enable_dlopen=unknown + enable_win32_dll=no + ltmain= +@@ -244,6 +245,7 @@ + --disable-shared do not build shared libraries + --disable-static do not build static libraries + --disable-fast-install do not optimize for fast installation ++ --install-ltlibs install the .la archives + --enable-dlopen enable dlopen support + --enable-win32-dll enable building dlls on win32 hosts + --help display this help and exit +@@ -277,6 +279,8 @@ + + --disable-fast-install) enable_fast_install=no ;; + ++ --install-ltlibs) install_ltlibs=yes ;; ++ + --enable-dlopen) enable_dlopen=yes ;; + + --enable-win32-dll) enable_win32_dll=yes ;; +@@ -927,11 +931,11 @@ + $rm conftest.dat + if ln -s X conftest.dat 2>/dev/null; then + $rm conftest.dat +- LN_S="ln -s" ++ LN_S="ln -sf" + else + LN_S=ln + fi +- if test "$LN_S" = "ln -s"; then ++ if test "$LN_S" = "ln -sf"; then + echo "$ac_t"yes 1>&6 + else + echo "$ac_t"no 1>&6 +@@ -1742,19 +1746,17 @@ + case "$version_type" in freebsd-elf*) deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB shared object' - file_magic_cmd=/usr/bin/file +- file_magic_cmd=/usr/bin/file - file_magic_test_file=`echo /usr/lib/libc.so*` -+ file_magic_test_file=`echo /usr/lib/libc.so.*` - library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so $libname.so' - need_version=no - need_lib_prefix=no +- library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so $libname.so' +- need_version=no +- need_lib_prefix=no ;; freebsd-*) - deplibs_check_method=unknown - library_names_spec='${libname}${release}.so$versuffix $libname.so$versuffix' +- need_version=yes + deplibs_check_method='file_magic FreeBSD.* shared library' -+ file_magic_cmd=/usr/bin/file -+ file_magic_test_file=`echo /usr/lib/libc.so.*` -+ library_names_spec='${libname}${release}.so$versuffix $libname.so$versuffix $libname.so' - need_version=yes ;; esac +- finish_cmds='PATH="\$PATH:/sbin" OBJFORMAT="'"$objformat"'" ldconfig -m $libdir' ++ file_magic_cmd=/usr/bin/file ++ file_magic_test_file=`echo /usr/lib/libc.so.*` ++ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so' ++ need_version=no ++ need_lib_prefix=no ++ finish_cmds='/usr/bin/env OBJFORMAT="'"$objformat"'" /sbin/ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + ;; + +@@ -2613,6 +2615,12 @@ + + # Shell to use when invoking shell scripts. + SHELL=$LTSHELL ++ ++# Install PREFIX ++PREFIX=$PREFIX ++ ++# Whether to waste disk space. ++install_ltlibs=$install_ltlibs + + # Whether or not to build shared libraries. + build_libtool_libs=$enable_shared --- /usr/ports.ref/devel/libtool/patches/patch-ad Thu Jan 1 02:00:00 1970 +++ devel/libtool/patches/patch-ad Sat May 22 21:01:29 1999 @@ -0,0 +1,113 @@ +--- ltmain.sh.orig Thu Apr 29 15:30:37 1999 ++++ ltmain.sh Sat May 22 13:59:59 1999 +@@ -54,7 +54,7 @@ + # Constants. + PROGRAM=ltmain.sh + PACKAGE=libtool +-VERSION=1.3 ++VERSION=1.3-freebsd-ports + TIMESTAMP=" (1.385.2.117 1999/04/29 13:07:13)" + + default_mode= +@@ -150,6 +150,11 @@ + exit 0 + ;; + ++ --prefix) ++ echo "$PREFIX" ++ exit 0 ++ ;; ++ + --debug) + echo "$progname: enabling shell trace mode" + set -x +@@ -928,7 +933,7 @@ + continue + ;; + release) +- release="-$arg" ++ release="$arg" + prev= + continue + ;; +@@ -981,6 +986,7 @@ + ;; + + -avoid-version) ++ build_old_libs=no + avoid_version=yes + continue + ;; +@@ -1066,6 +1072,10 @@ + deplibs="$deplibs $arg" + ;; + ++ -?thread) ++ deplibs="$deplibs $arg" ++ ;; ++ + -module) + module=yes + continue +@@ -1763,6 +1773,9 @@ + *-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos*) + # these systems don't actually have a c library (as such)! + ;; ++ *-*-freebsd*) ++ # FreeBSD doesn't need this... ++ ;; + *) + # Add libc to deplibs on all other systems. + deplibs="$deplibs -lc" +@@ -1785,7 +1798,7 @@ + + # Now set the variables for building old libraries. + if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then +- oldlibs="$oldlibs $output_objdir/$libname.$libext" ++ oldlibs="$oldlibs $output_objdir/$libname$release.$libext" + + # Transform .lo files to .o files. + oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP` +@@ -1979,7 +1992,7 @@ + echo "*** \`nm' from GNU binutils and a full rebuild may help." + fi + if test "$build_old_libs" = no; then +- oldlibs="$output_objdir/$libname.$libext" ++ oldlibs="$output_objdir/$libname$release.$libext" + build_libtool_libs=module + build_old_libs=yes + else +@@ -2933,7 +2946,7 @@ + case "$output" in + *.la) + old_library= +- test "$build_old_libs" = yes && old_library="$libname.$libext" ++ test "$build_old_libs" = yes && old_library="$libname$release.$libext" + $show "creating $output" + + if test -n "$xrpath"; then +@@ -3230,10 +3243,12 @@ + fi + + # Install the pseudo-library for information purposes. +- name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` +- instname="$dir/$name"i +- $show "$install_prog $instname $destdir/$name" +- $run eval "$install_prog $instname $destdir/$name" || exit $? ++ if test "$install_ltlibs" = yes; then ++ name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` ++ instname="$dir/$name"i ++ $show "$install_prog $instname $destdir/$name" ++ $run eval "$install_prog $instname $destdir/$name" || exit $? ++ fi + + # Maybe install the static library, too. + test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" +@@ -3322,7 +3337,6 @@ + fi + libfile="$libdir/`$echo "X$lib" | $Xsed -e 's%^.*/%%g'`" + if test -n "$libdir" && test ! -f "$libfile"; then +- $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2 + finalize=no + fi + done --- /usr/ports.ref/devel/libtool/pkg/PLIST Thu May 6 10:20:55 1999 +++ devel/libtool/pkg/PLIST Fri May 7 01:12:08 1999 @@ -2,7 +2,6 @@ bin/libtoolize @unexec install-info --delete %D/info/libtool.info %D/info/dir info/libtool.info -@exec [ -f %D/info/dir -o ! -f /usr/share/info/dir ] || sed -ne '1,/Menu:/p' /usr/share/info/dir > %D/info/dir @exec install-info %D/info/libtool.info %D/info/dir share/aclocal/libtool.m4 share/libtool/config.guess >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 May 22 15:23:56 1999 Delivered-To: freebsd-ports@freebsd.org Received: from unknown (sar-fl2-27.ix.netcom.com [205.184.138.91]) by hub.freebsd.org (Postfix) with SMTP id C84DE15214; Sat, 22 May 1999 15:23:39 -0700 (PDT) (envelope-from netstar44@popmail.com) From: Subject: FREE Y2K FIX !!! <..,:adv.,,< Date: Sat, 22 May 1999 18:24:59 Message-Id: <422.716897.71904@unknown> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ***************************************************************** ***************************************************************** THE GOOD NEWS IS: You can now test your computer for full Y2K compliance,(both BIOS and REAL TIME CLOCKS), and even correct it with a simple inexpensive download. THE GREAT NEWS IS: We offer a FREE TEST & EVALUATION period while you decide whether you want to purchase this solution. No one else offers the comprehensive guarantee that we have for you. For additional information on our free evaluation period, visit our site at: www.freey2kdownload.com ***************************************************************** To be removed from this mailing list please reply to: y2kfreetest.com and type REMOVE on the subject line. ***************************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 22 15:33:25 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mail.sonicboom.org (unknown [209.111.64.222]) by hub.freebsd.org (Postfix) with ESMTP id F044814C3D for ; Sat, 22 May 1999 15:33:22 -0700 (PDT) (envelope-from bri@sonicboom.org) Received: from localhost (bri@localhost) by mail.sonicboom.org (8.8.7/8.8.7) with ESMTP id PAA20668 for ; Sat, 22 May 1999 15:41:22 -0700 Date: Sat, 22 May 1999 15:41:22 -0700 (PDT) From: To: freebsd-ports@freebsd.org Subject: ports network install 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 I was wondering if anything will be done about the network install/download of the ports package. The rest of my network install screalms at over 100k/sec, but at the ports section, its like I have a modem again. Bri To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 22 15:50:40 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A9E714C97 for ; Sat, 22 May 1999 15:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA61247; Sat, 22 May 1999 15:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id C92A614C3D for ; Sat, 22 May 1999 15:46:19 -0700 (PDT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by shale.csir.co.za (8.9.3/8.9.3) id AAA38748; Sun, 23 May 1999 00:46:17 +0200 (SAT) (envelope-from reg) Message-Id: <199905222246.AAA38748@shale.csir.co.za> Date: Sun, 23 May 1999 00:46:17 +0200 (SAT) From: reg@shale.csir.co.za Reply-To: reg@shale.csir.co.za To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11841: Port update: devel/glib12 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11841 >Category: ports >Synopsis: Port update: devel/glib12 >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 May 22 15:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jeremy Lea >Release: FreeBSD 4.0-CURRENT i386 >Organization: Arb's Inc. >Environment: FreeBSD Ports collection. >Description: Update GLib to 1.2.3, and bump the shlib numbers. Update ports which depend on glib12, and fix them up. Major changes to GLib: - USE_LIBTOOL: Means about half the patching is required. - Only use thread flags for libgthread. Stops all GTK+ apps linking in libc_r. - Should work again on a.out systems. Other ports: mostly fix to USE_LIBTOOL. >How-To-Repeat: >Fix: devel/glib12: Upgrade from 1.2.2 to 1.2.3 Changes: Makefile files/md5 patches/patch-ab patches/patch-ac patches/patch-ad patches/patch-ae pkg/PLIST Adds : Removes: japanese/libicq: Changes: Makefile Adds : Removes: misc/xdelta: Changes: Makefile pkg/PLIST Adds : Removes: patches/patch-aa net/libicq: Changes: Makefile pkg/PLIST Adds : Removes: patches/patch-aa patches/patch-ab patches/patch-ac net/xferstats: Changes: Makefile Adds : Removes: --- /usr/ports.ref/devel/glib12/Makefile Fri May 7 02:05:12 1999 +++ devel/glib12/Makefile Sat May 15 18:31:49 1999 @@ -1,12 +1,12 @@ # New ports collection makefile for: glib12 -# Version required: 1.2.2 +# Version required: 1.2.3 # Date Created: 28 July 1998 # Whom: Vanilla I. Shu # # $Id: Makefile,v 1.21 1999/05/06 19:59:12 mharo Exp $ # -DISTNAME= glib-1.2.2 +DISTNAME= glib-1.2.3 CATEGORIES= devel MASTER_SITES= ftp://ftp.gimp.org/pub/gtk/v1.2/ \ ftp://ftp.cs.umn.edu/pub/gimp/gtk/v1.2/ \ @@ -14,11 +14,9 @@ MAINTAINER= vanilla@FreeBSD.ORG -GNU_CONFIGURE= yes +USE_LIBTOOL= yes CONFIGURE_ARGS= --includedir=${PREFIX}/include/glib12 -MAN1= glib12-config.1 -post-install: - @${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib +MAN1= glib12-config.1 .include --- /usr/ports.ref/devel/glib12/files/md5 Mon May 3 14:09:05 1999 +++ devel/glib12/files/md5 Sat May 15 18:33:39 1999 @@ -1 +1 @@ -MD5 (glib-1.2.2.tar.gz) = 1ecec788b21ae0b6b6debbe5ff9d5c65 +MD5 (glib-1.2.3.tar.gz) = 56944969be7a7cefdd25171ef4a01c2a --- /usr/ports.ref/devel/glib12/patches/patch-ab Sat Mar 27 13:35:39 1999 +++ devel/glib12/patches/patch-ab Sun May 23 00:30:30 1999 @@ -1,6 +1,6 @@ ---- Makefile.in.orig Thu Jan 28 22:53:35 1999 -+++ Makefile.in Thu Jan 28 22:59:44 1999 -@@ -89,11 +89,11 @@ +--- Makefile.in.orig Tue May 11 05:06:36 1999 ++++ Makefile.in Mon May 17 22:28:24 1999 +@@ -95,11 +95,11 @@ AUTOMAKE_OPTIONS = 1.4 @@ -11,83 +11,29 @@ +configincludedir = $(includedir) -bin_SCRIPTS = glib-config -+bin_SCRIPTS = glib12-config ++bin_SCRIPTS = glib@LT_RELEASE@-config BUILT_SOURCES = stamp-gc-h #note: not glibconfig.h -@@ -102,7 +102,7 @@ - EXTRA_DIST = glib.m4 glib.spec.in acglib.m4 sanity_check README.win32 glib.def makefile.msc giowin32.c glibconfig.h.win32 config.h.win32 - - --lib_LTLIBRARIES = libglib.la -+lib_LTLIBRARIES = libglib12.la - - libglib_la_SOURCES = garray.c gcache.c gcompletion.c gdataset.c gdate.c gerror.c ghash.c ghook.c giochannel.c giounix.c glist.c gmain.c gmem.c gmessages.c gmutex.c gnode.c gprimes.c grel.c gscanner.c gslist.c gstrfuncs.c gstring.c gtimer.c gtree.c gutils.c - -@@ -113,20 +113,20 @@ - configinclude_DATA = glibconfig.h - - --libglib_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) -+libglib_la_LDFLAGS = -version-info 1:0:0 - - - noinst_PROGRAMS = testglib testgdate testgdateparser --testglib_LDADD = libglib.la --testgdate_LDADD = libglib.la --testgdateparser_LDADD = libglib.la -+testglib_LDADD = libglib12.la -+testgdate_LDADD = libglib12.la -+testgdateparser_LDADD = libglib12.la - - m4datadir = $(datadir)/aclocal - m4data_DATA = glib.m4 +@@ -132,7 +132,7 @@ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = config.h --CONFIG_CLEAN_FILES = glib.spec glibconfig.h.win32 glib-config -+CONFIG_CLEAN_FILES = glib12-config +-CONFIG_CLEAN_FILES = glib.spec glib-config ++CONFIG_CLEAN_FILES = glib.spec glib@LT_RELEASE@-config LTLIBRARIES = $(lib_LTLIBRARIES) -@@ -144,15 +144,15 @@ - - testglib_SOURCES = testglib.c - testglib_OBJECTS = testglib.o --testglib_DEPENDENCIES = libglib.la -+testglib_DEPENDENCIES = libglib12.la - testglib_LDFLAGS = - testgdate_SOURCES = testgdate.c - testgdate_OBJECTS = testgdate.o --testgdate_DEPENDENCIES = libglib.la -+testgdate_DEPENDENCIES = libglib12.la - testgdate_LDFLAGS = - testgdateparser_SOURCES = testgdateparser.c - testgdateparser_OBJECTS = testgdateparser.o --testgdateparser_DEPENDENCIES = libglib.la -+testgdateparser_DEPENDENCIES = libglib12.la - testgdateparser_LDFLAGS = - SCRIPTS = $(bin_SCRIPTS) - -@@ -226,7 +226,7 @@ +@@ -232,7 +232,7 @@ maintainer-clean-hdr: glib.spec: $(top_builddir)/config.status glib.spec.in cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status -glib-config: $(top_builddir)/config.status glib-config.in -+glib12-config: $(top_builddir)/config.status glib12-config.in ++glib@LT_RELEASE@-config: $(top_builddir)/config.status glib@LT_RELEASE@-config.in cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status mostlyclean-libLTLIBRARIES: -@@ -292,7 +292,7 @@ - - maintainer-clean-libtool: - --libglib.la: $(libglib_la_OBJECTS) $(libglib_la_DEPENDENCIES) -+libglib12.la: $(libglib_la_OBJECTS) $(libglib_la_DEPENDENCIES) - $(LINK) -rpath $(libdir) $(libglib_la_LDFLAGS) $(libglib_la_OBJECTS) $(libglib_la_LIBADD) $(LIBS) - - mostlyclean-noinstPROGRAMS: -@@ -535,7 +535,6 @@ +@@ -541,7 +541,6 @@ || exit 1; \ fi; \ done @@ -95,7 +41,7 @@ info-am: info: info-recursive -@@ -562,7 +561,7 @@ +@@ -568,7 +567,7 @@ uninstall-configincludeDATA uninstall-m4dataDATA \ uninstall-includeHEADERS uninstall: uninstall-recursive @@ -104,70 +50,19 @@ $(HEADERS) config.h all-redirect: all-recursive-am install-strip: -@@ -640,7 +639,8 @@ +@@ -646,7 +645,8 @@ installdirs mostlyclean-generic distclean-generic clean-generic \ maintainer-clean-generic clean mostlyclean distclean maintainer-clean -glib-config: glib-config.in -+glib12-config.in: glib-config.in -+ cp glib-config.in glib12-config.in ++glib@LT_RELEASE@-config.in: glib-config.in ++ cp glib-config.in glib@LT_RELEASE@-config.in configure: configure.in acglib.m4 glibconfig.h: stamp-gc-h ---- gmodule/Makefile.in.orig Thu Jan 28 23:01:00 1999 -+++ gmodule/Makefile.in Thu Jan 28 23:06:56 1999 -@@ -98,12 +98,12 @@ - include_HEADERS = gmodule.h - - --libglib = $(top_builddir)/libglib.la # -lglib -+libglib = $(top_builddir)/libglib12.la # -lglib - --lib_LTLIBRARIES = libgmodule.la libgplugin_a.la libgplugin_b.la -+lib_LTLIBRARIES = libgmodule12.la libgplugin12_a.la libgplugin12_b.la - - libgmodule_la_SOURCES = gmodule.c --libgmodule_la_LDFLAGS = @G_MODULE_LDFLAGS@ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) -+libgmodule_la_LDFLAGS = @G_MODULE_LDFLAGS@ -version-info 1:0:0 - - - libgmodule_la_LIBADD = @G_MODULE_LIBS@ # $(libglib) -@@ -120,7 +120,7 @@ - - noinst_PROGRAMS = testgmodule - testgmodule_LDFLAGS = @G_MODULE_LDFLAGS@ --testgmodule_LDADD = libgmodule.la $(libglib) @G_MODULE_LIBS@ -+testgmodule_LDADD = libgmodule12.la $(libglib) @G_MODULE_LIBS@ - mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs - CONFIG_HEADER = ../config.h - CONFIG_CLEAN_FILES = gmoduleconf.h -@@ -141,7 +141,7 @@ - - testgmodule_SOURCES = testgmodule.c - testgmodule_OBJECTS = testgmodule.o --testgmodule_DEPENDENCIES = libgmodule.la $(top_builddir)/libglib.la -+testgmodule_DEPENDENCIES = libgmodule12.la $(top_builddir)/libglib12.la - CFLAGS = @CFLAGS@ - COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) - LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -@@ -226,13 +226,13 @@ - - maintainer-clean-libtool: - --libgmodule.la: $(libgmodule_la_OBJECTS) $(libgmodule_la_DEPENDENCIES) -+libgmodule12.la: $(libgmodule_la_OBJECTS) $(libgmodule_la_DEPENDENCIES) - $(LINK) -rpath $(libdir) $(libgmodule_la_LDFLAGS) $(libgmodule_la_OBJECTS) $(libgmodule_la_LIBADD) $(LIBS) - --libgplugin_a.la: $(libgplugin_a_la_OBJECTS) $(libgplugin_a_la_DEPENDENCIES) -+libgplugin12_a.la: $(libgplugin_a_la_OBJECTS) $(libgplugin_a_la_DEPENDENCIES) - $(LINK) -rpath $(libdir) $(libgplugin_a_la_LDFLAGS) $(libgplugin_a_la_OBJECTS) $(libgplugin_a_la_LIBADD) $(LIBS) - --libgplugin_b.la: $(libgplugin_b_la_OBJECTS) $(libgplugin_b_la_DEPENDENCIES) -+libgplugin12_b.la: $(libgplugin_b_la_OBJECTS) $(libgplugin_b_la_DEPENDENCIES) - $(LINK) -rpath $(libdir) $(libgplugin_b_la_LDFLAGS) $(libgplugin_b_la_OBJECTS) $(libgplugin_b_la_LIBADD) $(LIBS) - - mostlyclean-noinstPROGRAMS: -@@ -327,7 +327,7 @@ +--- gmodule/Makefile.in.orig Tue May 11 05:06:37 1999 ++++ gmodule/Makefile.in Mon May 17 22:28:24 1999 +@@ -333,7 +333,7 @@ install: install-am uninstall-am: uninstall-libLTLIBRARIES uninstall-includeHEADERS uninstall: uninstall-am @@ -176,63 +71,18 @@ all-redirect: all-am install-strip: $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install -@@ -398,10 +398,10 @@ - echo $$p; \ - done - --install-libLTLIBRARIES: libgmodule.la -+install-libLTLIBRARIES: libgmodule12.la - @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libdir) -- @list='libgmodule.la'; for p in $$list; do \ -+ @list='libgmodule12.la'; for p in $$list; do \ - if test -f $$p; then \ - echo "$(LIBTOOL) --mode=install $(INSTALL_DATA) $$p $(DESTDIR)$(libdir)/$$p"; \ - $(LIBTOOL) --mode=install $(INSTALL_DATA) $$p $(DESTDIR)$(libdir)/$$p; \ ---- gthread/Makefile.in.orig Thu Jan 28 23:07:14 1999 -+++ gthread/Makefile.in Thu Jan 28 23:09:35 1999 -@@ -92,18 +92,18 @@ - EXTRA_DIST = gthread-posix.c gthread-solaris.c gthread-nspr.c gthread-none.c gthread.def - - --libglib = $(top_builddir)/libglib.la # -lglib -+libglib = $(top_builddir)/libglib12.la # -lglib - --lib_LTLIBRARIES = libgthread.la -+lib_LTLIBRARIES = libgthread12.la - - libgthread_la_SOURCES = gthread.c --libgthread_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) -+libgthread_la_LDFLAGS = -version-info 1:0:0 - - - libgthread_la_LIBADD = @G_THREAD_LIBS@ - - noinst_PROGRAMS = testgthread --testgthread_LDADD = ../libglib.la libgthread.la -+testgthread_LDADD = ../libglib12.la libgthread12.la - mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs - CONFIG_HEADER = ../config.h - CONFIG_CLEAN_FILES = -@@ -120,7 +120,7 @@ - - testgthread_SOURCES = testgthread.c +--- gthread/Makefile.in.orig Tue May 11 05:06:39 1999 ++++ gthread/Makefile.in Mon May 17 22:28:24 1999 +@@ -128,7 +128,7 @@ testgthread_OBJECTS = testgthread.o --testgthread_DEPENDENCIES = ../libglib.la libgthread.la -+testgthread_DEPENDENCIES = ../libglib12.la libgthread12.la + testgthread_DEPENDENCIES = ../libglib.la libgthread.la testgthread_LDFLAGS = - CFLAGS = @CFLAGS@ +-CFLAGS = @CFLAGS@ ++CFLAGS = @CFLAGS@ @G_THREAD_CFLAGS@ COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -@@ -211,7 +211,7 @@ - - maintainer-clean-libtool: - --libgthread.la: $(libgthread_la_OBJECTS) $(libgthread_la_DEPENDENCIES) -+libgthread12.la: $(libgthread_la_OBJECTS) $(libgthread_la_DEPENDENCIES) - $(LINK) -rpath $(libdir) $(libgthread_la_LDFLAGS) $(libgthread_la_OBJECTS) $(libgthread_la_LIBADD) $(LIBS) - - mostlyclean-noinstPROGRAMS: -@@ -291,7 +291,7 @@ + LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) + CCLD = $(CC) +@@ -297,7 +297,7 @@ install: install-am uninstall-am: uninstall-libLTLIBRARIES uninstall: uninstall-am @@ -241,116 +91,26 @@ all-redirect: all-am install-strip: $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install ---- docs/Makefile.in.orig Tue Mar 2 10:39:11 1999 -+++ docs/Makefile.in Tue Mar 2 10:40:18 1999 -@@ -89,9 +89,9 @@ +--- docs/Makefile.in.orig Tue May 11 05:06:40 1999 ++++ docs/Makefile.in Mon May 17 22:28:24 1999 +@@ -95,9 +95,9 @@ info_TEXINFOS = glib.texi -man_MANS = glib-config.1 -+man_MANS = glib12-config.1 ++man_MANS = glib@LT_RELEASE@-config.1 -EXTRA_DIST = glib-config.1.in glib.html glib_toc.html -+EXTRA_DIST = glib12-config.1.in glib.html glib_toc.html ++EXTRA_DIST = glib@LT_RELEASE@-config.1.in glib.html glib_toc.html mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = ../config.h -@@ -125,6 +125,8 @@ +@@ -133,6 +133,8 @@ glib.info: glib.texi glib.dvi: glib.texi -+glib12-config.1: glib-config.1 -+ cp glib-config.1 glib12-config.1 ++glib@LT_RELEASE@-config.1: glib-config.1 ++ cp glib-config.1 glib@LT_RELEASE@-config.1 DVIPS = dvips ---- tests/Makefile.in.orig Tue Mar 2 10:42:05 1999 -+++ tests/Makefile.in Tue Mar 2 10:42:39 1999 -@@ -94,17 +94,17 @@ - - noinst_PROGRAMS = $(TESTS) - --array_test_LDADD = $(top_builddir)/libglib.la --dirname_test_LDADD = $(top_builddir)/libglib.la --hash_test_LDADD = $(top_builddir)/libglib.la --list_test_LDADD = $(top_builddir)/libglib.la --node_test_LDADD = $(top_builddir)/libglib.la --relation_test_LDADD = $(top_builddir)/libglib.la --slist_test_LDADD = $(top_builddir)/libglib.la --string_test_LDADD = $(top_builddir)/libglib.la --strfunc_test_LDADD = $(top_builddir)/libglib.la --tree_test_LDADD = $(top_builddir)/libglib.la --type_test_LDADD = $(top_builddir)/libglib.la -+array_test_LDADD = $(top_builddir)/libglib12.la -+dirname_test_LDADD = $(top_builddir)/libglib12.la -+hash_test_LDADD = $(top_builddir)/libglib12.la -+list_test_LDADD = $(top_builddir)/libglib12.la -+node_test_LDADD = $(top_builddir)/libglib12.la -+relation_test_LDADD = $(top_builddir)/libglib12.la -+slist_test_LDADD = $(top_builddir)/libglib12.la -+string_test_LDADD = $(top_builddir)/libglib12.la -+strfunc_test_LDADD = $(top_builddir)/libglib12.la -+tree_test_LDADD = $(top_builddir)/libglib12.la -+type_test_LDADD = $(top_builddir)/libglib12.la - mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs - CONFIG_HEADER = ../config.h - CONFIG_CLEAN_FILES = -@@ -117,47 +117,47 @@ - LIBS = @LIBS@ - array_test_SOURCES = array-test.c - array_test_OBJECTS = array-test.o --array_test_DEPENDENCIES = $(top_builddir)/libglib.la -+array_test_DEPENDENCIES = $(top_builddir)/libglib12.la - array_test_LDFLAGS = - dirname_test_SOURCES = dirname-test.c - dirname_test_OBJECTS = dirname-test.o --dirname_test_DEPENDENCIES = $(top_builddir)/libglib.la -+dirname_test_DEPENDENCIES = $(top_builddir)/libglib12.la - dirname_test_LDFLAGS = - hash_test_SOURCES = hash-test.c - hash_test_OBJECTS = hash-test.o --hash_test_DEPENDENCIES = $(top_builddir)/libglib.la -+hash_test_DEPENDENCIES = $(top_builddir)/libglib12.la - hash_test_LDFLAGS = - list_test_SOURCES = list-test.c - list_test_OBJECTS = list-test.o --list_test_DEPENDENCIES = $(top_builddir)/libglib.la -+list_test_DEPENDENCIES = $(top_builddir)/libglib12.la - list_test_LDFLAGS = - node_test_SOURCES = node-test.c - node_test_OBJECTS = node-test.o --node_test_DEPENDENCIES = $(top_builddir)/libglib.la -+node_test_DEPENDENCIES = $(top_builddir)/libglib12.la - node_test_LDFLAGS = - relation_test_SOURCES = relation-test.c - relation_test_OBJECTS = relation-test.o --relation_test_DEPENDENCIES = $(top_builddir)/libglib.la -+relation_test_DEPENDENCIES = $(top_builddir)/libglib12.la - relation_test_LDFLAGS = - slist_test_SOURCES = slist-test.c - slist_test_OBJECTS = slist-test.o --slist_test_DEPENDENCIES = $(top_builddir)/libglib.la -+slist_test_DEPENDENCIES = $(top_builddir)/libglib12.la - slist_test_LDFLAGS = - string_test_SOURCES = string-test.c - string_test_OBJECTS = string-test.o --string_test_DEPENDENCIES = $(top_builddir)/libglib.la -+string_test_DEPENDENCIES = $(top_builddir)/libglib12.la - string_test_LDFLAGS = - strfunc_test_SOURCES = strfunc-test.c - strfunc_test_OBJECTS = strfunc-test.o --strfunc_test_DEPENDENCIES = $(top_builddir)/libglib.la -+strfunc_test_DEPENDENCIES = $(top_builddir)/libglib12.la - strfunc_test_LDFLAGS = - tree_test_SOURCES = tree-test.c - tree_test_OBJECTS = tree-test.o --tree_test_DEPENDENCIES = $(top_builddir)/libglib.la -+tree_test_DEPENDENCIES = $(top_builddir)/libglib12.la - tree_test_LDFLAGS = - type_test_SOURCES = type-test.c - type_test_OBJECTS = type-test.o --type_test_DEPENDENCIES = $(top_builddir)/libglib.la -+type_test_DEPENDENCIES = $(top_builddir)/libglib12.la - type_test_LDFLAGS = - CFLAGS = @CFLAGS@ - COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) --- /usr/ports.ref/devel/glib12/patches/patch-ac Tue Mar 9 03:08:52 1999 +++ devel/glib12/patches/patch-ac Sun May 23 00:30:49 1999 @@ -5,7 +5,7 @@ { cat <&6 - echo "configure:3765: checking for $ac_func" >&5 -@@ -4610,6 +4610,9 @@ + echo "configure:3479: checking for $ac_func" >&5 +@@ -4365,6 +4365,12 @@ linux*) G_MODULE_LDFLAGS='-rdynamic' ;; + freebsd*) -+ G_MODULE_LDFLAGS='-Wl,-E' ++ objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` ++ if test $objformat = "elf"; then ++ G_MODULE_LDFLAGS='-Wl,-E' ++ fi + ;; esac LIBS_orig="$LIBS" LDFLAGS_orig="$LDFLAGS" -@@ -5302,11 +5305,13 @@ +@@ -5057,11 +5063,14 @@ G_THREAD_CFLAGS="$G_THREAD_CFLAGS -mthreads" fi ;; @@ -28,9 +46,10 @@ - - # FreeBSD 2.2.x shiped with gcc 2.7.2.x, which doesn't support - # -mthreads flag. -+ *-*-freebsd2.2* | *-*-freebsd3* | *-*-freebsd4*) ++ *-*-freebsd*) + if test x"$G_THREAD_LIBS" = x"-lc_r"; then -+ G_THREAD_CFLAGS="-D_THREAD_SAFE -pthread" ++ G_THREAD_CFLAGS="-D_THREAD_SAFE" ++ G_THREAD_LIBS="-pthread" + have_poll=no + else + G_THREAD_CFLAGS="-D_THREAD_SAFE -DLINUXTHREADS" @@ -38,7 +57,17 @@ ;; esac -@@ -5623,6 +5628,63 @@ +@@ -5349,9 +5358,6 @@ + + + +-CFLAGS="$CFLAGS $G_THREAD_CFLAGS" +- +- + case "$mutex_has_default" in + "yes") + echo $ac_n "checking size of $mutex_default_type""... $ac_c" 1>&6 +@@ -5448,6 +5454,63 @@ --- /usr/ports.ref/devel/glib12/pkg/PLIST Fri May 7 02:05:13 1999 +++ devel/glib12/pkg/PLIST Mon May 10 17:48:31 1999 @@ -6,18 +6,16 @@ info/glib.info @exec install-info %D/info/glib.info %D/info/dir lib/libglib12.a -lib/libglib12.la lib/libglib12.so -lib/libglib12.so.1 +lib/libglib12.so.2 lib/libgmodule12.a -lib/libgmodule12.la lib/libgmodule12.so -lib/libgmodule12.so.1 +lib/libgmodule12.so.2 lib/libgthread12.a -lib/libgthread12.la lib/libgthread12.so -lib/libgthread12.so.1 +lib/libgthread12.so.2 @unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R @exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B share/aclocal/glib.m4 @dirrm include/glib12 +@unexec rmdir %D/share/aclocal 2>/dev/null || true --- /usr/ports.ref/japanese/libicq/Makefile Sat May 8 16:25:21 1999 +++ japanese/libicq/Makefile Sat May 8 15:59:29 1999 @@ -18,10 +18,12 @@ MAINTAINER= flathill@FreeBSD.ORG -LIB_DEPENDS= glib12.1:${PORTSDIR}/devel/glib12 +LIB_DEPENDS= glib12.2:${PORTSDIR}/devel/glib12 + +GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config GNU_CONFIGURE= yes -CONFIGURE_ENV= GLIB_CONFIG="${PREFIX}/bin/glib12-config" +CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" post-install: @${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib --- /usr/ports.ref/misc/xdelta/Makefile Mon May 3 14:21:21 1999 +++ misc/xdelta/Makefile Sun May 23 00:33:25 1999 @@ -13,20 +13,15 @@ MAINTAINER= jmacd@FreeBSD.ORG BUILD_DEPENDS= ${PREFIX}/lib/libgdbm.a:${PORTSDIR}/databases/gdbm -LIB_DEPENDS= glib12.1:${PORTSDIR}/devel/glib12 +LIB_DEPENDS= glib12.2:${PORTSDIR}/devel/glib12 -GNU_CONFIGURE= yes +GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config + +USE_LIBTOOL= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS=-L${LOCALBASE}/lib \ - INSTALL_SCRIPT='$${INSTALL} -m 755' \ - GLIB_CONFIG="${LOCALBASE}/bin/glib12-config" + GLIB_CONFIG="${GLIB_CONFIG}" MAN1= xdelta.1 - -post-install: - @${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib - @if [ ! -f ${PREFIX}/info/dir ]; then \ - ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ - fi .include --- /usr/ports.ref/misc/xdelta/patches/patch-aa Thu Jan 28 23:31:41 1999 +++ misc/xdelta/patches/patch-aa Sun May 23 00:33:09 1999 @@ -1,44 +0,0 @@ ---- ltmain.sh.orig Sat Jul 4 19:47:32 1998 -+++ ltmain.sh Wed Sep 23 00:17:07 1998 -@@ -967,6 +967,16 @@ - versuffix="$current.$revision" - ;; - -+ freebsd) -+ version_vars="$version_vars major versuffix" -+ major="$current" -+ if [ $PORTOBJFORMAT = elf ]; then -+ versuffix="$current"; -+ else -+ versuffix="$current.$revision"; -+ fi -+ ;; -+ - *) - $echo "$modename: unknown library version type \`$version_type'" 1>&2 - echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 ---- ltconfig.orig Sat Jul 4 19:47:31 1998 -+++ ltconfig Wed Sep 23 00:17:07 1998 -@@ -1123,10 +1123,21 @@ - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done' - ;; - --freebsd2* | freebsd3*) -+freebsd2*) - version_type=sunos - library_names_spec='${libname}${release}.so.$versuffix $libname.so' - finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ ;; -+ -+freebsd3* | freebsd4*) -+ version_type=freebsd -+ library_names_spec='${libname}${release}.so.$versuffix $libname.so' -+ if [ $PORTOBJFORMAT = elf ]; then -+ finish_cmds='PATH="\$PATH:/sbin" OBJFORMAT="$PORTOBJFORMAT" ldconfig -m $libdir' -+ else -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' -+ fi - shlibpath_var=LD_LIBRARY_PATH - ;; - --- /usr/ports.ref/misc/xdelta/pkg/PLIST Sun Feb 21 15:36:15 1999 +++ misc/xdelta/pkg/PLIST Sun May 23 00:34:32 1999 @@ -5,12 +5,11 @@ include/xdser.h @unexec install-info --delete %D/info/xdelta.info %D/info/dir info/xdelta.info -@exec [ -f %D/info/dir ] || sed -ne '1,/Menu:/p' /usr/share/info/dir > %D/info/dir @exec install-info %D/info/xdelta.info %D/info/dir lib/libxdelta.a -lib/libxdelta.la lib/libxdelta.so lib/libxdelta.so.1 @unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R @exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B share/aclocal/xdelta.m4 +@unexec rmdir %D/share/aclocal 2>/dev/null || true --- /usr/ports.ref/net/libicq/Makefile Sat May 8 16:31:50 1999 +++ net/libicq/Makefile Mon May 17 02:27:04 1999 @@ -13,9 +13,11 @@ MAINTAINER= flathill@FreeBSD.ORG -LIB_DEPENDS= glib12.1:${PORTSDIR}/devel/glib12 +LIB_DEPENDS= glib12.2:${PORTSDIR}/devel/glib12 -GNU_CONFIGURE= yes -CONFIGURE_ENV= GLIB_CONFIG="${PREFIX}/bin/glib12-config" +GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config + +USE_LIBTOOL= yes +CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" .include --- /usr/ports.ref/net/libicq/patches/patch-aa Mon Mar 15 21:59:22 1999 +++ net/libicq/patches/patch-aa Mon May 17 02:27:36 1999 @@ -1,710 +0,0 @@ ---- ltconfig.orig Mon Mar 15 13:14:36 1999 -+++ ltconfig Mon Mar 15 13:14:36 1999 -@@ -25,57 +25,30 @@ - - # A lot of this script is taken from autoconf-2.10. - --# Check that we are running under the correct shell. --SHELL=${CONFIG_SHELL-/bin/sh} --echo=echo --if test "X$1" = X--no-reexec; then -- # Discard the --no-reexec flag, and continue. -- shift --elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then -- # Yippee, $echo works! -- : --else -- # Restart under the correct shell. -- exec "$SHELL" "$0" --no-reexec ${1+"$@"} --fi -- - # The HP-UX ksh and POSIX shell print the target directory to stdout - # if CDPATH is set. - if test "${CDPATH+set}" = set; then CDPATH=; export CDPATH; fi - --if test "X`($echo '\t') 2>/dev/null`" != 'X\t'; then -- # The Solaris, AIX, and Digital Unix default echo programs unquote -- # backslashes. This makes it impossible to quote backslashes using -+echo=echo -+if test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then : -+else -+ # The Solaris and AIX default echo program unquotes backslashes. -+ # This makes it impossible to quote backslashes using - # echo "$something" | sed 's/\\/\\\\/g' -- # -- # So, first we look for a working echo in the user's PATH. -- IFS="${IFS= }"; save_ifs="$IFS"; IFS="${IFS}:" -- for dir in $PATH /usr/ucb; do -- if test -f $dir/echo && test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t'; then -- echo="$dir/echo" -- break -- fi -- done -- IFS="$save_ifs" -- -- if test "X$echo" = Xecho; then -- # We didn't find a better echo, so look for alternatives. -- if test "X`(print -r '\t') 2>/dev/null`" = 'X\t'; then -- # This shell has a builtin print -r that does the trick. -- echo='print -r' -- elif test -f /bin/ksh && test "X$CONFIG_SHELL" != X/bin/ksh; then -- # If we have ksh, try running ltconfig again with it. -- CONFIG_SHELL=/bin/ksh -- export CONFIG_SHELL -- exec "$CONFIG_SHELL" "$0" --no-reexec ${1+"$@"} -- else -- # Try using printf. -- echo='printf %s\n' -- if test "X`($echo '\t') 2>/dev/null`" != 'X\t'; then -- # Oops. We lost completely, so just stick with echo. -- echo=echo -+ # So, we emulate echo with printf '%s\n' -+ echo="printf %s\\n" -+ if test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then : -+ else -+ # Oops. We have no working printf. Try to find a not-so-buggy echo. -+ echo=echo -+ IFS="${IFS= }"; save_ifs="$IFS"; IFS="${IFS}:" -+ for dir in $PATH /usr/ucb; do -+ if test -f $dir/echo && test "X`$dir/echo '\t'`" = 'X\t'; then -+ echo="$dir/echo" -+ break - fi -- fi -+ done -+ IFS="$save_ifs" - fi - fi - -@@ -93,7 +66,7 @@ - # Constants: - PROGRAM=ltconfig - PACKAGE=libtool --VERSION=1.2b -+VERSION=1.2 - ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.c 1>&5' - ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.c $LIBS 1>&5' - rm="rm -f" -@@ -101,7 +74,6 @@ - help="Try \`$progname --help' for more information." - - # Global variables: --default_ofile=libtool - can_build_shared=yes - enable_shared=yes - # All known linkers require a `.a' archive for static linking. -@@ -113,7 +85,6 @@ - ac_config_sub= - host= - nonopt= --ofile="$default_ofile" - verify_host=yes - with_gcc=no - with_gnu_ld=no -@@ -150,12 +121,10 @@ - - Generate a system-specific libtool script. - -- --debug enable verbose shell tracing - --disable-shared do not build shared libraries - --disable-static do not build static libraries - --help display this help and exit - --no-verify do not verify that HOST is a valid host type ---o, --output=FILE specify the output file [default=$default_ofile] - --quiet same as \`--silent' - --silent do not print informational messages - --srcdir=DIR find \`config.guess' in DIR -@@ -171,11 +140,6 @@ - exit 0 - ;; - -- --debug) -- echo "$progname: enabling shell trace mode" -- set -x -- ;; -- - --disable-shared) enable_shared=no ;; - - --disable-static) enable_static=no ;; -@@ -187,9 +151,6 @@ - - --no-verify) verify_host=no ;; - -- --output | -o) prev=ofile ;; -- --output=*) ofile="$optarg" ;; -- - --version) echo "$PROGRAM (GNU $PACKAGE) $VERSION"; exit 0 ;; - - --with-gcc) with_gcc=yes ;; -@@ -224,7 +185,8 @@ - exit 1 - fi - --if test ! -f "$ltmain"; then -+if test -f "$ltmain"; then : -+else - echo "$progname: \`$ltmain' does not exist" 1>&2 - echo "$help" 1>&2 - exit 1 -@@ -302,7 +264,7 @@ - ac_config_sub=$ac_aux_dir/config.sub - - # Make sure we can run config.sub. -- if $SHELL $ac_config_sub sun4 >/dev/null 2>&1; then : -+ if $ac_config_sub sun4 >/dev/null 2>&1; then : - else - echo "$progname: cannot run $ac_config_sub" 1>&2 - echo "$help" 1>&2 -@@ -314,14 +276,14 @@ - host_alias=$host - case "$host_alias" in - "") -- if host_alias=`$SHELL $ac_config_guess`; then : -+ if host_alias=`$ac_config_guess`; then : - else - echo "$progname: cannot guess host type; you must specify one" 1>&2 - echo "$help" 1>&2 - exit 1 - fi ;; - esac -- host=`$SHELL $ac_config_sub $host_alias` -+ host=`$ac_config_sub $host_alias` - echo "$ac_t$host" 1>&6 - - # Make sure the host verified. -@@ -459,7 +421,7 @@ - # Now see if the compiler is really GCC. - with_gcc=no - echo $ac_n "checking whether we are using GNU C... $ac_c" 1>&6 -- echo "$progname:462: checking whether we are using GNU C" >&5 -+ echo "$progname:424: checking whether we are using GNU C" >&5 - - $rm conftest.c - cat > conftest.c <&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then -+ if { ac_try='${CC-cc} -E conftest.c'; { (eval echo $progname:432: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then - with_gcc=yes - fi - $rm conftest.c -@@ -515,7 +477,7 @@ - link_static_flag='-bnso -bI:/lib/syscalls.exp' - ;; - -- hpux9* | hpux10* | hpux11*) -+ hpux9* | hpux10*) - # Is there a better link_static_flag that works with the bundled CC? - wl='-Wl,' - link_static_flag="${wl}-a ${wl}archive" -@@ -579,11 +541,11 @@ - # Check to make sure the pic_flag actually works. - echo $ac_n "checking if $compiler PIC flag $pic_flag works... $ac_c" 1>&6 - $rm conftest* -- echo "int some_variable = 0;" > conftest.c -+ echo > conftest.c - save_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS $pic_flag -DPIC" -- echo "$progname:585: checking if $compiler PIC flag $pic_flag works" >&5 -- if { (eval echo $progname:586: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>conftest.err; } && test -s conftest.o; then -+ echo "$progname:547: checking if $compiler PIC flag $pic_flag works" >&5 -+ if { (eval echo $progname:548: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>conftest.err; } && test -s conftest.o; then - # Append any warnings to the config.log. - cat conftest.err 1>&5 - -@@ -626,8 +588,8 @@ - echo 'main(){return(0);}' > conftest.c - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS $link_static_flag" --echo "$progname:629: checking if $compiler static flag $link_static_flag works" >&5 --if { (eval echo $progname:630: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then -+echo "$progname:591: checking if $compiler static flag $link_static_flag works" >&5 -+if { (eval echo $progname:592: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then - echo "$ac_t$link_static_flag" 1>&6 - else - echo "$ac_t"none 1>&6 -@@ -659,11 +621,11 @@ - if test "$with_gcc" = yes; then - # Check if gcc -print-prog-name=ld gives a path. - echo $ac_n "checking for ld used by GCC... $ac_c" 1>&6 -- echo "$progname:662: checking for ld used by GCC" >&5 -+ echo "$progname:624: checking for ld used by GCC" >&5 - ac_prog=`($CC -print-prog-name=ld) 2>&5` - case "$ac_prog" in - # Accept absolute paths. -- /* | [A-Za-z]:[/\\]*) -+ /* | [A-Za-z]:\\*) - test -z "$LD" && LD="$ac_prog" - ;; - "") -@@ -677,10 +639,10 @@ - esac - elif test "$with_gnu_ld" = yes; then - echo $ac_n "checking for GNU ld... $ac_c" 1>&6 -- echo "$progname:680: checking for GNU ld" >&5 -+ echo "$progname:642: checking for GNU ld" >&5 - else - echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 -- echo "$progname:683: checking for non-GNU ld" >&5 -+ echo "$progname:645: checking for non-GNU ld" >&5 - fi - - if test -z "$LD"; then -@@ -732,7 +694,6 @@ - archive_cmds= - old_archive_from_new_cmds= - export_dynamic_flag_spec= --whole_archive_flag_spec= - hardcode_libdir_flag_spec= - hardcode_libdir_separator= - hardcode_direct=no -@@ -740,38 +701,31 @@ - hardcode_shlibpath_var=unsupported - runpath_var= - -+case "$host_os" in -+amigaos* | sunos4*) -+ # On these operating systems, we should treat GNU ld like the system ld. -+ gnu_ld_acts_native=yes -+ ;; -+*) -+ gnu_ld_acts_native=no -+ ;; -+esac -+ - ld_shlibs=yes --if test "$with_gnu_ld" = yes; then -+if test "$with_gnu_ld" = yes && test "$gnu_ld_acts_native" != yes; then - - # See if GNU ld supports shared libraries. -- case "$host_os" in -- amigaos*) -- archive_cmds='$rm $objdir/a2ixlibrary.data;$echo "#define NAME $libname" > $objdir/a2ixlibrary.data;$echo "#define LIBRARY_ID 1" >> $objdir/a2ixlibrary.data;$echo "#define VERSION $major" >> $objdir/a2ixlibrary.data;$echo "#define REVISION $revision" >> $objdir/a2ixlibrary.data;$AR cru $lib$libobjs;$RANLIB $lib;(cd $objdir && a2ixlibrary -32)' -- hardcode_libdir_flag_spec='-L$libdir' -- hardcode_minus_L=yes -- ;; -- -- sunos4*) -- archive_cmds='$LD -assert pure-text -Bstatic -o $lib$libobjs' -- hardcode_direct=yes -- hardcode_minus_L=yes -- hardcode_shlibpath_var=no -- ;; -- -- *) -- if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then -- archive_cmds='$CC -shared ${wl}-soname $wl$soname -o $lib$libobjs' -- else -- ld_shlibs=no -- fi -- ;; -- esac -+ if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then -+ archive_cmds='$CC -shared ${wl}-soname $wl$soname -o $lib$libobjs' -+ runpath_var=LD_RUN_PATH -+ ld_shlibs=yes -+ else -+ ld_shlibs=no -+ fi - - if test "$ld_shlibs" = yes; then -- runpath_var=LD_RUN_PATH - hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir' - export_dynamic_flag_spec='${wl}--export-dynamic' -- whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' - fi - else - # PORTME fill in a description of your system's linker (not GNU ld) -@@ -823,11 +777,11 @@ - ;; - - # FreeBSD 3, at last, uses gcc -shared to do shared libraries. -- freebsd3*) -+ freebsd*) - archive_cmds='$CC -shared -o $lib$libobjs' - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes -- hardcode_minus_L=no -+ hardcode_minus_L=yes - hardcode_shlibpath_var=no - ;; - -@@ -839,7 +793,7 @@ - export_dynamic_flag_spec='${wl}-E' - ;; - -- hpux10* | hpux11*) -+ hpux10*) - archive_cmds='$LD -b +h $soname +s +b $install_libdir -o $lib$libobjs' - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_direct=yes -@@ -848,11 +802,7 @@ - ;; - - irix5* | irix6*) -- if test "$with_gcc" = yes; then -- archive_cmds='$CC -shared -o $lib ${wl}-soname ${wl}$soname ${wl}-set_version ${wl}$verstring$libobjs' -- else -- archive_cmds='$LD -shared -o $lib -soname $soname -set_version $verstring$libobjs' -- fi -+ archive_cmds='$LD -shared -o $lib -soname $soname -set_version $verstring$libobjs' - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - ;; - -@@ -906,7 +856,15 @@ - ;; - - sunos4*) -- archive_cmds='$LD -assert pure-text -Bstatic -o $lib$libobjs' -+ if test "$with_gcc" = yes; then -+ archive_cmds='$CC -shared -o $lib$libobjs' -+ else -+ archive_cmds='$LD -assert pure-text -Bstatic -o $lib$libobjs' -+ fi -+ -+ if test "$with_gnu_ld" = yes; then -+ export_dynamic_flag_spec='${wl}-export-dynamic' -+ fi - hardcode_libdir_flag_spec='-L$libdir' - hardcode_direct=yes - hardcode_minus_L=yes -@@ -932,7 +890,7 @@ - if test -z "$NM"; then - echo $ac_n "checking for BSD-compatible nm... $ac_c" 1>&6 - case "$NM" in -- /* | [A-Za-z]:[/\\]*) ;; # Let the user override the test with a path. -+ /* | [A-Za-z]:\\*) ;; # Let the user override the test with a path. - *) - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" - for ac_dir in /usr/ucb /usr/ccs/bin $PATH /bin; do -@@ -1010,11 +968,11 @@ - main(){nm_test_var='a';nm_test_func();return(0);} - EOF - --echo "$progname:1013: checking if global_symbol_pipe works" >&5 --if { (eval echo $progname:1014: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; } && test -s conftest.o; then -+echo "$progname:971: checking if global_symbol_pipe works" >&5 -+if { (eval echo $progname:972: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; } && test -s conftest.o; then - # Now try to grab the symbols. - nlist=conftest.nm -- if { echo "$progname:1017: eval \"$NM conftest.o | $global_symbol_pipe > $nlist\"" >&5; eval "$NM conftest.o | $global_symbol_pipe > $nlist 2>&5"; } && test -s "$nlist"; then -+ if { echo "$progname:975: eval \"$NM conftest.o | $global_symbol_pipe > $nlist\"" >&5; eval "$NM conftest.o | $global_symbol_pipe > $nlist 2>&5"; } && test -s "$nlist"; then - - # Try sorting and uniquifying the output. - if sort "$nlist" | uniq > "$nlist"T; then -@@ -1072,7 +1030,7 @@ - save_CFLAGS="$CFLAGS" - LIBS='conftestm.o' - CFLAGS="$CFLAGS$no_builtin_flag" -- if { (eval echo $progname:1075: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then -+ if { (eval echo $progname:1033: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then - pipe_works=yes - else - echo "$progname: failed program was:" >&5 -@@ -1115,20 +1073,25 @@ - # We can link without hardcoding, and we can hardcode nonexisting dirs. - hardcode_action=immediate - fi --else -- # We cannot hardcode anything, or else we can only hardcode existing -- # directories. -+elif test "$hardcode_direct" != yes && \ -+ test "$hardcode_minus_L" != yes && \ -+ test "$hardcode_shlibpath_var" != yes; then -+ # We cannot hardcode anything. - hardcode_action=unsupported -+else -+ # We can only hardcode existing directories. -+ hardcode_action=relink - fi - echo "$ac_t$hardcode_action" 1>&6 -+test "$hardcode_action" = unsupported && can_build_shared=no - - - reload_flag= - reload_cmds='$LD$reload_flag -o $output$reload_objs' - echo $ac_n "checking for $LD option to reload object files... $ac_c" 1>&6 - reload_flag='-r' --echo "$ac_t$reload_flag" 1>&6 -+echo "$ac_t$reload_flag" - test -n "$reload_flag" && reload_flag=" $reload_flag" - - # PORTME Fill in your ld.so characteristics -@@ -1147,11 +1110,11 @@ - case "$host_os" in - aix3* | aix4*) - version_type=linux -- library_names_spec='${libname}${release}.so$versuffix $libname.a' -+ library_names_spec='${libname}${release}.so.$versuffix $libname.a' - shlibpath_var=LIBPATH - - # AIX has no versioning support, so we append a major version to the name. -- soname_spec='${libname}${release}.so$major' -+ soname_spec='${libname}${release}.so.$major' - ;; - - amigaos*) -@@ -1160,27 +1123,28 @@ - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done' - ;; - --freebsd2* | freebsd3*) -- version_type=sunos -- library_names_spec='${libname}${release}.so$versuffix $libname.so' -- finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' -+freebsd*) -+ objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` -+ version_type=freebsd-$objformat -+ library_names_spec='${libname}${release}.so.$versuffix $libname.so' -+ finish_cmds="PATH=\"\$PATH:/sbin\" OBJFORMAT=$objformat ldconfig -m \$libdir" - shlibpath_var=LD_LIBRARY_PATH - ;; - - gnu*) -- version_type=linux -- library_names_spec='${libname}${release}.so$versuffix ${libname}.so' -+ version_type=sunos -+ library_names_spec='${libname}${release}.so.$versuffix' - shlibpath_var=LD_LIBRARY_PATH - ;; - --hpux9* | hpux10* | hpux11*) -+hpux9* | hpux10*) - # Give a soname corresponding to the major version so that dld.sl refuses to - # link against other versions. - dynamic_linker="$host_os dld.sl" - version_type=sunos - shlibpath_var=SHLIB_PATH -- library_names_spec='${libname}${release}.sl$versuffix ${libname}${release}.sl$major $libname.sl' -- soname_spec='${libname}${release}.sl$major' -+ library_names_spec='${libname}${release}.sl.$versuffix ${libname}${release}.sl.$major $libname.sl' -+ soname_spec='${libname}${release}.sl.$major' - # HP-UX runs *really* slowly unless shared libraries are mode 555. - postinstall_cmds='chmod 555 $lib' - ;; -@@ -1188,7 +1152,7 @@ - irix5* | irix6*) - version_type=osf - soname_spec='${libname}${release}.so' -- library_names_spec='${libname}${release}.so$versuffix $libname.so' -+ library_names_spec='${libname}${release}.so.$versuffix $libname.so' - shlibpath_var=LD_LIBRARY_PATH - ;; - -@@ -1200,9 +1164,9 @@ - # This must be Linux ELF. - linux-gnu*) - version_type=linux -- library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' -- soname_spec='${libname}${release}.so$major' -- finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' -+ library_names_spec='${libname}${release}.so.$versuffix ${libname}${release}.so.$major $libname.so' -+ soname_spec='${libname}${release}.so.$major' -+ finish_cmds='PATH="$PATH:/sbin" ldconfig -n $libdir' - shlibpath_var=LD_LIBRARY_PATH - - if test -f /lib/ld.so.1; then -@@ -1218,8 +1182,8 @@ - - netbsd* | openbsd*) - version_type=sunos -- library_names_spec='${libname}${release}.so$versuffix' -- finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' -+ library_names_spec='${libname}${release}.so.$versuffix' -+ finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - ;; - -@@ -1233,44 +1197,42 @@ - osf3* | osf4*) - version_type=osf - soname_spec='${libname}${release}.so' -- library_names_spec='${libname}${release}.so$versuffix $libname.so' -+ library_names_spec='${libname}${release}.so.$versuffix $libname.so' - shlibpath_var=LD_LIBRARY_PATH - ;; - - sco3.2v5*) - version_type=osf -- soname_spec='${libname}${release}.so$major' -- library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' -+ soname_spec='${libname}${release}.so.$major' -+ library_names_spec='${libname}${release}.so.$versuffix ${libname}${release}.so.$major $libname.so' - shlibpath_var=LD_LIBRARY_PATH - ;; - - solaris2*) - version_type=linux -- library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' -- soname_spec='${libname}${release}.so$major' -+ library_names_spec='${libname}${release}.so.$versuffix ${libname}${release}.so.$major $libname.so' -+ soname_spec='${libname}${release}.so.$major' - shlibpath_var=LD_LIBRARY_PATH -- # ldd complains unless libraries are executable -- postinstall_cmds='chmod +x $lib' - ;; - - sunos4*) - version_type=sunos -- library_names_spec='${libname}${release}.so$versuffix' -- finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' -+ library_names_spec='${libname}${release}.so.$versuffix' -+ finish_cmds='PATH="$PATH:/usr/etc" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - ;; - - sysv4.2uw2*) - version_type=linux -- library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' -- soname_spec='${libname}${release}.so$major' -+ library_names_spec='${libname}${release}.so.$versuffix ${libname}${release}.so.$major $libname.so' -+ soname_spec='${libname}${release}.so.$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - - uts4*) - version_type=linux -- library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so' -- soname_spec='${libname}${release}.so$major' -+ library_names_spec='${libname}${release}.so.$versuffix ${libname}${release}.so.$major $libname.so' -+ soname_spec='${libname}${release}.so.$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -@@ -1326,7 +1288,7 @@ - for var in ltecho old_CC old_CFLAGS old_CPPFLAGS old_LD old_NM old_RANLIB \ - old_LN_S AR CC LD LN_S NM reload_flag reload_cmds wl pic_flag \ - link_static_flag no_builtin_flag export_dynamic_flag_spec \ -- whole_archive_flag_spec libname_spec library_names_spec soname_spec RANLIB \ -+ libname_spec library_names_spec soname_spec RANLIB \ - old_archive_cmds old_archive_from_new_cmds old_postinstall_cmds \ - old_postuninstall_cmds archive_cmds postinstall_cmds postuninstall_cmds \ - allow_undefined_flag no_undefined_flag \ -@@ -1346,13 +1308,14 @@ - esac - done - --trap "$rm \"$ofile\"; exit 1" 1 2 15 --echo "creating $ofile" --$rm "$ofile" --cat < "$ofile" --#! $SHELL -+ofile=libtool -+trap "$rm $ofile; exit 1" 1 2 15 -+echo creating $ofile -+$rm $ofile -+cat < $ofile -+#! /bin/sh - --# `$echo "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. -+# libtool - Provide generalized library-building support services. - # Generated automatically by $PROGRAM - GNU $PACKAGE $VERSION - # NOTE: Changes made to this file will be lost: look at ltconfig or ltmain.sh. - # -@@ -1378,15 +1341,8 @@ - # configuration script generated by Autoconf, you may include it under - # the same distribution terms that you use for the rest of that program. - --# Sed that helps us avoid accidentally triggering echo(1) options like -n. --Xsed="sed -e s/^X//" -- --# The HP-UX ksh and POSIX shell print the target directory to stdout --# if CDPATH is set. --if test "\${CDPATH+set}" = set; then CDPATH=; export CDPATH; fi -- --### BEGIN LIBTOOL CONFIG --# Libtool was configured as follows, on host `(hostname || uname -n) 2>/dev/null | sed 1q`: -+# This program was configured as follows, -+# on host `(hostname || uname -n) 2>/dev/null | sed 1q`: - # - # CC="$old_CC" CFLAGS="$old_CFLAGS" CPPFLAGS="$old_CPPFLAGS" \\ - # LD="$old_LD" NM="$old_NM" RANLIB="$old_RANLIB" LN_S="$old_LN_S" \\ -@@ -1395,25 +1351,32 @@ - # Compiler and other test output produced by $progname, useful for - # debugging $progname, is in ./config.log if it exists. - -+# Sed that helps us avoid accidentally triggering echo(1) options like -n. -+Xsed="sed -e s/^X//" -+ -+# The HP-UX ksh and POSIX shell print the target directory to stdout -+# if CDPATH is set. -+if test "\${CDPATH+set}" = set; then CDPATH=; export CDPATH; fi -+ -+# An echo program that does not interpret backslashes. -+echo="$ltecho" -+ - # The version of $progname that generated this script. - LTCONFIG_VERSION="$VERSION" - - # Shell to use when invoking shell scripts. --SHELL="$SHELL" -+SHELL=${CONFIG_SHELL-/bin/sh} - --# Whether or not to build shared libraries. -+# Whether or not to build libtool libraries. - build_libtool_libs=$enable_shared - --# Whether or not to build static libraries. -+# Whether or not to build old-style libraries. - build_old_libs=$enable_static - - # The host system. - host_alias="$host_alias" - host="$host" - --# An echo program that does not interpret backslashes. --echo="$ltecho" -- - # The archiver. - AR="$AR" - -@@ -1451,9 +1414,6 @@ - # Compiler flag to allow reflexive dlopens. - export_dynamic_flag_spec="$export_dynamic_flag_spec" - --# Compiler flag to generate shared objects directly from archives. --whole_archive_flag_spec="$whole_archive_flag_spec" -- - # Library versioning type. - version_type=$version_type - -@@ -1523,12 +1483,12 @@ - # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into - # the resulting binary. - hardcode_shlibpath_var=$hardcode_shlibpath_var -+ - EOF - - case "$host_os" in - aix3*) -- cat <<\EOF >> "$ofile" -- -+ cat <<\EOF >> $ofile - # AIX sometimes has problems with the GCC collect2 program. For some - # reason, if we set the COLLECT_NAMES environment variable, the problems - # vanish in a puff of smoke. -@@ -1536,17 +1496,15 @@ - COLLECT_NAMES= - export COLLECT_NAMES - fi -+ - EOF - ;; - esac - --echo '### END LIBTOOL CONFIG' >> "$ofile" --echo >> "$ofile" -- - # Append the ltmain.sh script. --cat "$ltmain" >> "$ofile" || (rm -f "$ofile"; exit 1) -+cat "$ltmain" >> $ofile || (rm -f $ofile; exit 1) - --chmod +x "$ofile" -+chmod +x $ofile - exit 0 - - # Local Variables: --- /usr/ports.ref/net/libicq/patches/patch-ab Mon Mar 15 21:59:22 1999 +++ net/libicq/patches/patch-ab Mon May 17 02:27:27 1999 @@ -1,1180 +0,0 @@ ---- ltmain.sh.orig Mon Mar 15 13:14:36 1999 -+++ ltmain.sh Mon Mar 15 13:14:36 1999 -@@ -23,18 +23,6 @@ - # configuration script generated by Autoconf, you may include it under - # the same distribution terms that you use for the rest of that program. - --# Check that we have a working $echo. --if test "X$1" = X--no-reexec; then -- # Discard the --no-reexec flag, and continue. -- shift --elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then -- # Yippee, $echo works! -- : --else -- # Restart under the correct shell, and then maybe $echo will work. -- exec $SHELL "$0" --no-reexec ${1+"$@"} --fi -- - # The name of this program. - progname=`$echo "$0" | sed 's%^.*/%%'` - modename="$progname" -@@ -42,7 +30,7 @@ - # Constants. - PROGRAM=ltmain.sh - PACKAGE=libtool --VERSION=1.2b -+VERSION=1.2 - - default_mode= - help="Try \`$progname --help' for more information." -@@ -60,13 +48,8 @@ - # Only set LANG and LC_ALL to C if already set. - # These must not be set unconditionally because not all systems understand - # e.g. LANG=C (notably SCO). --# We save the old values to restore during execute mode. --if test "${LC_ALL+set}" = set; then -- save_LC_ALL="$LC_ALL"; LC_ALL=C; export LC_ALL --fi --if test "${LANG+set}" = set; then -- save_LANG="$LANG"; LANG=C; export LANG --fi -+if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi -+if test "${LANG+set}" = set; then LANG=C; export LANG; fi - - if test "$LTCONFIG_VERSION" != "$VERSION"; then - echo "$modename: ltconfig version \`$LTCONFIG_VERSION' does not match $PROGRAM version \`$VERSION'" 1>&2 -@@ -128,16 +111,6 @@ - exit 0 - ;; - -- --config) -- sed -e '1,/^### BEGIN LIBTOOL CONFIG/d' -e '/^### END LIBTOOL CONFIG/,$d' $0 -- exit 0 -- ;; -- -- --debug) -- echo "$progname: enabling shell trace mode" -- set -x -- ;; -- - --dry-run | -n) - run=: - ;; -@@ -207,7 +180,7 @@ - esac - done - ;; -- *db | *dbx | *strace | *truss) -+ *db | *dbx) - mode=execute - ;; - *install*|cp|mv) -@@ -265,6 +238,7 @@ - ;; - - -static) -+ build_libtool_libs=no - build_old_libs=yes - continue - ;; -@@ -363,7 +337,7 @@ - - # Just move the object, then go on to compile the next one - $show "$mv $obj $libobj" -- $run $mv $obj $libobj || exit $? -+ $run $mv $obj $libobj || exit 1 - - # Allow error messages only from the first compilation. - suppress_output=' >/dev/null 2>&1' -@@ -400,13 +374,10 @@ - - compile_shlibpath= - finalize_shlibpath= -- convenience= -- old_convenience= - deplibs= - dlfiles= - dlprefiles= - export_dynamic=no -- generated= - hardcode_libdirs= - libobjs= - link_against_libtool_libs= -@@ -439,10 +410,8 @@ - test -n "$old_archive_from_new_cmds" && build_old_libs=yes - - # Go through the arguments, transforming them on the way. -- while test $# -gt 0; do -- arg="$1" -- shift -- -+ for arg -+ do - # If the previous option needs an argument, assign it. - if test -n "$prev"; then - case "$prev" in -@@ -526,7 +495,7 @@ - -L*) - dir=`$echo "X$arg" | $Xsed -e 's%^-L\(.*\)$%\1%'` - case "$dir" in -- /* | [A-Za-z]:[/\\]*) -+ /* | [A-Za-z]:\\*) - # Add the corresponding hardcode_libdir_flag, if it is not identical. - ;; - *) -@@ -602,7 +571,7 @@ - - if test "$prev" = dlprefiles; then - # Preload the old-style object. -- dlprefiles="$dlprefiles "`$echo "X$arg" | $Xsed -e 's/\.lo$/.o/'` -+ dlprefiles="$dlprefiles "`$echo "X$arg" | $Xsed -e 's/\.lo$/\.o/'` - prev= - fi - libobjs="$libobjs $arg" -@@ -617,7 +586,7 @@ - old_library= - - # Check to see that this really is a libtool archive. -- if (sed -e '2q' $arg | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : -+ if (sed -e '2q' $arg | egrep '^# Generated by ltmain\.sh') >/dev/null 2>&1; then : - else - $echo "$modename: \`$arg' is not a valid libtool archive" 1>&2 - exit 1 -@@ -629,6 +598,11 @@ - *) . ./$arg ;; - esac - -+ if test -z "$libdir"; then -+ $echo "$modename: \`$arg' contains no -rpath information" 1>&2 -+ exit 1 -+ fi -+ - # Get the name of the library we link against. - linklib= - for l in $old_library $library_names; do -@@ -649,15 +623,6 @@ - dir="$dir/$objdir" - fi - -- if test -z "$libdir"; then -- # It is a libtool convenience library, so add in its objects. -- convenience="$convenience $dir/$old_library"l -- old_convenience="$old_convenience $dir/$old_library" -- compile_command="$compile_command $dir/$old_library" -- finalize_command="$finalize_command $dir/$old_library" -- continue -- fi -- - # This library was specified with -dlopen. - if test "$prev" = dlfiles; then - dlfiles="$dlfiles $arg" -@@ -731,9 +696,8 @@ - fi - - -- lib_linked=yes - case "$hardcode_action" in -- immediate | unsupported) -+ immediate) - if test "$hardcode_direct" = no; then - compile_command="$compile_command $dir/$linklib" - elif test "$hardcode_minus_L" = no; then -@@ -741,15 +705,13 @@ - elif test "$hardcode_shlibpath_var" = no; then - compile_shlibpath="$compile_shlibpath$dir:" - compile_command="$compile_command -l$name" -- else -- lib_linked=no - fi - ;; - - relink) - # We need an absolute path. - case "$dir" in -- /* | [A-Za-z]:[/\\]*) ;; -+ /* | [A-Za-z]:\\*) ;; - *) - absdir=`cd "$dir" && pwd` - if test -z "$absdir"; then -@@ -767,21 +729,15 @@ - elif test "$hardcode_shlibpath_var" = yes; then - compile_shlibpath="$compile_shlibpath$dir:" - compile_command="$compile_command -l$name" -- else -- lib_linked=no - fi - ;; - -- *) -- lib_linked=no -- ;; -+ *) -+ $echo "$modename: \`$hardcode_action' is an unknown hardcode action" 1>&2 -+ exit 1 -+ ;; - esac - -- if test "$lib_linked" != yes; then -- $echo "$modename: configuration error: unsupported hardcode properties" -- exit 1 -- fi -- - # Finalize command for both is simple: just hardcode it. - if test "$hardcode_direct" = yes; then - finalize_command="$finalize_command $libdir/$linklib" -@@ -846,7 +802,14 @@ - exit 1 - fi - -- oldlibs= -+ if test -n "$vinfo" && test -n "$release"; then -+ $echo "$modename: you cannot specify both \`-version-info' and \`-release'" 1>&2 -+ $echo "$help" 1>&2 -+ exit 1 -+ fi -+ -+ oldlib= -+ oldobjs= - case "$output" in - "") - $echo "$modename: you must specify an output file" 1>&2 -@@ -856,39 +819,16 @@ - - */* | *\\*) - $echo "$modename: output file \`$output' must have no directory components" 1>&2 -- $echo "$help" 1>&2 - exit 1 - ;; - - *.a) -- if test -n "$link_against_libtool_libs"; then -- $echo "$modename: error: cannot link libtool libraries into archives" 1>&2 -- exit 1 -- fi -- -- if test -n "$deplibs"; then -- $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2 -- fi -- -- if test -n "$dlfiles$dlprefiles"; then -- $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2 -- fi -- -- if test -n "$rpath"; then -- $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2 -- fi -- -- if test -n "$vinfo"; then -- $echo "$modename: warning: \`-version-info' is ignored for archives" 1>&2 -- fi -- -- if test -n "$release"; then -- $echo "$modename: warning: \`-release' is ignored for archives" 1>&2 -- fi -- - # Now set the variables for building old libraries. - build_libtool_libs=no -- oldlibs="$output" -+ build_old_libs=yes -+ oldlib="$output" -+ $show "$rm $oldlib" -+ $run $rm $oldlib - ;; - - *.la) -@@ -896,7 +836,7 @@ - case "$output" in - lib*) ;; - *) -- $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2 -+ $echo "$modename: libtool library \`$arg' must begin with \`lib'" 1>&2 - $echo "$help" 1>&2 - exit 1 - ;; -@@ -909,6 +849,9 @@ - library_names= - old_library= - dlname= -+ current=0 -+ revision=0 -+ age=0 - - if test -n "$objs"; then - $echo "$modename: cannot build libtool library \`$output' from non-libtool objects:$objs" 2>&1 -@@ -917,12 +860,21 @@ - - # How the heck are we supposed to write a wrapper for a shared library? - if test -n "$link_against_libtool_libs"; then -- $echo "$modename: error: cannot link shared libraries into libtool libraries" 1>&2 -+ $echo "$modename: libtool library \`$output' may not depend on uninstalled libraries:$link_against_libtool_libs" 1>&2 - exit 1 - fi - - if test -n "$dlfiles$dlprefiles"; then -- $echo "$modename: warning: \`-dlopen' is ignored for libtool libraries" 1>&2 -+ $echo "$modename: warning: \`-dlopen' is ignored while creating libtool libraries" 1>&2 -+ # Nullify the symbol file. -+ compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"` -+ finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"` -+ fi -+ -+ if test -z "$rpath"; then -+ $echo "$modename: you must specify an installation directory with \`-rpath'" 1>&2 -+ $echo "$help" 1>&2 -+ exit 1 - fi - - set dummy $rpath -@@ -931,250 +883,215 @@ - fi - install_libdir="$2" - -- # Now set the variables for building old libraries. -- oldlibs="$objdir/$libname.a" -- if test -z "$rpath"; then -- # Building a libtool convenience library. -- oldlibs="$objdir/$libname.al $oldlibs" -- build_libtool_libs=convenience -- -- if test -n "$vinfo"; then -- $echo "$modename: warning: \`-version-info' is ignored for convenience libraries" 1>&2 -- fi -- -- if test -n "$release"; then -- $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2 -- fi -- else -- -- # Parse the version information argument. -- IFS="${IFS= }"; save_ifs="$IFS"; IFS=':' -- set dummy $vinfo 0 0 0 -- IFS="$save_ifs" -- -- if test -n "$8"; then -- $echo "$modename: too many parameters to \`-version-info'" 1>&2 -- $echo "$help" 1>&2 -- exit 1 -- fi -- -- current="$2" -- revision="$3" -- age="$4" -- -- # Check that each of the things are valid numbers. -- case "$current" in -- 0 | [1-9] | [1-9][0-9]*) ;; -- *) -- $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2 -- $echo "$modename: \`$vinfo' is not valid version information" 1>&2 -- exit 1 -- ;; -- esac -+ # Parse the version information argument. -+ IFS="${IFS= }"; save_ifs="$IFS"; IFS=':' -+ set dummy $vinfo -+ IFS="$save_ifs" - -- case "$revision" in -- 0 | [1-9] | [1-9][0-9]*) ;; -- *) -- $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2 -- $echo "$modename: \`$vinfo' is not valid version information" 1>&2 -- exit 1 -- ;; -- esac -+ if test -n "$5"; then -+ $echo "$modename: too many parameters to \`-version-info'" 1>&2 -+ $echo "$help" 1>&2 -+ exit 1 -+ fi - -- case "$age" in -- 0 | [1-9] | [1-9][0-9]*) ;; -- *) -- $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2 -- $echo "$modename: \`$vinfo' is not valid version information" 1>&2 -- exit 1 -- ;; -- esac -+ test -n "$2" && current="$2" -+ test -n "$3" && revision="$3" -+ test -n "$4" && age="$4" -+ -+ # Check that each of the things are valid numbers. -+ case "$current" in -+ 0 | [1-9] | [1-9][0-9]*) ;; -+ *) -+ $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2 -+ $echo "$modename: \`$vinfo' is not valid version information" 1>&2 -+ exit 1 -+ ;; -+ esac - -- if test $age -gt $current; then -- $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2 -- $echo "$modename: \`$vinfo' is not valid version information" 1>&2 -- exit 1 -- fi -+ case "$revision" in -+ 0 | [1-9] | [1-9][0-9]*) ;; -+ *) -+ $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2 -+ $echo "$modename: \`$vinfo' is not valid version information" 1>&2 -+ exit 1 -+ ;; -+ esac - -- # Calculate the version variables. -- major= -- versuffix= -- verstring= -- case "$version_type" in -- none) ;; -- -- linux) -- major=.`expr $current - $age` -- versuffix="$major.$age.$revision" -- ;; -+ case "$age" in -+ 0 | [1-9] | [1-9][0-9]*) ;; -+ *) -+ $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2 -+ $echo "$modename: \`$vinfo' is not valid version information" 1>&2 -+ exit 1 -+ ;; -+ esac - -- osf) -- major=`expr $current - $age` -- versuffix=".$current.$age.$revision" -- verstring="$current.$age.$revision" -- -- # Add in all the interfaces that we are compatible with. -- loop=$age -- while test $loop != 0; do -- iface=`expr $current - $loop` -- loop=`expr $loop - 1` -- verstring="$verstring:${iface}.0" -- done -+ if test $age -gt $current; then -+ $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2 -+ $echo "$modename: \`$vinfo' is not valid version information" 1>&2 -+ exit 1 -+ fi - -- # Make executables depend on our current version. -- verstring="$verstring:${current}.0" -- ;; -+ # Calculate the version variables. -+ version_vars="version_type current age revision" -+ case "$version_type" in -+ none) ;; -+ -+ linux) -+ version_vars="$version_vars major versuffix" -+ major=`expr $current - $age` -+ versuffix="$major.$age.$revision" -+ ;; -+ -+ osf) -+ version_vars="$version_vars versuffix verstring" -+ major=`expr $current - $age` -+ versuffix="$current.$age.$revision" -+ verstring="$versuffix" -+ -+ # Add in all the interfaces that we are compatible with. -+ loop=$age -+ while test $loop != 0; do -+ iface=`expr $current - $loop` -+ loop=`expr $loop - 1` -+ verstring="$verstring:${iface}.0" -+ done - -- sunos) -- major=".$current" -- versuffix=".$current.$revision" -- ;; -+ # Make executables depend on our current version. -+ verstring="$verstring:${current}.0" -+ ;; - -- *) -- $echo "$modename: unknown library version type \`$version_type'" 1>&2 -- echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 -- exit 1 -- ;; -- esac -+ sunos) -+ version_vars="$version_vars major versuffix" -+ major="$current" -+ versuffix="$current.$revision" -+ ;; - -- # Clear the version info if we defaulted, and they specified a release. -- if test -z "$vinfo" && test -n "$release"; then -- major= -- versuffix= -- verstring="0.0" -- fi -+ freebsd-aout) -+ version_vars="$version_vars major versuffix" -+ major="$current" -+ versuffix="$current.$revision"; -+ ;; - -- # Check to see if the archive will have undefined symbols. -- if test "$allow_undefined" = yes; then -- if test "$allow_undefined_flag" = unsupported; then -- $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2 -- build_libtool_libs=no -- build_old_libs=yes -- fi -- else -- # Don't allow undefined symbols. -- allow_undefined_flag="$no_undefined_flag" -- fi -+ freebsd-elf) -+ version_vars="$version_vars major versuffix" -+ major="$current" -+ versuffix="$current"; -+ ;; - -- # Add libc to deplibs on all systems. -- dependency_libs="$deplibs" -- deplibs="$deplibs -lc" -- fi -+ *) -+ $echo "$modename: unknown library version type \`$version_type'" 1>&2 -+ echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 -+ exit 1 -+ ;; -+ esac - - # Create the output directory, or remove our outputs if we need to. - if test -d $objdir; then -- $show "${rm}r $objdir/$output $objdir/$libname.* $objdir/${libname}${release}.*" -- $run ${rm}r $objdir/$output $objdir/$libname.* $objdir/${libname}${release}.* -+ $show "$rm $objdir/$output $objdir/$libname.* $objdir/${libname}${release}.*" -+ $run $rm $objdir/$output $objdir/$libname.* $objdir/${libname}${release}.* - else - $show "$mkdir $objdir" - $run $mkdir $objdir -- status=$? -- if test $status -ne 0 && test ! -d $objdir; then -- exit $status -+ status=$? -+ if test $status -eq 0 || test -d $objdir; then : -+ else -+ exit $status -+ fi -+ fi -+ -+ # Check to see if the archive will have undefined symbols. -+ if test "$allow_undefined" = yes; then -+ if test "$allow_undefined_flag" = unsupported; then -+ $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2 -+ build_libtool_libs=no -+ build_old_libs=yes - fi -+ else -+ # Don't allow undefined symbols. -+ allow_undefined_flag="$no_undefined_flag" - fi - -+ # Add libc to deplibs on all systems. -+ dependency_libs="$deplibs" -+ deplibs="$deplibs -lc" -+ - if test "$build_libtool_libs" = yes; then -- # Get the real and link names of the library. -- eval library_names=\"$library_names_spec\" -- set dummy $library_names -- realname="$2" -- shift; shift -+ # Get the real and link names of the library. -+ eval library_names=\"$library_names_spec\" -+ set dummy $library_names -+ realname="$2" -+ shift; shift - -- if test -n "$soname_spec"; then -- eval soname=\"$soname_spec\" -- else -- soname="$realname" -- fi -+ if test -n "$soname_spec"; then -+ eval soname=\"$soname_spec\" -+ else -+ soname="$realname" -+ fi - -- lib="$objdir/$realname" -+ lib="$objdir/$realname" - for link - do - linknames="$linknames $link" - done - -- # Use standard objects if they are PIC. -- test -z "$pic_flag" && libobjs=`$echo "X$libobjs " | $Xsed -e 's/\.lo /.o /g' -e 's/ $//g'` -- -- # Transform .lo files to .o files. -- test "$build_old_libs" = yes && oldobjs="$objs"`$echo "X$libobjs " | $Xsed -e 's/[^ ]*\.a //g' -e 's/\.lo /.o /g' -e 's/ $//g'` -+ # Use standard objects if they are PIC. -+ test -z "$pic_flag" && libobjs=`$echo "X$libobjs " | $Xsed -e 's/\.lo /.o /g' -e 's/ $//g'` - -- if test -n "$whole_archive_flag_spec"; then -- if test -n "$convenience"; then -- eval libobjs=\"\$libobjs $whole_archive_flag_spec\" -- fi -- else -- for xlib in $convenience; do -- # Extract the objects. -- xdir="$xlib"x -- generated="$generated $xdir" -- xlib=`echo "$xlib" | $Xsed -e 's%^.*/%%'` -- -- $show "${rm}r $xdir" -- $run ${rm}r "$xdir" -- $show "mkdir $xdir" -- $run mkdir "$xdir" -- status=$? -- if test $status -ne 0 && test ! -d "$xdir"; then -- exit $status -- fi -- $show "(cd $xdir && $AR x ../$xlib)" -- $run eval "(cd \$xdir && $AR x ../\$xlib)" || exit $? -- -- libobjs="$libobjs `echo $xdir/*`" -- done -- fi -- -- # Do each of the archive commands. -- eval cmds=\"$archive_cmds\" -- IFS="${IFS= }"; save_ifs="$IFS"; IFS=';' -- for cmd in $cmds; do -- IFS="$save_ifs" -- $show "$cmd" -- $run eval "$cmd" || exit $? -- done -- IFS="$save_ifs" -+ # Do each of the archive commands. -+ eval cmds=\"$archive_cmds\" -+ IFS="${IFS= }"; save_ifs="$IFS"; IFS=';' -+ for cmd in $cmds; do -+ IFS="$save_ifs" -+ $show "$cmd" -+ $run eval "$cmd" || exit $? -+ done -+ IFS="$save_ifs" - -- # Create links to the real library. -- for linkname in $linknames; do -- if test "$realname" != "$linkname"; then -- $show "(cd $objdir && $LN_S $realname $linkname)" -- $run eval '(cd $objdir && $LN_S $realname $linkname)' || exit $? -- fi -- done -+ # Create links to the real library. -+ for linkname in $linknames; do -+ $show "(cd $objdir && $LN_S $realname $linkname)" -+ $run eval '(cd $objdir && $LN_S $realname $linkname)' || exit $? -+ done - -- # If -export-dynamic was specified, set the dlname. -- if test "$export_dynamic" = yes; then -- # On all known operating systems, these are identical. -- dlname="$soname" -- fi -+ # If -export-dynamic was specified, set the dlname. -+ if test "$export_dynamic" = yes; then -+ # On all known operating systems, these are identical. -+ dlname="$soname" -+ fi - fi -+ -+ # Now set the variables for building old libraries. -+ oldlib="$objdir/$libname.a" - ;; - - *.lo | *.o) - if test -n "$link_against_libtool_libs"; then -- $echo "$modename: error: cannot link libtool libraries into objects" 1>&2 -+ $echo "$modename: error: cannot link libtool libraries into reloadable objects" 1>&2 - exit 1 - fi - - if test -n "$deplibs"; then -- $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2 -+ $echo "$modename: warning: \`-l' and \`-L' are ignored while creating objects" 1>&2 - fi - - if test -n "$dlfiles$dlprefiles"; then -- $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2 -+ $echo "$modename: warning: \`-dlopen' is ignored while creating objects" 1>&2 -+ # Nullify the symbol file. -+ compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"` -+ finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"` - fi - - if test -n "$rpath"; then -- $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2 -+ $echo "$modename: warning: \`-rpath' is ignored while creating objects" 1>&2 - fi - - if test -n "$vinfo"; then -- $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2 -+ $echo "$modename: warning: \`-version-info' is ignored while creating objects" 1>&2 - fi - - if test -n "$release"; then -- $echo "$modename: warning: \`-release' is ignored for objects" 1>&2 -+ $echo "$modename: warning: \`-release' is ignored while creating objects" 1>&2 - fi - - case "$output" in -@@ -1234,7 +1151,7 @@ - else - # Just create a symlink. - $show "$LN_S $obj $libobj" -- $run $LN_S $obj $libobj || exit $? -+ $run $LN_S $obj $libobj || exit 1 - fi - - exit 0 -@@ -1242,11 +1159,11 @@ - - *) - if test -n "$vinfo"; then -- $echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2 -+ $echo "$modename: warning: \`-version-info' is ignored while linking programs" 1>&2 - fi - - if test -n "$release"; then -- $echo "$modename: warning: \`-release' is ignored for programs" 1>&2 -+ $echo "$modename: warning: \`-release' is ignored while creating objects" 1>&2 - fi - - if test -n "$rpath"; then -@@ -1318,7 +1235,8 @@ - $show "$mkdir $objdir" - $run $mkdir $objdir - status=$? -- if test $status -ne 0 && test ! -d $objdir; then -+ if test $status -eq 0 || test -d $objdir; then : -+ else - exit $status - fi - fi -@@ -1449,11 +1367,13 @@ - finalize_command=`$echo "X$finalize_command" | $Xsed -e 's%@OUTPUT@%'"$objdir/$output"'T%g'` - - # Create the binary in the object directory, then wrap it. -- if test ! -d $objdir; then -+ if test -d $objdir; then : -+ else - $show "$mkdir $objdir" - $run $mkdir $objdir - status=$? -- if test $status -ne 0 && test ! -d $objdir; then -+ if test $status -eq 0 || test -d $objdir; then : -+ else - exit $status - fi - fi -@@ -1463,7 +1383,7 @@ - rpath= - for dir in $temp_rpath; do - case "$dir" in -- /* | [A-Za-z]:[/\\]*) -+ /* | [A-Za-z]:\\*) - # Absolute path. - rpath="$rpath$dir:" - ;; -@@ -1496,11 +1416,13 @@ - finalize_command="$runpath_var=\"$rpath\$$runpath_var\" $finalize_command" - fi - -- if test "$hardcode_action" = relink; then -+ case "$hardcode_action" in -+ relink) - # AGH! Flame the AIX and HP-UX people for me, will ya? - $echo "$modename: warning: using a buggy system linker" 1>&2 - $echo "$modename: relinking will be required before \`$output' can be installed" 1>&2 -- fi -+ ;; -+ esac - - $show "$compile_command" - $run eval "$compile_command" || exit $? -@@ -1520,10 +1442,10 @@ - trap "$rm $output; exit 1" 1 2 15 - - $echo > $output "\ --#! $SHELL -+#! /bin/sh - - # $output - temporary wrapper script for $objdir/$output --# Generated by $PROGRAM - GNU $PACKAGE $VERSION -+# Generated by ltmain.sh - GNU $PACKAGE $VERSION - # - # The $output program cannot be directly executed until all the libtool - # libraries that it depends on are installed. -@@ -1547,20 +1469,10 @@ - finalize_command=\"$finalize_command\" - else - # When we are sourced in execute mode, \$file and \$echo are already set. -- if test \"\$libtool_execute_magic\" != \"$magic\"; then -+ if test \"\$libtool_execute_magic\" = \"$magic\"; then : -+ else - echo=\"$qecho\" - file=\"\$0\" -- # Make sure echo works. -- if test \"X\$1\" = X--no-reexec; then -- # Discard the --no-reexec flag, and continue. -- shift -- elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then -- # Yippee, \$echo works! -- : -- else -- # Restart under the correct shell, and then maybe \$echo will work. -- exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"} -- fi - fi\ - " - $echo >> $output "\ -@@ -1577,7 +1489,7 @@ - # If there was a directory component, then change thisdir. - if test \"x\$destdir\" != \"x\$file\"; then - case \"\$destdir\" in -- /* | [A-Za-z]:[/\\]*) thisdir=\"\$destdir\" ;; -+ /* | [A-Za-z]:\\*) thisdir=\"\$destdir\" ;; - *) thisdir=\"\$thisdir/\$destdir\" ;; - esac - fi -@@ -1637,36 +1549,9 @@ - esac - - # See if we need to build an old-fashioned archive. -- for oldlib in $oldlibs; do -- -- if test "$build_libtool_libs" = convenience; then -- oldobjs="$libobjs" -- addlibs="$convenience" -- build_libtool_libs=no -- else -- addlibs="$old_convenience" -- fi -- -- # Add in members from convenience archives. -- for xlib in $addlibs; do -- # Extract the objects. -- xdir="$xlib"x -- generated="$generated $xdir" -- xlib=`echo "$xlib" | $Xsed -e 's%^.*/%%'` -- -- $show "${rm}r $xdir" -- $run ${rm}r "$xdir" -- $show "mkdir $xdir" -- $run mkdir "$xdir" -- status=$? -- if test $status -ne 0 && test ! -d "$xdir"; then -- exit $status -- fi -- $show "(cd $xdir && $AR x ../$xlib)" -- $run eval "(cd \$xdir && $AR x ../\$xlib)" || exit $? -- -- oldobjs="$oldobjs `echo $xdir/*`" -- done -+ if test "$build_old_libs" = "yes"; then -+ # Transform .lo files to .o files. -+ oldobjs="$objs"`$echo "X$libobjs " | $Xsed -e 's/[^ ]*\.a //g' -e 's/\.lo /.o /g' -e 's/ $//g'` - - # Do each command in the archive commands. - if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then -@@ -1681,11 +1566,6 @@ - $run eval "$cmd" || exit $? - done - IFS="$save_ifs" -- done -- -- if test -n "$generated"; then -- $show "${rm}r$generated" -- $run ${rm}r$generated - fi - - # Now create the libtool archive. -@@ -1693,13 +1573,14 @@ - *.la) - old_library= - test "$build_old_libs" = yes && old_library="$libname.a" -+ - $show "creating $output" - - # Only create the output if not a dry run. - if test -z "$run"; then - $echo > $output "\ - # $output - a libtool library file --# Generated by $PROGRAM - GNU $PACKAGE $VERSION -+# Generated by ltmain.sh - GNU $PACKAGE $VERSION - - # The name that we can dlopen(3). - dlname='$dlname' -@@ -1726,7 +1607,7 @@ - # Do a symbolic link so that the libtool archive can be found in - # LD_LIBRARY_PATH before the program is installed. - $show "(cd $objdir && $LN_S ../$output $output)" -- $run eval "(cd $objdir && $LN_S ../$output $output)" || exit $? -+ $run eval "(cd $objdir && $LN_S ../$output $output)" || exit 1 - ;; - esac - exit 0 -@@ -1736,7 +1617,7 @@ - install) - modename="$modename: install" - -- # There may be an optional sh(1) argument at the beginning of -+ # There may be an optional /bin/sh argument at the beginning of - # install_prog (especially on Windows NT). - if test "$nonopt" = "$SHELL"; then - # Aesthetically quote it. -@@ -1770,7 +1651,7 @@ - opts= - prev= - install_type= -- isdir=no -+ isdir= - stripme= - for arg - do -@@ -1840,7 +1721,7 @@ - - # Check to see that the destination is a directory. - test -d "$dest" && isdir=yes -- if test "$isdir" = yes; then -+ if test -n "$isdir"; then - destdir="$dest" - destname= - else -@@ -1857,7 +1738,7 @@ - fi - fi - case "$destdir" in -- /* | [A-Za-z]:[/\\]*) ;; -+ /* | [A-Za-z]:\\*) ;; - *) - for file in $files; do - case "$file" in -@@ -1890,7 +1771,7 @@ - - *.la) - # Check to see that this really is a libtool archive. -- if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : -+ if (sed -e '2q' $file | egrep '^# Generated by ltmain\.sh') >/dev/null 2>&1; then : - else - $echo "$modename: \`$file' is not a valid libtool archive" 1>&2 - $echo "$help" 1>&2 -@@ -1995,7 +1876,7 @@ - # Deduce the name of the destination old-style object file. - case "$destfile" in - *.lo) -- staticdest=`$echo "X$destfile" | $Xsed -e 's/\.lo$/.o/'` -+ staticdest=`$echo "X$destfile" | $Xsed -e 's/\.lo$/\.o/'` - ;; - *.o) - staticdest="$destfile" -@@ -2017,7 +1898,7 @@ - # Install the old object if enabled. - if test "$build_old_libs" = yes; then - # Deduce the name of the old-style object file. -- staticobj=`$echo "X$file" | $Xsed -e 's/\.lo$/.o/'` -+ staticobj=`$echo "X$file" | $Xsed -e 's/\.lo$/\.o/'` - - $show "$install_prog $staticobj $staticdest" - $run eval "$install_prog \$staticobj \$staticdest" || exit $? -@@ -2026,16 +1907,8 @@ - ;; - - *) -- # Figure out destination file name, if it wasn't already specified. -- if test -n "$destname"; then -- destfile="$destdir/$destname" -- else -- destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'` -- destfile="$destdir/$destfile" -- fi -- - # Do a test to see if this is really a libtool program. -- if (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then -+ if (sed -e '4q' $file | egrep '^# Generated by ltmain\.sh') >/dev/null 2>&1; then - link_against_libtool_libs= - finalize_command= - -@@ -2063,7 +1936,10 @@ - esac - fi - libfile="$libdir/`$echo "X$lib" | $Xsed -e 's%^.*/%%g'`" -- if test -n "$libdir" && test ! -f "$libfile"; then -+ if test -z "$libdir"; then -+ $echo "$modename: warning: \`$lib' contains no -rpath information" 1>&2 -+ elif test -f "$libfile"; then : -+ else - $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2 - finalize=no - fi -@@ -2088,8 +1964,8 @@ - fi - fi - -- $show "$install_prog$stripme $file $destfile" -- $run eval "$install_prog\$stripme \$file \$destfile" || exit $? -+ $show "$install_prog$stripme $file $dest" -+ $run eval "$install_prog\$stripme \$file \$dest" || exit $? - ;; - esac - done -@@ -2132,7 +2008,6 @@ - finish) - modename="$modename: finish" - libdirs="$nonopt" -- admincmds= - - if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then - for dir -@@ -2148,21 +2023,19 @@ - for cmd in $cmds; do - IFS="$save_ifs" - $show "$cmd" -- $run eval "$cmd" || admincmds="$admincmds -- $cmd" -+ $run eval "$cmd" - done - IFS="$save_ifs" - fi - if test -n "$finish_eval"; then - # Do the single finish_eval. - eval cmds=\"$finish_eval\" -- $run eval "$cmds" || admincmds="$admincmds -- $cmds" -+ $run eval "$cmds" - fi - done - fi - -- echo "----------------------------------------------------------------------" -+ echo "------------------------------------------------------------------------------" - echo "Libraries have been installed in:" - for libdir in $libdirs; do - echo " $libdir" -@@ -2171,7 +2044,7 @@ - echo "To link against installed libraries in a given directory, LIBDIR," - echo "you must use the \`-LLIBDIR' flag during linking." - echo -- echo " You will also need to do at least one of the following:" -+ echo " You will also need to do one of the following:" - if test -n "$shlibpath_var"; then - echo " - add LIBDIR to the \`$shlibpath_var' environment variable" - echo " during execution" -@@ -2186,16 +2059,13 @@ - - echo " - use the \`$flag' linker flag" - fi -- if test -n "$admincmds"; then -- echo " - have your system administrator run these commands:$admincmds" -- fi - if test -f /etc/ld.so.conf; then - echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" - fi - echo - echo "See any operating system documentation about shared libraries for" - echo "more information, such as the ld(1) and ld.so(8) manual pages." -- echo "----------------------------------------------------------------------" -+ echo "------------------------------------------------------------------------------" - exit 0 - ;; - -@@ -2213,7 +2083,8 @@ - - # Handle -dlopen flags immediately. - for file in $execute_dlfiles; do -- if test ! -f "$file"; then -+ if test -f "$file"; then : -+ else - $echo "$modename: \`$file' is not a file" 1>&2 - $echo "$help" 1>&2 - exit 1 -@@ -2223,7 +2094,7 @@ - case "$file" in - *.la) - # Check to see that this really is a libtool archive. -- if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : -+ if (sed -e '2q' $file | egrep '^# Generated by ltmain\.sh') >/dev/null 2>&1; then : - else - $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 - $echo "$help" 1>&2 -@@ -2294,7 +2165,7 @@ - -*) ;; - *) - # Do a test to see if this is really a libtool program. -- if (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then -+ if (sed -e '4q' $file | egrep '^# Generated by ltmain\.sh') >/dev/null 2>&1; then - # If there is no directory component, then add one. - case "$file" in - */* | *\\*) . $file ;; -@@ -2315,14 +2186,6 @@ - # Export the shlibpath_var. - eval "export $shlibpath_var" - -- # Restore saved enviroment variables -- if test "${save_LC_ALL+set}" = set; then -- LC_ALL="$save_LC_ALL"; export LC_ALL -- fi -- if test "${save_LANG+set}" = set; then -- LANG="$save_LANG"; export LANG -- fi -- - # Now actually exec the command. - eval "exec \$cmd$args" - -@@ -2367,7 +2230,7 @@ - case "$name" in - *.la) - # Possibly a libtool archive, so verify it. -- if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then -+ if (sed -e '2q' $file | egrep '^# Generated by ltmain\.sh') >/dev/null 2>&1; then - . $dir/$name - - # Delete the libtool libraries and symlinks. -@@ -2411,7 +2274,7 @@ - - *.lo) - if test "$build_old_libs" = yes; then -- oldobj=`$echo "X$name" | $Xsed -e 's/\.lo$/.o/'` -+ oldobj=`$echo "X$name" | $Xsed -e 's/\.lo$/\.o/'` - rmfiles="$rmfiles $dir/$oldobj" - fi - $show "$rm $rmfiles" -@@ -2446,10 +2309,8 @@ - - Provide generalized library-building support services. - -- --config show all configuration variables -- --debug enable verbose shell tracing - -n, --dry-run display commands without modifying any files -- --features display basic configuration information and exit -+ --features display configuration information and exit - --finish same as \`--mode=finish' - --help display this help message and exit - --mode=MODE use operation mode MODE [default=inferred from MODE-ARGS] -@@ -2476,10 +2337,6 @@ - "Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE - - Compile a source file into a libtool library object. -- --This mode accepts the following additional options: -- -- -static always build a \`.o' file suitable for static linking - - COMPILE-COMMAND is a command to be used in creating a \`standard' object file - from the given SOURCEFILE. --- /usr/ports.ref/net/libicq/patches/patch-ac Mon Mar 15 21:59:22 1999 +++ net/libicq/patches/patch-ac Mon May 17 02:27:30 1999 @@ -1,11 +0,0 @@ ---- configure.orig Mon Mar 15 13:17:51 1999 -+++ configure Mon Mar 15 13:17:59 1999 -@@ -1300,7 +1300,7 @@ - # Actually configure libtool. ac_aux_dir is where install-sh is found. - CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \ - LD="$LD" NM="$NM" RANLIB="$RANLIB" LN_S="$LN_S" \ --${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \ -+${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig \ - $libtool_flags --no-verify $ac_aux_dir/ltmain.sh $host \ - || { echo "configure: error: libtool configure failed" 1>&2; exit 1; } - --- /usr/ports.ref/net/libicq/pkg/PLIST Mon Mar 15 21:59:23 1999 +++ net/libicq/pkg/PLIST Mon May 17 02:30:12 1999 @@ -1,6 +1,5 @@ include/libicq.h lib/libicq.a -lib/libicq.la lib/libicq.so lib/libicq.so.0.3 @exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B --- /usr/ports.ref/net/xferstats/Makefile Tue Mar 9 12:46:34 1999 +++ net/xferstats/Makefile Thu Apr 29 12:17:25 1999 @@ -14,14 +14,17 @@ MAINTAINER= dima@Chg.RU -LIB_DEPENDS= glib11.0:${PORTSDIR}/devel/glib11 +LIB_DEPENDS= glib12.2:${PORTSDIR}/devel/glib12 + +GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config WRKSRC= ${WRKDIR}/xferstats GNU_CONFIGURE= yes +CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" + MAN8= xferstats.8 do-install: - @ ${INSTALL_PROGRAM} ${WRKSRC}/xferstats ${PREFIX}/bin @ ${INSTALL_MAN} ${WRKSRC}/xferstats.8 ${MAN8PREFIX}/man/man8 @ ${INSTALL_DATA} ${WRKSRC}/xferstats.cfg ${PREFIX}/etc/xferstats.cfg.sample >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 May 22 15:58:35 1999 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 E9DA814C97 for ; Sat, 22 May 1999 15:58:32 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.1a/8.9.0) with ESMTP id RAA00368; Sat, 22 May 1999 17:58:27 -0500 (CDT) Date: Sat, 22 May 1999 17:58:27 -0500 (CDT) From: Steve Price To: bri@sonicboom.org Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports network install 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 On Sat, 22 May 1999 bri@sonicboom.org wrote: # # I was wondering if anything will be done about the network # install/download of the ports package. The rest of my network install # screalms at over 100k/sec, but at the ports section, its like I have a # modem again. I don't think there is anything to fix. What you are seeing is the effects of extracting and creating ~75K files. I believe sysinstall is doing something along these lines. fetch -o- ftp://some.host/ports.tgz | (cd /usr; tar xzf -) To see the same kind of effect but in reverse, after you install the ports tree try this. cd /usr; tar czf /tmp/ports.tgz ports Take a long dinner break and you'll be lucky if it is done by the time you come back. :) -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 22 16:20:30 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7759014FA4 for ; Sat, 22 May 1999 16:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA64188; Sat, 22 May 1999 16:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 7FF9214D43 for ; Sat, 22 May 1999 16:16:38 -0700 (PDT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by shale.csir.co.za (8.9.3/8.9.3) id BAA48643; Sun, 23 May 1999 01:16:35 +0200 (SAT) (envelope-from reg) Message-Id: <199905222316.BAA48643@shale.csir.co.za> Date: Sun, 23 May 1999 01:16:35 +0200 (SAT) From: reg@shale.csir.co.za Reply-To: reg@shale.csir.co.za To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11842: Port update: x11-toolkits/gtk12 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11842 >Category: ports >Synopsis: Port update: x11-toolkits/gtk12 >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 May 22 16:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jeremy Lea >Release: FreeBSD 4.0-CURRENT i386 >Organization: Arb's Inc. >Environment: FreeBSD Ports collection. >Description: Upgrade to GTK+ 1.2.3, and bump shared library numbers. Major changes: - USE_LIBTOOL. Major decrease in patching... - Don't always link with thread flags. No longer means that GTK+ is always linked with libc_r. Other ports: - Changed depenancies - USE_LIBTOOL - Sane: Fix PLIST. - gFTP: Proper use of -pthread. - gtkportscan: Use $PREFIX. - pdq: Add MESSAGE to package. - gtk--: Use egcs on < 4.0 (Closes ports/11776). Note: I've not contact maintainers. I've lost track... >How-To-Repeat: >Fix: audio/gmixer: Changes: Makefile Adds : Removes: audio/replay: Changes: Makefile Adds : Removes: audio/xhippo: Changes: Makefile Adds : Removes: cad/geda: Changes: Makefile pkg/PLIST Adds : Removes: patches/patch-aa databases/gmysql: Changes: Makefile Adds : Removes: deskutils/gtimer: Changes: Makefile Adds : Removes: devel/mico: Changes: Makefile Adds : Removes: editors/AbiWord: Changes: Makefile Adds : Removes: editors/gnotepad+: Changes: Makefile Adds : Removes: editors/gxedit: Changes: Makefile Adds : Removes: emulators/xsystem35: Changes: Makefile Adds : Removes: games/garith: Changes: Makefile Adds : Removes: games/gtkballs: Changes: Makefile Adds : Removes: games/xqf: Changes: Makefile Adds : Removes: graphics/gimp1-i18n: Changes: Makefile Adds : Removes: graphics/gtksee: Changes: Makefile Adds : Removes: graphics/sane: Changes: Makefile pkg/PLIST Adds : Removes: patches/patch-02 patches/patch-03 graphics/xsane: Changes: Makefile Adds : Removes: japanese/gicq: Changes: Makefile Adds : Removes: japanese/gtkicq: Changes: Makefile Adds : Removes: math/geg: Changes: Makefile Adds : Removes: misc/gtkfind: Changes: Makefile Adds : Removes: net/IglooFTP: Changes: Makefile Adds : Removes: net/ethereal: Changes: Makefile Adds : Removes: net/gaim: Changes: Makefile Adds : Removes: net/gftp: Changes: Makefile patches/patch-aa patches/patch-ab Adds : Removes: net/ggsd: Changes: Makefile Adds : Removes: net/gicq: Changes: Makefile pkg/PLIST Adds : Removes: net/irssi: Changes: Makefile Adds : Removes: net/mtr: Changes: Makefile Adds : Removes: net/wxftp: Changes: Makefile Adds : Removes: net/xchat: Changes: Makefile Adds : Removes: net/xwhois: Changes: Makefile Adds : Removes: print/pdq: Changes: Makefile Adds : pkg/MESSAGE Removes: security/gtkportscan: Changes: Makefile patches/patch-aa Adds : Removes: security/nessus: Changes: Makefile Adds : Removes: sysutils/xlogmaster: Changes: Makefile pkg/PLIST Adds : Removes: sysutils/xwatch: Changes: Makefile Adds : Removes: x11-clocks/asclock-gtk: Changes: Makefile Adds : Removes: x11-fm/dfm: Changes: Makefile Adds : Removes: x11-toolkits/gtk--: Changes: Makefile Adds : Removes: x11-toolkits/gtk12: Upgrade from 1.2.2 to 1.2.3 Changes: Makefile files/md5 patches/patch-aa patches/patch-ab patches/patch-ad patches/patch-ae pkg/PLIST Adds : Removes: x11-toolkits/gtkgl: Changes: Makefile patches/patch-aa pkg/PLIST Adds : Removes: --- /usr/ports.ref/audio/gmixer/Makefile Wed Apr 7 16:22:34 1999 +++ audio/gmixer/Makefile Fri Apr 30 00:47:51 1999 @@ -12,7 +12,7 @@ MAINTAINER= cpiazza@home.net -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 ALL_TARGET= gmixer --- /usr/ports.ref/audio/replay/Makefile Thu Apr 22 14:37:54 1999 +++ audio/replay/Makefile Fri Apr 30 00:46:53 1999 @@ -13,7 +13,7 @@ MAINTAINER= nacai@iname.com -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 USE_X_PREFIX= yes GNU_CONFIGURE= yes --- /usr/ports.ref/audio/xhippo/Makefile Fri Apr 16 08:43:57 1999 +++ audio/xhippo/Makefile Fri Apr 30 00:51:16 1999 @@ -6,18 +6,20 @@ # $Id: Makefile,v 1.1.1.1 1999/04/16 06:43:57 flathill Exp $ # -DISTNAME= xhippo-0.8 -CATEGORIES= audio -MASTER_SITES= http://zenchaos.netpedia.net/software/ +DISTNAME= xhippo-0.8 +CATEGORIES= audio +MASTER_SITES= http://zenchaos.netpedia.net/software/ -MAINTAINER= tr49986@rcc.on.ca +MAINTAINER= tr49986@rcc.on.ca -RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 -GNU_CONFIGURE= yes -CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" -USE_XLIB= yes +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + +GNU_CONFIGURE= yes +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" +USE_XLIB= yes post-install: @${CAT} ${PKGDIR}/MESSAGE --- /usr/ports.ref/cad/geda/Makefile Fri Apr 23 10:51:05 1999 +++ cad/geda/Makefile Mon May 17 01:47:31 1999 @@ -15,15 +15,13 @@ MAINTAINER= vanilla@FreeBSD.ORG -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ guile.4:${PORTSDIR}/lang/guile -USE_X_PREFIX= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="${CFLAGS}" -CONFIGURE_ARGS= --with-gtk-config=${X11BASE}/bin/gtk12-config +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config -post-install: - @${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib +USE_X_PREFIX= yes +USE_LIBTOOL= yes +CONFIGURE_ARGS= --with-gtk-config=${GTK_CONFIG} .include --- /usr/ports.ref/cad/geda/patches/patch-aa Wed Feb 3 01:42:43 1999 +++ cad/geda/patches/patch-aa Mon May 17 01:47:01 1999 @@ -1,53 +0,0 @@ ---- ltmain.sh.orig Sun Dec 13 13:00:00 1998 -+++ ltmain.sh Tue Feb 2 23:17:51 1999 -@@ -967,6 +967,16 @@ - versuffix="$current.$revision" - ;; - -+ freebsd) -+ version_vars="$version_vars major versuffix" -+ major="$current" -+ if [ $PORTOBJFORMAT = elf ]; then -+ versuffix="$current"; -+ else -+ versuffix="$current.$revision"; -+ fi -+ ;; -+ - *) - $echo "$modename: unknown library version type \`$version_type'" 1>&2 - echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 ---- ltconfig.orig Sun Dec 13 13:00:00 1998 -+++ ltconfig Tue Feb 2 23:18:10 1999 -@@ -777,7 +777,7 @@ - ;; - - # FreeBSD 3, at last, uses gcc -shared to do shared libraries. -- freebsd3*) -+ freebsd*) - archive_cmds='$CC -shared -o $lib$libobjs' - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes -@@ -1123,10 +1123,21 @@ - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done' - ;; - --freebsd2* | freebsd3*) -+freebsd2*) - version_type=sunos - library_names_spec='${libname}${release}.so.$versuffix $libname.so' - finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ ;; -+ -+freebsd*) -+ version_type=freebsd -+ library_names_spec='${libname}${release}.so.$versuffix $libname.so' -+ if [ $PORTOBJFORMAT = elf ]; then -+ finish_cmds='PATH="\$PATH:/sbin" OBJFORMAT="$PORTOBJFORMAT" ldconfig -m $libdir' -+ else -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' -+ fi - shlibpath_var=LD_LIBRARY_PATH - ;; - --- /usr/ports.ref/cad/geda/pkg/PLIST Thu May 13 15:49:26 1999 +++ cad/geda/pkg/PLIST Mon May 17 02:19:57 1999 @@ -8,7 +8,6 @@ bin/mk_sym bin/smash_megafile lib/libgeda.a -lib/libgeda.la lib/libgeda.so lib/libgeda.so.2.2 share/gEDA/scheme/gnetlist.scm --- /usr/ports.ref/databases/gmysql/Makefile Thu Apr 22 14:39:12 1999 +++ databases/gmysql/Makefile Fri Apr 30 00:53:41 1999 @@ -13,12 +13,14 @@ MAINTAINER= dirk@FreeBSD.ORG -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ mysqlclient.6:${PORTSDIR}/databases/mysql322 +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-mysql=${PREFIX} -CONFIGURE_ENV= GTK_CONFIG=${X11BASE}/bin/gtk12-config +CONFIGURE_ENV= GTK_CONFIG=${GTK_CONFIG} FETCH_BEFORE_ARGS= -b .include --- /usr/ports.ref/deskutils/gtimer/Makefile Fri May 7 02:03:41 1999 +++ deskutils/gtimer/Makefile Mon May 10 02:17:16 1999 @@ -12,10 +12,12 @@ MAINTAINER= cpiazza@home.net -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 + +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config GNU_CONFIGURE= YES -CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" USE_GMAKE= YES USE_BZIP2= YES MAN1= gtimer.1 --- /usr/ports.ref/devel/mico/Makefile Thu May 13 15:52:53 1999 +++ devel/mico/Makefile Thu May 13 15:42:19 1999 @@ -20,9 +20,11 @@ BUILD_DEPENDS= egcc:${PORTSDIR}/lang/egcs .endif -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ tcl80.1:${PORTSDIR}/lang/tcl80 +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + USE_QT= yes USE_AUTOCONF= yes USE_GMAKE= yes @@ -31,7 +33,7 @@ CONFIGURE_ARGS= --with-qt --with-gtk --with-tcl \ --disable-optimize --disable-mini-stl -CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" MAN1= idl.1 imr.1 nsadmin.1 MAN5= micorc.5 --- /usr/ports.ref/editors/AbiWord/Makefile Wed May 12 12:18:13 1999 +++ editors/AbiWord/Makefile Wed May 12 09:55:38 1999 @@ -16,7 +16,7 @@ MAINTAINER= dburr@FreeBSD.ORG BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash2 -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ png.3:${PORTSDIR}/graphics/png RUN_DEPENDS= ispell:${PORTSDIR}/textproc/ispell --- /usr/ports.ref/editors/gnotepad+/Makefile Sun May 9 22:39:45 1999 +++ editors/gnotepad+/Makefile Sun May 9 23:07:24 1999 @@ -13,10 +13,12 @@ MAINTAINER= brett@peloton.physics.montana.edu LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \ - gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 + gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 + +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config GNU_CONFIGURE= yes -CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" MAN1= gnp.1 --- /usr/ports.ref/editors/gxedit/Makefile Mon Apr 19 10:40:38 1999 +++ editors/gxedit/Makefile Fri Apr 30 00:55:45 1999 @@ -13,7 +13,7 @@ MAINTAINER= dom@myrddin.demon.co.uk -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 USE_X_PREFIX= yes ALL_TARGET= gxedit --- /usr/ports.ref/emulators/xsystem35/Makefile Sat May 1 22:11:06 1999 +++ emulators/xsystem35/Makefile Sat May 1 21:36:41 1999 @@ -12,7 +12,7 @@ MAINTAINER= k5@respo.or.jp -LIB_DEPENDS+= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 USE_IMAKE= YES WRKSRC= ${WRKDIR}/${DISTNAME}/src --- /usr/ports.ref/games/garith/Makefile Tue Apr 13 16:43:17 1999 +++ games/garith/Makefile Fri May 14 11:11:03 1999 @@ -12,7 +12,7 @@ MAINTAINER= andy@icc.surw.chel.su -LIB_DEPENDS= gdk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 ALL_TARGET= USE_X_PREFIX= yes --- /usr/ports.ref/games/gtkballs/Makefile Sat May 1 22:11:38 1999 +++ games/gtkballs/Makefile Fri May 7 02:30:45 1999 @@ -15,7 +15,7 @@ MAINTAINER= andy@icc.surw.chel.su -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 MAN6= gtkballs.6 --- /usr/ports.ref/games/xqf/Makefile Sun May 9 22:43:48 1999 +++ games/xqf/Makefile Fri May 14 11:12:21 1999 @@ -13,7 +13,7 @@ MAINTAINER= steve@farrell.org RUN_DEPENDS= qstat:${PORTSDIR}/games/qstat -LIB_DEPENDS= gtk12:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 USE_GMAKE= yes --- /usr/ports.ref/graphics/gimp1-i18n/Makefile Fri Apr 2 15:20:03 1999 +++ graphics/gimp1-i18n/Makefile Fri Apr 30 01:52:08 1999 @@ -18,17 +18,19 @@ LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \ aa.1:${PORTSDIR}/graphics/aalib \ jpeg.9:${PORTSDIR}/graphics/jpeg \ - gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ + gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ mpeg.1:${PORTSDIR}/graphics/mpeg-lib \ png.3:${PORTSDIR}/graphics/png \ tiff.4:${PORTSDIR}/graphics/tiff34 +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + USE_X_PREFIX= yes GNU_CONFIGURE= yes USE_GMAKE= yes CONFIGURE_ARGS= --disable-perl CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - GTK_CONFIG="${X11BASE}/bin/gtk12-config" \ + GTK_CONFIG="${GTK_CONFIG}" \ LIBS="-L${LOCALBASE}/lib -lxpg4" \ INSTALL_SCRIPT='$${INSTALL} -m 755' --- /usr/ports.ref/graphics/gtksee/Makefile Thu May 6 10:25:00 1999 +++ graphics/gtksee/Makefile Thu May 6 10:51:03 1999 @@ -13,16 +13,18 @@ MAINTAINER= dirk@FreeBSD.ORG -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ jpeg.9:${PORTSDIR}/graphics/jpeg \ png.3:${PORTSDIR}/graphics/png \ tiff.4:${PORTSDIR}/graphics/tiff34 RUN_DEPENDS= bzip:${PORTSDIR}/archivers/bzip \ bzip2:${PORTSDIR}/archivers/bzip2 +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="${CFLAGS} -I${PREFIX}/include" \ - GTK_CONFIG="${X11BASE}/bin/gtk12-config" \ + GTK_CONFIG="${GTK_CONFIG}" \ LDFLAGS=-L${PREFIX}/lib .include --- /usr/ports.ref/graphics/sane/Makefile Sat May 22 14:15:18 1999 +++ graphics/sane/Makefile Sat May 22 15:50:12 1999 @@ -1,5 +1,5 @@ # New ports collection makefile for: sane -# Version required: 1.00 +# Version required: 1.0.1 # Date created: Sat Jul 19 16:23:10 MET DST 1997 # Whom: gary@hotlava.com # @@ -13,21 +13,23 @@ MAINTAINER= gary@hotlava.com -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ jpeg.9:${PORTSDIR}/graphics/jpeg +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + .include USE_GMAKE= yes -GNU_CONFIGURE= yes +USE_LIBTOOL= yes .if ${OSVERSION} < 300000 CONFIGURE_ENV= CPPFLAGS="${CFLAGS} -I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" \ - GTK_CONFIG="${X11BASE}/bin/gtk12-config" + GTK_CONFIG="${GTK_CONFIG}" .else CONFIGURE_ENV= CPPFLAGS="${CFLAGS} -I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib -lcam" \ - GTK_CONFIG="${X11BASE}/bin/gtk12-config" + GTK_CONFIG="${GTK_CONFIG}" .endif MAN1= scanimage.1 \ @@ -58,7 +60,6 @@ @${ECHO} "*** the GIMP and GTK packages/ports." post-install: - ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib @${CAT} ${PKGDIR}/MESSAGE .include --- /usr/ports.ref/graphics/sane/patches/patch-02 Sat May 22 14:15:19 1999 +++ graphics/sane/patches/patch-02 Sat May 22 15:47:08 1999 @@ -1,42 +0,0 @@ ---- ltconfig Sat Nov 21 19:53:55 1998 -+++ ltconfig.new Thu May 13 12:44:40 1999 -@@ -604,11 +604,11 @@ - $rm conftestdata - if ln -s X conftestdata 2>/dev/null; then - $rm conftestdata -- LN_S="ln -s" -+ LN_S="ln -sf" - else - LN_S=ln - fi -- if test "$LN_S" = "ln -s"; then -+ if test "$LN_S" = "ln -sf"; then - echo "$ac_t"yes 1>&6 - else - echo "$ac_t"no 1>&6 -@@ -1123,12 +1123,24 @@ - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done' - ;; - --freebsd2* | freebsd3*) -+freebsd2*) - version_type=sunos - library_names_spec='${libname}${release}.so.$versuffix $libname.so' - finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - ;; -+ -+freebsd3* | freebsd4*) -+ version_type=freebsd -+ library_names_spec='${libname}${release}.so.$versuffix $libname.so' -+ if [ $PORTOBJFORMAT = elf ]; then -+ finish_cmds='PATH="\$PATH:/sbin" OBJFORMAT="$PORTOBJFORMAT" ldconfig -m $libdir' -+ else -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' -+ fi -+ shlibpath_var=LD_LIBRARY_PATH -+ ;; -+ - - gnu*) - version_type=sunos --- /usr/ports.ref/graphics/sane/patches/patch-03 Sat May 22 14:15:19 1999 +++ graphics/sane/patches/patch-03 Sun May 23 00:47:11 1999 @@ -1,20 +0,0 @@ ---- ltmain.sh Mon Nov 2 21:05:05 1998 -+++ ltmain.sh.new Thu May 13 12:24:53 1999 -@@ -966,6 +966,17 @@ - major="$current" - versuffix="$current.$revision" - ;; -+ freebsd) -+ version_vars="$version_vars major versuffix" -+ major="$current" -+ if [ $PORTOBJFORMAT = elf ]; then -+ versuffix="$current"; -+ else -+ versuffix="$current.$revision"; -+ fi -+ ;; -+ -+ - - *) - $echo "$modename: unknown library version type \`$version_type'" 1>&2 --- /usr/ports.ref/graphics/sane/pkg/PLIST Sun Dec 6 11:37:29 1998 +++ graphics/sane/pkg/PLIST Sat May 22 22:39:18 1999 @@ -19,6 +19,7 @@ etc/sane.d/ricoh.conf etc/sane.d/s9036.conf etc/sane.d/saned.conf +etc/sane.d/sharp.conf etc/sane.d/snapscan.conf etc/sane.d/tamarack.conf etc/sane.d/umax.conf @@ -37,91 +38,72 @@ lib/libsane.so lib/libsane.so.1 lib/sane/libsane-abaton.a -lib/sane/libsane-abaton.la lib/sane/libsane-abaton.so lib/sane/libsane-abaton.so.1 lib/sane/libsane-agfafocus.a -lib/sane/libsane-agfafocus.la lib/sane/libsane-agfafocus.so lib/sane/libsane-agfafocus.so.1 lib/sane/libsane-apple.a -lib/sane/libsane-apple.la lib/sane/libsane-apple.so lib/sane/libsane-apple.so.1 lib/sane/libsane-artec.a -lib/sane/libsane-artec.la lib/sane/libsane-artec.so lib/sane/libsane-artec.so.1 lib/sane/libsane-canon.a -lib/sane/libsane-canon.la lib/sane/libsane-canon.so lib/sane/libsane-canon.so.1 lib/sane/libsane-coolscan.a -lib/sane/libsane-coolscan.la lib/sane/libsane-coolscan.so lib/sane/libsane-coolscan.so.1 lib/sane/libsane-dc210.a -lib/sane/libsane-dc210.la lib/sane/libsane-dc210.so lib/sane/libsane-dc210.so.1 lib/sane/libsane-dc25.a -lib/sane/libsane-dc25.la lib/sane/libsane-dc25.so lib/sane/libsane-dc25.so.1 lib/sane/libsane-dll.a -lib/sane/libsane-dll.la lib/sane/libsane-dll.so lib/sane/libsane-dll.so.1 lib/sane/libsane-dmc.a -lib/sane/libsane-dmc.la lib/sane/libsane-dmc.so lib/sane/libsane-dmc.so.1 lib/sane/libsane-epson.a -lib/sane/libsane-epson.la lib/sane/libsane-epson.so lib/sane/libsane-epson.so.1 lib/sane/libsane-hp.a -lib/sane/libsane-hp.la lib/sane/libsane-hp.so lib/sane/libsane-hp.so.1 lib/sane/libsane-microtek.a -lib/sane/libsane-microtek.la lib/sane/libsane-microtek.so lib/sane/libsane-microtek.so.1 lib/sane/libsane-microtek2.a -lib/sane/libsane-microtek2.la lib/sane/libsane-microtek2.so lib/sane/libsane-microtek2.so.1 lib/sane/libsane-mustek.a -lib/sane/libsane-mustek.la lib/sane/libsane-mustek.so lib/sane/libsane-mustek.so.1 lib/sane/libsane-net.a -lib/sane/libsane-net.la lib/sane/libsane-net.so lib/sane/libsane-net.so.1 lib/sane/libsane-pnm.a -lib/sane/libsane-pnm.la lib/sane/libsane-pnm.so lib/sane/libsane-pnm.so.1 lib/sane/libsane-ricoh.a -lib/sane/libsane-ricoh.la lib/sane/libsane-ricoh.so lib/sane/libsane-ricoh.so.1 lib/sane/libsane-s9036.a -lib/sane/libsane-s9036.la lib/sane/libsane-s9036.so lib/sane/libsane-s9036.so.1 +lib/sane/libsane-sharp.a +lib/sane/libsane-sharp.so +lib/sane/libsane-sharp.so.1 lib/sane/libsane-snapscan.a -lib/sane/libsane-snapscan.la lib/sane/libsane-snapscan.so lib/sane/libsane-snapscan.so.1 lib/sane/libsane-tamarack.a -lib/sane/libsane-tamarack.la lib/sane/libsane-tamarack.so lib/sane/libsane-tamarack.so.1 lib/sane/libsane-umax.a -lib/sane/libsane-umax.la lib/sane/libsane-umax.so lib/sane/libsane-umax.so.1 @exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %D/lib --- /usr/ports.ref/graphics/xsane/Makefile Thu May 13 15:57:52 1999 +++ graphics/xsane/Makefile Thu May 13 15:42:43 1999 @@ -13,20 +13,22 @@ MAINTAINER= domi@saargate.de -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ sane.1:${PORTSDIR}/graphics/sane \ jpeg.9:${PORTSDIR}/graphics/jpeg \ tiff.4:${PORTSDIR}/graphics/tiff34 \ png.3:${PORTSDIR}/graphics/png +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + USE_GMAKE= yes USE_X_PREFIX= yes GNU_CONFIGURE= yes MAN1= xsane.1 -CONFIGURE_ENV= CPPFLAGS="${CFLAGS} -I${LOCALBASE}/include" \ - GTK_CONFIG="${X11BASE}/bin/gtk12-config" +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + GTK_CONFIG="${GTK_CONFIG}" .include --- /usr/ports.ref/japanese/gicq/Makefile Wed Apr 7 16:30:53 1999 +++ japanese/gicq/Makefile Sun May 23 00:57:43 1999 @@ -18,14 +18,16 @@ MAINTAINER= flathill@FreeBSD.ORG -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ icq.0:${PORTSDIR}/japanese/libicq +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + USE_X_PREFIX= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-gnome --disable-nls -CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" \ - CFLAGS="${CFLAGS} -I${LOCALBASE}/include -L${LOCALBASE}/lib" \ - LIBS="-lxpg4" +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" \ + CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib" .include --- /usr/ports.ref/japanese/gtkicq/Makefile Tue May 11 03:46:30 1999 +++ japanese/gtkicq/Makefile Sat May 22 22:30:57 1999 @@ -17,17 +17,18 @@ MAINTAINER= stanaka@bb.mbn.or.jp -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 BUILD_DEPENDS= ${LOCALBASE}/lib/libjcode.a:${PORTSDIR}/japanese/libjcode \ ${LOCALBASE}/include/jlib.h:${PORTSDIR}/japanese/libjcode +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + USE_X_PREFIX= yes USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-gnome CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - GTK_CONFIG="${X11BASE}/bin/gtk12-config" \ - LIBS="-L${LOCALBASE}/lib -lxpg4" \ - INSTALL_SCRIPT='$${INSTALL} -m 755' + GTK_CONFIG="${GTK_CONFIG}" \ + LIBS="-L${LOCALBASE}/lib" .include --- /usr/ports.ref/math/geg/Makefile Thu Apr 22 14:49:30 1999 +++ math/geg/Makefile Fri Apr 30 01:57:11 1999 @@ -12,11 +12,10 @@ MAINTAINER= rom_glsa@ein-hashofet.co.il -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 USE_X_PREFIX= yes USE_GMAKE= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include" .include --- /usr/ports.ref/misc/gtkfind/Makefile Thu Apr 22 14:50:24 1999 +++ misc/gtkfind/Makefile Fri Apr 30 01:58:01 1999 @@ -12,7 +12,7 @@ MAINTAINER= billf@FreeBSD.org -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 MAN1= gtkfind.1 mktmp.1 --- /usr/ports.ref/net/IglooFTP/Makefile Fri May 7 19:43:08 1999 +++ net/IglooFTP/Makefile Sat May 22 22:32:02 1999 @@ -15,11 +15,8 @@ MAINTAINER= andy@icc.surw.chel.su -LIB_DEPENDS= gdk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ - glib12:${PORTSDIR}/devel/glib12 \ - gmodule12:${PORTSDIR}/devel/glib12 \ - gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ - intl:${PORTSDIR}/devel/gettext +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ + intl.1:${PORTSDIR}/devel/gettext USE_X_PREFIX= yes --- /usr/ports.ref/net/ethereal/Makefile Thu Apr 22 14:51:26 1999 +++ net/ethereal/Makefile Fri Apr 30 01:59:59 1999 @@ -13,12 +13,13 @@ MAINTAINER= billf@FreeBSD.ORG -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 + +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config USE_X_PREFIX= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" \ - GLIB_CONFIG="${LOCALBASE}/bin/glib12-config" +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" MAN1= ethereal.1 --- /usr/ports.ref/net/gaim/Makefile Thu May 6 10:32:32 1999 +++ net/gaim/Makefile Mon May 10 14:45:08 1999 @@ -16,15 +16,17 @@ MAINTAINER= jim@phrantic.phear.net -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ - glib12.1:${PORTSDIR}/devel/glib12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ + glib12.2:${PORTSDIR}/devel/glib12 + +GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config GNU_CONFIGURE= yes USE_GMAKE= yes USE_X_PREFIX= yes - -CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" \ - GLIB_CONFIG="${LOCALBASE}/bin/glib12-config" +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" \ + GLIB_CONFIG="${GLIB_CONFIG}" post-patch: ${CP} ${DISTDIR}/logo.xpm.gz ${WRKSRC}/pixmaps --- /usr/ports.ref/net/gftp/Makefile Tue May 18 00:03:26 1999 +++ net/gftp/Makefile Tue May 18 00:32:06 1999 @@ -12,7 +12,7 @@ MAINTAINER= dmarion@open.hr -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 USE_AUTOCONF= yes USE_X_PREFIX= yes --- /usr/ports.ref/net/gftp/patches/patch-aa Sat Apr 3 03:38:52 1999 +++ net/gftp/patches/patch-aa Mon May 10 16:25:39 1999 @@ -1,15 +1,16 @@ ---- configure.in.orig Fri Apr 2 13:12:15 1999 -+++ configure.in Fri Apr 2 13:12:21 1999 -@@ -25,7 +25,7 @@ +--- configure.in.orig Wed Mar 31 07:43:08 1999 ++++ configure.in Mon May 10 15:23:35 1999 +@@ -25,7 +25,8 @@ AC_CHECK_FUNCS(getcwd mkdir rmdir select socket strstr strtol uname) dnl Checks for libraries. -AC_CHECK_LIB(pthread, pthread_create, [], -+AC_CHECK_LIB(c_r, pthread_create, [], ++AC_CHECK_LIB(c_r, pthread_create, CFLAGS="-D_THREAD_SAFE $CFLAGS" ++ LIBS="$LIBS -pthread", [echo ; echo "Error: Cannot find the pthread libraries. If you don't have them installed," ; echo "your X libraries probably aren't thread safe either. You can download the" ; -@@ -36,7 +36,7 @@ +@@ -36,7 +37,7 @@ exit]) dnl Checks for gtk-config @@ -18,7 +19,7 @@ if test "$GTK_CONFIG" = "no"; then echo ; echo "Error: Cannot find gtk-config. Do you have gtk installed? You can download it" ; -@@ -45,9 +45,9 @@ +@@ -45,9 +46,9 @@ echo ; exit else --- /usr/ports.ref/net/gftp/patches/patch-ab Tue May 18 00:03:27 1999 +++ net/gftp/patches/patch-ab Tue May 18 00:55:34 1999 @@ -5,7 +5,7 @@ INSTALL=@INSTALL@ MACHINE=`uname -m`-`uname -p`-`uname -s` -CFLAGS=@CFLAGS@ -Wall -D_REENTRANT -DSHARE_DIR=\"$(SHARE_DIR)\" -+CFLAGS=@CFLAGS@ -pthread -DSHARE_DIR=\"$(SHARE_DIR)\" ++CFLAGS=@CFLAGS@ -DSHARE_DIR=\"$(SHARE_DIR)\" LIBS=@LIBS@ EXE=gftp OBJS=bookmarks.o cache.o chmod_dialog.o config_file.o \ --- /usr/ports.ref/net/ggsd/Makefile Thu Apr 22 14:51:33 1999 +++ net/ggsd/Makefile Wed May 5 02:04:53 1999 @@ -16,7 +16,7 @@ MAINTAINER= dima@chg.ru -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 WRKSRC= ${WRKDIR}/GGSD EXTRACT_CMD= ${TAR} --- /usr/ports.ref/net/gicq/Makefile Sat May 8 16:31:30 1999 +++ net/gicq/Makefile Mon May 10 14:51:45 1999 @@ -13,13 +13,16 @@ MAINTAINER= flathill@FreeBSD.ORG -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ icq.0:${PORTSDIR}/net/libicq +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + USE_X_PREFIX= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-gnome --disable-nls -CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" \ - CFLAGS="${CFLAGS} -I${LOCALBASE}/include -L${LOCALBASE}/lib" +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + GTK_CONFIG="${GTK_CONFIG}" \ + LIBS="-L${LOCALBASE}/lib" .include --- /usr/ports.ref/net/gicq/pkg/PLIST Wed Mar 17 12:51:06 1999 +++ net/gicq/pkg/PLIST Mon May 10 14:54:57 1999 @@ -1,6 +1,6 @@ bin/gicq +share/gnome/apps/Applications/gicq.desktop share/gnome/help/gicq/C/index.html share/gnome/help/gicq/C/topic.dat @dirrm share/gnome/help/gicq/C @dirrm share/gnome/help/gicq -share/gnome/apps/Applications/gicq.desktop --- /usr/ports.ref/net/irssi/Makefile Sun May 9 22:53:54 1999 +++ net/irssi/Makefile Sun May 9 23:19:14 1999 @@ -12,7 +12,9 @@ MAINTAINER= jim@phrantic.phear.net -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 + +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config USE_BZIP2= yes USE_GMAKE= yes @@ -22,8 +24,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-gnome --without-dock --without-pthreads \ --without-socks --with-textui=none -CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" \ - GLIB_CONFIG="${LOCALBASE}/bin/glib12-config" +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" post-install: @${ECHO} " " --- /usr/ports.ref/net/mtr/Makefile Mon Apr 19 10:52:04 1999 +++ net/mtr/Makefile Fri Apr 30 02:05:12 1999 @@ -26,7 +26,7 @@ CONFIGURE_ARGS=--with-gtk-prefix=/nopath .else USE_XLIB= yes -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" .endif --- /usr/ports.ref/net/wxftp/Makefile Wed Apr 21 10:46:26 1999 +++ net/wxftp/Makefile Wed May 5 01:38:07 1999 @@ -16,7 +16,7 @@ MAINTAINER= kris@FreeBSD.ORG -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 WRKSRC= ${WRKDIR}/${PKGNAME}/src USE_GMAKE= yes --- /usr/ports.ref/net/xchat/Makefile Sun May 9 22:55:06 1999 +++ net/xchat/Makefile Sun May 9 23:21:35 1999 @@ -14,15 +14,16 @@ MAINTAINER= jim@phrantic.phear.net -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + +USE_X_PREFIX= yes USE_GMAKE= yes USE_PERL5= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-gnome -CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" - -USE_X_PREFIX= yes +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" post-install: strip ${PREFIX}/bin/xchat --- /usr/ports.ref/net/xwhois/Makefile Mon Apr 26 11:16:40 1999 +++ net/xwhois/Makefile Wed May 5 02:03:18 1999 @@ -17,11 +17,13 @@ MAINTAINER= kris@FreeBSD.ORG -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 + +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config USE_X_PREFIX= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= GTK_CONFIG=${X11BASE}/bin/gtk12-config +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/xwhois ${PREFIX}/bin --- /usr/ports.ref/print/pdq/Makefile Mon May 17 12:32:38 1999 +++ print/pdq/Makefile Sat May 22 22:36:20 1999 @@ -13,11 +13,14 @@ MAINTAINER= yinjieh@csie.nctu.edu.tw -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 + +GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config GNU_CONFIGURE= yes -CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" \ - GLIB_CONFIG="${LOCALBASE}/bin/glib12-config" +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" \ + GLIB_CONFIG="${GLIB_CONFIG}" MAN1= lpd_cancel.1 lpd_print.1 lpd_status.1 pdq.1 xpdq.1 MAN5= printrc.5 @@ -29,11 +32,6 @@ strip ${PREFIX}/bin/lpd_cancel strip ${PREFIX}/bin/lpd_print strip ${PREFIX}/bin/lpd_status - @${ECHO} '*******************************************************' - @${ECHO} '* *' - @${ECHO} '* Please copy /usr/local/etc/printrc.sample to *' - @${ECHO} '* /usr/local/etc/printrc by yourself, thanks. *' - @${ECHO} '* *' - @${ECHO} '*******************************************************' + @${CAT} pkg/MESSAGE .include --- /usr/ports.ref/print/pdq/pkg/MESSAGE Thu Jan 1 02:00:00 1970 +++ print/pdq/pkg/MESSAGE Sat May 22 22:35:56 1999 @@ -0,0 +1,6 @@ +******************************************************* +* * +* Please copy /usr/local/etc/printrc.sample to * +* /usr/local/etc/printrc by yourself, thanks. * +* * +******************************************************* --- /usr/ports.ref/security/gtkportscan/Makefile Thu Mar 18 10:53:23 1999 +++ security/gtkportscan/Makefile Wed May 5 02:26:40 1999 @@ -12,7 +12,7 @@ MAINTAINER= cpiazza@home.net -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 WRKSRC= ${WRKDIR}/gtkscan --- /usr/ports.ref/security/gtkportscan/patches/patch-aa Thu Mar 18 10:53:23 1999 +++ security/gtkportscan/patches/patch-aa Wed May 5 02:28:54 1999 @@ -18,13 +18,14 @@ install: - cp portscan /usr/local/bin - cp gtkportscan /usr/X11/bin -+ ${BSD_INSTALL_PROGRAM} portscan /usr/local/bin -+ ${BSD_INSTALL_PROGRAM} gtkportscan /usr/local/bin ++ ${BSD_INSTALL_PROGRAM} portscan ${PREFIX}/bin ++ ${BSD_INSTALL_PROGRAM} gtkportscan ${PREFIX}/bin clean: rm -f portscan gtkportscan uninstall: - rm -f /usr/local/bin/portscan +- rm -f /usr/local/bin/portscan ++ rm -f ${PREFIX}/bin/portscan - rm -f /usr/X11/bin/gtkportscan -+ rm -f /usr/local/bin/gtkportscan ++ rm -f ${PREFIX}/bin/gtkportscan --- /usr/ports.ref/security/nessus/Makefile Mon May 17 12:26:38 1999 +++ security/nessus/Makefile Sat May 22 23:03:41 1999 @@ -22,10 +22,12 @@ MAINTAINER= anders@fix.no -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 + +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config GNU_CONFIGURE= yes -CONFIGURE_ENV= GTKCONFIG="${X11BASE}/bin/gtk12-config" +CONFIGURE_ENV= GTKCONFIG="${GTK_CONFIG}" MAN1= nessus.1 post-install: --- /usr/ports.ref/sysutils/xlogmaster/Makefile Mon Apr 19 10:55:53 1999 +++ sysutils/xlogmaster/Makefile Fri May 14 02:07:15 1999 @@ -16,20 +16,19 @@ MAINTAINER= aw1@stade.co.uk -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 + +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config NO_PACKAGE= ignores CFLAGS GNU_CONFIGURE= yes -CONFIGURE_ENV= CFLAGS="${CFLAGS}" CXXFLAGS="${CFLAGS}" GTK_CONFIG="${X11BASE}/bin/gtk12-config" +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" USE_XLIB= yes USE_GMAKE= yes MAN1= xlogmaster.1 post-install: - @if [ ! -f ${PREFIX}/info/dir ]; then \ - ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ - fi @install-info ${PREFIX}/info/xlogmaster.info ${PREFIX}/info/dir ${INSTALL_DATA} ${FILESDIR}/xlogmasterrc ${PREFIX}/etc/xlogmaster --- /usr/ports.ref/sysutils/xlogmaster/pkg/PLIST Mon Apr 19 10:55:53 1999 +++ sysutils/xlogmaster/pkg/PLIST Fri May 14 03:17:35 1999 @@ -30,7 +30,6 @@ etc/xlogmaster/xlogmasterrc @unexec install-info --delete %D/info/xlogmaster.info %D/info/dir info/xlogmaster.info -@exec [ -f %D/info/dir ] || sed -ne '1,/Menu:/p' /usr/share/info/dir > %D/info/dir @exec install-info %D/info/xlogmaster.info %D/info/dir @dirrm etc/xlogmaster/database @dirrm etc/xlogmaster/output-plugins --- /usr/ports.ref/sysutils/xwatch/Makefile Thu Apr 22 14:55:49 1999 +++ sysutils/xwatch/Makefile Wed May 5 02:39:35 1999 @@ -12,11 +12,13 @@ MAINTAINER= mph@freebsd.org -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 + +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config USE_XLIB= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" post-install: .if !defined(NOPORTDOCS) --- /usr/ports.ref/x11-clocks/asclock-gtk/Makefile Sat May 8 16:09:31 1999 +++ x11-clocks/asclock-gtk/Makefile Sat May 22 22:45:41 1999 @@ -13,7 +13,7 @@ MAINTAINER= kuriyama@FreeBSD.ORG -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 HAS_CONFIGURE= YES WRKSRC= ${WRKDIR}/asclock-gtk --- /usr/ports.ref/x11-fm/dfm/Makefile Sat May 1 22:29:17 1999 +++ x11-fm/dfm/Makefile Fri May 7 02:15:26 1999 @@ -13,17 +13,14 @@ MAINTAINER= andy@icc.surw.chel.su LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \ - intl.1:${PORTSDIR}/devel/gettext \ - gmodule12.1:${PORTSDIR}/devel/glib12 \ - glib12.1:${PORTSDIR}/devel/glib12 \ - gdk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ - gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 + gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="${CFLAGS} -I${X11BASE}/include" GTK_CONFIG="${X11BASE}/bin/gtk12-config" +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config -# depends on xforms -ONLY_FOR_ARCHS= i386 +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + GTK_CONFIG="${GTK_CONFIG}" \ + LIBS="-L${LOCALBASE}/lib" USE_X_PREFIX= yes --- /usr/ports.ref/x11-toolkits/gtk--/Makefile Thu May 13 16:12:34 1999 +++ x11-toolkits/gtk--/Makefile Sun May 23 01:02:45 1999 @@ -13,15 +13,25 @@ MAINTAINER= nacai@iname.com -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + +.include + +.if ${OSVERSION} < 400004 +BUILD_DEPENDS= eg++:${PORTSDIR}/lang/egcs +CC= egcc +CXX= eg++ +.endif + USE_X_PREFIX= yes USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-static=yes \ --without-gnome -CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" MAN3= G_IntList.3 G_IntList_Iterator.3 G_List.3 G_List_Cpp_Iterator.3 \ G_List_Iterator.3 G_SList_Iterator.3 GtkBase.3 GtkBaseClass.3 \ @@ -58,4 +68,4 @@ ToolbarConnector.3 ToolbarConnectorBase.3 Toolbar_Child.3 \ _gtk_string.3 gtkmm_add_signal_class.3 -.include +.include --- /usr/ports.ref/x11-toolkits/gtk12/Makefile Mon May 3 14:30:36 1999 +++ x11-toolkits/gtk12/Makefile Sat May 15 18:44:43 1999 @@ -1,13 +1,13 @@ # New ports collection makefile for: gtk12 -# Version required: 1.2.2 +# Version required: 1.2.3 # Date Created: 28 Sep 1997 # Whom: Vanilla I. Shu # # $Id: Makefile,v 1.49 1999/05/02 05:21:19 kuriyama Exp $ # -DISTNAME= gtk+-1.2.2 -PKGNAME= gtk-1.2.2 +DISTNAME= gtk+-1.2.3 +PKGNAME= gtk-1.2.3 CATEGORIES= x11-toolkits MASTER_SITES= ftp://ftp.gimp.org/pub/gtk/v1.2/ \ ftp://ftp.cs.umn.edu/pub/gimp/gtk/v1.2/ \ @@ -15,15 +15,18 @@ MAINTAINER= vanilla@FreeBSD.ORG -LIB_DEPENDS= glib12.1:${PORTSDIR}/devel/glib12 \ +LIB_DEPENDS= glib12.2:${PORTSDIR}/devel/glib12 \ intl.1:${PORTSDIR}/devel/gettext +GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config + USE_X_PREFIX= yes USE_PERL5= yes -GNU_CONFIGURE= yes +USE_LIBTOOL= yes CONFIGURE_ARGS= --includedir=${PREFIX}/include/gtk12 CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - GLIB_CONFIG="${LOCALBASE}/bin/glib12-config" \ + X_CFLAGS="-I${LOCALBASE}/include" \ + GLIB_CONFIG="${GLIB_CONFIG}" \ LIBS="-L${LOCALBASE}/lib" MAN1= gtk12-config.1 @@ -33,16 +36,5 @@ post-install: @${MKDIR} ${PREFIX}/share/themes/engines - @if [ ! -f ${PREFIX}/share/info ]; then \ - ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ - fi - @${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib - @${ECHO} '*********************************************************' - @${ECHO} '* *' - @${ECHO} '* If you want to use autoconf with gtk, *' - @${ECHO} '* Please copy gtk.m4 to /usr/local/share/aclocal *' - @${ECHO} '* by yourself, thanks. *' - @${ECHO} '* *' - @${ECHO} '*********************************************************' .include --- /usr/ports.ref/x11-toolkits/gtk12/files/md5 Mon May 3 14:30:36 1999 +++ x11-toolkits/gtk12/files/md5 Sat May 15 18:49:50 1999 @@ -1 +1 @@ -MD5 (gtk+-1.2.2.tar.gz) = 2776dca7d9f907b7b851ac9a4d4fb304 +MD5 (gtk+-1.2.3.tar.gz) = 51d880fc05a99861be4abe161adaaddd --- /usr/ports.ref/x11-toolkits/gtk12/patches/patch-aa Sat Mar 27 13:55:44 1999 +++ x11-toolkits/gtk12/patches/patch-aa Sun May 23 00:55:59 1999 @@ -1,36 +1,36 @@ ---- Makefile.in.orig Sun Jan 31 23:26:39 1999 -+++ Makefile.in Sun Jan 31 23:31:06 1999 -@@ -126,7 +126,7 @@ +--- Makefile.in.orig Tue May 11 06:11:20 1999 ++++ Makefile.in Mon May 17 22:58:32 1999 +@@ -127,7 +127,7 @@ SRC_SUBDIRS = gdk gtk SUBDIRS = po $(SRC_SUBDIRS) docs -bin_SCRIPTS = gtk-config -+bin_SCRIPTS = gtk12-config ++bin_SCRIPTS = gtk@LT_RELEASE@-config EXTRA_DIST = HACKING gtk+.spec.in gtk.m4 makecopyright TODO NEWS.pre-1-0 ChangeLog.pre-1-0 README.cvs-commits intl/libgettext.h intl/po2tbl.sed.in examples/aspectframe/Makefile examples/aspectframe/aspectframe.c examples/Makefile examples/README.1ST examples/extract.awk examples/extract.sh examples/base/Makefile examples/base/base.c examples/buttons/Makefile examples/buttons/buttons.c examples/buttons/info.xpm examples/calendar/Makefile examples/calendar/gcalendar.c examples/clist/Makefile examples/clist/clist.c examples/entry/Makefile examples/entry/entry.c examples/eventbox/Makefile examples/eventbox/eventbox.c examples/filesel/Makefile examples/filesel/filesel.c examples/gtkdial/Makefile examples/gtkdial/dial_test.c examples/gtkdial/gtkdial.c examples/gtkdial/gtkdial.h examples/helloworld/Makefile examples/helloworld/helloworld.c examples/helloworld2/Makefile examples/helloworld2/hello! world2.c examples/list/Makefile examples/list/list.c examples/menu/Makefile examples/menu/menu.c examples/menu/itemfactory.c examples/notebook/Makefile examples/notebook/notebook.c examples/packbox/Makefile examples/packbox/packbox.c examples/packer/Makefile examples/packer/pack.c examples/paned/Makefile examples/paned/paned.c examples/pixmap/Makefile examples/pixmap/pixmap.c examples/progressbar/Makefile examples/progressbar/progressbar.c examples/radiobuttons/Makefile examples/radiobuttons/radiobuttons.c examples/rangewidgets/Makefile examples/rangewidgets/rangewidgets.c examples/rulers/Makefile examples/rulers/rulers.c examples/scribble-simple/Makefile examples/scribble-simple/scribble-simple.c examples/scrolledwin/Makefile examples/scrolledwin/scrolledwin.c examples/selection/Makefile examples/selection/gettargets.c examples/selection/setselection.c examples/statusbar/Makefile examples/statusbar/statusbar.c! examples/table/Makefile examples/table/table.c examples/text/Ma kefile examples/text/text.c examples/tictactoe/Makefile examples/tictactoe/tictactoe.c examples/tictactoe/tictactoe.h examples/tictactoe/ttt_test.c examples/tree/Makefile examples/tree/tree.c examples/wheelbarrow/Makefile examples/wheelbarrow/wheelbarrow.c examples/fixed/fixed.c examples/fixed/Makefile examples/frame/frame.c examples/frame/Makefile examples/spinbutton/spinbutton.c examples/spinbutton/Makefile examples/find-examples.sh -@@ -136,7 +136,7 @@ +@@ -137,7 +137,7 @@ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = config.h -CONFIG_CLEAN_FILES = gtk+.spec gtk-config -+CONFIG_CLEAN_FILES = gtk-config ++CONFIG_CLEAN_FILES = gtk+.spec gtk@LT_RELEASE@-config SCRIPTS = $(bin_SCRIPTS) DATA = $(m4data_DATA) -@@ -198,7 +198,10 @@ +@@ -199,7 +199,10 @@ maintainer-clean-hdr: gtk+.spec: $(top_builddir)/config.status gtk+.spec.in cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status -gtk-config: $(top_builddir)/config.status gtk-config.in -+gtk12-config.in: gtk-config.in -+ cp gtk-config.in gtk12-config.in ++gtk@LT_RELEASE@-config.in: gtk-config.in ++ cp gtk-config.in gtk@LT_RELEASE@-config.in + -+gtk12-config: $(top_builddir)/config.status gtk12-config.in ++gtk@LT_RELEASE@-config: $(top_builddir)/config.status gtk@LT_RELEASE@-config.in cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status install-binSCRIPTS: $(bin_SCRIPTS) -@@ -407,7 +410,6 @@ +@@ -408,7 +411,6 @@ || exit 1; \ fi; \ done @@ -38,76 +38,17 @@ info-am: info: info-recursive dvi-am: -@@ -422,13 +424,13 @@ - install-exec-am: install-binSCRIPTS - install-exec: install-exec-recursive - --install-data-am: install-m4dataDATA -+install-data-am: - install-data: install-data-recursive - - install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - install: install-recursive --uninstall-am: uninstall-binSCRIPTS uninstall-m4dataDATA -+uninstall-am: uninstall-binSCRIPTS - uninstall: uninstall-recursive - all-am: Makefile $(SCRIPTS) $(DATA) config.h - all-redirect: all-recursive-am ---- gdk/Makefile.in.orig Sun Jan 31 23:33:26 1999 -+++ gdk/Makefile.in Sun Jan 31 23:35:01 1999 -@@ -125,7 +125,7 @@ - - gdkincludedir = $(includedir)/gdk - --lib_LTLIBRARIES = libgdk.la -+lib_LTLIBRARIES = libgdk12.la - - INCLUDES = -DG_LOG_DOMAIN=\"Gdk\" -I$(top_srcdir) @GTK_DEBUG_FLAGS@ @GTK_XIM_FLAGS@ @GTK_LOCALE_FLAGS@ @GLIB_CFLAGS@ @x_cflags@ - -@@ -139,7 +139,7 @@ - LDADDS = @x_ldflags@ @x_libs@ @GLIB_LIBS@ -lm - - --libgdk_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) @GLIB_DEPLIBS@ @x_ldflags@ @x_libs@ -lm -+libgdk_la_LDFLAGS = -version-info 1:0:0 @GLIB_DEPLIBS@ @x_ldflags@ @x_libs@ -lm - - - EXTRA_PROGRAMS = gxid -@@ -265,7 +265,7 @@ - - maintainer-clean-libtool: - --libgdk.la: $(libgdk_la_OBJECTS) $(libgdk_la_DEPENDENCIES) -+libgdk12.la: $(libgdk_la_OBJECTS) $(libgdk_la_DEPENDENCIES) - $(LINK) -rpath $(libdir) $(libgdk_la_LDFLAGS) $(libgdk_la_OBJECTS) $(libgdk_la_LIBADD) $(LIBS) - - mostlyclean-binPROGRAMS: ---- gtk/Makefile.in.orig Sun Jan 31 23:35:10 1999 -+++ gtk/Makefile.in Sun Jan 31 23:37:31 1999 -@@ -127,7 +127,7 @@ - - gtkincludedir = $(includedir)/gtk - --lib_LTLIBRARIES = libgtk.la -+lib_LTLIBRARIES = libgtk12.la - - static_SOURCES = gtkaccelgroup.c gtkaccellabel.c gtkadjustment.c gtkalignment.c gtkarg.c gtkarrow.c gtkaspectframe.c gtkbin.c gtkbindings.c gtkbbox.c gtkbox.c gtkbutton.c gtkcalendar.c gtkcheckbutton.c gtkcheckmenuitem.c gtkclist.c gtkcolorsel.c gtkcombo.c gtkcontainer.c gtkctree.c gtkcurve.c gtkdata.c gtkdialog.c gtkdnd.c gtkdrawingarea.c gtkeditable.c gtkentry.c gtkeventbox.c gtkfilesel.c gtkfixed.c gtkfontsel.c gtkframe.c gtkgamma.c gtkgc.c gtkhandlebox.c gtkhbbox.c gtkhbox.c gtkhpaned.c gtkhruler.c gtkhscale.c gtkhscrollbar.c gtkhseparator.c gtkimage.c gtkinputdialog.c gtkintl.h gtkinvisible.c gtkitem.c gtkitemfactory.c gtklabel.c gtklayout.c gtklist.c gtklistitem.c gtkmain.c gtkmenu.c gtkmenubar.c gtkmenufactory.c gtkmenuitem.c gtkmenushell.c gtkmisc.c gtknotebook.c gtkobject.c gtkoptionmenu.c gtkpacker.c gtkpaned.c gtkpixmap.c! gtkplug.c gtkpreview.c gtkprogress.c gtkprogressbar.c gtkradiobutton.c gtkradiomenuitem.c gtkrange.c gtkrc.c gtkruler.c gtkscale.c gtkscrollbar.c gtkscrolledwindow.c gtkselection.c gtkseparator.c gtksignal.c gtksocket.c gtkspinbutton.c gtkstyle.c gtkstatusbar.c gtktable.c gtktearoffmenuitem.c gtktext.c gtkthemes.c gtktipsquery.c gtktogglebutton.c gtktoolbar.c gtktooltips.c gtktree.c gtktreeitem.c gtktypeutils.c gtkvbbox.c gtkvbox.c gtkviewport.c gtkvpaned.c gtkvruler.c gtkvscale.c gtkvscrollbar.c gtkvseparator.c gtkwidget.c gtkwindow.c fnmatch.c fnmatch.h - -@@ -152,26 +152,26 @@ - gdk_headers = ../gdk/gdktypes.h ../gdk/gdkrgb.h - - --libgtk_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) @GLIB_DEPLIBS@ @x_ldflags@ @x_libs@ -lm -+libgtk_la_LDFLAGS = -version-info 1:0:0 @GLIB_DEPLIBS@ @x_ldflags@ @x_libs@ -lm +--- gtk/Makefile.in.orig Tue May 11 06:11:28 1999 ++++ gtk/Makefile.in Mon May 17 22:58:32 1999 +@@ -157,13 +157,13 @@ # $(top_builddir)/gdk/libgdk.la -gtkconfdir = $(sysconfdir)/gtk +gtkconfdir = $(datadir)/themes/Default/gtk - gtkconf_DATA = gtkrc gtkrc.ja gtkrc.ko gtkrc.ru + gtkconf_DATA = gtkrc.ja gtkrc.ko gtkrc.ru gtkrc.iso-8859-2 - EXTRA_DIST = line-arrow.xbm line-wrap.xbm testgtk.1 testgtkrc testgtkrc2 gtkfeatures.h.in makeenums.pl makeenums.awk maketypes.awk makeenums.h gtkargcollector.c gtktypebuiltins_vars.c gtktypebuiltins_ids.c gtktypebuiltins_evals.c gtk-boxed.defs gtk.defs genmarshal.pl gtkmarshal.list check-y.xpm check-n.xpm test.xpm marble.xpm 3DRings.xpm FilesQueue.xpm Modeller.xpm tree_plus.xpm tree_minus.xpm tree_plus.xbm tree_minus.xbm circles.xbm gtkrc.ja gtkrc.ko gtkrc.ru + EXTRA_DIST = line-arrow.xbm line-wrap.xbm testgtk.1 testgtkrc testgtkrc2 gtkfeatures.h.in makeenums.pl makeenums.awk maketypes.awk makeenums.h gtkargcollector.c gtktypebuiltins_vars.c gtktypebuiltins_ids.c gtktypebuiltins_evals.c gtk-boxed.defs gtk.defs genmarshal.pl gtkmarshal.list check-y.xpm check-n.xpm test.xpm marble.xpm 3DRings.xpm FilesQueue.xpm Modeller.xpm tree_plus.xpm tree_minus.xpm tree_plus.xbm tree_minus.xbm circles.xbm gtkrc.iso-8859-2 gtkrc.ja gtkrc.ko gtkrc.ru -INCLUDES = -DGTK_DISABLE_COMPAT_H -DG_LOG_DOMAIN=\"Gtk\" -DGTK_EXE_PREFIX=\"$(exec_prefix)\" -DGTK_DATA_PREFIX=\"$(prefix)\" -DGTK_SYSCONFDIR=\"$(sysconfdir)\" -DGTK_LOCALEDIR=\"$(gtklocaledir)\" -I$(top_srcdir) @GTK_DEBUG_FLAGS@ @GTK_XIM_FLAGS@ @GTK_LOCALE_FLAGS@ @GLIB_CFLAGS@ @x_cflags@ @@ -115,27 +56,7 @@ noinst_PROGRAMS = testgtk testinput testselection testrgb testdnd simple - # testthreads - --DEPS = libgtk.la $(top_builddir)/gdk/libgdk.la -+DEPS = libgtk12.la $(top_builddir)/gdk/libgdk12.la - - --LDADDS = libgtk.la $(top_builddir)/gdk/libgdk.la @x_ldflags@ @x_libs@ @GLIB_LIBS@ -lm -+LDADDS = libgtk12.la $(top_builddir)/gdk/libgdk12.la @x_ldflags@ @x_libs@ @GLIB_LIBS@ -lm - - - testgtk_DEPENDENCIES = $(DEPS) -@@ -342,7 +342,7 @@ - - maintainer-clean-libtool: - --libgtk.la: $(libgtk_la_OBJECTS) $(libgtk_la_DEPENDENCIES) -+libgtk12.la: $(libgtk_la_OBJECTS) $(libgtk_la_DEPENDENCIES) - $(LINK) -rpath $(libdir) $(libgtk_la_LDFLAGS) $(libgtk_la_OBJECTS) $(libgtk_la_LIBADD) $(LIBS) - - mostlyclean-noinstPROGRAMS: -@@ -478,7 +478,7 @@ +@@ -479,7 +479,7 @@ uninstall-am: uninstall-libLTLIBRARIES uninstall-gtkconfDATA \ uninstall-gtkincludeHEADERS uninstall-local uninstall: uninstall-am @@ -144,27 +65,8 @@ all-redirect: all-am install-strip: $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install -@@ -599,17 +599,11 @@ - && echo timestamp > stamp-m - - gtkrc: -- : -- --# We create a dummy theme for the default GTK+ theme -+ echo "# Empty gtkrc for default theme" > gtkrc - - install-data-local: -- $(mkinstalldirs) $(DESTDIR)$(datadir)/themes/Default/gtk -- echo "# Empty gtkrc for default theme" > \ -- $(DESTDIR)$(datadir)/themes/Default/gtk/gtkrc - - uninstall-local: -- rm -f $(DESTDIR)$(datadir)/themes/Default/gtkrc - - .PHONY: files test test-debug - ---- docs/Makefile.in.orig Thu Feb 25 22:17:02 1999 -+++ docs/Makefile.in Tue Mar 2 11:39:50 1999 +--- docs/Makefile.in.orig Tue May 11 06:13:29 1999 ++++ docs/Makefile.in Mon May 17 22:58:33 1999 @@ -99,7 +99,7 @@ LT_RELEASE = @LT_RELEASE@ LT_REVISION = @LT_REVISION@ @@ -173,31 +75,31 @@ +MAKEINFO = @MAKEINFO@ --no-split MKINSTALLDIRS = @MKINSTALLDIRS@ NM = @NM@ - PACKAGE = @PACKAGE@ -@@ -125,7 +125,7 @@ + OBJDUMP = @OBJDUMP@ +@@ -126,7 +126,7 @@ info_TEXINFOS = gdk.texi gtk.texi -man_MANS = gtk-config.1 -+man_MANS = gtk12-config.1 ++man_MANS = gtk@LT_RELEASE@-config.1 TUTORIAL_FR_FILES = html/gtk_tut_fr-1.html html/gtk_tut_fr-2.html html/gtk_tut_fr-3.html html/gtk_tut_fr-4.html html/gtk_tut_fr-5.html html/gtk_tut_fr-6.html html/gtk_tut_fr-7.html html/gtk_tut_fr-8.html html/gtk_tut_fr-9.html html/gtk_tut_fr-10.html html/gtk_tut_fr-11.html html/gtk_tut_fr-12.html html/gtk_tut_fr-13.html html/gtk_tut_fr-14.html html/gtk_tut_fr-15.html html/gtk_tut_fr-16.html html/gtk_tut_fr-17.html html/gtk_tut_fr-18.html html/gtk_tut_fr-19.html html/gtk_tut_fr-20.html html/gtk_tut_fr-21.html html/gtk_tut_fr-22.html html/gtk_tut_fr-23.html html/gtk_tut_fr-24.html html/gtk_tut_fr.html text/gtk_tut_fr.txt -@@ -139,7 +139,7 @@ +@@ -140,7 +140,7 @@ FAQ_FILES = html/gtkfaq.html html/gtkfaq-1.html html/gtkfaq-2.html html/gtkfaq-3.html html/gtkfaq-4.html html/gtkfaq-5.html html/gtkfaq-6.html html/gtkfaq-7.html text/gtkfaq.txt -EXTRA_DIST = gtk-config.1.in texinfo.tex macros.texi gtkdocs_fix gtkfaq.sgml gtk-config.txt gtk_tut.sgml gtk_tut_it.sgml gtk_tut_fr.sgml debugging.txt developers.txt refcounting.txt styles.txt text_widget.txt widget_system.txt gtk_tut_packbox1.gif gtk_tut_packbox2.gif html/gtk_tut_table.gif html/gtk_tut_packbox1.gif html/gtk_tut_packbox2.gif gtk_tut_table.gif html/gdk.html html/gdk_toc.html html/gtk.html html/gtk_toc.html $(TUTORIAL_FILES) $(TUTORIAL_FR_FILES) $(TUTORIAL_IT_FILES) $(FAQ_FILES) -+EXTRA_DIST = gtk12-config.1.in texinfo.tex macros.texi gtkdocs_fix gtkfaq.sgml gtk-config.txt gtk_tut.sgml gtk_tut_it.sgml gtk_tut_fr.sgml debugging.txt developers.txt refcounting.txt styles.txt text_widget.txt widget_system.txt gtk_tut_packbox1.gif gtk_tut_packbox2.gif html/gtk_tut_table.gif html/gtk_tut_packbox1.gif html/gtk_tut_packbox2.gif gtk_tut_table.gif html/gdk.html html/gdk_toc.html html/gtk.html html/gtk_toc.html $(TUTORIAL_FILES) $(TUTORIAL_FR_FILES) $(TUTORIAL_IT_FILES) $(FAQ_FILES) ++EXTRA_DIST = gtk@LT_RELEASE@-config.1.in texinfo.tex macros.texi gtkdocs_fix gtkfaq.sgml gtk-config.txt gtk_tut.sgml gtk_tut_it.sgml gtk_tut_fr.sgml debugging.txt developers.txt refcounting.txt styles.txt text_widget.txt widget_system.txt gtk_tut_packbox1.gif gtk_tut_packbox2.gif html/gtk_tut_table.gif html/gtk_tut_packbox1.gif html/gtk_tut_packbox2.gif gtk_tut_table.gif html/gdk.html html/gdk_toc.html html/gtk.html html/gtk_toc.html $(TUTORIAL_FILES) $(TUTORIAL_FR_FILES) $(TUTORIAL_IT_FILES) $(FAQ_FILES) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = ../config.h -@@ -177,6 +177,8 @@ +@@ -180,6 +180,8 @@ gtk.info: gtk.texi gtk.dvi: gtk.texi -+gtk12-config.1: gtk-config.1 -+ cp gtk-config.1 gtk12-config.1 ++gtk@LT_RELEASE@-config.1: gtk-config.1 ++ cp gtk-config.1 gtk@LT_RELEASE@-config.1 DVIPS = dvips --- /usr/ports.ref/x11-toolkits/gtk12/patches/patch-ab Tue Mar 9 03:09:08 1999 +++ x11-toolkits/gtk12/patches/patch-ab Sun May 23 00:56:19 1999 @@ -5,7 +5,7 @@ { cat <&5 rm -rf conftest* CATOBJEXT=.mo @@ -9,3 +24,20 @@ fi rm -f conftest* INSTOBJEXT=.mo +@@ -3699,7 +3699,7 @@ + # Added by Martin Baulig 12/15/98 for libc5 systems + if test "$gt_cv_func_dgettext_libc" != "yes" \ + && test "$gt_cv_func_dgettext_libintl" = "yes"; then +- INTLLIBS=-lintl ++ INTLLIBS="-lintl -lxpg4" + LIBS=`echo $LIBS | sed -e 's/-lintl//'` + fi + +@@ -4446,6 +4446,7 @@ + glib_thread_cflags="$GLIB_CFLAGS" + glib_libs=`$GLIB_CONFIG glib gmodule --libs` + glib_thread_libs="$GLIB_LIBS" ++ GLIB_CFLAGS="$glib_cflags" + GLIB_LIBS="$glib_libs" + GLIB_DEPLIBS="$glib_libs" + else --- /usr/ports.ref/x11-toolkits/gtk12/pkg/PLIST Tue Mar 9 03:09:08 1999 +++ x11-toolkits/gtk12/pkg/PLIST Sat May 15 19:23:30 1999 @@ -123,23 +123,24 @@ @unexec install-info --delete %D/info/gtk.info %D/info/dir info/gdk.info info/gtk.info -@exec [ -f %D/info/dir ] || sed -ne '1,/Menu:/p' /usr/share/info/dir > %D/info/dir @exec install-info %D/info/gdk.info %D/info/dir @exec install-info %D/info/gtk.info %D/info/dir lib/libgdk12.a -lib/libgdk12.la lib/libgdk12.so -lib/libgdk12.so.1 +lib/libgdk12.so.2 lib/libgtk12.a -lib/libgtk12.la lib/libgtk12.so -lib/libgtk12.so.1 +lib/libgtk12.so.2 @unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R @exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B +share/aclocal/gtk.m4 +share/locale/ca/LC_MESSAGES/gtk+.mo share/locale/cs/LC_MESSAGES/gtk+.mo share/locale/de/LC_MESSAGES/gtk+.mo share/locale/es/LC_MESSAGES/gtk+.mo +share/locale/fi/LC_MESSAGES/gtk+.mo share/locale/fr/LC_MESSAGES/gtk+.mo +share/locale/hr/LC_MESSAGES/gtk+.mo share/locale/hu/LC_MESSAGES/gtk+.mo share/locale/it/LC_MESSAGES/gtk+.mo share/locale/ja/LC_MESSAGES/gtk+.mo @@ -149,11 +150,22 @@ share/locale/pl/LC_MESSAGES/gtk+.mo share/locale/pt/LC_MESSAGES/gtk+.mo share/locale/ru/LC_MESSAGES/gtk+.mo +share/locale/sk/LC_MESSAGES/gtk+.mo +share/locale/sl/LC_MESSAGES/gtk+.mo share/locale/sv/LC_MESSAGES/gtk+.mo +share/locale/wa/LC_MESSAGES/gtk+.mo +share/locale/zh_TW.Big5/LC_MESSAGES/gtk+.mo share/themes/Default/gtk/gtkrc +share/themes/Default/gtk/gtkrc.cs +share/themes/Default/gtk/gtkrc.hr +share/themes/Default/gtk/gtkrc.hu +share/themes/Default/gtk/gtkrc.iso-8859-2 share/themes/Default/gtk/gtkrc.ja share/themes/Default/gtk/gtkrc.ko +share/themes/Default/gtk/gtkrc.pl share/themes/Default/gtk/gtkrc.ru +share/themes/Default/gtk/gtkrc.sk +share/themes/Default/gtk/gtkrc.sl @exec mkdir -p %D/share/themes/engines @dirrm share/themes/Default/gtk @dirrm share/themes/Default @@ -162,3 +174,4 @@ @dirrm include/gtk12/gdk @dirrm include/gtk12/gtk @dirrm include/gtk12 +@unexec rmdir %D/share/aclocal 2>/dev/null || true --- /usr/ports.ref/x11-toolkits/gtkgl/Makefile Thu Apr 22 14:58:54 1999 +++ x11-toolkits/gtkgl/Makefile Fri May 14 03:18:53 1999 @@ -13,17 +13,13 @@ MAINTAINER= billf@FreeBSD.org -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ MesaGL.14:${PORTSDIR}/graphics/Mesa3 -BUILD_DEPENDS= ${LOCALBASE}/share/libtool/ltconfig:${PORTSDIR}/devel/libtool/ -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-Mesa=yes -CONFIGURE_ENV= LOCALBASE=${LOCALBASE} +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config -pre-install: - @if [ ! -f ${PREFIX}/info/dir ]; then \ - ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ - fi +USE_LIBTOOL= yes +CONFIGURE_ARGS= --with-Mesa=yes +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" .include --- /usr/ports.ref/x11-toolkits/gtkgl/patches/patch-aa Thu Apr 22 14:58:54 1999 +++ x11-toolkits/gtkgl/patches/patch-aa Mon May 10 18:43:41 1999 @@ -1,94 +1,20 @@ -*** configure.orig Sat Apr 18 13:25:08 1998 ---- configure Mon Feb 1 22:56:18 1999 -*************** -*** 1330,1337 **** - # Actually configure libtool. ac_aux_dir is where install-sh is found. - CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \ - LD="$LD" NM="$NM" RANLIB="$RANLIB" LN_S="$LN_S" \ -! ${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig \ -! $libtool_flags --no-verify $ac_aux_dir/ltmain.sh $host \ - || { echo "configure: error: libtool configure failed" 1>&2; exit 1; } - - ---- 1330,1337 ---- - # Actually configure libtool. ac_aux_dir is where install-sh is found. - CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \ - LD="$LD" NM="$NM" RANLIB="$RANLIB" LN_S="$LN_S" \ -! ${CONFIG_SHELL-/bin/sh} ${LOCALBASE}/share/libtool/ltconfig \ -! $libtool_flags --no-verify ${LOCALBASE}/share/libtool//ltmain.sh $host \ - || { echo "configure: error: libtool configure failed" 1>&2; exit 1; } - - -*************** -*** 1397,1414 **** - if test x$gtk_config_exec_prefix != x ; then - gtk_config_args="$gtk_config_args --exec-prefix=$gtk_config_exec_prefix" - if test x${GTK_CONFIG+set} != xset ; then -! GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk-config - fi - fi - if test x$gtk_config_prefix != x ; then - gtk_config_args="$gtk_config_args --prefix=$gtk_config_prefix" - if test x${GTK_CONFIG+set} != xset ; then -! GTK_CONFIG=$gtk_config_prefix/bin/gtk-config - fi - fi - -! # Extract the first word of "gtk-config", so it can be a program name with args. -! set dummy gtk-config; ac_word=$2 - echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 - echo "configure:1414: checking for $ac_word" >&5 - if eval "test \"`echo '$''{'ac_cv_path_GTK_CONFIG'+set}'`\" = set"; then ---- 1397,1414 ---- - if test x$gtk_config_exec_prefix != x ; then - gtk_config_args="$gtk_config_args --exec-prefix=$gtk_config_exec_prefix" - if test x${GTK_CONFIG+set} != xset ; then -! GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk12-config - fi - fi - if test x$gtk_config_prefix != x ; then - gtk_config_args="$gtk_config_args --prefix=$gtk_config_prefix" - if test x${GTK_CONFIG+set} != xset ; then -! GTK_CONFIG=$gtk_config_prefix/bin/gtk12-config - fi - fi - -! # Extract the first word of "gtk12-config", so it can be a program name with args. -! set dummy gtk12-config; ac_word=$2 - echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 - echo "configure:1414: checking for $ac_word" >&5 - if eval "test \"`echo '$''{'ac_cv_path_GTK_CONFIG'+set}'`\" = set"; then -*************** -*** 2456,2462 **** - echo $ac_n "(cached) $ac_c" 1>&6 - else - ac_save_LIBS="$LIBS" -! LIBS="-lGL ${last_LDFLAGS} $LIBS" - cat > conftest.$ac_ext <&6 - else - ac_save_LIBS="$LIBS" -! LIBS="-lGL -lXext ${last_LDFLAGS} $LIBS" - cat > conftest.$ac_ext <&6 - else - ac_save_LIBS="$LIBS" -! LIBS="-lGLU ${last_LDFLAGS} $LIBS" - cat > conftest.$ac_ext <&6 - else - ac_save_LIBS="$LIBS" -! LIBS="-lGLU -lXext -lGL ${last_LDFLAGS} $LIBS" - cat > conftest.$ac_ext <&6 + else + ac_save_LIBS="$LIBS" +-LIBS="-lGL ${last_LDFLAGS} $LIBS" ++LIBS="-lGL -lXext ${last_LDFLAGS} $LIBS" + cat > conftest.$ac_ext <&6 + else + ac_save_LIBS="$LIBS" +-LIBS="-lGLU ${last_LDFLAGS} $LIBS" ++LIBS="-lGLU -lXext -lGL ${last_LDFLAGS} $LIBS" + cat > conftest.$ac_ext < %D/info/dir @exec install-info %D/info/gtkGL.info %D/info/dir lib/libgdkGL.a -lib/libgdkGL.la lib/libgdkGL.so lib/libgdkGL.so.0.9 lib/libgtkGL.a -lib/libgtkGL.la lib/libgtkGL.so lib/libgtkGL.so.0.9 -@exec /sbin/ldconfig -m %D/lib +@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R +@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B @dirrm include/gtkGL @dirrm include/gdkGL >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 May 22 16:30:14 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 024F41507F for ; Sat, 22 May 1999 16:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA64720; Sat, 22 May 1999 16:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 1EA9514D43 for ; Sat, 22 May 1999 16:24:25 -0700 (PDT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by shale.csir.co.za (8.9.3/8.9.3) id BAA48917; Sun, 23 May 1999 01:24:20 +0200 (SAT) (envelope-from reg) Message-Id: <199905222324.BAA48917@shale.csir.co.za> Date: Sun, 23 May 1999 01:24:20 +0200 (SAT) From: reg@shale.csir.co.za Reply-To: reg@shale.csir.co.za To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11843: Port change: graphics/imlib Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11843 >Category: ports >Synopsis: Port change: graphics/imlib >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 May 22 16:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jeremy Lea >Release: FreeBSD 4.0-CURRENT i386 >Organization: Arb's Inc. >Environment: FreeBSD Ports collection. >Description: Bump imlib's shared lib version, since GTK+'s was bumped. Update dependencies. USE_LIBTOOL. Forgot to mention: GTK+ now always links with -lxpg4, so all the ports which depend on it don't need to... >How-To-Repeat: >Fix: audio/gqmpeg: Changes: Makefile Adds : Removes: graphics/fnlib: Changes: Makefile pkg/PLIST Adds : Removes: patches/patch-ad graphics/gqview: Changes: Makefile Adds : Removes: graphics/gview: Changes: Makefile Adds : Removes: graphics/imlib: Changes: Makefile patches/patch-ac pkg/PLIST Adds : Removes: patches/patch-ae patches/patch-af graphics/qiv: Changes: Makefile Adds : Removes: japanese/eterm: Changes: Makefile Adds : Removes: x11-toolkits/gtk-engines: Changes: Makefile pkg/PLIST Adds : Removes: patches/patch-aa x11-wm/enlightenment: Changes: Makefile Adds : Removes: files/patch-xlocale x11/eterm: Changes: Makefile patches/patch-aa pkg/PLIST Adds : Removes: --- /usr/ports.ref/audio/gqmpeg/Makefile Mon May 17 23:41:10 1999 +++ audio/gqmpeg/Makefile Tue May 18 00:15:06 1999 @@ -15,7 +15,7 @@ MAINTAINER= nacai@iname.com RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 -LIB_DEPENDS= Imlib.3:${PORTSDIR}/graphics/imlib +LIB_DEPENDS= Imlib.4:${PORTSDIR}/graphics/imlib USE_X_PREFIX= yes ALL_TARGET= gqmpeg --- /usr/ports.ref/graphics/fnlib/Makefile Wed Mar 17 12:44:21 1999 +++ graphics/fnlib/Makefile Sat May 15 17:38:24 1999 @@ -8,22 +8,17 @@ DISTNAME= fnlib-0.4 CATEGORIES= graphics -MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= enlightenment -#MASTER_SITES= ftp://www.rasterman.com/pub/enlightenment/enlightenment/ \ -# ftp://ftp.enlightenment.org/pub/enlightenment/enlightenment/ \ -# ftp://ftp.labs.redhat.com/pub/imlib/TAR/ +MASTER_SITES= ftp://www.rasterman.com/pub/enlightenment/enlightenment/ \ + ftp://ftp.enlightenment.org/pub/enlightenment/enlightenment/ \ + ftp://ftp.labs.redhat.com/pub/imlib/TAR/ MAINTAINER= vanilla@FreeBSD.ORG -LIB_DEPENDS= Imlib.3:${PORTSDIR}/graphics/imlib +LIB_DEPENDS= Imlib.4:${PORTSDIR}/graphics/imlib USE_X_PREFIX= yes USE_GMAKE= yes -GNU_CONFIGURE= yes +USE_LIBTOOL= yes CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" - -post-install: - @${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib .include --- /usr/ports.ref/graphics/fnlib/patches/patch-ad Sun Jan 31 22:53:52 1999 +++ graphics/fnlib/patches/patch-ad Sat May 15 17:38:34 1999 @@ -1,53 +0,0 @@ ---- ltmain.sh.orig Tue Dec 15 03:52:56 1998 -+++ ltmain.sh Mon Feb 1 04:08:35 1999 -@@ -923,6 +923,16 @@ - versuffix="$current.$revision" - ;; - -+ freebsd) -+ version_vars="$version_vars major versuffix" -+ major="$current" -+ if [ $PORTOBJFORMAT = elf ]; then -+ versuffix="$current" -+ else -+ versuffix="$current.$revision" -+ fi -+ ;; -+ - *) - $echo "$modename: unknown library version type \`$version_type'" 1>&2 - echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 ---- ltconfig.orig Tue Dec 15 03:52:56 1998 -+++ ltconfig Mon Feb 1 04:09:01 1999 -@@ -767,7 +767,7 @@ - ;; - - # FreeBSD 3, at last, uses gcc -shared to do shared libraries. -- freebsd3*) -+ freebsd*) - archive_cmds='$CC -shared -o $lib$libobjs' - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes -@@ -1105,10 +1105,21 @@ - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "$lib" | sed '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done' - ;; - --freebsd2* | freebsd3*) -+freebsd2*) - version_type=sunos - library_names_spec='$libname.so.$versuffix $libname.so' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ ;; -+ -+freebsd*) -+ version_type=freebsd -+ library_names_spec='$libname.so.$versuffix $libname.so' -+ if [ $PORTOBJFORMAT = elf ]; then -+ finish_cmds='PATH="\$PATH:/sbin" OBJFORMAT="$PORTOBJFORMAT" ldconfig -m $libdir' -+ else -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' -+ fi - shlibpath_var=LD_LIBRARY_PATH - ;; - --- /usr/ports.ref/graphics/fnlib/pkg/PLIST Mon Dec 28 02:35:53 1998 +++ graphics/fnlib/pkg/PLIST Sat May 15 17:39:02 1999 @@ -2,7 +2,6 @@ include/Fnlib.h include/Fnlib_types.h lib/libFnlib.a -lib/libFnlib.la lib/libFnlib.so lib/libFnlib.so.0.4 @unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R --- /usr/ports.ref/graphics/gqview/Makefile Wed Mar 17 12:44:31 1999 +++ graphics/gqview/Makefile Fri Apr 30 00:58:11 1999 @@ -14,15 +14,16 @@ MAINTAINER= nacai@iname.com -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ - Imlib.3:${PORTSDIR}/graphics/imlib +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ + Imlib.4:${PORTSDIR}/graphics/imlib + +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config USE_X_PREFIX= yes WRKSRC= ${WRKDIR}/${PKGNAME} ALL_TARGET= gqview -CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" - +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" pre-install: .if !defined(NOPORTDOCS) --- /usr/ports.ref/graphics/gview/Makefile Mon May 3 06:21:32 1999 +++ graphics/gview/Makefile Fri May 14 11:09:41 1999 @@ -12,16 +12,14 @@ MAINTAINER= andy@icc.surw.chel.su -LIB_DEPENDS= gdk_imlib:${PORTSDIR}/graphics/imlib \ - gdk12:${PORTSDIR}/x11-toolkits/gtk12 \ - glib12:${PORTSDIR}/devel/glib12 \ - gmodule12:${PORTSDIR}/devel/glib12 \ - gtk12:${PORTSDIR}/x11-toolkits/gtk12 \ - intl:${PORTSDIR}/devel/gettext +LIB_DEPENDS= gdk_imlib.4:${PORTSDIR}/graphics/imlib \ + intl.1:${PORTSDIR}/devel/gettext + +GTK_CONFIG?= ${X11BASE}/gtk12-config USE_X_PREFIX= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" post-install: .if !defined(NOPORTDOCS) --- /usr/ports.ref/graphics/imlib/Makefile Thu Apr 8 22:33:16 1999 +++ graphics/imlib/Makefile Tue May 11 13:55:00 1999 @@ -17,25 +17,17 @@ jpeg.9:${PORTSDIR}/graphics/jpeg \ tiff.4:${PORTSDIR}/graphics/tiff34 \ gif.3:${PORTSDIR}/graphics/giflib \ - gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 + gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 + +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config USE_GMAKE= yes USE_X_PREFIX= yes -GNU_CONFIGURE= yes +USE_LIBTOOL= yes CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc/imlib CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include \ -I${LOCALBASE}/include/giflib" \ - GTK_CONFIG="${X11BASE}/bin/gtk12-config" \ + GTK_CONFIG="${GTK_CONFIG}" \ LIBS="-L${LOCALBASE}/lib" - -post-install: - @${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib - @${ECHO} '************************************************************' - @${ECHO} '* *' - @${ECHO} '* If you want to use autoconf with imlib, *' - @${ECHO} '* Please copy imlib.m4 to /usr/local/share/aclocal *' - @${ECHO} '* by yourself, thanks. *' - @${ECHO} '* *' - @${ECHO} '************************************************************' .include --- /usr/ports.ref/graphics/imlib/patches/patch-ac Wed Mar 17 12:44:37 1999 +++ graphics/imlib/patches/patch-ac Fri Apr 30 00:28:09 1999 @@ -5,7 +5,7 @@ -libImlib_la_LDFLAGS = -version-info 10:4:9 -+libImlib_la_LDFLAGS = -version-info 3:0:0 ++libImlib_la_LDFLAGS = -version-info 4:0:0 #libImlib_la_LDDADD = $(SUPPORT_LIBS) libImlib_la_LIBADD = $(SUPPORT_LIBS) @@ -16,7 +16,7 @@ -libgdk_imlib_la_LDFLAGS = -version-info 10:4:9 -+libgdk_imlib_la_LDFLAGS = -version-info 3:0:0 ++libgdk_imlib_la_LDFLAGS = -version-info 4:0:0 libgdk_imlib_la_LIBADD = $(GMODULE_LIBS) include_HEADERS = gdk_imlib.h gdk_imlib_private.h gdk_imlib_types.h --- /usr/ports.ref/graphics/imlib/patches/patch-ae Tue Mar 9 12:38:50 1999 +++ graphics/imlib/patches/patch-ae Tue May 11 13:44:17 1999 @@ -1,11 +0,0 @@ ---- ltconfig.orig Wed Feb 24 17:46:26 1999 -+++ ltconfig Mon Mar 1 19:57:31 1999 -@@ -1683,7 +1683,7 @@ - deplibs_check_method=unknown - ;; - esac -- library_names_spec='${libname}${release}.so$versuffix $libname.so$versuffix' -+ library_names_spec='${libname}${release}.so$versuffix $libname.so' - finish_cmds='PATH="$PATH:/sbin" OBJFORMAT="$objformat" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - need_version=yes --- /usr/ports.ref/graphics/imlib/patches/patch-af Thu Feb 18 13:42:52 1999 +++ graphics/imlib/patches/patch-af Thu Apr 8 22:29:47 1999 @@ -1,11 +0,0 @@ ---- Makefile.in.orig Fri Feb 12 14:29:09 1999 -+++ Makefile.in Wed Feb 17 22:15:23 1999 -@@ -372,7 +372,7 @@ - install-data: install-data-recursive - - install-am: all-am -- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am -+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am - install: install-recursive - uninstall-am: uninstall-binSCRIPTS uninstall-m4dataDATA - uninstall: uninstall-recursive --- /usr/ports.ref/graphics/imlib/pkg/PLIST Wed Mar 17 12:44:38 1999 +++ graphics/imlib/pkg/PLIST Tue May 11 14:19:36 1999 @@ -9,45 +9,37 @@ include/gdk_imlib_private.h include/gdk_imlib_types.h lib/libImlib.a -lib/libImlib.la lib/libImlib.so -lib/libImlib.so.3.0 +lib/libImlib.so.4 lib/libgdk_imlib.a -lib/libgdk_imlib.la lib/libgdk_imlib.so -lib/libgdk_imlib.so.3.0 +lib/libgdk_imlib.so.4 lib/libimlib-bmp.a -lib/libimlib-bmp.la lib/libimlib-bmp.so lib/libimlib-bmp.so.0 lib/libimlib-gif.a -lib/libimlib-gif.la lib/libimlib-gif.so lib/libimlib-gif.so.0 lib/libimlib-jpeg.a -lib/libimlib-jpeg.la lib/libimlib-jpeg.so lib/libimlib-jpeg.so.0 lib/libimlib-png.a -lib/libimlib-png.la lib/libimlib-png.so lib/libimlib-png.so.0 lib/libimlib-ppm.a -lib/libimlib-ppm.la lib/libimlib-ppm.so lib/libimlib-ppm.so.0 lib/libimlib-ps.a -lib/libimlib-ps.la lib/libimlib-ps.so lib/libimlib-ps.so.0 lib/libimlib-tiff.a -lib/libimlib-tiff.la lib/libimlib-tiff.so lib/libimlib-tiff.so.0 lib/libimlib-xpm.a -lib/libimlib-xpm.la lib/libimlib-xpm.so lib/libimlib-xpm.so.0 @unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R @exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B +share/aclocal/imlib.m4 @dirrm etc/imlib +@unexec rmdir %D/share/aclocal 2>/dev/null || true --- /usr/ports.ref/graphics/qiv/Makefile Thu Apr 22 14:44:38 1999 +++ graphics/qiv/Makefile Fri Apr 30 01:49:54 1999 @@ -15,20 +15,17 @@ MAINTAINER= billf@FreeBSD.org -LIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 -BUILD_DEPENDS= imlib-config:${PORTSDIR}/graphics/imlib +LIB_DEPENDS= gdk_imlib.4:${PORTSDIR}/graphics/imlib USE_X_PREFIX= yes MAN1= qiv.1 post-patch: - @ ${MV} ${WRKSRC}/qiv.1 ${WRKSRC}/qiv.1.pre_sed @ ${SED} -e 's#\/usr\/bin#${PREFIX}/bin#g' \ ${WRKSRC}/qiv.1.pre_sed > ${WRKSRC}/qiv.1 do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/qiv ${PREFIX}/bin/ ${INSTALL_MAN} ${WRKSRC}/qiv.1 ${PREFIX}/man/man1/ --- /usr/ports.ref/japanese/eterm/Makefile Sun May 9 22:46:54 1999 +++ japanese/eterm/Makefile Sun May 9 23:12:15 1999 @@ -17,7 +17,7 @@ MAINTAINER= nobutaka@nobutaka.com -LIB_DEPENDS= Imlib.3:${PORTSDIR}/graphics/imlib +LIB_DEPENDS= Imlib.4:${PORTSDIR}/graphics/imlib USE_GMAKE= yes USE_X_PREFIX= yes --- /usr/ports.ref/x11-toolkits/gtk-engines/Makefile Thu Apr 8 22:48:14 1999 +++ x11-toolkits/gtk-engines/Makefile Wed May 12 09:17:14 1999 @@ -13,11 +13,13 @@ MAINTAINER= vanilla@FreeBSD.ORG -LIB_DEPENDS= gdk_imlib.3:${PORTSDIR}/graphics/imlib +LIB_DEPENDS= gdk_imlib.4:${PORTSDIR}/graphics/imlib + +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config USE_X_PREFIX= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" +USE_LIBTOOL= yes +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" THEMES= metal notif pixmap redmond95 @@ -27,8 +29,5 @@ ${MV} gtkrc gtkrc.tmp; \ ${SED} -e s^%%PREFIX%%^${PREFIX}^g < gtkrc.tmp > gtkrc; \ done - -post-install: - @${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib .include --- /usr/ports.ref/x11-toolkits/gtk-engines/patches/patch-aa Tue Mar 9 12:52:05 1999 +++ x11-toolkits/gtk-engines/patches/patch-aa Wed May 12 09:17:26 1999 @@ -1,11 +0,0 @@ ---- ltconfig.orig Wed Feb 17 01:49:26 1999 -+++ ltconfig Wed Feb 17 01:49:58 1999 -@@ -1683,7 +1683,7 @@ - deplibs_check_method=unknown - ;; - esac -- library_names_spec='${libname}${release}.so$versuffix $libname.so$versuffix' -+ library_names_spec='${libname}.so$versuffix $libname.so' - finish_cmds='PATH="$PATH:/sbin" OBJFORMAT="$objformat" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - need_version=yes --- /usr/ports.ref/x11-toolkits/gtk-engines/pkg/PLIST Tue Mar 9 12:52:05 1999 +++ x11-toolkits/gtk-engines/pkg/PLIST Wed May 12 09:20:40 1999 @@ -79,23 +79,15 @@ share/themes/Redmond95/ICON.png share/themes/Redmond95/README.html share/themes/Redmond95/gtk/gtkrc -share/themes/engines/libmetal.la share/themes/engines/libmetal.so -share/themes/engines/libmetal.so.0 -share/themes/engines/libnotif.la share/themes/engines/libnotif.so -share/themes/engines/libnotif.so.0 -share/themes/engines/libpixmap.la share/themes/engines/libpixmap.so -share/themes/engines/libpixmap.so.0 -share/themes/engines/libredmond95.la share/themes/engines/libredmond95.so -share/themes/engines/libredmond95.so.0 -@dirrm share/themes/Metal/gtk -@dirrm share/themes/Metal -@dirrm share/themes/Notif/gtk -@dirrm share/themes/Notif -@dirrm share/themes/Pixmap/gtk -@dirrm share/themes/Pixmap @dirrm share/themes/Redmond95/gtk @dirrm share/themes/Redmond95 +@dirrm share/themes/Pixmap/gtk +@dirrm share/themes/Pixmap +@dirrm share/themes/Notif/gtk +@dirrm share/themes/Notif +@dirrm share/themes/Metal/gtk +@dirrm share/themes/Metal --- /usr/ports.ref/x11-wm/enlightenment/Makefile Mon Apr 19 10:59:46 1999 +++ x11-wm/enlightenment/Makefile Fri May 14 11:17:36 1999 @@ -12,13 +12,12 @@ http://www.rasterman.com/files/ \ ftp://ftp.dti.ad.jp/pub/X/enlightenment/enlightenment/ - MAINTAINER= vanilla@FreeBSD.ORG LIB_DEPENDS= esd.1:${PORTSDIR}/audio/esound \ Fnlib.0:${PORTSDIR}/graphics/fnlib \ gif.3:${PORTSDIR}/graphics/giflib \ - Imlib.3:${PORTSDIR}/graphics/imlib \ + Imlib.4:${PORTSDIR}/graphics/imlib \ tiff.4:${PORTSDIR}/graphics/tiff34 \ ttf.3:${PORTSDIR}/print/freetype \ ghttp.1:${PORTSDIR}/www/libghttp @@ -28,6 +27,6 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-fsstd CONFIGURE_ENV= CFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib -lxpg4" + LIBS="-L${LOCALBASE}/lib" .include --- /usr/ports.ref/x11/eterm/Makefile Wed Mar 17 12:56:36 1999 +++ x11/eterm/Makefile Mon May 10 18:36:06 1999 @@ -17,13 +17,12 @@ MAINTAINER= murray@cdrom.com -BUILD_DEPENDS= libtool:${PORTSDIR}/devel/libtool -LIB_DEPENDS= Imlib.3:${PORTSDIR}/graphics/imlib +LIB_DEPENDS= Imlib.4:${PORTSDIR}/graphics/imlib USE_GMAKE= yes USE_X_PREFIX= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" LOCALBASE=${LOCALBASE} +USE_LIBTOOL= yes +CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" MAN1= Eterm.1 @@ -31,9 +30,6 @@ .if ( defined(KANJI) ) ${CP} ${FILESDIR}/patch-kanji ${PATCHDIR} .endif - -post-patch: - @find ${WRKSRC} -name '*.orig' | xargs ${RM} -f post-install: chown root.wheel ${PREFIX}/bin/Eterm --- /usr/ports.ref/x11/eterm/patches/patch-aa Fri Feb 26 01:24:11 1999 +++ x11/eterm/patches/patch-aa Mon May 10 18:36:25 1999 @@ -1,13 +1 @@ ---- configure Wed Jan 13 05:53:30 1999 -+++ configure~ Sun Feb 7 23:17:02 1999 -@@ -1559,8 +1559,8 @@ - # Actually configure libtool. ac_aux_dir is where install-sh is found. - CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \ - LD="$LD" NM="$NM" RANLIB="$RANLIB" LN_S="$LN_S" \ --${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig \ --$libtool_flags --no-verify $ac_aux_dir/ltmain.sh $host \ -+${CONFIG_SHELL-/bin/sh} ${LOCALBASE}/share/libtool/ltconfig \ -+$libtool_flags --no-verify ${LOCALBASE}/share/libtool/ltmain.sh $host \ - || { echo "configure: error: libtool configure failed" 1>&2; exit 1; } - --- /usr/ports.ref/x11/eterm/pkg/PLIST Mon Feb 22 14:21:54 1999 +++ x11/eterm/pkg/PLIST Sat May 22 16:24:03 1999 @@ -1,52 +1,52 @@ -bin/Eterm bin/Esetroot -lib/libmej.so.8 -lib/libmej.so -lib/libmej.la -lib/libmej.a -lib/libEterm.so.8 -lib/libEterm.so -lib/libEterm.la +bin/Eterm lib/libEterm.a -share/doc/Eterm/ReleaseNotes -share/doc/Eterm/Eterm.help -share/doc/Eterm/Eterm.ref -share/doc/Eterm/Eterm.tcap -share/doc/Eterm/Eterm.ti -share/doc/Eterm/FAQ.html -share/doc/Eterm/menu_cmd +lib/libEterm.so +lib/libEterm.so.8 +lib/libmej.a +lib/libmej.so +lib/libmej.so.8 +@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R +@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B +share/Eterm/colortest.sh share/Eterm/pix/014.png share/Eterm/pix/backwave.jpg share/Eterm/pix/button1.jpg share/Eterm/pix/button5.jpg share/Eterm/pix/circuit.png -share/Eterm/pix/nebula.jpg share/Eterm/pix/fourthday.jpg share/Eterm/pix/gaia.jpg share/Eterm/pix/galleon.jpg +share/Eterm/pix/nebula.jpg share/Eterm/pix/night_of_the_dragon.jpg share/Eterm/pix/pixmaps.list -share/Eterm/colortest.sh -share/Eterm/themes/Eterm/MAIN share/Eterm/themes/Eterm/Eterm.menu +share/Eterm/themes/Eterm/MAIN share/Eterm/themes/Eterm/pixmaps.list -share/Eterm/themes/chooser/chooser.menu share/Eterm/themes/chooser/MAIN +share/Eterm/themes/chooser/chooser.menu share/Eterm/themes/chooser/pixmaps.list -share/Eterm/themes/emacs/emacs.menu share/Eterm/themes/emacs/MAIN +share/Eterm/themes/emacs/emacs.menu share/Eterm/themes/emacs/pixmaps.list -share/Eterm/themes/irc/irc.menu share/Eterm/themes/irc/MAIN +share/Eterm/themes/irc/irc.menu share/Eterm/themes/irc/pixmaps.list -share/Eterm/themes/mutt/mutt.menu share/Eterm/themes/mutt/MAIN +share/Eterm/themes/mutt/mutt.menu share/Eterm/themes/mutt/pixmaps.list share/Eterm/themes/tn3270/MAIN share/Eterm/themes/tn3270/pixmaps.list -share/Eterm/themes/trans/trans.menu share/Eterm/themes/trans/MAIN share/Eterm/themes/trans/pixmaps.list +share/Eterm/themes/trans/trans.menu +share/doc/Eterm/Eterm.help +share/doc/Eterm/Eterm.ref +share/doc/Eterm/Eterm.tcap +share/doc/Eterm/Eterm.ti +share/doc/Eterm/FAQ.html +share/doc/Eterm/ReleaseNotes +share/doc/Eterm/menu_cmd @dirrm share/doc/Eterm @dirrm share/Eterm/themes/Eterm @dirrm share/Eterm/themes/chooser >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 May 22 17:20: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B6FE15075 for ; Sat, 22 May 1999 17:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA67102; Sat, 22 May 1999 17:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 5F0AD14F95 for ; Sat, 22 May 1999 17:13:46 -0700 (PDT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by shale.csir.co.za (8.9.3/8.9.3) id CAA52465; Sun, 23 May 1999 02:13:44 +0200 (SAT) (envelope-from reg) Message-Id: <199905230013.CAA52465@shale.csir.co.za> Date: Sun, 23 May 1999 02:13:44 +0200 (SAT) From: reg@shale.csir.co.za Reply-To: reg@shale.csir.co.za To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11846: Port change: graphics/gtkfig Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11846 >Category: ports >Synopsis: Port change: graphics/gtkfig >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 May 22 17:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jeremy Lea >Release: FreeBSD 4.0-CURRENT i386 >Organization: Arb's Inc. >Environment: FreeBSD Ports collection. >Description: Change port to use GTK+ 1.2.x. >How-To-Repeat: >Fix: graphics/gtkfig: Changes: Makefile Adds : patches/patch-aa Removes: --- /usr/ports.ref/graphics/gtkfig/Makefile Fri Jan 8 16:18:42 1999 +++ graphics/gtkfig/Makefile Mon May 10 01:56:09 1999 @@ -13,10 +13,12 @@ MAINTAINER= dirk@FreeBSD.ORG -LIB_DEPENDS= gtk11.1:${PORTSDIR}/x11-toolkits/gtk11 +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + +USE_X_PREFIX= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= CXXFLAGS="${CFLAGS}" \ - GTK_CONFIG=${X11BASE}/bin/gtk11-config +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" .include --- /usr/ports.ref/graphics/gtkfig/patches/patch-aa Thu Jan 1 02:00:00 1970 +++ graphics/gtkfig/patches/patch-aa Mon May 10 01:52:16 1999 @@ -0,0 +1,10 @@ +--- src/group.h.orig Mon May 10 01:51:36 1999 ++++ src/group.h Mon May 10 01:51:57 1999 +@@ -7,6 +7,7 @@ + #ifndef GTKFIG_GROUP_H + #define GTKFIG_GROUP_H + ++#include + #include "rectangleobject.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 May 22 17:20:30 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 05F1214FD4 for ; Sat, 22 May 1999 17:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA67093; Sat, 22 May 1999 17:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 6C8BD14DBC for ; Sat, 22 May 1999 17:10:53 -0700 (PDT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by shale.csir.co.za (8.9.3/8.9.3) id CAA52306; Sun, 23 May 1999 02:10:51 +0200 (SAT) (envelope-from reg) Message-Id: <199905230010.CAA52306@shale.csir.co.za> Date: Sun, 23 May 1999 02:10:51 +0200 (SAT) From: reg@shale.csir.co.za Reply-To: reg@shale.csir.co.za To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11845: Port update: graphics/gimp1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11845 >Category: ports >Synopsis: Port update: graphics/gimp1 >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 May 22 17:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jeremy Lea >Release: FreeBSD 4.0-CURRENT i386 >Organization: Arb's Inc. >Environment: FreeBSD Ports collection. >Description: Upgrade to 1.1.5, and USE_LIBTOOL. Some other misc fixups. I don't like the shared library number jumping from .2 to .5, but I've left it. It's simple to change LT_CURRENT (line 590 in configure). Maintainer not contacted. >How-To-Repeat: >Fix: graphics/gimp1: Upgrade from 1.1.2 to 1.1.5 Changes: Makefile files/md5 patches/patch-ac patches/patch-ae patches/patch-ah patches/patch-ai pkg/PLIST Adds : patches/patch-aj patches/patch-ak Removes: patches/patch-ad pkg/MESSAGE --- /usr/ports.ref/graphics/gimp1/Makefile Fri Apr 23 10:56:54 1999 +++ graphics/gimp1/Makefile Sat May 22 21:42:20 1999 @@ -1,41 +1,41 @@ # New ports collection makefile for: Gimp -# Version required: 1.1.2 +# Version required: 1.1.5 # Date created: Mon Nov 18 21:28:43 CST 1996 # Whom: erich@FreeBSD.org # # $Id: Makefile,v 1.55 1999/04/22 19:15:39 mharo Exp $ # -DISTNAME= gimp-1.1.2 +DISTNAME= gimp-1.1.5 CATEGORIES= graphics -MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/old/v1.1.2/ \ - ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/old/v1.1.2/ \ - http://www.ameth.org/gimp/pub/gimp/unstable/old/v1.1.2/ +MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/unstable/v1.1.5/ \ + ftp://ftp.cs.umn.edu/pub/gimp/gimp/unstable/v1.1.5/ \ + http://www.ameth.org/gimp/pub/gimp/unstable/v1.1.5/ MAINTAINER= erich@FreeBSD.org LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \ aa.1:${PORTSDIR}/graphics/aalib \ jpeg.9:${PORTSDIR}/graphics/jpeg \ - gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ + gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \ mpeg.1:${PORTSDIR}/graphics/mpeg-lib \ png.3:${PORTSDIR}/graphics/png \ tiff.4:${PORTSDIR}/graphics/tiff34 +GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + USE_X_PREFIX= yes -GNU_CONFIGURE= yes USE_GMAKE= yes +USE_LIBTOOL= yes CONFIGURE_ARGS= --disable-perl CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - GTK_CONFIG="${X11BASE}/bin/gtk12-config" \ - LIBS="-L${LOCALBASE}/lib" \ - INSTALL_SCRIPT='$${INSTALL} -m 755' + GLIB_CONFIG="${GLIB_CONFIG}" \ + GTK_CONFIG="${GTK_CONFIG}" \ + LIBS="-L${LOCALBASE}/lib" MAN1= gimp.1 gimptool.1 MAN3= gpc.3 - -post-install: - @${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib - @${CAT} ${PKGDIR}/MESSAGE +MAN5= gimprc.5 .include --- /usr/ports.ref/graphics/gimp1/files/md5 Mon Feb 22 01:11:38 1999 +++ graphics/gimp1/files/md5 Sat May 22 21:17:31 1999 @@ -1 +1 @@ -MD5 (gimp-1.1.2.tar.gz) = 806e4cca53e056a0d78492ba436fd8ac +MD5 (gimp-1.1.5.tar.gz) = 048e20d9c639e9017292dd5b971d477b --- /usr/ports.ref/graphics/gimp1/patches/patch-ac Mon Feb 22 01:11:38 1999 +++ graphics/gimp1/patches/patch-ac Mon May 10 10:22:13 1999 @@ -16,8 +16,8 @@ gpc.h INCLUDES = \ ---- plug-ins/gpc/Makefile.in.orig Thu Feb 4 11:21:25 1999 -+++ plug-ins/gpc/Makefile.in Sat Feb 20 17:33:30 1999 +--- plug-ins/gpc/Makefile.in.orig Tue Mar 9 02:58:46 1999 ++++ plug-ins/gpc/Makefile.in Mon May 10 10:17:48 1999 @@ -162,10 +162,14 @@ prefix = @prefix@ @@ -117,13 +117,9 @@ @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ -@@ -380,10 +401,38 @@ - || cp -p $$d/$$file $(distdir)/$$file || :; \ +@@ -381,6 +402,37 @@ fi; \ done --gpc.o: gpc.c ../../libgimp/gimp.h ../../libgimp/gimpenums.h \ -- ../../libgimp/gimpfeatures.h ../../libgimp/parasite.h \ -- ../../libgimp/parasiteF.h ../../libgimp/parasiteP.h +DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :) + @@ -159,7 +155,7 @@ info-am: info: info-am dvi-am: -@@ -395,20 +444,23 @@ +@@ -392,20 +444,23 @@ install-exec-am: install-exec: install-exec-am @@ -187,7 +183,7 @@ mostlyclean-generic: -@@ -421,27 +473,27 @@ +@@ -418,27 +473,27 @@ maintainer-clean-generic: mostlyclean-am: mostlyclean-pluginlibLIBRARIES mostlyclean-compile \ @@ -221,7 +217,7 @@ @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." -@@ -453,13 +505,15 @@ +@@ -450,13 +505,15 @@ mostlyclean-compile distclean-compile clean-compile \ maintainer-clean-compile mostlyclean-libtool distclean-libtool \ clean-libtool maintainer-clean-libtool install-man3 uninstall-man3 \ --- /usr/ports.ref/graphics/gimp1/patches/patch-ad Mon Feb 22 01:11:38 1999 +++ graphics/gimp1/patches/patch-ad Mon May 10 10:43:40 1999 @@ -1,22 +0,0 @@ ---- app/Makefile.in.orig Sat Feb 20 18:05:08 1999 -+++ app/Makefile.in Sat Feb 20 18:07:40 1999 -@@ -174,7 +174,7 @@ - EXTRA_DIST = tools/anchor.xpm tools/channel.xbm tools/delete.xpm tools/duplicate.xpm tools/eye.xbm tools/layer.xbm tools/linked.xbm tools/lower.xpm tools/mask.xbm tools/new.xpm tools/raise.xpm - - --CPPFLAGS = -DLIBDIR=\""$(gimpplugindir)"\" -DDATADIR=\""$(gimpdatadir)"\" -DGIMPDIR=\""$(gimpdir)"\" -DLOCALEDIR=\""$(localedir)"\" -DREGEX_MALLOC @GIMP_THREAD_FLAGS@ -+CPPFLAGS = -DLIBDIR=\""$(gimpplugindir)"\" -DDATADIR=\""$(gimpdatadir)"\" -DGIMPDIR=\""$(gimpdir)"\" -DLOCALEDIR=\""$(localedir)"\" -DREGEX_MALLOC @GIMP_THREAD_FLAGS@ -I/usr/local/include - - - INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/intl $(GTK_CFLAGS) -I$(includedir) ---- po/Makefile.in.in.orig Sat Feb 20 23:41:05 1999 -+++ po/Makefile.in.in Sat Feb 20 23:41:18 1999 -@@ -18,7 +18,7 @@ - - prefix = @prefix@ - exec_prefix = @exec_prefix@ --datadir = $(prefix)/@DATADIRNAME@ -+datadir = $(prefix)/share - localedir = $(datadir)/locale - gnulocaledir = $(prefix)/share/locale - gettextsrcdir = $(prefix)/share/gettext/po --- /usr/ports.ref/graphics/gimp1/patches/patch-ae Sat Feb 20 21:31:50 1999 +++ graphics/gimp1/patches/patch-ae Sat May 22 21:24:59 1999 @@ -1,11 +1,10 @@ ---- plug-ins/plugindetails/plugindetails.c.orig Sat Feb 20 18:47:03 1999 -+++ plug-ins/plugindetails/plugindetails.c Sat Feb 20 18:47:11 1999 -@@ -25,7 +25,7 @@ +--- plug-ins/plugindetails/plugindetails.c.orig Sat Mar 27 07:53:38 1999 ++++ plug-ins/plugindetails/plugindetails.c Sat May 22 21:24:31 1999 +@@ -25,6 +25,7 @@ #include #include #include --#include -+#include ++#include #include "gtk/gtk.h" #include "libgimp/gimp.h" --- /usr/ports.ref/graphics/gimp1/patches/patch-ah Mon Feb 22 01:11:38 1999 +++ graphics/gimp1/patches/patch-ah Sat May 22 21:41:34 1999 @@ -1,33 +1,34 @@ ---- configure.in.orig Thu Feb 4 08:37:10 1999 -+++ configure.in Sun Feb 21 00:11:35 1999 -@@ -441,7 +441,7 @@ +--- configure.orig Tue May 4 06:06:39 1999 ++++ configure Sat May 22 21:39:37 1999 +@@ -3538,7 +3538,10 @@ + cat conftest.$ac_ext >&5 + rm -rf conftest* + CATOBJEXT=.mo +- DATADIRNAME=lib ++ DATADIRNAME=share ++ INTLDEPS='-lintl' ++ INTLLIBS=$INTLDEPS ++ LIBS=`echo $LIBS | sed -e 's/-lintl//'` fi - - gimpdatadir=$datadir/gimp --gimpplugindir=$libdir/$PACKAGE/$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION -+gimpplugindir=$libexecdir/$PACKAGE/$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION - localedir=$datadir/locale - - brushdata=`ls -1 $srcdir/data/brushes | grep -v Makefile` ---- configure.orig Thu Feb 4 08:38:47 1999 -+++ configure Sun Feb 21 00:11:46 1999 -@@ -7254,7 +7254,7 @@ + rm -f conftest* + INSTOBJEXT=.mo +@@ -7165,7 +7168,7 @@ fi gimpdatadir=$datadir/gimp -gimpplugindir=$libdir/$PACKAGE/$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION +gimpplugindir=$libexecdir/$PACKAGE/$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION - localedir=$datadir/locale + localedir='${prefix}/${DATADIRNAME}/locale' brushdata=`ls -1 $srcdir/data/brushes | grep -v Makefile` ---- Makefile.in.orig Sat Feb 20 23:45:16 1999 -+++ Makefile.in Sun Feb 21 00:12:00 1999 -@@ -530,7 +530,7 @@ - install-exec: install-exec-recursive - - install-data-am: install-gimpdataSCRIPTS install-man \ -- install-gimpdataDATA install-m4dataDATA -+ install-gimpdataDATA - install-data: install-data-recursive +@@ -8746,10 +8749,6 @@ + *) # Relative path. + ac_sub_cache_file="$ac_dots$cache_file" ;; + esac +- case "$ac_given_INSTALL" in +- [/$]*) INSTALL="$ac_given_INSTALL" ;; +- *) INSTALL="$ac_dots$ac_given_INSTALL" ;; +- esac - install-am: all-am + echo "running ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_sub_srcdir" + # The eval makes quoting arguments work. --- /usr/ports.ref/graphics/gimp1/patches/patch-ai Mon Feb 22 01:11:38 1999 +++ graphics/gimp1/patches/patch-ai Mon May 10 10:23:09 1999 @@ -16,8 +16,8 @@ megawidget.h INCLUDES = \ ---- plug-ins/megawidget/Makefile.in.orig Thu Feb 4 11:21:21 1999 -+++ plug-ins/megawidget/Makefile.in Sat Feb 20 17:35:33 1999 +--- plug-ins/megawidget/Makefile.in.orig Tue Mar 9 02:58:45 1999 ++++ plug-ins/megawidget/Makefile.in Mon May 10 10:17:47 1999 @@ -162,10 +162,14 @@ prefix = @prefix@ @@ -117,14 +117,9 @@ @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ -@@ -333,11 +354,38 @@ - || cp -p $$d/$$file $(distdir)/$$file || :; \ +@@ -334,6 +355,37 @@ fi; \ done --megawidget.o: megawidget.c ../../libgimp/gimp.h \ -- ../../libgimp/gimpenums.h ../../libgimp/gimpfeatures.h \ -- ../../libgimp/parasite.h ../../libgimp/parasiteF.h \ -- ../../libgimp/parasiteP.h megawidget.h +DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :) + @@ -160,7 +155,7 @@ info-am: info: info-am dvi-am: -@@ -349,20 +397,20 @@ +@@ -345,20 +397,20 @@ install-exec-am: install-exec: install-exec-am @@ -185,7 +180,7 @@ mostlyclean-generic: -@@ -375,27 +423,27 @@ +@@ -371,27 +423,27 @@ maintainer-clean-generic: mostlyclean-am: mostlyclean-pluginlibLIBRARIES mostlyclean-compile \ @@ -219,7 +214,7 @@ @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." -@@ -406,8 +454,10 @@ +@@ -402,8 +454,10 @@ uninstall-pluginlibLIBRARIES install-pluginlibLIBRARIES \ mostlyclean-compile distclean-compile clean-compile \ maintainer-clean-compile mostlyclean-libtool distclean-libtool \ --- /usr/ports.ref/graphics/gimp1/patches/patch-aj Thu Jan 1 02:00:00 1970 +++ graphics/gimp1/patches/patch-aj Tue May 18 09:45:03 1999 @@ -0,0 +1,11 @@ +--- plug-ins/libgck/gck/Makefile.in.orig Tue May 18 09:44:01 1999 ++++ plug-ins/libgck/gck/Makefile.in Tue May 18 09:44:26 1999 +@@ -171,7 +171,7 @@ + gckinclude_HEADERS = gck.h gckcolor.h gckcommon.h gckimage.h gcklistbox.h gckmath.h gcktypes.h gckui.h gckvector.h + + +-libgck_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) ++libgck_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) + + + INCLUDES = -I.. -I$(srcdir)/.. -I$(top_srcdir) $(GTK_CFLAGS) -I$(includedir) --- /usr/ports.ref/graphics/gimp1/patches/patch-ak Thu Jan 1 02:00:00 1970 +++ graphics/gimp1/patches/patch-ak Tue May 18 09:43:33 1999 @@ -0,0 +1,17 @@ +--- libgimp/Makefile.in.orig Tue Mar 9 02:58:39 1999 ++++ libgimp/Makefile.in Tue May 18 09:42:40 1999 +@@ -188,11 +188,11 @@ + gimpinclude_HEADERS = color_selector.h gimp.h gimpchainbutton.h gimpenums.h gimpenv.h gimpfeatures.h gimpmatrix.h gimpmenu.h gimpmodule.h gimpsizeentry.h gimpui.h gimpunit.h gimpunitmenu.h gimpintl.h gserialize.h parasite.h parasiteF.h parasiteP.h + + +-libgimp_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) ++libgimp_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) + +-libgimp_la_LIBADD = $(GLIB_LIBS) -lm ++libgimp_la_LIBADD = $(GTK_LIBS) -lm + +-libgimpui_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) ++libgimpui_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) + + libgimpui_la_LIBADD = $(GTK_LIBS) + mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs --- /usr/ports.ref/graphics/gimp1/pkg/MESSAGE Wed Sep 30 16:51:45 1998 +++ graphics/gimp1/pkg/MESSAGE Mon May 10 02:43:23 1999 @@ -1,7 +0,0 @@ -********************************************************* -* * -* If you want to use autoconf with gimp, * -* Please copy gimp.m4 to /usr/local/share/aclocal * -* by yourself, thanks. * -* * -********************************************************* --- /usr/ports.ref/graphics/gimp1/pkg/PLIST Mon Feb 22 01:11:38 1999 +++ graphics/gimp1/pkg/PLIST Sat May 22 22:55:18 1999 @@ -1,7 +1,5 @@ bin/gimp bin/gimptool -include/gpc.h -include/megawidget.h include/gck/gck.h include/gck/gckcolor.h include/gck/gckcommon.h @@ -11,43 +9,47 @@ include/gck/gcktypes.h include/gck/gckui.h include/gck/gckvector.h +include/gpc.h include/libgimp/color_selector.h include/libgimp/gimp.h -include/libgimp/gimpentry.h +include/libgimp/gimpchainbutton.h include/libgimp/gimpenums.h +include/libgimp/gimpenv.h include/libgimp/gimpfeatures.h +include/libgimp/gimpfileselection.h include/libgimp/gimpintl.h include/libgimp/gimpmatrix.h include/libgimp/gimpmenu.h include/libgimp/gimpmodule.h +include/libgimp/gimppatheditor.h +include/libgimp/gimpsizeentry.h include/libgimp/gimpui.h +include/libgimp/gimpunit.h +include/libgimp/gimpunitmenu.h include/libgimp/gserialize.h include/libgimp/parasite.h include/libgimp/parasiteF.h include/libgimp/parasiteP.h -lib/libgck-1.1.so.2 +include/megawidget.h lib/libgck.a -lib/libgck.la -lib/libgck.so.2 -lib/libgimp-1.1.so.2 +lib/libgck.so +lib/libgck.so.5 lib/libgimp.a -lib/libgimp.la -lib/libgimp.so.2 -lib/libgimpui-1.1.so.2 +lib/libgimp.so +lib/libgimp.so.5 lib/libgimpui.a -lib/libgimpui.la -lib/libgimpui.so.2 +lib/libgimpui.so +lib/libgimpui.so.5 lib/libgpc.a lib/libmegawidget.a @unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R @exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B -libexec/gimp/1.1/modules/libcolorsel_gtk.a -libexec/gimp/1.1/modules/libcolorsel_gtk.la -libexec/gimp/1.1/modules/libcolorsel_triangle.a -libexec/gimp/1.1/modules/libcolorsel_triangle.la +libexec/gimp/1.1/modules/libcolorsel_gtk.so +libexec/gimp/1.1/modules/libcolorsel_triangle.so libexec/gimp/1.1/plug-ins/AlienMap libexec/gimp/1.1/plug-ins/CEL libexec/gimp/1.1/plug-ins/CML_explorer +libexec/gimp/1.1/plug-ins/FractalExplorer libexec/gimp/1.1/plug-ins/Lighting libexec/gimp/1.1/plug-ins/MapObject libexec/gimp/1.1/plug-ins/aa @@ -88,14 +90,18 @@ libexec/gimp/1.1/plug-ins/flarefx libexec/gimp/1.1/plug-ins/fp libexec/gimp/1.1/plug-ins/fractaltrace +libexec/gimp/1.1/plug-ins/gap_filter +libexec/gimp/1.1/plug-ins/gap_plugins libexec/gimp/1.1/plug-ins/gauss_iir libexec/gimp/1.1/plug-ins/gauss_rle libexec/gimp/1.1/plug-ins/gbr +libexec/gimp/1.1/plug-ins/gdyntext libexec/gimp/1.1/plug-ins/gee libexec/gimp/1.1/plug-ins/gfig libexec/gimp/1.1/plug-ins/gfli libexec/gimp/1.1/plug-ins/gicon libexec/gimp/1.1/plug-ins/gif +libexec/gimp/1.1/plug-ins/gifload libexec/gimp/1.1/plug-ins/glasstile libexec/gimp/1.1/plug-ins/gqbist libexec/gimp/1.1/plug-ins/gradmap @@ -142,6 +148,7 @@ libexec/gimp/1.1/plug-ins/ps libexec/gimp/1.1/plug-ins/psd libexec/gimp/1.1/plug-ins/randomize +libexec/gimp/1.1/plug-ins/rcm libexec/gimp/1.1/plug-ins/ripple libexec/gimp/1.1/plug-ins/rotate libexec/gimp/1.1/plug-ins/rotators @@ -155,7 +162,6 @@ libexec/gimp/1.1/plug-ins/sinus libexec/gimp/1.1/plug-ins/smooth_palette libexec/gimp/1.1/plug-ins/snoise -libexec/gimp/1.1/plug-ins/snp libexec/gimp/1.1/plug-ins/sobel libexec/gimp/1.1/plug-ins/sparkle libexec/gimp/1.1/plug-ins/spread @@ -171,15 +177,18 @@ libexec/gimp/1.1/plug-ins/video libexec/gimp/1.1/plug-ins/vinvert libexec/gimp/1.1/plug-ins/vpropagate -libexec/gimp/1.1/plug-ins/waves libexec/gimp/1.1/plug-ins/waterselect +libexec/gimp/1.1/plug-ins/waves libexec/gimp/1.1/plug-ins/webbrowser libexec/gimp/1.1/plug-ins/whirlpinch libexec/gimp/1.1/plug-ins/wind +libexec/gimp/1.1/plug-ins/wmf libexec/gimp/1.1/plug-ins/xbm +libexec/gimp/1.1/plug-ins/xjt libexec/gimp/1.1/plug-ins/xpm libexec/gimp/1.1/plug-ins/xwd libexec/gimp/1.1/plug-ins/zealouscrop +share/aclocal/gimp.m4 share/gimp/brushes/10x10square.gbr share/gimp/brushes/10x10squareBlur.gbr share/gimp/brushes/11circle.gbr @@ -221,6 +230,39 @@ share/gimp/brushes/round1.vbr share/gimp/brushes/thegimp.gbr share/gimp/brushes/xcf.gbr +share/gimp/fractalexplorer/Asteroid_Field +share/gimp/fractalexplorer/Bar_Code_Label +share/gimp/fractalexplorer/Beauty_of_Nature +share/gimp/fractalexplorer/Blue_Curtain +share/gimp/fractalexplorer/Car_Track +share/gimp/fractalexplorer/Energetic_Diamond +share/gimp/fractalexplorer/Explosive +share/gimp/fractalexplorer/Flower +share/gimp/fractalexplorer/Fragments +share/gimp/fractalexplorer/Hemp +share/gimp/fractalexplorer/High_Voltage +share/gimp/fractalexplorer/Hoops +share/gimp/fractalexplorer/Ice_Crystal +share/gimp/fractalexplorer/Leaves +share/gimp/fractalexplorer/Lightning +share/gimp/fractalexplorer/Mandelbrot +share/gimp/fractalexplorer/Marble +share/gimp/fractalexplorer/Marble2 +share/gimp/fractalexplorer/Medusa +share/gimp/fractalexplorer/Nautilus +share/gimp/fractalexplorer/Nebula +share/gimp/fractalexplorer/Plant +share/gimp/fractalexplorer/Rose +share/gimp/fractalexplorer/Saturn +share/gimp/fractalexplorer/Snow_Crystal +share/gimp/fractalexplorer/Soma +share/gimp/fractalexplorer/Spark +share/gimp/fractalexplorer/Suns +share/gimp/fractalexplorer/Tentacles +share/gimp/fractalexplorer/The_Green_Place +share/gimp/fractalexplorer/Wave +share/gimp/fractalexplorer/Wood +share/gimp/fractalexplorer/Zooming_Circle share/gimp/gfig/A_star share/gimp/gfig/curves share/gimp/gfig/polys @@ -231,6 +273,12 @@ share/gimp/gfig/sprial share/gimp/gfig/star2 share/gimp/gfig/stars +share/gimp/gimp1_1_splash.ppm +share/gimp/gimp_logo.ppm +share/gimp/gimp_splash.ppm +share/gimp/gimp_tips.txt +share/gimp/gimprc +share/gimp/gimprc_user share/gimp/gradients/Abstract_1 share/gimp/gradients/Abstract_2 share/gimp/gradients/Abstract_3 @@ -273,10 +321,10 @@ share/gimp/gradients/Golden share/gimp/gradients/Greens share/gimp/gradients/Horizon_1 -share/gimp/gradients/Land_1 -share/gimp/gradients/Land_and_Sea share/gimp/gradients/Horizon_2 share/gimp/gradients/Incandescent +share/gimp/gradients/Land_1 +share/gimp/gradients/Land_and_Sea share/gimp/gradients/Metallic_Something share/gimp/gradients/Mexican_flag share/gimp/gradients/Mexican_flag_smooth @@ -309,6 +357,8 @@ share/gimp/gradients/Wood_2 share/gimp/gradients/Yellow_Contrast share/gimp/gradients/Yellow_Orange +share/gimp/gtkrc +share/gimp/gtkrc.forest2 share/gimp/palettes/Bears share/gimp/palettes/Bgold share/gimp/palettes/Blues @@ -336,8 +386,8 @@ share/gimp/palettes/Named_Colors share/gimp/palettes/News3 share/gimp/palettes/Op2 -share/gimp/palettes/Pastels share/gimp/palettes/Paintjet +share/gimp/palettes/Pastels share/gimp/palettes/Plasma share/gimp/palettes/Reds share/gimp/palettes/Reds_And_Purples @@ -392,8 +442,8 @@ share/gimp/patterns/sky.pat share/gimp/patterns/slate.pat share/gimp/patterns/sm_squares.pat -share/gimp/patterns/stone33.pat share/gimp/patterns/starfield.pat +share/gimp/patterns/stone33.pat share/gimp/patterns/terra.pat share/gimp/patterns/walnut.pat share/gimp/patterns/warning.pat @@ -402,6 +452,7 @@ share/gimp/patterns/wood3.pat share/gimp/patterns/wood4.pat share/gimp/patterns/wood5.pat +share/gimp/ps-menurc share/gimp/scripts/3d-outline.scm share/gimp/scripts/3dTruchet.scm share/gimp/scripts/add-bevel.scm @@ -470,6 +521,7 @@ share/gimp/scripts/rendermap.scm share/gimp/scripts/ripply-anim.scm share/gimp/scripts/round-corners.scm +share/gimp/scripts/sel-to-anim-img.scm share/gimp/scripts/select_to_brush.scm share/gimp/scripts/select_to_image.scm share/gimp/scripts/selection-round.scm @@ -499,15 +551,7 @@ share/gimp/scripts/weave.scm share/gimp/scripts/web-browser.scm share/gimp/scripts/xach-effect.scm -share/gimp/gimp1_1_splash.ppm -share/gimp/gimp_logo.ppm -share/gimp/gimp_splash.ppm -share/gimp/gimp_tips.txt -share/gimp/gimprc -share/gimp/gimprc_user -share/gimp/gtkrc -share/gimp/gtkrc.forest2 -share/gimp/ps-menurc +share/gimp/unitrc share/gimp/user_install share/locale/de/LC_MESSAGES/gimp.mo share/locale/fi/LC_MESSAGES/gimp.mo @@ -518,17 +562,20 @@ share/locale/ko/LC_MESSAGES/gimp.mo share/locale/nl/LC_MESSAGES/gimp.mo share/locale/pl/LC_MESSAGES/gimp.mo +share/locale/ru/LC_MESSAGES/gimp.mo share/locale/sv/LC_MESSAGES/gimp.mo -@dirrm libexec/gimp/1.1/modules +@dirrm share/gimp/scripts +@dirrm share/gimp/patterns +@dirrm share/gimp/palettes +@dirrm share/gimp/gradients +@dirrm share/gimp/gfig +@dirrm share/gimp/fractalexplorer +@dirrm share/gimp/brushes +@dirrm share/gimp @dirrm libexec/gimp/1.1/plug-ins +@dirrm libexec/gimp/1.1/modules @dirrm libexec/gimp/1.1 @dirrm libexec/gimp @dirrm include/libgimp @dirrm include/gck -@dirrm share/gimp/brushes -@dirrm share/gimp/gfig -@dirrm share/gimp/gradients -@dirrm share/gimp/palettes -@dirrm share/gimp/patterns -@dirrm share/gimp/scripts -@dirrm share/gimp +@unexec rmdir %D/share/aclocal 2>/dev/null || true >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 May 22 17:20:31 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A334115101 for ; Sat, 22 May 1999 17:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA67112; Sat, 22 May 1999 17:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 48AF314FD4 for ; Sat, 22 May 1999 17:17:14 -0700 (PDT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by shale.csir.co.za (8.9.3/8.9.3) id CAA52713; Sun, 23 May 1999 02:17:12 +0200 (SAT) (envelope-from reg) Message-Id: <199905230017.CAA52713@shale.csir.co.za> Date: Sun, 23 May 1999 02:17:12 +0200 (SAT) From: reg@shale.csir.co.za Reply-To: reg@shale.csir.co.za To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11847: Port update: misc/mc Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11847 >Category: ports >Synopsis: Port update: misc/mc >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 May 22 17:20:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jeremy Lea >Release: FreeBSD 4.0-CURRENT i386 >Organization: Arb's Inc. >Environment: FreeBSD Ports collection. >Description: Upgrade to 4.5.31. Misc clean-ups. >How-To-Repeat: >Fix: misc/mc: Upgrade from 4.5.23 to 4.5.31 Changes: Makefile files/md5 patches/patch-aa patches/patch-ab patches/patch-ac patches/patch-af pkg/PLIST Adds : Removes: patches/patch-ae patches/patch-aj --- /usr/ports.ref/misc/mc/Makefile Thu Apr 8 22:40:15 1999 +++ misc/mc/Makefile Tue May 11 23:51:37 1999 @@ -1,31 +1,33 @@ # New ports collection makefile for: mc -# Version required: 4.5.23 +# Version required: 4.5.31 # Date created: 15 Jul 1995 # Whom: torstenb@FreeBSD.ORG # # $Id: Makefile,v 1.31 1999/04/08 18:08:35 steve Exp $ # -DISTNAME= mc-4.5.23 +DISTNAME= mc-4.5.31 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/mc MAINTAINER= reg@shale.csir.co.za -LIB_DEPENDS= glib12.1:${PORTSDIR}/devel/glib12 \ +LIB_DEPENDS= glib12.2:${PORTSDIR}/devel/glib12 \ intl.1:${PORTSDIR}/devel/gettext .if defined(USE_NCURSES_PORT) LIB_DEPENDS+= ncurses.4:${PORTSDIR}/devel/ncurses .endif +GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config + USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-ncurses --without-gnome --without-edit CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ MAKE="gmake" \ - GLIB_CONFIG="${LOCALBASE}/bin/glib12-config" \ + GLIB_CONFIG="${GLIB_CONFIG}" \ LIBS="-L${LOCALBASE}/lib" MAN1= midc.1 --- /usr/ports.ref/misc/mc/files/md5 Mon Mar 15 10:50:37 1999 +++ misc/mc/files/md5 Wed May 12 00:01:40 1999 @@ -1 +1 @@ -MD5 (mc-4.5.23.tar.gz) = 9953d8a88957e814a25e8ee364739318 +MD5 (mc-4.5.31.tar.gz) = ac1e86c7cba7584c7ab7dd1ef5fc28cf --- /usr/ports.ref/misc/mc/patches/patch-aa Sun Jan 31 20:12:49 1999 +++ misc/mc/patches/patch-aa Sun May 9 16:05:52 1999 @@ -1,6 +1,6 @@ ---- configure.orig Tue Jan 19 00:44:07 1999 -+++ configure Fri Jan 29 16:51:46 1999 -@@ -3188,15 +3188,15 @@ +--- configure.orig Sun Apr 11 04:38:29 1999 ++++ configure Sun May 9 15:58:08 1999 +@@ -3267,15 +3267,15 @@ fi @@ -10,19 +10,17 @@ INSTOBJEXT=.mo DATADIRNAME=share - INTLDEPS='$(top_builddir)/intl/libintl.a' -- INTLLIBS=$INTLDEPS -- LIBS=`echo $LIBS | sed -e 's/-lintl//'` ++ INTLDEPS='-lintl' + INTLLIBS=$INTLDEPS + LIBS=`echo $LIBS | sed -e 's/-lintl//'` - nls_cv_header_intl=intl/libintl.h - nls_cv_header_libgt=intl/libgettext.h -+# INTLDEPS='$(top_builddir)/intl/libintl.a' -+# INTLLIBS=$INTLDEPS -+# LIBS=`echo $LIBS | sed -e 's/-lintl//'` +# nls_cv_header_intl=intl/libintl.h +# nls_cv_header_libgt=intl/libgettext.h fi if test "$XGETTEXT" != ":"; then -@@ -10359,13 +10359,13 @@ +@@ -10524,13 +10524,13 @@ if $search_ncurses then @@ -41,7 +39,7 @@ cat >> confdefs.h <<\EOF #define HAS_CURSES 1 EOF -@@ -10381,13 +10381,13 @@ +@@ -10546,13 +10546,13 @@ if $search_ncurses then @@ -60,7 +58,7 @@ cat >> confdefs.h <<\EOF #define HAS_CURSES 1 EOF -@@ -10403,13 +10403,13 @@ +@@ -10568,13 +10568,13 @@ if $search_ncurses then @@ -79,7 +77,7 @@ cat >> confdefs.h <<\EOF #define HAS_CURSES 1 EOF -@@ -10425,13 +10425,13 @@ +@@ -10590,13 +10590,13 @@ if $search_ncurses then @@ -98,27 +96,27 @@ cat >> confdefs.h <<\EOF #define HAS_CURSES 1 EOF -@@ -10676,6 +10676,8 @@ - fi - done +@@ -10655,6 +10655,8 @@ + fi + fi +CFLAGS="$CFLAGS $CURSES_INCLUDEDIR" +LIBS="$LIBS $CURSES_LIBS" - if test "x$screen_manager" = "xunknown"; then - cat >> confdefs.h <<\EOF -@@ -11212,7 +11214,7 @@ - vfs/extfs/ftplist vfs/extfs/uzip vfs/extfs/uzoo vfs/extfs/lslR - vfs/extfs/ulha vfs/extfs/ucpio vfs/extfs/deb vfs/extfs/urar vfs/extfs/uar + if $search_ncurses + then +@@ -11465,7 +11467,7 @@ + vfs/extfs/ftplist vfs/extfs/uzip vfs/extfs/uzoo vfs/extfs/lslR vfs/extfs/ulha + vfs/extfs/uha vfs/extfs/ucpio vfs/extfs/deb vfs/extfs/urar vfs/extfs/uar -doc/mc.1 doc/mcedit.1 doc/mcserv.8 +doc/mc.1 doc/mcserv.8 intl/Makefile po/Makefile.in config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 -@@ -11423,7 +11425,7 @@ - vfs/extfs/ftplist vfs/extfs/uzip vfs/extfs/uzoo vfs/extfs/lslR - vfs/extfs/ulha vfs/extfs/ucpio vfs/extfs/deb vfs/extfs/urar vfs/extfs/uar +@@ -11684,7 +11686,7 @@ + vfs/extfs/ftplist vfs/extfs/uzip vfs/extfs/uzoo vfs/extfs/lslR vfs/extfs/ulha + vfs/extfs/uha vfs/extfs/ucpio vfs/extfs/deb vfs/extfs/urar vfs/extfs/uar -doc/mc.1 doc/mcedit.1 doc/mcserv.8 +doc/mc.1 doc/mcserv.8 --- /usr/ports.ref/misc/mc/patches/patch-ab Sun Jan 31 20:12:49 1999 +++ misc/mc/patches/patch-ab Wed Apr 7 23:38:22 1999 @@ -1,6 +1,17 @@ ---- vfs/Make-mc.in.orig Tue Jan 19 00:44:08 1999 -+++ vfs/Make-mc.in Tue Jan 26 19:26:43 1999 -@@ -180,20 +180,20 @@ +--- vfs/Make-mc.in.orig Tue Mar 30 08:34:34 1999 ++++ vfs/Make-mc.in Wed Apr 7 23:37:58 1999 +@@ -13,8 +13,9 @@ + DEFS = $(XDEFS) + LIBS = @LINTL@ @SHADOWLIB@ $(XLIBS) @TERMNET@ @PAMLIBS@ @LCRYPT@ $(XLIB) + INSTALL = @INSTALL@ +-INSTALL_PROGRAM = @INSTALL_PROGRAM@ -m 755 ++INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_DATA = @INSTALL_DATA@ ++INSTALL_SCRIPT = @INSTALL_SCRIPT@ + AR = @AR@ + + # +@@ -185,7 +186,7 @@ install: @mcserv@ install.extfs -(if test x@mcserv@ != x; then \ @@ -9,19 +20,17 @@ fi) install.extfs: - for I in $(EXTFS_MISC); do \ -- $(INSTALL_DATA) $(srcdir)/extfs/$$I \ -+ $(INSTALL_DATA) extfs/$$I \ - $(DESTDIR)$(libdir)/extfs/$$I; \ +@@ -194,11 +195,11 @@ + $(DESTDIR)$(extfsdir)/$$I; \ done for I in $(EXTFS_CONST) ; do \ - $(INSTALL_PROGRAM) $(srcdir)/extfs/$$I \ -+ $(INSTALL_DATA) -m 555 extfs/$$I \ - $(DESTDIR)$(libdir)/extfs/$$I; \ ++ $(INSTALL_SCRIPT) $(srcdir)/extfs/$$I \ + $(DESTDIR)$(extfsdir)/$$I; \ done for I in $(EXTFS_OUT) ; do \ - $(INSTALL_PROGRAM) $(builddir)/vfs/extfs/$$I \ -+ $(INSTALL_DATA) -m 555 extfs/$$I \ - $(DESTDIR)$(libdir)/extfs/$$I; \ ++ $(INSTALL_SCRIPT) $(builddir)/vfs/extfs/$$I \ + $(DESTDIR)$(extfsdir)/$$I; \ done --- /usr/ports.ref/misc/mc/patches/patch-ac Mon Mar 15 10:50:38 1999 +++ misc/mc/patches/patch-ac Wed Apr 7 23:40:23 1999 @@ -1,23 +1,23 @@ ---- Make.common.in.orig Sat Feb 27 02:25:11 1999 -+++ Make.common.in Sat Feb 27 21:01:05 1999 +--- Make.common.in.orig Tue Mar 30 08:34:33 1999 ++++ Make.common.in Wed Apr 7 23:40:05 1999 @@ -17,9 +17,10 @@ builddir = @builddir@ bindir = @bindir@ +sbindir = $(exec_prefix)/sbin sysconfdir = @sysconfdir@ - corbadir = $(sysconfdir)/CORBA/servers --libdir = $(exec_prefix)/lib/mc -+libdir = $(exec_prefix)/share/mc - idldir = $(prefix)/share/idl - suppbindir = $(libdir)/bin - gnewdir = $(prefix)/share/mc/templates -@@ -60,7 +61,7 @@ + datadir = @datadir@ +-libdir = @libdir@ ++libdir = @datadir@ + mandir = @mandir@ + gnomeicondir = @gnomeicondir@ + xv_bindir = @xv_bindir@ +@@ -64,7 +65,7 @@ # No way, to make make happy (except GNU), we cannot use := to append # something to these, so that's why there is a leading _ XCFLAGS = @CFLAGS@ --XCPPFLAGS = @CPPFLAGS@ @MCCPPFLAGS@ -I.. -DBINDIR=\""$(bindir)/"\" -DLIBDIR=\""$(libdir)/"\" -DICONDIR=\""$(icondir)/"\" $(XINC) -DLOCALEDIR=\""$(localedir)/"\" -DCONFDIR=\""$(confdir)/"\" -+XCPPFLAGS = @CPPFLAGS@ @MCCPPFLAGS@ -I.. -DSBINDIR=\""$(sbindir)/"\" -DBINDIR=\""$(bindir)/"\" -DLIBDIR=\""$(libdir)/"\" -DICONDIR=\""$(icondir)/"\" $(XINC) -DLOCALEDIR=\""$(localedir)/"\" -DCONFDIR=\""$(confdir)/"\" +-XCPPFLAGS = @CPPFLAGS@ @MCCPPFLAGS@ -I.. -DBINDIR=\""$(bindir)/"\" -DLIBDIR=\""$(mclibdir)/"\" -DICONDIR=\""$(icondir)/"\" $(XINC) -DLOCALEDIR=\""$(localedir)/"\" -DCONFDIR=\""$(confdir)/"\" -DDESKTOP_INIT_DIR=\""$(desktopdir)/"\" ++XCPPFLAGS = @CPPFLAGS@ @MCCPPFLAGS@ -I.. -DSBINDIR=\""$(sbindir)/"\" -DBINDIR=\""$(bindir)/"\" -DLIBDIR=\""$(mclibdir)/"\" -DICONDIR=\""$(icondir)/"\" $(XINC) -DLOCALEDIR=\""$(localedir)/"\" -DCONFDIR=\""$(confdir)/"\" -DDESKTOP_INIT_DIR=\""$(desktopdir)/"\" XLDFLAGS = @LDFLAGS@ XDEFS = @DEFS@ XLIBS = @LIBS@ --- /usr/ports.ref/misc/mc/patches/patch-ae Sun Dec 6 11:39:22 1998 +++ misc/mc/patches/patch-ae Wed Apr 7 23:40:48 1999 @@ -1,8 +0,0 @@ ---- mcfn_install.in.orig Sun Dec 6 12:07:30 1998 -+++ mcfn_install.in Sun Dec 6 12:07:37 1998 -@@ -1,4 +1,4 @@ --#/bin/sh -+#!/bin/sh - # - prefix=@prefix@ - if test -n `echo $prefix | grep prefix`; then --- /usr/ports.ref/misc/mc/patches/patch-af Mon Mar 15 10:50:38 1999 +++ misc/mc/patches/patch-af Wed May 12 00:12:19 1999 @@ -1,31 +1,40 @@ ---- Makefile.in.orig Sat Feb 27 02:25:11 1999 -+++ Makefile.in Sat Feb 27 21:02:30 1999 +--- Makefile.in.orig Tue Mar 30 08:34:33 1999 ++++ Makefile.in Wed Apr 7 23:48:54 1999 @@ -5,7 +5,7 @@ @MCFGR@@MCF@ foreigndirs=pc --codedirs=vfs lib doc slang gtkedit edit src gnome new_icons icons idl -+codedirs=vfs lib doc slang edit src +-codedirs=vfs lib doc slang gtkedit edit src gnome new_icons icons idl syntax ++codedirs=vfs lib doc slang edit src syntax unixdirs=intl $(codedirs) @POSUB@ alldirs=$(unixdirs) $(foreigndirs) subdirs=$(alldirs) -@@ -46,7 +46,7 @@ +@@ -13,6 +13,7 @@ + INSTALL = @INSTALL@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_DATA = @INSTALL_DATA@ ++INSTALL_SCRIPT = @INSTALL_SCRIPT@ + + DISTMAIN = configure configure.in NEWS README INSTALL INSTALL.FAST \ + Makefile.in FAQ COPYING create_vcs install-sh \ +@@ -46,7 +47,7 @@ install: installdirs @for I in $(unixdirs); do cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1; cd ..; done - $(INSTALL_DATA) $(srcdir)/FAQ $(DESTDIR)$(libdir)/FAQ + $(INSTALL_DATA) $(srcdir)/FAQ $(DESTDIR)$(mclibdir)/FAQ - $(INSTALL_PROGRAM) mcfn_install $(DESTDIR)$(suppbindir)/mcfn_install -+ $(INSTALL_DATA) mcfn_install $(DESTDIR)$(suppbindir)/mcfn_install ++ $(INSTALL_SCRIPT) mcfn_install $(DESTDIR)$(suppbindir)/mcfn_install chmod +x $(DESTDIR)$(suppbindir)/mcfn_install @echo "Please verify that the configuration values are correctly" - @echo "set in the mc.ext file in $(libdir)" -@@ -58,9 +58,8 @@ + @echo "set in the mc.ext file in $(mclibdir)" +@@ -58,9 +59,9 @@ installdirs: - $(MKINSTALLDIRS) $(DESTDIR)$(bindir) $(DESTDIR)$(libdir) + $(MKINSTALLDIRS) $(DESTDIR)$(bindir) $(DESTDIR)$(mclibdir) $(MKINSTALLDIRS) $(DESTDIR)$(mandir) $(DESTDIR)$(man8dir) - $(MKINSTALLDIRS) $(DESTDIR)$(icondir) $(DESTDIR)$(suppbindir) + $(MKINSTALLDIRS) $(DESTDIR)$(suppbindir) $(MKINSTALLDIRS) $(DESTDIR)$(tidir) $(DESTDIR)$(extfsdir) -- $(MKINSTALLDIRS) $(DESTDIR)$(idldir) +- $(MKINSTALLDIRS) $(DESTDIR)$(idldir) $(DESTDIR)$(syntaxdir) ++ $(MKINSTALLDIRS) $(DESTDIR)$(syntaxdir) mcfninstall: -/bin/sh ./mcfn_install @@ -53,13 +62,12 @@ --- lib/Makefile.in.orig Wed Jan 27 01:10:33 1999 +++ lib/Makefile.in Wed Jan 27 01:10:59 1999 -@@ -13,7 +13,8 @@ +@@ -13,7 +13,7 @@ # LIBFILES_IN = mc.ext.in mc-gnome.ext.in -LIBFILES_OUT = mc.ext mc-gnome.ext +LIBFILES_OUT = mc.ext -+#LIBFILES_OUT = mc.ext mc-gnome.ext LIBFILES_CONST = mc.hint mc.lib mc.menu TIFILES = README.xterm linux.ti xterm.ad xterm.ti ansi.ti vt100.ti xterm.tcap DISTLIB = $(LIBFILES_IN) $(LIBFILES_CONST) $(TIFILES) \ --- /usr/ports.ref/misc/mc/patches/patch-aj Mon Feb 22 14:14:46 1999 +++ misc/mc/patches/patch-aj Wed May 12 00:11:32 1999 @@ -1,11 +0,0 @@ ---- po/Makefile.in.in.orig Mon Feb 1 01:55:19 1999 -+++ po/Makefile.in.in Tue Feb 2 15:08:38 1999 -@@ -11,7 +11,7 @@ - - prefix = $(DESTDIR)@prefix@ - exec_prefix = $(DESTDIR)@exec_prefix@ --datadir = $(prefix)/@DATADIRNAME@ -+datadir = $(prefix)/share - localedir = $(datadir)/locale - gnulocaledir = $(prefix)/share/locale - gettextsrcdir = $(prefix)/share/gettext/po --- /usr/ports.ref/misc/mc/pkg/PLIST Mon Mar 15 10:50:38 1999 +++ misc/mc/pkg/PLIST Wed May 12 00:43:36 1999 @@ -6,14 +6,18 @@ share/locale/da/LC_MESSAGES/mc.mo share/locale/de/LC_MESSAGES/mc.mo share/locale/es/LC_MESSAGES/mc.mo +share/locale/es_ES/LC_MESSAGES/mc.mo share/locale/fr/LC_MESSAGES/mc.mo share/locale/it/LC_MESSAGES/mc.mo share/locale/ko/LC_MESSAGES/mc.mo share/locale/no/LC_MESSAGES/mc.mo share/locale/pl/LC_MESSAGES/mc.mo +share/locale/ro/LC_MESSAGES/mc.mo share/locale/ru/LC_MESSAGES/mc.mo share/mc/FAQ share/mc/bin/mcfn_install +share/mc/desktop-scripts/README.desktop +share/mc/desktop-scripts/startup.links share/mc/extfs/README share/mc/extfs/a share/mc/extfs/deb @@ -28,8 +32,11 @@ share/mc/extfs/sfs.ini share/mc/extfs/trpm share/mc/extfs/uar +share/mc/extfs/uarj share/mc/extfs/ucpio +share/mc/extfs/uha share/mc/extfs/ulha share/mc/extfs/urar share/mc/extfs/uzip share/mc/extfs/uzoo @@ -38,6 +45,22 @@ share/mc/mc.hlp share/mc/mc.lib share/mc/mc.menu +share/mc/syntax/c.syntax +share/mc/syntax/changelog.syntax +share/mc/syntax/html.syntax +share/mc/syntax/java.syntax +share/mc/syntax/latex.syntax +share/mc/syntax/lsm.syntax +share/mc/syntax/makefile.syntax +share/mc/syntax/ml.syntax +share/mc/syntax/nroff.syntax +share/mc/syntax/pascal.syntax +share/mc/syntax/perl.syntax +share/mc/syntax/python.syntax +share/mc/syntax/sh.syntax +share/mc/syntax/smalltalk.syntax share/mc/term/README.xterm share/mc/term/ansi.ti share/mc/term/linux.ti @@ -46,6 +69,8 @@ share/mc/term/xterm.tcap share/mc/term/xterm.ti @dirrm share/mc/term +@dirrm share/mc/syntax @dirrm share/mc/extfs +@dirrm share/mc/desktop-scripts @dirrm share/mc/bin @dirrm share/mc >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 May 22 17:50: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2121A1512A for ; Sat, 22 May 1999 17:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA68741; Sat, 22 May 1999 17:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 01CFC15126 for ; Sat, 22 May 1999 17:41:55 -0700 (PDT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by shale.csir.co.za (8.9.3/8.9.3) id CAA85299; Sun, 23 May 1999 02:41:53 +0200 (SAT) (envelope-from reg) Message-Id: <199905230041.CAA85299@shale.csir.co.za> Date: Sun, 23 May 1999 02:41:53 +0200 (SAT) From: reg@shale.csir.co.za Reply-To: reg@shale.csir.co.za To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11848: Port update: devel/glade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11848 >Category: ports >Synopsis: Port update: devel/glade >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 May 22 17:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jeremy Lea >Release: FreeBSD 4.0-CURRENT i386 >Organization: Arb's Inc. >Environment: FreeBSD Ports collection. >Description: Upgrade to 0.4.1, and use gtk12. Also USE_LIBTOOL. Maintainer not contacted. >How-To-Repeat: >Fix: devel/glade: Upgrade from 0.3.7 to 0.4.1 Changes: Makefile files/md5 pkg/PLIST Adds : Removes: --- /usr/ports.ref/devel/glade/Makefile Tue Mar 23 12:06:12 1999 +++ devel/glade/Makefile Sun May 23 01:57:32 1999 @@ -1,23 +1,27 @@ # New ports collection makefile for: glade -# Version required: 0.3.7 +# Version required: 0.4.1 # Date created: 29 June 1998 # Whom: Dom Mitchell # # $Id: Makefile,v 1.11 1999/03/19 04:39:47 nectar Exp $ # -DISTNAME= glade-0.3.7 +DISTNAME= glade-0.4.1 CATEGORIES= devel MASTER_SITES= http://glade.pn.org/ MAINTAINER= dom@myrddin.demon.co.uk -LIB_DEPENDS= gtk11.1:${PORTSDIR}/x11-toolkits/gtk11 \ - intl.1:${PORTSDIR}/devel/gettext +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 + +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config USE_X_PREFIX= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk11-config" +USE_LIBTOOL= yes +CONFIGURE_ARGS= --disable-gnome +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + GTK_CONFIG="${GTK_CONFIG}" \ + LIBS="-L${LOCALBASE}/libs" post-install: .if !defined(NOPORTDOCS) --- /usr/ports.ref/devel/glade/files/md5 Wed Nov 18 19:35:16 1998 +++ devel/glade/files/md5 Fri May 7 01:43:03 1999 @@ -1 +1 @@ -MD5 (glade-0.3.7.tar.gz) = b67748c00371e63da91509d3a690c474 +MD5 (glade-0.4.1.tar.gz) = 742a40580b3576d3ea17dd19643b1d45 --- /usr/ports.ref/devel/glade/pkg/PLIST Wed Nov 18 19:35:16 1998 +++ devel/glade/pkg/PLIST Sat May 8 17:48:19 1999 @@ -5,11 +5,13 @@ share/doc/glade/file_format.txt share/doc/glade/generic.txt share/doc/glade/manual.txt -share/doc/glade/portability.txt share/doc/glade/notes.txt +share/doc/glade/portability.txt share/doc/glade/source_code.txt share/locale/de/LC_MESSAGES/glade.mo share/locale/es/LC_MESSAGES/glade.mo share/locale/fr/LC_MESSAGES/glade.mo +share/locale/ja/LC_MESSAGES/glade.mo share/locale/pt_BR/LC_MESSAGES/glade.mo +share/locale/ru/LC_MESSAGES/glade.mo @dirrm share/doc/glade >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 May 22 18: 0:22 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A55AC15222 for ; Sat, 22 May 1999 18:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA69282; Sat, 22 May 1999 18:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id F097415101 for ; Sat, 22 May 1999 17:55:57 -0700 (PDT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by shale.csir.co.za (8.9.3/8.9.3) id CAA87943; Sun, 23 May 1999 02:55:54 +0200 (SAT) (envelope-from reg) Message-Id: <199905230055.CAA87943@shale.csir.co.za> Date: Sun, 23 May 1999 02:55:54 +0200 (SAT) From: reg@shale.csir.co.za Reply-To: reg@shale.csir.co.za To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11850: Port update: x11-toolkits/gtkstep Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11850 >Category: ports >Synopsis: Port update: x11-toolkits/gtkstep >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 May 22 18:00:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jeremy Lea >Release: FreeBSD 4.0-CURRENT i386 >Organization: Arb's Inc. >Environment: FreeBSD Ports collection. >Description: Upgrade to 1.5, and depend on GTK+ not Imlib. USE_LIBTOOL. Maintainer not contacted. >How-To-Repeat: >Fix: x11-toolkits/gtkstep: Upgrade from 1.4 to 1.5 Changes: Makefile files/md5 pkg/PLIST Adds : Removes: patches/patch-aa --- /usr/ports.ref/x11-toolkits/gtkstep/Makefile Thu Apr 22 14:58:54 1999 +++ x11-toolkits/gtkstep/Makefile Wed May 12 09:24:09 1999 @@ -1,25 +1,24 @@ # New ports collection makefile for: gtkstep -# Version required: 1.4 +# Version required: 1.5 # Date Created: 7 nov 98 # Whom: Gilad Rom # # $Id: Makefile,v 1.5 1999/04/22 06:49:17 nectar Exp $ # -DISTNAME= gtkstep-1.4 +DISTNAME= gtkstep-1.5 CATEGORIES= x11-toolkits MASTER_SITES= http://www-info2.informatik.uni-wuerzburg.de/mitarbeiter/ulli/gtkstep/ \ ftp://sunshine.informatik.uni-wuerzburg.de/pub/wmaker/gtkstep/ MAINTAINER= rom_glsa@ein-hashofet.co.il -LIB_DEPENDS= gdk_imlib.3:${PORTSDIR}/graphics/imlib +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 -USE_X_PREFIX= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk12-config" +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config -post-install: - @${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib +USE_X_PREFIX= yes +USE_LIBTOOL= yes +CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" .include --- /usr/ports.ref/x11-toolkits/gtkstep/files/md5 Thu Feb 18 13:55:32 1999 +++ x11-toolkits/gtkstep/files/md5 Mon Mar 29 02:59:06 1999 @@ -1 +1 @@ -MD5 (gtkstep-1.4.tar.gz) = 7cec05dbeed0e2f0053522e6f0e5b5f6 +MD5 (gtkstep-1.5.tar.gz) = 9027cb5178962acab816fbab9fc30086 --- /usr/ports.ref/x11-toolkits/gtkstep/patches/patch-aa Thu Feb 18 13:55:32 1999 +++ x11-toolkits/gtkstep/patches/patch-aa Wed May 12 09:23:49 1999 @@ -1,53 +0,0 @@ ---- ltmain.sh.orig Sat Dec 12 05:06:05 1998 -+++ ltmain.sh Mon Feb 1 03:38:36 1999 -@@ -1030,6 +1030,16 @@ - versuffix=".$current.$revision" - ;; - -+ freebsd) -+ version_vars="$version_vars major versuffix" -+ major=".$current" -+ if [ $PORTOBJFORMAT = elf ]; then -+ versuffix=".$current" -+ else -+ versuffix=".$current.$revision" -+ fi -+ ;; -+ - *) - $echo "$modename: unknown library version type \`$version_type'" 1>&2 - echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 ---- ltconfig.orig Sat Dec 12 05:06:05 1998 -+++ ltconfig Mon Feb 1 03:38:46 1999 -@@ -823,7 +823,7 @@ - ;; - - # FreeBSD 3, at last, uses gcc -shared to do shared libraries. -- freebsd3*) -+ freebsd*) - archive_cmds='$CC -shared -o $lib$libobjs' - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes -@@ -1160,10 +1160,21 @@ - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done' - ;; - --freebsd2* | freebsd3*) -+freebsd2*) - version_type=sunos - library_names_spec='${libname}${release}.so$versuffix $libname.so' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ ;; -+ -+freebsd*) -+ version_type=freebsd -+ library_names_spec='${libname}${release}.so$versuffix $libname.so' -+ if [ $PORTOBJFORMAT = elf ]; then -+ finish_cmds='PATH="\$PATH:/sbin" OBJFORMAT="$PORTOBJFORMAT" ldconfig -m $libdir' -+ else -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' -+ fi - shlibpath_var=LD_LIBRARY_PATH - ;; - --- /usr/ports.ref/x11-toolkits/gtkstep/pkg/PLIST Thu Feb 18 13:55:32 1999 +++ x11-toolkits/gtkstep/pkg/PLIST Wed May 12 09:28:00 1999 @@ -1,8 +1,6 @@ share/themes/Step/ICON.png share/themes/Step/README.html share/themes/Step/gtk/gtkrc -share/themes/engines/libstep.la share/themes/engines/libstep.so -share/themes/engines/libstep.so.0 @dirrm share/themes/Step/gtk @dirrm share/themes/Step >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 May 22 18: 0:24 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A7461522B for ; Sat, 22 May 1999 18:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA69291; Sat, 22 May 1999 18:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 965101518D for ; Sat, 22 May 1999 17:59:52 -0700 (PDT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by shale.csir.co.za (8.9.3/8.9.3) id CAA88499; Sun, 23 May 1999 02:59:50 +0200 (SAT) (envelope-from reg) Message-Id: <199905230059.CAA88499@shale.csir.co.za> Date: Sun, 23 May 1999 02:59:50 +0200 (SAT) From: reg@shale.csir.co.za Reply-To: reg@shale.csir.co.za To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11851: Port update: x11-toolkits/p5-GTK Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11851 >Category: ports >Synopsis: Port update: x11-toolkits/p5-GTK >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 May 22 18:00:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jeremy Lea >Release: FreeBSD 4.0-CURRENT i386 >Organization: Arb's Inc. >Environment: FreeBSD Ports collection. >Description: Upgrade to 0.5121, and use gtk12. In case anyone's counting, this only leaves net/yagirc which depends on gtk11 - it's been abandoned by it's author. >How-To-Repeat: >Fix: x11-toolkits/p5-Gtk: Upgrade from 0.4 to 0.5121 Changes: Makefile files/md5 patches/patch-aa pkg/PLIST Adds : Removes: patches/patch-ab --- /usr/ports.ref/x11-toolkits/p5-Gtk/Makefile Wed Mar 17 12:57:41 1999 +++ x11-toolkits/p5-Gtk/Makefile Mon May 10 01:36:20 1999 @@ -1,13 +1,13 @@ # New ports collection makefile for: p5-Gtk -# Version required: 0.4 +# Version required: 0.5121 # Date created: 28 Oct 1997 # Whom: Vanilla I. Shu # # $Id: Makefile,v 1.22 1999/03/15 18:30:06 nectar Exp $ # -DISTNAME= Gtk-0.4 -PKGNAME= p5-Gtk-0.4 +DISTNAME= Gtk-Perl-0.5121 +PKGNAME= p5-Gtk-0.5121 CATEGORIES= x11-toolkits lang perl5 MASTER_SITES= ftp://ftp.gtk.org/pub/gtk/perl/ \ ${MASTER_SITE_PERL_CPAN} @@ -15,16 +15,15 @@ MAINTAINER= vanilla@FreeBSD.ORG -LIB_DEPENDS= gtk11.1:${PORTSDIR}/x11-toolkits/gtk11 \ - gdk_imlib.3:${PORTSDIR}/graphics/imlib +LIB_DEPENDS= gdk_imlib.4:${PORTSDIR}/graphics/imlib USE_PERL5= YES -MAN3= GtkColorSelectButton.3 +MAN3= Gtk::GtkColorSelectButton.3 MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} do-configure: @ cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL \ - --with-gdkimlib + --with-gdkimlib --without-gnome .include --- /usr/ports.ref/x11-toolkits/p5-Gtk/files/md5 Fri Oct 9 17:59:17 1998 +++ x11-toolkits/p5-Gtk/files/md5 Fri May 7 01:48:47 1999 @@ -1 +1 @@ -MD5 (Gtk-0.4.tar.gz) = dcd4d31722f579dea3bce84ce82b8076 +MD5 (Gtk-Perl-0.5121.tar.gz) = 94fd8507302eb732117d029723364385 --- /usr/ports.ref/x11-toolkits/p5-Gtk/patches/patch-aa Fri Oct 9 17:59:17 1998 +++ x11-toolkits/p5-Gtk/patches/patch-aa Mon May 10 00:59:43 1999 @@ -1,24 +1,15 @@ --- Makefile.PL.orig Tue Sep 29 18:49:53 1998 +++ Makefile.PL Fri Oct 9 01:11:11 1998 -@@ -29,7 +29,7 @@ - # One can also 'source' in the shell the proper gnomeConf.sh file - # before running perl Makefile.PL. - if (!defined $ENV{GTKXMHTML_LIBS} || !defined $ENV{GNOMEUI_LIBS}) { -- foreach (qw{/opt/lib /usr/local/lib /usr/lib /usr/X11R6/lib /opt/gnome/lib }) { -+ foreach (qw{/usr/X11R6/share/gnome }) { - open(GNOMEC, "$_/gnomeConf.sh") || next; - my $f= join('', ); - close GNOMEC; @@ -43,10 +43,10 @@ @defines = (); -$libs = `gtk-config --libs`; -+$libs = `gtk11-config --libs`; ++$libs = `gtk12-config --libs`; $libs = "-L/usr/X11R6/lib -lgtk -lgdk -lglib -lX11 -lXext" if not defined $libs; -$inc = `gtk-config --cflags`; -+$inc = `gtk11-config --cflags`; ++$inc = `gtk12-config --cflags`; $libs =~ s/\s+/ /g; $inc =~ s/\s+/ /g; @@ -27,7 +18,7 @@ my($result); - $result = `gtk-config --version`; -+ $result = `gtk11-config --version`; ++ $result = `gtk12-config --version`; chomp $result; if (not defined $result) { --- /usr/ports.ref/x11-toolkits/p5-Gtk/patches/patch-ab Fri Oct 2 02:53:46 1998 +++ x11-toolkits/p5-Gtk/patches/patch-ab Mon May 10 01:01:15 1999 @@ -1,10 +0,0 @@ ---- config/pkg-gdkimlib.pl.orig Wed Sep 30 00:53:30 1998 -+++ config/pkg-gdkimlib.pl Wed Sep 30 00:53:43 1998 -@@ -3,6 +3,6 @@ - - # we need to know what libraries are used by the - # gdk_imlib lib we are going to link to.... --$libs =~ s/-l/-lgdk_imlib -lgif -ltiff -lpng -ljpeg -lz -l/; # hack hack -+$libs =~ s/-l/-lgdk_imlib -lgif -ltiff34 -lpng -ljpeg -lz -l/; # hack hack - - add_boot "Gtk::Gdk::ImlibImage"; --- /usr/ports.ref/x11-toolkits/p5-Gtk/pkg/PLIST Mon Jan 11 17:34:55 1999 +++ x11-toolkits/p5-Gtk/pkg/PLIST Mon May 10 01:52:52 1999 @@ -2,27 +2,13 @@ lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/Atoms.pm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/ColorSelectButton.pm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/Gdk.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/LogHandler.pm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/Types.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/Install/Files.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/Install/GdkTypes.h -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/Install/GtkDefs.h -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/Install/GtkTypemap -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/Install/GtkTypes.h -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/Install/MiscTypes.h -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/Install/PerlGtkExt.h -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/Install/gendefs.pl -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/Install/genext.pl -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/Install/pkg-gdkimlib.defs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/Install/pkg-gdkimlib.typemap -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/Install/pkg-gtk-1.1.defs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/Install/pkg-gtk.defs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/Install/pkg-gtk.typemap lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gtk/.packlist -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gtk/autosplit.ix +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gtk/Gdk/autosplit.ix lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gtk/Gtk.bs lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gtk/Gtk.so -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gtk/Gdk/autosplit.ix +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gtk/autosplit.ix @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gtk/Gdk @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gtk -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk/Install @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gtk >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 May 22 18:30: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1BA0C1514C for ; Sat, 22 May 1999 18:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA70818; Sat, 22 May 1999 18:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 4D74714E85 for ; Sat, 22 May 1999 18:26:58 -0700 (PDT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by shale.csir.co.za (8.9.3/8.9.3) id DAA10449; Sun, 23 May 1999 03:26:56 +0200 (SAT) (envelope-from reg) Message-Id: <199905230126.DAA10449@shale.csir.co.za> Date: Sun, 23 May 1999 03:26:56 +0200 (SAT) From: reg@shale.csir.co.za Reply-To: reg@shale.csir.co.za To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11853: Port update: net/yagirc Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11853 >Category: ports >Synopsis: Port update: net/yagirc >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 May 22 18:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jeremy Lea >Release: FreeBSD 4.0-CURRENT i386 >Organization: Arb's Inc. >Environment: FreeBSD Ports collection. >Description: Upgrade to 0.66.1. Kludge it to work with gtk12. This means that the glib11, gtk11 and glib11-devel ports can be removed (I think... :) >How-To-Repeat: >Fix: net/yagirc: Upgrade from 0.65.7 to 0.66.1 Changes: Makefile files/md5 patches/patch-aa pkg/PLIST Adds : patches/patch-ab patches/patch-ac Removes: --- /usr/ports.ref/net/yagirc/Makefile Wed Mar 17 12:52:16 1999 +++ net/yagirc/Makefile Sun May 23 03:18:23 1999 @@ -1,27 +1,29 @@ # New ports collection makefile for: yagirc -# Version required: 0.65.7 +# Version required: 0.66.1 # Date created: 6 July 1998 # Whom: mph # # $Id: Makefile,v 1.14 1999/03/15 18:30:05 nectar Exp $ # -DISTNAME= yagirc-0.65.7 +DISTNAME= yagirc-0.66.1 CATEGORIES= net MASTER_SITES= http://www.elpaso.net/~spoon/yagirc/ MAINTAINER= mph@freebsd.org -LIB_DEPENDS= gtk11.1:${PORTSDIR}/x11-toolkits/gtk11 \ - Imlib.3:${PORTSDIR}/graphics/imlib \ +LIB_DEPENDS= Imlib.4:${PORTSDIR}/graphics/imlib \ + Xpm.4:${PORTSDIR}/graphics/xpm \ esd.1:${PORTSDIR}/audio/esound -BROKEN= build +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config USE_GMAKE= yes USE_PERL5= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-gnome --disable-gtktest -CONFIGURE_ENV= PTHREAD_LIB="-lc_r" +USE_LIBTOOL= yes +CONFIGURE_ARGS= --disable-gnome --disable-pthread +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + GTK_CONFIG="${GTK_CONFIG}" \ + LIBS="-L${LOCALBASE}/lib" .include --- /usr/ports.ref/net/yagirc/files/md5 Thu Aug 27 07:15:05 1998 +++ net/yagirc/files/md5 Sun May 23 02:56:28 1999 @@ -1 +1,2 @@ -MD5 (yagirc-0.65.7.tar.gz) = 7f16475a56af4cb9e0ee7ebf38bcccc7 +MD5 (yagirc-0.66.1.tar.gz) = 034b73f35f7c8d3790ca695c73486106 +MD5 (gtkonly.patch) = dd7711efb875fee732a15b0681fc1b5b --- /usr/ports.ref/net/yagirc/patches/patch-aa Tue Aug 25 06:09:42 1998 +++ net/yagirc/patches/patch-aa Sun May 23 02:29:10 1999 @@ -1,178 +1,22 @@ ---- configure.orig Wed Aug 19 16:13:49 1998 -+++ configure Tue Aug 25 11:24:48 1998 -@@ -1666,7 +1666,7 @@ - - - --SCRIPT_PATH=`/bin/ls /usr/lib/perl5/*/*/CORE/EXTERN.h 2>/dev/null` -+SCRIPT_PATH=`/bin/ls /usr/local/lib/perl5/*/*/CORE/EXTERN.h 2>/dev/null` - - if [ _$SCRIPT_PATH = _ ] || [ ! -f $SCRIPT_PATH ]; then - SCRIPT_PATH=`locate CORE/EXTERN.h|grep /CORE$|grep perl5` -@@ -1769,18 +1769,18 @@ - if test x$gtk_config_exec_prefix != x ; then - gtk_config_args="$gtk_config_args --exec-prefix=$gtk_config_exec_prefix" - if test x${GTK_CONFIG+set} != xset ; then -- GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk-config -+ GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk11-config - fi - fi - if test x$gtk_config_prefix != x ; then - gtk_config_args="$gtk_config_args --prefix=$gtk_config_prefix" - if test x${GTK_CONFIG+set} != xset ; then -- GTK_CONFIG=$gtk_config_prefix/bin/gtk-config -+ GTK_CONFIG=$gtk_config_prefix/bin/gtk11-config - fi - fi - -- # Extract the first word of "gtk-config", so it can be a program name with args. --set dummy gtk-config; ac_word=$2 -+ # Extract the first word of "gtk11-config", so it can be a program name with args. -+set dummy gtk11-config; ac_word=$2 - echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 - echo "configure:1786: checking for $ac_word" >&5 - if eval "test \"`echo '$''{'ac_cv_path_GTK_CONFIG'+set}'`\" = set"; then -@@ -1861,16 +1861,16 @@ - (gtk_minor_version != $gtk_config_minor_version) || - (gtk_micro_version != $gtk_config_micro_version)) - { -- printf("\n*** 'gtk-config --version' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n", -+ printf("\n*** 'gtk11-config --version' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n", - $gtk_config_major_version, $gtk_config_minor_version, $gtk_config_micro_version, - gtk_major_version, gtk_minor_version, gtk_micro_version); -- printf ("*** was found! If gtk-config was correct, then it is best\n"); -+ printf ("*** was found! If gtk11-config was correct, then it is best\n"); - printf ("*** to remove the old version of GTK+. You may also be able to fix the error\n"); - printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n"); - printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n"); - printf("*** required on your system.\n"); -- printf("*** If gtk-config was wrong, set the environment variable GTK_CONFIG\n"); -- printf("*** to point to the correct copy of gtk-config, and remove the file config.cache\n"); -+ printf("*** If gtk11-config was wrong, set the environment variable GTK_CONFIG\n"); -+ printf("*** to point to the correct copy of gtk11-config, and remove the file config.cache\n"); - printf("*** before re-running configure\n"); - } - else -@@ -1890,10 +1890,10 @@ - printf("*** GTK+ is always available from ftp://ftp.gtk.org.\n"); - printf("***\n"); - printf("*** If you have already installed a sufficiently new version, this error\n"); -- printf("*** probably means that the wrong copy of the gtk-config shell script is\n"); -+ printf("*** probably means that the wrong copy of the gtk11-config shell script is\n"); - printf("*** being found. The easiest way to fix this is to remove the old version\n"); - printf("*** of GTK+, but you can also set the GTK_CONFIG environment to point to the\n"); -- printf("*** correct copy of gtk-config. (In this case, you will have to\n"); -+ printf("*** correct copy of gtk11-config. (In this case, you will have to\n"); - printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n"); - printf("*** so that the correct libraries are found at run-time))\n"); - } -@@ -1925,10 +1925,10 @@ - else - echo "$ac_t""no" 1>&6 - if test "$GTK_CONFIG" = "no" ; then -- echo "*** The gtk-config script installed by GTK could not be found" -+ echo "*** The gtk11mn:wq-config script installed by GTK could not be found" - echo "*** If GTK was installed in PREFIX, make sure PREFIX/bin is in" - echo "*** your path, or set the GTK_CONFIG environment variable to the" -- echo "*** full path to gtk-config." -+ echo "*** full path to gtk11-config." - else - if test -f conf.gtktest ; then - : -@@ -1970,7 +1970,7 @@ - echo "*** The test program failed to compile or link. See the file config.log for the" - echo "*** exact error that occured. This usually means GTK was incorrectly installed" - echo "*** or that you have moved GTK since it was installed. In the latter case, you" -- echo "*** may want to edit the gtk-config script: $GTK_CONFIG" -+ echo "*** may want to edit the gtk11-config script: $GTK_CONFIG" +--- configure.orig Sun May 23 02:28:26 1999 ++++ configure Sun May 23 02:28:56 1999 +@@ -3113,15 +3113,15 @@ fi - rm -f conftest* - CFLAGS="$ac_save_CFLAGS" -@@ -1979,7 +1979,7 @@ - fi - GTK_CFLAGS="" - GTK_LIBS="" -- { echo "configure: error: Cannot find GTK: Is gtk-config in path?" 1>&2; exit 1; } -+ { echo "configure: error: Cannot find GTK: Is gtk11-config in path?" 1>&2; exit 1; } - fi - - -@@ -2185,18 +2185,18 @@ - if test x$gtk_config_exec_prefix != x ; then - gtk_config_args="$gtk_config_args --exec-prefix=$gtk_config_exec_prefix" - if test x${GTK_CONFIG+set} != xset ; then -- GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk-config -+ GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk11-config - fi - fi - if test x$gtk_config_prefix != x ; then - gtk_config_args="$gtk_config_args --prefix=$gtk_config_prefix" - if test x${GTK_CONFIG+set} != xset ; then -- GTK_CONFIG=$gtk_config_prefix/bin/gtk-config -+ GTK_CONFIG=$gtk_config_prefix/bin/gtk11-config - fi - fi -- # Extract the first word of "gtk-config", so it can be a program name with args. --set dummy gtk-config; ac_word=$2 -+ # Extract the first word of "gtk11-config", so it can be a program name with args. -+set dummy gtk11-config; ac_word=$2 - echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 - echo "configure:2202: checking for $ac_word" >&5 - if eval "test \"`echo '$''{'ac_cv_path_GTK_CONFIG'+set}'`\" = set"; then -@@ -2277,16 +2277,16 @@ - (gtk_minor_version != $gtk_config_minor_version) || - (gtk_micro_version != $gtk_config_micro_version)) - { -- printf("\n*** 'gtk-config --version' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n", -+ printf("\n*** 'gtk11-config --version' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n", - $gtk_config_major_version, $gtk_config_minor_version, $gtk_config_micro_version, - gtk_major_version, gtk_minor_version, gtk_micro_version); -- printf ("*** was found! If gtk-config was correct, then it is best\n"); -+ printf ("*** was found! If gtk11-config was correct, then it is best\n"); - printf ("*** to remove the old version of GTK+. You may also be able to fix the error\n"); - printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n"); - printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n"); - printf("*** required on your system.\n"); -- printf("*** If gtk-config was wrong, set the environment variable GTK_CONFIG\n"); -- printf("*** to point to the correct copy of gtk-config, and remove the file config.cache\n"); -+ printf("*** If gtk11-config was wrong, set the environment variable GTK_CONFIG\n"); -+ printf("*** to point to the correct copy of gtk11-config, and remove the file config.cache\n"); - printf("*** before re-running configure\n"); - } - else -@@ -2306,10 +2306,10 @@ - printf("*** GTK+ is always available from ftp://ftp.gtk.org.\n"); - printf("***\n"); - printf("*** If you have already installed a sufficiently new version, this error\n"); -- printf("*** probably means that the wrong copy of the gtk-config shell script is\n"); -+ printf("*** probably means that the wrong copy of the gtk11-config shell script is\n"); - printf("*** being found. The easiest way to fix this is to remove the old version\n"); - printf("*** of GTK+, but you can also set the GTK_CONFIG environment to point to the\n"); -- printf("*** correct copy of gtk-config. (In this case, you will have to\n"); -+ printf("*** correct copy of gtk11-config. (In this case, you will have to\n"); - printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n"); - printf("*** so that the correct libraries are found at run-time))\n"); - } -@@ -2340,10 +2340,10 @@ - else - echo "$ac_t""no" 1>&6 - if test "$GTK_CONFIG" = "no" ; then -- echo "*** The gtk-config script installed by GTK could not be found" -+ echo "*** The gtk11-config script installed by GTK could not be found" - echo "*** If GTK was installed in PREFIX, make sure PREFIX/bin is in" - echo "*** your path, or set the GTK_CONFIG environment variable to the" -- echo "*** full path to gtk-config." -+ echo "*** full path to gtk11-config." - else - if test -f conf.gtktest ; then - : -@@ -2385,7 +2385,7 @@ - echo "*** The test program failed to compile or link. See the file config.log for the" - echo "*** exact error that occured. This usually means GTK was incorrectly installed" - echo "*** or that you have moved GTK since it was installed. In the latter case, you" -- echo "*** may want to edit the gtk-config script: $GTK_CONFIG" -+ echo "*** may want to edit the gtk11-config script: $GTK_CONFIG" - fi - rm -f conftest* - CFLAGS="$ac_save_CFLAGS" + +- USE_INCLUDED_LIBINTL=yes ++# USE_INCLUDED_LIBINTL=yes + CATOBJEXT=.gmo + INSTOBJEXT=.mo + DATADIRNAME=share +- INTLDEPS='$(top_builddir)/intl/libintl.a' ++ INTLDEPS='-lintl' + INTLLIBS=$INTLDEPS + LIBS=`echo $LIBS | sed -e 's/-lintl//'` +- nls_cv_header_intl=intl/libintl.h +- nls_cv_header_libgt=intl/libgettext.h ++# nls_cv_header_intl=intl/libintl.h ++# nls_cv_header_libgt=intl/libgettext.h + fi + + if test "$XGETTEXT" != ":"; then --- /usr/ports.ref/net/yagirc/patches/patch-ab Thu Jan 1 02:00:00 1970 +++ net/yagirc/patches/patch-ab Sun May 23 02:44:24 1999 @@ -0,0 +1,10 @@ +--- src/net_nowait.c.orig Sun May 23 02:42:46 1999 ++++ src/net_nowait.c Sun May 23 02:43:09 1999 +@@ -32,6 +32,7 @@ + + #include + #include ++#include + #include + #include + --- /usr/ports.ref/net/yagirc/patches/patch-ac Thu Jan 1 02:00:00 1970 +++ net/yagirc/patches/patch-ac Sun May 23 03:14:45 1999 @@ -0,0 +1,45 @@ +--- src/gui_channels.c.orig Fri Oct 23 00:56:58 1998 ++++ src/gui_channels.c Sun May 23 03:01:28 1999 +@@ -240,8 +240,9 @@ + gethostname(hostname, 127); + sprintf(pid, "%d", getpid()); + +- channel_drag_types[0].target = +- g_copy_strings("application/x-yagirc-channel-", hostname, pid, NULL); ++ channel_drag_types[0].target = g_malloc ( strlen (hostname) + strlen (pid) + 29 ); ++ sprintf(channel_drag_types[0].target, "%s%s%s", ++ "application/x-yagirc-channel-", hostname, pid, NULL); + } + + /* create widget */ +--- src/gui_list.c.orig Sun May 23 03:12:18 1999 ++++ src/gui_list.c Sun May 23 03:12:30 1999 +@@ -278,8 +278,6 @@ + gtk_signal_connect(GTK_OBJECT(clist), "unselect_row", GTK_SIGNAL_FUNC(list_callback), "unselect"); + gtk_box_pack_start(GTK_BOX(hbox), GTK_WIDGET(clist), TRUE, TRUE, 0); + gtk_clist_set_selection_mode(clist, GTK_SELECTION_SINGLE); +- gtk_clist_set_policy(clist, GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); +- gtk_clist_set_border(clist, GTK_SHADOW_OUT); + gtk_clist_set_column_title(clist, 0, "Channel"); + gtk_clist_set_column_title(clist, 1, "Users"); + gtk_clist_set_column_title(clist, 2, "Topic"); +--- src/gui_setup_alias.c.orig Sun May 23 03:12:54 1999 ++++ src/gui_setup_alias.c Sun May 23 03:13:09 1999 +@@ -239,7 +239,6 @@ + + /* alias list */ + gtk_clist_set_column_width (GTK_CLIST (alias_list), 0, 100); +- gtk_clist_set_policy(GTK_CLIST(alias_list), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); + //gtk_list_set_selection_mode (GTK_LIST(alias_list), GTK_SELECTION_MULTIPLE); + gtk_clist_set_selection_mode (GTK_CLIST(alias_list), GTK_SELECTION_BROWSE); + gtk_signal_connect (GTK_OBJECT (alias_list), "select_row", +--- src/gui_urllist.c.orig Sun May 23 03:13:42 1999 ++++ src/gui_urllist.c Sun May 23 03:13:54 1999 +@@ -160,7 +160,6 @@ + + /* configure the list box */ + gtk_clist_set_selection_mode(GTK_CLIST(urlwin->list), GTK_SELECTION_BROWSE); +- gtk_clist_set_policy(GTK_CLIST(urlwin->list), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); + gtk_clist_column_titles_passive(GTK_CLIST(urlwin->list)); + gtk_clist_set_column_width(GTK_CLIST(urlwin->list), 0, 140); + gtk_clist_set_column_width(GTK_CLIST(urlwin->list), 1, 60); --- /usr/ports.ref/net/yagirc/pkg/PLIST Tue Aug 25 06:09:42 1998 +++ net/yagirc/pkg/PLIST Sun May 23 03:17:48 1999 @@ -1,5 +1,25 @@ bin/yagirc etc/yagirc.conf +share/locale/es/LC_MESSAGES/yagirc.mo +share/locale/fr/LC_MESSAGES/yagirc.mo +share/locale/ko/LC_MESSAGES/yagirc.mo +share/locale/pt_BR/LC_MESSAGES/yagirc.mo share/yagirc/irc.pl +share/yagirc/pixmaps/about.xpm +share/yagirc/pixmaps/autoraise.xpm +share/yagirc/pixmaps/away.xpm +share/yagirc/pixmaps/close.xpm +share/yagirc/pixmaps/connect.xpm +share/yagirc/pixmaps/disconnect.xpm +share/yagirc/pixmaps/font.xpm +share/yagirc/pixmaps/join.xpm +share/yagirc/pixmaps/newh.xpm +share/yagirc/pixmaps/neww.xpm +share/yagirc/pixmaps/part.xpm +share/yagirc/pixmaps/quit.xpm +share/yagirc/pixmaps/selectserver.xpm +share/yagirc/pixmaps/setup.xpm +share/yagirc/pixmaps/url.xpm share/yagirc/startup.pm +@dirrm share/yagirc/pixmaps @dirrm share/yagirc >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 May 22 18:40: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2DBDA15202 for ; Sat, 22 May 1999 18:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA71082; Sat, 22 May 1999 18:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 023211514C for ; Sat, 22 May 1999 18:32:24 -0700 (PDT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by shale.csir.co.za (8.9.3/8.9.3) id DAA10629; Sun, 23 May 1999 03:32:22 +0200 (SAT) (envelope-from reg) Message-Id: <199905230132.DAA10629@shale.csir.co.za> Date: Sun, 23 May 1999 03:32:22 +0200 (SAT) From: reg@shale.csir.co.za Reply-To: reg@shale.csir.co.za To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11854: Port fixup: audio/libmikmod Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11854 >Category: ports >Synopsis: Port fixup: audio/libmikmod >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 May 22 18:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jeremy Lea >Release: FreeBSD 4.0-CURRENT i386 >Organization: Arb's Inc. >Environment: FreeBSD Ports collection. >Description: This port will be broken by the new Libtool. Update to fix the problems. >How-To-Repeat: >Fix: audio/libmikmod: Changes: Makefile pkg/PLIST Adds : Removes: patches/patch-aa --- /usr/ports.ref/audio/libmikmod/Makefile Thu May 6 00:16:12 1999 +++ audio/libmikmod/Makefile Sat May 15 18:16:15 1999 @@ -12,18 +12,9 @@ MAINTAINER= mharo@area51.fremont.ca.us -BUILD_DEPENDS= libtool:${PORTSDIR}/devel/libtool +LIB_DEPENDS= esd.1:${PORTSDIR}/audio/esound USE_GMAKE= yes -GNU_CONFIGURE= yes - -pre-build: - ${RM} -rf ${WRKSRC}/info/mikmod.info* - -pre-install: - @${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib - if [ ! -f ${PREFIX}/info/dir ]; then \ - ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ - fi +USE_LIBTOOL= yes .include --- /usr/ports.ref/audio/libmikmod/patches/patch-aa Thu May 6 00:16:16 1999 +++ audio/libmikmod/patches/patch-aa Sat May 15 18:10:04 1999 @@ -1,11 +0,0 @@ ---- configure.orig Sun Apr 11 12:33:14 1999 -+++ configure Sun Apr 11 12:33:24 1999 -@@ -1587,7 +1587,7 @@ - - - # Always use our own libtool. --LIBTOOL='$(SHELL) $(top_builddir)/libtool' -+LIBTOOL='libtool' - - # Check for any special flags to pass to ltconfig. - libtool_flags= --- /usr/ports.ref/audio/libmikmod/pkg/PLIST Thu May 6 00:16:14 1999 +++ audio/libmikmod/pkg/PLIST Sat May 15 18:25:42 1999 @@ -1,7 +1,6 @@ bin/libmikmod-config include/mikmod.h lib/libmikmod.a -lib/libmikmod.la lib/libmikmod.so lib/libmikmod.so.1.1 @unexec install-info --delete %D/info/mikmod.info %D/info/dir @@ -9,8 +8,8 @@ info/mikmod.info-1 info/mikmod.info-2 info/mikmod.info-3 +@exec install-info %D/info/mikmod.info %D/info/dir share/aclocal/libmikmod.m4 -@exec [ -f %D/info/dir ] || sed -ne '1,/Menu:/p' /usr/share/info/dir > %D/info/dir @unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R @exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B -@dirrm share/aclocal +@unexec rmdir %D/share/aclocal 2>/dev/null || true >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 May 22 18:40: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BD81415219 for ; Sat, 22 May 1999 18:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA71091; Sat, 22 May 1999 18:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 227751514C for ; Sat, 22 May 1999 18:34:31 -0700 (PDT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by shale.csir.co.za (8.9.3/8.9.3) id DAA10779; Sun, 23 May 1999 03:34:29 +0200 (SAT) (envelope-from reg) Message-Id: <199905230134.DAA10779@shale.csir.co.za> Date: Sun, 23 May 1999 03:34:29 +0200 (SAT) From: reg@shale.csir.co.za Reply-To: reg@shale.csir.co.za To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11855: Port fixup: net/radiusclient Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11855 >Category: ports >Synopsis: Port fixup: net/radiusclient >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 May 22 18:40:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jeremy Lea >Release: FreeBSD 4.0-CURRENT i386 >Organization: Arb's Inc. >Environment: FreeBSD Ports collection. >Description: This port will be broken by recent Libtool changes. USE_LIBTOOL to fix it. >How-To-Repeat: >Fix: net/radiusclient: Changes: Makefile pkg/PLIST Adds : Removes: --- /usr/ports.ref/net/radiusclient/Makefile Thu May 6 10:33:32 1999 +++ net/radiusclient/Makefile Sat May 22 16:27:56 1999 @@ -12,16 +12,7 @@ MAINTAINER= maurice@serc.rmit.edu.au -BUILD_DEPENDS= /nonexistent:${PORTSDIR}/devel/libtool:patch - USE_GMAKE= yes -GNU_CONFIGURE= yes - -pre-configure: - ${CP} ${WRKDIRPREFIX}${PORTSDIR}/devel/libtool/work/libtool-1.3/ltconfig ${WRKSRC} - ${CP} ${WRKDIRPREFIX}${PORTSDIR}/devel/libtool/work/libtool-1.3/ltmain.sh ${WRKSRC} - -post-install: - ${LDCONFIG} -m ${PREFIX}/lib +USE_LIBTOOL= yes .include --- /usr/ports.ref/net/radiusclient/pkg/PLIST Wed Jan 13 01:37:51 1999 +++ net/radiusclient/pkg/PLIST Sat May 22 16:30:13 1999 @@ -7,15 +7,14 @@ etc/radiusclient/dictionary.merit etc/radiusclient/servers include/radiusclient.h -lib/libradiusclient.la lib/libradiusclient.a lib/libradiusclient.so lib/libradiusclient.so.0.3 +@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R +@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B sbin/radlogin sbin/radstatus sbin/radacct sbin/radexample sbin/login.radius @dirrm etc/radiusclient -@exec /sbin/ldconfig -m %D/lib -@unexec /sbin/ldconfig -R >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 May 22 20:49: 1 1999 Delivered-To: freebsd-ports@freebsd.org Received: from octopus.originative (originat.demon.co.uk [158.152.220.9]) by hub.freebsd.org (Postfix) with ESMTP id B3F3F14CC2 for ; Sat, 22 May 1999 20:48:55 -0700 (PDT) (envelope-from paul@originative.co.uk) Received: by octopus with Internet Mail Service (5.5.2232.9) id ; Sun, 23 May 1999 04:46:49 +0100 Message-ID: From: paul@originative.co.uk To: freebsd-ports@freebsd.org Subject: Mozilla LDAP sdk and file reference counts Date: Sun, 23 May 1999 04:46:48 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2232.9) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Has this made it to the list before? I never saw it hit the list so I'm resending it. ------ I'm working on port of the Mozilla LDAP sdk and the installation step has raised a few issues. The Mozilla directory structure is a little bit involved. The root of the tree is ./mozilla and then under that sit a number of the components that make up the Mozilla product, such as the browser, the portability code (nsprpub) and the ldap code (in ./mozilla/directory). The build mechanism creates OS specific object directories local to the actual sources, for instance mozilla/directory/c-sdk/ldap/libraries/libldap/FreeBSD4.0_DBG.OBJ in the case of libldap, where the source files are held in the libldap directory. When you run the install step it uses the mozilla specific nsinstall program which creates a link farm rooted at ./mozilla/dist/FreeBSD4.0_DBG.OBJ where the links point into the object directories in the src tree. The directory layout under /mozilla/dist/FreeBSD4.0_DBG.OBJ can't really be changed since other software (such as the perldap) expect to be passed the root directory and find all the required bits (include files, libraries etc) in the right places underneath. So, probably the only way to install this is to put it somewhere like /usr/local/mozilla. I took a look at the mozilla browser port and that puts the common binaries in /usr/local/lib/mozilla/bin and the actual browser binary in /usr/local/bin. This makes sense but it's going to become a mess if we start to add other components of the mozilla project as ports. This leads to the real problem, reference counting of installed files. If we agree to put the mozilla installed files under /usr/local/mozilla (for instance) then each port will need to install its own copies of the shared components, i.e. nsinstall etc. When you install a second component it will also need to install those same components into the same place. That's OK, but when you uninstall one of these sub-ports how does it know whether to remove the binary that's shared. If it removes it then the other sub-port stops working. If nothing ever removes it then the uninstall mechanism will leave cruft around. My current solutions is to treat the ldap port as totally distinct from the mozilla port but that's not a good solution. We need a more complex installation tool that records what files are installed by the ports mechanism and which port did the installing. When a port tries to uninstall a file the ports mechanism should be able to remove it as *one* of the owners of that file and not actually remove the file until the last owner tries to remove it. If you've used installation tools under Windows you'll have seen this crop up a lot :-) The reference counting problem is something that needs thinking about and eventually solving but in the meantime I'd like to commit my port asap so what's the current thinking on where to install the mozilla components to? Paul Richards. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 22 20:50: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D61014CC2 for ; Sat, 22 May 1999 20:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA78538; Sat, 22 May 1999 20:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 22 May 1999 20:50:02 -0700 (PDT) Message-Id: <199905230350.UAA78538@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jun Kuriyama Subject: Re: ports/11250: PORTS: upgrade lesstif to 0.88.1 Reply-To: Jun Kuriyama Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11250; it has been noted by GNATS. From: Jun Kuriyama To: kargl@apl.washington.edu Cc: freebsd-gnats-submit@freebsd.org Subject: Re: ports/11250: PORTS: upgrade lesstif to 0.88.1 Date: Sun, 23 May 1999 12:42:21 +0900 Sorry for inconvenience, but "quoted-printable" encoded diff in GNATS database is difficult to normalize. Could you send gzip'ed diff file with uuencode? Jun Kuriyama // kuriyama@sky.rim.or.jp // kuriyama@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 May 22 22: 0:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 54B84150B1 for ; Sat, 22 May 1999 22:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA83353; Sat, 22 May 1999 22:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 120CD14E30 for ; Sat, 22 May 1999 21:53:11 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 79D0715B6; Sat, 22 May 1999 21:53:06 -0700 (PDT) Message-Id: <19990523045306.79D0715B6@norn.ca.eu.org> Date: Sat, 22 May 1999 21:53:06 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11858: New port: libwmf Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11858 >Category: ports >Synopsis: New port: libwmf >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 May 22 22:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #213: Wed May 19 09:07:23 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: This a library for converting "wmf" files (windows metafiles IIRC) to a format that is usable with webpages. It is needed by the updated mswordview (sent at the same time as this). >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: # # libwmf # libwmf/files # libwmf/files/md5 # libwmf/pkg # libwmf/pkg/COMMENT # libwmf/pkg/DESCR # libwmf/pkg/PLIST # libwmf/Makefile # echo c - libwmf mkdir -p libwmf > /dev/null 2>&1 echo c - libwmf/files mkdir -p libwmf/files > /dev/null 2>&1 echo x - libwmf/files/md5 sed 's/^X//' >libwmf/files/md5 << 'END-of-libwmf/files/md5' XMD5 (libwmf-0.1.10.tar.gz) = 8ecaa54a1b827c6f76ec8d921ce46446 END-of-libwmf/files/md5 echo c - libwmf/pkg mkdir -p libwmf/pkg > /dev/null 2>&1 echo x - libwmf/pkg/COMMENT sed 's/^X//' >libwmf/pkg/COMMENT << 'END-of-libwmf/pkg/COMMENT' XA library of image format handlers for Tk4.1 and later. END-of-libwmf/pkg/COMMENT echo x - libwmf/pkg/DESCR sed 's/^X//' >libwmf/pkg/DESCR << 'END-of-libwmf/pkg/DESCR' XThis is an image format handler for Tk. It handles the following image Xformats: X Xbmp, gif, png, jpeg, tiff, xpm, xbm, and postscript. X XUsing this library with Tcl/Tk applications allows one to work with Xphotos and images in the application. END-of-libwmf/pkg/DESCR echo x - libwmf/pkg/PLIST sed 's/^X//' >libwmf/pkg/PLIST << 'END-of-libwmf/pkg/PLIST' Xbin/xwmf Xbin/wmftogif Xinclude/dibtoxpm.h Xinclude/xgd.h Xinclude/xgdttf.h Xinclude/wmfapi.h Xinclude/gdwmfapi.h Xinclude/Xwmfapi.h Xlib/libdib.a Xlib/libxgd.a Xlib/libwmf.a Xlib/libgdwmf.a Xlib/libXwmf.a END-of-libwmf/pkg/PLIST echo x - libwmf/Makefile sed 's/^X//' >libwmf/Makefile << 'END-of-libwmf/Makefile' X# New ports collection makefile for: libwmf X# Version required: 0.1.10 X# Date Created: 22 May 1999 X# Whom: Chris Piazza X# X# $Id$ X# X XDISTNAME= libwmf-0.1.10 XCATEGORIES= graphics XMASTER_SITES= http://www.csn.ul.ie/~caolan/publink/libwmf/ X XMAINTAINER= cpiazza@home.net X XLIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \ X ttf.3:${PORTSDIR}/print/freetype X XWRKSRC= ${WRKDIR}/libwmf X XGNU_CONFIGURE= yes XCONFIGURE_ARGS= --with-ttf=${LOCALBASE} X X.include END-of-libwmf/Makefile exit -Chris >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 May 22 22: 0:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 636F81510F for ; Sat, 22 May 1999 22:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA83362; Sat, 22 May 1999 22:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 9247414E30 for ; Sat, 22 May 1999 21:53:14 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 3428915B8; Sat, 22 May 1999 21:53:10 -0700 (PDT) Message-Id: <19990523045310.3428915B8@norn.ca.eu.org> Date: Sat, 22 May 1999 21:53:10 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11859: Update: textproc/mswordview Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11859 >Category: ports >Synopsis: Update: textproc/mswordview >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 May 22 22:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #213: Wed May 19 09:07:23 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: Update to 0.5.14. Note: this needs the libwmf port that was submitted at the same time as this. >How-To-Repeat: >Fix: Index: mswordview/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/textproc/mswordview/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 1999/03/04 22:53:22 1.4 +++ Makefile 1999/05/23 04:46:52 @@ -1,18 +1,24 @@ # New ports collection makefile for: mswordview -# Version required: 0.5.2 +# Version required: 0.5.14 # Date created: Fri Nov 6 09:06:33 PST 1998 # Whom: sumikawa@kame.net # # $Id: Makefile,v 1.4 1999/03/04 22:53:22 billf Exp $ # -DISTNAME= mswordview-0.5.2 +DISTNAME= mswordview-0.5.14 CATEGORIES= textproc MASTER_SITES= http://www.csn.ul.ie/~caolan/publink/mswordview/ MAINTAINER= sumikawa@kame.net +BUILD_DEPENDS= ${LOCALBASE}/lib/libwmf.a:${PORTSDIR}/graphics/libwmf + +WRKSRC= ${WRKDIR}/mswordview GNU_CONFIGURE= yes -WRKSRC= $(WRKDIR)/mswordview +CONFIGURE_ARGS= --with-ttf=${LOCALBASE} --with-wmf=${LOCALBASE} +USE_XLIB= yes + +MAN1= mswordview.1 .include Index: mswordview/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/textproc/mswordview/files/md5,v retrieving revision 1.3 diff -u -r1.3 md5 --- md5 1999/03/04 22:53:22 1.3 +++ md5 1999/05/23 04:20:13 @@ -1 +1 @@ -MD5 (mswordview-0.5.2.tar.gz) = 8a1f63c1eee523c191d20b163c5741c3 +MD5 (mswordview-0.5.14.tar.gz) = 1d43e885833f7c933af549657b88ee86 Index: mswordview/pkg/PLIST =================================================================== RCS file: /cvs/FreeBSD/ports/textproc/mswordview/pkg/PLIST,v retrieving revision 1.3 diff -u -r1.3 PLIST --- PLIST 1999/03/04 22:53:23 1.3 +++ PLIST 1999/05/23 04:38:16 @@ -1,4 +1,9 @@ bin/mswordview +bin/wv-incconfig +bin/wv-libconfig +include/wv.h +lib/libwv.a +lib/mswordview/config-mswordview lib/mswordview/symbolfont/100.gif lib/mswordview/symbolfont/101.gif lib/mswordview/symbolfont/102.gif @@ -633,24 +638,33 @@ lib/mswordview/patterns/97.gif lib/mswordview/patterns/98.gif lib/mswordview/patterns/99.gif +lib/mswordview/patterns/battributes.jpg +lib/mswordview/patterns/bdeleted.jpg +lib/mswordview/patterns/bnewlytyped.jpg lib/mswordview/patterns/clear.gif -lib/mswordview/patterns/convert.sh +lib/mswordview/patterns/columnbreak.gif lib/mswordview/patterns/commentbegin.gif lib/mswordview/patterns/commentend.gif +lib/mswordview/patterns/deleted.jpg +lib/mswordview/patterns/doccommentb.jpg +lib/mswordview/patterns/doccommente.jpg lib/mswordview/patterns/documentend.gif +lib/mswordview/patterns/eattributes.jpg +lib/mswordview/patterns/edeleted.jpg lib/mswordview/patterns/endnotebegin.gif lib/mswordview/patterns/endnoteend.gif +lib/mswordview/patterns/enewlytyped.jpg lib/mswordview/patterns/footnotebegin.gif lib/mswordview/patterns/footnoteend.gif lib/mswordview/patterns/pagebreak.gif -lib/mswordview/patterns/wmf.jpg -lib/mswordview/patterns/columnbreak.gif lib/mswordview/patterns/sectionendcolumn.gif lib/mswordview/patterns/sectionendcontinous.gif lib/mswordview/patterns/sectionendeven.gif lib/mswordview/patterns/sectionendnewpage.gif lib/mswordview/patterns/sectionendodd.gif +lib/mswordview/patterns/wmf.jpg @dirrm lib/mswordview/symbolfont @dirrm lib/mswordview/wingdingfont @dirrm lib/mswordview/patterns +@dirrm lib/mswordview/ttf @dirrm lib/mswordview -Chris >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 May 23 1:20:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0FB0014D43 for ; Sun, 23 May 1999 01:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA94412; Sun, 23 May 1999 01:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 99EF214C81 for ; Sun, 23 May 1999 01:18:50 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id C8F89142F; Sun, 23 May 1999 01:18:45 -0700 (PDT) Message-Id: <19990523081845.C8F89142F@norn.ca.eu.org> Date: Sun, 23 May 1999 01:18:45 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11861: Update: x11-wm/icewm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11861 >Category: ports >Synopsis: Update: x11-wm/icewm >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 May 23 01:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #213: Wed May 19 09:07:23 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: A pretty big change in the build process for icewm; it now uses GNU configure. *There appears to be no XLOCALE support any more, so that was removed. *GNOME support is automatically enabled if it finds gnome-config now so all defining GNOME does is make sure it depends on gnome. *the TITLE_BOTTOM stuff doesn't seem to be configurable any more, though there are some #ifdef's. Files removed: files/ patch-gnome patch-titlebottom patch-titletop patches/ patch-ag Files added: patches/ patch-ah patch-ai >How-To-Repeat: >Fix: Index: icewm/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/x11-wm/icewm/Makefile,v retrieving revision 1.36 diff -u -r1.36 Makefile --- Makefile 1999/05/16 23:20:18 1.36 +++ Makefile 1999/05/23 08:13:48 @@ -1,12 +1,12 @@ # New ports collection makefile for: icewm -# Version required: 0.9.39 +# Version required: 0.9.40 # Date created: 10 August 1997 # Whom: Yukihiro Nakai # # $Id: Makefile,v 1.36 1999/05/16 23:20:18 mharo Exp $ # -DISTNAME= icewm-0.9.39 +DISTNAME= icewm-0.9.40 CATEGORIES= x11-wm MASTER_SITES= http://www.kiss.uni-lj.si/~k4fr0235/icewm/devel/ \ http://www.physik.TU-Berlin.DE/~ibex/ports/distfiles/icewm/ @@ -19,39 +19,18 @@ .endif LIB_DEPENDS+= Xpm.4:${PORTSDIR}/graphics/xpm +GNU_CONFIGURE= yes USE_GMAKE= yes USE_X_PREFIX= yes -ICEOPTION= --with-shape .if defined(USE_I18N) -ICEOPTION+= --with-i18n +CONFIGURE_ARGS+= --enable-i18n .endif -.if defined(XLOCALE) -ICEOPTION+= --with-xlocale -.endif -.if defined(GNOME) -ICEOPTION+= --with-imlib --with-gnome --with-sm -.endif - -pre-patch: -.if defined(TITLE_BOTTOM) - @${PATCH} ${PATCH_ARGS} < ${FILESDIR}/patch-titlebottom -.else - @${PATCH} ${PATCH_ARGS} < ${FILESDIR}/patch-titletop -.endif .if defined(GNOME) - @${PATCH} ${PATCH_ARGS} < ${FILESDIR}/patch-gnome +CONFIGURE_ARGS+= --with-imlib --with-gnome .endif -do-configure: - ( cd ${WRKSRC}; env X11BASE="${X11BASE}" CXX="${CXX}" \ - CXXFLAGS="${CXXFLAGS}" \ - ${SH} config ${ICEOPTION} ) - post-install: ${INSTALL_DATA} ${FILESDIR}/bsd-daemon.xpm ${PREFIX}/share/icewm/taskbar - strip ${PREFIX}/bin/icewm - strip ${PREFIX}/bin/icewmbg - strip ${PREFIX}/bin/icewmhint .include Index: icewm/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/x11-wm/icewm/files/md5,v retrieving revision 1.24 diff -u -r1.24 md5 --- md5 1999/05/16 23:20:20 1.24 +++ md5 1999/05/23 03:53:58 @@ -1 +1 @@ -MD5 (icewm-0.9.39.src.tar.gz) = 1a4d7bc60d6f6235d04a1c43bd739043 +MD5 (icewm-0.9.40.src.tar.gz) = 851f45c99f42ad885361897be39f9350 Index: icewm/files/patch-gnome =================================================================== RCS file: patch-gnome diff -N patch-gnome --- /tmp/cvsC86735 Sun May 23 01:17:46 1999 +++ /dev/null Sun May 23 01:12:48 1999 @@ -1,8 +0,0 @@ ---- config.orig Wed Oct 7 19:44:31 1998 -+++ config Wed Oct 7 19:46:05 1998 -@@ -206,4 +206,4 @@ - echo $CFLAGS >>sysdep.inc - echo $INCDIRS >>sysdep.inc - echo $LIBDIRS >>sysdep.inc --echo $LIBS >>sysdep.inc -+echo $LIBS -lxpg4 -lintl -L/usr/local/lib >>sysdep.inc Index: icewm/files/patch-titlebottom =================================================================== RCS file: patch-titlebottom diff -N patch-titlebottom --- /tmp/cvsl86735 Sun May 23 01:17:46 1999 +++ /dev/null Sun May 23 01:12:48 1999 @@ -1,26 +0,0 @@ ---- src/config.h.orig Sat Dec 26 01:08:54 1998 -+++ src/config.h Mon Jan 4 20:54:27 1999 -@@ -15,19 +15,19 @@ - * EOF - * - */ --#define MAIL_SPOOL "/var/spool/mail/" /* '/' terminated ! */ -+#define MAIL_SPOOL "/var/mail/" /* '/' terminated ! */ - - /** Use Linux 2.0 Penguin as start button */ - #ifndef START_PIXMAP --#define START_PIXMAP "linux.xpm" -+//#define START_PIXMAP "linux.xpm" - //#define START_PIXMAP "debian.xpm" --//#define START_PIXMAP "bsd-daemon.xpm" -+#define START_PIXMAP "bsd-daemon.xpm" - //#define START_PIXMAP "start.xpm" - //#define START_PIXMAP "xfree86os2.xpm" - #endif - - /** Show title bars at the bottom of the window */ --#undef TITLEBAR_BOTTOM -+#define TITLEBAR_BOTTOM - - /** No not include configurability of options */ - #undef NO_CONFIGURE Index: icewm/files/patch-titletop =================================================================== RCS file: patch-titletop diff -N patch-titletop --- /tmp/cvsO86735 Sun May 23 01:17:46 1999 +++ /dev/null Sun May 23 01:12:48 1999 @@ -1,19 +0,0 @@ ---- src/config.h.orig Sat Dec 26 01:08:54 1998 -+++ src/config.h Mon Jan 4 20:55:37 1999 -@@ -15,13 +15,13 @@ - * EOF - * - */ --#define MAIL_SPOOL "/var/spool/mail/" /* '/' terminated ! */ -+#define MAIL_SPOOL "/var/mail/" /* '/' terminated ! */ - - /** Use Linux 2.0 Penguin as start button */ - #ifndef START_PIXMAP --#define START_PIXMAP "linux.xpm" -+//#define START_PIXMAP "linux.xpm" - //#define START_PIXMAP "debian.xpm" --//#define START_PIXMAP "bsd-daemon.xpm" -+#define START_PIXMAP "bsd-daemon.xpm" - //#define START_PIXMAP "start.xpm" - //#define START_PIXMAP "xfree86os2.xpm" - #endif Index: icewm/patches/patch-ab =================================================================== RCS file: /cvs/FreeBSD/ports/x11-wm/icewm/patches/patch-ab,v retrieving revision 1.10 diff -u -r1.10 patch-ab --- patch-ab 1999/05/09 16:32:31 1.10 +++ patch-ab 1999/05/23 07:55:46 @@ -1,17 +1,16 @@ ---- install.inc.orig Sat Feb 20 08:33:06 1999 -+++ install.inc Mon May 3 15:44:56 1999 -@@ -1,10 +1,9 @@ --PREFIX = /usr/local - BINDIR = $(PREFIX)/bin --LIBDIR = $(PREFIX)/lib/X11/icewm --ETCDIR = /etc/X11/icewm -+LIBDIR = $(PREFIX)/share/icewm -+ETCDIR = $(LIBDIR) +--- install.in.orig Sat May 22 06:58:12 1999 ++++ install.in Sun May 23 00:54:26 1999 +@@ -3,11 +3,11 @@ - INSTALL = install -c --INSTALLDIR = $(INSTALL) -m 755 -d --INSTALLBIN = $(INSTALL) -m 555 -+INSTALLDIR = mkdir -p -+INSTALLBIN = $(INSTALL) $(STRIP) -m 555 - INSTALLLIB = $(INSTALL) -m 444 - #INSTALLETC = $(INSTALL) -m 644 + PREFIX = @prefix@ + BINDIR = @bindir@ +-LIBDIR = @libdir@/X11/icewm ++LIBDIR = @prefix@/share/icewm + ETCDIR = @sysconfdir@ + + INSTALL = @INSTALL@ +-INSTALLDIR = @INSTALL@ -m 755 -d ++INSTALLDIR = mkdir -p + INSTALLBIN = @INSTALL_PROGRAM@ + INSTALLLIB = @INSTALL_DATA@ + #INSTALLETC = @INSTALL_DATA@ Index: icewm/patches/patch-ag =================================================================== RCS file: patch-ag diff -N patch-ag --- /tmp/cvsC86735 Sun May 23 01:17:46 1999 +++ /dev/null Sun May 23 01:12:48 1999 @@ -1,30 +0,0 @@ ---- config.orig Sun Apr 25 04:01:46 1999 -+++ config Mon May 3 15:56:15 1999 -@@ -36,9 +36,9 @@ - } - - with_x11=1 --x11_incdir='/usr/X11R6/include' -+x11_incdir="${X11BASE}/include" - x11_inc='X11/X.h' --x11_libdir='/usr/X11R6/lib' -+x11_libdir="${X11BASE}/lib" - x11_libs='X11' - - with_xpm=1 -@@ -69,11 +69,11 @@ - -Wmissing-prototypes -Wmissing-declarations \ - -Winline -Woverloaded-virtual" - --cxx="g++" --cxxopts="" --link="g++" -+cxx="${CXX}" -+cxxopts="${CXXFLAGS}" -+link="${CXX}" - linkopts="" --optimize="-O2" -+optimize="" - - use() { - dep="$1" Index: icewm/patches/patch-ah =================================================================== RCS file: patch-ah diff -N patch-ah --- /dev/null Sun May 23 01:12:48 1999 +++ patch-ah Sun May 23 00:48:46 1999 @@ -0,0 +1,11 @@ +--- src/amailbox.cc.orig Sun May 23 00:48:01 1999 ++++ src/amailbox.cc Sun May 23 00:48:13 1999 +@@ -19,7 +19,7 @@ + + // !!! autoconf option for this (or just get rid of it completely) + #ifndef MAIL_SPOOL +-#define MAIL_SPOOL "/var/spool/mail/" /* '/' terminated ! */ ++#define MAIL_SPOOL "/var/mail/" /* '/' terminated ! */ + #endif + + extern YColor *taskBarBg; Index: icewm/patches/patch-ai =================================================================== RCS file: patch-ai diff -N patch-ai --- /dev/null Sun May 23 01:12:48 1999 +++ patch-ai Sun May 23 00:57:41 1999 @@ -0,0 +1,14 @@ +--- src/wmtaskbar.cc.orig Sun May 23 00:57:11 1999 ++++ src/wmtaskbar.cc Sun May 23 00:57:25 1999 +@@ -331,9 +331,9 @@ + + /** Use Linux 2.0 Penguin as start button */ + #ifndef START_PIXMAP +-#define START_PIXMAP "linux.xpm" ++//#define START_PIXMAP "linux.xpm" + //#define START_PIXMAP "debian.xpm" +-//#define START_PIXMAP "bsd-daemon.xpm" ++#define START_PIXMAP "bsd-daemon.xpm" + //#define START_PIXMAP "start.xpm" + //#define START_PIXMAP "xfree86os2.xpm" + #endif Index: icewm/pkg/DESCR =================================================================== RCS file: /cvs/FreeBSD/ports/x11-wm/icewm/pkg/DESCR,v retrieving revision 1.7 diff -u -r1.7 DESCR --- DESCR 1999/05/09 16:32:38 1.7 +++ DESCR 1999/05/23 08:11:02 @@ -1,16 +1,10 @@ Window Manager designed for speed, usability and consistency. -When you want titlebars to be bottom ( default is top ), - % make -DTITLE_BOTTOM install - When you want gnome option, % make -DGNOME install When you want i18n option, % make -DUSE_I18N install - -When you want to compile with xlocale option, - % make -DXLOCALE install 'bsd-daemon.xpm' is from Steve Farrell. -Chris >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 May 23 4:19:25 1999 Delivered-To: freebsd-ports@freebsd.org Received: from public2.zz.ha.cn (public2.zz.ha.cn [202.102.224.112]) by hub.freebsd.org (Postfix) with ESMTP id DA18415102 for ; Sun, 23 May 1999 04:19:15 -0700 (PDT) (envelope-from ptwl@public2.zz.ha.cn) Received: from ptwl (ppp60.pyptt.ha.cn [202.102.242.252]) by public2.zz.ha.cn (8.9.1a/8.9.1) with SMTP id TAA13574 for ; Sun, 23 May 1999 19:21:38 +0800 (CST) Message-ID: <00a101bea50d$d8295d60$fcf266ca@ptwl> From: "ptwl" To: Subject: PUYANG TONGYUAN WOOD (http://www.p-tongyuan.com/) Date: Sun, 23 May 1999 19:17:27 +0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_009E_01BEA550.E4FCEBE0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 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_009E_01BEA550.E4FCEBE0 Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: quoted-printable PUYANG TONGYUAN WOOD-CRAFIS CO.,LTD SOUTH JINGKAI ROAD, PUYANG CITY,HENAN,CHINA TEL:(0393)4434139 1383936167 FAX:(0393)4426049=20 E-MAIL:PUBLIC2.ZZ.HA.CN =CD=A9=D4=B4=C4=BE=D2=B5=20 =20 -------------------------------------------------------------------------= ------- =B6=AD=CA=C2=B3=A4 =C0=EE=CB=B3=D7=AF =20 = =CE=D2=B9=AB=CB=BE=CA=C7=D2=BB=BC=D2=D3=B5=D3=D0=BD=F8=B3=F6=BF=DA=BE=AD=D3= =AA=C8=A8=B5=C4=C9=FA=B2=FA=D0=CD=B9=AB=CB=BE. = =D6=F7=D2=AA=C9=FA=B2=FA=CD=A9=C4=BE=D6=C6=C6=B7=A3=BA=D2=C2=C9=D1=CF=E4=A1= =A2=C3=D7=CF=E4=A1=A2=B2=CB=CF=E4=A1=A2=D3=AC=D5=CA... ... = =CE=D2=B9=AB=CB=BE=B2=FA=C6=B7100%=CF=FA=CD=F9=C8=D5=B1=BE=B9=FA.=B9=AB=CB= =BE=D3=B5=D3=D0=D1=B5=C1=B7=D3=D0=CB=D8=B5=C4=C4=BE=B9=A4=CA=A6=B8=B5110=C8= =CB. = =B9=AB=CB=BE=B6=AD=CA=C2=B3=A4=C0=EE=CB=B3=D7=AF=D3=B5=D3=D0=B6=E0=C4=EA=B5= =C4=B6=D4=C8=D5=C3=B3=D2=D7=BE=AD=D1=E9. =20 =20 -------------------------------------------------------------------------= ------- =CF=C4=BC=BE=D0=C2=C6=B7 =A3=BA =A1=A1 =20 =20 =20 =20 W1000*d4005H1350mm W1000*d4405H900mm =A1=A1 W1000*d4005H1350mm=20 =20 W345*D300*H870mm =20 W310*D360*H838mm Next>> =20 =20 -------------------------------------------------------------------------= ------- ------=_NextPart_000_009E_01BEA550.E4FCEBE0 Content-Type: text/html; charset="gb2312" Content-Transfer-Encoding: quoted-printable PUYANG TONGYUAN WOOD
 

PUYANG TONGYUAN WOOD-CRAFIS CO.,LTD=
SOUTH JINGKAI ROAD, PUYANG = CITY,HENAN,CHINA
TEL:(0393)4434139=20 1383936167 FAX:(0393)4426049
E-MAIL:PUBLIC2.ZZ.HA.CN
<= BR>

=CD=A9=D4=B4=C4=BE=D2=B5=20


3D"4.jpg
=B6=AD=CA=C2=B3=A4 = =C0=EE=CB=B3=D7=AF


=CE=D2=B9=AB=CB=BE=CA=C7=D2=BB=BC=D2=D3=B5=D3=D0=BD=F8=B3=F6=BF=DA=BE= =AD=D3=AA=C8=A8=B5=C4=C9=FA=B2=FA=D0=CD=B9=AB=CB=BE.
=D6=F7=D2=AA=C9=FA= =B2=FA=CD=A9=C4=BE=D6=C6=C6=B7=A3=BA=D2=C2=C9=D1=CF=E4=A1=A2=C3=D7=CF=E4=A1= =A2=B2=CB=CF=E4=A1=A2=D3=AC=D5=CA...=20 = ...
=CE=D2=B9=AB=CB=BE=B2=FA=C6=B7100%=CF=FA=CD=F9=C8=D5=B1=BE=B9=FA.=B9= =AB=CB=BE=D3=B5=D3=D0=D1=B5=C1=B7=D3=D0=CB=D8=B5=C4=C4=BE=B9=A4=CA=A6=B8=B5= 110=C8=CB.
=B9=AB=CB=BE=B6=AD=CA=C2=B3=A4=C0=EE=CB=B3=D7=AF=D3=B5=D3=D0= =B6=E0=C4=EA=B5=C4=B6=D4=C8=D5=C3=B3=D2=D7=BE=AD=D1=E9.



 =CF=C4=BC=BE=D0=C2=C6=B7  =A3=BA       =A1=A1 =           =20        

3D"x2.jpg
3D"1.jpg 
3D"x3.jpg
W1000*d4005H1350mm  W1000*d4405H900mm

=A1=A1

W1000*d4005H1350mm
3D"1.jpg
W345*D300*H870mm =  
3D"2.jpg
W310*D360*H838mm

Next>>



------=_NextPart_000_009E_01BEA550.E4FCEBE0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 23 6:30: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0DBF814D18 for ; Sun, 23 May 1999 06:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA11207; Sun, 23 May 1999 06:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 23 May 1999 06:30:02 -0700 (PDT) Message-Id: <199905231330.GAA11207@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jeremy Lea Subject: Re: ports/11844: Port update: GNOME ports. Reply-To: Jeremy Lea Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11844; it has been noted by GNATS. From: Jeremy Lea To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/11844: Port update: GNOME ports. Date: Sun, 23 May 1999 15:21:38 +0200 Hi, On Sat, May 22, 1999 at 05:00:01PM -0700, gnats-admin@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/11844'. > The individual assigned to look at your > report is: freebsd-ports. > > >Category: ports > >Responsible: freebsd-ports > >Synopsis: Port update: GNOME ports. > >Arrival-Date: Sat May 22 17:00:01 PDT 1999 It seems this one was too long to make it through the mail filters... Or I deleted it by accident :-). It's in the GNATS database though. I hope this reply goes to the right place. Regards, -Jeremy -- | "I could be anything I wanted to, but one things true --+-- Never gonna be as big as Jesus, never gonna hold the world in my hand | Never gonna be as big as Jesus, never gonna build a promised land | But that's, that's all right, OK with me..." -Audio Adrenaline To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 23 10: 9:47 1999 Delivered-To: freebsd-ports@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 3A7471510E; Sun, 23 May 1999 10:09:44 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id LAA76979; Sun, 23 May 1999 11:08:29 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id LAA12443; Sun, 23 May 1999 11:08:43 -0600 (MDT) Message-Id: <199905231708.LAA12443@harmony.village.org> To: Andreas Klemm Subject: Re: cvs commit: ports/print/apsfilter Makefile ports/print/apsfilter/files md5 ports/print/apsfilter/pkg DESCR PLIST Cc: ports@FreeBSD.org In-reply-to: Your message of "Sun, 23 May 1999 09:16:32 PDT." <199905231616.JAA83097@freefall.freebsd.org> References: <199905231616.JAA83097@freefall.freebsd.org> Date: Sun, 23 May 1999 11:08:43 -0600 From: Warner Losh Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <199905231616.JAA83097@freefall.freebsd.org> Andreas Klemm writes: : - when BATCH is defined set PAPERSIZE to a4, to avoid problems with a2ps port Shouldn't that be "letter" rather than "a4" since "letter" works with printers that have "a4" paper, while "a4" produces clipped results for printers that have letter papper? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 23 10:40: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6DDEF14F18 for ; Sun, 23 May 1999 10:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA87398; Sun, 23 May 1999 10:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from desh.globix.net (desh.globix.net [209.208.255.16]) by hub.freebsd.org (Postfix) with ESMTP id 8E28614ECC for ; Sun, 23 May 1999 10:32:41 -0700 (PDT) (envelope-from oleg@desh.globix.net) Received: (from root@localhost) by desh.globix.net (8.9.3/8.9.3) id NAA73997; Sun, 23 May 1999 13:32:57 -0400 (EDT) (envelope-from oleg) Message-Id: <199905231732.NAA73997@desh.globix.net> Date: Sun, 23 May 1999 13:32:57 -0400 (EDT) From: oleg@ogurok.com Reply-To: oleg@ogurok.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11862: ports/www/apache13-fp is broken Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11862 >Category: ports >Synopsis: apache13-fp port is broken >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: Sun May 23 10:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Oleg Ogurok >Release: FreeBSD 3.2-RELEASE i386 >Organization: >Environment: Pentium 133, 2.5Gb hdd. 3.2-RELEASE. Tried to CVSUP the latest ports, same problem. >Description: Can't install port www/apache13-fp. >How-To-Repeat: doing: cd /usr/ports/www/apache13-fp make install Creating and modifying new /usr/local/frontpage/version3.0/frontpage.cnf... Install new sub/per-user webs now (y/n) [Y]? Using FrontPage Configuration File: /usr/local/frontpage/we80.cnf Getting DocumentRoot and UserDir. Found Directive ResourceConfig, value /usr/local/etc/apache/srm.conf. Getting DocumentRoot from /usr/local/etc/apache/srm.conf. Getting UserDir from /usr/local/etc/apache/srm.conf. ERROR: does not exist! ERROR: Unable to get DocumentRoot/UserDir Exiting due to an error! Please fix the error and try again. *** Error code 1 Stop. >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 May 23 10:59:13 1999 Delivered-To: freebsd-ports@freebsd.org Received: from smtp02.wxs.nl (smtp02.wxs.nl [195.121.6.60]) by hub.freebsd.org (Postfix) with ESMTP id EBF2D14F18; Sun, 23 May 1999 10:59:11 -0700 (PDT) (envelope-from asmodai@wxs.nl) Received: from daemon.ninth-circle.org ([195.121.196.63]) by smtp02.wxs.nl (Netscape Messaging Server 3.61) with ESMTP id AAAB11; Sun, 23 May 1999 19:59:10 +0200 Received: from daemon.ninth-circle.org (abaddon@daemon [192.168.0.1]) by daemon.ninth-circle.org (8.9.3/8.9.3) with ESMTP id TAA08168; Sun, 23 May 1999 19:59:25 +0200 (CEST) (envelope-from asmodai@wxs.nl) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Sun, 23 May 1999 19:59:25 +0200 (CEST) Organization: Ninth Circle Enterprises From: Jeroen Ruigrok/Asmodai To: cwt@freebsd.org, FreeBSD Ports Subject: Port of TCL 8.0.5 on CURRENT Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, it seems as if the recent addition of MLIST to the Makefile of TCL 8.0.5 in /usr/ports/lang/tcl80 doesn't work the way it should be. a make doesn't show anything... a make -dA shows as if the make process is in a loop... if ye let the make run and monitor the processes it seems as if there are a few make targets going haywire since one grep of make in ps gave me fetch, fetch, configure as well as patch... This doesn't look right to me... Anyone care to explain this to me? Because if I remove all the MLIST entries it does work normally... 'gards, --- Jeroen Ruigrok van der Werven asmodai(at)wxs.nl The FreeBSD Programmer's Documentation Project Network/Security Specialist *BSD: Accept no limitations... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 23 11:10: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9098114F91 for ; Sun, 23 May 1999 11:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA90303; Sun, 23 May 1999 11:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id B6C3B14F18 for ; Sun, 23 May 1999 11:07:25 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id C18781439; Sun, 23 May 1999 11:07:20 -0700 (PDT) Message-Id: <19990523180720.C18781439@norn.ca.eu.org> Date: Sun, 23 May 1999 11:07:20 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11863: Update: net/ezbounce Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11863 >Category: ports >Synopsis: Update: net/ezbounce >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 May 23 11:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #213: Wed May 19 09:07:23 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: Update to 0.85.2, tweak the makefile so it shows the installs being done. I'm the maintainer. >How-To-Repeat: >Fix: Index: ezbounce/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/net/ezbounce/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 1999/05/03 02:27:09 1.2 +++ Makefile 1999/05/23 18:05:26 @@ -1,12 +1,12 @@ # New ports collection makefile for: ezbounce -# Version required: 0.85 +# Version required: 0.85.2 # Date created: 19 February 1999 # Whom: Chris Piazza # # $Id: Makefile,v 1.2 1999/05/03 02:27:09 steve Exp $ # -DISTNAME= ezbounce-0.85 +DISTNAME= ezbounce-0.85.2 CATEGORIES= net MASTER_SITES= http://druglord.freelsd.org/ezbounce/ \ http://irc.themes.org/downloads/misc/ @@ -22,15 +22,15 @@ @ ${ECHO} to set up this program. @ ${ECHO} Also, edit ${PREFIX}/etc/ezbounce.conf to your liking. @ ${ECHO} ------------------------------------------------------------------ - @ ${INSTALL_PROGRAM} -C ${WRKSRC}/ezbounce ${PREFIX}/sbin - @ ${INSTALL_PROGRAM} -C ${WRKSRC}/mdidentd/mdidentd ${PREFIX}/sbin + ${INSTALL_PROGRAM} -C ${WRKSRC}/ezbounce ${PREFIX}/sbin + ${INSTALL_PROGRAM} -C ${WRKSRC}/mdidentd/mdidentd ${PREFIX}/sbin @ ${SED} -e s:/path/to:${PREFIX}/sbin: ${WRKSRC}/sample.conf > \ ${WRKSRC}/sample.conf.new - @ if [ ! -f ${PREFIX}/etc/ezbounce.conf ]; then \ + if [ ! -f ${PREFIX}/etc/ezbounce.conf ]; then \ ${INSTALL_SCRIPT} -C ${WRKSRC}/sample.conf.new \ ${PREFIX}/etc/ezbounce.conf; \ fi - @ ${INSTALL_SCRIPT} -C ${WRKSRC}/sample.conf.new \ + ${INSTALL_SCRIPT} -C ${WRKSRC}/sample.conf.new \ ${PREFIX}/etc/ezbounce.conf.default .include Index: ezbounce/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/net/ezbounce/files/md5,v retrieving revision 1.2 diff -u -r1.2 md5 --- md5 1999/05/03 02:27:22 1.2 +++ md5 1999/05/23 18:01:34 @@ -1 +1 @@ -MD5 (ezbounce-0.85.tar.gz) = fcedf86cd173a2451399bc40c5cff143 +MD5 (ezbounce-0.85.2.tar.gz) = 7ebdedf4f4fd586553e272160352b3c8 -Chris >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 May 23 11:50: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B8F1E150C8 for ; Sun, 23 May 1999 11:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA92601; Sun, 23 May 1999 11:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from yang.vegamuse.org (unknown [206.239.71.148]) by hub.freebsd.org (Postfix) with ESMTP id 521E014DB0 for ; Sun, 23 May 1999 11:45:30 -0700 (PDT) (envelope-from sab@vegamuse.org) Received: (from sab@localhost) by yang.vegamuse.org (8.9.3/8.9.1) id OAA31505; Sun, 23 May 1999 14:44:19 -0400 (EDT) (envelope-from sab) Message-Id: <199905231844.OAA31505@yang.vegamuse.org> Date: Sun, 23 May 1999 14:44:19 -0400 (EDT) From: sk-ports@yin.vegamuse.org Reply-To: sk-ports@yin.vegamuse.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11864: New port: wminet Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11864 >Category: ports >Synopsis: New port: wminet >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 May 23 11:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Stephen Kiernan >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD ports collection >Description: WindowMaker dockable inetd monitor. >How-To-Repeat: >Fix: begin 644 wminet-port.tar.gz M'XL(``E+2#<``^P];7O:QK+]:G[%A*:)P.)%0@)LUVD@4LW\#C]`O:&J54W3%15`J6KU^@^@WRM589GZ@>$!_.`Y3K"L MW_7(-,0VNXP4^])SQV.P%EF/#)-0'&#C>-LX15Y/&`$)O0\$W_Q!M98@R/C!I2MK2WL\G[D3+8A4SJ! MZ8Y,&]Y:IF<;-OSL7Y8822^OS*$QF?IFV?&&+W(_(H*G[?Y3?,@=M#OGQWM' MK=T-3EN)$[&_=][Z]>2LW>KL;O@W_C2PQCY<6W;?N2:>O-S17N>\==;MM,^I MRR!PMRL5_%F>F'\8U\8-#51QIQ>5`Z=WN>>Z?B6'(.WC<_R_=88X193E=R[\_>=L[V=S41___$"4U_Y/^O8A\ MA?\':.B9^5=5[='_/T@Y.M!!2GK0,HJC//RC`+NPU=3JFFJ81E-3E;YFUK7J M8-`P55WO#8SF5NW1AO_S2[C^72/HC>[+`]S=_M?T1I7%__C?H_U_B)*9?_:[ M9%Q\TS&6VW]-KZLS^Z_5:SC_M;JN/-K_ARC%8A$PI,=_<]E&5-/#%,<:;AQA MUG?L7$&MBKG>\/C\]`'_J4E8!%S=P9%V:\!:STY%Q#<:E M`0>>,70\&Z0^?W@Y,<>]D>5X9=OTKDI3NSP94_)6$"&\-GS,@3%SJ6L75@"] ML8EI*8UB>('UNPVGEAG@6"9(;OCT\K.O87Y5ML>%W";@/WCMF>:KS@%$%&:S M7$F82S)RZ'_?-&$4L/PTD;\F\U1*SF'B>"88UZ;O3$Q,TP'3L$O`&?!AFU`) MQ:O69+4Y$Z^JRS4]$N^/<#&-:ER$RL'F(-" MMQNRW^VRRJCGV)I8@1]UC6HOKR;9*E2;_D58R=))J!236*%8X*H58G_6!RUAJQOS8N#L!";O@B]Y?3F9<7&Q>DP@SN)9M;] M"D.PC#A8XXT?CL(4+"6KBN=,`U,@1+8,+7MQ2Q?1!B+Q\W9W":3;NU@,UQ5P M$;4&O85HL:D[\!?20\V!-3&7H9Z-G.IA>*Y18>9H+:V:!A,W.[-]RS/MA?JD M-^2Z.M.GIB)O52-]JE3@T*"5ZGB7)0,GS>Z7RV7H6,,1_;XF`W%MC<<0C,P; M0*VU^X;7M_XPJ0)&)MHDSW_RRY-?B!Z^V0/G^Z?=5N=\[]5AN_.F=0`*L<#4 MS29].VB]WGMW>-Y]?]0^;IV?[5-3")EM@GS%#*)M'*^73XEIKC/*:I-D97Y& M"VAO]$;H2(M%T[ZR/,?>X7*DRHTBFM?A,;*](Y375D-6J@F!*6B0E%K2X#/4 MTYYC#ZQAEW+5CZI>_[03\SF_K/S`F_8"H,F#8IMP];4"SL M)$3A1VT%^`*\/0+K3@[CU%EQ+X(_*(S"W&S6>HV?ML?MOQ_`S<"`U.#F(>H6%+8BY2,9,(IY/^H_\2P;&(0#&_8BU#B\]7'3Z@X MO-\&MF]L6#M>PW:F M@8TP,*V;9\!G%GT@ MI6C._^17RK''ELD+H0N6\F].CEKY0K0*DS)[,K=V$PA34OR2X0BCE]>8Y,"% M@4E&X$`J6LA(6DQL.KY(23@SUE(BDW"W81+3D-5Z2HE62=,648CS_C>6Z6*2 ML]'9-Q*M.'VLRZK6%!FD2!R8S'9=SQD$;E^\*N?K(E!++++'!AP+`#8P#(\PX?#>@GU$%BZPNIH./F$QJGU*UQ<"YE.F'@A$'%SX&9);\>ZJ7 M;[K^QT^[7_*5_&VV064-V[R![06PD/;-^?EI]^CDN'U^#W`TO29K]7@IK,_*YHSFG41FGPZHHRZ_+V1]?5Z3`>X3\3[)'>4@G&*U M(6LU+>M(9JEX4HNN1W0>29*F`>;BLU0[XUO3JX&6&`*47DR#+NW=4;S_KM/B M)+8ZG0(\>P8(L[$1]2+E12M`R^[Y;]7G=,0L4FI5Y)-@F?F:S&(4'X,;D$&1&)%\=Z/9(7JI*&D]9HH M+AD[0V]JXR+#GRC1++ZPF6^O82]Z8`M='-+BRN0QXD\^VCTTA5U:P:X1C-BG MF3/)1HK1=&&"VL<)9AM*#-E)]^S@Y/CP7S+0J[("2TQ+RKR(2*'TJBKK56&Z M](W8M)-\D@GZ3MP*)[FAX7*J9B?YEGG?.26B-R22M5O=`0OU+N7]=BB-FQ]S M?@&L.>N6.#V>N4Z2@V4/X?E/_G/F.!&Q$"2QZ\C']O+"?B1CVE5DRJ%NR7IM M+NJZ3_%\E;9\/RD)E6JKCDNJGE0J3,OH[1OMHCH]DV@.&^PW6(U#5L.5L\0# MYF8CP\2QK<#QNH04(KGB@DXN&'24X3K!)RE?H:'3S!`J;$N[`S;ONB+K]6IR MWM?A`*)SHW-L,!<9'RM-F/C"W1C\R]R)Y@O-GZPK6;XS=D9&* MM@J[E=.(IOP M]Q:74,UJ*+Z&&JF9:*4?M\Z7KX,GL:`2LDK8K%`LX:O+?$3LDSD"9S59J0\P M4/0YI[JBLHWM'5K]6`V>U0=G`('Y.0C?'H;`&1QAX(E#S2,K0#:+%LT[IAC( M%.:<^,#A*95(L2+L2MGM7^@K!OFH?4*OQD+0C0U*?A;BB#ML[H*>K/BH?N(V MGE#";"%E-,-M!8HL0+^&A*O1`/EH"BA6`*P)0LW`("K(BK[ M6+^G.BB9'HO9\D?.=-QGWP*!8&315T-H@W#J&1=C48[`HSR+XC@,S>#//Z/G M9I7Y#^EW^IAY3UT0[;@9@3G)?$"SZ460$VTS54MY.E1FBD&KJL-Y79ZW-]2Y?K M53UY7BI+E#WP$RYZP0NZ6&)$K1L:JZGO52XLNX(:>R(A*9`R3"I/6!I$A4]1F;,B$(MQ246+53/AW[@3&F$Z&I8,GJHB# M)X%LR9PGA#N;^*Q84O9_[!A]XVJ8GW=6(I9IFNM*7:[/7BRO0?1F*N)+AG2T M5A='@M$>TR##+"[WC+:G%4$DGD6SC03,#3Q3@2^K]CG8%I;I>;1WUCT]Z;0_ MJ-W#]G&K>[3WX5-RP5]>33`!+EY28DK/-!?L2Q!2:".3/V?Y*D<-&0%! M\68=Y2"T]&B$T?-Z+#'*B[%D=E\R=I#V]4AR_@X/)!8F'2FH\/WXI64/'"[X M(GN&W=2^C5#@E M`/$>:+8:$UGF?X!26?@YE!6EL'.QRP(?0Z0\83OF$U>"MVU&K?2,R8NRU=(+ MM]MS)A.<0XFE506A(>/VD0%!QO/JS.1T0S%?JAIB8W-"T1;JSBF!^/SA*SN?"D$)70E"%M@6/2 MH29W9X;'9V:)-4A*86=6ZYO>5;J2A0>2Y/+M]1B*=M@W0Z;BR";:B!7P$[Q7MP0+@GR=!Z5'4JE,[%N[V)L^90< M5V5XABC8`T6'+[AW22)+CQEK!WF670S=QV.G)_$36YE^1`7S/]F&.8PBDA=1 MS"*M&ZQ$]YD?A(>B[ZPBCO=< MK"+`=1BUV,'^/@N$`J?GC.E-5/L4/>?Y21=34UQD?_ZY9&X`42#II1?X`P,A MNX>+_`530#X7-%-W0F$&W;%MH&+$V,9&O^^QMR#MX[V#@[/NWO&_TO9EKF!" M'ECVU+P#WW;@C'Q)FG:9(2[,1B63S$;EMAEC[Q6T!PB)`J==BS"?[Z0.GB\C M>;$^,F[0"5!8M*C/K;A%5"VJ&Z`WD?A^X>:RWHE/T>-M)IFY?T<=DOR5+ED8 ME-053!7KL\"IT:C*C48]LT7`AIT+E%8$26&O\&@LFTB"%+^A;2@UN:'6L_OV MMGG]&4J[L/]F[ZS[OGUP_F8V>+R!DWD-5U4ME(0]G23?.B:.M;-NA%AF1]EG M)T]X;PSF$@>A^8GGOW2@/!'+\6D-/(%*)!2%?35$KKF$7?*"> M<4NT''W3O)2(60QN.JW6VVZG=5X(9U'3Y::N9&=Q&4EVDJ;XG>DWI4PHO'H# MU[WPA`05ME%#\K<^D7U_OOL'^K\U?7S5_"4J MA5+=:J)!3EF7A"..OMNRW`//5$3(3]Y@5VPIN-;#I]0^X#(8-891[PQ3BV%J M=X;18ACMSC!Z#*.GY)W^HA(#2.XW(=2SY.>[PD[I8%@2F%7<%7H0N$E8_'A7 M2-KZ2X+2Y[O"VH,4Q?AQ%63B@#1!)L]+KYZ7Y-F;S%&<[$DMP="4$US3!HY" M=W;1Z''-1^43U:TB/H7!"P0H,/U8S48"S=BX,,>()X6&5=Z9%G6>&W4];E0! M-^KZW*@";M1UN:G-H`)K[D>8,)UK@>8\)_S7SY\=*)_0R=XV@-[_J`]W^)[W\SOND8*^[_K%7U>GS_NUJMLOO?E,?[WQZD M%)?<_Q9="L_O?WOM67!@]D!10%6W%7U;TU;?_Q:A2-__IA&XLK7D_C<96\,] MF,/V*_H6X2Z4#MD)P@^*,O1<'6UX=[ MOW:H\41%/">O_@L_A+>%EQWX#>LV-AC50],V/6,\>Q(W3RR_)VZA5^!E)Q?M MHM.5>=MT!+?7@U([036_*3NZ1NJIQ"@L0`F[O:<[`)[^#"4'GA8YKB?A13'; MV).H+X0H9W!.V`.>_D_$_%.)"ZS`GSH%CHFN_MZ.KG'G=RK1G7;;=*_&!GT- MR`++CL:!'>@3G^QR#EF-#]A\Y53@S\NK"?;9YS/R"Y^2^//F;EI*H7S2'0ZR M%QSLYG_+S^X@3UZ:\%L^_S#SO0FG9R>_(L])N2;G_^F7_?W;Y2JPOTH'GDHT M2"&E!!QO`A@!7L:S=Q=-"+'>615$JU2MR;7X7<*&AY,^@.*_<^$9('[=?*QS MI+HN]0@UEHED[/10FG0DF+6/)DX?Z*K83&,"QFD@BY-\?6:BDT.92,-C?5!A8MN6/ M3+KO+<]O2*C+M3A]OH/\PCJF*D.XG)@(,0&5!(8*P.013FOB]S*KR.W^S"TKDP?;IPIT$WE.=OJF?`,;&L0W,#`-(*IA\UC MZ]+!X=,$.."X%_CY(I1&3T<@<)[?\BM"R"5NE;_D,:T+BP4IT3Y M7W5-4[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 May 23 11:57:13 1999 Delivered-To: freebsd-ports@freebsd.org Received: from picalon.gun.de (picalon.gun.de [194.77.0.18]) by hub.freebsd.org (Postfix) with ESMTP id 80A4D14D7B for ; Sun, 23 May 1999 11:57:09 -0700 (PDT) (envelope-from andreas@klemm.gtn.com) Received: from klemm.gtn.com (pppak04.gtn.com [194.231.123.169]) by picalon.gun.de (8.8.6/8.8.6) with ESMTP id UAA01333; Sun, 23 May 1999 20:57:06 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.9.3/8.9.3) id UAA09109; Sun, 23 May 1999 20:36:18 +0200 (CEST) (envelope-from andreas) Date: Sun, 23 May 1999 20:36:17 +0200 From: Andreas Klemm To: Warner Losh Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/print/apsfilter Makefile ports/print/apsfilter/files md5 ports/print/apsfilter/pkg DESCR PLIST Message-ID: <19990523203617.A9073@titan.klemm.gtn.com> References: <199905231616.JAA83097@freefall.freebsd.org> <199905231708.LAA12443@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <199905231708.LAA12443@harmony.village.org>; from Warner Losh on Sun, May 23, 1999 at 11:08:43AM -0600 X-Operating-System: FreeBSD 3.2-STABLE SMP X-Disclaimer: A free society is one where it is safe to be unpopular Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, May 23, 1999 at 11:08:43AM -0600, Warner Losh wrote: > In message <199905231616.JAA83097@freefall.freebsd.org> Andreas Klemm writes: > : - when BATCH is defined set PAPERSIZE to a4, to avoid problems with a2ps port > > Shouldn't that be "letter" rather than "a4" since "letter" works with > printers that have "a4" paper, while "a4" produces clipped results for > printers that have letter papper? > > Warner You're right, committed. -- Andreas Klemm http://www.FreeBSD.ORG/~andreas http://www.freebsd.org/~fsmp/SMP/SMP.html powered by Symmetric MultiProcessor FreeBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 23 16:59:37 1999 Delivered-To: freebsd-ports@freebsd.org Received: from opus.cts.cwu.edu (opus.cts.cwu.edu [198.104.92.71]) by hub.freebsd.org (Postfix) with ESMTP id A1AC314E5D for ; Sun, 23 May 1999 16:59:34 -0700 (PDT) (envelope-from skynyrd@opus.cts.cwu.edu) Received: from localhost (skynyrd@localhost) by opus.cts.cwu.edu (8.9.2/8.9.1) with ESMTP id QAA85621; Sun, 23 May 1999 16:59:31 -0700 (PDT) Date: Sun, 23 May 1999 16:59:30 -0700 (PDT) From: Chris Timmons To: Jeroen Ruigrok/Asmodai Cc: FreeBSD Ports Subject: Re: Port of TCL 8.0.5 on CURRENT 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 My experience with this is that the processing done for MLINKS and MAN
variables in the port master Makefile takes a LONG time. A Really, Really LONG time. Minutes on a pentium pro 200. Let it spin for a while if you are running on a slower cpu. If you grep the bsd.port.mk family of files for MLINKS you'll see that make's internal pattern matching and substitution facility is run against some of the variables which is one place where things could be taking time when MLINKS is a long list. -Chris On Sun, 23 May 1999, Jeroen Ruigrok/Asmodai wrote: > Hi, > > it seems as if the recent addition of MLIST to the Makefile of TCL 8.0.5 in > /usr/ports/lang/tcl80 doesn't work the way it should be. > > a make doesn't show anything... > > a make -dA shows as if the make process is in a loop... > > if ye let the make run and monitor the processes it seems as if there are a > few make targets going haywire since one grep of make in ps gave me fetch, > fetch, configure as well as patch... > > This doesn't look right to me... > > Anyone care to explain this to me? Because if I remove all the MLIST > entries it does work normally... > > 'gards, > > --- > Jeroen Ruigrok van der Werven asmodai(at)wxs.nl > The FreeBSD Programmer's Documentation Project > Network/Security Specialist > *BSD: Accept no limitations... > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 23 17:33:56 1999 Delivered-To: freebsd-ports@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 16B7114BFF for ; Sun, 23 May 1999 17:33:54 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (d60-077.leach.ucdavis.edu [169.237.60.77]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id RAA92227; Sun, 23 May 1999 17:33:53 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id AAA38504; Mon, 24 May 1999 00:33:53 GMT (envelope-from obrien) Date: Sun, 23 May 1999 17:33:53 -0700 From: "David O'Brien" To: matt Cc: "Matthew D. Fuller" , ports@FreeBSD.ORG Subject: Re: HRMMM... Communicator 4.6 Port. Message-ID: <19990523173353.A38483@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <19990519025301.B4947@futuresouth.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: ; from matt on Wed, May 19, 1999 at 05:13:26AM -0400 X-Operating-System: FreeBSD 4.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > were any neat patches or anything. Unfortunately, Fortify isn't out for > 4.6-communicator *nix yet =( and even though I'm in canada, my box > reverses to a .cc domain, and the bloody netscape people won't lemme > download the US version. Oh well. *IS* there even a US version of 4.6? I haven't been able to find a newer US version than 4.5. (and thus the port hasn't been updated since) -- -- David (obrien@NUXI.com -or- 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 Sun May 23 17:39:25 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ontario.mooseriver.com (ontario.mooseriver.com [208.138.31.116]) by hub.freebsd.org (Postfix) with ESMTP id A0B5814D89; Sun, 23 May 1999 17:39:21 -0700 (PDT) (envelope-from jgrosch@ontario.mooseriver.com) Received: (from jgrosch@localhost) by ontario.mooseriver.com (8.9.3/8.9.1) id RAA57314; Sun, 23 May 1999 17:39:20 -0700 (PDT) (envelope-from jgrosch) Date: Sun, 23 May 1999 17:39:20 -0700 From: Josef Grosch To: "David O'Brien" Cc: matt , "Matthew D. Fuller" , ports@FreeBSD.ORG Subject: Re: HRMMM... Communicator 4.6 Port. Message-ID: <19990523173920.A57293@ontario.mooseriver.com> Reply-To: jgrosch@MooseRiver.com References: <19990519025301.B4947@futuresouth.com> <19990523173353.A38483@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <19990523173353.A38483@dragon.nuxi.com>; from David O'Brien on Sun, May 23, 1999 at 05:33:53PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, May 23, 1999 at 05:33:53PM -0700, David O'Brien wrote: > > were any neat patches or anything. Unfortunately, Fortify isn't out for > > 4.6-communicator *nix yet =( and even though I'm in canada, my box > > reverses to a .cc domain, and the bloody netscape people won't lemme > > download the US version. Oh well. > > *IS* there even a US version of 4.6? I haven't been able to find a newer > US version than 4.5. (and thus the port hasn't been updated since) ftp://ftp.netscape.com/pub/communicator/4.6/english/unix/unsupported/freebsd Josef -- Josef Grosch | Another day closer to a | FreeBSD 3.2 jgrosch@MooseRiver.com | Micro$oft free world | UNIX for the masses To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 23 17:46:22 1999 Delivered-To: freebsd-ports@freebsd.org Received: from Argon.Mlink.NET (Argon.Mlink.NET [205.236.182.18]) by hub.freebsd.org (Postfix) with ESMTP id 2D67814DA9; Sun, 23 May 1999 17:46:20 -0700 (PDT) (envelope-from matt@Mlink.NET) Received: from ns-1.ccia.cc (matt@matt-gw.Mlink.NET [209.104.117.209]) by Argon.Mlink.NET (8.8.8/8.8.2) with ESMTP id UAA22299; Sun, 23 May 1999 20:44:13 -0400 (EDT) Date: Sun, 23 May 1999 20:46:36 -0400 (EDT) From: matt X-Sender: matt@ns-1.ccia.cc To: "David O'Brien" Cc: "Matthew D. Fuller" , ports@FreeBSD.ORG Subject: Re: HRMMM... Communicator 4.6 Port. In-Reply-To: <19990523173353.A38483@dragon.nuxi.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 On Sun, 23 May 1999, David O'Brien wrote: [...] : *IS* there even a US version of 4.6? I haven't been able to find a newer : US version than 4.5. (and thus the port hasn't been updated since) Who cares? I just use Fortify =) I think I trust it more than I trust US encryption. it's prolly backdoored! LOL. (people wonder why I use international SSH and PGP =P) : -- David (obrien@NUXI.com -or- obrien@FreeBSD.org) -- DISCLAIMER: Anyone sending me unsolicited/commercial electronic mail will be charged a $100 fee for time spent reading it. Do NOT send this type of electronic mail to me. In reading this, you automatically agree to be subjected to these terms: US Code Title 47, Sec.227(a)(2)(B), a computer/modem/printer meets the definition of a telephone fax machine. By Sec.227(b)(1)(C), it is unlawful to send any unsolicited advertisement to such equipment. By Sec.227(b)(3)(C), a violation of the aforementioned Section is punishable by action to recover actual monetary loss, or $500, whichever is greater, for each violation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 23 18: 9:48 1999 Delivered-To: freebsd-ports@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id F323314DA3 for ; Sun, 23 May 1999 18:09:46 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (d60-077.leach.ucdavis.edu [169.237.60.77]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id SAA92345; Sun, 23 May 1999 18:09:46 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id BAA39149; Mon, 24 May 1999 01:09:46 GMT (envelope-from obrien) Date: Sun, 23 May 1999 18:09:45 -0700 From: "David O'Brien" To: jgrosch@MooseRiver.com Cc: ports@FreeBSD.ORG Subject: Re: HRMMM... Communicator 4.6 Port. Message-ID: <19990523180945.A39123@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <19990519025301.B4947@futuresouth.com> <19990523173353.A38483@dragon.nuxi.com> <19990523173920.A57293@ontario.mooseriver.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <19990523173920.A57293@ontario.mooseriver.com>; from Josef Grosch on Sun, May 23, 1999 at 05:39:20PM -0700 X-Operating-System: FreeBSD 4.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > *IS* there even a US version of 4.6? I haven't been able to find a newer > > US version than 4.5. (and thus the port hasn't been updated since) > > ftp://ftp.netscape.com/pub/communicator/4.6/english/unix/unsupported/freebsd That would be the "export" version, not the '128-bit US' version. :-) -- -- David (obrien@NUXI.com -or- 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 Sun May 23 19:21:52 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E3C9F150B6; Sun, 23 May 1999 19:21:50 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA23513; Sun, 23 May 1999 19:21:50 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sun, 23 May 1999 19:21:50 -0700 (PDT) From: Message-Id: <199905240221.TAA23513@freefall.freebsd.org> To: shipley@dis.org, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11663: Update to port slush Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update to port slush State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sun May 23 19:21:05 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 23 19:39:17 1999 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 13D27151AE for ; Sun, 23 May 1999 19:39:10 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.1a/8.9.0) with ESMTP id VAA32644 for ; Sun, 23 May 1999 21:39:09 -0500 (CDT) Date: Sun, 23 May 1999 21:39:09 -0500 (CDT) From: Steve Price To: freebsd-ports@freebsd.org Subject: cvs commit: ports/audio/kmikmod Makefile ports/audio/kmpg Makefile ports/deskutils/kproject Makefile ports/devel/ktranslator Makefile ports/misc/kwatch Makefile ports/net/ksamba Makefile ports/palm/kpilot Makefile ports/print/klyx Makefile ... (fwd) 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 From the best I can tell, no port uses the old KDE version 1.0 after this commit. The killustrator port still needs to be upgraded but I changed it to depend on 1.1 too as a hint to whomever has the time to upgrade it. Now that KDE 1.0 is no longer used, I intend to remove it in the next couple of days unless someone has a very good reason to keep it. -steve ---------- Forwarded message ---------- Date: Sun, 23 May 1999 19:31:52 -0700 (PDT) From: Steve Price To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/kmikmod Makefile ports/audio/kmpg Makefile ports/deskutils/kproject Makefile ports/devel/ktranslator Makefile ports/misc/kwatch Makefile ports/net/ksamba Makefile ports/palm/kpilot Makefile ports/print/klyx Makefile ... steve 1999/05/23 19:31:52 PDT Modified files: audio/kmikmod Makefile audio/kmpg Makefile deskutils/kproject Makefile devel/ktranslator Makefile misc/kwatch Makefile net/ksamba Makefile palm/kpilot Makefile print/klyx Makefile x11/kworldwatch Makefile Log: Use KDE version 1.1 instead of version 1.0. Revision Changes Path 1.2 +3 -3 ports/audio/kmikmod/Makefile 1.12 +3 -3 ports/audio/kmpg/Makefile 1.9 +3 -3 ports/deskutils/kproject/Makefile 1.3 +4 -4 ports/devel/ktranslator/Makefile 1.11 +3 -3 ports/misc/kwatch/Makefile 1.10 +5 -5 ports/net/ksamba/Makefile 1.22 +7 -7 ports/palm/kpilot/Makefile 1.10 +5 -5 ports/print/klyx/Makefile 1.13 +4 -4 ports/x11/kworldwatch/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 23 20: 7:35 1999 Delivered-To: freebsd-ports@freebsd.org Received: from Argon.Mlink.NET (Argon.Mlink.NET [205.236.182.18]) by hub.freebsd.org (Postfix) with ESMTP id 17422151AE for ; Sun, 23 May 1999 20:07:32 -0700 (PDT) (envelope-from matt@Mlink.NET) Received: from ns-1.ccia.cc (matt@matt-gw.Mlink.NET [209.104.117.209]) by Argon.Mlink.NET (8.8.8/8.8.2) with ESMTP id XAA01330 for ; Sun, 23 May 1999 23:05:25 -0400 (EDT) Date: Sun, 23 May 1999 23:07:48 -0400 (EDT) From: matt X-Sender: matt@ns-1.ccia.cc To: FreeBSD-PORTS Subject: Secure Locate v. 1.5 Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-1003324082-927515268=:14508" 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-1003324082-927515268=:14508 Content-Type: TEXT/PLAIN; charset=US-ASCII I made a patch to port it to FreeBSD, a dirty one none the less, however I really don't feel like making a whole port for it since the author has assured me that 1.6 will support FreeBSD. However, I'm attaching the diff to port Secure Locate 1.5 to FreeBSD, I think it would be a valuable tool to put in the "security" section of the ports tree. If not replace the standard locate program all together, it's so much nicer.... Here are the original source code sites: ftp://mkintraweb.com/pub/linux/slocate/ ftp://ftp.fu-berlin.de/pub/unix/security/slocate/ PS: To anyone on BUGTRAQ, Sorry, but you're gonna see this patch twice. And I must also state that it's very dirty but works perfectly under FreeBSD 3.1-RELEASE, would be GREAT to see a port made of it.... Matt -- DISCLAIMER: Anyone sending me unsolicited/commercial electronic mail will be charged a $100 fee for time spent reading it. Do NOT send this type of electronic mail to me. In reading this, you automatically agree to be subjected to these terms: US Code Title 47, Sec.227(a)(2)(B), a computer/modem/printer meets the definition of a telephone fax machine. By Sec.227(b)(1)(C), it is unlawful to send any unsolicited advertisement to such equipment. By Sec.227(b)(3)(C), a violation of the aforementioned Section is punishable by action to recover actual monetary loss, or $500, whichever is greater, for each violation. --0-1003324082-927515268=:14508 Content-Type: TEXT/PLAIN; charset=US-ASCII; name="slocate1.5-fbsd.patch" Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename="slocate1.5-fbsd.patch" ZGlmZiAtdXJiIHNsb2NhdGUtMS41LW9yaWdpbmFsL2luc3RhbGwgc2xvY2F0 ZS0xLjUvaW5zdGFsbA0KLS0tIHNsb2NhdGUtMS41LW9yaWdpbmFsL2luc3Rh bGwJV2VkIE1heSAgNSAyMTo1MToyOSAxOTk5DQorKysgc2xvY2F0ZS0xLjUv aW5zdGFsbAlUaHUgTWF5IDEzIDAyOjE1OjAzIDE5OTkNCkBAIC0xLDUyICsx LDc5IEBADQogIyEvYmluL3NoDQogDQotZ3JvdXBhZGQgPi9kZXYvbnVsbCAy PiYxDQorU1lTVEVNPWB1bmFtZSAtc2ANCitlY2hvICJGaW5kaW5nIHlvdXIg c3lzdGVtIHR5cGUuLi4uLiINCiANCi1pZiBbICQ/IC1lcSAxMjcgXSA7IHRo ZW4NCitjYXNlICR7U1lTVEVNfSBpbg0KKw0KKyAgICAiTGludXgiKQ0KKw0K KyAgICAgICAgR1BBVEg9Ii91c3Ivc2Jpbi9ncm91cGFkZCINCisgICAgICAg IEdPUFRTPSJzbG9jYXRlIg0KKw0KKyAgICAgICAgREJQQVRIPSIvdmFyL2xp Yi9zbG9jYXRlIg0KKwlVUFJFRklYPSIvdXNyL2JpbiINCisNCisJZWNobyAi V2UgaGF2ZSBhIHdpbm5lciEgU1lTVEVNPUxpbnV4Ig0KKyAgICA7Ow0KKyAg ICAiRnJlZUJTRCIpDQorCQ0KKyAgICAgICAgR1BBVEg9Ii91c3Ivc2Jpbi9w dyINCisgICAgICAgIEdPUFRTPSJncm91cGFkZCBzbG9jYXRlIg0KKw0KKyAg ICAgICAgREJQQVRIPSIvdmFyL2RiL3Nsb2NhdGUiDQorCVVQUkVGSVg9Ii91 c3IvbGliZXhlYyINCisJDQorCWVjaG8gIldlIGhhdmUgYSB3aW5uZXIhIFNZ U1RFTT1GcmVlQlNEIg0KKyAgICA7Ow0KKyAgICAqKQ0KICAgIGVjaG8NCi0g ICBlY2hvICJDb3VsZCBub3QgZmluZCBncm91cGFkZCB1dGlsaXR5LiINCisg ICBlY2hvICJDb3VsZCBub3QgZmluZCBzeXN0ZW0gdHlwZSBmb3IgZ3JvdXBh ZGQuIg0KICAgIGVjaG8NCiAgICBlY2hvICJSZWFkIHRoZSBSRUFETUUuRE9D IGZpbGUgdG8gaW5zdGFsbCBTZWN1cmUgTG9jYXRlIG1hbnVhbGx5LiINCiAg ICBlY2hvDQogICAgZXhpdCAxDQotZmkNCitlc2FjDQogDQogdXNlcj1gaWQg LXVuYA0KLQ0KIGluc3RkaXI9Ii91c3IvYmluIg0KIGVjaG8NCiBlY2hvICJD b3B5aW5nIHNsb2NhdGUgdG8gJGluc3RkaXIiDQogaW5zdGFsbCAtbSAwNzU1 IHNsb2NhdGUgL3Vzci9iaW4NCi1ncm91cGFkZCBzbG9jYXRlDQorJEdQQVRI ICRHT1BUUw0KIA0KIENXRD0iYHB3ZGAiDQogDQogY2QgJGluc3RkaXINCiBl Y2hvDQogZWNobyAiQ2hhbmdpbmcgcGVybWlzaW9ucyBvbiBzbG9jYXRlIg0K Kw0KIGNob3duICR1c2VyOnNsb2NhdGUgc2xvY2F0ZQ0KIGNobW9kIGcrcyAu L3Nsb2NhdGUNCisNCiBjZCAkQ1dEDQorDQogZWNobyAiTWFraW5nIERhdGFi YXNlIERpcmVjdG9yeSINCi1pbnN0YWxsIC1kIC1tIDA3NTAgL3Zhci9saWIv c2xvY2F0ZQ0KLWNob3duICR1c2VyOnNsb2NhdGUgL3Zhci9saWIvc2xvY2F0 ZQ0KLWVjaG8gIkNyZWF0aW5nIFN5bWxpbmtzIg0KK2luc3RhbGwgLWQgLW0g MDc1MCAkREJQQVRIDQorY2hvd24gJHVzZXI6c2xvY2F0ZSAkREJQQVRIDQog DQorZWNobyAiQ3JlYXRpbmcgU3ltbGlua3MiDQogaWYgWyAtZiAvdXNyL2Jp bi9sb2NhdGUgXSA7IHRoZW4NCiAgICBybSAtZiAvdXNyL2Jpbi9sb2NhdGUu b2xkDQogICAgbXYgL3Vzci9iaW4vbG9jYXRlIC91c3IvYmluL2xvY2F0ZS5v bGQNCisgICBjaG1vZCA3MDAgL3Vzci9iaW4vbG9jYXRlLm9sZA0KIGZpDQog DQogbG4gLXMgL3Vzci9iaW4vc2xvY2F0ZSAvdXNyL2Jpbi9sb2NhdGUNCiAN Ci1pZiBbIC1mIC91c3IvYmluL3VwZGF0ZWRiIF0gOyB0aGVuDQotICAgcm0g LWYgL3Vzci9iaW4vdXBkYXRlZGIub2xkDQotICAgbXYgL3Vzci9iaW4vbG9j YXRlIC91c3IvYmluL2xvY2F0ZS5vbGQNCitpZiBbIC1mICRVUFJFRklYL3Vw ZGF0ZWRiIF0gOyB0aGVuDQorICAgcm0gLWYgJFVQUkVGSVgvdXBkYXRlZGIu b2xkDQorICAgbXYgJFVQUkVGSVgvdXBkYXRlZGIgJFVQUkVGSVgvdXBkYXRl ZGIub2xkDQogZmkNCiANCi1sbiAtcyAvdXNyL2Jpbi9zbG9jYXRlIC91c3Iv YmluL3VwZGF0ZWRiDQorbG4gLXMgL3Vzci9iaW4vc2xvY2F0ZSAkVVBSRUZJ WC91cGRhdGVkYg0KIA0KIGVjaG8gIkluc3RhbGxpbmcgbWFuIHBhZ2UiDQor DQogaWYgWyAtZCAvdXNyL21hbiBdIDsgdGhlbg0KICAgbWFuZGlyPSIvdXNy L21hbiINCiBlbGlmIFsgLWQgL3Vzci9zaGFyZS9tYW4gXSA7IHRoZW4NCmRp ZmYgLXVyYiBzbG9jYXRlLTEuNS1vcmlnaW5hbC9saW5rLmMgc2xvY2F0ZS0x LjUvbGluay5jDQotLS0gc2xvY2F0ZS0xLjUtb3JpZ2luYWwvbGluay5jCVdl ZCBNYXkgIDUgMTQ6MjE6MDUgMTk5OQ0KKysrIHNsb2NhdGUtMS41L2xpbmsu YwlUaHUgTWF5IDEzIDAyOjEyOjUwIDE5OTkNCkBAIC02LDcgKzYsOSBAQA0K IA0KICNpbmNsdWRlIDxzdGRpby5oPg0KICNpbmNsdWRlIDxzdGRsaWIuaD4N Ci0NCisjaWZkZWYgX19GcmVlQlNEX18NCisgICNpbmNsdWRlIDx1bmlzdGQu aD4gLyogbWFrZSBpdCB3b3JrIG9uIEZyZWVCU0QgLW1hdHQgKi8NCisjZW5k aWYNCiAjaW5jbHVkZSAibGluay5oIg0KIA0KIC8qIEluaXRpYWxpemUgMkQg TGlzdCAqLw0KZGlmZiAtdXJiIHNsb2NhdGUtMS41LW9yaWdpbmFsL21haW4u YyBzbG9jYXRlLTEuNS9tYWluLmMNCi0tLSBzbG9jYXRlLTEuNS1vcmlnaW5h bC9tYWluLmMJV2VkIE1heSAgNSAxNDo1Mjo1MiAxOTk5DQorKysgc2xvY2F0 ZS0xLjUvbWFpbi5jCVRodSBNYXkgMTMgMDI6MTI6NTAgMTk5OQ0KQEAgLTg1 LDkgKzg1LDE4IEBADQogI2RlZmluZSBXQVJOX01FU1NBR0UgIjggZGF5cyIN CiANCiBjaGFyICoqU0xPQ0FURV9QQVRIID0gTlVMTDsNCisNCisvKiBNb3Jl IGZpdHRpbmcgcGF0aHMgZm9yIEZyZWVCU0QgLW1hdHQgKi8NCisjaWZkZWYg X19GcmVlQlNEX18gDQorY2hhciAqU0xPQ0FURURCID0gIi92YXIvZGIvc2xv Y2F0ZS9zbG9jYXRlLmRiIjsNCitjaGFyICpUTVBTTE9DQVRFREIgPSAiL3Zh ci9kYi9zbG9jYXRlL3Nsb2NhdGUudG1wIjsNCitjaGFyICpTTE9DQVRFREJf RElSID0gIi92YXIvZGIvc2xvY2F0ZS8iOw0KKyNlbHNlDQorLyogTGVhdmUg dGhlIG5vcm1hbCBwYXRocyBmb3Igbm9uLUZyZWVCU0QgbWFjaGluZXMgLW1h dHQgKi8NCiBjaGFyICpTTE9DQVRFREIgPSAiL3Zhci9saWIvc2xvY2F0ZS9z bG9jYXRlLmRiIjsNCiBjaGFyICpUTVBTTE9DQVRFREIgPSAiL3Zhci9saWIv c2xvY2F0ZS9zbG9jYXRlLnRtcCI7DQogY2hhciAqU0xPQ0FURURCX0RJUiA9 ICIvdmFyL2xpYi9zbG9jYXRlLyI7DQorI2VuZGlmDQogY2hhciAqRVhDTFVE RV9ESVI7DQogaW50IEVYQ0xVREU9MDsNCiBpbnQgVkVSQk9TRT0wOw0K --0-1003324082-927515268=:14508-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 23 20:13:41 1999 Delivered-To: freebsd-ports@freebsd.org Received: from Argon.Mlink.NET (Argon.Mlink.NET [205.236.182.18]) by hub.freebsd.org (Postfix) with ESMTP id 5253A14CF0 for ; Sun, 23 May 1999 20:13:38 -0700 (PDT) (envelope-from matt@Mlink.NET) Received: from ns-1.ccia.cc (matt@matt-gw.Mlink.NET [209.104.117.209]) by Argon.Mlink.NET (8.8.8/8.8.2) with ESMTP id XAA01865 for ; Sun, 23 May 1999 23:11:32 -0400 (EDT) Date: Sun, 23 May 1999 23:13:55 -0400 (EDT) From: matt X-Sender: matt@ns-1.ccia.cc To: FreeBSD-PORTS Subject: Navigator standalone 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 Someone made a typo =) root[ns-1]:/usr/ports/www/netscape46-navigator# grep DISTFILES Makefile DISTFILES= communicator-v46-export.x86-unknown-freebsd.tar.gz --fix-- -DISTFILES= communicator-v46-export.x86-unknown-freebsd.tar.gz +DISTFILES= navigator-v46-export.x86-unknown-freebsd.tar.gz (wow, this is the second netscape 4.6 bug I've reported, lol.) Matt -- DISCLAIMER: Anyone sending me unsolicited/commercial electronic mail will be charged a $100 fee for time spent reading it. Do NOT send this type of electronic mail to me. In reading this, you automatically agree to be subjected to these terms: US Code Title 47, Sec.227(a)(2)(B), a computer/modem/printer meets the definition of a telephone fax machine. By Sec.227(b)(1)(C), it is unlawful to send any unsolicited advertisement to such equipment. By Sec.227(b)(3)(C), a violation of the aforementioned Section is punishable by action to recover actual monetary loss, or $500, whichever is greater, for each violation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 24 10:20: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9DE4D14F88 for ; Mon, 24 May 1999 10:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA71089; Mon, 24 May 1999 10:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from repulse.lovett.com (repulse.lovett.com [38.155.241.4]) by hub.freebsd.org (Postfix) with ESMTP id 70DFA14CF5 for ; Mon, 24 May 1999 10:17:43 -0700 (PDT) (envelope-from ade@lovett.com) Received: from ade by repulse.lovett.com with local (Exim 3.01 #1) id 10lyKz-000P7I-00 for FreeBSD-gnats-submit@freebsd.org; Mon, 24 May 1999 12:16:29 -0500 Message-Id: Date: Mon, 24 May 1999 12:16:29 -0500 From: Ade Lovett Reply-To: ade@lovett.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11871: Port update: net/gnomeicu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11871 >Category: ports >Synopsis: Port update: net/gnomeicu >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 May 24 10:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ade Lovett >Release: FreeBSD 3.2-STABLE i386 >Organization: Lovett Network Consultancy >Environment: 3.2-STABLE, fully up-to-date cvsup'd ports tree >Description: Upgrade net/gnome-icu package (part of GNOME metaport) to 0.64 >How-To-Repeat: >Fix: Apply following patch: Index: Makefile =================================================================== RCS file: /home/FreeBSD/cvs/ports/net/gnome-icu/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- Makefile 1999/04/07 16:23:52 1.9 +++ Makefile 1999/05/24 17:04:14 @@ -1,12 +1,12 @@ # Ports collection Makefile for: GnomeICU -# Version required: 0.62a +# Version required: 0.64 # Date created: 03/16/1999 # Whom: nectar@FreeBSD.ORG # # $Id: Makefile,v 1.9 1999/04/07 16:23:52 nectar Exp $ # -DISTNAME= gnomeicu-0.62a +DISTNAME= gnomeicu-0.64 CATEGORIES= net gnome MASTER_SITES= ftp://gnomeicu.gdev.net/pub/gnomeicu/ \ http://www.nectar.com/distfiles/ Index: files/md5 =================================================================== RCS file: /home/FreeBSD/cvs/ports/net/gnome-icu/files/md5,v retrieving revision 1.3 diff -u -r1.3 md5 --- md5 1999/03/18 22:32:43 1.3 +++ md5 1999/05/24 17:05:24 @@ -1 +1 @@ -MD5 (gnomeicu-0.62a.tar.gz) = 7630c7c1e3d1f34c654514faacae9b4c +MD5 (gnomeicu-0.64.tar.gz) = 6dfeb7ef8abcf7aea91c02ac4edb8368 Index: pkg/PLIST =================================================================== RCS file: /home/FreeBSD/cvs/ports/net/gnome-icu/pkg/PLIST,v retrieving revision 1.3 diff -u -r1.3 PLIST --- PLIST 1999/03/18 22:32:43 1.3 +++ PLIST 1999/05/24 17:11:49 @@ -6,6 +6,8 @@ share/gnome/pixmaps/gnomeicu-chat2.xpm share/gnome/pixmaps/gnomeicu-dnd.xpm share/gnome/pixmaps/gnomeicu-ffc.xpm +share/gnome/pixmaps/gnomeicu-file.xpm +share/gnome/pixmaps/gnomeicu-info.xpm share/gnome/pixmaps/gnomeicu-inv.xpm share/gnome/pixmaps/gnomeicu-message.xpm share/gnome/pixmaps/gnomeicu-na.xpm >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 May 24 10:30: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9ACCF14EB3 for ; Mon, 24 May 1999 10:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA72252; Mon, 24 May 1999 10:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 24 May 1999 10:30:02 -0700 (PDT) Message-Id: <199905241730.KAA72252@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Chris Piazza Subject: RE: ports/11861: Update: x11-wm/icewm Reply-To: Chris Piazza Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11861; it has been noted by GNATS. From: Chris Piazza To: cpiazza@home.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: RE: ports/11861: Update: x11-wm/icewm Date: Mon, 24 May 1999 10:22:45 -0700 (PDT) Icewm was updated again, so here's an updated patch: Files removed: files/ patch-gnome patch-titlebottom patch-titletop patches/ patch-ag Files added: patches/ patch-ah patch-ai Index: icewm/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/x11-wm/icewm/Makefile,v retrieving revision 1.36 diff -u -r1.36 Makefile --- Makefile 1999/05/16 23:20:18 1.36 +++ Makefile 1999/05/24 16:13:46 @@ -1,12 +1,12 @@ # New ports collection makefile for: icewm -# Version required: 0.9.39 +# Version required: 0.9.41 # Date created: 10 August 1997 # Whom: Yukihiro Nakai # # $Id: Makefile,v 1.36 1999/05/16 23:20:18 mharo Exp $ # -DISTNAME= icewm-0.9.39 +DISTNAME= icewm-0.9.41 CATEGORIES= x11-wm MASTER_SITES= http://www.kiss.uni-lj.si/~k4fr0235/icewm/devel/ \ http://www.physik.TU-Berlin.DE/~ibex/ports/distfiles/icewm/ @@ -19,39 +19,18 @@ .endif LIB_DEPENDS+= Xpm.4:${PORTSDIR}/graphics/xpm +GNU_CONFIGURE= yes USE_GMAKE= yes USE_X_PREFIX= yes -ICEOPTION= --with-shape .if defined(USE_I18N) -ICEOPTION+= --with-i18n +CONFIGURE_ARGS+= --enable-i18n .endif -.if defined(XLOCALE) -ICEOPTION+= --with-xlocale -.endif -.if defined(GNOME) -ICEOPTION+= --with-imlib --with-gnome --with-sm -.endif - -pre-patch: -.if defined(TITLE_BOTTOM) - @${PATCH} ${PATCH_ARGS} < ${FILESDIR}/patch-titlebottom -.else - @${PATCH} ${PATCH_ARGS} < ${FILESDIR}/patch-titletop -.endif .if defined(GNOME) - @${PATCH} ${PATCH_ARGS} < ${FILESDIR}/patch-gnome +CONFIGURE_ARGS+= --with-imlib --with-gnome .endif -do-configure: - ( cd ${WRKSRC}; env X11BASE="${X11BASE}" CXX="${CXX}" \ - CXXFLAGS="${CXXFLAGS}" \ - ${SH} config ${ICEOPTION} ) - post-install: ${INSTALL_DATA} ${FILESDIR}/bsd-daemon.xpm ${PREFIX}/share/icewm/taskbar - strip ${PREFIX}/bin/icewm - strip ${PREFIX}/bin/icewmbg - strip ${PREFIX}/bin/icewmhint .include Index: icewm/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/x11-wm/icewm/files/md5,v retrieving revision 1.24 diff -u -r1.24 md5 --- md5 1999/05/16 23:20:20 1.24 +++ md5 1999/05/24 16:14:55 @@ -1 +1 @@ -MD5 (icewm-0.9.39.src.tar.gz) = 1a4d7bc60d6f6235d04a1c43bd739043 +MD5 (icewm-0.9.41.src.tar.gz) = 05eccadc612fe3bb8d2d769c89da8771 Index: icewm/files/patch-gnome =================================================================== RCS file: patch-gnome diff -N patch-gnome --- /tmp/cvsE23177 Mon May 24 09:36:57 1999 +++ /dev/null Mon May 24 09:33:38 1999 @@ -1,8 +0,0 @@ ---- config.orig Wed Oct 7 19:44:31 1998 -+++ config Wed Oct 7 19:46:05 1998 -@@ -206,4 +206,4 @@ - echo $CFLAGS >>sysdep.inc - echo $INCDIRS >>sysdep.inc - echo $LIBDIRS >>sysdep.inc --echo $LIBS >>sysdep.inc -+echo $LIBS -lxpg4 -lintl -L/usr/local/lib >>sysdep.inc Index: icewm/files/patch-titlebottom =================================================================== RCS file: patch-titlebottom diff -N patch-titlebottom --- /tmp/cvsM23177 Mon May 24 09:36:57 1999 +++ /dev/null Mon May 24 09:33:38 1999 @@ -1,26 +0,0 @@ ---- src/config.h.orig Sat Dec 26 01:08:54 1998 -+++ src/config.h Mon Jan 4 20:54:27 1999 -@@ -15,19 +15,19 @@ - * EOF - * - */ --#define MAIL_SPOOL "/var/spool/mail/" /* '/' terminated ! */ -+#define MAIL_SPOOL "/var/mail/" /* '/' terminated ! */ - - /** Use Linux 2.0 Penguin as start button */ - #ifndef START_PIXMAP --#define START_PIXMAP "linux.xpm" -+//#define START_PIXMAP "linux.xpm" - //#define START_PIXMAP "debian.xpm" --//#define START_PIXMAP "bsd-daemon.xpm" -+#define START_PIXMAP "bsd-daemon.xpm" - //#define START_PIXMAP "start.xpm" - //#define START_PIXMAP "xfree86os2.xpm" - #endif - - /** Show title bars at the bottom of the window */ --#undef TITLEBAR_BOTTOM -+#define TITLEBAR_BOTTOM - - /** No not include configurability of options */ - #undef NO_CONFIGURE Index: icewm/files/patch-titletop =================================================================== RCS file: patch-titletop diff -N patch-titletop --- /tmp/cvsm23177 Mon May 24 09:36:57 1999 +++ /dev/null Mon May 24 09:33:38 1999 @@ -1,19 +0,0 @@ ---- src/config.h.orig Sat Dec 26 01:08:54 1998 -+++ src/config.h Mon Jan 4 20:55:37 1999 -@@ -15,13 +15,13 @@ - * EOF - * - */ --#define MAIL_SPOOL "/var/spool/mail/" /* '/' terminated ! */ -+#define MAIL_SPOOL "/var/mail/" /* '/' terminated ! */ - - /** Use Linux 2.0 Penguin as start button */ - #ifndef START_PIXMAP --#define START_PIXMAP "linux.xpm" -+//#define START_PIXMAP "linux.xpm" - //#define START_PIXMAP "debian.xpm" --//#define START_PIXMAP "bsd-daemon.xpm" -+#define START_PIXMAP "bsd-daemon.xpm" - //#define START_PIXMAP "start.xpm" - //#define START_PIXMAP "xfree86os2.xpm" - #endif Index: icewm/patches/patch-ab =================================================================== RCS file: /cvs/FreeBSD/ports/x11-wm/icewm/patches/patch-ab,v retrieving revision 1.10 diff -u -r1.10 patch-ab --- patch-ab 1999/05/09 16:32:31 1.10 +++ patch-ab 1999/05/24 16:13:01 @@ -1,17 +1,16 @@ ---- install.inc.orig Sat Feb 20 08:33:06 1999 -+++ install.inc Mon May 3 15:44:56 1999 -@@ -1,10 +1,9 @@ --PREFIX = /usr/local - BINDIR = $(PREFIX)/bin --LIBDIR = $(PREFIX)/lib/X11/icewm --ETCDIR = /etc/X11/icewm -+LIBDIR = $(PREFIX)/share/icewm -+ETCDIR = $(LIBDIR) +--- install.in.orig Sat May 22 06:58:12 1999 ++++ install.in Sun May 23 00:54:26 1999 +@@ -3,11 +3,11 @@ - INSTALL = install -c --INSTALLDIR = $(INSTALL) -m 755 -d --INSTALLBIN = $(INSTALL) -m 555 -+INSTALLDIR = mkdir -p -+INSTALLBIN = $(INSTALL) $(STRIP) -m 555 - INSTALLLIB = $(INSTALL) -m 444 - #INSTALLETC = $(INSTALL) -m 644 + PREFIX = @prefix@ + BINDIR = @bindir@ +-LIBDIR = @libdir@/X11/icewm ++LIBDIR = @prefix@/share/icewm + ETCDIR = @sysconfdir@ + + INSTALL = @INSTALL@ +-INSTALLDIR = @INSTALL@ -m 755 -d ++INSTALLDIR = mkdir -p + INSTALLBIN = @INSTALL_PROGRAM@ + INSTALLLIB = @INSTALL_DATA@ + #INSTALLETC = @INSTALL_DATA@ Index: icewm/patches/patch-ag =================================================================== RCS file: patch-ag diff -N patch-ag --- /tmp/cvsO23177 Mon May 24 09:36:57 1999 +++ /dev/null Mon May 24 09:33:38 1999 @@ -1,30 +0,0 @@ ---- config.orig Sun Apr 25 04:01:46 1999 -+++ config Mon May 3 15:56:15 1999 -@@ -36,9 +36,9 @@ - } - - with_x11=1 --x11_incdir='/usr/X11R6/include' -+x11_incdir="${X11BASE}/include" - x11_inc='X11/X.h' --x11_libdir='/usr/X11R6/lib' -+x11_libdir="${X11BASE}/lib" - x11_libs='X11' - - with_xpm=1 -@@ -69,11 +69,11 @@ - -Wmissing-prototypes -Wmissing-declarations \ - -Winline -Woverloaded-virtual" - --cxx="g++" --cxxopts="" --link="g++" -+cxx="${CXX}" -+cxxopts="${CXXFLAGS}" -+link="${CXX}" - linkopts="" --optimize="-O2" -+optimize="" - - use() { - dep="$1" Index: icewm/patches/patch-ah =================================================================== RCS file: patch-ah diff -N patch-ah --- /dev/null Mon May 24 09:33:38 1999 +++ patch-ah Mon May 24 09:13:01 1999 @@ -0,0 +1,11 @@ +--- src/amailbox.cc.orig Sun May 23 00:48:01 1999 ++++ src/amailbox.cc Sun May 23 00:48:13 1999 +@@ -19,7 +19,7 @@ + + // !!! autoconf option for this (or just get rid of it completely) + #ifndef MAIL_SPOOL +-#define MAIL_SPOOL "/var/spool/mail/" /* '/' terminated ! */ ++#define MAIL_SPOOL "/var/mail/" /* '/' terminated ! */ + #endif + + extern YColor *taskBarBg; Index: icewm/patches/patch-ai =================================================================== RCS file: patch-ai diff -N patch-ai --- /dev/null Mon May 24 09:33:38 1999 +++ patch-ai Mon May 24 09:13:01 1999 @@ -0,0 +1,14 @@ +--- src/wmtaskbar.cc.orig Sun May 23 00:57:11 1999 ++++ src/wmtaskbar.cc Sun May 23 00:57:25 1999 +@@ -331,9 +331,9 @@ + + /** Use Linux 2.0 Penguin as start button */ + #ifndef START_PIXMAP +-#define START_PIXMAP "linux.xpm" ++//#define START_PIXMAP "linux.xpm" + //#define START_PIXMAP "debian.xpm" +-//#define START_PIXMAP "bsd-daemon.xpm" ++#define START_PIXMAP "bsd-daemon.xpm" + //#define START_PIXMAP "start.xpm" + //#define START_PIXMAP "xfree86os2.xpm" + #endif Index: icewm/pkg/DESCR =================================================================== RCS file: /cvs/FreeBSD/ports/x11-wm/icewm/pkg/DESCR,v retrieving revision 1.7 diff -u -r1.7 DESCR --- DESCR 1999/05/09 16:32:38 1.7 +++ DESCR 1999/05/24 16:13:01 @@ -1,16 +1,10 @@ Window Manager designed for speed, usability and consistency. -When you want titlebars to be bottom ( default is top ), - % make -DTITLE_BOTTOM install - When you want gnome option, % make -DGNOME install When you want i18n option, % make -DUSE_I18N install - -When you want to compile with xlocale option, - % make -DXLOCALE install 'bsd-daemon.xpm' is from Steve Farrell. --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 24 11: 0:25 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3936115469 for ; Mon, 24 May 1999 11:00:11 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA74952 for freebsd-ports@freebsd.org; Mon, 24 May 1999 11:00:10 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 24 May 1999 11:00:10 -0700 (PDT) Message-Id: <199905241800.LAA74952@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 [1999/04/27] ports/11359ports rvplayer 5.0 (Linux) cases ncr PCI SCSI d 1 problem total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1998/09/19] ports/7987 ports Can't post news with TRN + NNTPCACHE o [1999/03/07] ports/10480ports tk81 will not *compile* with threaded app o [1999/03/18] ports/10665ports ports/graphics/sane needs access to /dev/ o [1999/03/19] ports/10681ports lessitf can't find X11 Revision 5 or high o [1999/04/04] ports/10943ports "ports/print/teTeX-beta# make install" fa f [1999/04/07] ports/11003ports wmcdplay is not capable of playing an AUD o [1999/05/03] ports/11465ports The port chipmunk will not run. o [1999/05/05] ports/11515ports new port: net/brouted o [1999/05/05] ports/11521ports Broken openssl port & Apache 1.3.6 o [1999/05/06] ports/11535ports Problems with cyrillic support. o [1999/05/19] ports/11784ports Bind 8.2 port missing patch file o [1999/05/21] ports/11826ports textproc/catdoc: wordview uses wrong wish 12 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1998/05/19] ports/6699 ports New port: the Generic NQS system o [1998/09/19] ports/7992 ports New port: xemacs20-stepwise (XEmacs20 hac a [1998/11/25] ports/8864 ports useradd - system V compatible implementat o [1999/01/07] docs/9375 ports Information on how to build PLIST automat a [1999/01/24] ports/9657 ports Progressive Networks' RealAudio proxy por o [1999/01/31] ports/9851 ports Port update: update R to 0.63.2 o [1999/02/02] ports/9884 ports samba does not allow "joes" (username+pas o [1999/02/07] ports/9954 ports new port devel/ACE o [1999/02/10] ports/10007ports Port of the mercury compiler version 0.8 o [1999/02/14] ports/10093ports Upgrade GNAT to 3.11p and fix for ELF o [1999/02/15] ports/10103ports revision of port of plugger-3.0 o [1999/02/16] ports/10124ports UNIX|STAT pr submission failed to include o [1999/03/03] ports/10377ports `make' in ports does not honor {f,ht}tp_p o [1999/03/04] ports/10389ports Create new port mod_jserv and JSDK 2.0 o [1999/03/07] ports/10469ports new port: linux-netcape-communicator-4.51 o [1999/03/07] ports/10477ports The fakemail in lib-src fails to link (ne o [1999/03/10] ports/10532ports Port of GNU Pascal o [1999/03/16] ports/10634ports Update the hylafax port to do a client in f [1999/03/20] ports/10702ports Add NCD audio support for emiclock ports f [1999/03/21] ports/10707ports [ADD] port for doxygen o [1999/03/26] ports/10813ports crossgo32 brokeness f [1999/03/28] ports/10844ports New port: adagdb o [1999/03/30] ports/10874ports [PATCH] html2ps doesn't handle `file:/... o [1999/04/02] ports/10916ports new port biology/molmol again o [1999/04/05] ports/10961ports gzipped manpages and .so macro in ports o [1999/04/08] ports/11029ports Configure scripts for non ported applicat o [1999/04/08] ports/11034ports New ports of crazywwwboardle o [1999/04/11] ports/11086ports Updating AStyle port o [1999/04/13] ports/11127ports New port: Giram o [1999/04/20] ports/11250ports PORTS: upgrade lesstif to 0.88.1 o [1999/04/21] ports/11267ports [New port] textproc/fconv (the return) o [1999/04/24] ports/11304ports New port syncal-0.5, syncing of ical and o [1999/04/25] ports/11319ports Netscape4-navigator wasn't FORTIFY'ing o [1999/05/03] ports/11468ports New port: xcin-devel o [1999/05/04] ports/11486ports New port: gedit-0.5.1 o [1999/05/04] ports/11491ports new port of shujit java compiler o [1999/05/05] ports/11512ports new port: x11-toolkits/wxGTK o [1999/05/05] ports/11520ports Freewais port does not respect ${PREFIX} o [1999/05/08] ports/11587ports inappropriate internet time calculation o [1999/05/08] ports/11599ports New port: japanese/xdvik-vflib o [1999/05/09] ports/11600ports New port: phalanx-21 o [1999/05/09] ports/11601ports new port: ifmail-os-2.14.5 o [1999/05/09] ports/11602ports new port: gup-0.4 o [1999/05/09] ports/11603ports New port: dbview-1.0.3 o [1999/05/09] ports/11618ports new port: editors/xemacs21 o [1999/05/11] ports/11641ports New port: net/firewalk o [1999/05/11] ports/11652ports New port (net/dictd) o [1999/05/12] ports/11672ports New port: intel2gas-1.2 o [1999/05/13] ports/11682ports new port : devel/t1lib o [1999/05/13] ports/11684ports new port: korean/hanIM o [1999/05/13] ports/11685ports new port: korean/linux_locale o [1999/05/13] ports/11699ports new port: FastCGI development kit o [1999/05/14] ports/11712ports Rosegarden Port is out to date o [1999/05/14] ports/11714ports New port: cls-1.0 (safe version of clear) o [1999/05/14] ports/11718ports New port: sdd o [1999/05/15] ports/11723ports new port for sslproxy o [1999/05/15] ports/11727ports Character combinations halting bind8 o [1999/05/15] ports/11728ports WAIS support for gopher o [1999/05/16] ports/11731ports new port: dopewars-1.4.2 o [1999/05/16] ports/11734ports New Port: tya JIT compiler for Java o [1999/05/17] ports/11742ports Problems with japanese/dvipsk* support. o [1999/05/17] ports/11743ports inn-2.2 (nonfatal) premature stop of buil o [1999/05/17] ports/11750ports Update of x11-wm/wmx port (by maintainer) o [1999/05/17] ports/11751ports Update of ports: www/netscape4-communicat o [1999/05/17] ports/11752ports new port: www/netscape46-communicator o [1999/05/17] ports/11753ports new port: www/netscape46-navigator o [1999/05/18] ports/11755ports ja-vfghostscript5.5 port has wrong md5 da o [1999/05/18] ports/11756ports update port: xchat-0.9.5 to 0.9.6 o [1999/05/18] ports/11757ports update port: gqmpeg-0.5.2 to 0.5.99 o [1999/05/18] ports/11758ports [PATCH] Upgrade exim port to 3.00 o [1999/05/18] ports/11760ports Update port: graphics/gimp1-i18n from 1.1 o [1999/05/18] ports/11768ports Fixes some problems and smother compiling o [1999/05/18] ports/11769ports please update cons port with latest chang o [1999/05/18] ports/11770ports please update cons port with latest chang o [1999/05/18] ports/11771ports Update: print/klyx o [1999/05/19] ports/11776ports Fixed port: gtk-- o [1999/05/19] ports/11781ports Option to not use X windows support where o [1999/05/19] ports/11783ports new port o [1999/05/19] ports/11786ports gnupg-0.9.6 port does not install o [1999/05/19] ports/11787ports New port: gpasman-1.1.3 o [1999/05/19] ports/11791ports new master site for bbdate o [1999/05/19] ports/11792ports Update: mail/bbmail o [1999/05/20] ports/11798ports Update of port news/newsfish to 1.1 o [1999/05/20] ports/11802ports new port : gtksheet o [1999/05/20] ports/11811ports Update databases/gdbm o [1999/05/20] ports/11813ports [New port] gnuplot+ o [1999/05/21] ports/11816ports New port of mserver modem-sahring server o [1999/05/21] ports/11820ports bsd.port.subdir.mk does not define the `m o [1999/05/21] ports/11825ports port update: lang/squeak2 o [1999/05/21] ports/11827ports New port: quirc o [1999/05/22] ports/11830ports Update net/imcq o [1999/05/22] ports/11831ports Update: graphics/gview o [1999/05/22] ports/11833ports [PATCH] Fix xosview's SwapMeter for 4.0-C o [1999/05/22] ports/11834ports strange logsurfer behaviour o [1999/05/22] ports/11835ports New port: aumix o [1999/05/22] ports/11836ports Upgrade of grace port from 5.0.1a to 5.0. o [1999/05/22] ports/11837ports Update: net/curl o [1999/05/22] ports/11839ports Port change: devel/libtool o [1999/05/22] ports/11840ports Feature fixup: bsd.port.mk o [1999/05/22] ports/11841ports Port update: devel/glib12 o [1999/05/22] ports/11842ports Port update: x11-toolkits/gtk12 o [1999/05/22] ports/11843ports Port change: graphics/imlib o [1999/05/22] ports/11844ports Port update: GNOME ports. o [1999/05/22] ports/11845ports Port update: graphics/gimp1 o [1999/05/22] ports/11846ports Port change: graphics/gtkfig o [1999/05/22] ports/11847ports Port update: misc/mc o [1999/05/22] ports/11848ports Port update: devel/glade o [1999/05/22] ports/11850ports Port update: x11-toolkits/gtkstep o [1999/05/22] ports/11851ports Port update: x11-toolkits/p5-GTK o [1999/05/22] ports/11853ports Port update: net/yagirc o [1999/05/22] ports/11854ports Port fixup: audio/libmikmod o [1999/05/22] ports/11855ports Port fixup: net/radiusclient o [1999/05/22] ports/11858ports New port: libwmf o [1999/05/22] ports/11859ports Update: textproc/mswordview o [1999/05/23] ports/11861ports Update: x11-wm/icewm o [1999/05/23] ports/11862ports apache13-fp port is broken o [1999/05/23] ports/11863ports Update: net/ezbounce o [1999/05/23] ports/11864ports New port: wminet o [1999/05/24] ports/11871ports Port update: net/gnomeicu 119 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 May 24 11:34:53 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C966F154DC; Mon, 24 May 1999 11:34:51 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA78452; Mon, 24 May 1999 11:34:51 -0700 (PDT) (envelope-from billf@FreeBSD.org) Date: Mon, 24 May 1999 11:34:51 -0700 (PDT) From: Message-Id: <199905241834.LAA78452@freefall.freebsd.org> To: billf@FreeBSD.org, freebsd-ports@FreeBSD.org, billf@FreeBSD.org Subject: Re: ports/11826: textproc/catdoc: wordview uses wrong wish Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: textproc/catdoc: wordview uses wrong wish Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: billf Responsible-Changed-When: Mon May 24 11:33:46 PDT 1999 Responsible-Changed-Why: I updated this port last, I'll look into this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 24 11:44:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5798214D7F; Mon, 24 May 1999 11:44:09 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA79296; Mon, 24 May 1999 11:44:09 -0700 (PDT) (envelope-from billf@FreeBSD.org) Date: Mon, 24 May 1999 11:44:09 -0700 (PDT) From: Message-Id: <199905241844.LAA79296@freefall.freebsd.org> To: billf@FreeBSD.org, freebsd-ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: ports/11840: Feature fixup: bsd.port.mk Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Feature fixup: bsd.port.mk Responsible-Changed-From-To: freebsd-ports->asami Responsible-Changed-By: billf Responsible-Changed-When: Mon May 24 11:43:52 PDT 1999 Responsible-Changed-Why: Satoshi's arena. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 24 12: 6:23 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 86F8414D3E; Mon, 24 May 1999 12:06:22 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA81944; Mon, 24 May 1999 12:06:22 -0700 (PDT) (envelope-from billf@FreeBSD.org) Date: Mon, 24 May 1999 12:06:22 -0700 (PDT) From: Message-Id: <199905241906.MAA81944@freefall.freebsd.org> To: billf@FreeBSD.org, freebsd-ports@FreeBSD.org, billf@FreeBSD.org Subject: Re: ports/11858: New port: libwmf Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: libwmf Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: billf Responsible-Changed-When: Mon May 24 12:05:54 PDT 1999 Responsible-Changed-Why: I have been playing with a mswordview update that would benefit by this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 24 12: 6:53 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A176414D3E; Mon, 24 May 1999 12:06:52 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA82060; Mon, 24 May 1999 12:06:52 -0700 (PDT) (envelope-from billf@FreeBSD.org) Date: Mon, 24 May 1999 12:06:52 -0700 (PDT) From: Message-Id: <199905241906.MAA82060@freefall.freebsd.org> To: billf@FreeBSD.org, freebsd-ports@FreeBSD.org, billf@FreeBSD.org Subject: Re: ports/11859: Update: textproc/mswordview Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: textproc/mswordview Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: billf Responsible-Changed-When: Mon May 24 12:06:33 PDT 1999 Responsible-Changed-Why: I had already been working to update this port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 24 12:20: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5CF0315200 for ; Mon, 24 May 1999 12:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA83454; Mon, 24 May 1999 12:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 24 May 1999 12:20:02 -0700 (PDT) Message-Id: <199905241920.MAA83454@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Bill Fumerola Subject: Re: ports/11862: ports/www/apache13-fp is broken Reply-To: Bill Fumerola Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11862; it has been noted by GNATS. From: Bill Fumerola To: oleg@ogurok.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/11862: ports/www/apache13-fp is broken Date: Mon, 24 May 1999 11:01:23 -0400 (EDT) On Sun, 23 May 1999 oleg@ogurok.com wrote: > Getting DocumentRoot and UserDir. > Found Directive ResourceConfig, value /usr/local/etc/apache/srm.conf. > Getting DocumentRoot from /usr/local/etc/apache/srm.conf. > Getting UserDir from /usr/local/etc/apache/srm.conf. > ERROR: does not exist! > ERROR: Unable to get DocumentRoot/UserDir Hmm... I don't think srm.conf exists in the newer apaches. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.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 Mon May 24 12:40: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8976E14D81 for ; Mon, 24 May 1999 12:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA84965; Mon, 24 May 1999 12:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from easeway.com (ns1.easeway.com [209.69.39.1]) by hub.freebsd.org (Postfix) with ESMTP id 8B40314C1E for ; Mon, 24 May 1999 12:36:49 -0700 (PDT) (envelope-from mwlucas@easeway.com) Received: (from mwlucas@localhost) by easeway.com (8.8.8/8.8.5) id PAA10768; Mon, 24 May 1999 15:28:56 -0400 (EDT) Message-Id: <199905241928.PAA10768@easeway.com> Date: Mon, 24 May 1999 15:28:56 -0400 (EDT) From: Michael Lucas Reply-To: mwlucas@easeway.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11873: error in sample supfiles: ebones vs. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11873 >Category: ports >Synopsis: error in sample supfiles: ebones vs. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Mon May 24 12:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Michael Lucas >Release: FreeBSD 2.2.7-STABLE i386 >Organization: Exceptionet, Inc. >Environment: 2.2.-stable, 3-stable, -current >Description: The sample supfiles (i.e., /usr/share/examples/cvsup/stable-supfile) list an optional tag of "src-eBones." Per my discussions with jdp, that is obsolete. Users should use "src-kerberosIV". I don't see that it's been committed yet, so I'm jogging an elbow. >How-To-Repeat: Look at any of the sample supfiles. >Fix: Replace src-eBones with src-kerberosIV in the sample supfiles. >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 May 24 12:52:41 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E681214BF8; Mon, 24 May 1999 12:52:39 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA86451; Mon, 24 May 1999 12:52:39 -0700 (PDT) (envelope-from billf@FreeBSD.org) Date: Mon, 24 May 1999 12:52:39 -0700 (PDT) From: Message-Id: <199905241952.MAA86451@freefall.freebsd.org> To: billf@FreeBSD.org, freebsd-ports@FreeBSD.org, jdp@FreeBSD.org Subject: Re: ports/11873: error in sample supfiles: ebones vs. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: error in sample supfiles: ebones vs. Responsible-Changed-From-To: freebsd-ports->jdp Responsible-Changed-By: billf Responsible-Changed-When: Mon May 24 12:52:03 PDT 1999 Responsible-Changed-Why: This isn't a ports issue. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 24 13:28: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from Argon.Mlink.NET (Argon.Mlink.NET [205.236.182.18]) by hub.freebsd.org (Postfix) with ESMTP id 2FDA11508E for ; Mon, 24 May 1999 13:28:01 -0700 (PDT) (envelope-from matt@Mlink.NET) Received: from ns-1.ccia.cc (matt@matt-gw.Mlink.NET [209.104.117.209]) by Argon.Mlink.NET (8.8.8/8.8.2) with ESMTP id QAA14199 for ; Mon, 24 May 1999 16:25:54 -0400 (EDT) Date: Mon, 24 May 1999 16:28:17 -0400 (EDT) From: matt X-Sender: matt@ns-1.ccia.cc To: FreeBSD-PORTS Subject: GTK/GLIB 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 Uhmm. Are these ports still being maintained? gtk/glib11 is outdated by 2 versions, gtk/glib12 is also outdated by 1 version... I find this strangely... disturbing =) Matt -- DISCLAIMER: Anyone sending me unsolicited commercial electronic mail will be charged a $100 fee for time spent reading it. Do NOT send this type of electronic mail to me. In reading this, you automatically agree to be subjected to these terms: US Code Title 47, Sec.227(a)(2)(B), a computer/modem/printer meets the definition of a telephone fax machine. By Sec.227(b)(1)(C), it is unlawful to send any unsolicited advertisement to such equipment. By Sec.227(b)(3)(C), a violation of the aforementioned Section is punishable by action to recover actual monetary loss, or $500, whichever is greater, for each violation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 24 14:25: 0 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C67B314D74; Mon, 24 May 1999 14:24:59 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA92899; Mon, 24 May 1999 14:24:59 -0700 (PDT) (envelope-from sada@FreeBSD.org) Date: Mon, 24 May 1999 14:24:59 -0700 (PDT) From: Message-Id: <199905242124.OAA92899@freefall.freebsd.org> To: sada@FreeBSD.ORG, sada@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11751: Update of ports: www/netscape4-communicator, navigator. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update of ports: www/netscape4-communicator, navigator. State-Changed-From-To: open->closed State-Changed-By: sada State-Changed-When: Mon May 24 14:24:22 PDT 1999 State-Changed-Why: Committed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 24 14:25:49 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C137F14E47; Mon, 24 May 1999 14:25:43 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA93063; Mon, 24 May 1999 14:25:43 -0700 (PDT) (envelope-from sada@FreeBSD.org) Date: Mon, 24 May 1999 14:25:43 -0700 (PDT) From: Message-Id: <199905242125.OAA93063@freefall.freebsd.org> To: sada@FreeBSD.ORG, sada@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11753: new port: www/netscape46-navigator Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: www/netscape46-navigator State-Changed-From-To: open->closed State-Changed-By: sada State-Changed-When: Mon May 24 14:25:10 PDT 1999 State-Changed-Why: Committed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 24 14:27:56 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0CC4B14E0C; Mon, 24 May 1999 14:27:54 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA93241; Mon, 24 May 1999 14:27:54 -0700 (PDT) (envelope-from sada@FreeBSD.org) Date: Mon, 24 May 1999 14:27:54 -0700 (PDT) From: Message-Id: <199905242127.OAA93241@freefall.freebsd.org> To: sada@FreeBSD.ORG, sada@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11752: new port: www/netscape46-communicator Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: www/netscape46-communicator State-Changed-From-To: open->closed State-Changed-By: sada State-Changed-When: Mon May 24 14:27:19 PDT 1999 State-Changed-Why: Committed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 24 15: 0:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F280815070 for ; Mon, 24 May 1999 15:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA96150; Mon, 24 May 1999 15:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from trumpet.partitur.se (trumpet.partitur.se [193.219.246.210]) by hub.freebsd.org (Postfix) with ESMTP id 7D32B14E11 for ; Mon, 24 May 1999 14:53:32 -0700 (PDT) (envelope-from girgen@trumpet.partitur.se) Received: (from girgen@localhost) by trumpet.partitur.se (8.9.3/8.9.3) id XAA07233; Mon, 24 May 1999 23:53:20 +0200 (CEST) (envelope-from girgen) Message-Id: <199905242153.XAA07233@trumpet.partitur.se> Date: Mon, 24 May 1999 23:53:20 +0200 (CEST) From: girgen@partitur.se Reply-To: girgen@partitur.se To: FreeBSD-gnats-submit@freebsd.org, hosokawa@jp.FreeBSD.org X-Send-Pr-Version: 3.2 Subject: ports/11877: samba updated to 2.0.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11877 >Category: ports >Synopsis: samba updated to 2.0.4 >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 May 24 15:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Palle Girgensohn >Release: FreeBSD 3.2-BETA i386 >Organization: Partitur >Environment: FreeBSD 3.2-BETA i386 >Description: Samba's latest version, with important bugfixes (at least for me) is 2.0.4b (b is not beta, but patchlevel ;-) Here's a patch to the port. >How-To-Repeat: >Fix: diff -urN samba/Makefile samba.new/Makefile --- samba/Makefile Wed Mar 3 16:48:33 1999 +++ samba.new/Makefile Mon May 24 23:37:27 1999 @@ -6,8 +6,8 @@ # $Id: Makefile,v 1.35 1999/03/03 15:48:33 hosokawa Exp $ # -DISTNAME= samba-2.0.3 -#PKGNAME= samba-2.0.3 +DISTNAME= samba-2.0.4b +PKGNAME= samba-2.0.4 CATEGORIES= net MASTER_SITES= ftp://ftp.samba.org/pub/samba/ \ ftp://ring.asahi-net.or.jp/pub/net/samba/ \ @@ -38,7 +38,7 @@ WRKSRC= ${WRKDIR}/${DISTNAME}/source MAN1= nmblookup.1 smbstatus.1 smbclient.1 smbrun.1 smbtar.1 \ - testparm.1 testprns.1 make_smbcodepage.1 + testparm.1 testprns.1 make_smbcodepage.1 smbsh.1 MAN5= smb.conf.5 smbpasswd.5 lmhosts.5 MAN7= samba.7 MAN8= smbd.8 nmbd.8 smbpasswd.8 swat.8 \ diff -urN samba/files/md5 samba.new/files/md5 --- samba/files/md5 Fri Mar 5 18:27:26 1999 +++ samba.new/files/md5 Mon May 24 21:56:01 1999 @@ -1 +1 @@ -MD5 (samba-2.0.3.tar.gz) = 1c316bb482a95e6c3faaf04cde6d1503 +MD5 (samba-2.0.4b.tar.gz) = ed2dc0e6531bec9292cc109fbc8b6dcf diff -urN samba/patches/patch-ad samba.new/patches/patch-ad --- samba/patches/patch-ad Wed Jan 27 16:19:01 1999 +++ samba.new/patches/patch-ad Thu Jan 1 01:00:00 1970 @@ -1,18 +0,0 @@ ---- passdb/pass_check.c.orig Thu Dec 31 10:36:58 1998 -+++ passdb/pass_check.c Thu Jan 28 00:11:11 1999 -@@ -676,6 +676,7 @@ - static BOOL password_check(char *password) - { - -+#if 0 /* quick hack - should be removed soon */ - #ifdef HAVE_PAM - /* This falls through if the password check fails - - if HAVE_CRYPT is not defined this causes an error msg -@@ -687,6 +688,7 @@ - Hence we make a direct return to avoid a second chance!!! - */ - return (pam_auth(this_user,password)); -+#endif - #endif - - #ifdef WITH_AFS diff -urN samba/pkg/PLIST samba.new/pkg/PLIST --- samba/pkg/PLIST Fri May 14 14:49:08 1999 +++ samba.new/pkg/PLIST Mon May 24 22:22:44 1999 @@ -109,6 +109,7 @@ share/doc/samba/faq/sambafaq.txt share/doc/samba/history share/doc/samba/htmldocs/DOMAIN_MEMBER.html +share/doc/samba/htmldocs/NT_Security.html share/doc/samba/htmldocs/lmhosts.5.html share/doc/samba/htmldocs/make_smbcodepage.1.html share/doc/samba/htmldocs/nmbd.8.html @@ -120,6 +121,7 @@ share/doc/samba/htmldocs/smbpasswd.5.html share/doc/samba/htmldocs/smbpasswd.8.html share/doc/samba/htmldocs/smbrun.1.html +share/doc/samba/htmldocs/smbsh.1.html share/doc/samba/htmldocs/smbstatus.1.html share/doc/samba/htmldocs/smbtar.1.html share/doc/samba/htmldocs/swat.8.html @@ -139,6 +141,7 @@ share/doc/samba/manpages/smbpasswd.5 share/doc/samba/manpages/smbpasswd.8 share/doc/samba/manpages/smbrun.1 +share/doc/samba/manpages/smbsh.1 share/doc/samba/manpages/smbstatus.1 share/doc/samba/manpages/smbtar.1 share/doc/samba/manpages/smbumount.8 @@ -165,8 +168,8 @@ share/doc/samba/textdocs/INSTALL.sambatar share/doc/samba/textdocs/MIRRORS.txt share/doc/samba/textdocs/Macintosh_Clients.txt -share/doc/samba/textdocs/NT-Guest-Access.txt share/doc/samba/textdocs/NTDOMAIN.txt +share/doc/samba/textdocs/NT_Security.txt share/doc/samba/textdocs/NetBIOS.txt share/doc/samba/textdocs/OS2-Client-HOWTO.txt share/doc/samba/textdocs/PRINTER_DRIVER.txt @@ -177,6 +180,7 @@ share/doc/samba/textdocs/README.DCEDFS share/doc/samba/textdocs/README.jis share/doc/samba/textdocs/README.sambatar +share/doc/samba/textdocs/README.smbmount share/doc/samba/textdocs/Recent-FAQs.txt share/doc/samba/textdocs/RoutedNetworks.txt share/doc/samba/textdocs/SCO.txt @@ -194,6 +198,7 @@ share/doc/samba/textdocs/cifsntdomain.txt share/doc/samba/textdocs/security_level.txt share/doc/samba/yodldocs/DOMAIN_MEMBER.yo +share/doc/samba/yodldocs/NT_Security.yo share/doc/samba/yodldocs/lmhosts.5.yo share/doc/samba/yodldocs/make_smbcodepage.1.yo share/doc/samba/yodldocs/nmbd.8.yo @@ -205,6 +210,7 @@ share/doc/samba/yodldocs/smbpasswd.5.yo share/doc/samba/yodldocs/smbpasswd.8.yo share/doc/samba/yodldocs/smbrun.1.yo +share/doc/samba/yodldocs/smbsh.1.yo share/doc/samba/yodldocs/smbstatus.1.yo share/doc/samba/yodldocs/smbtar.1.yo share/doc/samba/yodldocs/swat.8.yo @@ -218,6 +224,7 @@ @dirrm share/doc/samba share/swat/help/welcome.html share/swat/help/DOMAIN_MEMBER.html +share/swat/help/NT_Security.html share/swat/help/lmhosts.5.html share/swat/help/make_smbcodepage.1.html share/swat/help/nmbd.8.html @@ -229,6 +236,7 @@ share/swat/help/smbpasswd.5.html share/swat/help/smbpasswd.8.html share/swat/help/smbrun.1.html +share/swat/help/smbsh.1.html share/swat/help/smbstatus.1.html share/swat/help/smbtar.1.html share/swat/help/swat.8.html >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 May 24 15:35:56 1999 Delivered-To: freebsd-ports@freebsd.org Received: from bastuba.partitur.se (bastuba.partitur.se [193.219.246.194]) by hub.freebsd.org (Postfix) with ESMTP id E945614C2B for ; Mon, 24 May 1999 15:35:44 -0700 (PDT) (envelope-from girgen@partitur.se) Received: from partitur.se (solist.partitur.se [193.219.246.204]) by bastuba.partitur.se (8.8.8/8.8.8) with ESMTP id AAA27433; Tue, 25 May 1999 00:35:37 +0200 (CEST) (envelope-from girgen@partitur.se) Message-ID: <3749D411.349B0908@partitur.se> Date: Tue, 25 May 1999 00:34:57 +0200 From: Palle Girgensohn Organization: Partitur X-Mailer: Mozilla 4.51 [en] (X11; I; SunOS 5.7 sun4u) X-Accept-Language: sv, en MIME-Version: 1.0 To: Bill Fumerola Cc: freebsd-ports@FreeBSD.org, oleg@ogurok.com Subject: Re: ports/11862: ports/www/apache13-fp is broken References: <199905241920.MAA83454@freefall.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 Bill Fumerola wrote: > > The following reply was made to PR ports/11862; it has been noted by GNATS. > > From: Bill Fumerola > To: oleg@ogurok.com > Cc: FreeBSD-gnats-submit@FreeBSD.ORG > Subject: Re: ports/11862: ports/www/apache13-fp is broken > Date: Mon, 24 May 1999 11:01:23 -0400 (EDT) > > On Sun, 23 May 1999 oleg@ogurok.com wrote: > > > Getting DocumentRoot and UserDir. > > Found Directive ResourceConfig, value /usr/local/etc/apache/srm.conf. > > Getting DocumentRoot from /usr/local/etc/apache/srm.conf. > > Getting UserDir from /usr/local/etc/apache/srm.conf. > > ERROR: does not exist! > > ERROR: Unable to get DocumentRoot/UserDir > > Hmm... I don't think srm.conf exists in the newer apaches. > apache-frontpage won't take no for an answer, and setting AccessConfig and ResourceConfig to /dev/null makes it scream. I have this in my frontpage httpd.conf: # True Config File AccessConfig /usr/local/apache-fp/etc/apache/httpd.conf ResourceConfig /usr/local/apache-fp/etc/apache/httpd.conf Somehow, this helps apache-fp to start, though it's an odd syntax ;-) /Palle To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 24 16:10: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 69183154FF for ; Mon, 24 May 1999 16:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA01556; Mon, 24 May 1999 16:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from smtp.mtci.ne.jp (smtp.mtci.ne.jp [210.231.230.8]) by hub.freebsd.org (Postfix) with ESMTP id 375B614EFE for ; Mon, 24 May 1999 16:05:20 -0700 (PDT) (envelope-from okazaki@be.to) Received: from acidrain (ppp46-Mobara1.mtci.ne.jp [210.172.1.248]) by smtp.mtci.ne.jp (8.8.8/3.6W) with SMTP id IAA07724 for ; Tue, 25 May 1999 08:05:16 +0900 Received: (qmail 26671 invoked by uid 1001); 24 May 1999 23:01:25 -0000 Message-Id: <19990524224656.26565.qmail@dolphin.be.to> Date: 24 May 1999 23:01:25 -0000 From: okazaki@be.to Reply-To: okazaki@be.to To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11878: [Fix] japanese/emacs-manual unfetchable distfiles problem Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11878 >Category: ports >Synopsis: [Fix] japanese/emacs-manual unfetchable distfiles problem >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 May 24 16:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: OKAZAKI Tetsurou >Release: FreeBSD 3.1-STABLE i386 >Organization: >Environment: >Description: My port japanese/emacs-manual has a problem analyzed by Bill "distfiles" Fenner's ports survey (Thanks a lot!): http://www.freebsd.org/~fenner/portsurvey/japanese.html#emacs-manual This PR is to correct this errata. >How-To-Repeat: >Fix: Please commit this patch. diff -urN /usr/ports/japanese/emacs-manual/Makefile emacs-manual/Makefile --- /usr/ports/japanese/emacs-manual/Makefile Wed May 19 22:23:56 1999 +++ emacs-manual/Makefile Sun May 23 16:30:43 1999 @@ -9,15 +9,15 @@ DISTNAME= emacs-20.3-man-jp PKGNAME= ja-emacs-manual-13.1998.11.25 CATEGORIES= japanese -MASTER_SITES= http://www.ascii.co.jp/pub/GNU/ -DISTFILES= ${EXTRACT_ONLY} ${EMACS_ARC} +MASTER_SITES= ftp://ftp.ascii.co.jp/pub/GNU/ +EXTRACT_SUFX= .tgz MAINTAINER= okazaki@be.to -BUILD_DEPENDS= emacs-20.3:${PORTSDIR}/editors/emacs20 - -EXTRACT_ONLY= ${DISTNAME}.tgz +BUILD_DEPENDS= emacs-20.3:${PORTSDIR}/editors/emacs20 \ + /nonexistent:${PORTSDIR}/editors/emacs20:fetch +# EMACS_ARC is fetched by BUILD_DEPENDS EMACS_DISTNAME= emacs-20.3 EMACS_ARC= ${EMACS_DISTNAME}.tar.gz EMACS_SRCDIR= ${WRKDIR}/${EMACS_DISTNAME} diff -urN /usr/ports/japanese/emacs-manual/files/md5 emacs-manual/files/md5 --- /usr/ports/japanese/emacs-manual/files/md5 Wed May 19 22:23:59 1999 +++ emacs-manual/files/md5 Sun May 23 15:57:19 1999 @@ -1,2 +1 @@ MD5 (emacs-20.3-man-jp.tgz) = b080e57be7aa861012aeee3f17ec6a8e -MD5 (emacs-20.3.tar.gz) = 5aee43bb7c7267cc24b78011d280ecdc >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 May 24 18:40: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0F8E614E98 for ; Mon, 24 May 1999 18:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA13159; Mon, 24 May 1999 18:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from hunkular.glarp.com (hunkular.glarp.com [199.117.25.251]) by hub.freebsd.org (Postfix) with ESMTP id 3B3C514E47 for ; Mon, 24 May 1999 18:39:14 -0700 (PDT) (envelope-from huntting@hunkular.glarp.com) Received: (from huntting@localhost) by hunkular.glarp.com (8.9.3/8.9.2) id TAA23077; Mon, 24 May 1999 19:39:11 -0600 (MDT) (envelope-from huntting) Message-Id: <199905250139.TAA23077@hunkular.glarp.com> Date: Mon, 24 May 1999 19:39:11 -0600 (MDT) From: huntting@glarp.com Reply-To: huntting@glarp.com To: FreeBSD-gnats-submit@freebsd.org Cc: David Leonard , huntting@glarp.com X-Send-Pr-Version: 3.2 Subject: ports/11879: patches for /usr/ports/dclock/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11879 >Category: ports >Synopsis: dclock's "-miltime" option and "*miltime" resource dont work >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 May 24 18:40:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Brad Huntting >Release: FreeBSD 3.2-RELEASE i386 >Organization: >Environment: XFree86 3330 >Description: The -miltime option for dclock doesnt work as advertised. Similarly the "miltime" X resource is also broken. >How-To-Repeat: TZ="somewhere where it's afternoon" dclock -miltime dclock -xrm 'Dclock*miltime:true' dclock -xrm 'DClock*miltime:true' >Fix: Here are the two patches I came up with to fix this: # 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: # # x11-clocks/dclock/patches/patch-ab # x11-clocks/dclock/patches/patch-ac # echo x - x11-clocks/dclock/patches/patch-ab sed 's/^X//' >x11-clocks/dclock/patches/patch-ab << 'END-of-x11-clocks/dclock/patches/patch-ab' X--- Dclock.h.orig Mon May 24 19:18:35 1999 X+++ Dclock.h Mon May 24 19:18:22 1999 X@@ -51,7 +51,7 @@ X #define XtNfadeRate "fadeRate" X #define XtNtails "tails" X #define XtNdate "date" X-#define XtNmilitaryTime "militaryTime" X+#define XtNmilitaryTime "miltime" X X typedef struct _DclockRec *DclockWidget; X typedef struct _DclockClassRec *DclockWidgetClass; END-of-x11-clocks/dclock/patches/patch-ab echo x - x11-clocks/dclock/patches/patch-ac sed 's/^X//' >x11-clocks/dclock/patches/patch-ac << 'END-of-x11-clocks/dclock/patches/patch-ac' X--- dclock.c.orig Mon May 24 19:18:35 1999 X+++ dclock.c Mon May 24 19:18:22 1999 X@@ -93,7 +93,7 @@ X else X name = argv[0]; X X- toplevel = XtInitialize(name, "DClock", options, XtNumber(options), X+ toplevel = XtInitialize(name, "Dclock", options, XtNumber(options), X &argc, argv); X XtAddActions(actionsList, 1); X END-of-x11-clocks/dclock/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 May 24 18:50: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 087FD154CB for ; Mon, 24 May 1999 18:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA14219; Mon, 24 May 1999 18:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 24 May 1999 18:50:02 -0700 (PDT) Message-Id: <199905250150.SAA14219@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Scot W. Hetzel" Subject: Re: ports/11862: ports/www/apache13-fp is broken Reply-To: "Scot W. Hetzel" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11862; it has been noted by GNATS. From: "Scot W. Hetzel" To: Cc: Subject: Re: ports/11862: ports/www/apache13-fp is broken Date: Mon, 24 May 1999 20:44:06 -0500 This is a multi-part message in MIME format. ------=_NextPart_000_0142_01BEA626.2A4CD900 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit From: > >Description: > > Can't install port www/apache13-fp. > > >How-To-Repeat: > > > > Getting DocumentRoot and UserDir. > Found Directive ResourceConfig, value /usr/local/etc/apache/srm.conf. > Getting DocumentRoot from /usr/local/etc/apache/srm.conf. > Getting UserDir from /usr/local/etc/apache/srm.conf. > ERROR: does not exist! > ERROR: Unable to get DocumentRoot/UserDir > > Exiting due to an error! Please fix the error and try again. > > *** Error code 1 > This problem was caused by ResourceConfig & AccessConfig being set to the empty srm.conf and access.conf files in the httpd.conf file. The attached patch corrects the patch-ab (Makefile.tmpl) where ResourceConfig & AccessConfig were being set to the wrong values. Also, 3 files were missing from the PLIST and are included in this patch. Scot ------=_NextPart_000_0142_01BEA626.2A4CD900 Content-Type: application/octet-stream; name="fp.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="fp.diff" --- patches/patch-ab.orig Sat May 8 03:48:21 1999 +++ patches/patch-ab Mon May 24 20:02:14 1999 @@ -116,8 +116,8 @@ -e 's;@@ServerRoot@@/icons;$(iconsdir);' \ -e 's;@@ServerRoot@@/cgi-bin;$(cgidir);' \ -e 's;@@ServerRoot@@/proxy;$(proxycachedir);' \ -+ -e 's;@@ServerRoot@@/srm.conf;$(sysconfdir)/srm.conf;' \ -+ -e 's;@@ServerRoot@@/access.conf;$(sysconfdir)/access.conf;' \ ++ -e 's;@@ServerRoot@@/srm.conf;$(sysconfdir)/$(TARGET).conf;' \ ++ -e 's;@@ServerRoot@@/access.conf;$(sysconfdir)/$(TARGET).conf;' \ -e 's;@@ServerRoot@@;$(prefix);g' \ -e 's;httpd.conf;$(TARGET).conf;' \ -e 's;logs/accept.lock;$(runtimedir)/$(TARGET).lock;' \ --- pkg/PLIST.orig Sat May 8 03:48:22 1999 +++ pkg/PLIST Mon May 24 20:27:57 1999 @@ -268,6 +268,7 @@ www/icons/small/continued.gif www/icons/small/dir.gif www/icons/small/dir2.gif +www/icons/small/doc.gif www/icons/small/forward.gif www/icons/small/generic.gif www/icons/small/generic2.gif @@ -277,6 +278,8 @@ www/icons/small/index.gif www/icons/small/key.gif www/icons/small/movie.gif +www/icons/small/patch.gif +www/icons/small/ps.gif www/icons/small/rainbow.gif www/icons/small/sound.gif www/icons/small/sound2.gif ------=_NextPart_000_0142_01BEA626.2A4CD900-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 24 19:10: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CAF82154A4 for ; Mon, 24 May 1999 19:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA15510; Mon, 24 May 1999 19:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from yang.vegamuse.org (unknown [206.239.71.148]) by hub.freebsd.org (Postfix) with ESMTP id 5EFD21545A for ; Mon, 24 May 1999 19:09:06 -0700 (PDT) (envelope-from sab@vegamuse.org) Received: (from sab@localhost) by yang.vegamuse.org (8.9.3/8.9.1) id WAA16101; Mon, 24 May 1999 22:07:36 -0400 (EDT) (envelope-from sab) Message-Id: <199905250207.WAA16101@yang.vegamuse.org> Date: Mon, 24 May 1999 22:07:36 -0400 (EDT) From: sk-ports@yin.vegamuse.org Reply-To: sk-ports@yin.vegamuse.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11880: Update port: wmmon Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11880 >Category: ports >Synopsis: Update port: wmmon >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 May 24 19:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Stephen Kiernan >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD ports collection >Description: This is an update to the wmmon-1.0b2 port. It doesn't use the patch file available at windowmaker.mezaway.org, since that site hasn't updated with my new patch file (I created the original patch file), so I patch all the appropriate files myself in the port. This update should fix the root-exploit problems (wmmon only needs setgid kmem, anyway, so that's what this does). This update also fixes the swap usage monitor on FreeBSD 4.0-CURRENT >How-To-Repeat: >Fix: begin 644 wmmon-port.tar.gz M'XL(`,`"2C<``^P\:7/;1K+Y"OZ*L9+()`6"IVY+%45B$I4ERB72QS[;A0*! M(8D0U^(@I3C:W_ZZY\`E2K(WEO,J3ZA$)&:Z>WJZ>_J8&7KINK[7_.Y1'])K M;6]NDN\(/JW2IW@A6]N=3J_5[O0ZA+1;W?;F=V3S<=GB3Q+%1DC(=Z'OQ_?! M+6>4.M^"H6_[+)G^)[9#HT>S@B_0?VNKMP7Z;__?H?[M7TG^GM=W[CK0>A9O2\_]<_^M\7\/SB8 M)___+9ZWMF?YRW-C3D-B^>;<&#N41-=13%WB^(;5#&@X\4/7\$Q*P%3LV`^U M)\__CWFR]7_2'QY?/LH8#ZS_=GO7C,?0(R(+*GCL%YC04-C6O`1Q/`L,K47-*I<^PF)?,#U;/`7 MAF79L>U[AD,FU(B3D,((OJ]I6J7"!S:3,*1>[%R3(/07MD6CO4I%AH4ZN4(L1^#X,Y!R.MDN#0" MDD1(C0T3Y3&&7!5)P-`L.PH%C4U126<.&,>NFP052.J M,8,4&ZQOP?]P`?9XR'\K_-=K;_ MUVUWV?[?YE/]]TV>[\F`+DG@AW$$4=UQJ(G1E[C"(#`*[X&.^*K_GKP143BD M_T[LD%I[3(&X<0B=)T8,J0&DC['HP*?3(^<0A=N[N[L`\G;FNVF7?(8Q#6;4 M(R]M&GJ0,KR(Y@W&T4\+.C55KX'`C^<6C_`E\H)!*O!T7G_0,EM M7E:.CT;]7R\N3_O#`P72NB2V'4A=68F+,PHKYT?#4?]2'YZ.$&02!WO-)OS5 M7/J'L32N<9QFD(R;)U`*'P5!U"0?*HHRBQG@7-TV1+D?-J\"M5%X/^_H[ M_=5E_Y?3=P>@UFNH!RIO+U\.+X\/%.6'3_"583&%:<"$B"45S?9,)X$$[L4X MLC3D0PM"JKGS0^R;D&IUG+T*D#]GU`GP MQSBX:99C%L"<#H:CH[,S_?QH@)"43^9\3F[-%.`+_D_*_;8_N_V[VG_=]O\A3USSX;AO5UQ[@__F_VMCJ9_K=; MF[@CU-O>?HK_W^*IU^L$W!_\5W++XMV$0&!/E5%"11@G[>V]=G>OO84A?:?2 M:#3NQU=PFP=1(1'HM/=ZVWN]'9X-U(L/OI/.CMKM$O:*E.&UUR+PK0$5OW(\ M,[PI[A#!=]%6V2!*:[/9Z361)*F64@F5K`QL-413ZN25S_8E8I_\$E+Z\_"$ M]+06]K4[30B;.,&_3K*C=532Y70!X&=;G7X$Z`3 M,#Q"QM?D>!;:4>Q'Y'_\Q#$B%1.G!7#V%D*@85(5MST$]%O?F82&2X;FS*.0 MIH0HL_9.$V3%9W7DQ3[NM@P2R/E4LC3"X*>KJ`>4-,^I(33P>MX_;P[?'KUJ MOGXU.CWO`]?.-4D""Q,\LD2A+.S('CM4P+^.<'-IZOACW/'#]!$R$3.T`[ZW MZ$/::"4F95TKU;_=47?:F?JW=]5VJROU_WT:>B>F%SO:[+#0F'@@'(NW@A2R M#AJ&GH_M&Z2```EB.HW.I' M(750@N4.I&[ZWF15NS4'+Q7+G@G1=6$ONK25PP/2;>%3P(5<,H?(4Y@R;?C? MY-(L]^`VW:KVT`%)K^I8N&QSSBW"9"Q@ MG*RRF79K2X6$(;.:-GB-]LZV-)M?3L_Z2GT2Z"B)_7P#;L<:"[:]"_R"!O58 MJ<.'10[(X/79V3ZT1G&8F#'Q<,KP]_U'Z/N$$^ M*%T)A]ORB<=V9R7LPW:24AN]U`>G`YF-]:!//D@[GNN>[=UB`9$N7H\XG+)) M5F#Y22H-ZD2T@'X"Z">7IV_Z2D].P@(4*[07MZ<+P&]/ALIF#G)I12GMU+!7 M3?D%Y)^E&;\YU]&OX8ZGLB5I1DLC0#67!F>P)_TW(V4[@X2%M0)N@$25'0GF M(<654$!.VU02R)?>1+Q(CQS,2+"4XXF$(4@%72:*_N!)M(>V'E->MDDG@FW_.O-Z%EX=L6 M/^NHXE=V.,+:@A#("*V6NDY"8SF$H:(JCE17<<#2GQ7`NNT_`"^,2A:@F7'I M-?+GG[GV`8UY,Q<@FRP>2E29C$D]I+&Q,&Q'S=XG0*JVGRH3)9&CC^0SLB@9 M)BXV`99:Z2%($D:O,H912^`".=,"S#5LC\W/"*>F!('OB_B`Q<(4H"L0M_1V8 MH9JCTR#6\"#0#THV,!['I.&$R#!2'@1[7%QU0FIN-'%*GMI\8&GW@@6+4/ M6OO$?@&^1Q^.CD8Z>-+3X_X0VC8V<'!>->RJW=YN:K,/FP!3J&N/WW<^,A;0 M@T(RH'!/B@T\#4`V%X:CC*%8E'I:;1V/;QR,WQ;F(\>C,_UE_W*P+UO;V(HM M^L\7%R-,*-)900=^^).JG`,7.JJORE/!*I!0"10MZQ($OB*2RK(BE;1JSPX: M[1I97T=,C/Z!$UR3-@O8;ZN$_/10FD4`U2IK8!.0M#N1'&%HBI3&D< M0)S`MZHP6#02'O2X]%>#\N;#-GY!V(T-`7EX>-#FE`21Q@%DF/OW#BKEAZGC MP0'*J$9$&HE))2X<=L&ZRL67_WNA7YY<#,[^I1+N#S-EY(E](M*-2B^Z5B"\ M1WZ,/GAK&1'"_"DK?.#E)D]3KE#QKK/,EO6HD-_6,$%L21BED/W6/2>0TU50 MT%7H0._D.?NLLW'HZ9X!&@3M/__0>KZ/_1L;)"7'XH4`Q$**'!RP:,$[9:P@ MQ5FRP??(\-H=^PYY_F/TG'A^#/XH\2PVZ=S(PK"8G2@*_'DH"6;0(MGAJO42 M%T,4URS/6AD0R@OR_]9'3?#^+"\HA>3"N MK8NQ5;DJQ7M-SH2/*Q@\S(^H9*D<<&Y"Y>Z;U3(Y]!P9+267Z7TVSO@/&OK5 M'&81D-2)Y%FBW##)L025-]Q6[#F_=(+;!3]:F!/8)N57/@Q(!1=V?*UQW>9( MWY7=YU59&IK;`2I1BNU6/I*W,;&*L&6*A6PH5HR8V?KK;R/]Z'AT>C&HD=">SF+=X"=Q!UB"6DE0A-F7F.>G)R=G_135M2T( M:[=PBU`R@$"G&5Q7,=SL]M;>3*ZPV=W?5K5:6I$9QXS",=`QVR"VIU!"YS:/^"Z`%(@H/UCV+B2"7PL2D0T2[FXM@-`W M>UWI>]/-!K:ES8;"0JK*OH!"23V"TCK_UN$Y;5HHYNI$:$H\/ADN3C0]E=^< MLE`@DPF$+"C##3`92RY0`+JS7E-)5MAQ^UW.<%.].H'5'`F?AKN=>;A\?@=+ M%?Z3GO*BJ" M=2X#N4;SI@_YM\RWE8()0!XN\#>D!&_!9,C-)F8ND(G-<^M^A4SP7NW=0F&] MF11PKIWBU#OIX-ED.G?.IK.*U8S1PO;*S1WV&2V#@GW>;9#"P")*Y]7,0%0L MBH;]_DM]V!]]!:OZ8@G>83M?9`P/2B\38+/^=9\/0///.L93Q@KX&]N,E.*# M/NQ/@/OPE<=NLLBQU=Y5=[;38[&_Y,2*'DLLL'SR\,^K:1\HY'(;UA,;#)WM M2>B6[XGM&%&50;>%NP"VI_(O?A+OIR18U2Q.PTB4N%G9S#.R567B\6"TJD`$ M[+3@@N^UVL%!_DULP@BONY*P/'Y:13UUR7)3B+_G1DE;$"BL1B/BD]>'A1 MJ)$5H:2\[D0C/X?(6F_DEWRY6*`@)IJ-U<@./%9-)S].$1?;&KD#D578*3_Y M0Y42!_LE&#Y6>:BRL*IB2H1R?-["LZN4]/:_WO7^L/)&ZW M_7=<7.=_<9GGRO=G1!P$/'#@#W5`'?Z0>GH7IX%?VAC4\E,7`HTG!$00& MN__"L27JRU_[HZIM7:F$8?#G`\H%>]J\:QWZT@6%<)#RRR%K)6("!;)U2`/< M:%HKD>R@'P&0W+K-8$NT.E7#LL([B*WP"=5$9YO(#*W&\=C>%/S])-"4D,9) MZ!$\-BK_!['%E&:O_21>-T<$3\@I^%PPWNA68SB^.>>[>O6`A@#`MTZ8?$D0AWD" M[*8901F% M_8X5LE2(A.AE((;CKVKQIQA3&FGD=$*6[,?5YHQMN['K@:I`C&(_P#X+=]S0 MU82NP?;*V`51ICEY2(*7/#F2L#<\G]'(:`8N+`CQ0FB,_$-R$9'G8_QU-I@L M_D!98*4<\?Q'Q MF6B6846\-AKBL+^4'W%WOS;R?>+B;X^9&+%`R4NH(!!-P[,B$8;X.5SD4!I4 MN[Q-.@#VAD21J84!8K7<>5-I+77V,W.^!C'^%3NQ:5]2P>6]"AFBNX1+?0H+4_)*G/`C68K\C+_?-=&! MSS7,[DARIO%BXT,SS8UYTG\CO1:'D7WL4IUP9%E/NYJ[$8CIC7`'65(J&L#U MKZ7W!/,W)Y8L[RNZO9HX^N!\X"KGQ,"/8#E]P,\^(`V3QEGE#A%)\2!P)P4. MF*/"#M&Y.`.V9*IK'%>*++UA),"J>F[O4C6@LQ,!V*N^<^?T!,!-4'_))*QGX<^U##>/0JUEF( M^US^A%C%^*`%C':9W>7BC[0]`%LKW4[(:'"K?9A(9L"%2(:S`5$A.HA)ARYN M/7Q^N1[VSRZDQ0;7XL8!_EZ!W=]AT.(XD$'P$(GQ9YBM;(A8$7#"3,-P??8/ M4Z#CA=IXFH24_1L.L!Q M$D;46=!T3DVI6[%*4/=-(77(C(41B):TJ,Q6"+JYZO^V=Z2];1S7S\RO&*F, MPF-)\38MV6X3R0D4J'5@)6@!527$0^Y&(E?@8G-3D$3";*:OQZ<`UJS($SC;E?'>H M&)W.F8T9M"Z0F3)TA0L9TV@M`7+\F%B0R.&5-NJ)TZY=?X`+)_&#]"22T[R* M!@/@)C(!.7_#\BJI+2\V"HW7BX5"81@MX/A7I&$?*OW(PT<'H%JUAL8GM6K; MVH932W\X_5\L`Y]5N]4.VNV6-FJ@JV]_>'+/"KA$(TE]PQ#.]*^A^867=7(U MKMB2.3S65P0Q8P?**CE&\Z5Y=#N:H&'AOOKG'`[K5'1S%UW/G00-AEZK)Y9;/$V^KRY)??T)[O]<75 M=N-.14N[$[2?-XR=7TG49:8VO0C!V6PR&-\7S&3V!_>+_4`US36L4>"3A452 M>[].?4_WLYY.P%?>8U_.?>\]FW&%7UZO59J!:^-K!5\&:9_'Q M`_/VY&B?RWE&DDTC,.32U^F-52JQWG*`2&2SU_/HKF",OLRE\:;J>KW]ZLX] MNSJ4`)%:B8]H]FAL"OE-FJ M1?L3NBD-9V;YE\QKNJV@7NMVC17>IV[2_WDE8D*+N)T:<9,><8TY`WNRIFG[ MA,N:]U-Y=K1^)L>:-ZRV;V!7V+2.F,.;?OC1Z49GN!JOM&U;L$<.$AFU*SB& M_'AQ\OWYZZ+Q`,E94K='92-(XF3/*Q?B3FN'MQG96^](:[^&G)/KR%R#Z/28*^TV-_BY4OMB%'R\IUNDR]BXJ7KOHFY/--V:UYRF#+*ROLA M?_G/TG\%M9J!6`HGJ`8=FK=$#:HO0?$);ZDAL;'N>A@8Z[%YE4Q/$[2Q3GCI MK*_S+II++1DE'0S304>3T90N1S8.9#'NR853;W8_&H0WH;L0ZRO.1AAD#:_+ MMX7%]^)-T"#G9O^.'F2N]:U&,N:H/RX&"2W:19?*";ID075@!!<:%L(.5=') M7)Z]"K094E*I9!91+^LF7''K/1]ELN4+:D_3)D=ED8W!CDSJ`"C-BI[%M*A] MD`T`DFL*!`/!I=SVA#U\5BMR+-1#-H.*W_FZ==P* M=@#K:W"E!'IPU-KC7`:KEXL9GNMND3/7U"+]XO.=CQV_PB<]226:XTPMA7>4 M,%++E3.NC+7SE`[B1,NZ22,XE",Y.`"'(SF02JL<>",PLM^2I!09O.[8U9O? M?DWK*UK,5W9&EDN[]Y8X!IKVL>'$2=#F69)=&MI@AR)+NP(P'HW1(4QOW-0- MOA??NQ[149/]Q>R#=D9&2/-L:5E.TL!AM%PY.%`%%$@DC:AKQ:<)^"/49D60 M58=@&SJ_Z.X-R]%D%#3>RBN7T_$]NK3IP(A0=/>2QPL]VF<.*L.V#!N6SQ52 MWB/*(8,_Q/M!@@T'ROWMC$WK9]SJ-(5`B6P)7)D$^(OS'+]JF@0.U.D%O!*? MOS[YM<>\P)&*7O6ZVK!U4YF40W(LFCP:RLT>0AA[DAJT?[,Y^P_P5K1^9'?: M=JBPKPZT]C&\I"'#K[$E9C;CQH=-D>6TZ(&Y>_+A@=_MT]"ZUJV?5F71@\XZK=Z-[4_HF)N?`4`U77&@):R=HSLLN[N%K=%7/EH?+^8CWHC"OOB[YQ`Q7:6 MQ]4[!A2?H#A(5?8]?Q9T:FW'L1P)THL-P`%BM$9'@EAHER0@)+IN--J%FA]% MPX6K&SB\L5T)UC!@,()]$[U`=.O-8Z,$J=>>-X-ZO59W/$HWCWZR8?B!:INA M)6#]*:P%]:?!H&DS2<-*I]D-.BTGGG"]WFS!5)V8POJ&C,-W<>RNH814."SE M=.":?3$G^79(\I%^T:F1;5X@JW@L<0ONPT;*%2XF9/A065\Q"B/ABVJN)G^0$1EU,+$) M\2/\;Z/MR5+J_N\_;1^;OO^#T;#B^[^5[?^ODM;O?S*7_[S]STWLMO];K:!M M`J0I=1Y.;D?#UWJB&`XPI9F24\\0N1.6*_X#?LO?OQ&^S&N&+M*'S\7+5?. M(VWENZW`#5+5?18\-X%&SOZ&89_)(`^>$*^]Z6@S7OKP=U84![ZOSLA].SM\#0*N>' MB]D4OX+VM@,2I<]E%T`\4';WC_LQ_HON.O"G7H?2-S_\?`%E'+ZO&BEVT*9! M:L%D?J47T[DUM80D&GK(,)-'^4CWO(.!JL!_;QJJ@E]D4?D7JA*I?`E@Z:V9 MQG*D\@4<7%'7B#A?Y?\%)3SA(O^Z*'('@[O1]>2(NL"WQA!>SG4CZE@-]1BG M8Y7/A\?T@$$4\"_D\>?+Z.4W:(BAXY[Z$_ZO_NI\Y<]$16A*5(16M::_1#-# M#R)NB*OR.'.YE9BAH@1BX-_;]Y@E%B8`?/+C^?<_`?B?7^+*.1EER'@G*UDY M@^85>/[E[9N?8#Z\`#[.\Q]/3I:(]GR!!UYTT4Y7 MCOD"UB]ZB)=J`/87E7^EUR@5_WOXD>:C(]U,@B0`Q94;MVV=P>`2;X`_DT<5 MY(%H]9VZ'8\`?JP:^(4V&!"R05W9^1Q>/T349\(W2UG*4I:RE*4L92E+6 ` 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 May 24 23: 9: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 71D3414E47; Mon, 24 May 1999 23:09:02 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA40256; Mon, 24 May 1999 23:09:02 -0700 (PDT) (envelope-from sada@FreeBSD.org) Date: Mon, 24 May 1999 23:09:02 -0700 (PDT) From: Message-Id: <199905250609.XAA40256@freefall.freebsd.org> To: nobutaka@nobutaka.com, sada@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11760: Update port: graphics/gimp1-i18n from 1.1.3 to 1.1.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/gimp1-i18n from 1.1.3 to 1.1.5 State-Changed-From-To: open->closed State-Changed-By: sada State-Changed-When: Mon May 24 23:08:02 PDT 1999 State-Changed-Why: Committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 25 3: 9: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 42510150C7; Tue, 25 May 1999 03:09:04 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA66168; Tue, 25 May 1999 03:09:04 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Tue, 25 May 1999 03:09:04 -0700 (PDT) From: Message-Id: <199905251009.DAA66168@freefall.freebsd.org> To: cpiazza@home.net, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11863: Update: net/ezbounce Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: net/ezbounce State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Tue May 25 03:08:51 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 25 6:20: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5CF09156B0 for ; Tue, 25 May 1999 06:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA86715; Tue, 25 May 1999 06:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from initio.no (hmv31b-6.itea.ntnu.no [129.241.197.76]) by hub.freebsd.org (Postfix) with ESMTP id 2A9B8156EC for ; Tue, 25 May 1999 06:17:35 -0700 (PDT) (envelope-from oyvindmo@initio.no) Received: (from oyvindmo@localhost) by initio.no (8.9.2/8.9.2) id PAA61921; Tue, 25 May 1999 15:17:34 +0200 (CEST) (envelope-from oyvindmo) Message-Id: <199905251317.PAA61921@initio.no> Date: Tue, 25 May 1999 15:17:34 +0200 (CEST) From: oyvindmo@initio.no Reply-To: oyvindmo@initio.no To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11882: port update: net/ethereal Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11882 >Category: ports >Synopsis: port update: net/ethereal >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 May 25 06:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Oyvind Moll >Release: FreeBSD 3.1-STABLE i386 >Organization: Initio IT-losninger AS >Environment: >Description: Upgrade net/ethereal from 0.5.1 to 0.6.2. (Every upgrade should be this easy.) >How-To-Repeat: >Fix: diff -uNr ethereal.old/Makefile ethereal/Makefile --- ethereal.old/Makefile Tue May 25 14:55:44 1999 +++ ethereal/Makefile Tue May 25 14:56:57 1999 @@ -1,12 +1,12 @@ # New ports collection makefile for: ethereal -# Version required: 0.5.1 +# Version required: 0.6.2 # Date created: 10 August 1998 # Whom: Bill Fumerola # # $Id: Makefile,v 1.9 1999/04/22 07:53:01 mharo Exp $ # -DISTNAME= ethereal-0.5.1 +DISTNAME= ethereal-0.6.2 CATEGORIES= net MASTER_SITES= http://ethereal.zing.org/distribution/ \ http://ethereal.boehm.org/distribution/ diff -uNr ethereal.old/files/md5 ethereal/files/md5 --- ethereal.old/files/md5 Tue May 25 14:55:41 1999 +++ ethereal/files/md5 Tue May 25 14:57:24 1999 @@ -1 +1 @@ -MD5 (ethereal-0.5.1.tar.gz) = 0cb4499458fb7d20950e704486921c63 +MD5 (ethereal-0.6.2.tar.gz) = e887f29d5b71a52ab70e048d0d36dd4b >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 May 25 8:39: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from imo24.mx.aol.com (imo24.mx.aol.com [198.81.17.68]) by hub.freebsd.org (Postfix) with ESMTP id 3B27415141 for ; Tue, 25 May 1999 08:38:59 -0700 (PDT) (envelope-from Ds22859@aol.com) Received: from Ds22859@aol.com (8030) by imo24.mx.aol.com (IMOv20) id nGARa06834 for ; Tue, 25 May 1999 11:38:47 -0400 (EDT) From: Ds22859@aol.com Message-ID: <13592cb4.247c1e07@aol.com> Date: Tue, 25 May 1999 11:38:47 EDT Subject: Problem To: ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: AOL 4.0 for Windows 95 sub 13 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi I take a class over the internet, and I have a message that tells me that Program. EXE. is needed to run the Mime, what can I do? Denise To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 25 8:40: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A7382150D2 for ; Tue, 25 May 1999 08:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA03389; Tue, 25 May 1999 08:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 558A514CA7; Tue, 25 May 1999 08:33:47 -0700 (PDT) Message-Id: <19990525153347.558A514CA7@hub.freebsd.org> Date: Tue, 25 May 1999 08:33:47 -0700 (PDT) From: sobomax@altavista.net To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11885: [NEW PORT] Squirm - redirector for squid cache Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11885 >Category: ports >Synopsis: [NEW PORT] Squirm - redirector for squid cache >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 May 25 08:40:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Maxim Sobolev >Release: 3.2-STABLE >Organization: Vega International Capital >Environment: FreeBSD vega 3.2-STABLE FreeBSD 3.2-STABLE #1: Fri May 21 16:07:57 EEST 1999 max@vega:/usr/src/sys/compile/VEGA i386 >Description: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # squirm # squirm/pkg # squirm/pkg/PLIST # squirm/pkg/COMMENT # squirm/pkg/DESCR # squirm/files # squirm/files/md5 # squirm/patches # squirm/patches/patch-aa # squirm/patches/patch-ab # squirm/Makefile # echo c - squirm mkdir -p squirm > /dev/null 2>&1 echo c - squirm/pkg mkdir -p squirm/pkg > /dev/null 2>&1 echo x - squirm/pkg/PLIST sed 's/^X//' >squirm/pkg/PLIST << 'END-of-squirm/pkg/PLIST' Xbin/squirm Xetc/squirm/squirm.local.dist Xetc/squirm/squirm.patterns.dist X@exec install -m 755 -o root -g wheel -d %D/squirm X@exec install -m 750 -o nobody -g nogroup -d %D/squirm/logs X@dirrm etc/squirm X@dirrm squirm/logs X@dirrm squirm END-of-squirm/pkg/PLIST echo x - squirm/pkg/COMMENT sed 's/^X//' >squirm/pkg/COMMENT << 'END-of-squirm/pkg/COMMENT' XSquirm is a fast & configurable redirector for the Squid. END-of-squirm/pkg/COMMENT echo x - squirm/pkg/DESCR sed 's/^X//' >squirm/pkg/DESCR << 'END-of-squirm/pkg/DESCR' XSquirm is a fast & configurable redirector for the Squid. X XSquirm has the following features: X X -Very, very fast X -Virtually no memory usage X -It can re-read it's config files while running by sending it a HUP signal X -Interactive test mode for checking new configs X -Full regular expression matching and replacement X -Config files for patterns and IP addresses. X -If you mess up the config file, Squirm runs in Dodo Mode so your squid X keeps working :-) X XIt has been written because the existing redirector scripts used too much Xmemory and all were too slow for Squids that receive a lot of requests. X XIt can handle nifty things like file mirrors with the regex pattern replacement Xstrings, and do site blocking - useful for schools. It could also do such Xthings as banner add rewriting, and just about anything else :-) X XWWW: http://www.senet.com.au/squirm/ X X- Maxim Sobolev Xsobomax@altavista.net END-of-squirm/pkg/DESCR echo c - squirm/files mkdir -p squirm/files > /dev/null 2>&1 echo x - squirm/files/md5 sed 's/^X//' >squirm/files/md5 << 'END-of-squirm/files/md5' XMD5 (squirm-1.0betaB.tar.gz) = c77e4fbd76dc6a86786071afc861b408 END-of-squirm/files/md5 echo c - squirm/patches mkdir -p squirm/patches > /dev/null 2>&1 echo x - squirm/patches/patch-aa sed 's/^X//' >squirm/patches/patch-aa << 'END-of-squirm/patches/patch-aa' Xdiff -ruN ../squirm-1.0betaB.orig/Makefile.real ./Makefile.real X--- Makefile.real.orig Wed Mar 11 10:23:51 1998 X+++ Makefile.real Tue May 25 17:15:36 1999 X@@ -1,31 +1,30 @@ X # Makefile for Squirm X # X X-OFILES = squirm.o main.o config.o log.o lists.o regex.o X+OFILES = squirm.o main.o config.o log.o lists.o #regex.o X X-HFILES = squirm.h paths.h lists.h log.h regex.h X+HFILES = squirm.h paths.h lists.h log.h #regex.h X X-CC=gcc X+CC?=cc X #CC=checkergcc X X-#EXTRALIBS=-lregex X+EXTRALIBS=-lgnuregex X #EXTRALIBS= X X BINARIES = squirm X X-CFLAGS = -O3 -Wall -funroll-loops X+CFLAGS? = -O3 -Wall -funroll-loops X #CFLAGS = -Wall -g X X all: $(BINARIES) X X install: all X- install -m 755 -o root -g root -d /usr/local/squirm \ X- /usr/local/squirm/bin X- install -m 770 -o root -g squid -d /usr/local/squirm/etc X- install -m 750 -o squid -g squid -d /usr/local/squirm/logs X- install -m 660 -o root -g squid squirm.local.dist squirm.patterns.dist \ X- /usr/local/squirm/etc X- install -m 755 -o root -g root --strip squirm /usr/local/squirm/bin X+ install -m 755 -o root -g wheel -d /usr/local/squirm X+ install -m 770 -o root -g wheel -d /usr/local/etc/squirm X+ install -m 750 -o nobody -g nogroup -d /usr/local/squirm/logs X+ install -c -m 660 -o root -g nogroup squirm.local.dist squirm.patterns.dist \ X+ /usr/local/etc/squirm X+ install -c -m 755 -o root -g wheel --strip squirm /usr/local/bin X X squirm.o: squirm.c $(HFILES) X $(CC) -c squirm.c $(CFLAGS) END-of-squirm/patches/patch-aa echo x - squirm/patches/patch-ab sed 's/^X//' >squirm/patches/patch-ab << 'END-of-squirm/patches/patch-ab' Xdiff -ruN ../squirm-1.0betaB.orig/paths.h ./paths.h X--- paths.h.orig Mon Mar 9 05:56:22 1998 X+++ paths.h Tue May 25 16:27:33 1999 X@@ -22,7 +22,7 @@ X #define LOG_INFO "/usr/local/squirm/logs/squirm.info" X X /************* Configuration file locations ***********/ X-#define LOCAL_ADDRESSES "/usr/local/squirm/etc/squirm.local" X-#define REDIRECT_PATTERNS "/usr/local/squirm/etc/squirm.patterns" X+#define LOCAL_ADDRESSES "/usr/local/etc/squirm/squirm.local" X+#define REDIRECT_PATTERNS "/usr/local/etc/squirm/squirm.patterns" X X #endif END-of-squirm/patches/patch-ab echo x - squirm/Makefile sed 's/^X//' >squirm/Makefile << 'END-of-squirm/Makefile' X# New ports collection makefile for: squirm X# Version required: 1.0betaB X# Date created: 24 May 1999 X# Whom: Maxim Sobolev X# X# $Id$ X# X XDISTNAME= squirm-1.0betaB XPKGNAME= squirm-1.0b XCATEGORIES= www XMASTER_SITES= http://www.senet.com.au/squirm/ \ X http://www.elab.co.za/squirm/ X XMAINTAINER= sobomax@altavista.net X XRUN_DEPENDS= /usr/local/sbin/squid:${PORTSDIR}/www/squid22 X Xpost-install: X @echo X @echo ' +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++' X @echo ' You have to manually add "redirect_program /usr/local/bin/squirm"' X @echo ' into your squid.conf file.' X @echo ' For help on configuring squirm try http://www.senet.com.au/squirm/' X @echo ' +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++' X @echo X X.include END-of-squirm/Makefile 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 Tue May 25 12: 0: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0ACF615B01 for ; Tue, 25 May 1999 12:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA25470; Tue, 25 May 1999 12:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3547015A11; Tue, 25 May 1999 11:53:47 -0700 (PDT) Message-Id: <19990525185347.3547015A11@hub.freebsd.org> Date: Tue, 25 May 1999 11:53:47 -0700 (PDT) From: eischen@vigrid.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11887: Allow xmcd to read ~/.Xauthority Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11887 >Category: ports >Synopsis: Allow xmcd to read ~/.Xauthority >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 May 25 12:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Daniel Eischen >Release: 3.2-stable >Organization: >Environment: FreeBSD klr1.clc.gdeb.com 3.2-STABLE FreeBSD 3.2-STABLE #0: Mon May 24 11:31:27 EDT 1999 (i386) >Description: When using xauth-style authentication, xmcd cannot read a users ~/.Xauthority. This problem was reported by Thomas Gellekum (tg@ihf.rwth-aachen.de). >How-To-Repeat: Use xauth-style authentication. >Fix: Thomas Gellekum (tg@ihf.rwth-aachen.de) provided a new patch file for xmcd. A diff to the xmcd port follows. diff -crN /usr/ports/audio/xmcd/patches/patch-af ./patches/patch-af *** /usr/ports/audio/xmcd/patches/patch-af Wed Dec 31 19:00:00 1969 --- ./patches/patch-af Tue May 25 12:36:53 1999 *************** *** 0 **** --- 1,40 ---- + --- xmcd_d/main.c.orig Sat Apr 24 03:41:00 1999 + +++ xmcd_d/main.c Sun May 23 11:55:01 1999 + @@ -151,6 +151,8 @@ + { + int i; + Display *display; + + uid_t euid, ruid; + + gid_t egid, rgid; + + /* Error message stream */ + errfp = stderr; + @@ -201,6 +203,16 @@ + } + } + + + /* get real IDs */ + + ruid = getuid(); + + rgid = getgid(); + + /* save effective IDs */ + + euid = geteuid(); + + egid = getegid(); + + /* give up root until we have a connection to the X server */ + + (void)seteuid(ruid); + + (void)setegid(rgid); + + + /* Initialize X toolkit */ + widgets.toplevel = XtVaAppInitialize( + &app_context, + @@ -210,6 +222,10 @@ + NULL, + NULL + ); + + + + /* Ok, back to root */ + + (void)seteuid(euid); + + (void)setegid(egid); + + /* Get application options */ + XtVaGetApplicationResources( + >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 May 25 12:10: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D2AED15AC2 for ; Tue, 25 May 1999 12:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA26159; Tue, 25 May 1999 12:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from henoch.cc.fh-lippe.de (henoch.cc.fh-lippe.de [193.16.112.72]) by hub.freebsd.org (Postfix) with ESMTP id 9DEF115268 for ; Tue, 25 May 1999 12:05:07 -0700 (PDT) (envelope-from lkoeller@cc.fh-lippe.de) Received: from spock.cc.fh-lippe.de([193.16.118.120]) (4396 bytes) by henoch.cc.fh-lippe.de via sendmail with P:smtp/R:inet_hosts/T:smtp (sender: ) id for ; Tue, 25 May 1999 21:05:06 +0200 (MET DST) (Smail-3.2.0.101 1997-Dec-17 #3 built 1998-Feb-3) Received: from cc.fh-lippe.de by spock.cc.fh-lippe.de with smtp (Smail3.1.29.1 #2) id m10mMVc-0006yiC; Tue, 25 May 99 21:05 MET DST Received: (from lkoeller@localhost) by cc.fh-lippe.de (8.9.2/8.9.1) id UAA07937; Tue, 25 May 1999 20:09:52 +0200 (CEST) (envelope-from lkoeller) Message-Id: <199905251809.UAA07937@cc.fh-lippe.de> Date: Tue, 25 May 1999 20:09:52 +0200 (CEST) From: lkoeller@cc.fh-lippe.de Reply-To: lkoeller@cc.fh-lippe.de To: FreeBSD-gnats-submit@freebsd.org Cc: lkoeller@cc.fh-lippe.de X-Send-Pr-Version: 3.2 Subject: ports/11888: Solution Xbae-4.6.2 don't work with Motif-2.1 (affects grace port!!) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11888 >Category: ports >Synopsis: Xbae-4.6.2 don't work properly when compiled under Motif-2.1 >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 May 25 12:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Lars Koeller >Release: FreeBSD 3.1-RELEASE i386 >Organization: Fachhochschule Lippe, Lemgo, Germany >Environment: FreeBSD 3.1-RELEASE i386, with Motif-2.1 compiled from source! >Description: The Xbae widget set required by the grace-5.0.2b port dor't work properly when compiled with Motif-2.1. This leads to a core dump when several menue items in xmgrace are accessed (e.g. Edit->Data set, Window->Font tool). A contact with the author of Xbae leads to the solution! >How-To-Repeat: Compile Xbae with Motif-2.1 and than grace-5.0.2b and access the above described menue items. >Fix: Apply the attached patch for patch-aa file in the Xbae port, and insert the other patches. I thake great care and look in all the Motif include and imake config files to take care not to break functionality with Motif 2.0 and Motif 1.2. Please let me know if there are problems with these older versions of Motif! Thanks and Regards Lars -- E-Mail: | Lars Koeller Lars.Koeller@Uni-Bielefeld.DE | UNIX Sysadmin lkoeller@cc.fh-lippe.de | Computing Center PGP-key: | University of Bielefeld http://www.nic.surfnet.nl/pgp/pks-toplev.html | Germany ----------- FreeBSD, what else? ---- http://www.freebsd.org ------------- begin 644 xbae-patches.tgz M'XL(`+/F2C<``^U8;6_:2!#.U^173-.3VJ3&>-O M0T11&IH&!P#$T)7L59"J$`V@85"J-XBA&CA--4,_`.65_,G1*HK-$.#`O0^8 MZ[)PM]SNN?\QG9Z>0GT5A?5E$,91_9&06AP$[KW#!U.3U9?\`6%1AMVFQ3`J35:A[5:C78DAZM?+A@4\`2$]+66VW2XM*MH],\\3$0 M20,SA>K.#'R@6BX*^-GFD& M-V3@6MPQ.2/*(QA8,=`6CT"C;5U/1`&*7@D.>BX1`U(&P*0SN+R$)Q:!&4&\ M8&`S+XC`,Y]@8?[!(`Z#U=1E,'-\V_'G0B1:F"&:=9UI:(9/LD@6#Q>OM76X MSR[*0>C,_TE(^31KS;:B)VG>8TBE%6U*5$W,B(B;$@*!B!D@8W@4>`R"F5B6 M/9H8$7J".PYN+5<&Z,W@*5@)3_P/,#7OG8B&7%X1?//ZW]'"Y"2'#!I<:G?#%N[WQ\'R4 MCE$FYG^$X-3H9J@E_,0<QW68'_>=:;273.<,OFG&=^QF@^)VUI_W:C/I)CC> M9Z6+DJVV3G>W=Y1H$J7*15RF-;+"P'5OG,C!CF6CEN,6]&+V&'\SK?N-I3SC&'&7'TX3[X:%D1/X M\/D+4$51ME>Y<)B+"R0KB(%03G`_+QTLA\&#$!5W19="TW&QT[IP'IG="=R5 MYT=>V98$!P7:S+^%S41JVQJ,GZA)D(Z]6CA6/<^BZ)4K<`M^AIBVQ)&+*D* MPHA0VV(6M39/P#A]`MY@_Z?X;[VFC9?P7U?I-OYK%?[O@PKX;Y7AO]96:"G^ M6P5)JK:QSCOQ7U,E/8/^?/B,_8YON2N;P>>)5^^&YKQG!;Z\^%HVU4GYZVZZ M@`,CW_(X%N0*V:W?D'"=99;)OE$$NYUZ5PG\'&;QVB\=#K!PLMYR&=+ MWY`5'5_%%=W(O"4K.G^G:JCKY`@ZK1^EMSY[J'WUDA+P<^9NQD$-7Q4F\8W9 M"9D9LUO'GK/XX^[D9$\H"1Y_Y]E)E#JN&442?$Q&)]R:))*6O"85%+T-J+Z@ MG:;\$$\HSPSGCH\2\4+*!6.A$W?)[-V#F,YI?&?.?!%+D!NE$GC"^9%KQAAD M)&UG*#==6@>5&"U))4WZ_!+%DPZ]#ZX+&`K$`?_>@&NP4,[4!.#/HYHH&RKK M?`4C*=M;[^R?HQ3_[=>T\0+^@TX;6_BO&17^[X/6^"_0L0S]U4:;:GGT3V2+ M)FW[JJ =%5544445551111555%%%%564I[\`"&X950`H``!* ` 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 May 25 12:17:47 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B92FE158A1; Tue, 25 May 1999 12:17:46 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA26802; Tue, 25 May 1999 12:17:46 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Tue, 25 May 1999 12:17:46 -0700 (PDT) From: Message-Id: <199905251917.MAA26802@freefall.freebsd.org> To: oyvindmo@initio.no, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11882: port update: net/ethereal Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port update: net/ethereal State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Tue May 25 12:17:26 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 25 12:33:53 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ns.raditex.se (raditex.thorsen.se [193.14.93.200]) by hub.freebsd.org (Postfix) with ESMTP id 9F14D15A96 for ; Tue, 25 May 1999 12:33:25 -0700 (PDT) (envelope-from kaj@raditex.se) Received: from localhost (dialup76-2-17.swipnet.se [130.244.76.81]) by ns.raditex.se (8.8.8/8.8.8) with ESMTP id VAA07048; Tue, 25 May 1999 21:33:16 +0200 (CEST) (envelope-from kaj@raditex.se) To: Ds22859@aol.com Cc: ports@FreeBSD.ORG Cc: Rasmus Kaj Subject: Re: Problem From: Rasmus Kaj In-Reply-To: Your message of "Tue, 25 May 1999 11:38:47 EDT" <13592cb4.247c1e07@aol.com> References: <13592cb4.247c1e07@aol.com> X-Mailer: Mew version 1.93 on XEmacs 20.4 (Emerald) X-URL: http://www.e.kth.se/~kaj/ X-Phone: +46 (0)8 - 694 92 80 X-Attribution: Kaj X-Face: M9cR~WYav<"fu%MaslX0`43PAYY?uIsM8[#E(0\Xuy9rj>4gE\h3jm.7DD?]R8*^7T\o&vT U@[53Dwkuup4[0@gw#~kyu>`unH?kVj9CJa02(h>Ki\+i=%rn%sDf^KC.!?IHkKjMAbkd\jgmphp^' d|Q;OeXEAhq?ybGqOs1CHb6TJT42'C`Krnk61//AOfXtNjj/t'`5>Vw0QX!dKfOL$.f+S"LIuwR<;I Z0Qnnx(F^F]o@*V%TUtEV'1Z[TkOl^FFV9Z~A[b19%}uP*,huCU Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19990525213524B.kaj@raditex.se> Date: Tue, 25 May 1999 21:35:24 +0200 X-Dispatcher: imput version 980905(IM100) Lines: 21 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "D" == Ds22859 writes: D> Hi I take a class over the internet, and I have a message that D> tells me that Program. EXE. is needed to run the Mime, what can I D> do? That class is wrong. Also, this offtopic for ports@freebsd.org. Anyway; EXE is a runnable program in DOS (or its graphical shell Windows). All correct or near-correct implementations of Mime I have seen run on some kind of Unix (and this list is for a specific kind of Unix, i.e. FreeBSD). So; get rid of DOS and you won't need any .EXE programs ... PS. FreeBSD is not legally a Unix, but who cares ... -- Rasmus Kaj ---------------- rasmus@kaj.a.se - http://www.e.kth.se/~kaj/ \ All science is either physics or stamp collecting. -E. Rutherford \--------------------------------------------- http://www.Raditex.se/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 25 12:38:21 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C712015832; Tue, 25 May 1999 12:38:19 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA28541; Tue, 25 May 1999 12:38:19 -0700 (PDT) (envelope-from billf@FreeBSD.org) Date: Tue, 25 May 1999 12:38:19 -0700 (PDT) From: Message-Id: <199905251938.MAA28541@freefall.freebsd.org> To: billf@FreeBSD.org, freebsd-ports@FreeBSD.org, billf@FreeBSD.org Subject: Re: ports/11882: port update: net/ethereal Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port update: net/ethereal Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: billf Responsible-Changed-When: Tue May 25 12:38:06 PDT 1999 Responsible-Changed-Why: My port, my problem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 25 14:32:44 1999 Delivered-To: freebsd-ports@freebsd.org Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.95.76.54]) by hub.freebsd.org (Postfix) with ESMTP id EDC21156C6 for ; Tue, 25 May 1999 14:32:35 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.9.3/8.9.1) id OAA74293 for freebsd-ports@freebsd.org; Tue, 25 May 1999 14:35:46 -0700 (PDT) (envelope-from sgk) From: Steve Kargl Message-Id: <199905252135.OAA74293@troutmask.apl.washington.edu> Subject: bison versus yacc To: freebsd-ports@freebsd.org Date: Tue, 25 May 1999 14:35:46 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL54 (25)] 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 Porters, I'm upgrading ddd from 3.1.4 to 3.1.5 and have run into a small problem. This port uses USE_CONFIGURE to configure ddd for building, and it finds /usr/bin/bison. This chocks the make of ddd. If I set the YACC environmental variable to /usr/bin/yacc, configure will not probe for bison. The subsequent build with the yacc generated parser works. I've looked through ports/Mk/bsd.port.mk for a USE_YACC variable, but apparently one does not exists. So, at this point we have 4 options: (1) upgrade src/contrib/bison to version 1.27 which should fix the problem; (2) add a USE_YACC and/or USE_BISON variable to ports/Mk/bsd.port.mk; (3) tell the person trying to build ddd to set a YACC environmental variable; or (4) add a DEPENDS=bison so ports/devel/bison gets install and hope that ${PREFIX}/bin occurs before usr/bin in PATH. Thoughts? -- Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 25 14:53:40 1999 Delivered-To: freebsd-ports@freebsd.org Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 0820015B13 for ; Tue, 25 May 1999 14:53:31 -0700 (PDT) (envelope-from cpiazza@home.net) Received: from norn.ca.eu.org (localhost.norn.ca.eu.org [127.0.0.1]) by norn.ca.eu.org (Postfix) with ESMTP id B41D1140B; Tue, 25 May 1999 14:53:22 -0700 (PDT) Content-Length: 1117 Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <199905252135.OAA74293@troutmask.apl.washington.edu> Date: Tue, 25 May 1999 14:53:22 -0700 (PDT) Reply-To: Chris Piazza From: Chris Piazza To: Steve Kargl Subject: RE: bison versus yacc Cc: freebsd-ports@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 25-May-99 Steve Kargl wrote: > Porters, > > I'm upgrading ddd from 3.1.4 to 3.1.5 and have run into a > small problem. This port uses USE_CONFIGURE to configure > ddd for building, and it finds /usr/bin/bison. This > chocks the make of ddd. If I set the YACC environmental > variable to /usr/bin/yacc, configure will not probe for > bison. The subsequent build with the yacc generated > parser works. > > I've looked through ports/Mk/bsd.port.mk for a USE_YACC > variable, but apparently one does not exists. So, at this > point we have 4 options: (1) upgrade src/contrib/bison > to version 1.27 which should fix the problem; (2) add a > USE_YACC and/or USE_BISON variable to ports/Mk/bsd.port.mk; > (3) tell the person trying to build ddd to set a YACC > environmental variable; or (4) add a DEPENDS=bison so > ports/devel/bison gets install and hope that ${PREFIX}/bin > occurs before usr/bin in PATH. > > Thoughts? > Um, set CONFIGURE_ENV= YACC=/usr/bin/yacc in the port Makefile? :-). --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 25 15:14:46 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F079815CB7; Tue, 25 May 1999 15:13:57 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA43149; Tue, 25 May 1999 15:13:57 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Date: Tue, 25 May 1999 15:13:57 -0700 (PDT) From: Message-Id: <199905252213.PAA43149@freefall.freebsd.org> To: cjh@kr.freebsd.org, kuriyama@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11685: new port: korean/linux_locale Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: korean/linux_locale State-Changed-From-To: open->closed State-Changed-By: kuriyama State-Changed-When: Tue May 25 15:13:22 PDT 1999 State-Changed-Why: Committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 25 17: 0:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from biff.nerdpower.net (c13574-001.nerdpower.net [24.108.37.222]) by hub.freebsd.org (Postfix) with SMTP id BF18815895 for ; Tue, 25 May 1999 16:59:38 -0700 (PDT) (envelope-from jeff@nerdpower.com) Received: (qmail 7341 invoked by alias); 27 May 1999 06:23:09 -0000 Received: from unknown (HELO flanders) (24.108.37.21) by biff.nerdpower.net with SMTP; 27 May 1999 06:23:09 -0000 From: "Jeff Lush" To: Cc: Subject: MySQL port problem Date: Tue, 25 May 1999 18:01:03 -0600 Message-ID: <000401bea70a$d8a731a0$15256c18@flanders.nerdpower.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Importance: Normal Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, I am having difficulties installing the mysql-3.22.22 port on my FreeBSD 3.1 system and would like to know who I might contact for some assistance. The port installs no problem; however, when I attempt to start either safe_mysqld or mysql I get an error stating that libstdc++.so.3 cannot be found in /usr/libexec. I have tried both a fresh install of mysql-3.22.22 and upgrading from mysql-3.21.x. As well, In an effort to fix the problem, I have also installed the glibstdc++-2.8.1.1 port and it's dependencies; however, this is not the correct version of libstdc and does not fix the problem. I would like to use a package rather than a source install of mysql due to my inexperience with FreeBSD and Unix in general. Once again, I am using FreeBSD 3.1 stable with the upgrade kit on a PPro 200. If you could point me in the direction of a newsgroup or mailing list dealing with these types of problems I would appreciate it. Thanks for the help, Jeff Lush To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 25 18:30: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E871314A14 for ; Tue, 25 May 1999 18:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA56085; Tue, 25 May 1999 18:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 25 May 1999 18:30:03 -0700 (PDT) Message-Id: <199905260130.SAA56085@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Chris Piazza Subject: RE: ports/11757: update port: gqmpeg-0.5.2 to 0.5.99 Reply-To: Chris Piazza Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11757; it has been noted by GNATS. From: Chris Piazza To: freebsd-gnats-submit@FreeBSD.org, jim@blues.ghis.net Cc: Subject: RE: ports/11757: update port: gqmpeg-0.5.2 to 0.5.99 Date: Tue, 25 May 1999 18:20:45 -0700 (PDT) OK, the program was finalized and released as 0.6.0. Patch included below. Removed -lkvm and the BINGRP/BINMODE stuff -- this is not needed in this version for proper CPU statistics. Reminder: patch-ab was removed. Index: gqmpeg/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/audio/gqmpeg/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- Makefile 1999/05/16 23:34:14 1.13 +++ Makefile 1999/05/26 01:09:15 @@ -1,12 +1,12 @@ # New ports collection makefile for: gqmpeg -# Version required: 0.5.2 +# Version required: 0.6.0 # Date Created: 28 Oct 1998 # Whom: Vanilla Pooh Shu # # $Id: Makefile,v 1.13 1999/05/16 23:34:14 steve Exp $ # -DISTNAME= gqmpeg-0.5.2 +DISTNAME= gqmpeg-0.6.0 CATEGORIES= audio MASTER_SITES= http://gqview.netpedia.net/ \ http://www.geocities.com/SiliconValley/Haven/5235/ @@ -19,9 +19,6 @@ USE_X_PREFIX= yes ALL_TARGET= gqmpeg - -BINGRP= kmem -BINMODE= 2555 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/gqmpeg ${PREFIX}/bin Index: gqmpeg/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/audio/gqmpeg/files/md5,v retrieving revision 1.8 diff -u -r1.8 md5 --- md5 1999/05/16 23:34:32 1.8 +++ md5 1999/05/26 01:09:33 @@ -1 +1 @@ -MD5 (gqmpeg-0.5.2.src.tgz) = 2e1be28d9aaac1af8da6236f656a12c3 +MD5 (gqmpeg-0.6.0.src.tgz) = 0e9f8948aed67b5616924e66f1fac434 Index: gqmpeg/patches/patch-aa =================================================================== RCS file: /cvs/FreeBSD/ports/audio/gqmpeg/patches/patch-aa,v retrieving revision 1.7 diff -u -r1.7 patch-aa --- patch-aa 1999/04/02 03:52:55 1.7 +++ patch-aa 1999/05/26 01:11:52 @@ -1,21 +1,27 @@ ---- Makefile.orig Sat Mar 27 21:38:09 1999 -+++ Makefile Tue Mar 30 01:48:05 1999 -@@ -1,13 +1,11 @@ +--- Makefile.orig Tue May 25 18:10:24 1999 ++++ Makefile Tue May 25 18:11:45 1999 +@@ -1,12 +1,11 @@ -PREFIX=/usr/local -- + -GTK_INCLUDE = `gtk-config --cflags` -GTK_LIB = `gtk-config --libs` +GTK_INCLUDE = `gtk12-config --cflags` +GTK_LIB = `gtk12-config --libs` IMLIB_INCLUDE = `imlib-config --cflags-gdk` IMLIB_LIB = `imlib-config --libs-gdk` + -CFLAGS = $(GTK_INCLUDE) $(IMLIB_INCLUDE) --LDFLAGS = $(GTK_LIB) $(IMLIB_LIB) --CC = gcc -Wall $(CFLAGS) +CFLAGS += $(GTK_INCLUDE) $(IMLIB_INCLUDE) -+LDFLAGS = $(GTK_LIB) $(IMLIB_LIB) -lkvm -+CC += -Wall $(CFLAGS) + LDFLAGS = $(GTK_LIB) $(IMLIB_LIB) + + #The following commented out lines are for replacing the stock defines on +@@ -18,7 +17,7 @@ + #for IRIX + #LDFLAGS = $(GTK_LIB) $(IMLIB_LIB) -laudio + +-CC = gcc -Wall ++CC += -Wall GNOME_PREFIX = `gnome-config --prefix` --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 25 19:52:58 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mail.westbend.net (ns1.westbend.net [209.224.254.131]) by hub.freebsd.org (Postfix) with ESMTP id B576314F7A for ; Tue, 25 May 1999 19:52:52 -0700 (PDT) (envelope-from hetzels@westbend.net) Received: from admin (admin.westbend.net [209.224.254.141]) by mail.westbend.net (8.8.8/8.8.8) with SMTP id VAA22071; Tue, 25 May 1999 21:52:49 -0500 (CDT) (envelope-from hetzels@westbend.net) Message-ID: <015201bea722$d72b0500$8dfee0d1@westbend.net> From: "Scot W. Hetzel" To: "Jeff Lush" Cc: References: <000401bea70a$d8a731a0$15256c18@flanders.nerdpower.net> Subject: Re: MySQL port problem Date: Tue, 25 May 1999 21:52:48 -0500 Organization: West Bend Internet 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.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From: Jeff Lush > The port installs no problem; however, when I attempt to start either > safe_mysqld or mysql I get an error stating that libstdc++.so.3 cannot be > found in /usr/libexec. I have tried both a fresh install of mysql-3.22.22 > and upgrading from mysql-3.21.x. As well, In an effort to fix the problem, I libstdc++.so.3 is only in 4.0-Current. As that library is not on any of my 3.1-STABLE or 3.2-RELEASE systems. You downloaded the wrong mysql package, the package you downloaded is for 4.0-Current. Since your running 3.1-Stable, you need to fetch the package for 3.[1,2]-Release > I would like to use a package rather than a source install of mysql due to > my inexperience with FreeBSD and Unix in general. > Using source is quite easy, just do the following: cd /usr/ports/databases/mysql322 make install This will fetch the mysql source, and optionally the Perl 5 sources. It will then compile the sources and install the files onto your system. > Once again, I am using FreeBSD 3.1 stable with the upgrade kit on a PPro > 200. > > If you could point me in the direction of a newsgroup or mailing list > dealing with these types of problems I would appreciate it. > This is the correct forum for these problems. Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 25 20:30: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8137514D65 for ; Tue, 25 May 1999 20:30:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA65044; Tue, 25 May 1999 20:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 25 May 1999 20:30:03 -0700 (PDT) Message-Id: <199905260330.UAA65044@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: =?iso-2022-jp?B?GyRCQ2YwZhsoQiAbJEI5LEduGyhC?= Subject: Re: ports/11776: Fixed port: gtk-- Reply-To: =?iso-2022-jp?B?GyRCQ2YwZhsoQiAbJEI5LEduGyhC?= Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11776; it has been noted by GNATS. From: =?iso-2022-jp?B?GyRCQ2YwZhsoQiAbJEI5LEduGyhC?= To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/11776: Fixed port: gtk-- Date: Wed, 26 May 1999 12:20:17 +0900 Please ignore the previous send-pr mail and apply this new patch from Yazaki Hiroyuki. And I append both the plain text diff and its uuencoded version because this is sent with the crazy common non-UNIX platform :-) Thank you... Yukihiro Nakai -------------- begin 664 gtk--.diff.gz M'XL(",MF2S< V=T:RTM+F1I9F8 K55M;^(X$/Z<_(H1ZJ<+)@GMM@M:3E": M(K:%5KS<\>&DK$E,\.+84>SL+JKZW\]Y:4E?]G2W7 3"\\S,,QG;\Q#2S090 MFDTA4CN$6B*ED3W!.[*AC)38LVDBA-X+,Q;;#"9X#^XI.!?=,[=[^A'<3J=C M6I;UBL/XDX1%;/LD%8C8!!-NQY?^E7?O3:_F/4,7U5+2T^>Y$2DF^$V?&9:?W+0/C+M R#1);UPLTPCVP2!=*T M9LOI@>8? G5'R[GGK_S[F7<]7O6,/9$E-)H,;KS*'DV7_O!N>CT>+6=/V+/M M#V8C700APO&:$2055C3HZ2#]FF!HQW>JMB)3*.(BUD=ZR/2F?_2,T>*F(N\U M3AY6KGLYF'N/]IKR&PUY#MQPT8+A:Y4O+:NCVT60P M/>T!C/PQ5[=4JM;I8>V/%4FQ$FD!/GL+US!)ZFY=HV RCB<"H_*\2)J_@=3N M$DMR6 T9EO*)0>W\01 0YG&5[LN8$ABE(DOJP"U>$_8$A%\SJ6+"59V'T8A7 M6&>:%P;MVMOY*@YIW3.&&D8,A'[,-%\P-8YT[S8S%@QH3P[!H'NHO]4'!. M@K*?]^"J3OXF"SU3:YS6,UY#570%^\,M96&5[>L;X4N54AYI1!MQ[.,P]*5N M#3,_*+?.M$PK$5(ARO4M9JRK+T[_Y&$X6#R"GI^;43$]$V\^'XR\?'9:E +=[V;XGL0EN^@IM5*H&O):Z&JN0NL^8P[@@M/I.H[^:/VZ M<&I:5P]_)7?M;MLYR)W3=+38-5TG/PKKMR,?S0!'/24#TD<&6E^3YS\ 6.NC M# $G":.!EA/!91/4/B$_80#(YQF^% =;S3T@%&P8CN07V C1"H(W;D;7VOG_ M=3'>P%YD\!US!4I )@G@3(F\'N0:6/;6_"D#P#TCNG&]%\F^N@U:[#65G diff -ruN gtk--.orig/pkg/MESSAGE gtk--/pkg/MESSAGE --- gtk--.orig/pkg/MESSAGE Thu Jan 1 09:00:00 1970 +++ gtk--/pkg/MESSAGE Wed May 26 12:12:20 1999 @@ -0,0 +1,10 @@ +**************************************************************** +* * +* - To compile gtk-- based applications, type * +* eg++ `gtkmm-config --cflags` foo.cc `gtkmm-config --libs` * +* * +* - If you want to use autoconf with gtk--, * +* Please copy gtk--.m4 to /usr/local/share/aclocal * +* by yourself, thanks. * +* * +**************************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 25 21: 1:28 1999 Delivered-To: freebsd-ports@freebsd.org Received: from biff.nerdpower.net (c13574-001.nerdpower.net [24.108.37.222]) by hub.freebsd.org (Postfix) with SMTP id 4C9C215049 for ; Tue, 25 May 1999 21:01:23 -0700 (PDT) (envelope-from jeff@nerdpower.com) Received: (qmail 7688 invoked by alias); 27 May 1999 11:38:22 -0000 Received: from unknown (HELO flanders) (24.108.37.21) by biff.nerdpower.net with SMTP; 27 May 1999 11:38:22 -0000 From: "Jeff Lush" To: "Scot W. Hetzel" Cc: Subject: RE: MySQL port problem Date: Tue, 25 May 1999 22:02:46 -0600 Message-ID: <000001bea72c$9cc35840$15256c18@flanders.nerdpower.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 In-Reply-To: <015201bea722$d72b0500$8dfee0d1@westbend.net> X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Importance: Normal Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org With answers come enlightenment... and more questions! Your explanation about the differences between 3.1-STABLE and 4.0-CURRENT make complete sense (the term DOH! comes to mind...); however, now I have a few more questions... > libstdc++.so.3 is only in 4.0-Current. As that library is not on any of my > 3.1-STABLE or 3.2-RELEASE systems. You downloaded the wrong > mysql package, > the package you downloaded is for 4.0-Current. > > Since your running 3.1-Stable, you need to fetch the package for > 3.[1,2]-Release The latest version shown under 3.1-RELEASE is mysql-3.22.16g. Using sysinstall, is this the only version I can use? > Using source is quite easy, just do the following: > > cd /usr/ports/databases/mysql322 When I try to cd into /usr/ports there is nothing there?!? > make install > > This will fetch the mysql source, and optionally the Perl 5 > sources. It will > then compile the sources and install the files onto your system. I have tried this method also but get the following errors (the mysql322 dir is /usr/local/mysql322): homer# make install "/usr/share/mk/bsd.port.mk", line 2: Could not find /usr/ports/Mk/bsd.port.mk "Makefile", line 44: Malformed conditional (!defined(NATIVE_THREADS) && ${OSVERSION} >= 300000) "Makefile", line 53: if-less elif "Makefile", line 53: Need an operator "Makefile", line 58: if-less elif "Makefile", line 58: Need an operator "Makefile", line 65: if-less endif "Makefile", line 65: Need an operator "/usr/share/mk/bsd.port.mk", line 2: Could not find /usr/ports/Mk/bsd.port.mk make: fatal errors encountered -- cannot continue This error gives me no idea of what the problem might be. Thanks once again for the assistance, Jeff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 25 21:44: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from picnic.mat.net (picnic.mat.net [206.246.122.133]) by hub.freebsd.org (Postfix) with ESMTP id 2E7C615051 for ; Tue, 25 May 1999 21:43:54 -0700 (PDT) (envelope-from chuckr@picnic.mat.net) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.9.3/8.8.5) with ESMTP id AAA34965 for ; Wed, 26 May 1999 00:44:17 -0400 (EDT) Date: Wed, 26 May 1999 00:44:17 -0400 (EDT) From: Chuck Robey To: FreeBSD Ports Team Subject: palm pilot stuff 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 I am finally getting a few things together, now that my semester is over. My new machine is working, the new disks are in, all the hardware that I've bought over the last year is finally working EXCEPT the palm pilot stuff. I think that asking a huge number of palm pilot specific stuff on this list probably would be outside the interests of most who subscribe, even tho it would be strictly interfacing palm pilots to FreeBSD, so ... 1) if you disagree (and you're a committer only here) tell me publicly, I might take this public, OTHERWISE 2) if you like your palm pilot, and want to discuss interfacing it to FreeBSD (helping me and all other FreeBSDers with palm pilots) then please mail me directly at chuckr@picnic.mat.net (the same return address as above) and we'll discuss it offline. I'll cache all replies, and if something useful comes out of it, I'll write it up. Minimum, I want to become a user, not just an owner, of this fine little gadget. ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@picnic.mat.net | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run picnic (FreeBSD-current) (301) 220-2114 | and jaunt (Solaris7). ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue May 25 23:38:18 1999 Delivered-To: freebsd-ports@freebsd.org Received: from campino.informatik.rwth-aachen.de (campino.Informatik.RWTH-Aachen.DE [137.226.116.240]) by hub.freebsd.org (Postfix) with ESMTP id 1D82714CF7 for ; Tue, 25 May 1999 23:38:03 -0700 (PDT) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: from gil.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de [137.226.30.2]) by campino.informatik.rwth-aachen.de (8.9.1a/8.9.1/3) with ESMTP id IAA08637 for ; Wed, 26 May 1999 08:37:59 +0200 (MET DST) Received: (from kuku@localhost) by gil.physik.rwth-aachen.de (8.9.2/8.6.9) id GAA04790 for freebsd-ports@freebsd.org; Wed, 26 May 1999 06:38:01 GMT Date: Wed, 26 May 1999 06:38:01 GMT From: Christoph Kukulies Message-Id: <199905260638.GAA04790@gil.physik.rwth-aachen.de> To: freebsd-ports@freebsd.org Subject: xcdplayer port - 3.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org 3.1 ports woes Is that screwed on my machine only? : duke# make ===> Configuring for xcdplayer-2.2 mv -f Makefile Makefile.bak imake -DUseInstalled -I/usr/X11R6/lib/X11/config make Makefiles "Makefile", line 354: Missing dependency operator make: fatal errors encountered -- cannot continue *** Error code 1 Stop. *** Error code 1 Looks like a gmake is needed where make is being used. And gmake dependencey is not being recognized. (port broken?) OTOH, I installed gmake (had it missing for the moment because after the upgrade my /usr/local is on ccd and not accessible) and gmake isn't take either. So I'm clueless for the moment. -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 0: 6:57 1999 Delivered-To: freebsd-ports@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 003FF14BD3 for ; Wed, 26 May 1999 00:06:54 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (d60-077.leach.ucdavis.edu [169.237.60.77]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id AAA05430; Wed, 26 May 1999 00:06:54 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id HAA22712; Wed, 26 May 1999 07:06:53 GMT (envelope-from obrien) Date: Wed, 26 May 1999 00:06:53 -0700 From: "David O'Brien" To: Steve Kargl Cc: freebsd-ports@freebsd.org Subject: Re: bison versus yacc Message-ID: <19990526000653.A22681@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <199905252135.OAA74293@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <199905252135.OAA74293@troutmask.apl.washington.edu>; from Steve Kargl on Tue, May 25, 1999 at 02:35:46PM -0700 X-Operating-System: FreeBSD 4.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I'm upgrading ddd from 3.1.4 to 3.1.5 and have run into a Already done and committed. > small problem. This port uses USE_CONFIGURE to configure > ddd for building, and it finds /usr/bin/bison. This > chocks the make of ddd. Hum... I didn't have this problem. /usr/bin/bison worked fine for me. Please test 3.1.5 from ports and see if it works for you. > (1) upgrade src/contrib/bison to version 1.27 which should fix the > problem; In progress. I'll probably have it done right after USENIX. -- -- David (obrien@NUXI.com -or- 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 Wed May 26 0: 8: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 55C5614FBB for ; Wed, 26 May 1999 00:08:02 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (d60-077.leach.ucdavis.edu [169.237.60.77]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id AAA05437; Wed, 26 May 1999 00:07:58 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id HAA22741; Wed, 26 May 1999 07:07:58 GMT (envelope-from obrien) Date: Wed, 26 May 1999 00:07:58 -0700 From: "David O'Brien" To: Rasmus Kaj Cc: ports@FreeBSD.ORG Subject: Re: Problem Message-ID: <19990526000758.B22681@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <13592cb4.247c1e07@aol.com> <19990525213524B.kaj@raditex.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <19990525213524B.kaj@raditex.se>; from Rasmus Kaj on Tue, May 25, 1999 at 09:35:24PM +0200 X-Operating-System: FreeBSD 4.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Anyway; EXE is a runnable program in DOS (or its graphical shell > Windows). Also VMS. -- -- David (obrien@NUXI.com -or- 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 Wed May 26 0:11: 2 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AFD7614CF2; Wed, 26 May 1999 00:11:01 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA84871; Wed, 26 May 1999 00:11:01 -0700 (PDT) (envelope-from tg@FreeBSD.org) Date: Wed, 26 May 1999 00:11:01 -0700 (PDT) From: Message-Id: <199905260711.AAA84871@freefall.freebsd.org> To: eischen@vigrid.com, tg@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11887: Allow xmcd to read ~/.Xauthority Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Allow xmcd to read ~/.Xauthority State-Changed-From-To: open->closed State-Changed-By: tg State-Changed-When: Wed May 26 00:10:05 PDT 1999 State-Changed-Why: Committed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 6:10:13 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C9A414A2E for ; Wed, 26 May 1999 06:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA25058; Wed, 26 May 1999 06:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from totem.tihlde.hist.no (totem.tihlde.hist.no [158.38.48.45]) by hub.freebsd.org (Postfix) with ESMTP id 7C47815628 for ; Wed, 26 May 1999 06:06:05 -0700 (PDT) (envelope-from anders@totem.tihlde.hist.no) Received: (from anders@localhost) by totem.tihlde.hist.no (8.9.3/8.9.3) id PAA39980; Wed, 26 May 1999 15:06:01 +0200 (CEST) Message-Id: <199905261306.PAA39980@totem.tihlde.hist.no> Date: Wed, 26 May 1999 15:06:01 +0200 (CEST) From: Anders Nordby Reply-To: Anders Nordby To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11892: new port: graphics/gphoto Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11892 >Category: ports >Synopsis: new port: graphics/gphoto >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 May 26 06:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Anders Nordby >Release: FreeBSD 3.1-STABLE i386 >Organization: >Environment: >Description: New port of gphoto, the universal digital camera picture control tool. gPhoto is still very developmental, but supports quite a lot of cameras and has some useful features. About this port: -It seems it don't work very well with my PhotoSmart camera, though it should work ok with others. Really need feedback on that from users. -Absolute references to /usr/local is several places in the source code. I'll fix this in an update to the port. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # gphoto # gphoto/pkg # gphoto/pkg/PLIST # gphoto/pkg/COMMENT # gphoto/pkg/DESCR # gphoto/patches # gphoto/patches/patch-ab # gphoto/patches/patch-ac # gphoto/patches/patch-af # gphoto/patches/patch-ag # gphoto/patches/patch-aa # gphoto/patches/patch-ai # gphoto/patches/patch-aj # gphoto/patches/patch-aq # gphoto/patches/patch-ak # gphoto/files # gphoto/files/md5 # gphoto/Makefile # echo c - gphoto mkdir -p gphoto > /dev/null 2>&1 echo c - gphoto/pkg mkdir -p gphoto/pkg > /dev/null 2>&1 echo x - gphoto/pkg/PLIST sed 's/^X//' >gphoto/pkg/PLIST << 'END-of-gphoto/pkg/PLIST' Xbin/gphoto Xshare/gphoto/drivers/libgphoto_dir.so Xshare/gphoto/drivers/libgphoto_konica_qm100.so Xshare/gphoto/drivers/libgphoto_casio_qv.so Xshare/gphoto/drivers/libgphoto_philips.so Xshare/gphoto/drivers/libgphoto_fuji.so Xshare/gphoto/drivers/libgphoto_photopc.so Xshare/gphoto/drivers/libgphoto_kodak_dc2x.so Xshare/gphoto/drivers/libgphoto_ricoh300z.so Xshare/gphoto/drivers/libgphoto_sony_dscf1.so Xshare/gphoto/gphoto/CSStheme/CVS/Root Xshare/gphoto/gphoto/CSStheme/CVS/Repository Xshare/gphoto/gphoto/CSStheme/CVS/Entries Xshare/gphoto/gphoto/CSStheme/index_bottom.html Xshare/gphoto/gphoto/CSStheme/index_top.html Xshare/gphoto/gphoto/CSStheme/mwcos Xshare/gphoto/gphoto/CSStheme/picture.html Xshare/gphoto/gphoto/CSStheme/styles.css Xshare/gphoto/gphoto/CSStheme/thumbnail.html Xshare/gphoto/gphoto/CSStheme/vh40.gif Xshare/gphoto/gphoto/Default/CVS/Root Xshare/gphoto/gphoto/Default/CVS/Repository Xshare/gphoto/gphoto/Default/CVS/Entries Xshare/gphoto/gphoto/Default/banner.gif Xshare/gphoto/gphoto/Default/index.gif Xshare/gphoto/gphoto/Default/index_bottom.html Xshare/gphoto/gphoto/Default/index_top.html Xshare/gphoto/gphoto/Default/next.gif Xshare/gphoto/gphoto/Default/picture.html Xshare/gphoto/gphoto/Default/previous.gif Xshare/gphoto/gphoto/Default/thumbnail.html Xshare/gphoto/gphoto/RedNGray/CVS/Root Xshare/gphoto/gphoto/RedNGray/CVS/Repository Xshare/gphoto/gphoto/RedNGray/CVS/Entries Xshare/gphoto/gphoto/RedNGray/backgrnd.gif Xshare/gphoto/gphoto/RedNGray/banner.gif Xshare/gphoto/gphoto/RedNGray/index.gif Xshare/gphoto/gphoto/RedNGray/index_bottom.html Xshare/gphoto/gphoto/RedNGray/index_top.html Xshare/gphoto/gphoto/RedNGray/next.gif Xshare/gphoto/gphoto/RedNGray/picture.html Xshare/gphoto/gphoto/RedNGray/previous.gif Xshare/gphoto/gphoto/RedNGray/thumbnail.html X@dirrm share/gphoto/drivers X@dirrm share/gphoto/gphoto/CSStheme/CVS X@dirrm share/gphoto/gphoto/CSStheme X@dirrm share/gphoto/gphoto/Default/CVS X@dirrm share/gphoto/gphoto/Default X@dirrm share/gphoto/gphoto/RedNGray/CVS X@dirrm share/gphoto/gphoto/RedNGray X@dirrm share/gphoto/gphoto X@dirrm share/gphoto Xdoc/gphoto-0.3/AUTHORS Xdoc/gphoto-0.3/CREDITS Xdoc/gphoto-0.3/README Xdoc/gphoto-0.3/MANUAL Xdoc/gphoto-0.3/FAQ Xdoc/gphoto-0.3/NEWS X@dirrm doc/gphoto-0.3 END-of-gphoto/pkg/PLIST echo x - gphoto/pkg/COMMENT sed 's/^X//' >gphoto/pkg/COMMENT << 'END-of-gphoto/pkg/COMMENT' XA universal digital camera picture control tool. END-of-gphoto/pkg/COMMENT echo x - gphoto/pkg/DESCR sed 's/^X//' >gphoto/pkg/DESCR << 'END-of-gphoto/pkg/DESCR' XgPhoto is an universal, free GTK+ application that will allow Xdownloading, saving, and manipulation of images from several Xdifferent digital camera models, or from the local harddrive. X XgPhoto has a basic command line interface, which is handy, Xif you want to set up a web camera, and use gphoto in a Xscript, e.g. with Perl/PHP. X XgPhoto sports a new HTML engine, that let's you create your Xgallery "themes" (HTML with special tags), and publish images Xto the web. A directory browse mode has also been implemented. X XgPhoto supports a wide array of digital camera models. Visit Xhttp://www.gphoto.org/cameras.php3 for an updated list. END-of-gphoto/pkg/DESCR echo c - gphoto/patches mkdir -p gphoto/patches > /dev/null 2>&1 echo x - gphoto/patches/patch-ab sed 's/^X//' >gphoto/patches/patch-ab << 'END-of-gphoto/patches/patch-ab' X--- src/Makefile.orig Wed May 26 07:16:36 1999 X+++ src/Makefile Wed May 26 07:21:21 1999 X@@ -52,10 +52,10 @@ X X CARGS = -g -D_GNU_SOURCE -Wall -m486 -DDOCDIR="\"$(DOCDIR)\"" X X-GTK_CFLAGS = $(shell gtk-config --cflags) X-GTK_LIBS = $(shell gtk-config --libs) X+GTK_CFLAGS = `gtk12-config --cflags` X+GTK_LIBS = `gtk12-config --libs` X X-INCDIR = $(GTK_CFLAGS) -I./icons/ X+INCDIR = $(GTK_CFLAGS) -I./icons/ -I${PREFIX}/include X X CAMLINKDIR = -L../konica \ X -L../philips \ X@@ -136,42 +136,42 @@ X rm -rf $(DOCDIR)/gphoto-0.3/ X X ../ricoh_300/libgphoto_ricoh300z.so: X- make -C ../ricoh_300 CFLAGS="$(CARGS) $(INCDIR)" libgphoto_ricoh300z.so X+ ${MAKE} -C ../ricoh_300 CFLAGS="$(CARGS) $(INCDIR)" libgphoto_ricoh300z.so X X ../kodak/libgphoto_kodak_dc2x.so: X- make -C ../kodak CFLAGS="$(CARGS) $(INCDIR)" libgphoto_kodak_dc2x.so X+ ${MAKE} -C ../kodak CFLAGS="$(CARGS) $(INCDIR)" libgphoto_kodak_dc2x.so X X ../photopc/libgphoto_photopc.so: X- make -C ../photopc CFLAGS="$(CARGS) $(INCDIR)" libgphoto_photopc.so X+ ${MAKE} -C ../photopc CFLAGS="$(CARGS) $(INCDIR)" libgphoto_photopc.so X X ../fuji/libgphoto_fuji.so: X- make -C ../fuji CFLAGS="$(CARGS) $(INCDIR)" libgphoto_fuji.so X+ ${MAKE} -C ../fuji CFLAGS="$(CARGS) $(INCDIR)" libgphoto_fuji.so X X ../konica/libgphoto_konica_qm100.so: X- make -C ../konica CFLAGS="$(CARGS) $(INCDIR)" libgphoto_konica_qm100.so X+ ${MAKE} -C ../konica CFLAGS="$(CARGS) $(INCDIR)" libgphoto_konica_qm100.so X X ../casio/libgphoto_casio_qv.so: X- make -C ../casio CFLAGS="$(CARGS) $(INCDIR)" libgphoto_casio_qv.so X+ ${MAKE} -C ../casio CFLAGS="$(CARGS) $(INCDIR)" libgphoto_casio_qv.so X X ../philips/libgphoto_philips.so: X- make -C ../philips CFLAGS="$(CARGS) $(INCDIR)" libgphoto_philips.so X+ ${MAKE} -C ../philips CFLAGS="$(CARGS) $(INCDIR)" libgphoto_philips.so X X ../sony_dscf1/libgphoto_sony_dscf1.so: X- make -C ../sony_dscf1 CFLAGS="$(CARGS) $(INCDIR)" libgphoto_sony_dscf1.so X+ ${MAKE} -C ../sony_dscf1 CFLAGS="$(CARGS) $(INCDIR)" libgphoto_sony_dscf1.so X X ../gphoto_dir/libgphoto_dir.so: X- make -C ../gphoto_dir CFLAGS="$(CARGS) $(INCDIR)" libgphoto_dir.so X+ ${MAKE} -C ../gphoto_dir CFLAGS="$(CARGS) $(INCDIR)" libgphoto_dir.so X X dist-clean: X- make -C ../photopc clean X- make -C ../ricoh_300 clean X- make -C ../kodak clean X- make -C ../fuji clean X- make -C ../philips clean X- make -C ../konica clean X- make -C ../casio clean X- make -C ../sony_dscf1 clean X- make -C ../gphoto_dir clean X+ ${MAKE} -C ../photopc clean X+ ${MAKE} -C ../ricoh_300 clean X+ ${MAKE} -C ../kodak clean X+ ${MAKE} -C ../fuji clean X+ ${MAKE} -C ../philips clean X+ ${MAKE} -C ../konica clean X+ ${MAKE} -C ../casio clean X+ ${MAKE} -C ../sony_dscf1 clean X+ ${MAKE} -C ../gphoto_dir clean X rm -f *.o gphoto core X X distclean: dist-clean END-of-gphoto/patches/patch-ab echo x - gphoto/patches/patch-ac sed 's/^X//' >gphoto/patches/patch-ac << 'END-of-gphoto/patches/patch-ac' X--- konica/Makefile.orig Wed May 26 04:14:24 1999 X+++ konica/Makefile Wed May 26 04:15:14 1999 X@@ -1,4 +1,4 @@ X-CFLAGS = -g -Wall -I/usr/lib/glib/include X+CFLAGS = -g -Wall -I/usr/local/include/glib12 X X OBJS = \ X qm100.o \ END-of-gphoto/patches/patch-ac echo x - gphoto/patches/patch-af sed 's/^X//' >gphoto/patches/patch-af << 'END-of-gphoto/patches/patch-af' X--- casio/sdComm.c.orig Wed May 26 07:05:31 1999 X+++ casio/sdComm.c Wed May 26 07:06:00 1999 X@@ -115,7 +115,7 @@ X return(SDC_SUCCESS); /* Not technically a failure */ X } X X- info->fd = open(info->devName, O_RDWR | O_SYNC /* | O_NDELAY */); X+ info->fd = open(info->devName, O_RDWR | O_FSYNC /* | O_NDELAY */); X if (info->fd < 0) { X print_error(CANT_OPEN_DEVICE, info->devName); X END-of-gphoto/patches/patch-af echo x - gphoto/patches/patch-ag sed 's/^X//' >gphoto/patches/patch-ag << 'END-of-gphoto/patches/patch-ag' X--- konica/setSpeed.c.orig Wed May 26 07:10:52 1999 X+++ konica/setSpeed.c Wed May 26 07:11:27 1999 X@@ -17,10 +17,9 @@ X X newt.c_cflag |= CS8; X newt.c_iflag &= ~(IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK|ISTRIP|INLCR); X- newt.c_iflag &= ~(IGNCR|ICRNL|IXON|IXOFF|IUCLC|IXANY|IMAXBEL); X+ newt.c_iflag &= ~(IGNCR|ICRNL|IXON|IXOFF|IXANY|IMAXBEL); X newt.c_oflag &= ~(OPOST); X newt.c_lflag &= ~(ISIG|ICANON); X- newt.c_cflag &= ~(XCASE); X newt.c_cc[VMIN] = 255; X newt.c_cc[VTIME] = 5; X END-of-gphoto/patches/patch-ag echo x - gphoto/patches/patch-aa sed 's/^X//' >gphoto/patches/patch-aa << 'END-of-gphoto/patches/patch-aa' X--- Makefile.orig Wed May 26 07:23:33 1999 X+++ Makefile Wed May 26 07:24:04 1999 X@@ -12,31 +12,31 @@ X # X X gphoto: X- make -C src X+ ${MAKE} -C src X X clean: X- make -C src clean X+ ${MAKE} -C src clean X X cleanall: X- make -C gphoto_dir clean X- make -C photopc clean X- make -C fuji clean X- make -C kodak clean X- make -C konica clean X- make -C philips clean X- make -C ricoh_300 clean X- make -C sony_dscf1 clean X- make -C casio clean X- make -C src clean X+ ${MAKE} -C gphoto_dir clean X+ ${MAKE} -C photopc clean X+ ${MAKE} -C fuji clean X+ ${MAKE} -C kodak clean X+ ${MAKE} -C konica clean X+ ${MAKE} -C philips clean X+ ${MAKE} -C ricoh_300 clean X+ ${MAKE} -C sony_dscf1 clean X+ ${MAKE} -C casio clean X+ ${MAKE} -C src clean X X dist-clean: X- make -C src dist-clean X+ ${MAKE} -C src dist-clean X X distclean: dist-clean X X install: X- make -C src install X+ ${MAKE} -C src install X X uninstall: X- make -C src uninstall X+ ${MAKE} -C src uninstall X END-of-gphoto/patches/patch-aa echo x - gphoto/patches/patch-ai sed 's/^X//' >gphoto/patches/patch-ai << 'END-of-gphoto/patches/patch-ai' X--- src/callbacks.c.orig Wed May 26 08:12:05 1999 X+++ src/callbacks.c Wed May 26 08:15:40 1999 X@@ -331,7 +331,9 @@ X X #ifdef linux X if (strncmp("/dev/ttyS", serial_port, 9) == 0) { X-#elif defined(__FreeBSD__) || defined(__NetBSD__) X+#elif defined(__FreeBSD__) X+ if (strncmp("/dev/ttyd0", serial_port, 9) == 0) { X+#elif defined(__NetBSD__) X if (strncmp("/dev/tty0", serial_port, 9) == 0) { X #else X if (strncmp("/dev/tty0", serial_port, 9) == 0) { X@@ -418,7 +420,10 @@ X #ifdef linux X fprintf(conf, "/dev/ttyS0\n"); X sprintf(serial_port, "/dev/ttyS0"); X-#elif defined(__FreeBSD__) || defined(__NetBSD__) X+#elif defined(__FreeBSD__) X+ fprintf(conf, "/dev/ttyd0\n"); X+ sprintf(serial_port, "/dev/ttyd0"); X+#elif defined(__NetBSD__) X fprintf(conf, "/dev/tty00\n"); X sprintf(serial_port, "/dev/tty00"); X #endif X@@ -428,7 +433,10 @@ X #ifdef linux X fprintf(conf, "/dev/ttyS1\n"); X sprintf(serial_port, "/dev/ttyS1"); X-#elif defined(__FreeBSD__) || defined(__NetBSD__) X+#elif defined(__FreeBSD__) X+ fprintf(conf, "/dev/ttyd1\n"); X+ sprintf(serial_port, "/dev/ttyd1"); X+#elif defined(__NetBSD__) X fprintf(conf, "/dev/tty01\n"); X sprintf(serial_port, "/dev/tty01"); X #endif X@@ -437,7 +445,10 @@ X #ifdef linux X fprintf(conf, "/dev/ttyS2\n"); X sprintf(serial_port, "/dev/ttyS2"); X-#elif defined(__FreeBSD__) || defined(__NetBSD__) X+#elif defined(__FreeBSD__) X+ fprintf(conf, "/dev/ttyd2\n"); X+ sprintf(serial_port, "/dev/ttyd2"); X+#elif defined(__NetBSD__) X fprintf(conf, "/dev/tty02\n"); X sprintf(serial_port, "/dev/tty02"); X #endif X@@ -446,7 +457,10 @@ X #ifdef linux X fprintf(conf, "/dev/ttyS3\n"); X sprintf(serial_port, "/dev/ttyS3"); X-#elif defined(__FreeBSD__) || defined(__NetBSD__) X+#elif defined(__FreeBSD__) X+ fprintf(conf, "/dev/ttyd3\n"); X+ sprintf(serial_port, "/dev/ttyd3"); X+#elif defined(__NetBSD__) X fprintf(conf, "/dev/tty03\n"); X sprintf(serial_port, "/dev/tty03"); X #endif END-of-gphoto/patches/patch-ai echo x - gphoto/patches/patch-aj sed 's/^X//' >gphoto/patches/patch-aj << 'END-of-gphoto/patches/patch-aj' X--- kodak/main.c.orig Wed May 26 08:43:47 1999 X+++ kodak/main.c Wed May 26 08:43:59 1999 X@@ -72,7 +72,7 @@ X X #ifndef DC20CTRL_TTY X #ifdef __FreeBSD__ X-#define DC20CTRL_TTY "/dev/cuaa0" X+#define DC20CTRL_TTY "/dev/ttyd0" X #else X #define DC20CTRL_TTY "/dev/ttyS0" X #endif /* __FreeBSD__ */ END-of-gphoto/patches/patch-aj echo x - gphoto/patches/patch-aq sed 's/^X//' >gphoto/patches/patch-aq << 'END-of-gphoto/patches/patch-aq' X--- photopc/Makefile.orig Wed May 26 08:46:37 1999 X+++ photopc/Makefile Wed May 26 08:46:56 1999 X@@ -117,14 +117,14 @@ X # used togrther with HAVE_PRIOCTL. X X # This one is good for Linux: X-OPTS = -DUNIX -DINT16=short -DHAVE_CFMAKERAW -DHAVE_STRFTIME \ X- -DHAVE_PRIOCTL -DHAVE_NANOSLEEP X+#OPTS = -DUNIX -DINT16=short -DHAVE_CFMAKERAW -DHAVE_STRFTIME \ X+# -DHAVE_PRIOCTL -DHAVE_NANOSLEEP X X # This one is good for Solaris 2.x: X #OPTS = -DUNIX -DINT16=short -DHAVE_SELECT_H -DHAVE_STRFTIME X X # This one is good for BSDi 3.x, NetBSD and FreeBSD X-#OPTS = -DUNIX -DINT16=short -DHAVE_SELECT_H -DHAVE_STRFTIME -DHAVE_CFMAKERAW X+OPTS = -DUNIX -DINT16=short -DHAVE_SELECT_H -DHAVE_STRFTIME -DHAVE_CFMAKERAW X X X BINDEST = /usr/local/bin END-of-gphoto/patches/patch-aq echo x - gphoto/patches/patch-ak sed 's/^X//' >gphoto/patches/patch-ak << 'END-of-gphoto/patches/patch-ak' X--- sony_dscf1/common.h.orig Wed May 26 08:48:18 1999 X+++ sony_dscf1/common.h Wed May 26 08:48:43 1999 X@@ -6,7 +6,7 @@ X /* SunOS 4.1.4 "/dev/ttya" */ X /* Solaris2.3 "/dev/ttya" */ X /* BSD/OS 2.0 "/dev/tty01" */ X-/* FreeBSD "/dev/cuaa0" */ X+/* FreeBSD "/dev/ttyd0" */ X /* Windows NT "COM2" */ X /* NEXTSTEP "/dev/ttya" */ X /* IRIX "/dev/ttyf1" */ END-of-gphoto/patches/patch-ak echo c - gphoto/files mkdir -p gphoto/files > /dev/null 2>&1 echo x - gphoto/files/md5 sed 's/^X//' >gphoto/files/md5 << 'END-of-gphoto/files/md5' XMD5 (gphoto-19990511.tgz) = 3f38ead1d50bb39201ac84d8af8b5028 END-of-gphoto/files/md5 echo x - gphoto/Makefile sed 's/^X//' >gphoto/Makefile << 'END-of-gphoto/Makefile' X# New ports collection makefile for: gphoto X# Version required: gphoto-19990511 X# Date created: 26 May 1999 X# Whom: Anders Nordby X# X# $Id$ X# X XDISTNAME= gphoto-19990511 XCATEGORIES= graphics XMASTER_SITES= ftp://ftp.gphoto.org/projects/gphoto/pub/snap/ \ X http://www.freenix.no/~anders/ XEXTRACT_SUFX= .tgz X XMAINTAINER= anders@fix.no X XLIB_DEPENDS= gtk12.1:${PORTSDIR}/x11-toolkits/gtk12 \ X gdk_imlib:${PORTSDIR}/graphics/imlib XRUN_DEPENDS= convert:${PORTSDIR}/graphics/ImageMagick X XUSE_GMAKE= yes X XMAN1= gphoto.1 X XALL_TARGET= X X.include END-of-gphoto/Makefile exit >Release-Note: >Audit-Trail: >Unformatted: <[ non-critical | serious | critical ] (one line)> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 6:20: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D3F114E6A for ; Wed, 26 May 1999 06:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA25931; Wed, 26 May 1999 06:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from totem.tihlde.hist.no (totem.tihlde.hist.no [158.38.48.45]) by hub.freebsd.org (Postfix) with ESMTP id 6AA5E14DEA for ; Wed, 26 May 1999 06:19:29 -0700 (PDT) (envelope-from anders@totem.tihlde.hist.no) Received: (from anders@localhost) by totem.tihlde.hist.no (8.9.3/8.9.3) id PAA43629; Wed, 26 May 1999 15:19:29 +0200 (CEST) Message-Id: <199905261319.PAA43629@totem.tihlde.hist.no> Date: Wed, 26 May 1999 15:19:29 +0200 (CEST) From: Anders Nordby Reply-To: Anders Nordby To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11893: new port: www/thttpd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11893 >Category: ports >Synopsis: new port: www/thttpd >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 May 26 06:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Anders Nordby >Release: FreeBSD 3.1-STABLE i386 >Organization: >Environment: >Description: This is a new port of this tiny/turbo/throttling HTTP server. Some times Apache just is too much. :-) >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: # # thttpd # thttpd/Makefile # thttpd/pkg # thttpd/pkg/COMMENT # thttpd/pkg/DESCR # thttpd/pkg/PLIST # thttpd/files # thttpd/files/md5 # echo c - thttpd mkdir -p thttpd > /dev/null 2>&1 echo x - thttpd/Makefile sed 's/^X//' >thttpd/Makefile << 'END-of-thttpd/Makefile' X# New ports collection makefile for: thttpd X# Version required: thttpd-2.04 X# Date created: 24 May 1999 X# Whom: Anders Nordby X# X# $Id$ X# X XDISTNAME= thttpd-2.04 XCATEGORIES= www XMASTER_SITES= http://www.acme.com/software/thttpd/ \ X http://www.freenix.no/~anders/ XEXTRACT_SUFX= .tar.Z X XMAINTAINER= anders@fix.no X XNO_PACKAGE= "Group needs to be created for users to have their own web dirs" X XGNU_CONFIGURE= yes X XMAN1= makeweb.1 htpasswd.1 XMAN8= thttpd.8 nph-redirect.8 ssi.8 syslogtocern.8 X Xdo-install: X @${INSTALL_PROGRAM} ${WRKSRC}/thttpd ${PREFIX}/sbin/ X @${INSTALL_MAN} ${WRKSRC}/thttpd.8 ${PREFIX}/man/man8 X @${INSTALL} -d -o root -g wheel -m 0775 ${PREFIX}/www X @${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/www/cgi-bin X @${INSTALL_PROGRAM} ${WRKSRC}/cgi-src/nph-redirect ${PREFIX}/www/cgi-bin/ X @${INSTALL_PROGRAM} ${WRKSRC}/cgi-src/ssi ${PREFIX}/www/cgi-bin/ X @${INSTALL_PROGRAM} ${WRKSRC}/cgi-src/phf ${PREFIX}/www/cgi-bin/ X @${INSTALL_MAN} ${WRKSRC}/cgi-src/nph-redirect.8 ${PREFIX}/man/man8 X @${INSTALL_MAN} ${WRKSRC}/cgi-src/ssi.8 ${PREFIX}/man/man8 X @${INSTALL_PROGRAM} ${WRKSRC}/extras/makeweb ${PREFIX}/bin/ X @${INSTALL} -c -m 755 -o root -g wheel ${WRKSRC}/extras/syslogtocern ${PREFIX}/bin/ X @${INSTALL_PROGRAM} ${WRKSRC}/extras/htpasswd ${PREFIX}/bin/ X @${INSTALL_MAN} ${WRKSRC}/extras/makeweb.1 ${PREFIX}/man/man1 X @${INSTALL_MAN} ${WRKSRC}/extras/htpasswd.1 ${PREFIX}/man/man1 X @${INSTALL_MAN} ${WRKSRC}/extras/syslogtocern.8 ${PREFIX}/man/man8 X Xpost-install: message X Xmessage: X @${ECHO} "=====================================================================" X @${ECHO} "" X @${ECHO} "If you want users to be able to create their own web subdirectories" X @${ECHO} "off of the main web directory, you need to:" X @${ECHO} "" X @${ECHO} "a) add a group for www admins" X @${ECHO} "b) chgrp yourgroup ${PREFIX}/bin/makeweb ${PREFIX}/www" X @${ECHO} "c) chmod 2755 ${PREFIX}/bin/makeweb" X @${ECHO} "d) tell them about makeweb(1)" X @${ECHO} "" X @${ECHO} "=====================================================================" X X.include END-of-thttpd/Makefile echo c - thttpd/pkg mkdir -p thttpd/pkg > /dev/null 2>&1 echo x - thttpd/pkg/COMMENT sed 's/^X//' >thttpd/pkg/COMMENT << 'END-of-thttpd/pkg/COMMENT' XTiny/turbo/throttling HTTP server. END-of-thttpd/pkg/COMMENT echo x - thttpd/pkg/DESCR sed 's/^X//' >thttpd/pkg/DESCR << 'END-of-thttpd/pkg/DESCR' X thttpd - tiny/turbo/throttling HTTP server X Xthttpd is a simple, small, portable, fast, and secure HTTP server. X XSimple: It handles only the minimum necessary to implement HTTP/1.1. X XSmall: See the size comparison chart at Xhttp://www.acme.com/software/thttpd/notes.html#sizes. It also has a Xvery small run-time size, since it does not fork and is very careful about Xmemory allocation. X XPortable: It compiles cleanly on SunOS 4.1.x, Solaris 2.x, BSD/OS 2.x, XLinux 1.2.x, and OSF/1 (on a 64-bit Alpha). X XFast: In typical use it's about as fast as the best full-featured servers X(Apache, NCSA, Netscape). Under extreme load it's much faster. X XSecure: It goes to great lengths to protect the web server machine Xagainst attacks and breakins from other sites. X XIt also has one extremely useful feature (URL-traffic-based throttling) that Xno other server currently has. X XWWW: http://www.acme.com/software/thttpd/ END-of-thttpd/pkg/DESCR echo x - thttpd/pkg/PLIST sed 's/^X//' >thttpd/pkg/PLIST << 'END-of-thttpd/pkg/PLIST' Xsbin/thttpd Xwww/cgi-bin/nph-redirect Xwww/cgi-bin/ssi Xwww/cgi-bin/phf Xbin/htpasswd Xbin/syslogtocern Xbin/makeweb X@dirrm www/cgi-bin X@dirrm www END-of-thttpd/pkg/PLIST echo c - thttpd/files mkdir -p thttpd/files > /dev/null 2>&1 echo x - thttpd/files/md5 sed 's/^X//' >thttpd/files/md5 << 'END-of-thttpd/files/md5' XMD5 (thttpd-2.04.tar.Z) = df4d68964ebe8d2d1b135db9b463b841 END-of-thttpd/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 May 26 6:36: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from POSTAL.CSELT.STET.IT (postal.cselt.it [163.162.4.5]) by hub.freebsd.org (Postfix) with ESMTP id 0E91E14C4F for ; Wed, 26 May 1999 06:35:57 -0700 (PDT) (envelope-from Fabrizio.Invernizzi@CSELT.IT) Received: from satchmo (satchmo.cselt.stet.it) by POSTAL.CSELT.STET.IT (PMDF V4.2-15 #4385) id <01JBNPGD2W68004QFZ@POSTAL.CSELT.STET.IT>; Wed, 26 May 1999 15:35:51 MET Date: Wed, 26 May 1999 15:35:22 +0200 (MET DST) From: Fabrizio Invernizzi Subject: icewm configuration To: ports@FreeBSD.ORG Message-id: X-Envelope-to: ports@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 Hi Can someone give me some pointer to some documentation about howto configure icewm? thanks Fabrizio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 6:40: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E81E152F2 for ; Wed, 26 May 1999 06:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA27748; Wed, 26 May 1999 06:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sprite.netlab.is.tsukuba.ac.jp (sprite.netlab.is.tsukuba.ac.jp [130.158.85.10]) by hub.freebsd.org (Postfix) with SMTP id 649DB14C4F for ; Wed, 26 May 1999 06:30:36 -0700 (PDT) (envelope-from one@netlab.is.tsukuba.ac.jp) Received: (qmail 63549 invoked by uid 2402); 26 May 1999 13:30:16 -0000 Message-Id: <19990526133016.63548.qmail@sprite.netlab.is.tsukuba.ac.jp> Date: 26 May 1999 22:30:16 +0900 From: one@netlab.is.tsukuba.ac.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11894: Port update: graphics/tgif-nls to 4.1.14 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11894 >Category: ports >Synopsis: Port update: graphics/tgif-nls to 4.1.14 >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 May 26 06:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Hajime Tanno >Release: FreeBSD 3.1-RELEASE i386 >Organization: Computer Networks Lab., Univ. of Tsukuba >Environment: FreeBSD 3.1-RELEASE i386 >Description: update port graphics/tgif-nls. based Tgif's version from 4.1.8 to 4.1.14 >How-To-Repeat: >Fix: Here's a patch to the port. diff -urN tgif-nls/Makefile tgif-nls.new/Makefile --- tgif-nls/Makefile Wed May 26 02:15:59 1999 +++ tgif-nls.new/Makefile Wed May 26 02:32:36 1999 @@ -6,8 +6,8 @@ # $Id: Makefile,v 1.2 1999/05/06 09:34:40 taoka Exp $ # -DISTNAME= tgif-4.1.8 -PKGNAME= tgif-nls-4.1.8 +DISTNAME= tgif-4.1.14 +PKGNAME= tgif-nls-4.1.14 CATEGORIES= graphics MASTER_SITES= ftp://bourbon.cs.umd.edu/pub/tgif/ \ ftp://ftp.cs.ucla.edu/pub/tgif/ @@ -15,33 +15,28 @@ MAINTAINER= one@netlab.is.tsukuba.ac.jp LIB_DEPENDS= intl.1:${PORTSDIR}/devel/gettext -RUN_DEPENDS= giftopnm:${PORTSDIR}/graphics/netpbm \ - pnmtotiff:${PORTSDIR}/graphics/netpbm \ - ppmtoxpm:${PORTSDIR}/graphics/netpbm \ - ppmtogif:${PORTSDIR}/graphics/netpbm \ - xbmtopbm:${PORTSDIR}/graphics/netpbm \ - xpmtoppm:${PORTSDIR}/graphics/netpbm +RUN_DEPENDS= giftopnm:${PORTSDIR}/graphics/netpbm USE_IMAKE= yes MAN1= tgif.1 post-extract: @cd ${WRKSRC}; ${RM} -f Tgif.tmpl; \ - ${SED} -e 's#/usr/share/locale#${PREFIX}/share/locale#' \ + ${SED} -e "s#/usr/share/locale#${PREFIX}/share/locale#" \ Tgif.tmpl-freebsd > Tgif.tmpl; \ ${ECHO} "EXTRA_INCLUDES += -I${LOCALBASE}/include" \ >> Tgif.tmpl; \ ${ECHO} "EXTRA_LIBRARIES += -L${LOCALBASE}/lib -lintl" \ >> Tgif.tmpl; \ ${MV} po/Po.tmpl po/Po.tmpl.orig; \ - ${SED} -e 's#/usr/share/locale#${PREFIX}/share/locale#' \ + ${SED} -e "s#/usr/share/locale#${PREFIX}/share/locale#" \ po/Po.tmpl.orig > po/Po.tmpl; \ post-patch: @cd ${WRKSRC}; \ ${MV} tgif.Xdefaults tgif.Xdefaults.org; \ - ${SED} -e 's#/usr/local#${PREFIX}#' \ - -e 's#/usr/share/lib#${PREFIX}/share/locale#' \ + ${SED} -e "s#/usr/local#${PREFIX}#" \ + -e "s#/usr/share/lib#${PREFIX}/share/locale#" \ tgif.Xdefaults.org > tgif.Xdefaults post-install: diff -urN tgif-nls/files/md5 tgif-nls.new/files/md5 --- tgif-nls/files/md5 Wed May 26 02:15:59 1999 +++ tgif-nls.new/files/md5 Wed May 26 01:32:43 1999 @@ -1 +1 @@ -MD5 (tgif-4.1.8.tar.gz) = 63cce3cdd6c53d45bef8328ce7f7c959 +MD5 (tgif-4.1.14.tar.gz) = aff6c3dbb7d854bd69409ffc403c6b15 diff -urN tgif-nls/patches/patch-aa tgif-nls.new/patches/patch-aa --- tgif-nls/patches/patch-aa Wed May 26 02:15:59 1999 +++ tgif-nls.new/patches/patch-aa Wed May 26 01:21:16 1999 @@ -1,11 +1,11 @@ ---- tgif.man.orig Mon Mar 22 11:54:24 1999 -+++ tgif.man Tue Apr 6 03:30:32 1999 +--- tgif.man.orig Wed May 26 01:19:41 1999 ++++ tgif.man Wed May 26 01:20:08 1999 @@ -8,7 +8,7 @@ .\" .\" .\" --.TH tgif n "Version 4.1 Patchlevel 5 and Above" "Tgif" -+.TH tgif 1L "Version 4.1 Patchlevel 5 and Above" "Tgif" +-.TH tgif n "Version 4.1 Patchlevel 10 and Above" "Tgif" ++.TH tgif 1L "Version 4.1 Patchlevel 10 and Above" "Tgif" .\" .SH NAME .\" diff -urN tgif-nls/patches/patch-ab tgif-nls.new/patches/patch-ab --- tgif-nls/patches/patch-ab Wed May 26 02:15:59 1999 +++ tgif-nls.new/patches/patch-ab Wed May 26 01:40:37 1999 @@ -1,5 +1,5 @@ ---- Tgif.tmpl.orig Sun May 2 18:21:54 1999 -+++ Tgif.tmpl Sun May 2 18:24:06 1999 +--- Tgif.tmpl.orig Wed May 26 01:34:43 1999 ++++ Tgif.tmpl Wed May 26 01:39:52 1999 @@ -41,6 +41,15 @@ XIMPDEFINES = #endif diff -urN tgif-nls/patches/patch-ac tgif-nls.new/patches/patch-ac --- tgif-nls/patches/patch-ac Wed May 26 02:15:59 1999 +++ tgif-nls.new/patches/patch-ac Wed May 26 01:28:01 1999 @@ -1,6 +1,6 @@ ---- Imakefile.orig Wed Apr 28 01:31:33 1999 -+++ Imakefile Wed Apr 28 01:34:45 1999 -@@ -265,7 +265,7 @@ +--- Imakefile.orig Wed May 26 01:21:45 1999 ++++ Imakefile Wed May 26 01:22:33 1999 +@@ -273,7 +273,7 @@ */ MakeDirectories(install,$(TGIFDIR)) diff -urN tgif-nls/patches/patch-ad tgif-nls.new/patches/patch-ad --- tgif-nls/patches/patch-ad Wed May 26 02:15:59 1999 +++ tgif-nls.new/patches/patch-ad Wed May 26 01:28:04 1999 @@ -1,8 +1,8 @@ ---- tgif.Xdefaults.orig Mon May 3 00:52:08 1999 -+++ tgif.Xdefaults Mon May 3 00:53:55 1999 +--- tgif.Xdefaults.orig Wed May 26 01:25:03 1999 ++++ tgif.Xdefaults Wed May 26 01:27:33 1999 @@ -8,12 +8,12 @@ ! - ! @(#)$Header: /home/ncvs/ports/graphics/tgif-nls/patches/patch-ad,v 1.1.1.1 1999/05/03 04:24:18 steve Exp $ + ! @(#)$Header: /mm/src/tgif/v4/RCS/tgif.Xdefaults,v 4.18 1999/05/17 15:57:57 william Exp $ ! -Tgif.Geometry: 640x512-40+20 -Tgif.IconGeometry: -224+82 diff -urN tgif-nls/pkg/PLIST tgif-nls.new/pkg/PLIST --- tgif-nls/pkg/PLIST Wed May 26 02:15:59 1999 +++ tgif-nls.new/pkg/PLIST Wed May 26 01:42:12 1999 @@ -1,6 +1,9 @@ bin/tgif lib/X11/app-defaults/Tgif lib/X11/ja_JP.EUC/app-defaults/Tgif +lib/X11/tgif/eq4-2x.sym +lib/X11/tgif/eq4-ps2epsi.sym +lib/X11/tgif/eq4.sym lib/X11/tgif/tgificon.eps lib/X11/tgif/tgificon.obj lib/X11/tgif/tgificon.xbm >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 May 26 7: 9:33 1999 Delivered-To: freebsd-ports@freebsd.org Received: from neutron.cichlids.com (as10-035.rp-plus.de [149.221.236.99]) by hub.freebsd.org (Postfix) with ESMTP id C92DE14E4C for ; Wed, 26 May 1999 07:09:22 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (8.9.3/8.9.3) with ESMTP id QAA11367; Wed, 26 May 1999 16:12:18 +0200 (CEST) (envelope-from alex@cichlids.com) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id QAA01296; Wed, 26 May 1999 16:02:22 +0200 (CEST) (envelope-from alex) From: Alexander Langer Date: Wed, 26 May 1999 16:02:22 +0200 To: Fabrizio Invernizzi Cc: ports@FreeBSD.ORG Subject: Re: icewm configuration Message-ID: <19990526160222.A1287@cichlids.cichlids.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Mutt 0.95i In-Reply-To: X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Fabrizio Invernizzi (Fabrizio.Invernizzi@CSELT.IT): > Can someone give me some pointer to some documentation about howto > configure icewm? There are different tools that let you config it (iceconf, icepref), but they didn´t compile on my machine. Just go to the dir ~/.icewm There are some config-files, which are well documented. I could config my icewm yesterday in these files very nice. Alex -- ************** I doubt, therefore I might be. ************** *** Send email to to get PGP-Key *** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 7:20: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A8E515680 for ; Wed, 26 May 1999 07:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA94056; Wed, 26 May 1999 07:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 26 May 1999 07:20:02 -0700 (PDT) Message-Id: <199905261420.HAA94056@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jun Kuriyama Subject: Re: ports/11684: New port: korean/hanIM Reply-To: Jun Kuriyama Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11684; it has been noted by GNATS. From: Jun Kuriyama To: cjh@kr.freebsd.org Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/11684: New port: korean/hanIM Date: Wed, 26 May 1999 23:12:08 +0900 cjh@kr.freebsd.org wrote: > New port of Korean Input method, hanIM. > It depends linux_locale ports, which will be submitted soon. This port overwrites /usr/X11R6/lib/X11/locale/ko/XLC_LOCALE which is installed at system installation. If this new files is correct for Korean locale, should this be fixed by XFree86 people? Or, next release of XFree86 will include this fix? -- Jun Kuriyama // kuriyama@sky.rim.or.jp // kuriyama@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 May 26 7:50: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 457BA14C1B for ; Wed, 26 May 1999 07:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA97356; Wed, 26 May 1999 07:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 26 May 1999 07:50:02 -0700 (PDT) Message-Id: <199905261450.HAA97356@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Anton Berezin Subject: Re: ports/11893: new port: www/thttpd Reply-To: Anton Berezin Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11893; it has been noted by GNATS. From: Anton Berezin To: Anders Nordby Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/11893: new port: www/thttpd Date: 26 May 1999 16:40:10 +0200 Anders Nordby writes: > This is a new port of this tiny/turbo/throttling HTTP server. > Some times Apache just is too much. :-) I think in the current form this port can be quite useless. Thttpd is *quite* configurable, all configuration is done in config.h before the build. For most ports the default configuration is acceptable, but not in this case. Almost everybody will have a need to put his hands into config.h. I would suggest some mechanism for doing this in port (might be as simple as entering an editor at post-configure time; though this will make the port INTERACTIVE, and this is probably a bad thing). -- Anton Berezin The Protein Laboratory, University of Copenhagen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 9: 0: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4208F155FD for ; Wed, 26 May 1999 09:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA05775; Wed, 26 May 1999 09:00:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 7BA7815039; Wed, 26 May 1999 08:55:26 -0700 (PDT) Message-Id: <19990526155526.7BA7815039@hub.freebsd.org> Date: Wed, 26 May 1999 08:55:26 -0700 (PDT) From: dervish@bantu.cl.msu.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11895: Checksum mismatch for aterm-0.3.6.tar.gz Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11895 >Category: ports >Synopsis: Checksum mismatch for aterm-0.3.6.tar.gz >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 May 26 09:00:03 PDT 1999 >Closed-Date: >Last-Modified: >Originator: I'Khala >Release: FreeBSD 4.0-CURRENT i386 >Organization: Michigan State University >Environment: 4.0-CURRENT FreeBSD 4.0-CURRENT #14: Mon May 24 16:49:16 EDT 1999 toor@bantu.cl.msu.edu:/usr/src/sys/compile/BANTU i386 >Description: bantu.cl.msu.edu:aterm> make install >How-To-Repeat: Run make in /usr/ports/x11/aterm >Fix: Confirm aterm-0.3.6.tar.gz and regenerate md5 ... >Release-Note: >Audit-Trail: >Unformatted: >> aterm-0.3.6.tar.gz doesn't seem to exist on this system. >> Attempting to fetch from ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/. Receiving aterm-0.3.6.tar.gz (290495 bytes): 100% 290495 bytes transfered in 4.8 seconds (58.51 Kbytes/s) ===> Extracting for aterm-0.3.6 >> Checksum mismatch for aterm-0.3.6.tar.gz. Make sure the Makefile and md5 file (/usr/ports/x11/aterm/files/md5) are up to date. If you want to override this check, type "make NO_CHECKSUM=yes [other args]". *** Error code 1 Stop. bantu.cl.msu.edu:aterm> cat files/md5 MD5 (aterm-0.3.6.tar.gz) = dba960c51e40c64a84ad61dda42e75f0 bantu.cl.msu.edu:aterm> md5 ../../distfiles/aterm-0.3.6.tar.gz MD5 (../../distfiles/aterm-0.3.6.tar.gz) = 8adc789412c583fa5ee10ce664e43373 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 9: 0: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 00E8E15299 for ; Wed, 26 May 1999 09:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA05766; Wed, 26 May 1999 09:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 26 May 1999 09:00:03 -0700 (PDT) Message-Id: <199905261600.JAA05766@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Anders Nordby Subject: Re: ports/11893: new port: www/thttpd Reply-To: Anders Nordby Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11893; it has been noted by GNATS. From: Anders Nordby To: Anton Berezin Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/11893: new port: www/thttpd Date: Wed, 26 May 1999 17:55:01 +0200 On Wed, May 26, 1999 at 04:40:10PM +0200, Anton Berezin wrote: > I think in the current form this port can be quite useless. Thttpd is > *quite* configurable, all configuration is done in config.h before the > build. For most ports the default configuration is acceptable, but > not in this case. Almost everybody will have a need to put his hands > into config.h. Almost everybody? Nah, but quite many perhaps. > I would suggest some mechanism for doing this in port (might be as > simple as entering an editor at post-configure time; though this will > make the port INTERACTIVE, and this is probably a bad thing). I think making the user aware of this should be sufficient enough, as many might just want thttpd for just the easyness and its modest use of resources. I added a post-fetch and post-build message. Apply this: --- Makefile.orig Wed May 26 17:24:48 1999 +++ Makefile Wed May 26 17:40:54 1999 @@ -40,6 +40,18 @@ post-install: message +post-fetch: config-message + +post-build: config-message + +config-message: + @${ECHO} "=====================================================================" + @${ECHO} "" + @${ECHO} "Be sure to take a look at the options in config.h before (re)building" + @${ECHO} "if you want to tweak the server." + @${ECHO} "" + @${ECHO} "=====================================================================" + message: @${ECHO} "=====================================================================" @${ECHO} "" -- Anders Nordby ^ anders@fix.no ^ http://anders.fix.no/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 9:10:18 1999 Delivered-To: freebsd-ports@freebsd.org Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.95.76.54]) by hub.freebsd.org (Postfix) with ESMTP id A5CE415625; Wed, 26 May 1999 09:10:09 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.9.3/8.9.1) id JAA96937; Wed, 26 May 1999 09:13:14 -0700 (PDT) (envelope-from sgk) From: Steve Kargl Message-Id: <199905261613.JAA96937@troutmask.apl.washington.edu> Subject: Re: bison versus yacc In-Reply-To: <19990526000653.A22681@dragon.nuxi.com> from "David O'Brien" at "May 26, 1999 00:06:53 am" To: obrien@freebsd.org Date: Wed, 26 May 1999 09:13:13 -0700 (PDT) Cc: freebsd-ports@freebsd.org X-Mailer: ELM [version 2.4ME+ PL54 (25)] 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 David O'Brien wrote: > > I'm upgrading ddd from 3.1.4 to 3.1.5 and have run into a > > Already done and committed. Thanks. I saw your commit message an hour after I started to work on ddd-3.1.5. > > > small problem. This port uses USE_CONFIGURE to configure > > ddd for building, and it finds /usr/bin/bison. This > > chocks the make of ddd. > > Hum... I didn't have this problem. /usr/bin/bison worked fine for me. > Please test 3.1.5 from ports and see if it works for you. > > > (1) upgrade src/contrib/bison to version 1.27 which should fix the > > problem; > > In progress. I'll probably have it done right after USENIX. > Do you have bison 1.27 from ports/devel installed and /usr/local/bin preceding /usr/bin in your PATH? The default bison in /usr/bin is at 1.25, and the building of ddd chocks on /usr/share/misc/bison.simple. This is with your latest port and /usr/bin/bison (version 1.25). The last "make world" was Friday with -current source, and I rebulit /usr/bin/bison to ensure that I had a "good" bison.simple. c++ -DHAVE_CONFIG_H -DNDEBUG -O2 -W -Wall -Wno-uninitialized -pipe -fexternal- templates -felide-constructors -fconserve-space -trigraphs -c -I. -I. -I./.. -I/ usr/X11R6/include -o VSLRead.o VSLRead.C In file included from VSLRead.C:112: /usr/share/misc/bison.simple:302: unterminated `#else' conditional VSLRead.C: In function `int VSLLib_parse()': VSLRead.C:120: warning: declaration of `class VSLLib & VSLLib::read(class istrea m &, unsigned int = stdOpt)' outside of class is not definition VSLRead.C:120: parse error before `{' VSLRead.C:123: `s' undeclared (first use this function) VSLRead.C:123: (Each undeclared identifier is reported only once VSLRead.C:123: for each function it appears in.) VSLRead.C:124: `_lib_name' undeclared (first use this function) VSLRead.C:129: warning: implicit declaration of function `int parse(...)' VSLRead.C:138: `optimizeMode' undeclared (first use this function) VSLRead.C:138: warning: implicit declaration of function `int process(...)' VSLRead.C:143: invalid use of `this' in non-member function /usr/share/misc/bison.simple:293: warning: unused variable `struct YYSTYPE * vsl vs1' VSLRead.C:149: warning: declaration of `class VSLLib & VSLLib::read(const class string &, unsigned int = stdOpt)' outside of class is not definition VSLRead.C:149: parse error before `{' /usr/share/misc/bison.simple:259: warning: unused variable `int vsllen' /usr/share/misc/bison.simple:255: warning: unused variable `struct YYSTYPE vslva l' /usr/share/misc/bison.simple:225: warning: unused variable `int vslchar1' /usr/share/misc/bison.simple:221: warning: unused variable `int vsln' /usr/share/misc/bison.simple:285: warning: label `vslnewstate' defined but not u sed VSLRead.C:158: warning: control reaches end of non-void function `VSLLib_parse() ' VSLRead.C: At top level: VSLRead.C:160: warning: ANSI C++ forbids declaration `vslfilename' with no type VSLRead.C:160: conflicting types for `int vslfilename' VSLRead.C:74: previous declaration as `class string vslfilename' VSLRead.C:160: `lib_name' was not declared in this scope VSLRead.C:162: warning: return-type of `switchreset' defaults to `int' VSLRead.C:162: new declaration `int switchreset()' ./vsl-lex.L:306: ambiguates old declaration `void switchreset()' VSLRead.C:163: parse error before `if' VSLRead.C:167: warning: ANSI C++ forbids declaration `topstack' with no type VSLRead.C:167: redefinition of `int topstack' ./vsl-lex.L:46: `int topstack' previously defined here VSLRead.C:168: confused by earlier errors, bailing out gmake[1]: *** [VSLRead.o] Error 1 gmake[1]: Leaving directory `/usr/ports/devel/ddd/work/ddd-3.1.5/ddd' gmake: *** [all] Error 1 *** Error code 2 Stop. *** Error code 1 Stop. *** Error code 1 -- Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 9:40: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 877BD15052 for ; Wed, 26 May 1999 09:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA10666; Wed, 26 May 1999 09:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from kaa.kfunigraz.ac.at (KAA16.kfunigraz.ac.at [143.50.16.17]) by hub.freebsd.org (Postfix) with ESMTP id EDE5015037 for ; Wed, 26 May 1999 09:31:12 -0700 (PDT) (envelope-from dada@balu.kfunigraz.ac.at) Received: from balu.kfunigraz.ac.at (balu [143.50.16.16]) by kaa.kfunigraz.ac.at (8.9.2/8.9.2) with ESMTP id SAA15107 for ; Wed, 26 May 1999 18:30:32 +0200 (MDT) Received: from localhost.kfunigraz.ac.at (IDENT:sRTPHlICOulSLzCE31MaDtLe8ehdafuk@BONLINE15.kfunigraz.ac.at [143.50.169.15]) by balu.kfunigraz.ac.at (8.9.2/8.9.2) with ESMTP id SAA14285 for ; Wed, 26 May 1999 18:31:07 +0200 (MDT) Received: (from dada@localhost) by localhost.kfunigraz.ac.at (8.8.8/x.y.z) id MAA08254; Wed, 26 May 1999 12:41:15 +0200 (CEST) (envelope-from dada) Message-Id: <199905261041.MAA08254@localhost.kfunigraz.ac.at> Date: Wed, 26 May 1999 12:41:15 +0200 (CEST) From: dada@sbox.tu-graz.ac.at Reply-To: dada@sbox.tu-graz.ac.at To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11897: port textproc/java2html update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11897 >Category: ports >Synopsis: port textproc/java2html 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: Wed May 26 09:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Martin Kammerhofer >Release: FreeBSD 2.2.8-STABLE i386 >Organization: Graz University of Technology >Environment: >Description: Port has been updated on Sunsite from 0.5 to 0.6.1. >How-To-Repeat: >Fix: <===CUT HERE=============================================== diff -KruN java2html/Makefile java2html.new/Makefile --- java2html/Makefile Wed May 5 00:40:30 1999 +++ java2html.new/Makefile Wed May 26 12:32:04 1999 @@ -6,7 +6,7 @@ # $Id: Makefile,v 1.2 1999/05/04 22:40:30 steve Exp $ # -DISTNAME= java2html-0.5 +DISTNAME= java2html-0.6.1 CATEGORIES= textproc www MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= apps/www/converters diff -KruN java2html/files/md5 java2html.new/files/md5 --- java2html/files/md5 Wed May 5 00:40:39 1999 +++ java2html.new/files/md5 Wed May 26 12:32:04 1999 @@ -1 +1 @@ -MD5 (java2html-0.5.tar.gz) = 044f8ea3aee287f7b66ce14a5a93bb31 +MD5 (java2html-0.6.1.tar.gz) = 48dba1677190977cde171f6087e9d2f3 diff -KruN java2html/patches/patch-aa java2html.new/patches/patch-aa --- java2html/patches/patch-aa Wed May 5 00:40:40 1999 +++ java2html.new/patches/patch-aa Wed May 26 12:32:04 1999 @@ -1,6 +1,6 @@ ---- Makefile.in.orig Wed Apr 14 18:28:16 1999 -+++ Makefile.in Thu Apr 15 22:55:00 1999 -@@ -12,7 +12,7 @@ +--- Makefile.in.orig Mon May 24 14:33:08 1999 ++++ Makefile.in Wed May 26 12:20:22 1999 +@@ -9,7 +9,7 @@ # for gzip because otherwise the load on the web server # grows without having big benefits. # COMPRESSION = -DCOMPRESSION=4 @@ -8,13 +8,13 @@ +COMPRESSION ?= -DCOMPRESSION=1 # Dont change things beyond this line. - TARGET = java2html -@@ -43,7 +43,7 @@ + TARGET = @PROJECT_NAME@ +@@ -40,7 +40,7 @@ srcdir = @srcdir@ CPPFLAGS = @CPPFLAGS@ --CFLAGS += -O2 -Wall -pedantic -+CFLAGS ?= -O2 -Wall -pedantic +-CFLAGS += -O2 -Wall ++CFLAGS ?= -O2 -Wall ALL_CFLAGS = $(CFLAGS) -I$(srcdir) $(COMPRESSION) all: $(TARGET) >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 May 26 9:45:33 1999 Delivered-To: freebsd-ports@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id AA0B815647 for ; Wed, 26 May 1999 09:45:25 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (d60-077.leach.ucdavis.edu [169.237.60.77]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id JAA08235; Wed, 26 May 1999 09:45:25 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id QAA46725; Wed, 26 May 1999 16:45:24 GMT (envelope-from obrien) Date: Wed, 26 May 1999 09:45:24 -0700 From: "David O'Brien" To: Steve Kargl Cc: freebsd-ports@freebsd.org Subject: Re: bison versus yacc Message-ID: <19990526094524.A46702@dragon.nuxi.com> Reply-To: obrien@NUXI.com References: <19990526000653.A22681@dragon.nuxi.com> <199905261613.JAA96937@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.3i In-Reply-To: <199905261613.JAA96937@troutmask.apl.washington.edu>; from Steve Kargl on Wed, May 26, 1999 at 09:13:13AM -0700 X-Operating-System: FreeBSD 4.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Do you have bison 1.27 from ports/devel installed and /usr/local/bin > preceding /usr/bin in your PATH? Nope. I only have the stock Bison on the machine I where I updated the DDD port. > The default bison in /usr/bin is at 1.25, and the building of ddd > chocks on /usr/share/misc/bison.simple. Don't know what to say. Within a few days, Satoshi's build cluster should be building a new set of -CURRENT packages. We can wait and see if he gets a clean build of it. Do you have any other friends running -CURRENT that can try to build it also? -- -- David (obrien@NUXI.com -or- 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 Wed May 26 10: 8:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.95.76.54]) by hub.freebsd.org (Postfix) with ESMTP id A2625155C4 for ; Wed, 26 May 1999 10:08:12 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.9.3/8.9.1) id KAA10993; Wed, 26 May 1999 10:11:16 -0700 (PDT) (envelope-from sgk) From: Steve Kargl Message-Id: <199905261711.KAA10993@troutmask.apl.washington.edu> Subject: Re: bison versus yacc In-Reply-To: <19990526094524.A46702@dragon.nuxi.com> from "David O'Brien" at "May 26, 1999 09:45:24 am" To: obrien@NUXI.com Date: Wed, 26 May 1999 10:11:15 -0700 (PDT) Cc: freebsd-ports@freebsd.org X-Mailer: ELM [version 2.4ME+ PL54 (25)] 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 David O'Brien wrote: > > Do you have bison 1.27 from ports/devel installed and /usr/local/bin > > preceding /usr/bin in your PATH? > > Nope. I only have the stock Bison on the machine I where I updated the > DDD port. > > > The default bison in /usr/bin is at 1.25, and the building of ddd > > chocks on /usr/share/misc/bison.simple. > > Don't know what to say. Within a few days, Satoshi's build cluster > should be building a new set of -CURRENT packages. We can wait and see > if he gets a clean build of it. Do you have any other friends running > -CURRENT that can try to build it also? > I installed ports/devel/bison and ddd builds fine. So, to summarize my findings: /usr/bin/yacc works. /usr/bin/bison (v 1.25) does not work. /usr/local/bin/bison (v 1.27) works. Friends? I'm adrift in a sea of Linux. -- Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 14:57:39 1999 Delivered-To: freebsd-ports@freebsd.org Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 39C3F157BB for ; Wed, 26 May 1999 14:57:36 -0700 (PDT) (envelope-from cpiazza@home.net) Received: from norn.ca.eu.org (localhost.norn.ca.eu.org [127.0.0.1]) by norn.ca.eu.org (Postfix) with ESMTP id C021E1446; Wed, 26 May 1999 14:57:27 -0700 (PDT) Content-Length: 707 Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <199905261711.KAA10993@troutmask.apl.washington.edu> Date: Wed, 26 May 1999 14:57:27 -0700 (PDT) Reply-To: Chris Piazza From: Chris Piazza To: Steve Kargl Subject: Re: bison versus yacc Cc: freebsd-ports@FreeBSD.ORG, obrien@NUXI.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 26-May-99 Steve Kargl wrote: > David O'Brien wrote: >> Don't know what to say. Within a few days, Satoshi's build cluster >> should be building a new set of -CURRENT packages. We can wait and see >> if he gets a clean build of it. Do you have any other friends running >> -CURRENT that can try to build it also? >> > > Friends? I'm adrift in a sea of Linux. > Ha! I know the feeling. I prefer to troll the local LUG and convert people who show some signs of clue :-). Back to business, though. I can confirm that this build also dies on my -CURRENT machine, just for the record. --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 15:13:42 1999 Delivered-To: freebsd-ports@freebsd.org Received: from voyager.fisicc-ufm.edu (unknown [209.198.197.197]) by hub.freebsd.org (Postfix) with ESMTP id 96F3514DF7 for ; Wed, 26 May 1999 15:12:44 -0700 (PDT) (envelope-from obonilla@voyager.fisicc-ufm.edu) Received: (from obonilla@localhost) by voyager.fisicc-ufm.edu (8.9.3/8.9.3) id PAA00775 for ports@freebsd.org; Wed, 26 May 1999 15:17:08 -0600 (CST) (envelope-from obonilla) Date: Wed, 26 May 1999 15:17:08 -0600 From: Oscar Bonilla To: ports@freebsd.org Subject: Right way to upgrade a port Message-ID: <19990526151708.D344@fisicc-ufm.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I was just wondering what is the right way to upgrade a port... say i have foobar-1.2 and the port has been upgraded to foobar-2.0 do I 1. pkg_delete foobar-1.2 cd /usr/ports/misc/foobar make install 2. cd /usr/ports/misc/foobar make install the main difference being deleting the package first and installing then the new version or just installing the new version on top of the old one? how do you guys do it and why? regards, -Oscar p.s. wouln't it be cool if you could install on top of the old version and later remove the new version just to find out that the old version still works. :) -- For PGP Public Key: finger obonilla@fisicc-ufm.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 15:20: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B6DDE15829 for ; Wed, 26 May 1999 15:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA43719; Wed, 26 May 1999 15:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 26 May 1999 15:20:03 -0700 (PDT) Message-Id: <199905262220.PAA43719@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Chris Piazza Subject: RE: ports/11895: Checksum mismatch for aterm-0.3.6.tar.gz Reply-To: Chris Piazza Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11895; it has been noted by GNATS. From: Chris Piazza To: dervish@bantu.cl.msu.edu Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: RE: ports/11895: Checksum mismatch for aterm-0.3.6.tar.gz Date: Wed, 26 May 1999 15:15:10 -0700 (PDT) On 26-May-99 dervish@bantu.cl.msu.edu wrote: > Confirm aterm-0.3.6.tar.gz and regenerate md5 ... > > >> aterm-0.3.6.tar.gz doesn't seem to exist on this system. > >> Attempting to fetch from > ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/. ^^^^^^^^^^^^^^^ Hmm... well here's what I see: >> aterm-0.3.6.tar.gz doesn't seem to exist on this system. >> Attempting to fetch from http://members.xoom.com/sashav/aterm/. Receiving aterm-0.3.6.tar.gz (290511 bytes): 100% 290511 bytes transfered in 1.2 seconds (236.44 Kbytes/s) ===> Extracting for aterm-0.3.6 >> Checksum OK for aterm-0.3.6.tar.gz. ===> aterm-0.3.6 depends on shared library: Xpm.4 - found ... >> aterm-0.3.6.tar.gz doesn't seem to exist on this system. >> Attempting to fetch from ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/. Receiving aterm-0.3.6.tar.gz (290495 bytes): 100% 290495 bytes transfered in 9.1 seconds (31.26 Kbytes/s) ===> Extracting for aterm-0.3.6 >> Checksum mismatch for aterm-0.3.6.tar.gz. I conclude that the distfile on ftp.freebsd.org is bad. I think the workaround from your point is to fetch it from the actual MASTER_SITE or follow the directions given to you to ignore the problem (This is safe, a diff -ruN shows no differences). The other more permanent fixes are to add the second checksum to the md5 file or get the correct version on ftp.freebsd.org. --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 15:20:59 1999 Delivered-To: freebsd-ports@freebsd.org Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 52E1915853 for ; Wed, 26 May 1999 15:20:57 -0700 (PDT) (envelope-from cpiazza@home.net) Received: from norn.ca.eu.org (localhost.norn.ca.eu.org [127.0.0.1]) by norn.ca.eu.org (Postfix) with ESMTP id C734313E3; Wed, 26 May 1999 15:20:48 -0700 (PDT) Content-Length: 959 Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <19990526151708.D344@fisicc-ufm.edu> Date: Wed, 26 May 1999 15:20:48 -0700 (PDT) Reply-To: Chris Piazza From: Chris Piazza To: Oscar Bonilla Subject: RE: Right way to upgrade a port Cc: ports@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 26-May-99 Oscar Bonilla wrote: > I was just wondering what is the right way to upgrade a port... > say i have foobar-1.2 and the port has been upgraded to foobar-2.0 > > do I > > 1. pkg_delete foobar-1.2 > cd /usr/ports/misc/foobar > make install > > 2. cd /usr/ports/misc/foobar > make install > > how do you guys do it and why? I think the True Way is #1. Doing #2 has a few nasties such as leaving old files around and having a very polluted /var/db/pkg. > > p.s. wouln't it be cool if you could install on top of the old version > and later remove the new version just to find out that the old version > still works. :) I have a feeling that that would require a lot of hard drive space for backups :-). There could be the odd chance that would work. Say, if the new version installed everything in a different place! --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 15:45:58 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mail.westbend.net (ns1.westbend.net [209.224.254.131]) by hub.freebsd.org (Postfix) with ESMTP id 1648D14C12 for ; Wed, 26 May 1999 15:45:55 -0700 (PDT) (envelope-from hetzels@westbend.net) Received: from admin (admin.westbend.net [209.224.254.141]) by mail.westbend.net (8.8.8/8.8.8) with SMTP id RAA27803; Wed, 26 May 1999 17:45:49 -0500 (CDT) (envelope-from hetzels@westbend.net) Message-ID: <000c01bea7c9$802c3b00$8dfee0d1@westbend.net> From: "Scot W. Hetzel" To: "Jeff Lush" Cc: References: <000001bea72c$9cc35840$15256c18@flanders.nerdpower.net> Subject: Re: MySQL port problem Date: Wed, 26 May 1999 17:45:47 -0500 Organization: West Bend Internet 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.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From: Jeff Lush > The latest version shown under 3.1-RELEASE is mysql-3.22.16g. Using > sysinstall, is this the only version I can use? > If you use source the latest version is 3.22.22. > > Using source is quite easy, just do the following: > > > > cd /usr/ports/databases/mysql322 > > When I try to cd into /usr/ports there is nothing there?!? > You need to install the ports collection, this can be done by either ftping the current ports from ftp.freebsd.org, or using CVsup to download and keep the ports Collection up to date. By Ftp: fetch ftp://ftp.freebsd.org/pub/FreeBSD/ports/ports.tar tar -xvf ports.tar -C /usr/ports If using CVSup, add: *default tag=. ports-all to your CVSup file. Then run CVSup to update your sources & ports collection > > make install > > > > This will fetch the mysql source, and optionally the Perl 5 > > sources. It will > > then compile the sources and install the files onto your system. > > I have tried this method also but get the following errors (the mysql322 dir > is /usr/local/mysql322): > > homer# make install > "/usr/share/mk/bsd.port.mk", line 2: Could not find > /usr/ports/Mk/bsd.port.mk The problem is that /usr/share/mk/bsd.port.mk is looking for the file /usr/ports/Mk/bsd.port.mk and can't find it due to you do not have the ports collection installed on your system. Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 15:59: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from stennis.ca.sandia.gov (stennis.ca.sandia.gov [146.246.243.44]) by hub.freebsd.org (Postfix) with ESMTP id 52F7B14D58 for ; Wed, 26 May 1999 15:58:57 -0700 (PDT) (envelope-from bmah@stennis.ca.sandia.gov) Received: (from bmah@localhost) by stennis.ca.sandia.gov (8.9.3/8.9.3) id PAA04234; Wed, 26 May 1999 15:58:49 -0700 (PDT) Message-Id: <199905262258.PAA04234@stennis.ca.sandia.gov> X-Mailer: exmh version 2.1.0 04/14/1999 X-Exmh-Isig-Comptype: repl X-Exmh-Isig-Folder: Lists/freebsd-ports To: Chris Piazza Cc: Oscar Bonilla , ports@FreeBSD.ORG Subject: Re: Right way to upgrade a port In-Reply-To: Your message of "Wed, 26 May 1999 15:20:48 PDT." From: bmah@CA.Sandia.GOV (Bruce A. Mah) Reply-To: bmah@CA.Sandia.GOV 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-Url: http://www.ca.sandia.gov/~bmah/ Mime-Version: 1.0 Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_-902768339P"; micalg=pgp-md5; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Wed, 26 May 1999 15:58:49 -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --==_Exmh_-902768339P Content-Type: text/plain If memory serves me right, Chris Piazza wrote: > On 26-May-99 Oscar Bonilla wrote: > > I was just wondering what is the right way to upgrade a port... > > say i have foobar-1.2 and the port has been upgraded to foobar-2.0 > > > > do I > > > > 1. pkg_delete foobar-1.2 > > cd /usr/ports/misc/foobar > > make install > > > > 2. cd /usr/ports/misc/foobar > > make install > > > > > how do you guys do it and why? > > I think the True Way is #1. Doing #2 has a few nasties such as leaving old > files around and having a very polluted /var/db/pkg. I agree. > > p.s. wouln't it be cool if you could install on top of the old > > version and later remove the new version just to find out that the > > old version still works. :) > > I have a feeling that that would require a lot of hard drive space > for backups :-). There could be the odd chance that would work. > Say, if the new version installed everything in a different place! This has come up one or two times in the past...that's what GNU stow was designed to handle. For more information look for "stow" in the mailing list archives. While I feel that adding some stow-like features to our ports/packages system (to cover exactly this situation) would be a Good Thing (TM), it's not immediately obvious (to me anyways) what all the implications would be. The devil is in the details.... Bruce. --==_Exmh_-902768339P Content-Type: application/pgp-signature -----BEGIN PGP MESSAGE----- Version: 2.6.2 iQCVAwUBN0x8qKjOOi0j7CY9AQHRNgP+OVafBaBRSapCzZdflk2NGzvf0JTCBS/4 j1AdcLVjxEDYi+K5YPpBEwwRsZ7Vn44Mq+jnwzqw8xGN3ewlyIEJDhOUDpHLqHP8 66g5ecF2yuzDx7knqtiCI+VaZa5Xyi31bsUzSkIBgVQX/vlUejksG9vLTNscohOh a5Mucgp5WRc= =B+10 -----END PGP MESSAGE----- --==_Exmh_-902768339P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 16: 2:24 1999 Delivered-To: freebsd-ports@freebsd.org Received: from phoenix.volant.org (phoenix.volant.org [205.179.79.193]) by hub.freebsd.org (Postfix) with ESMTP id 1F168158B3 for ; Wed, 26 May 1999 16:02:21 -0700 (PDT) (envelope-from patl@phoenix.volant.org) Received: from asimov.phoenix.volant.org ([205.179.79.65]) by phoenix.volant.org with smtp (Exim 1.92 #8) id 10mmgm-0001u2-00; Wed, 26 May 1999 16:02:20 -0700 Received: from localhost by asimov.phoenix.volant.org (SMI-8.6/SMI-SVR4) id QAA10976; Wed, 26 May 1999 16:02:15 -0700 Date: Wed, 26 May 1999 16:02:15 -0700 (PDT) From: patl@phoenix.volant.org Reply-To: patl@phoenix.volant.org Subject: Re: Right way to upgrade a port To: Chris Piazza Cc: Oscar Bonilla , ports@FreeBSD.ORG 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 > > p.s. wouln't it be cool if you could install on top of the old version > > and later remove the new version just to find out that the old version > > still works. :) > > I have a feeling that that would require a lot of hard drive space for > backups :-). There could be the odd chance that would work. Say, if the > new version installed everything in a different place! It would work fine if pkg_delete were just a little bit smarter so that it wouldn't delete any file that is also used by another installed package. The problem with the pkg_delete/make install sequence is that it can get quite awkward if there are other ports that depend on the one you are trying to update. For worst-case scenaria, check out the dependancy trees for gnome and kde... -Pat To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 16:11:38 1999 Delivered-To: freebsd-ports@freebsd.org Received: from shell13.ba.best.com (shell13.ba.best.com [206.184.139.144]) by hub.freebsd.org (Postfix) with ESMTP id 0E18314F0A for ; Wed, 26 May 1999 16:11:35 -0700 (PDT) (envelope-from rone@ennui.org) Received: (from rone@localhost) by shell13.ba.best.com (8.9.3/8.9.2/best.sh) id QAA28551 for ports@freebsd.org; Wed, 26 May 1999 16:11:06 -0700 (PDT) From: "gil i. pollas" Message-Id: <199905262311.QAA28551@shell13.ba.best.com> Subject: gnupg 0.9.7 To: ports@freebsd.org Date: Wed, 26 May 1999 16:11:05 -0700 (PDT) X-URL: http://ennui.org/rone/ X-Mailer: ELM [version 2.4ME+ PL38 (25)] 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 ===> Building for gnupg-0.9.7 make all-recursive Making all in intl Making all in zlib Making all in util Making all in mpi cc -E -I../include -DHAVE_CONFIG_H -I. -I. -I.. mpih-mul1.S | grep -v '^#' >tmp-mpih-mul1.s cc -O -pipe -Wall -Wcast-align -Wshadow -Wstrict-prototypes -c tmp-mpih-mul1.s And it just hangs there forever. The cc isnn't using any resources at all. If i run this with egcc (`egcc --version`==egcs-2.91.66) it does not get stuck here. This is a 3.2-STABLE box. Has anyone seen this before? rone -- el mercado on the corner has grande bags of clues rilly cheapo. - Patrick J. Finerty To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 16:14:51 1999 Delivered-To: freebsd-ports@freebsd.org Received: from voyager.fisicc-ufm.edu (unknown [209.198.197.197]) by hub.freebsd.org (Postfix) with ESMTP id C873814F14 for ; Wed, 26 May 1999 16:14:06 -0700 (PDT) (envelope-from obonilla@voyager.fisicc-ufm.edu) Received: (from obonilla@localhost) by voyager.fisicc-ufm.edu (8.9.3/8.9.3) id RAA01465; Wed, 26 May 1999 17:12:36 -0600 (CST) (envelope-from obonilla) Date: Wed, 26 May 1999 17:12:36 -0600 From: Oscar Bonilla To: patl@phoenix.volant.org Cc: Chris Piazza , Oscar Bonilla , ports@FreeBSD.ORG Subject: Re: Right way to upgrade a port Message-ID: <19990526171236.F917@fisicc-ufm.edu> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: ; from patl@phoenix.volant.org on Wed, May 26, 1999 at 04:02:15PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, May 26, 1999 at 04:02:15PM -0700, patl@phoenix.volant.org wrote: > The problem with the pkg_delete/make install sequence is that it can > get quite awkward if there are other ports that depend on the one you > are trying to update. For worst-case scenaria, check out the dependancy > trees for gnome and kde... > I know! I've been bitten by it in the past. That's why I was posting. Maybe there should be an option (upgrade?) in the package/ports system that would do both, i mean deleting the old package without worring about dependencies and installing the new version... just a thought. Regards, -Oscar -- For PGP Public Key: finger obonilla@fisicc-ufm.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 16:35:19 1999 Delivered-To: freebsd-ports@freebsd.org Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 7FAA815229 for ; Wed, 26 May 1999 16:35:16 -0700 (PDT) (envelope-from cpiazza@home.net) Received: from norn.ca.eu.org (localhost.norn.ca.eu.org [127.0.0.1]) by norn.ca.eu.org (Postfix) with ESMTP id EBBB41431; Wed, 26 May 1999 16:35:07 -0700 (PDT) Content-Length: 1265 Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <199905262311.QAA28551@shell13.ba.best.com> Date: Wed, 26 May 1999 16:35:07 -0700 (PDT) Reply-To: Chris Piazza From: Chris Piazza To: "gil i. pollas" Subject: RE: gnupg 0.9.7 Cc: ports@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 26-May-99 gil i. pollas wrote: > cc -E -I../include -DHAVE_CONFIG_H -I. -I. -I.. mpih-mul1.S | grep -v '^#' >>tmp-mpih-mul1.s > cc -O -pipe -Wall -Wcast-align -Wshadow -Wstrict-prototypes -c > tmp-mpih-mul1.s > > And it just hangs there forever. The cc isnn't using any resources at > all. > > If i run this with egcc (`egcc --version`==egcs-2.91.66) it does not > get stuck here. > > This is a 3.2-STABLE box. Has anyone seen this before? > Yeah we've seen this before (there's still a PR open on this...). I think a "hack" would be to apply the patchbelow. I'm not sure if gnupg's ASM stuff is truly broken for older gcc's or if it's a local problem. --- Makefile.orig Wed May 26 16:30:39 1999 +++ Makefile Wed May 26 16:33:10 1999 @@ -16,15 +16,11 @@ RESTRICTED= "Crypto; export-controlled" GNU_CONFIGURE= YES -CONFIGURE_ARGS= --with-included-gettext +CONFIGURE_ARGS= --with-included-gettext --disable-asm MAN1= gpg.1 MLINKS= gpg.1 gpgm.1 .include - -.if ${OSVERSION} < 300000 -CONFIGURE_ARGS+=--disable-asm -.endif post-install: .if !defined(NOPORTDOCS) --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 16:52:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from repulse.lovett.com (repulse.lovett.com [38.155.241.4]) by hub.freebsd.org (Postfix) with ESMTP id 3889415827 for ; Wed, 26 May 1999 16:52:08 -0700 (PDT) (envelope-from ade@lovett.com) Received: from ade by repulse.lovett.com with local (Exim 3.01 #1) id 10mnSj-0000B7-00; Wed, 26 May 1999 18:51:53 -0500 Date: Wed, 26 May 1999 18:51:53 -0500 From: Ade Lovett To: "gil i. pollas" Cc: ports@freebsd.org Subject: Re: gnupg 0.9.7 Message-ID: <19990526185153.C490@lovett.com> References: <199905262311.QAA28551@shell13.ba.best.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <199905262311.QAA28551@shell13.ba.best.com>; from gil i. pollas on Wed, May 26, 1999 at 04:11:05PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, May 26, 1999 at 04:11:05PM -0700, gil i. pollas wrote: > cc -O -pipe -Wall -Wcast-align -Wshadow -Wstrict-prototypes -c tmp-mpih-mul1.s > > And it just hangs there forever. The cc isnn't using any resources at > all. Yup. Check back in the ports archive about, oh, a week. Exactly the same problem with the then current gnupg-0.9.6 Fix is either to remove -pipe from the CFLAGS, or pass --disable-asm to configure. Looks like a weird compiler interaction with the gcc-2.7.2 in 3.x, anyone fancy MFC'ing egcs into -stable (joke!) -aDe -- Ade Lovett, Austin, TX. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 16:54:22 1999 Delivered-To: freebsd-ports@freebsd.org Received: from repulse.lovett.com (repulse.lovett.com [38.155.241.4]) by hub.freebsd.org (Postfix) with ESMTP id B77B6150A7 for ; Wed, 26 May 1999 16:54:20 -0700 (PDT) (envelope-from ade@lovett.com) Received: from ade by repulse.lovett.com with local (Exim 3.01 #1) id 10mnUt-0000BH-00; Wed, 26 May 1999 18:54:07 -0500 Date: Wed, 26 May 1999 18:54:07 -0500 From: Ade Lovett To: Chris Piazza Cc: ports@freebsd.org Subject: Re: gnupg 0.9.7 Message-ID: <19990526185407.D490@lovett.com> References: <199905262311.QAA28551@shell13.ba.best.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: ; from Chris Piazza on Wed, May 26, 1999 at 04:35:07PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, May 26, 1999 at 04:35:07PM -0700, Chris Piazza wrote: > > Yeah we've seen this before (there's still a PR open on this...). I think a > "hack" would be to apply the patchbelow. I'm not sure if gnupg's ASM stuff is > truly broken for older gcc's or if it's a local problem. It appears to be an older-gcc problem, unless you count taking a completely empty machine, installing 3.2-RELEASE on it, and then trying to make the gnupg port as the first thing after the initial reboot, a local problem. -aDe -- Ade Lovett, Austin, TX. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 16:56:30 1999 Delivered-To: freebsd-ports@freebsd.org Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 33B95150A7 for ; Wed, 26 May 1999 16:56:28 -0700 (PDT) (envelope-from cpiazza@home.net) Received: from norn.ca.eu.org (localhost.norn.ca.eu.org [127.0.0.1]) by norn.ca.eu.org (Postfix) with ESMTP id 9A9D01431; Wed, 26 May 1999 16:56:19 -0700 (PDT) Content-Length: 449 Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <19990526185407.D490@lovett.com> Date: Wed, 26 May 1999 16:56:19 -0700 (PDT) Reply-To: Chris Piazza From: Chris Piazza To: Ade Lovett Subject: Re: gnupg 0.9.7 Cc: ports@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 26-May-99 Ade Lovett wrote: > It appears to be an older-gcc problem, unless you count taking a > completely empty machine, installing 3.2-RELEASE on it, and then > trying to make the gnupg port as the first thing after the initial > reboot, a local problem. > Sorry, I meant local to FreeBSD's "version" of gcc (ie. modifications). --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 17: 9:31 1999 Delivered-To: freebsd-ports@freebsd.org Received: from repulse.lovett.com (repulse.lovett.com [38.155.241.4]) by hub.freebsd.org (Postfix) with ESMTP id 002AD155A5 for ; Wed, 26 May 1999 17:09:28 -0700 (PDT) (envelope-from ade@lovett.com) Received: from ade by repulse.lovett.com with local (Exim 3.01 #1) id 10mnjY-0000Cm-00; Wed, 26 May 1999 19:09:16 -0500 Date: Wed, 26 May 1999 19:09:16 -0500 From: Ade Lovett To: Chris Piazza Cc: ports@FreeBSD.ORG Subject: Re: gnupg 0.9.7 Message-ID: <19990526190916.E490@lovett.com> References: <19990526185407.D490@lovett.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: ; from Chris Piazza on Wed, May 26, 1999 at 04:56:19PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, May 26, 1999 at 04:56:19PM -0700, Chris Piazza wrote: > > It appears to be an older-gcc problem, unless you count taking a > > completely empty machine, installing 3.2-RELEASE on it, and then > > trying to make the gnupg port as the first thing after the initial > > reboot, a local problem. > > > > Sorry, I meant local to FreeBSD's "version" of gcc (ie. modifications). Ahh, ok. Unfortunately, I don't have a gcc-2.7.2 floating around for any other platforms, either, so I can't test this theory, although I'm absolutely stumped as to why cflags without -pipe would work. All in all, the --disable-asm fix would seem to be the best one for now (it's certainly the cleanest), and unless someone is doing major gnupg work (maybe an order of magnitude more than is likely to appear in day-to-day email/news reading), the loss in performance by using the non-optimised code is likely to be negligable from an end-user perspective. -aDe -- Ade Lovett, Austin, TX. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 18:20: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 92E94157D5 for ; Wed, 26 May 1999 18:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA56435; Wed, 26 May 1999 18:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id CEC3015462 for ; Wed, 26 May 1999 18:16:41 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 4DA64156C; Wed, 26 May 1999 18:16:32 -0700 (PDT) Message-Id: <19990527011632.4DA64156C@norn.ca.eu.org> Date: Wed, 26 May 1999 18:16:32 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11902: Update: audio/xhippo Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11902 >Category: ports >Synopsis: Update: audio/xhippo >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 May 26 18:20:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #213: Wed May 19 09:07:23 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: Update to 0.85. Make it actually work by installing a config file! All the changed stuff in the header section of the Makefile is fixing a bunch of spaces that put it all on the far right of my screen...purely cosmetic. Files added: patch-aa >How-To-Repeat: >Fix: Index: xhippo/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/audio/xhippo/Makefile,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 Makefile --- Makefile 1999/04/16 06:43:57 1.1.1.1 +++ Makefile 1999/05/27 00:34:50 @@ -1,12 +1,12 @@ -# New ports collection makefile for: xhippo -# Version required: 0.8 -# Date created: 16 March 1999 -# Whom: Rod Taylor +# New ports collection makefile for: xhippo +# Version required: 0.85 +# Date created: 16 March 1999 +# Whom: Rod Taylor # # $Id: Makefile,v 1.1.1.1 1999/04/16 06:43:57 flathill Exp $ # -DISTNAME= xhippo-0.8 +DISTNAME= xhippo-0.85 CATEGORIES= audio MASTER_SITES= http://zenchaos.netpedia.net/software/ @@ -20,6 +20,12 @@ USE_XLIB= yes post-install: + @if [ ! -f ${PREFIX}/etc/xhippo.config ]; then \ + ${INSTALL_SCRIPT} ${WRKSRC}/xhippo.config \ + ${PREFIX}/etc ; \ + fi + ${INSTALL_SCRIPT} ${WRKSRC}/xhippo.config \ + ${PREFIX}/etc/xhippo.config.default @${CAT} ${PKGDIR}/MESSAGE .include Index: xhippo/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/audio/xhippo/files/md5,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 md5 --- md5 1999/04/16 06:43:57 1.1.1.1 +++ md5 1999/05/27 00:16:26 @@ -1 +1 @@ -MD5 (xhippo-0.8.tar.gz) = 054b48c0b5964fdf6daf0e6cbc5e781c +MD5 (xhippo-0.85.tar.gz) = 00f74eed5f5d8ca1bd62f5d6c25537ad Index: xhippo/patches/patch-aa =================================================================== RCS file: patch-aa diff -N patch-aa --- /dev/null Wed May 26 18:13:03 1999 +++ patch-aa Wed May 26 18:14:08 1999 @@ -0,0 +1,11 @@ +--- Makefile.in.orig Wed May 26 18:13:40 1999 ++++ Makefile.in Wed May 26 18:13:52 1999 +@@ -72,7 +72,7 @@ + bin_PROGRAMS = xhippo + xhippo_SOURCES = xhippo.c xhippo.h + xhippo_LDADD = @UILIBS@ +-CPPFLAGS = -DSYSTEMXHIPPOCONFIG=\"@datadir@/xhippo.config\" -DVERSION=\"@VERSION@\" @UIFLAGS@ ++CPPFLAGS = -DSYSTEMXHIPPOCONFIG=\"@sysconfdir@/xhippo.config\" -DVERSION=\"@VERSION@\" @UIFLAGS@ + + EXTRA_DIST = README README.fvwm2 LIESMICH BUGS xhippo.config xhippo.gtkrc xhippo.xpm + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 Index: xhippo/pkg/MESSAGE =================================================================== RCS file: /cvs/FreeBSD/ports/audio/xhippo/pkg/MESSAGE,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 MESSAGE --- MESSAGE 1999/04/16 06:43:57 1.1.1.1 +++ MESSAGE 1999/05/27 00:35:39 @@ -1,3 +1,3 @@ *** Playlists should be created like: -find ~/sound -name *.mp3 | sort > playlist +find ~/sound -name \*.mp3 | sort > playlist Index: xhippo/pkg/PLIST =================================================================== RCS file: /cvs/FreeBSD/ports/audio/xhippo/pkg/PLIST,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 PLIST --- PLIST 1999/04/16 06:43:57 1.1.1.1 +++ PLIST 1999/05/27 01:08:57 @@ -1 +1,3 @@ bin/xhippo +etc/xhippo.config.default +@exec if [ ! -f %D/etc/xhippo.config ] ; then cp -p %D/%F %B/xhippo.config; fi -Chris >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 May 26 18:20: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B9F4157F2 for ; Wed, 26 May 1999 18:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA56425; Wed, 26 May 1999 18:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 26 May 1999 18:20:02 -0700 (PDT) Message-Id: <199905270120.SAA56425@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "CHOI, Junho" Subject: Re: ports/11684: New port: korean/hanIM Reply-To: "CHOI, Junho" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11684; it has been noted by GNATS. From: "CHOI, Junho" To: Jun Kuriyama Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/11684: New port: korean/hanIM Date: 27 May 1999 10:08:27 +0900 >>>>> "JK" == Jun Kuriyama writes: Hi, JK> cjh@kr.freebsd.org wrote: > New port of Korean Input method, hanIM. > It depends linux_locale ports, which will be submitted soon. JK> This port overwrites /usr/X11R6/lib/X11/locale/ko/XLC_LOCALE which is JK> installed at system installation. Yes. JK> If this new files is correct for Korean locale, should this be fixed by JK> XFree86 people? Or, next release of XFree86 will include this fix? I heard that Someone in Debian-kr project(Changwoo Ryu ) reported this problem to XFree86 team. I didn't heard about whether it will be fixed after release. -- ** Any opinions in this posting are my own and not those of my employers ** CHOI, Junho - Korea FreeBSD Users Group - Web Data Bank Co. Seoul., ROK. (+82-2-515-9941) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 21:20: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6847714E17 for ; Wed, 26 May 1999 21:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA73052; Wed, 26 May 1999 21:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 26 May 1999 21:20:02 -0700 (PDT) Message-Id: <199905270420.VAA73052@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Chris Piazza Subject: RE: ports/11827: New port: quirc Reply-To: Chris Piazza Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11827; it has been noted by GNATS. From: Chris Piazza To: cpiazza@home.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: RE: ports/11827: New port: quirc Date: Wed, 26 May 1999 21:12:58 -0700 (PDT) Here's an updated version, 0.9.77. # 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: # # quirc # quirc/files # quirc/files/md5 # quirc/pkg # quirc/pkg/COMMENT # quirc/pkg/DESCR # quirc/pkg/PLIST # quirc/Makefile # echo c - quirc mkdir -p quirc > /dev/null 2>&1 echo c - quirc/files mkdir -p quirc/files > /dev/null 2>&1 echo x - quirc/files/md5 sed 's/^X//' >quirc/files/md5 << 'END-of-quirc/files/md5' XMD5 (quirc.tar.gz) = 850f5dac308b276b91deb9bdfd57fdc8 END-of-quirc/files/md5 echo c - quirc/pkg mkdir -p quirc/pkg > /dev/null 2>&1 echo x - quirc/pkg/COMMENT sed 's/^X//' >quirc/pkg/COMMENT << 'END-of-quirc/pkg/COMMENT' XAn irc client for the X Window System that uses TCL/TK. END-of-quirc/pkg/COMMENT echo x - quirc/pkg/DESCR sed 's/^X//' >quirc/pkg/DESCR << 'END-of-quirc/pkg/DESCR' XAn IRC client for the X Window System that uses TCL/TK. It boasts Xmany advanced scripting facilities and a clean interface. X XWWW: http://quirc.org/ X X-Chris Piazza Xcpiazza@home.net END-of-quirc/pkg/DESCR echo x - quirc/pkg/PLIST sed 's/^X//' >quirc/pkg/PLIST << 'END-of-quirc/pkg/PLIST' Xbin/quirc Xbin/quirc.inst Xshare/quirc/VERSION Xshare/quirc/country.tcl Xshare/quirc/dal.tcl Xshare/quirc/default.tcl Xshare/quirc/fun.tcl Xshare/quirc/global.tcl Xshare/quirc/killjpq.tcl Xshare/quirc/mircservers.tcl Xshare/quirc/newserver.tcl Xshare/quirc/notify.tcl Xshare/quirc/popups.tcl Xshare/quirc/qwidgets.tcl Xshare/quirc/servers Xshare/quirc/style.tcl Xshare/quirc/translate.tcl Xshare/quirc/variables.tcl Xshare/quirc/winpopup.tcl X@dirrm share/quirc END-of-quirc/pkg/PLIST echo x - quirc/Makefile sed 's/^X//' >quirc/Makefile << 'END-of-quirc/Makefile' X# New ports collection makefile for: QuIRC X# Version required: 0.9.77 X# Date created: 21 May 1999 X# Whom: Chris Piazza X# X# $Id$ X# X XDISTNAME= quirc XPKGNAME= quirc-0.9.77 XCATEGORIES= net tk80 XMASTER_SITES= http://www.quirc.org/ \ X http://patearl.powersurfr.com/quirc/ X XMAINTAINER= cpiazza@home.net X XLIB_DEPENDS= tk80.1:${PORTSDIR}/x11-toolkits/tk80 X XUSE_XLIB= yes XGNU_CONFIGURE= yes X Xpost-install: X @strip ${PREFIX}/bin/quirc X X.include END-of-quirc/Makefile exit --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed May 26 23:10: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2C48215065 for ; Wed, 26 May 1999 23:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA82755; Wed, 26 May 1999 23:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from alcanet.com.au (border.alcanet.com.au [203.62.196.10]) by hub.freebsd.org (Postfix) with ESMTP id 3C51A14F2C for ; Wed, 26 May 1999 23:08:27 -0700 (PDT) (envelope-from jeremyp@gsmx07.alcatel.com.au) Received: by border.alcanet.com.au id <40345>; Thu, 27 May 1999 15:52:37 +1000 Message-Id: <99May27.155237est.40345@border.alcanet.com.au> Date: Thu, 27 May 1999 16:08:19 +1000 From: Peter Jeremy Reply-To: peter.jeremy@alcatel.com.au To: FreeBSD-gnats-submit@freebsd.org, dsr@w3.org X-Send-Pr-Version: 3.2 Subject: ports/11903: File descriptor leak in ports/www/tidy/tidy15apr99 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11903 >Category: ports >Synopsis: File descriptor leak in ports/www/tidy/tidy15apr99 >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: Wed May 26 23:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Peter Jeremy >Release: FreeBSD 4.0-CURRENT i386 >Organization: Alcatel Australia Limited >Environment: Running FreeBSD 4.0-CURRENT from mid-May, building cvs/www/en from cvs-cur 5361 with tidy from tidy15apr99 (tidy-0.4.99.2). >Description: When an error file is specified to tidy (-f file), the error file is fopen()d for every HTML file specified on the command line, but not closed until all HTML files have been processed. If a large number of files are specified on the command line (eg processing the FreeBSD handbook), this can overflow the process or system file descriptor table. >How-To-Repeat: cd .../cvs/www/en CVSROOT=... make -DENGLISH_ONLY >Fix: The following fix opens the error file whenever a `-f' option is seen. Multiple -f options can be specified and the previous error file will be closed before the new one is opened. --- tidy.c~ Fri Apr 16 05:34:32 1999 +++ tidy.c Thu May 27 15:55:33 1999 @@ -732,9 +732,18 @@ { if (argc >= 3) { + if (errfile) + fclose(errout); errfile = argv[2]; --argc; ++argv; + if (errfile) + { + fp = fopen(errfile, "w"); + + if (fp != null) + errout = fp; + } } } else if (strcmp(argv[1], "-wrap") == 0 || @@ -779,14 +788,6 @@ /* ensure config is self-consistent */ AdjustConfig(); - - if (errfile) - { - fp = fopen(errfile, "w"); - - if (fp != null) - errout = fp; - } if (argc > 1) { >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 May 27 1: 0: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3383B15873 for ; Thu, 27 May 1999 01:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA93286; Thu, 27 May 1999 01:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from kaa.kfunigraz.ac.at (KAA16.kfunigraz.ac.at [143.50.16.17]) by hub.freebsd.org (Postfix) with ESMTP id 877011533E for ; Thu, 27 May 1999 00:49:53 -0700 (PDT) (envelope-from dada@balu.kfunigraz.ac.at) Received: from balu.kfunigraz.ac.at (balu [143.50.16.16]) by kaa.kfunigraz.ac.at (8.9.2/8.9.2) with ESMTP id JAA23834 for ; Thu, 27 May 1999 09:49:13 +0200 (MDT) Received: from localhost.kfunigraz.ac.at (IDENT:X0j0RaxTcYL1i8+LXM0Otdbra3Kg0pJ4@BONLINEA51.kfunigraz.ac.at [143.50.36.51]) by balu.kfunigraz.ac.at (8.9.2/8.9.2) with ESMTP id JAA10542 for ; Thu, 27 May 1999 09:49:49 +0200 (MDT) Received: (from dada@localhost) by localhost.kfunigraz.ac.at (8.8.8/x.y.z) id SAA08288; Wed, 26 May 1999 18:54:10 +0200 (CEST) (envelope-from dada) Message-Id: <199905261654.SAA08288@localhost.kfunigraz.ac.at> Date: Wed, 26 May 1999 18:54:10 +0200 (CEST) From: dada@sbox.tu-graz.ac.at Reply-To: dada@sbox.tu-graz.ac.at To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11904: port textproc/c2html update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11904 >Category: ports >Synopsis: port textproc/c2html update >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 May 27 01:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Martin Kammerhofer >Release: FreeBSD 2.2.8-STABLE i386 >Organization: Graz University of Technology >Environment: >Description: Port has been updated from 0.5 to 0.6.1 on Sunsite. >How-To-Repeat: >Fix: <=======CUT HERE=============================================== diff -KruN c2html/Makefile c2html.new/Makefile --- c2html/Makefile Sat May 8 17:19:36 1999 +++ c2html.new/Makefile Wed May 26 18:47:18 1999 @@ -6,7 +6,7 @@ # $Id: Makefile,v 1.3 1999/05/07 05:27:30 mharo Exp $ # -DISTNAME= c2html-0.5 +DISTNAME= c2html-0.6.1 CATEGORIES= textproc www MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= apps/www/converters @@ -16,11 +16,6 @@ USE_AUTOCONF= yes MAN1= c2html.1 - -#this doesn't seem like it should be necessary -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/c2html ${PREFIX}/bin/c2html - ${INSTALL_MAN} ${WRKSRC}/c2html.1 ${PREFIX}/man/man1/c2html.1 post-install: strip ${PREFIX}/bin/c2html diff -KruN c2html/files/md5 c2html.new/files/md5 --- c2html/files/md5 Sat May 8 17:19:36 1999 +++ c2html.new/files/md5 Wed May 26 18:47:18 1999 @@ -1 +1 @@ -MD5 (c2html-0.5.tar.gz) = 9eff1d70bb2a529de6802c119784de16 +MD5 (c2html-0.6.1.tar.gz) = 43c7deed8cbb50631b0d726e4faef151 diff -KruN c2html/patches/patch-aa c2html.new/patches/patch-aa --- c2html/patches/patch-aa Sat May 8 17:19:36 1999 +++ c2html.new/patches/patch-aa Wed May 26 18:47:18 1999 @@ -1,6 +1,6 @@ ---- Makefile.in.orig Wed Apr 21 19:21:32 1999 -+++ Makefile.in Wed Apr 21 23:42:12 1999 -@@ -12,7 +12,7 @@ +--- Makefile.in.orig Mon May 24 14:32:18 1999 ++++ Makefile.in Wed May 26 18:44:22 1999 +@@ -9,7 +9,7 @@ # for gzip because otherwise the load on the web server # grows without having big benefits. # COMPRESSION = -DCOMPRESSION=4 @@ -8,13 +8,13 @@ +COMPRESSION ?= -DCOMPRESSION=1 # Dont change things beyond this line. - TARGET = c2html -@@ -43,7 +43,7 @@ + TARGET = @PROJECT_NAME@ +@@ -40,7 +40,7 @@ srcdir = @srcdir@ CPPFLAGS = @CPPFLAGS@ --CFLAGS += -O2 -Wall -pedantic -+CFLAGS ?= -O2 -Wall -Wcast-qual -pedantic +-CFLAGS += -O2 -Wall ++CFLAGS ?= -O2 -Wall ALL_CFLAGS = $(CFLAGS) -I$(srcdir) $(COMPRESSION) all: $(TARGET) >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 May 27 5:34:21 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9DC7514F8B; Thu, 27 May 1999 05:34:20 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA48742; Thu, 27 May 1999 05:34:20 -0700 (PDT) (envelope-from kris@FreeBSD.org) Date: Thu, 27 May 1999 05:34:20 -0700 (PDT) From: Message-Id: <199905271234.FAA48742@freefall.freebsd.org> To: cpiazza@home.net, kris@FreeBSD.org, freebsd-ports@FreeBSD.org, kris@FreeBSD.org Subject: Re: ports/11837: Update: net/curl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: net/curl State-Changed-From-To: open->closed State-Changed-By: kris State-Changed-When: Thu May 27 05:33:24 PDT 1999 State-Changed-Why: Update committed, thanks! Responsible-Changed-From-To: freebsd-ports->kris Responsible-Changed-By: kris Responsible-Changed-When: Thu May 27 05:33:24 PDT 1999 Responsible-Changed-Why: My port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 27 8:17: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from maildns.FSBDial.co.uk (maildns.fsbdial.co.uk [195.89.137.2]) by hub.freebsd.org (Postfix) with ESMTP id 4E569158A1; Thu, 27 May 1999 08:16:55 -0700 (PDT) (envelope-from dlombardo@excite.com) Received: from [212.1.149.86] by maildns.freenet.co.uk (NTMail 4.30.0008/NT0619.00.8ceac940) with ESMTP id vkgkgaaa for ; Thu, 27 May 1999 15:55:17 +0100 Message-ID: <374D5E48.15A2D82B@excite.com> Date: Thu, 27 May 1999 16:01:28 +0100 From: Dean Lombardo Organization: University of Kent at Canterbury X-Mailer: Mozilla 4.5 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-hackers@freebsd.org, freebsd-ports@freebsd.org Subject: a two-level port system? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I apologise if this has been discussed before. The ports collection seems to be growing at alarming rates. On one hand, this is very good; on the other, it has the unfortunate downside of having to store ten billion little files on one's hard drive. The current size of the ports collection is 300+Mb (the output of du -ks /usr/ports); the actual size could be greater, considering that most of the files are smaller than 512 bytes. Now this is perhaps a silly thought, but wouldn't it be more sensible to have just one Makefile for each port? All such a Makefile would have to do is download its port skeleton (on demand), and then do a make in that skeleton's directory. After that, everything should be the same as it is now. Well, the ports collection is manageable now (although it takes AGES to download/cvsup), but will it be in the future? Just a thought. Dean To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 27 11:20:25 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F11EB15061 for ; Thu, 27 May 1999 11:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA36965; Thu, 27 May 1999 11:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 76E7815927; Thu, 27 May 1999 11:12:34 -0700 (PDT) Message-Id: <19990527181234.76E7815927@hub.freebsd.org> Date: Thu, 27 May 1999 11:12:34 -0700 (PDT) From: hotaru@tail.net To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11906: [games/oneko] MASTER_SITE's URL has expired Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11906 >Category: ports >Synopsis: [games/oneko] MASTER_SITE's URL has expired >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 May 27 11:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Hotaru-Ya >Release: FreeBSD 3.1-RELESE, FreeBSD 3.1-Stable >Organization: Takamagahara Applied Intercommunication Laboratory >Environment: FreeBSD ruri.tail.net 3.1-RELEASE FreeBSD 3.1-RELEASE #5: Tue May 25 00:05:32 JST 1999 root@ruri.tail.net:/usr/src/sys/compile/RURI i386 >Description: one of URL of MASTER_SITES in /usr/ports/games/oneko/Makefile has expired. new URL is available. >How-To-Repeat: >Fix: --- Makefile.dist Fri Nov 13 08:07:17 1998 +++ Makefile Fri May 28 02:42:39 1999 @@ -8,7 +8,7 @@ DISTNAME= oneko-1.2 CATEGORIES= games -MASTER_SITES= ftp://ftp.cin.nihon-u.ac.jp/pub/Linux/PJE/PJE-0.1.2/sources/xclt/ \ +MASTER_SITES= ftp://ftp.cin.nihon-u.ac.jp/pub/Linux/PJE/PJE-0.1.5/sources/xclt/ \ http://hp.vector.co.jp/authors/VA004959/oneko/ MAINTAINER= candy@kgc.co.jp >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 May 27 13:11:58 1999 Delivered-To: freebsd-ports@freebsd.org Received: from posgate.acis.com.au (posgate.acis.com.au [203.14.230.14]) by hub.freebsd.org (Postfix) with ESMTP id DF14915901 for ; Thu, 27 May 1999 13:11:47 -0700 (PDT) (envelope-from andymac@bullseye.apana.org.au) Received: from bullseye.apana.org.au (uucp@localhost) by posgate.acis.com.au (8.9.2/8.9.2/Debian/GNU) with UUCP id GAA10538; Fri, 28 May 1999 06:02:59 +1000 (EST) Received: from bullseye.apana.org.au (central.apana.org.au [203.9.107.245]) by bullseye.apana.org.au (8.8.8/8.8.8) with SMTP id VAA22992; Thu, 27 May 1999 21:52:55 +1000 (EST) (envelope-from andymac@bullseye.apana.org.au) Date: Thu, 27 May 1999 21:46:59 +1000 (EST) From: Andrew MacIntyre To: Fabrizio Invernizzi Cc: ports@FreeBSD.ORG Subject: Re: icewm configuration In-Reply-To: Message-ID: X-X-Sender: andymac@bullseye.apana.org.au MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 26 May 1999, Fabrizio Invernizzi wrote: > Can someone give me some pointer to some documentation about howto > configure icewm? I've just been playing with this myself. I didn't use an auxiliary configurator (iceconf|icepref|?) - just diddled with the configuration file and .xpms in ~/.icewm directory structure directly. I've settled on the "nice" theme although one or two of the others aren't too bad. The theme can be selected from the menu. ISTR the source tarball containing some HTML docs (not installed by the package/port AFAICT :-( ), one of which had a description of most of the options that go in the ~/.icewm/preferences file and the ~/.icewm/themes//*.theme files. It was lacking some of the colour options, but I found nearly all of these in the default.theme in one of the other theme directories, and the last one I nutted out by examining the strings in the icewm binary. The only residual wrinkle I've got is the mail icon shown when the INBOX is empty isn't the one I want and I haven't found out where its getting it from :-(. I'm using the version distributed on the 3.1 CDs (0.9.29 IIRC), but I note that icewm's patch level is ratcheting fairly rapidly (think I saw 0.9.41 go by on freshmeat). -- Andrew I MacIntyre "These thoughts are mine alone..." E-mail: andrew.macintyre@aba.gov.au (work) | Snail: PO Box 370 andymac@bullseye.apana.org.au (play) | Belconnen ACT 2616 Fido: Andrew MacIntyre, 3:620/243.18 | Australia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 27 15:20:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 80F7E14C4E for ; Thu, 27 May 1999 15:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA57268; Thu, 27 May 1999 15:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from kaa.kfunigraz.ac.at (KAA16.kfunigraz.ac.at [143.50.16.17]) by hub.freebsd.org (Postfix) with ESMTP id 876E015A30 for ; Thu, 27 May 1999 15:18:19 -0700 (PDT) (envelope-from dada@balu.kfunigraz.ac.at) Received: from balu.kfunigraz.ac.at (balu [143.50.16.16]) by kaa.kfunigraz.ac.at (8.9.2/8.9.2) with ESMTP id AAA13502 for ; Fri, 28 May 1999 00:17:08 +0200 (MDT) Received: from localhost.kfunigraz.ac.at (IDENT:qi4BZohkDZAtwPhnd/dy5fLPqD8d8ZTF@BONLINEA27.kfunigraz.ac.at [143.50.36.27]) by balu.kfunigraz.ac.at (8.9.2/8.9.2) with ESMTP id AAA15192 for ; Fri, 28 May 1999 00:17:43 +0200 (MDT) Received: (from dada@localhost) by localhost.kfunigraz.ac.at (8.8.8/x.y.z) id WAA14862; Thu, 27 May 1999 22:34:52 +0200 (CEST) (envelope-from dada) Message-Id: <199905272034.WAA14862@localhost.kfunigraz.ac.at> Date: Thu, 27 May 1999 22:34:52 +0200 (CEST) From: dada@sbox.tu-graz.ac.at Reply-To: dada@sbox.tu-graz.ac.at To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11907: new port textproc/perl2html Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11907 >Category: ports >Synopsis: new port textproc/perl2html >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: Thu May 27 15:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Martin Kammerhofer >Release: FreeBSD 2.2.8-STABLE i386 >Organization: Graz University of Technology >Environment: >Description: This port is a flex program that makes colourized HTML out of Perl program sources. It works as a standalone or a CGI program. By adding 2 lines to 'http.conf' and installing perl2html into /cgi-bin it is easily integrated with apache. This port is very similar in behaviour and structure to the textproc/c2html and textproc/java2html ports. They make a nice toolset for colourized source tree browsing. (Only a shell2html is missing). >How-To-Repeat: >Fix: <============CUT HERE PLEASE=================================================== # 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: # # perl2html # perl2html/files # perl2html/files/md5 # perl2html/patches # perl2html/patches/patch-aa # perl2html/pkg # perl2html/pkg/COMMENT # perl2html/pkg/DESCR # perl2html/pkg/PLIST # perl2html/Makefile # echo c - perl2html mkdir -p perl2html > /dev/null 2>&1 echo c - perl2html/files mkdir -p perl2html/files > /dev/null 2>&1 echo x - perl2html/files/md5 sed 's/^X//' >perl2html/files/md5 << 'END-of-perl2html/files/md5' XMD5 (perl2html-0.6.1.tar.gz) = 2c23b1cc2f74cdc25f08b5a3f2aa0adb END-of-perl2html/files/md5 echo c - perl2html/patches mkdir -p perl2html/patches > /dev/null 2>&1 echo x - perl2html/patches/patch-aa sed 's/^X//' >perl2html/patches/patch-aa << 'END-of-perl2html/patches/patch-aa' X--- Makefile.in.orig Wed May 26 19:31:36 1999 X+++ Makefile.in Thu May 27 21:54:22 1999 X@@ -9,7 +9,7 @@ X # for gzip because otherwise the load on the web server X # grows without having big benefits. X # COMPRESSION = -DCOMPRESSION=4 X-COMPRESSION = -DCOMPRESSION=1 X+COMPRESSION ?= -DCOMPRESSION=1 X X # Dont change things beyond this line. X TARGET = @PROJECT_NAME@ X@@ -40,7 +40,7 @@ X srcdir = @srcdir@ X CPPFLAGS = @CPPFLAGS@ X X-CFLAGS += -O2 -Wall X+CFLAGS ?= -O2 -Wall X ALL_CFLAGS = $(CFLAGS) -I$(srcdir) $(COMPRESSION) X X all: $(TARGET) END-of-perl2html/patches/patch-aa echo c - perl2html/pkg mkdir -p perl2html/pkg > /dev/null 2>&1 echo x - perl2html/pkg/COMMENT sed 's/^X//' >perl2html/pkg/COMMENT << 'END-of-perl2html/pkg/COMMENT' XPerl sources to HTML converter END-of-perl2html/pkg/COMMENT echo x - perl2html/pkg/DESCR sed 's/^X//' >perl2html/pkg/DESCR << 'END-of-perl2html/pkg/DESCR' XPerl2html is a syntax highlighter for Perl source code that produces a Xhighlighted html file as output. X XPerl2html offers the following features: X X - fast (single pass conversion using flex) X - doesn't change formatting - only adds tags X and properly escapes non-ascii characters X - easy integration with webservers - browse your sources colourized X - gzips http output for browsers to save bandwidth (only in CGI mode) X - documentation and manpage included END-of-perl2html/pkg/DESCR echo x - perl2html/pkg/PLIST sed 's/^X//' >perl2html/pkg/PLIST << 'END-of-perl2html/pkg/PLIST' Xbin/perl2html Xshare/doc/perl2html/AUTHORS Xshare/doc/perl2html/NEWS Xshare/doc/perl2html/README X@dirrm share/doc/perl2html END-of-perl2html/pkg/PLIST echo x - perl2html/Makefile sed 's/^X//' >perl2html/Makefile << 'END-of-perl2html/Makefile' X# New ports collection makefile for: perl2html X# Version required: 0.6.1 X# Date created: 27 May 1999 X# Whom: Martin Kammerhofer X# X# $Id$ X# X XDISTNAME= perl2html-0.6.1 XCATEGORIES= textproc www XMASTER_SITES= ${MASTER_SITE_SUNSITE} XMASTER_SITE_SUBDIR= apps/www/converters X XMAINTAINER= mkamm@gmx.net X XUSE_AUTOCONF= yes X XMAN1= perl2html.1 X X.if !defined(NOPORTDOCS) Xpost-install: X ${MKDIR} ${PREFIX}/share/doc/perl2html X.for file in AUTHORS NEWS README X ${INSTALL_MAN} ${WRKSRC}/${file} ${PREFIX}/share/doc/perl2html X.endfor X.endif X X.include END-of-perl2html/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 Thu May 27 16: 0: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AE077159E4 for ; Thu, 27 May 1999 16:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA60340; Thu, 27 May 1999 16:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 5798215067 for ; Thu, 27 May 1999 15:52:16 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id D0D6B144D; Thu, 27 May 1999 15:52:13 -0700 (PDT) Message-Id: <19990527225213.D0D6B144D@norn.ca.eu.org> Date: Thu, 27 May 1999 15:52:13 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11908: Update: graphics/gqview Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11908 >Category: ports >Synopsis: Update: graphics/gqview >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 May 27 16:00:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #215: Sat May 22 12:09:02 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: Update to 0.6.1. >How-To-Repeat: >Fix: Index: gqview/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/graphics/gqview/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- Makefile 1999/03/15 18:30:04 1.11 +++ Makefile 1999/05/27 22:38:55 @@ -1,15 +1,16 @@ # New ports collection makefile for: gqview -# Version required: 0.6.0 +# Version required: 0.6.1 # Date Created: 27 Oct 1998 # Whom: Vanilla Pooh Shu # # $Id: Makefile,v 1.11 1999/03/15 18:30:04 nectar Exp $ # -DISTNAME= gqview-0.6.0.src -PKGNAME= gqview-0.6.0 +DISTNAME= gqview-0.6.1.src +PKGNAME= gqview-0.6.1 CATEGORIES= graphics -MASTER_SITES= http://www.geocities.com/SiliconValley/Haven/5235/ +MASTER_SITES= http://gqview.netpedia.net/ \ + http://www.geocities.com/SiliconValley/Haven/5235/ EXTRACT_SUFX= .tgz MAINTAINER= nacai@iname.com Index: gqview/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/graphics/gqview/files/md5,v retrieving revision 1.4 diff -u -r1.4 md5 --- md5 1999/03/15 05:59:15 1.4 +++ md5 1999/05/27 22:39:25 @@ -1 +1 @@ -MD5 (gqview-0.6.0.src.tgz) = 6921623f19c643b59810da28275b09d6 +MD5 (gqview-0.6.1.src.tgz) = 73fd0e0f862e5fef0f034e224a27a7cf Index: gqview/patches/patch-aa =================================================================== RCS file: /cvs/FreeBSD/ports/graphics/gqview/patches/patch-aa,v retrieving revision 1.5 diff -u -r1.5 patch-aa --- patch-aa 1999/03/15 05:59:15 1.5 +++ patch-aa 1999/05/27 22:45:11 @@ -1,9 +1,9 @@ ---- Makefile.orig Thu Mar 4 19:06:41 1999 -+++ Makefile Sun Mar 14 23:52:42 1999 -@@ -1,13 +1,10 @@ +--- Makefile.orig Thu May 27 15:44:35 1999 ++++ Makefile Thu May 27 15:45:03 1999 +@@ -1,13 +1,12 @@ -PREFIX=/usr/local -- + -GTK_INCLUDE = `gtk-config --cflags` -GTK_LIB = `gtk-config --libs` +GTK_INCLUDE = `gtk12-config --cflags` @@ -13,62 +13,8 @@ -CFLAGS = $(GTK_INCLUDE) $(IMLIB_INCLUDE) +CFLAGS += $(GTK_INCLUDE) $(IMLIB_INCLUDE) LDFLAGS = $(GTK_LIB) $(IMLIB_LIB) --CC = gcc -Wall $(CFLAGS) +-CC = gcc -Wall ++CC += -Wall GNOME_PREFIX = `gnome-config --prefix` -@@ -18,38 +15,38 @@ - dnd.o pathsel.o utildlg.o utilops.o thumb.o - - gqview: $(OBJS) -- $(CC) $(OBJS) -o gqview $(LDFLAGS) -+ $(CC) $(CFLAGS) $(OBJS) -o gqview $(LDFLAGS) - - main.o : main.c $(HEADERS) -- $(CC) -c main.c -+ $(CC) $(CFLAGS) -c main.c - window.o : window.c $(HEADERS) -- $(CC) -c window.c -+ $(CC) $(CFLAGS) -c window.c - menu.o : menu.c $(HEADERS) -- $(CC) -c menu.c -+ $(CC) $(CFLAGS) -c menu.c - image.o : image.c $(HEADERS) -- $(CC) -c image.c -+ $(CC) $(CFLAGS) -c image.c - config.o : config.c $(HEADERS) -- $(CC) -c config.c -+ $(CC) $(CFLAGS) -c config.c - rcfile.o : rcfile.c $(HEADERS) -- $(CC) -c rcfile.c -+ $(CC) $(CFLAGS) -c rcfile.c - fileops.o : fileops.c $(HEADERS) -- $(CC) -c fileops.c -+ $(CC) $(CFLAGS) -c fileops.c - filelist.o : filelist.c $(HEADERS) -- $(CC) -c filelist.c -+ $(CC) $(CFLAGS) -c filelist.c - globals.o : globals.c $(HEADERS) logo.h -- $(CC) -c globals.c -+ $(CC) $(CFLAGS) -c globals.c - tabcomp.o : tabcomp.c $(HEADERS) -- $(CC) -c tabcomp.c -+ $(CC) $(CFLAGS) -c tabcomp.c - dnd.o : dnd.c $(HEADERS) -- $(CC) -c dnd.c -+ $(CC) $(CFLAGS) -c dnd.c - pathsel.o : pathsel.c $(HEADERS) -- $(CC) -c pathsel.c -+ $(CC) $(CFLAGS) -c pathsel.c - utildlg.o : utildlg.c $(HEADERS) -- $(CC) -c utildlg.c -+ $(CC) $(CFLAGS) -c utildlg.c - utilops.o : utilops.c $(HEADERS) -- $(CC) -c utilops.c -+ $(CC) $(CFLAGS) -c utilops.c - thumb.o : thumb.c $(HEADERS) -- $(CC) -c thumb.c -+ $(CC) $(CFLAGS) -c thumb.c - - install: gqview - install -c gqview $(PREFIX)/bin/gqview Index: gqview/pkg/COMMENT =================================================================== RCS file: /cvs/FreeBSD/ports/graphics/gqview/pkg/COMMENT,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 COMMENT --- COMMENT 1998/10/27 16:56:41 1.1.1.1 +++ COMMENT 1999/05/27 22:48:31 @@ -1 +1 @@ -Another gtk-base graphic file viewer. +Another gtk-based graphic file viewer. Index: gqview/pkg/DESCR =================================================================== RCS file: /cvs/FreeBSD/ports/graphics/gqview/pkg/DESCR,v retrieving revision 1.2 diff -u -r1.2 DESCR --- DESCR 1999/05/06 19:10:01 1.2 +++ DESCR 1999/05/27 22:48:22 @@ -1,6 +1,6 @@ -Another gtk-base graphic file viewer. +Another gtk-based graphic file viewer. -WWW: http://www.geocities.com/SiliconValley/Haven/5235/ +WWW: http://gqview.netpedia.net/view-over.html -Vanilla vanilla@FreeBSD.ORG -Chris >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 May 27 16:10:14 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 21D6C15187 for ; Thu, 27 May 1999 16:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA61162; Thu, 27 May 1999 16:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 1A3E7159E4 for ; Thu, 27 May 1999 16:00:39 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 78D91144D; Thu, 27 May 1999 16:00:37 -0700 (PDT) Message-Id: <19990527230037.78D91144D@norn.ca.eu.org> Date: Thu, 27 May 1999 16:00:37 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11909: Update: audio/gqmpeg Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11909 >Category: ports >Synopsis: Update: audio/gqmpeg >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 May 27 16:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #215: Sat May 22 12:09:02 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: This PR should be seen as superceding pr# 11757. Update gqmpeg to 0.6.1. Files removed: patch-ab >How-To-Repeat: >Fix: Index: gqmpeg/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/audio/gqmpeg/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- Makefile 1999/05/16 23:34:14 1.13 +++ Makefile 1999/05/27 22:41:53 @@ -1,12 +1,12 @@ # New ports collection makefile for: gqmpeg -# Version required: 0.5.2 +# Version required: 0.6.1 # Date Created: 28 Oct 1998 # Whom: Vanilla Pooh Shu # # $Id: Makefile,v 1.13 1999/05/16 23:34:14 steve Exp $ # -DISTNAME= gqmpeg-0.5.2 +DISTNAME= gqmpeg-0.6.1 CATEGORIES= audio MASTER_SITES= http://gqview.netpedia.net/ \ http://www.geocities.com/SiliconValley/Haven/5235/ @@ -19,9 +19,6 @@ USE_X_PREFIX= yes ALL_TARGET= gqmpeg - -BINGRP= kmem -BINMODE= 2555 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/gqmpeg ${PREFIX}/bin Index: gqmpeg/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/audio/gqmpeg/files/md5,v retrieving revision 1.8 diff -u -r1.8 md5 --- md5 1999/05/16 23:34:32 1.8 +++ md5 1999/05/27 22:43:09 @@ -1 +1 @@ -MD5 (gqmpeg-0.5.2.src.tgz) = 2e1be28d9aaac1af8da6236f656a12c3 +MD5 (gqmpeg-0.6.1.src.tgz) = 4d480e6c1b6e2be4e0768dfa4912882b Index: gqmpeg/patches/patch-aa =================================================================== RCS file: /cvs/FreeBSD/ports/audio/gqmpeg/patches/patch-aa,v retrieving revision 1.7 diff -u -r1.7 patch-aa --- patch-aa 1999/04/02 03:52:55 1.7 +++ patch-aa 1999/05/27 22:41:10 @@ -1,21 +1,27 @@ ---- Makefile.orig Sat Mar 27 21:38:09 1999 -+++ Makefile Tue Mar 30 01:48:05 1999 -@@ -1,13 +1,11 @@ +--- Makefile.orig Tue May 25 18:10:24 1999 ++++ Makefile Tue May 25 18:11:45 1999 +@@ -1,12 +1,11 @@ -PREFIX=/usr/local -- + -GTK_INCLUDE = `gtk-config --cflags` -GTK_LIB = `gtk-config --libs` +GTK_INCLUDE = `gtk12-config --cflags` +GTK_LIB = `gtk12-config --libs` IMLIB_INCLUDE = `imlib-config --cflags-gdk` IMLIB_LIB = `imlib-config --libs-gdk` + -CFLAGS = $(GTK_INCLUDE) $(IMLIB_INCLUDE) --LDFLAGS = $(GTK_LIB) $(IMLIB_LIB) --CC = gcc -Wall $(CFLAGS) +CFLAGS += $(GTK_INCLUDE) $(IMLIB_INCLUDE) -+LDFLAGS = $(GTK_LIB) $(IMLIB_LIB) -lkvm -+CC += -Wall $(CFLAGS) + LDFLAGS = $(GTK_LIB) $(IMLIB_LIB) + + #The following commented out lines are for replacing the stock defines on +@@ -18,7 +17,7 @@ + #for IRIX + #LDFLAGS = $(GTK_LIB) $(IMLIB_LIB) -laudio + +-CC = gcc -Wall ++CC += -Wall GNOME_PREFIX = `gnome-config --prefix` Index: gqmpeg/patches/patch-ab =================================================================== RCS file: patch-ab diff -N patch-ab --- /tmp/cvsd23521 Thu May 27 15:59:54 1999 +++ /dev/null Thu May 27 15:55:47 1999 @@ -1,75 +0,0 @@ ---- main.c.orig Tue Mar 30 01:40:15 1999 -+++ main.c Tue Mar 30 01:47:25 1999 -@@ -15,6 +15,27 @@ - #include - #include - -+#ifdef __FreeBSD__ -+#include -+#include -+#include -+#include -+#include -+#include -+ -+#ifdef FSCALE -+#define FIXED_PCTCPU FSCALE -+#endif -+ -+#ifdef FIXED_PCTCPU -+typedef long pctcpu; -+#define pctdouble(p) ((double)(p) / FIXED_PCTCPU) -+#else -+typedef double pctcpu; -+#define pctdouble(p) (p) -+#endif -+#endif -+ - static gint fast_advance = FALSE; - static gint advance_max_frame; - static gint advance_max_sec; -@@ -99,6 +120,36 @@ - #define HZ 100 /* for FreeBSD? */ - #endif - -+#ifdef __FreeBSD__ -+static gfloat check_child_cpu_usage(int childs_pid) -+{ -+ static gfloat percent_of_cpu = 0.0; -+ -+ static kvm_t *kd; -+ kd = kvm_open(NULL, NULL, NULL, O_RDONLY, "kvm_open"); -+ if (kd == NULL) return percent_of_cpu; -+ -+ { -+ static struct kinfo_proc *ki; -+ static int nproc; -+ ki = kvm_getprocs(kd, KERN_PROC_PID, childs_pid, &nproc); -+ if (nproc != 1) { -+ percent_of_cpu = 0.0; -+ } else { -+ percent_of_cpu = 100.0 * pctdouble(ki->kp_proc.p_pctcpu); -+ } -+ } -+ -+ kvm_close(kd); -+ -+ if (percent_of_cpu > 99.0) { -+ percent_of_cpu = 99; -+ } -+ -+ return percent_of_cpu; -+} -+ -+#else - static gfloat check_child_cpu_usage(int childs_pid) - { - /* needed for SGI IRIX 5.3 and 6.5 */ -@@ -197,6 +248,7 @@ - - return percent_of_cpu; - } -+#endif - - void set_song_info(gint n) - { Index: gqmpeg/pkg/COMMENT =================================================================== RCS file: /cvs/FreeBSD/ports/audio/gqmpeg/pkg/COMMENT,v retrieving revision 1.2 diff -u -r1.2 COMMENT --- COMMENT 1999/01/27 21:26:52 1.2 +++ COMMENT 1999/05/27 22:59:06 @@ -1 +1 @@ -Another gtk-base MP3 frontend. +Another gtk-based MP3 frontend. -Chris >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 May 27 18:34:52 1999 Delivered-To: freebsd-ports@freebsd.org Received: from news-ma.rhein-neckar.de (news-ma.rhein-neckar.de [193.197.90.3]) by hub.freebsd.org (Postfix) with ESMTP id 60BBB151A9 for ; Thu, 27 May 1999 18:34:47 -0700 (PDT) (envelope-from naddy@mips.rhein-neckar.de) Received: from mips.rhein-neckar.de (uucp@localhost) by news-ma.rhein-neckar.de (8.8.8/8.8.8) with bsmtp id DAA04323 for freebsd-ports@freebsd.org; Fri, 28 May 1999 03:34:46 +0200 (CEST) (envelope-from naddy@mips.rhein-neckar.de) Received: by mips.rhein-neckar.de id m10n69x-000WyXC (Debian Smail-3.2.0.101 1997-Dec-17 #2); Thu, 27 May 1999 21:49:45 +0200 (CEST) From: naddy@mips.rhein-neckar.de (Christian Weisgerber) Subject: Re: Right way to upgrade a port Date: 27 May 1999 21:49:42 +0200 Message-ID: <7ik7km$c6l$1@mips.rhein-neckar.de> References: <19990526171236.F917@fisicc-ufm.edu> To: freebsd-ports@freebsd.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Oscar Bonilla wrote: > I know! I've been bitten by it in the past. That's why I was posting. > Maybe there should be an option (upgrade?) in the package/ports system > that would do both, i mean deleting the old package without worring > about dependencies and installing the new version... just a thought. Move the /var/db/pkg//+REQUIRED_BY file to a safe place, pkg_delete the port, install the new version, move +REQUIRED_BY back. Note that if the port has sufficiently changed, the other ports depending on it will then be *broken*. -- Christian "naddy" Weisgerber naddy@mips.rhein-neckar.de >H Deutsche Transhumanismus-Mailingliste echo 'subscribe trans-de' | mail majordomo@lists.rhein-neckar.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu May 27 22:49:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from nakaji.tutrp.tut.ac.jp (nakaji.tutrp.tut.ac.jp [133.15.188.118]) by hub.freebsd.org (Postfix) with ESMTP id 8D484152D1; Thu, 27 May 1999 22:49:05 -0700 (PDT) (envelope-from nakaji@tutrp.tut.ac.jp) Received: from localhost (localhost [127.0.0.1]) by nakaji.tutrp.tut.ac.jp (8.9.3/3.7W) with ESMTP id OAA07874; Fri, 28 May 1999 14:49:03 +0900 (JST) To: gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11813: [New port] gnuplot+ From: =?iso-2022-jp?B?GyRCJEokKyQ4GyhC?= In-Reply-To: <199905210140.SAA02781@freefall.freebsd.org> References: <19990521013946.C79B314D4B@hub.freebsd.org> <199905210140.SAA02781@freefall.freebsd.org> X-Mailer: Mew version 1.94b27 on XEmacs 21.2 (Dionysos) X-Prom-Mew: Prom-Mew 1.93.2 (procmail reader for Mew) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Fri_May_28_14:47:13_1999_559)--" Content-Transfer-Encoding: 7bit Message-Id: <19990528144903C.nakaji@tutrp.tut.ac.jp> Date: Fri, 28 May 1999 14:49:03 +0900 X-Dispatcher: imput version 990425(IM115) Lines: 139 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ----Next_Part(Fri_May_28_14:47:13_1999_559)-- Content-Type: Text/Plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit Two more patch. One (diff.990524) is to install gnuplot.info and the other (patch-aa) is a replacement to use libVFlib2.so to use Japanese characters in the graphs. Please check. ----====----====----====---- NAKAJI Hiroyuki ($BCf<#(B $B909T(B) ----Next_Part(Fri_May_28_14:47:13_1999_559)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="diff.990524" diff -aruN /home/nakaji/tmp/gnuplot+/Makefile ./Makefile --- /home/nakaji/tmp/gnuplot+/Makefile Wed May 19 15:07:33 1999 +++ ./Makefile Mon May 24 15:01:52 1999 @@ -42,7 +42,10 @@ ${WRKSRC}/INSTALL.unx.plus \ ${WRKSRC}/INSTALL.win.plus \ ${WRKSRC}/README-J.plus \ - ${WRKSRC}/README.plus + ${WRKSRC}/README.plus \ + ${WRKSRC}/gp+/plus-asc.dvi \ + ${WRKSRC}/gp+/plus-ntt.dvi \ + ${WRKSRC}/gp+/plus.tex post-extract: ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/gnuplot3.7+1.1.8.patch.tar.gz ${EXTRACT_AFTER_ARGS} -C ${WRKSRC} @@ -57,9 +60,15 @@ pre-build: find ${WRKSRC} \( -name \*.orig -o -name \*~ \) -exec ${RM} -f \{} \; +post-build: + cd ${WRKSRC}/docs; ${GMAKE} info + cd ${WRKSRC}/docs; ${PATCH} --quiet -E -p1 < ${FILESDIR}/gnuplot.info.diff + post-install: @test -d ${PREFIX}/share/doc/gnuplot+ || ${MKDIR} ${PREFIX}/share/doc/gnuplot+ - @${INSTALL_DATA} ${GP_DOCS} ${PREFIX}/share/doc/gnuplot+ + ${INSTALL_DATA} ${GP_DOCS} ${PREFIX}/share/doc/gnuplot+ + ${INSTALL_DATA} ${WRKSRC}/docs/gnuplot.info ${PREFIX}/info + install-info ${PREFIX}/info/gnuplot.info ${PREFIX}/info/dir @${CAT} ${PKGDIR}/MESSAGE .include diff -aruN /home/nakaji/tmp/gnuplot+/files/gnuplot.info.diff ./files/gnuplot.info.diff --- /home/nakaji/tmp/gnuplot+/files/gnuplot.info.diff Thu Jan 1 09:00:00 1970 +++ ./files/gnuplot.info.diff Mon May 24 14:51:14 1999 @@ -0,0 +1,13 @@ +--- /home/nakaji/tmp/gnuplot.info Mon May 24 14:47:28 1999 ++++ ./gnuplot.info Mon May 24 14:49:54 1999 +@@ -1,5 +1,10 @@ + This file is gnuplot.info created by doc2info from ./gnuplot.doc. + ++INFO-DIR-SECTION 2-D graph tools ++START-INFO-DIR-ENTRY ++* Gnuplot: (gnuplot). An Interactive Plotting Program. ++END-INFO-DIR-ENTRY ++ +  + File: gnuplot.info, Node: Top, Prev: (dir), Next: gnuplot, Up: (dir) + diff -aruN /home/nakaji/tmp/gnuplot+/pkg/PLIST ./pkg/PLIST --- /home/nakaji/tmp/gnuplot+/pkg/PLIST Wed May 19 14:19:33 1999 +++ ./pkg/PLIST Mon May 24 15:02:20 1999 @@ -10,4 +10,9 @@ share/doc/gnuplot+/INSTALL.win.plus share/doc/gnuplot+/README-J.plus share/doc/gnuplot+/README.plus +share/doc/gnuplot+/plus-asc.dvi +share/doc/gnuplot+/plus-ntt.dvi +share/doc/gnuplot+/plus.tex @dirrm share/doc/gnuplot+ +@unexec install-info --delete %D/info/gnuplot.info %D/info/dir +@exec install-info %D/info/gnuplot.info %D/info/dir ----Next_Part(Fri_May_28_14:47:13_1999_559)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=patch-aa --- configure.in.orig Mon May 24 16:41:16 1999 +++ configure.in Mon May 24 16:47:57 1999 @@ -347,9 +347,9 @@ dnl check for VFlib if test "$with_vflib" != no || test "$with_gd" != no; then - gp_SEARCH_LIBDIRS(VFlib,VF_Init) + gp_SEARCH_LIBDIRS(VFlib2,VF_Init,[-lttf]) if test "$with_vflib" != no; then - if test "$ac_cv_lib_VFlib_VF_Init" = yes; then + if test "$ac_cv_lib_VFlib2_VF_Init" = yes; then gp_SEARCH_HEADERDIRS(VF.h,, AC_MSG_WARN([please add path to VFlib.h to INCLUDES in Makefile]) )dnl gp_SEARCH_HEADERDIRS @@ -358,15 +358,16 @@ AC_MSG_RESULT([- you cannot handle Japanese texts on some terminals without VFlib]) fi fi + gp_SEARCH_LIBDIRS(ttf, TT_Init_FreeType) fi dnl end vflib dnl check for Tom Boutell's gd library if test "$with_gd" != no; then if test "$ac_cv_lib_VFlib_VF_Init" = yes; then - gp_SEARCH_LIBDIRS(gd,gdSetKanjiFont,[-lVFlib]) + gp_SEARCH_LIBDIRS(gd,gdSetKanjiFont,[-lVFlib2 -lttf]) if test "$ac_cv_lib_gd_gdSetKanjiFont" = yes; then - gp_SEARCH_HEADERDIRS(gd.h,, + gp_SEARCH_HEADERDIRS(gd/gd.h,, AC_MSG_WARN([please add path to gd.h to INCLUDES in Makefile]) )dnl gp_SEARCH_HEADERDIRS AC_DEFINE(HAVE_LIBGD) @@ -374,7 +375,7 @@ else gp_SEARCH_LIBDIRS(gd,gdImageCreate) if test "$ac_cv_lib_gd_gdImageCreate" = yes; then - gp_SEARCH_HEADERDIRS(gd.h,, + gp_SEARCH_HEADERDIRS(gd/gd.h,, AC_MSG_WARN([please add path to gd.h to INCLUDES in Makefile]) )dnl gp_SEARCH_HEADERDIRS AC_DEFINE(HAVE_LIBGD) @@ -386,7 +387,7 @@ else gp_SEARCH_LIBDIRS(gd,gdImageCreate) if test "$ac_cv_lib_gd_gdImageCreate" = yes; then - gp_SEARCH_HEADERDIRS(gd.h,, + gp_SEARCH_HEADERDIRS(gd/gd.h,, AC_MSG_WARN([found gd library but not gd.h]) AC_MSG_WARN([please add path to gd.h to CPPFLAGS in Makefile]) )dnl gp_SEARCH_HEADERDIRS ----Next_Part(Fri_May_28_14:47:13_1999_559)---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 3:52:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from asteroid.svib.ru (asteroid.svib.ru [195.151.166.145]) by hub.freebsd.org (Postfix) with ESMTP id B7D3F14FC2 for ; Fri, 28 May 1999 03:52:06 -0700 (PDT) (envelope-from tarkhil@asteroid.svib.ru) Received: from shuttle.svib.ru (shuttle.svib.ru [195.151.166.144]) by asteroid.svib.ru (8.9.3/8.9.3) with ESMTP id OAA01579 for ; Fri, 28 May 1999 14:51:58 +0400 (MSD) (envelope-from tarkhil@asteroid.svib.ru) Received: from shuttle.svib.ru (minas-tirith.pol.ru [127.0.0.1]) by shuttle.svib.ru (8.9.3/8.8.8) with ESMTP id OAA09961 for ; Fri, 28 May 1999 14:55:14 +0400 (MSD) (envelope-from tarkhil@shuttle.svib.ru) Message-Id: <199905281055.OAA09961@shuttle.svib.ru> X-Mailer: exmh version 2.0.3 To: ports@freebsd.org Reply-To: tarkhil@asteroid.svib.ru Subject: Fate of wxGTK port X-URL: http://freebsd.svib.ru Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Date: Fri, 28 May 1999 14:55:13 +0400 From: Alex Povolotsky Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello! Was the port submitted? If not, why? And did anyone try to port mahogany, a multiplatform EMail client based on wxGTK? Alex. -- Alexander B. Povolotsky [ICQ 18277558] [2:5020/145] [http://freebsd.svib.ru] [tarkhil@asteroid.svib.ru] [Urgent messages: 234-9696 ÁÂ.#35442 or tarkhil@pager.express.ru] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 6:21:19 1999 Delivered-To: freebsd-ports@freebsd.org Received: from uni-sb.de (uni-sb.de [134.96.252.33]) by hub.freebsd.org (Postfix) with ESMTP id CF60114CAC for ; Fri, 28 May 1999 06:21:04 -0700 (PDT) (envelope-from schuerge@wjpserver.CS.Uni-SB.DE) Received: from cs.uni-sb.de (cs.uni-sb.de [134.96.252.31]) by uni-sb.de (8.9.3/1999031900) with ESMTP id PAA05848 for ; Fri, 28 May 1999 15:20:50 +0200 (CEST) Received: from wjpserver.cs.uni-sb.de (wjpserver.cs.uni-sb.de [134.96.247.42]) by cs.uni-sb.de (8.9.3/1999031900) with ESMTP id PAA22714; Fri, 28 May 1999 15:20:48 +0200 (CEST) Received: (from schuerge@localhost) by wjpserver.cs.uni-sb.de (8.9.3/8.9.3/wjp-SVR4/1999052600) id PAA22387; Fri, 28 May 1999 15:20:45 +0200 (MET DST) From: Thomas Schuerger Message-Id: <199905281320.PAA22387@wjpserver.cs.uni-sb.de> Subject: gnocatan To: freebsd-ports@freebsd.org Date: Fri, 28 May 1999 15:20:41 +0200 (MET DST) X-Mailer: ELM [version 2.4ME+ PL57 (25)] 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 Hi! I'd like to see a port of gnocatan, which is a Gnome version of the popular board game "Settlers of Catan". The GUI is very nice and the game is a lot of fun, too! :) It is server-based (server and client are included) and can be played over the Internet. It can be found at http://term1.dccs.com.au/~dave/gnocatan/index.html I managed to compile and it, but currently don't have the time to make a port out of it. If someone else could do that, that would be great! Ciao, Thomas. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 7:51:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E0C9B152BD; Fri, 28 May 1999 07:51:19 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA34782; Fri, 28 May 1999 07:51:19 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Date: Fri, 28 May 1999 07:51:19 -0700 (PDT) From: Message-Id: <199905281451.HAA34782@freefall.freebsd.org> To: kuriyama@FreeBSD.org, freebsd-ports@FreeBSD.org, kuriyama@FreeBSD.org Subject: Re: ports/10389: Create new port mod_jserv and JSDK 2.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Create new port mod_jserv and JSDK 2.0 Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: kuriyama Responsible-Changed-When: Fri May 28 07:50:36 PDT 1999 Responsible-Changed-Why: I'll take care of it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 13:51:19 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DBB33153A3; Fri, 28 May 1999 13:51:12 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: (from nectar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA67294; Fri, 28 May 1999 13:51:12 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Date: Fri, 28 May 1999 13:51:12 -0700 (PDT) From: Message-Id: <199905282051.NAA67294@freefall.freebsd.org> To: ade@lovett.com, nectar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11871: Port update: net/gnomeicu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: net/gnomeicu State-Changed-From-To: open->closed State-Changed-By: nectar State-Changed-When: Fri May 28 13:50:17 PDT 1999 State-Changed-Why: The port has already been updated, but thanks! You caught a change in the PLIST that I had forgotten. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 15: 0:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 24D3115353 for ; Fri, 28 May 1999 15:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA73337; Fri, 28 May 1999 15:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from gadoid.ices.cmu.edu (GADOID.ICES.CMU.EDU [128.2.214.36]) by hub.freebsd.org (Postfix) with ESMTP id 07A221532D for ; Fri, 28 May 1999 14:54:02 -0700 (PDT) (envelope-from hansen@gadoid.ices.cmu.edu) Received: (from hansen@localhost) by gadoid.ices.cmu.edu (8.9.2/8.9.2) id RAA46333; Fri, 28 May 1999 17:55:29 -0400 (EDT) (envelope-from hansen) Message-Id: <199905282155.RAA46333@gadoid.ices.cmu.edu> Date: Fri, 28 May 1999 17:55:29 -0400 (EDT) From: hansen@cmu.edu Reply-To: hansen@cmu.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11917: New port for digital circuit design Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11917 >Category: ports >Synopsis: New port for digital circuit design >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 May 28 15:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jeffery Hansen >Release: FreeBSD 3.1-RELEASE i386 >Organization: Carnegie Mellon >Environment: >Description: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # tkgate # tkgate/Makefile # tkgate/README.html # tkgate/files # tkgate/files/md5 # tkgate/pkg # tkgate/pkg/PLIST # tkgate/pkg/DESCR # tkgate/pkg/COMMENT # echo c - tkgate mkdir -p tkgate > /dev/null 2>&1 echo x - tkgate/Makefile sed 's/^X//' >tkgate/Makefile << 'END-of-tkgate/Makefile' X# New ports collection makefile for: tkgate X# Version required: 0.9 X# Date created: 28 May 1999 X# Whom: Jeffery Hansen X# X# $Id$ X# X XDISTNAME= tkgate-0.9 XCATEGORIES= cad XMASTER_SITES= http://www.cs.cmu.edu/~hansen/tkgate/ XEXTRACT_SUFX= .tgz X XMAINTAINER= hansen@cmu.edu X XUSE_IMAKE= yes X X.include END-of-tkgate/Makefile echo x - tkgate/README.html sed 's/^X//' >tkgate/README.html << 'END-of-tkgate/README.html' X X The FreeBSD Ports Collection (cad/tkgate-0.9) X

The FreeBSD Ports Collection ("cad/tkgate-0.9")


X X X

You are now in the directory for the port "cad/tkgate-0.9" (package name "tkgate-0.9"). X X

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


XA Tcl/Tk based digital circuit editor and simulator. 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-tkgate/README.html echo c - tkgate/files mkdir -p tkgate/files > /dev/null 2>&1 echo x - tkgate/files/md5 sed 's/^X//' >tkgate/files/md5 << 'END-of-tkgate/files/md5' XMD5 (tkgate-0.9.tgz) = d3e5eada21850abf43acfcdfd0407845 END-of-tkgate/files/md5 echo c - tkgate/pkg mkdir -p tkgate/pkg > /dev/null 2>&1 echo x - tkgate/pkg/PLIST sed 's/^X//' >tkgate/pkg/PLIST << 'END-of-tkgate/pkg/PLIST' X@name tkgate-0.9 X@pkgdep tcl-8.0.4 X@pkgdep tk-8.0.4 X@cwd /usr/local Xbin/tkgate Xbin/gmac Xlib/tkgate-0.9/libexec/gsim Xlib/tkgate-0.9/COPYING Xlib/tkgate-0.9/gsim.delay Xlib/tkgate-0.9/bitmaps/add.b Xlib/tkgate-0.9/bitmaps/file_open.b Xlib/tkgate-0.9/bitmaps/plus.b Xlib/tkgate-0.9/bitmaps/rungate4.xbm Xlib/tkgate-0.9/bitmaps/sim_load.b Xlib/tkgate-0.9/bitmaps/and.b Xlib/tkgate-0.9/bitmaps/file_print.b Xlib/tkgate-0.9/bitmaps/pmos.b Xlib/tkgate-0.9/bitmaps/rungate5.xbm Xlib/tkgate-0.9/bitmaps/sim_pause.b Xlib/tkgate-0.9/bitmaps/arshift.b Xlib/tkgate-0.9/bitmaps/file_save.b Xlib/tkgate-0.9/bitmaps/probe.b Xlib/tkgate-0.9/bitmaps/rungate6.xbm Xlib/tkgate-0.9/bitmaps/sim_script.b Xlib/tkgate-0.9/bitmaps/bat.b Xlib/tkgate-0.9/bitmaps/gatelogo.xbm Xlib/tkgate-0.9/bitmaps/ram.b Xlib/tkgate-0.9/bitmaps/rungate7.xbm Xlib/tkgate-0.9/bitmaps/sim_step.b Xlib/tkgate-0.9/bitmaps/bigcurs.b Xlib/tkgate-0.9/bitmaps/ground.b Xlib/tkgate-0.9/bitmaps/regLR.b Xlib/tkgate-0.9/bitmaps/rungate8.xbm Xlib/tkgate-0.9/bitmaps/sim_stop.b Xlib/tkgate-0.9/bitmaps/biggatelogo.xbm Xlib/tkgate-0.9/bitmaps/inout.b Xlib/tkgate-0.9/bitmaps/regTB.b Xlib/tkgate-0.9/bitmaps/rungate9.xbm Xlib/tkgate-0.9/bitmaps/size_curs.b Xlib/tkgate-0.9/bitmaps/buf.b Xlib/tkgate-0.9/bitmaps/inv_curs.b Xlib/tkgate-0.9/bitmaps/register.b Xlib/tkgate-0.9/bitmaps/rungateA.xbm Xlib/tkgate-0.9/bitmaps/smallcurs.b Xlib/tkgate-0.9/bitmaps/bus.b Xlib/tkgate-0.9/bitmaps/iodarrow.b Xlib/tkgate-0.9/bitmaps/roll.b Xlib/tkgate-0.9/bitmaps/rungateB.xbm Xlib/tkgate-0.9/bitmaps/smalldot.b Xlib/tkgate-0.9/bitmaps/clock.b Xlib/tkgate-0.9/bitmaps/joint.b Xlib/tkgate-0.9/bitmaps/rom.b Xlib/tkgate-0.9/bitmaps/rungateC.xbm Xlib/tkgate-0.9/bitmaps/smalllogo.xbm Xlib/tkgate-0.9/bitmaps/concat.b Xlib/tkgate-0.9/bitmaps/lab_curs.b Xlib/tkgate-0.9/bitmaps/rungate1.xbm Xlib/tkgate-0.9/bitmaps/scroll.b Xlib/tkgate-0.9/bitmaps/strek.b Xlib/tkgate-0.9/bitmaps/cut_curs.b Xlib/tkgate-0.9/bitmaps/lprobe.b Xlib/tkgate-0.9/bitmaps/rungate10.xbm Xlib/tkgate-0.9/bitmaps/seg7.b Xlib/tkgate-0.9/bitmaps/switch.b Xlib/tkgate-0.9/bitmaps/dash.b Xlib/tkgate-0.9/bitmaps/misc.b Xlib/tkgate-0.9/bitmaps/rungate11.xbm Xlib/tkgate-0.9/bitmaps/shift.b Xlib/tkgate-0.9/bitmaps/tap.b Xlib/tkgate-0.9/bitmaps/del_curs.b Xlib/tkgate-0.9/bitmaps/mov_curs.b Xlib/tkgate-0.9/bitmaps/rungate12.xbm Xlib/tkgate-0.9/bitmaps/sim_break.b Xlib/tkgate-0.9/bitmaps/trek.b Xlib/tkgate-0.9/bitmaps/dip.b Xlib/tkgate-0.9/bitmaps/mult.b Xlib/tkgate-0.9/bitmaps/rungate13.xbm Xlib/tkgate-0.9/bitmaps/sim_break2.b Xlib/tkgate-0.9/bitmaps/tty.b Xlib/tkgate-0.9/bitmaps/divide.b Xlib/tkgate-0.9/bitmaps/mux.b Xlib/tkgate-0.9/bitmaps/rungate14.xbm Xlib/tkgate-0.9/bitmaps/sim_clock.b Xlib/tkgate-0.9/bitmaps/txtcurs.b Xlib/tkgate-0.9/bitmaps/dot.b Xlib/tkgate-0.9/bitmaps/nmos.b Xlib/tkgate-0.9/bitmaps/rungate2.xbm Xlib/tkgate-0.9/bitmaps/sim_dump.b Xlib/tkgate-0.9/bitmaps/vdd.b Xlib/tkgate-0.9/bitmaps/file_new.b Xlib/tkgate-0.9/bitmaps/or.b Xlib/tkgate-0.9/bitmaps/rungate3.xbm Xlib/tkgate-0.9/bitmaps/sim_go.b Xlib/tkgate-0.9/bitmaps/xor.b Xlib/tkgate-0.9/scripts/blocklist.tcl Xlib/tkgate-0.9/scripts/editnets.tcl Xlib/tkgate-0.9/scripts/license.tcl Xlib/tkgate-0.9/scripts/parms.tcl Xlib/tkgate-0.9/scripts/simtty.tcl Xlib/tkgate-0.9/scripts/circuit.tcl Xlib/tkgate-0.9/scripts/errbox.tcl Xlib/tkgate-0.9/scripts/menu.tcl Xlib/tkgate-0.9/scripts/portlist.tcl Xlib/tkgate-0.9/scripts/simulator.tcl Xlib/tkgate-0.9/scripts/commands.tcl Xlib/tkgate-0.9/scripts/frame.tcl Xlib/tkgate-0.9/scripts/message.tcl Xlib/tkgate-0.9/scripts/print.tcl Xlib/tkgate-0.9/scripts/status.tcl Xlib/tkgate-0.9/scripts/dip.tcl Xlib/tkgate-0.9/scripts/gcanvas.tcl Xlib/tkgate-0.9/scripts/misc.tcl Xlib/tkgate-0.9/scripts/scope.tcl Xlib/tkgate-0.9/scripts/tkgate.tcl Xlib/tkgate-0.9/scripts/editgate.tcl Xlib/tkgate-0.9/scripts/helpon.tcl Xlib/tkgate-0.9/scripts/options.tcl Xlib/tkgate-0.9/scripts/shortcuts.tcl Xlib/tkgate-0.9/scripts/toolbar.tcl Xlib/tkgate-0.9/examples/ex1/combinational.v Xlib/tkgate-0.9/examples/ex2/counter.v Xlib/tkgate-0.9/examples/ex3/trff.v Xlib/tkgate-0.9/examples/ex4/menagerie.gm Xlib/tkgate-0.9/examples/ex4/menagerie.gss Xlib/tkgate-0.9/examples/ex4/menagerie.mem Xlib/tkgate-0.9/examples/ex4/menagerie.v Xlib/tkgate-0.9/examples/tutorials/create_tut.v Xlib/tkgate-0.9/examples/tutorials/edit1_tut.v Xlib/tkgate-0.9/examples/tutorials/edit2_tut.v Xlib/tkgate-0.9/examples/tutorials/module_tut.v Xlib/tkgate-0.9/examples/tutorials/sim_tut.v Xlib/tkgate-0.9/doc/documentation.txt Xlib/tkgate-0.9/doc/gateEdit.html Xlib/tkgate-0.9/doc/gateGmac.html Xlib/tkgate-0.9/doc/gateIntro.html Xlib/tkgate-0.9/doc/gateSim.html Xlib/tkgate-0.9/doc/license.txt Xlib/tkgate-0.9/doc/menagerie.gm Xlib/tkgate-0.9/doc/tkgate-0.9.html Xlib/tkgate-0.9/doc/fig/arrow.gif Xlib/tkgate-0.9/doc/fig/arrow4.gif Xlib/tkgate-0.9/doc/fig/balloon.gif Xlib/tkgate-0.9/doc/fig/bigcurs.b Xlib/tkgate-0.9/doc/fig/biggatelogo.xbm Xlib/tkgate-0.9/doc/fig/break.gif Xlib/tkgate-0.9/doc/fig/chdir.gif Xlib/tkgate-0.9/doc/fig/circprop.gif Xlib/tkgate-0.9/doc/fig/connect1a.gif Xlib/tkgate-0.9/doc/fig/connect1b.gif Xlib/tkgate-0.9/doc/fig/connect1c.gif Xlib/tkgate-0.9/doc/fig/connect1d.gif Xlib/tkgate-0.9/doc/fig/connect2a.gif Xlib/tkgate-0.9/doc/fig/connect2b.gif Xlib/tkgate-0.9/doc/fig/connect2c.gif Xlib/tkgate-0.9/doc/fig/connect2d.gif Xlib/tkgate-0.9/doc/fig/cretgat1.gif Xlib/tkgate-0.9/doc/fig/cretgat2.gif Xlib/tkgate-0.9/doc/fig/cretgat3.gif Xlib/tkgate-0.9/doc/fig/cretgat4.gif Xlib/tkgate-0.9/doc/fig/cretin.gif Xlib/tkgate-0.9/doc/fig/cretinout.gif Xlib/tkgate-0.9/doc/fig/cretout.gif Xlib/tkgate-0.9/doc/fig/cutters.gif Xlib/tkgate-0.9/doc/fig/dipval.gif Xlib/tkgate-0.9/doc/fig/edbreak.gif Xlib/tkgate-0.9/doc/fig/edclock.gif Xlib/tkgate-0.9/doc/fig/ednet.gif Xlib/tkgate-0.9/doc/fig/edpnet.gif Xlib/tkgate-0.9/doc/fig/filemenu.gif Xlib/tkgate-0.9/doc/fig/fileopen.gif Xlib/tkgate-0.9/doc/fig/g_add.gif Xlib/tkgate-0.9/doc/fig/g_and.gif Xlib/tkgate-0.9/doc/fig/g_arshift.gif Xlib/tkgate-0.9/doc/fig/g_block.gif Xlib/tkgate-0.9/doc/fig/g_buf.gif Xlib/tkgate-0.9/doc/fig/g_bufif.gif Xlib/tkgate-0.9/doc/fig/g_clock.gif Xlib/tkgate-0.9/doc/fig/g_demux.gif Xlib/tkgate-0.9/doc/fig/g_dip.gif Xlib/tkgate-0.9/doc/fig/g_div.gif Xlib/tkgate-0.9/doc/fig/g_ground.gif Xlib/tkgate-0.9/doc/fig/g_lshift.gif Xlib/tkgate-0.9/doc/fig/g_merge.gif Xlib/tkgate-0.9/doc/fig/g_mul.gif Xlib/tkgate-0.9/doc/fig/g_mux.gif Xlib/tkgate-0.9/doc/fig/g_nmos.gif Xlib/tkgate-0.9/doc/fig/g_or.gif Xlib/tkgate-0.9/doc/fig/g_pmos.gif Xlib/tkgate-0.9/doc/fig/g_ram.gif Xlib/tkgate-0.9/doc/fig/g_red.gif Xlib/tkgate-0.9/doc/fig/g_reg.gif Xlib/tkgate-0.9/doc/fig/g_roll.gif Xlib/tkgate-0.9/doc/fig/g_rom.gif Xlib/tkgate-0.9/doc/fig/g_rshift.gif Xlib/tkgate-0.9/doc/fig/g_supply.gif Xlib/tkgate-0.9/doc/fig/g_switch.gif Xlib/tkgate-0.9/doc/fig/g_tap.gif Xlib/tkgate-0.9/doc/fig/g_tty.gif Xlib/tkgate-0.9/doc/fig/g_xor.gif Xlib/tkgate-0.9/doc/fig/gatelogo.xbm Xlib/tkgate-0.9/doc/fig/gateport.gif Xlib/tkgate-0.9/doc/fig/gatewin.gif Xlib/tkgate-0.9/doc/fig/icextract.gif Xlib/tkgate-0.9/doc/fig/inout.gif Xlib/tkgate-0.9/doc/fig/invaddel.gif Xlib/tkgate-0.9/doc/fig/label.gif Xlib/tkgate-0.9/doc/fig/logic.gif Xlib/tkgate-0.9/doc/fig/logic0.gif Xlib/tkgate-0.9/doc/fig/logic1.gif Xlib/tkgate-0.9/doc/fig/logicH.gif Xlib/tkgate-0.9/doc/fig/logicL.gif Xlib/tkgate-0.9/doc/fig/logicx.gif Xlib/tkgate-0.9/doc/fig/logicz.gif Xlib/tkgate-0.9/doc/fig/makeand.gif Xlib/tkgate-0.9/doc/fig/misc.b Xlib/tkgate-0.9/doc/fig/modcreate.gif Xlib/tkgate-0.9/doc/fig/movgat1.gif Xlib/tkgate-0.9/doc/fig/movgat2.gif Xlib/tkgate-0.9/doc/fig/movgrp1.gif Xlib/tkgate-0.9/doc/fig/movgrp2.gif Xlib/tkgate-0.9/doc/fig/movgrp3.gif Xlib/tkgate-0.9/doc/fig/movgrp4.gif Xlib/tkgate-0.9/doc/fig/options.gif Xlib/tkgate-0.9/doc/fig/powerbsd.gif Xlib/tkgate-0.9/doc/fig/printdlg.gif Xlib/tkgate-0.9/doc/fig/ptr.gif Xlib/tkgate-0.9/doc/fig/rungate1.xbm Xlib/tkgate-0.9/doc/fig/rungate2.xbm Xlib/tkgate-0.9/doc/fig/scope.gif Xlib/tkgate-0.9/doc/fig/search.gif Xlib/tkgate-0.9/doc/fig/showval.gif Xlib/tkgate-0.9/doc/fig/sim_break.b Xlib/tkgate-0.9/doc/fig/sim_clock.b Xlib/tkgate-0.9/doc/fig/sim_break2.b Xlib/tkgate-0.9/doc/fig/sim_dump.b Xlib/tkgate-0.9/doc/fig/sim_go.b Xlib/tkgate-0.9/doc/fig/sim_load.b Xlib/tkgate-0.9/doc/fig/sim_pause.b Xlib/tkgate-0.9/doc/fig/sim_script.b Xlib/tkgate-0.9/doc/fig/sim_step.b Xlib/tkgate-0.9/doc/fig/sim_stop.b Xlib/tkgate-0.9/doc/fig/simerr.gif Xlib/tkgate-0.9/doc/fig/simopts.gif Xlib/tkgate-0.9/doc/fig/simprint.gif Xlib/tkgate-0.9/doc/fig/small_tkgate.gif Xlib/tkgate-0.9/doc/fig/smallcurs.b Xlib/tkgate-0.9/doc/fig/solder.gif Xlib/tkgate-0.9/doc/fig/text.gif Xlib/tkgate-0.9/doc/fig/tkgate.gif Xlib/tkgate-0.9/doc/fig/wsize.gif Xlib/tkgate-0.9/doc/fig/xmark.gif X@dirrm lib/tkgate-0.9/bitmaps X@dirrm lib/tkgate-0.9/scripts X@dirrm lib/tkgate-0.9/doc/fig X@dirrm lib/tkgate-0.9/doc X@dirrm lib/tkgate-0.9/libexec X@dirrm lib/tkgate-0.9/examples/ex1 X@dirrm lib/tkgate-0.9/examples/ex2 X@dirrm lib/tkgate-0.9/examples/ex3 X@dirrm lib/tkgate-0.9/examples/ex4 X@dirrm lib/tkgate-0.9/examples/tutorials X@dirrm lib/tkgate-0.9/examples X@dirrm lib/tkgate-0.9 END-of-tkgate/pkg/PLIST echo x - tkgate/pkg/DESCR sed 's/^X//' >tkgate/pkg/DESCR << 'END-of-tkgate/pkg/DESCR' XTkGate is a digital circuit editor and simulator with a Tcl/Tk based Xinterface. TkGate includes a large number of built-in devices Xincluding basic gates, memories, ttys and modules for hierarchical Xdesign. The simulator can be controlled either interactively or Xthrough a simulation script. Memory contents can be loaded from Xfiles, and a microcode/macrocode compiler (gmac) is included to create Xtkgate memory files from a high-level description. The simulator Xsupports continous simulation, single step simulation (by clock or Xepoch) and breakpoints. Save files are in a Verilog-like format. X XTkGate also includes a number of tutorial and example circuits which Xcan be loaded through the "Help" menu. The examples range from a Xsimple gate-level 3-bit adder to a 16-bit CPU programmed to play the X"Animals" game. X XFor more information on TkGate, see the TkGate web site at: X X http://www.cs.cmu.edu/~hansen/tkgate X X X XProgram and FreeBSD port by: X Jeffery Hansen X http://www.cs.cmu.edu/~hansen END-of-tkgate/pkg/DESCR echo x - tkgate/pkg/COMMENT sed 's/^X//' >tkgate/pkg/COMMENT << 'END-of-tkgate/pkg/COMMENT' XA Tcl/Tk based digital circuit editor and simulator. END-of-tkgate/pkg/COMMENT 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 Fri May 28 16: 0: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C9AA15020 for ; Fri, 28 May 1999 16:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA78556; Fri, 28 May 1999 16:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 9032415077 for ; Fri, 28 May 1999 15:52:01 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 5B4AF1485; Fri, 28 May 1999 15:51:58 -0700 (PDT) Message-Id: <19990528225158.5B4AF1485@norn.ca.eu.org> Date: Fri, 28 May 1999 15:51:58 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11918: Update: x11-wm/blackbox Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11918 >Category: ports >Synopsis: Update: x11-wm/blackbox >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 May 28 16:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #215: Sat May 22 12:09:02 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: Update to 0.50.5 and set myself as maintainer. Files removed: patch-ae >How-To-Repeat: >Fix: Index: blackbox/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/x11-wm/blackbox/Makefile,v retrieving revision 1.20 diff -u -r1.20 Makefile --- Makefile 1999/05/01 02:15:38 1.20 +++ Makefile 1999/05/28 22:35:48 @@ -1,18 +1,18 @@ # New ports collection makefile for: Blackbox -# Version required: 0.50.4 +# Version required: 0.50.5 # Date created: June 15, 1998 # Whom: Brian Handy # # $Id: Makefile,v 1.20 1999/05/01 02:15:38 steve Exp $ # -DISTNAME= blackbox-0.50.4 +DISTNAME= blackbox-0.50.5 CATEGORIES= x11-wm MASTER_SITES= ftp://balance.wiw.org/pub/blackbox/ \ ftp://ftp.dti.ad.jp/pub/X/blackbox/ \ ftp://ftp.max.irk.ru/unix/x/wm/ -MAINTAINER= ports@FreeBSD.ORG +MAINTAINER= cpiazza@home.net USE_X_PREFIX= yes GNU_CONFIGURE= yes @@ -31,5 +31,8 @@ @ ${ECHO_MSG} CONFIGURE_ARGS= --enable-kde .endif + +post-extract: + @ ${RM} ${WRKSRC}/config.cache .include Index: blackbox/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/x11-wm/blackbox/files/md5,v retrieving revision 1.17 diff -u -r1.17 md5 --- md5 1999/03/24 03:36:21 1.17 +++ md5 1999/05/28 22:26:52 @@ -1 +1 @@ -MD5 (blackbox-0.50.4.tar.bz2) = 983f5bf6baadefc5492013a829d61d6e +MD5 (blackbox-0.50.5.tar.bz2) = e76943294f28427071734d2cc4a82100 Index: blackbox/pkg/PLIST =================================================================== RCS file: /cvs/FreeBSD/ports/x11-wm/blackbox/pkg/PLIST,v retrieving revision 1.8 diff -u -r1.8 PLIST --- PLIST 1999/03/24 03:36:22 1.8 +++ PLIST 1999/05/28 22:39:17 @@ -1,6 +1,5 @@ bin/blackbox bin/bsetroot -share/Blackbox/rc share/Blackbox/menu share/Blackbox/styles/blackmagic share/Blackbox/styles/coldsteel -Chris >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 May 28 16:28:35 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mordred.cs.ucla.edu (Mordred.CS.UCLA.EDU [131.179.192.128]) by hub.freebsd.org (Postfix) with ESMTP id 2B396156B4 for ; Fri, 28 May 1999 16:28:29 -0700 (PDT) (envelope-from scottm@mordred.cs.ucla.edu) Received: (from scottm@localhost) by mordred.cs.ucla.edu (8.9.3/8.9.3) id QAA13514 for freebsd-ports@freebsd.org; Fri, 28 May 1999 16:28:28 -0700 (PDT) (envelope-from scottm) Date: Fri, 28 May 1999 16:28:28 -0700 (PDT) From: Scott Michel Message-Id: <199905282328.QAA13514@mordred.cs.ucla.edu> To: freebsd-ports@freebsd.org Subject: MD5 checksum for x11/XFree86/3.3.3-3.3.3.1.diff.gz Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This needs to be updated, otherwise port will not compile as is. -scooter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 17:49:26 1999 Delivered-To: freebsd-ports@freebsd.org Received: from web219.mail.yahoo.com (web219.mail.yahoo.com [128.11.68.119]) by hub.freebsd.org (Postfix) with SMTP id 21A4014C19 for ; Fri, 28 May 1999 17:49:24 -0700 (PDT) (envelope-from r4400@yahoo.com) Message-ID: <19990529005225.21880.rocketmail@web219.mail.yahoo.com> Received: from [207.210.110.200] by web219.mail.yahoo.com; Fri, 28 May 1999 17:52:25 PDT Date: Fri, 28 May 1999 17:52:25 -0700 (PDT) From: sgi mips Subject: netscape 4.6 To: ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org might want to add the new netscape, version 4.6, to the ports collection. r4400 _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 19:41: 2 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ADACB14EED; Fri, 28 May 1999 19:41:01 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA94780; Fri, 28 May 1999 19:41:01 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 19:41:01 -0700 (PDT) From: Message-Id: <199905290241.TAA94780@freefall.freebsd.org> To: jim@blues.ghis.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11757: update port: gqmpeg-0.5.2 to 0.5.99 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: gqmpeg-0.5.2 to 0.5.99 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 19:40:43 PDT 1999 State-Changed-Why: Superceded by 11909. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 20:20: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1220D15097 for ; Fri, 28 May 1999 20:20:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA96863; Fri, 28 May 1999 20:20:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id DEA1414F96; Fri, 28 May 1999 20:13:08 -0700 (PDT) Message-Id: <19990529031308.DEA1414F96@hub.freebsd.org> Date: Fri, 28 May 1999 20:13:08 -0700 (PDT) From: pfgiffun@bachue.usc.unal.edu.co To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11923: Wrong MASTERSITE in hobbes-icons port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11923 >Category: ports >Synopsis: Wrong MASTERSITE in hobbes-icons 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: Fri May 28 20:20:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Pedro F. Giffuni >Release: 3.1.-Release >Organization: Universidad Nacional de de Colombia >Environment: >Description: This message in my inbox explains it all: _______________________________ Hi, After wondering for a few weeks why users from all over the world are attempting to access ftp.pacbell.com, I discovered a number of outdated links and web page references. http://ftp.tu-clausthal.de/pub/EXPERT/mirror/hosts/ftp.freebsd.org/ports/por ts-current/graphics/hobbes-icons-xpm/Makefile is one of them and has a reference to ftp.pacbell.com under MASTER_SITES. We're not mirroring any X11 sites and it would be great if you could update your makefile to remove the reference to ftp.pacbell.com. Thanks. George >How-To-Repeat: >Fix: remove pacbel.com from the ports that are related, starting with hobbes This is my recomendation for Slingshot (which should the same ftp sites) MASTER_SITES= ftp://ftp.cdrom.com/pub/X11/R5contrib/ \ ftp://ftp.x.org/R5contrib/ >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 May 28 20:45:23 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2586514FC8; Fri, 28 May 1999 20:45:21 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA98325; Fri, 28 May 1999 20:45:21 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 20:45:21 -0700 (PDT) From: Message-Id: <199905290345.UAA98325@freefall.freebsd.org> To: reg@shale.csir.co.za, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11839: Port change: devel/libtool Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port change: devel/libtool State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 20:41:30 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 20:48:21 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 94C091514B; Fri, 28 May 1999 20:48:20 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA98846; Fri, 28 May 1999 20:48:20 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 20:48:20 -0700 (PDT) From: Message-Id: <199905290348.UAA98846@freefall.freebsd.org> To: reg@shale.csir.co.za, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11841: Port update: devel/glib12 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: devel/glib12 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 20:48:04 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 20:52:14 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 237A514FC5; Fri, 28 May 1999 20:52:12 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA99241; Fri, 28 May 1999 20:52:11 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 20:52:11 -0700 (PDT) From: Message-Id: <199905290352.UAA99241@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11902: Update: audio/xhippo Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: audio/xhippo State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 20:51:20 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 20:53:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A4C1215166; Fri, 28 May 1999 20:53:10 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA99385; Fri, 28 May 1999 20:53:10 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 20:53:10 -0700 (PDT) From: Message-Id: <199905290353.UAA99385@freefall.freebsd.org> To: reg@shale.csir.co.za, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11842: Port update: x11-toolkits/gtk12 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: x11-toolkits/gtk12 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 20:52:51 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21: 2:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C20521557A; Fri, 28 May 1999 21:02:10 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA00868; Fri, 28 May 1999 21:02:10 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:02:10 -0700 (PDT) From: Message-Id: <199905290402.VAA00868@freefall.freebsd.org> To: reg@shale.csir.co.za, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11843: Port change: graphics/imlib Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port change: graphics/imlib State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:00:44 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21: 5:42 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 85D8A1513A; Fri, 28 May 1999 21:05:40 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA01145; Fri, 28 May 1999 21:05:40 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:05:40 -0700 (PDT) From: Message-Id: <199905290405.VAA01145@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11831: Update: graphics/gview Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: graphics/gview State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:02:40 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21: 7:51 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7E8BC14F65; Fri, 28 May 1999 21:07:50 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA01358; Fri, 28 May 1999 21:07:50 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:07:50 -0700 (PDT) From: Message-Id: <199905290407.VAA01358@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11909: Update: audio/gqmpeg Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: audio/gqmpeg State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:06:23 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21:13:19 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4933514F65; Fri, 28 May 1999 21:13:17 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA02070; Fri, 28 May 1999 21:13:17 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:13:17 -0700 (PDT) From: Message-Id: <199905290413.VAA02070@freefall.freebsd.org> To: dervish@bantu.cl.msu.edu, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11895: Checksum mismatch for aterm-0.3.6.tar.gz Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Checksum mismatch for aterm-0.3.6.tar.gz State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:12:04 PDT 1999 State-Changed-Why: Fixed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21:14:47 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B764314F65; Fri, 28 May 1999 21:14:46 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA02306; Fri, 28 May 1999 21:14:46 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:14:46 -0700 (PDT) From: Message-Id: <199905290414.VAA02306@freefall.freebsd.org> To: dada@sbox.tu-graz.ac.at, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11904: port textproc/c2html update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port textproc/c2html update State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:13:51 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21:16: 2 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EAD76151CC; Fri, 28 May 1999 21:16:00 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA02501; Fri, 28 May 1999 21:16:00 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:16:00 -0700 (PDT) From: Message-Id: <199905290416.VAA02501@freefall.freebsd.org> To: reg@shale.csir.co.za, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11845: Port update: graphics/gimp1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: graphics/gimp1 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:15:25 PDT 1999 State-Changed-Why: Update commited, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21:18:17 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BD83415C0F; Fri, 28 May 1999 21:18:13 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA02817; Fri, 28 May 1999 21:18:13 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:18:13 -0700 (PDT) From: Message-Id: <199905290418.VAA02817@freefall.freebsd.org> To: reg@shale.csir.co.za, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11848: Port update: devel/glade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: devel/glade State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:17:22 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21:22: 0 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 33AF215226; Fri, 28 May 1999 21:21:59 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA03234; Fri, 28 May 1999 21:21:58 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:21:58 -0700 (PDT) From: Message-Id: <199905290421.VAA03234@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11908: Update: graphics/gqview Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: graphics/gqview State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:21:33 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21:23:31 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C103E1528F; Fri, 28 May 1999 21:23:30 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA03404; Fri, 28 May 1999 21:23:30 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:23:30 -0700 (PDT) From: Message-Id: <199905290423.VAA03404@freefall.freebsd.org> To: lkoeller@cc.fh-lippe.de, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11836: Upgrade of grace port from 5.0.1a to 5.0.2b Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Upgrade of grace port from 5.0.1a to 5.0.2b State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:22:32 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21:24:48 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 360CE152B9; Fri, 28 May 1999 21:24:47 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA03600; Fri, 28 May 1999 21:24:46 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:24:46 -0700 (PDT) From: Message-Id: <199905290424.VAA03600@freefall.freebsd.org> To: reg@shale.csir.co.za, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11846: Port change: graphics/gtkfig Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port change: graphics/gtkfig State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:23:55 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21:26:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4663A151B5; Fri, 28 May 1999 21:26:09 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA03770; Fri, 28 May 1999 21:26:09 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:26:09 -0700 (PDT) From: Message-Id: <199905290426.VAA03770@freefall.freebsd.org> To: reg@shale.csir.co.za, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11850: Port update: x11-toolkits/gtkstep Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: x11-toolkits/gtkstep State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:25:14 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21:28:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DFF521558B; Fri, 28 May 1999 21:28:01 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA03961; Fri, 28 May 1999 21:28:01 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:28:01 -0700 (PDT) From: Message-Id: <199905290428.VAA03961@freefall.freebsd.org> To: dada@sbox.tu-graz.ac.at, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11897: port textproc/java2html update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port textproc/java2html update State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:27:18 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21:30:21 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4DF3514E8C; Fri, 28 May 1999 21:29:55 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA04119; Fri, 28 May 1999 21:29:55 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:29:55 -0700 (PDT) From: Message-Id: <199905290429.VAA04119@freefall.freebsd.org> To: reg@shale.csir.co.za, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11854: Port fixup: audio/libmikmod Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port fixup: audio/libmikmod State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:28:38 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21:31:31 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DB33E14DC5; Fri, 28 May 1999 21:31:29 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA04273; Fri, 28 May 1999 21:31:29 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:31:29 -0700 (PDT) From: Message-Id: <199905290431.VAA04273@freefall.freebsd.org> To: shanee@augusta.de, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11834: strange logsurfer behaviour Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: strange logsurfer behaviour State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:30:24 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21:32:58 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 120E515CD0; Fri, 28 May 1999 21:32:49 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA04535; Fri, 28 May 1999 21:32:48 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:32:48 -0700 (PDT) From: Message-Id: <199905290432.VAA04535@freefall.freebsd.org> To: reg@shale.csir.co.za, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11847: Port update: misc/mc Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: misc/mc State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:31:59 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21:36:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D0EC15CDF; Fri, 28 May 1999 21:35:05 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA04773; Fri, 28 May 1999 21:35:05 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:35:05 -0700 (PDT) From: Message-Id: <199905290435.VAA04773@freefall.freebsd.org> To: hotaru@tail.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11906: [games/oneko] MASTER_SITE's URL has expired Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [games/oneko] MASTER_SITE's URL has expired State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:33:39 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21:36:41 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DC575150BD; Fri, 28 May 1999 21:36:35 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA04944; Fri, 28 May 1999 21:36:35 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:36:35 -0700 (PDT) From: Message-Id: <199905290436.VAA04944@freefall.freebsd.org> To: reg@shale.csir.co.za, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11851: Port update: x11-toolkits/p5-GTK Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: x11-toolkits/p5-GTK State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:35:20 PDT 1999 State-Changed-Why: Update commited, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21:38:37 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 99A8415ADA; Fri, 28 May 1999 21:38:29 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA05118; Fri, 28 May 1999 21:38:29 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:38:29 -0700 (PDT) From: Message-Id: <199905290438.VAA05118@freefall.freebsd.org> To: reg@shale.csir.co.za, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11855: Port fixup: net/radiusclient Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port fixup: net/radiusclient State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:37:09 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21:39:45 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1DA9D14E8B; Fri, 28 May 1999 21:39:43 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA05310; Fri, 28 May 1999 21:39:43 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:39:43 -0700 (PDT) From: Message-Id: <199905290439.VAA05310@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11894: Port update: graphics/tgif-nls to 4.1.14 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: graphics/tgif-nls to 4.1.14 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:38:54 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21:41:33 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E97E115C51; Fri, 28 May 1999 21:41:27 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA05646; Fri, 28 May 1999 21:41:27 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:41:27 -0700 (PDT) From: Message-Id: <199905290441.VAA05646@freefall.freebsd.org> To: sheldonh@uunet.co.za, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11833: [PATCH] Fix xosview's SwapMeter for 4.0-CURRENT Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] Fix xosview's SwapMeter for 4.0-CURRENT State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:40:02 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21:42:38 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4ACF214C03; Fri, 28 May 1999 21:42:36 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA05796; Fri, 28 May 1999 21:42:36 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:42:36 -0700 (PDT) From: Message-Id: <199905290442.VAA05796@freefall.freebsd.org> To: reg@shale.csir.co.za, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11853: Port update: net/yagirc Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: net/yagirc State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:41:53 PDT 1999 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri May 28 21:45:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 53B6C15C31; Fri, 28 May 1999 21:45:07 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA06092; Fri, 28 May 1999 21:45:07 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Fri, 28 May 1999 21:45:07 -0700 (PDT) From: Message-Id: <199905290445.VAA06092@freefall.freebsd.org> To: cpiazza@home.net, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11835: New port: aumix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: aumix State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Fri May 28 21:44:31 PDT 1999 State-Changed-Why: New port committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 29 0:52:23 1999 Delivered-To: freebsd-ports@freebsd.org Received: from beast.freibergnet.de (beast.freibergnet.de [194.123.255.5]) by hub.freebsd.org (Postfix) with ESMTP id C572114E44 for ; Sat, 29 May 1999 00:52:19 -0700 (PDT) (envelope-from mw@beast.freibergnet.de) Received: (from mw@localhost) by beast.freibergnet.de (8.8.8/8.8.8) id JAA17355; Sat, 29 May 1999 09:52:15 +0200 (CEST) (envelope-from mw) From: Martin Welk Message-Id: <199905290752.JAA17355@beast.freibergnet.de> Subject: Re: netscape 4.6 In-Reply-To: <19990529005225.21880.rocketmail@web219.mail.yahoo.com> from sgi mips at "May 28, 99 05:52:25 pm" To: r4400@yahoo.com (sgi mips) Date: Sat, 29 May 1999 09:52:15 +0200 (CEST) Cc: ports@FreeBSD.ORG Reply-To: mw@freibergnet.de Organization: Liebscher & Partner, Freiberg X-Phone: [+49|0] 3731 781386 X-PGP-Fingerprint: D3 C0 49 7D 8C B6 FC 97 F7 F4 1B DF 09 0E 15 2A X-Mailer: ELM [version 2.4ME+ PL31 (25)] 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 sgi mips writes: () might want to add the new netscape, version 4.6, to the ports collection. It is already, AFAIR longer than a week. Consider updating your ports tree, or get at least the new netscape port. Regards, Martin -- FreibergNet Systemhaus GbR Martin Welk * Sales, Support Systemhaus für Daten- und Netzwerktechnik phone +49 3731 781387 Unternehmensgruppe Liebscher & Partner fax +49 3731 781377 D-09599 Freiberg * Am St. Niclas Schacht 13 http://www.freibergnet.de/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 29 1:33:29 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EFC8114D4F; Sat, 29 May 1999 01:33:28 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA17933; Sat, 29 May 1999 01:33:28 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Date: Sat, 29 May 1999 01:33:28 -0700 (PDT) From: Message-Id: <199905290833.BAA17933@freefall.freebsd.org> To: cjh@kr.freebsd.org, kuriyama@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11684: new port: korean/hanIM Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: korean/hanIM State-Changed-From-To: open->closed State-Changed-By: kuriyama State-Changed-When: Sat May 29 01:33:06 PDT 1999 State-Changed-Why: Committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 29 2:37:37 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E7B4A14D4E; Sat, 29 May 1999 02:37:36 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA21862; Sat, 29 May 1999 02:37:36 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Sat, 29 May 1999 02:37:36 -0700 (PDT) From: Message-Id: <199905290937.CAA21862@freefall.freebsd.org> To: cpiazza@home.net, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11918: Update: x11-wm/blackbox Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: x11-wm/blackbox State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Sat May 29 02:36:02 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 29 2:43:22 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 68A5A15C35; Sat, 29 May 1999 02:43:19 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA22232; Sat, 29 May 1999 02:43:19 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Sat, 29 May 1999 02:43:19 -0700 (PDT) From: Message-Id: <199905290943.CAA22232@freefall.freebsd.org> To: pfgiffun@bachue.usc.unal.edu.co, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11923: Wrong MASTERSITE in hobbes-icons port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Wrong MASTERSITE in hobbes-icons port State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Sat May 29 02:43:01 PDT 1999 State-Changed-Why: Thanks for noticing this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 29 3:40: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B6A6814E09 for ; Sat, 29 May 1999 03:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA28927; Sat, 29 May 1999 03:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id DC6A914E55; Sat, 29 May 1999 03:38:35 -0700 (PDT) Message-Id: <19990529103835.DC6A914E55@hub.freebsd.org> Date: Sat, 29 May 1999 03:38:35 -0700 (PDT) From: taguchi@tohoku.iij.ad.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11924: MD5 fix: x11/XttXF86srv-common Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11924 >Category: ports >Synopsis: MD5 fix: x11/XttXF86srv-common >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 May 29 03:40:04 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Taguchi Takeshi >Release: FreeBSD-4.0-current >Organization: IIJ >Environment: FreeBSD uni.ff.iij4u.or.jp 4.0-CURRENT FreeBSD 4.0-CURRENT #0: Sat May 29 10:08:35 JST 1999 root@uni.ff.iij4u.or.jp:/usr/src/sys/compile/MEGUIII i386 >Description: This patch is for MD5 fix x11/XttXF86srv-common. >How-To-Repeat: >Fix: Please apply following patch. I've tested this ports, make all package deinstall reinstall. PS: Thank you for your alert, Asami-san. BEGIN>---88--- begin 644 Xtt1.2.1-19990529.patch.gz M'XL("`G"3S<"`UAT=#$N,BXQ+3$Y.3DP-3(Y+G!A=&-H`(612TL#,1"`S^ZO MR%%9L\TDF4U2$/90%<%:T(.]YJF%UI9ME.JO-VV5(@5+8`@,WS>O,$N)T/>> M3'.>WNAVW7]0OUPLEF_-Y'XT2+-Y7`\6`8_SAUQ%*3W%GSW93,;VDW!#H!T" M#EGY&&.JNJ[_DQ^#*/=@UQ'*+Y'4V]!U%1F/D)QO_&`JA%CWGO(FOWQ=D"NB M'3"GF$/C&;ID(FJCI91.<4Q,F`.ZR9E"4T#;-WL6$#5&K5*R5F"(RB?-O`65 M`N-!NZH^J6"E=YL@@HJV-"3*2B!Z-!IDTEZ)PRC/ 9O5V]QOFJ\5ON[O9A\GA=?0/+XSOO*P(``)L@ ` end END>---88--- >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 May 29 3:42:51 1999 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 D50DB15236 for ; Sat, 29 May 1999 03:42:40 -0700 (PDT) (envelope-from wosch@panke.de.freebsd.org) Received: (from uucp@localhost) by baerenklau.de.freebsd.org (8.8.8/8.8.8) with UUCP id MAA09900; Sat, 29 May 1999 12:42:40 +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 MAA01558; Sat, 29 May 1999 12:41:56 +0200 (CEST) (envelope-from wosch) Date: Sat, 29 May 1999 12:41:56 +0200 (CEST) Message-Id: <199905291041.MAA01558@paula.panke.de.freebsd.org> From: wosch@freebsd.org 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 2374 ports in the FreeBSD Ports Collection. New ports added last two weeks - ------------------------------ Category biology (http://www.freebsd.org/ports/biology.html) ================================================================== deft-2.2 Density functional molecular orbital calculation. Maintained by: rmiya@cc.hirosaki-u.ac.jp ortep3-1.0 The Oak Ridge Thermal Ellipsoid Plot Program for Crystal Structure Maintained by: rmiya@cc.hirosaki-u.ac.jp Requires: XFree86-3.3.3.1, pgplot-5.2 Category converters (http://www.freebsd.org/ports/converters.html) ================================================================== tuc-1.10 Text to Unix Conversion Maintained by: adam@whizkidtech.net Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== jfc-1.1 Java Foundation Classes with Swing Maintained by: kuriyama@FreeBSD.ORG Requires: jdk-1.1.7 nps-0.9.9 Non-Preemtive Thread Scheduling Library Maintained by: rse@engelschall.com Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-emacs-manual-13.1998.11.25 Japanese translation of the GNU Emacs Manual Maintained by: okazaki@be.to Requires: XFree86-3.3.3.1, emacs-20.3 ja-netscape-communicator-4.6 netscape web-surfboard with Japanese resources Maintained by: sada@FreeBSD.ORG Also listed in: www Requires: XFree86-3.3.3.1, ja-elisa8x8-1.0, ja-kaname12-1.0, ja-kappa20-0.3, ja-naga10-1.0, ja-netscape-fonts-1.0, netscape-communicator-4.6 ja-netscape-navigator-4.6 netscape web-surfboard with Japanese resources Maintained by: sada@FreeBSD.ORG Also listed in: www Requires: XFree86-3.3.3.1, ja-elisa8x8-1.0, ja-kaname12-1.0, ja-kappa20-0.3, ja-naga10-1.0, ja-netscape-fonts-1.0, netscape-navigator-4.6 Category korean (http://www.freebsd.org/ports/korean.html) ================================================================== ko-linux_locale-1.0 glibc 2.0 Korean locale for linux compatibility. Maintained by: cjh@kr.freebsd.org Also listed in: emulators Requires: linux_lib-2.6.1 Category misc (http://www.freebsd.org/ports/misc.html) ================================================================== 32upgrade-1999.05.20 A convenience package to upgrade your 3.2 system to 3-stable for ports. Maintained by: asami@Freebsd.ORG pinfo-0.5.3 ncurses based, lynx style info documentation browser. Maintained by: ports@FreeBSD.ORG Requires: gettext-0.10.35, ncurses-4.2 Category print (http://www.freebsd.org/ports/print.html) ================================================================== pdq-2.1.1 A straightforward, flexible print subsystem. Maintained by: yinjieh@csie.nctu.edu.tw Requires: XFree86-3.3.3.1, gettext-0.10.35, glib-1.2.2, gtk-1.2.2 Category security (http://www.freebsd.org/ports/security.html) ================================================================== nessus-a2 A security scanner: looks for vulnerabilities in a given network Maintained by: anders@fix.no Requires: XFree86-3.3.3.1, gettext-0.10.35, glib-1.2.2, gtk-1.2.2 Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== xml4j-2.0.9 XML for Java parser Maintained by: kuriyama@FreeBSD.ORG Requires: jdk-1.1.7, jfc-1.1 Category www (http://www.freebsd.org/ports/www.html) ================================================================== netscape-communicator-4.6 netscape ver 4 communicator web-surfboard Maintained by: ache@FreeBSD.ORG Requires: XFree86-3.3.3.1 netscape-navigator-4.6 netscape ver 4.6 navigator web-surfboard Maintained by: ache@FreeBSD.ORG Requires: XFree86-3.3.3.1 squid-2.2 The successful WWW proxy cache and accelerator Maintained by: peter@freebsd.org Updated ports last two weeks - ----------------------------------- Category astro (http://www.freebsd.org/ports/astro.html) ================================================================== setiathome-1.1 Donate idle cycles to the search for space aliens Maintained by: stb@freebsd.org Category audio (http://www.freebsd.org/ports/audio.html) ================================================================== gqmpeg-0.5.2 Another gtk-base MP3 frontend. Maintained by: nacai@iname.com Requires: XFree86-3.3.3.1, gettext-0.10.35, giflib-3.0, glib-1.2.2, gtk-1.2.2, imlib-1.9.4, jpeg-6b, mpg123-0.59q, png-1.0.3, tiff-3.4b37 xmcd-2.5 Motif CD player. Maintained by: eischen@vigrid.com Requires: XFree86-3.3.3.1, xpm-3.4k Category chinese (http://www.freebsd.org/ports/chinese.html) ================================================================== zh-aterm-0.3.6 A color vt102 terminal emulator with transparency support. Maintained by: davidyu@ken.csie.ntu.edu.tw Requires: XFree86-3.3.3.1, jpeg-6b, png-1.0.3, xpm-3.4k Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== mm-1.0.4 shared memory library for applications with pre-forked process model Maintained by: rse@engelschall.com noweb-2.9a A simple, extensible literate-programming tool. Maintained by: tg@FreeBSD.ORG Requires: icon-9.3.1 pcre-2.05 Perl Compatible Regular Expressions library. Maintained by: dom@myrddin.demon.co.uk shtool-1.2.7 Portable Shell Tool Maintained by: rse@engelschall.com Category games (http://www.freebsd.org/ports/games.html) ================================================================== ifm-4.1 Interactive Fiction mapper and walkthrough generator. Maintained by: dchapes@ddm.on.ca Requires: XFree86-3.3.3.1, gmake-3.77, tcl-8.0.5, tk-8.0.5 pysol-2.13 Solitaire game, written in Python. Maintained by: tg@FreeBSD.ORG Requires: XFree86-3.3.3.1, python-1.5.2, tcl-8.0.5, tk-8.0.5 qstat-2.3d A command line program to query game servers on the net Maintained by: darius@dons.net.au Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== gimp-i18n-1.1.5 the GNU Image Manipulation Program with I18N extension Maintained by: nobutaka@nobutaka.com Requires: XFree86-3.3.3.1, aalib-1.2, gettext-0.10.35, glib-1.2.2, gmake-3.77, gtk-1.2.2, jpeg-6b, mpeg_lib-1.2.1, png-1.0.3, tiff-3.4b37, xpm-3.4k sane-1.0.1 API for access to scanners, digitals camera, frame grabbers etc. Maintained by: gary@hotlava.com Requires: XFree86-3.3.3.1, gettext-0.10.35, glib-1.2.2, gmake-3.77, gtk-1.2.2, jpeg-6b sketch-0.6.0 An interactive drawing program. Maintained by: ports@FreeBSD.ORG Requires: XFree86-3.3.3.1, jpeg-6b, py-imaging-0.3b2, python-1.5.2, tcl-8.0.5, tk-8.0.5 tgif-4.1.11 An Xlib-based two-dimensional drawing tool and hyper-object browser. Maintained by: bmc@WillsCreek.COM Requires: XFree86-3.3.3.1, jpeg-6b, netpbm-94.3.1, tiff-3.4b37 Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-lynx-2.8.2.pre5 A terminal-based World-Wide Web Client with multi-byte modification. Maintained by: shige@FreeBSD.ORG Also listed in: www Category lang (http://www.freebsd.org/ports/lang.html) ================================================================== egcs-devel-19990517 EGCS enhanced version of the GNU compiler suite (inprogress version) Maintained by: obrien@FreeBSD.org Requires: gmake-3.77 pgcc-1.1.3 gcc compiler optimized for x86 architecture (based on EGCS) Maintained by: obrien@FreeBSD.org Requires: autoconf-2.13, bzip2-0.9.0c, gmake-3.77, m4-1.4 Category mail (http://www.freebsd.org/ports/mail.html) ================================================================== adcomplain-3.52 complain about inappropriate commercial use (f.e. SPAM) of usenet/e-mail Maintained by: ache@FreeBSD.org Also listed in: news fetchmail-5.0.3 batch mail retrieval/forwarding utility for pop2, pop3, apop, imap Maintained by: ve@sci.fi Category misc (http://www.freebsd.org/ports/misc.html) ================================================================== 30upgrade-1999.05.20 A convenience package to upgrade your 3.0 system to 3-stable for ports. Maintained by: asami@Freebsd.ORG 31upgrade-1999.05.20 A convenience package to upgrade your 3.1 system to 3-stable for ports. Maintained by: asami@Freebsd.ORG cstream-1.4 dd(1)-like tool, precise bandwidth limiting/reporting, fifo support Maintained by: cracauer@cons.org Category net (http://www.freebsd.org/ports/net.html) ================================================================== bnc-2.6.2 a simple IRC relay proxy with support for virtual hosting Maintained by: billf@FreeBSD.org ethereal-0.6.2 a network analyzer that lets you capture Maintained by: billf@FreeBSD.ORG Requires: XFree86-3.3.3.1, gettext-0.10.35, glib-1.2.2, gtk-1.2.2 ezbounce-0.85.2 A highly configurable IRC Proxy. Maintained by: cpiazza@home.net gftp-2.0.1 A free multithreaded GTK based ftp client. Maintained by: dmarion@open.hr Requires: XFree86-3.3.3.1, autoconf-2.13, gettext-0.10.35, glib-1.2.2, gtk-1.2.2, m4-1.4 ninja-1.0.9 Another ircII based irc client. Maintained by: cpiazza@home.net pavuk-0.9.13 HTTP, FTP and Gopher mirroring tool Maintained by: andy@icc.surw.chel.su Also listed in: www Requires: XFree86-3.3.3.1, gmake-3.77, xpm-3.4k ytalk-3.1.1 A new "talk" that can talk to multiple parties at once Maintained by: dom@myrddin.demon.co.uk Category news (http://www.freebsd.org/ports/news.html) ================================================================== slrn-0.9.5.6 SLang-based newsreader Maintained by: xaa@xaa.iae.nl Requires: libslang-1.2.2 trn-4.0b72 Version 4.0 of the threaded readnews newsreader. Maintained by: mph@freebsd.org Category print (http://www.freebsd.org/ports/print.html) ================================================================== apsfilter-5.1.1 lpd magic print filter with auto file type recognition Maintained by: andreas@FreeBSD.ORG Requires: XFree86-3.3.3.1, a2ps-letter-4.12, bzip2-0.9.0c, ghostscript-5.50, html2ps-1.0, jpeg-6b, netpbm-94.3.1, png-1.0.3, psutils-letter-1.17, recode-3.4, tiff-3.4b37, transfig-3.2.1, xpm-3.4k Category security (http://www.freebsd.org/ports/security.html) ================================================================== gnupg-0.9.7 The GNU Privacy Guard Maintained by: kuriyama@FreeBSD.ORG portsentry-0.90 Port scan detection and active defense Maintained by: chris@still.whet.org slush-0.1.1 A telnet-like application which uses a secure SSL channel Maintained by: shipley@dis.org Also listed in: net Requires: openssl-0.9.2b Category sysutils (http://www.freebsd.org/ports/sysutils.html) ================================================================== lsof-4.43 Lists information about open files. (simular to fstat(1)) Maintained by: obrien@FreeBSD.org Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== p5-XML-Parser-2.23 Perl extension interface to James Clark's XML parser, expat. Maintained by: kuriyama@FreeBSD.ORG Also listed in: perl5 Category www (http://www.freebsd.org/ports/www.html) ================================================================== analog-3.3 An extremely fast program for analysing WWW logfiles. Maintained by: ache@freebsd.org cgiwrap-3.6.3 Make certain that CGI scripts run with the user's permissions. Maintained by: bjn@visi.com lynx-2.8.2pre.7 A non-graphical, text-based World-Wide Web client. Maintained by: ache@FreeBSD.ORG Requires: bzip2-0.9.0c p5-ParallelUA-2.42 perl5 Parallel LWP User Agent for WWW access. Maintained by: ache@FreeBSD.ORG Also listed in: perl5 devel Requires: p5-URI-1.02, p5-libwww-5.43 p5-libwww-5.43 perl5 library for WWW access. Maintained by: jfitz@FreeBSD.ORG Also listed in: perl5 devel Requires: p5-Digest-MD5-2.06, p5-HTML-Parser-2.22, p5-MIME-Base64-2.11, p5-Net-1.0606, p5-URI-1.02 sitecopy-0.6.0 Maintains remote websites, uses FTP or WebDAV to sync up with local copy Maintained by: nik@FreeBSD.ORG w3mir-1.0.7 All-purpose HTTP copying and mirroring tool. Maintained by: ache@freebsd.org Also listed in: perl5 Requires: p5-libwww-5.43 Category x11-wm (http://www.freebsd.org/ports/x11-wm.html) ================================================================== flwm-0.24 The Fast Light Window Manager Maintained by: dima@chg.ru Requires: Mesa-3.0, XFree86-3.3.3.1, fltk-1.0.3 icewm-0.9.39 Window Manager designed for speed, usability and consistency. Maintained by: nacai@iname.com Requires: XFree86-3.3.3.1, gmake-3.77, xpm-3.4k Category x11 (http://www.freebsd.org/ports/x11.html) ================================================================== aterm-0.3.6 A color vt102 terminal emulator with transparency support. Maintained by: jim@phrantic.phear.net Requires: XFree86-3.3.3.1, jpeg-6b, png-1.0.3, xpm-3.4k _________________________________________________________________ © 1996-1998 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: 1999-05-26 06:28:39 UTC; based on revision 1.226 _________________________________________________________________ This information was produced by http://www.freebsd.org/cgi/ports.cgi -----BEGIN PGP SIGNATURE----- Version: 2.6.3ia Charset: noconv iQCVAwUBN0/ETzmN/mkrcYGtAQE0XwQAgNLfc0TY/i2BjhJbWpTe8GoaCOFHVbrT 12ODz+o32WuGIFOaL1kmET6sx86zslzsFALAi/QZceZ/AH5yjpfs5/0bPDZVDwrj 539UzwxbbNeUmT1Ijp5EH84Fa+sscK1qgLpWGwo+LqDjAgR23TRKIYFoS2kwsBbz tJBMUguasQs= =ryRb -----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 Sat May 29 3:44:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from cirrostratus.netaccess.co.nz (cirrostratus.netaccess.co.nz [202.37.101.18]) by hub.freebsd.org (Postfix) with ESMTP id 4C24915589 for ; Sat, 29 May 1999 03:44:04 -0700 (PDT) (envelope-from shorts@2-cool.com) Received: from dan (ppp186066.netaccess.co.nz [202.27.186.66]) by cirrostratus.netaccess.co.nz (8.8.7/8.8.7) with SMTP id WAA09624 for ; Sat, 29 May 1999 22:43:43 +1200 (NZST) Message-ID: <000701bea9bf$aa9212a0$0500000a@dan> Reply-To: "Daniel Hustwick" From: "Daniel Hustwick" To: Subject: gmake Date: Sat, 29 May 1999 22:39:58 +1200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0004_01BEAA24.2E532CA0" 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_0004_01BEAA24.2E532CA0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable ftp://ftp.ipri.kiev.ua/pub/FreeBSD/ports/devel/gmake.tar.gz me thinks ------=_NextPart_000_0004_01BEAA24.2E532CA0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable

ftp:= //ftp.ipri.kiev.ua/pub/FreeBSD/ports/devel/gmake.tar.gz
me thinks
------=_NextPart_000_0004_01BEAA24.2E532CA0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 29 4:13:50 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9717F14C44; Sat, 29 May 1999 04:13:49 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA32610; Sat, 29 May 1999 04:13:49 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Date: Sat, 29 May 1999 04:13:49 -0700 (PDT) From: Message-Id: <199905291113.EAA32610@freefall.freebsd.org> To: kuriyama@FreeBSD.org, freebsd-ports@FreeBSD.org, kuriyama@FreeBSD.org Subject: Re: ports/11786: gnupg-0.9.6 port does not install Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: gnupg-0.9.6 port does not install Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: kuriyama Responsible-Changed-When: Sat May 29 04:13:02 PDT 1999 Responsible-Changed-Why: Over to maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 29 6:35:28 1999 Delivered-To: freebsd-ports@freebsd.org Received: from apriori.net (paz.static.shore.net [209.192.153.107]) by hub.freebsd.org (Postfix) with ESMTP id 9236E152A3 for ; Sat, 29 May 1999 06:35:19 -0700 (PDT) (envelope-from paz@apriori.net) Received: from localhost (paz@localhost) by apriori.net (8.8.8/8.8.8) with ESMTP id JAA08541 for ; Sat, 29 May 1999 09:31:44 -0400 (EDT) (envelope-from paz@apriori.net) Date: Sat, 29 May 1999 09:31:44 -0400 (EDT) From: paz To: freebsd-ports@FreeBSD.ORG Subject: ipportfw, ipchains + FreeBSD In-Reply-To: <199905291113.EAA32610@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 Does FreeBSD have any provision to forward packets while passing or preserving port numbers to hosts behind a masquerading-type firewall? In other words... I have local network at home which uses the non-routable addresses 192.168.*.*. I'm using ipfw and natd and routed on my FreeBSD gateway. The gateway has a single static IP provided by my service provider. Some apps running on my local net (Windows machine) are choking because they aren't getting replies on the same ports they're intitiated on, and so my gateway/firewall machine tosses out the replies to the local client. Doing some extensive web searches, I keep finding port-based forwarding add-ons and software for Linux-based machines, such as ipportfw and ipchains. These appear to support forwarding rules which apply to this situation. But I haven't seen programs offered in the FreeBSD ports collection to do anything like this. Somehow I suspect that grabbing the Linux ipchains, for example, and installing it on my FreeBSD host wouldn't necessarily run right... Comments, suggestions invited. cheers - -- Philip. philip zimmermann paz@apriori.net www.apriori.net ayer, ma usa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 29 7:12:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A2F7715006; Sat, 29 May 1999 07:12:10 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA06774; Sat, 29 May 1999 07:12:10 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sat, 29 May 1999 07:12:10 -0700 (PDT) From: Message-Id: <199905291412.HAA06774@freefall.freebsd.org> To: steve@FreeBSD.org, freebsd-ports@FreeBSD.org, steve@FreeBSD.org Subject: Re: ports/11844: Port update: GNOME ports. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: GNOME ports. Responsible-Changed-From-To: freebsd-ports->steve Responsible-Changed-By: steve Responsible-Changed-When: Sat May 29 07:11:20 PDT 1999 Responsible-Changed-Why: I'll commit these shortly. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 29 7:20: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B2D9215053 for ; Sat, 29 May 1999 07:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA07418; Sat, 29 May 1999 07:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 29 May 1999 07:20:03 -0700 (PDT) Message-Id: <199905291420.HAA07418@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jun Kuriyama Subject: Re: ports/11880: Update port: wmmon Reply-To: Jun Kuriyama Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11880; it has been noted by GNATS. From: Jun Kuriyama To: sk-ports@yin.vegamuse.org Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/11880: Update port: wmmon Date: Sat, 29 May 1999 23:10:37 +0900 From: sk-ports@yin.vegamuse.org > >Synopsis: Update port: wmmon Thanks. I saw your patches and it seems good for many FreeBSD versions! BTW, in your PR, you change MAINTAINER line of this port. Does current maintainer (Kris Kennaway) know this? Jun Kuriyama // kuriyama@sky.rim.or.jp // kuriyama@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 May 29 7:42:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from henoch.cc.fh-lippe.de (henoch.cc.fh-lippe.de [193.16.112.72]) by hub.freebsd.org (Postfix) with ESMTP id E6B7B15231; Sat, 29 May 1999 07:42:17 -0700 (PDT) (envelope-from lkoeller@cc.fh-lippe.de) Received: from spock.cc.fh-lippe.de([193.16.118.120]) (2206 bytes) by henoch.cc.fh-lippe.de via sendmail with P:smtp/R:inet_hosts/T:smtp (sender: ) id for ; Sat, 29 May 1999 16:42:16 +0200 (MET DST) (Smail-3.2.0.101 1997-Dec-17 #3 built 1998-Feb-3) Received: from cc.fh-lippe.de by spock.cc.fh-lippe.de with smtp (Smail3.1.29.1 #2) id m10nkJI-0006zmC; Sat, 29 May 99 16:42 MET DST Received: from odie.lippe.de (localhost [127.0.0.1]) by cc.fh-lippe.de (8.9.2/8.9.1) with ESMTP id QAA06030; Sat, 29 May 1999 16:14:18 +0200 (CEST) (envelope-from lkoeller@odie.lippe.de) Message-Id: <199905291414.QAA06030@cc.fh-lippe.de> X-Mailer: exmh version 2.0.2 2/24/98 From: Lars =?iso-8859-1?Q?K=F6ller?= To: steve@FreeBSD.org Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/11836: Upgrade of grace port from 5.0.1a to 5.0.2b In-reply-to: steve's message of Fri, 28 May 1999 21:23:30 -0700. <199905290423.VAA03404@freefall.freebsd.org> X-Face: eCcoCV}FjV*O{6>[1$XP/e%]TJhEw2MF33dFh)^HM7Gfd=[/(4+0a$~ Synopsis: Upgrade of grace port from 5.0.1a to 5.0.2b > > State-Changed-From-To: open->closed > State-Changed-By: steve > State-Changed-When: Fri May 28 21:22:32 PDT 1999 > State-Changed-Why: > Update committed, thanks! Close related to the functionality of grace-5.0.2 with Motif 2.1 is the upgrade of Xbae-4.6.2 (ports/11888). Please can you have a look at it Steve? Regards Lars -- E-Mail: | Lars Koeller Lars.Koeller@Uni-Bielefeld.DE | UNIX Sysadmin lkoeller@cc.fh-lippe.de | Computing Center PGP-key: | University of Bielefeld http://www.nic.surfnet.nl/pgp/pks-toplev.html | Germany ----------- FreeBSD, what else? ---- 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 May 29 10:23:28 1999 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 E542115047 for ; Sat, 29 May 1999 10:23:19 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.1a/8.9.0) with ESMTP id MAA03985; Sat, 29 May 1999 12:23:12 -0500 (CDT) Date: Sat, 29 May 1999 12:23:12 -0500 (CDT) From: Steve Price To: Lars =?iso-8859-1?Q?K=F6ller?= Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/11888 (was Re: ports/11836: Upgrade of grace port ...) In-Reply-To: <199905291414.QAA06030@cc.fh-lippe.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, 29 May 1999, Lars [iso-8859-1] K=F6ller wrote: # Close related to the functionality of grace-5.0.2 with Motif 2.1 is=20 # the upgrade of Xbae-4.6.2 (ports/11888). #=20 # Please can you have a look at it Steve? I just did and it seems that the change to patch-aa is similar in nature to the one that Micheal Haro made just recently. I'm having a little trouble getting your patch to work. This line has be bumfuzzled. LOCAL_LIBRARIES =3D -lXbae XmClientLibs -lXpm ... I think I understand what you were trying to accomplish, but where does the value of XmClientLibs come from, and shouldn't it look like $(XmClientLibs) or something? -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 29 14:40: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 303DA14E70 for ; Sat, 29 May 1999 14:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA40240; Sat, 29 May 1999 14:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 1FDA514E68 for ; Sat, 29 May 1999 14:34:00 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id A9C8814A0; Sat, 29 May 1999 14:33:55 -0700 (PDT) Message-Id: <19990529213355.A9C8814A0@norn.ca.eu.org> Date: Sat, 29 May 1999 14:33:55 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11930: New port: blockade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11930 >Category: ports >Synopsis: New port: blockade >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 May 29 14:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #216: Sat May 29 10:27:22 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: An X version of the Mac game `blockade.' >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: # # blockade # blockade/files # blockade/files/md5 # blockade/pkg # blockade/pkg/COMMENT # blockade/pkg/DESCR # blockade/pkg/PLIST # blockade/Makefile # blockade/patches # blockade/patches/patch-aa # echo c - blockade mkdir -p blockade > /dev/null 2>&1 echo c - blockade/files mkdir -p blockade/files > /dev/null 2>&1 echo x - blockade/files/md5 sed 's/^X//' >blockade/files/md5 << 'END-of-blockade/files/md5' XMD5 (blockade-1_00-linux.tar.gz) = c3d3924f7c2afa5eb95851ee4d03a54c END-of-blockade/files/md5 echo c - blockade/pkg mkdir -p blockade/pkg > /dev/null 2>&1 echo x - blockade/pkg/COMMENT sed 's/^X//' >blockade/pkg/COMMENT << 'END-of-blockade/pkg/COMMENT' XAn X version of the `blockade' Macintosh game. END-of-blockade/pkg/COMMENT echo x - blockade/pkg/DESCR sed 's/^X//' >blockade/pkg/DESCR << 'END-of-blockade/pkg/DESCR' XAn X version of the `blockade' Macintosh game by Christer Ericson. XIncludes the ability to edit new levels. X X-Chris Piazza Xcpiazza@home.net END-of-blockade/pkg/DESCR echo x - blockade/pkg/PLIST sed 's/^X//' >blockade/pkg/PLIST << 'END-of-blockade/pkg/PLIST' Xbin/blockade END-of-blockade/pkg/PLIST echo x - blockade/Makefile sed 's/^X//' >blockade/Makefile << 'END-of-blockade/Makefile' X# New ports collection makefile for: blockade X# Version required: 1.00 X# Date created: 29 May 1999 X# Whom: Chris Piazza X# X# $Id$ X# X XDISTNAME= blockade-1_00-linux XPKGNAME= blockade-1.00 XCATEGORIES= games XMASTER_SITES= http://www.geocities.com/TimesSquare/Zone/5267/ X XMAINTAINER= cpiazza@home.net X XWRKSRC= ${WRKDIR}/${PKGNAME} XUSE_XLIB= yes X XMAN6= blockade.6 X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/blockade ${PREFIX}/bin X ${INSTALL_MAN} ${WRKSRC}/blockade.6 ${PREFIX}/man/man6 X X.include END-of-blockade/Makefile echo c - blockade/patches mkdir -p blockade/patches > /dev/null 2>&1 echo x - blockade/patches/patch-aa sed 's/^X//' >blockade/patches/patch-aa << 'END-of-blockade/patches/patch-aa' X--- Makefile.orig Sat May 29 14:13:39 1999 X+++ Makefile Sat May 29 14:14:38 1999 X@@ -1,7 +1,7 @@ X # Add -I and -L options as necessary to make it find your X stuff.... X X #DESTDIR = /opt/blockade X-DESTDIR = /usr/local X+DESTDIR = $(PREFIX) X BINDIR = $(DESTDIR)/bin X MANDIR = $(DESTDIR)/man/man6 X X@@ -22,7 +22,7 @@ X #LDFLAGS = -s -L/usr/lib/X11R4 -lX11 X X # Linux X-CFLAGS = -DSYSV -I/usr/include/X11 -Wall X+CFLAGS += -I$(X11BASE)/include X LDFLAGS = -L/usr/X11R6/lib -lX11 X X SOUND = blockade-snd.o END-of-blockade/patches/patch-aa exit -Chris >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 May 29 16:20:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3218F14EC1 for ; Sat, 29 May 1999 16:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA46082; Sat, 29 May 1999 16:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 264D614CC3; Sat, 29 May 1999 16:19:04 -0700 (PDT) Message-Id: <19990529231904.264D614CC3@hub.freebsd.org> Date: Sat, 29 May 1999 16:19:04 -0700 (PDT) From: pfgiffun@bachue.usc.unal.edu.co To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11932: New port: Visual toolkit (VTK) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11932 >Category: ports >Synopsis: New port: Visual toolkit (VTK) >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 May 29 16:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Pedro F. Giffuni >Release: 3.1-Release >Organization: Universidad Nacional de Colombia >Environment: not-relevant >Description: New port of the Visual toolkit. >How-To-Repeat: >Fix: begin 644 vtk.tar.gz M'XL(`$-T4#<``^U;>W/:2!+/O]:GZ,/>^!5)2$A@DY!:;+!-;,`'Y+%5J6(' M,8`6(7&2P,OZ?)_]ND<2QJ]UM8TD"VK&\8+,)_:,*)9$#(?X,64]WWO M=_B0;3!X#H.>E^8X_G4VY@/;X4^E0\MF\X;QX/AKNF:(\<^9>2-O%*@DJ^'X M9Y_*H%7ZSL=_'1K\`J:>'P9@>8[#K=#V7)C$(0$#SR_2(&&<2.OP@?L!5?O\ M7S/;YWU1!;J2P[H*"SE8/L>/N#P>YX8W!VU_OX`\'T?>Y+HNH0Z6L@"..:H? MSR;P)AS^>.1S?M"N*,W6\5MI'9MNU/H;^"!5:NU.HUROEN+&:)B>F[GVK]+Y MZ;&H6,,BF6PZ+'>JQ\U6K=HNK0U]-AW95B#5R^U.M=5MUSI4/`BG157%!DI@ M>3ZW%']J*[P_4Z>SGBHAIYM5%!4<=GBF84 M-R[/FZU.NU)K7:F)3K7.`[;V65I;V[CLG"8MKB3I8^NTW3HL8?D6/F*;;3)% M.FZ\[QXV&T>UX_0Y&#$0LM)WGL M!7T:SA49U<:'TMKAT5D9164V+J.GJPPKU\OT*-B[/*I&^*Y`G^'K>JA[5/EVICMV3),5V+6?6 MY_`&;5/(LR3*_S31@R?I[^AB_R? M+V33_/\SLP"S@OD(0 M0?%\>[C6&\A9)$[!MB_MW"1Z M!_U53@?Q!K`.O05B37=@#V<^!]N%8!&$?!*9`%`.@<'$=NT)8L&%-X-@Y,V< M/@0\%*W#$<%2Q_$N;'<('M M6`"BOY)J>9.)YUXWBCF#F6NHIF(0WJ'?J%AAL?K3K],^-A1]5?GI`[H%WQW5 M5)IHKE?;Y3NZ)\P/;7>L!J'GLR$7<%76L%%>C8%:TE*H?:P-ZI3)"#GP'.;; M`150-0)D806-X<#S8;H(1YXKQFN"LY#&%\?6#LC.\Y\Z)\U&8FE[:6I@C7R/ M]U&_YX8N\SWU7$A!U89:BXV-=93[?6#]ODT'&LR!"-`"<_M+G"O,0"].;8<1 MEV@V<\FOW`UO!5IXX8%CNQAD&%!D*QKN@W?APL!APP"-7G_?KK:ZL9Z2\'=< ME.@K06)<'*@7C/1X$/H+H>X7-F<0S*:$B8EATW'`Y0CK8YTW3!*"YNABBAQA MUH0R>&08=^>V[[FB(]3G&]V:4%,R[UWE]*19K\:#:C%G;KL85VZ(C&JMRB%6EI"!]9V M#\_*[79W15<20,26R#BY3\9H*6,E&E;XDK.$^PK5.`03!302]\^=X>ZNK"L% M1;LS?^P>]\.%PN`KV@1AW]K=_8HV0\N2Z3.8,M^BV9-,'AT9(GZL1JYD"HED M++(J/LA_Q:QZ?>:3#`:FLSTE>T\6O7$\%*?+O:P2>/>DRWO$CF])/7U`Z'A% MYJU$N''Y2=,.RNWKT%E->2NUL:PXGT72_K>$=KE MVVTTN_5RYP2M/ZLUJNTEXW5:>XCSKYGM-K8BUV_'.6SGZY/8"A\=:3Y9`AOX MG/>"_M\P@7WKG6]*1/?@O]Z?K>,1_(>0/X_X+V_F-0)V>V++L>1=:\]<>,=J3NK M4$[%RLS--NWW1[A*E#*XSB]K*F=+WEC&!]QPQ')JC=-NHB>ZCQ/MN!/P^ZVY MI7#%$+&_6WHMWN3]-;VV<4F?5W_0>0?O:RCQ3_+>?3&8R^X9K_#/?A2#Y."H M2-/W$P>CBSAN>B$C'/4Y\S.W1AYL;C"K:\V[N()UQ3,]X%;DY\\9W/LL>)!9 M^@Y`M,@05YC)4!UH;U_F157GI%4M)T;*SC0<^9QA)W=!]''W=FO7BQOOXB#B M'\$1\Q"+"QDQW+2Y$QO02&`WNH4G#"`[5M?/9!1%$0VLI;Q(SW(V%W/:OE:$ M+Y(&;U^:*.':#:7(2UBWV=V\U>K?N)'KP^;B!T7=E7_H=J?='S9_QM8/.7IS M\W+SVMDKOM[]+=O]S=Q,)8&;,Z3T*4/&H!D M3+`3`,M2BX7P5N0\,E,AD?S7$-Z\J3:/L'J==M.8`/?W5UQ)[=:3N2>*^WP0 M*",J5W>@B7/5M[&*N0O`_9".C@VY3_O[J>^%7KB8T@ M^A9;9?(B(*9'>#>[6 M-ESBZVTN+'J=&)=]#5?X'GD30^(2MD141/%T'9RZEBUBD$3AX(X_9[9I7,W7 M,7M2O@VZ*+V"ER_C5!C7(,]&HB`9_,+W= M25#7Z6WW;GJC7(%I+T[?#Z4V(,N^]2[H^R6Q_Q\/G_0[H%]X_V<8!3.?US6Z M_\OFS/3^[SDH&?_#9KU>;72>1,>CW__(Z2,=C\[]06,[_@IX3^;^03>?_LQ#- M?T0CN">\8`O"'0YGN#%G/6\6G;\G![]@!S#PO8DH['G>&#$#E?5Y8`]=<68O MQ4?Y"!)^NKY@ZB'4H:,*E#V,S_1%RN@R&<&*+^HD.M>_X#V8 MLB%7@`Q-WH`Y@<`'(<*,`$V<OK_'\]" M=$E%_W,0W_M\Z)P>B@L?NMJ\7=:QG)O%2=3?7WJ'O39A0]L=WEL8,W]K=Z24 I4DHII9122BFEE%)**:644DHII9122BFEE%)**?W?TW\!EAU)>P!0``!K ` 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 Sat May 29 17:10: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2C2BA14CF9 for ; Sat, 29 May 1999 17:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA54443; Sat, 29 May 1999 17:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 29 May 1999 17:10:03 -0700 (PDT) Message-Id: <199905300010.RAA54443@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Pedro F. Giffuni" Subject: Re: ports/11932: New port: Visual toolkit (VTK) Reply-To: "Pedro F. Giffuni" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11932; it has been noted by GNATS. From: "Pedro F. Giffuni" To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/11932: New port: Visual toolkit (VTK) Date: Sat, 29 May 1999 19:06:01 -0500 Please hold this a bit: another port I'm building (Melati) requires --with-tkwidget in the CONFIGURE_ARGS, and a small change in the PLIST. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 29 17:50: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2255614E99 for ; Sat, 29 May 1999 17:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA57009; Sat, 29 May 1999 17:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from chingiz.cs.ntu.edu.au (ppp21.cs.ntu.edu.au [138.80.216.21]) by hub.freebsd.org (Postfix) with ESMTP id 7E09914D36 for ; Sat, 29 May 1999 17:46:44 -0700 (PDT) (envelope-from pjm@chingiz.cs.ntu.edu.au) Received: (from pjm@localhost) by chingiz.cs.ntu.edu.au (8.9.3/8.9.2) id KAA18985; Sun, 30 May 1999 10:13:09 +0930 (CST) (envelope-from pjm) Message-Id: <199905300043.KAA18985@chingiz.cs.ntu.edu.au> Date: Sun, 30 May 1999 10:13:09 +0930 (CST) From: Phil Maker Reply-To: pjm@chingiz.cs.ntu.edu.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11934: Port of GNU Nana 2.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11934 >Category: ports >Synopsis: Port of GNU Nana 2.4 >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 May 29 17:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Phil Maker >Release: FreeBSD 3.1-STABLE i386 >Organization: Quoll Systems >Environment: N/A >Description: This is a new port of GNU Nana for version 2.4, the old version was for nana-1.09 >How-To-Repeat: N/A >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # nana # nana/CVS # nana/CVS/Root # nana/CVS/Repository # nana/CVS/Entries # nana/files # nana/files/CVS # nana/files/CVS/Root # nana/files/CVS/Repository # nana/files/CVS/Entries # nana/files/md5 # nana/pkg # nana/pkg/CVS # nana/pkg/CVS/Root # nana/pkg/CVS/Repository # nana/pkg/CVS/Entries # nana/pkg/COMMENT # nana/pkg/DESCR # nana/pkg/PLIST # nana/Makefile # nana/README.html # echo c - nana mkdir -p nana > /dev/null 2>&1 echo c - nana/CVS mkdir -p nana/CVS > /dev/null 2>&1 echo x - nana/CVS/Root sed 's/^X//' >nana/CVS/Root << 'END-of-nana/CVS/Root' X/home/ncvs END-of-nana/CVS/Root echo x - nana/CVS/Repository sed 's/^X//' >nana/CVS/Repository << 'END-of-nana/CVS/Repository' X/home/ncvs/ports/devel/nana END-of-nana/CVS/Repository echo x - nana/CVS/Entries sed 's/^X//' >nana/CVS/Entries << 'END-of-nana/CVS/Entries' X/Makefile/1.1.1.1/Wed Oct 15 19:58:51 1997// XD/files//// XD/patches//// XD/pkg//// END-of-nana/CVS/Entries echo c - nana/files mkdir -p nana/files > /dev/null 2>&1 echo c - nana/files/CVS mkdir -p nana/files/CVS > /dev/null 2>&1 echo x - nana/files/CVS/Root sed 's/^X//' >nana/files/CVS/Root << 'END-of-nana/files/CVS/Root' X/home/ncvs END-of-nana/files/CVS/Root echo x - nana/files/CVS/Repository sed 's/^X//' >nana/files/CVS/Repository << 'END-of-nana/files/CVS/Repository' X/home/ncvs/ports/devel/nana/files END-of-nana/files/CVS/Repository echo x - nana/files/CVS/Entries sed 's/^X//' >nana/files/CVS/Entries << 'END-of-nana/files/CVS/Entries' X/md5/1.1.1.1/Wed Oct 15 19:58:52 1997// XD END-of-nana/files/CVS/Entries echo x - nana/files/md5 sed 's/^X//' >nana/files/md5 << 'END-of-nana/files/md5' XMD5 (nana-2.4.tar.gz) = 4266c06e5cc4e55cc81703d0fe9bb285 END-of-nana/files/md5 echo c - nana/pkg mkdir -p nana/pkg > /dev/null 2>&1 echo c - nana/pkg/CVS mkdir -p nana/pkg/CVS > /dev/null 2>&1 echo x - nana/pkg/CVS/Root sed 's/^X//' >nana/pkg/CVS/Root << 'END-of-nana/pkg/CVS/Root' X/home/ncvs END-of-nana/pkg/CVS/Root echo x - nana/pkg/CVS/Repository sed 's/^X//' >nana/pkg/CVS/Repository << 'END-of-nana/pkg/CVS/Repository' X/home/ncvs/ports/devel/nana/pkg END-of-nana/pkg/CVS/Repository echo x - nana/pkg/CVS/Entries sed 's/^X//' >nana/pkg/CVS/Entries << 'END-of-nana/pkg/CVS/Entries' X/COMMENT/1.1.1.1/Wed Oct 15 19:58:53 1997// X/DESCR/1.1.1.1/Wed Oct 15 19:58:53 1997// X/PLIST/1.2/Wed Aug 12 01:55:27 1998// XD END-of-nana/pkg/CVS/Entries echo x - nana/pkg/COMMENT sed 's/^X//' >nana/pkg/COMMENT << 'END-of-nana/pkg/COMMENT' XSupport for assertion checking and logging using GNU C and GDB. END-of-nana/pkg/COMMENT echo x - nana/pkg/DESCR sed 's/^X//' >nana/pkg/DESCR << 'END-of-nana/pkg/DESCR' XNana provides improved support for assertion checking and logging in C, C++ Xusing GDB. In particular it provides: X X o Operations can be implemented directly in C or by generating X debugger commands which do the checking and logging only if the X application is run under the debugger. The debugger based calls X require are very space efficient (0 or 1 bytes per call). X o Support for checking real time constraints. X o Support for assertion (invariant checking) including: X + Space and time efficient (at least versus ) X For example: assert(i>=0) uses 53 bytes on a i386 vs X an optimised nana call which uses 10 bytes per call. X + Checking can be turned on or off at compile or run time. X + The action taken when an error is detected can be modified X on a global and per/call basis. X o Support for logging (printf style debugging) including: X + Logging can be turned on and off at compile or run time. X + Logging to files, processes or circular buffers in memory X with optional time stamping. X o Support for the quantifiers of predicate calculus (forall, exists). X o Support for before and after state saving and checking (x, x'). X XPhil Maker END-of-nana/pkg/DESCR echo x - nana/pkg/PLIST sed 's/^X//' >nana/pkg/PLIST << 'END-of-nana/pkg/PLIST' Xbin/nana Xbin/nana-c++lg Xbin/nana-clg Xbin/nana-run Xbin/nana-trace Xbin/nana-libtrace Xbin/nana-sfg Xbin/nana-sfdir Xinclude/DI.h Xinclude/DL.h Xinclude/GDB.h Xinclude/I.h Xinclude/L.h Xinclude/L_buffer.h Xinclude/L_times.h Xinclude/cycles.h Xinclude/Q.h Xinclude/Qstl.h Xinclude/calls.h Xinclude/eiffel.h Xinclude/nana-config.h Xinclude/nana.h Xinclude/nana_error.h Xinclude/now.h X@unexec install-info --delete %D/info/nana.info %D/info/dir Xinfo/nana.info Xinfo/nana.info-1 Xinfo/nana.info-2 Xinfo/nana.info-3 X@exec [ -f %D/info/dir ] || sed -ne '1,/Menu:/p' /usr/share/info/dir > %D/info/dir X@exec install-info %D/info/nana.info %D/info/dir Xlib/libnana.a Xlibexec/nana-trace.gdb Xlibexec/nanafilter Xshare/nana/nana-run-init.gdb Xshare/nana/nana-run.gdb X@dirrm share/nana END-of-nana/pkg/PLIST echo x - nana/Makefile sed 's/^X//' >nana/Makefile << 'END-of-nana/Makefile' X# New ports collection makefile for: nana X# Version required: 2.4 X# Date created: 30th May 1999 X# Whom: Phil Maker X# X# $Id: Makefile,v 1.2 1999/05/12 10:00:14 asami Exp $ X# X XDISTNAME= nana-2.4 XCATEGORIES= devel XMASTER_SITES= ftp://ftp.cs.ntu.edu.au/pub/nana/ X XMAINTAINER= pjm@gnu.org X XGNU_CONFIGURE= yes XUSE_GMAKE= yes X XMAN1= nana.1 nana-clg.1 XMAN3= nana.3 I.3 DI.3 L.3 DL.3 Q.3 Qstl.3 X X.include END-of-nana/Makefile echo x - nana/README.html sed 's/^X//' >nana/README.html << 'END-of-nana/README.html' X X The FreeBSD Ports Collection (devel/nana) X

The FreeBSD Ports Collection ("devel/nana")


X X X

You are now in the directory for the port "devel/nana" (package name "nana-1.09"). X X

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


XImproved support for assertion checking and logging using GNU C and GDB. 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

XThis port requires package(s) "gmake-3.77" to build. X

XThis port requires package(s) "gdb-4.16" to run. X X


X Go up one level X| X Go to top of ports tree X X END-of-nana/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 May 29 19: 0: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B2C914D6D for ; Sat, 29 May 1999 19:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA60839; Sat, 29 May 1999 19:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from xenetserver.harz.de (xenetserver.harz.de [193.159.181.125]) by hub.freebsd.org (Postfix) with ESMTP id E678A14FAB for ; Sat, 29 May 1999 18:59:11 -0700 (PDT) (envelope-from frank@vogon.agala.harz.de) Received: (from uucp@localhost) by xenetserver.harz.de (8.9.1/8.9.1) with UUCP id DAA17862 for FreeBSD-gnats-submit@freebsd.org; Sun, 30 May 1999 03:59:10 +0200 (CEST) Received: (from frank@localhost) by vogon.agala.harz.de (8.9.3/8.8.8) id AAA64382; Sun, 30 May 1999 00:56:48 +0200 (CEST) (envelope-from frank) Message-Id: <199905292256.AAA64382@vogon.agala.harz.de> Date: Sun, 30 May 1999 00:56:48 +0200 (CEST) From: "Frank J. Beckmann" Reply-To: frank@vogon.agala.harz.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11935: ports/audio/dap: -DBIGENDIAN is wrong on i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11935 >Category: ports >Synopsis: ports/audio/dap: -DBIGENDIAN is wrong on i386 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat May 29 19:00:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Frank J. Beckmann >Release: FreeBSD 3.2-STABLE i386 >Organization: agala naga doron >Environment: >Description: Using -DBIGENDIAN on i386 results in broken aiff files. >How-To-Repeat: Use dap on an i386 to sample some sound and save it in aiff format. Look at the aiff file, some bytes have the wrong order. >Fix: patch-ac should be architecture dependant. >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 May 29 20: 0:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BBE9915043 for ; Sat, 29 May 1999 20:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA64216; Sat, 29 May 1999 20:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from ymris.ddm.on.ca (p36.argon.sentex.ca [209.112.4.229]) by hub.freebsd.org (Postfix) with ESMTP id 3806B14FA5 for ; Sat, 29 May 1999 19:50:26 -0700 (PDT) (envelope-from dchapes@ddm.on.ca) Received: from squigy.ddm.on.ca (squigy.ddm.on.ca [204.50.152.10]) by ymris.ddm.on.ca (8.8.8/8.8.8) with ESMTP id WAA07395 for ; Sat, 29 May 1999 22:50:24 -0400 (EDT) (envelope-from dchapes@squigy.ddm.on.ca) Received: (from dchapes@localhost) by squigy.ddm.on.ca (8.9.2/8.8.7) id WAA10813; Sat, 29 May 1999 22:50:23 -0400 (EDT) Message-Id: <199905300250.WAA10813@squigy.ddm.on.ca> Date: Sat, 29 May 1999 22:50:23 -0400 (EDT) From: dchapes@ddm.on.ca Reply-To: dchapes@ddm.on.ca To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11938: Port upgrade for emulators/vice Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11938 >Category: ports >Synopsis: Port upgrade for emulators/vice >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 May 29 20:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dave Chapeskie >Release: FreeBSD 3.1-STABLE i386 >Organization: DDM Consulting >Environment: >Description: The emulators/vice port is seriously out of date, the ports tree has version 0.14.1 while the current version is 1.0. I guess that's my fault since I'm listed as the maintainer :-). >How-To-Repeat: >Fix: What follows is a shar archive of a vice 1.0 port. Although I started with the vice-0.14.1 port I'm submitting a shar archive instead of diffs since the patches and PLIST have extensively changes. # 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: # # vice # vice/files # vice/files/md5 # vice/patches # vice/patches/patch-aa # vice/patches/patch-ab # vice/patches/patch-ac # vice/pkg # vice/pkg/COMMENT # vice/pkg/DESCR # vice/pkg/PLIST # vice/Makefile # echo c - vice mkdir -p vice > /dev/null 2>&1 echo c - vice/files mkdir -p vice/files > /dev/null 2>&1 echo x - vice/files/md5 sed 's/^X//' >vice/files/md5 << 'END-of-vice/files/md5' XMD5 (vice-1.0.tar.gz) = ac0302262270fec358a1c89bfb008e82 END-of-vice/files/md5 echo c - vice/patches mkdir -p vice/patches > /dev/null 2>&1 echo x - vice/patches/patch-aa sed 's/^X//' >vice/patches/patch-aa << 'END-of-vice/patches/patch-aa' X--- ./src/arch/unix/xaw/widgets/RegExp.h.orig Sat May 29 11:16:06 1999 X+++ ./src/arch/unix/xaw/widgets/RegExp.h Sat May 29 11:15:14 1999 X@@ -33,6 +33,7 @@ X 03/19/98 */ X #if defined __FreeBSD__ || defined __NetBSD__ X #undef HAVE_REGEXP_H X+#include X #endif X X #if defined HAVE_REGEX_H /* POSIX */ END-of-vice/patches/patch-aa echo x - vice/patches/patch-ab sed 's/^X//' >vice/patches/patch-ab << 'END-of-vice/patches/patch-ab' X--- ./man/c1541.1.orig Sat May 29 11:34:58 1999 X+++ ./man/c1541.1 Sat May 29 11:35:16 1999 X@@ -77,7 +77,8 @@ X .B \- X as a file name, it stands for \fIstdin\fR or \fIstdout\fR. X .SH SEE ALSO X-.BR VICE (1), X+.BR vice (1), X+.BR c1541 (1), X .BR petcat (1) X .SH AUTHORS X Teemu Rantanen END-of-vice/patches/patch-ab echo x - vice/patches/patch-ac sed 's/^X//' >vice/patches/patch-ac << 'END-of-vice/patches/patch-ac' X--- ./man/vice.1.orig Sat May 29 11:35:37 1999 X+++ ./man/vice.1 Sat May 29 11:35:49 1999 X@@ -32,7 +32,7 @@ X .PP X The whole documentation for these programs is available in HTML X format; the main file should be installed on your system as X-/usr/local/lib/VICE/doc/vice_toc.html. X+/usr/local/lib/vice/doc/vice_toc.html. X .P X For up to date news about VICE, have a look at the official home page X at END-of-vice/patches/patch-ac echo c - vice/pkg mkdir -p vice/pkg > /dev/null 2>&1 echo x - vice/pkg/COMMENT sed 's/^X//' >vice/pkg/COMMENT << 'END-of-vice/pkg/COMMENT' XEmulator for Commodore's C64, C128, VIC20, PET, and CBM-II. END-of-vice/pkg/COMMENT echo x - vice/pkg/DESCR sed 's/^X//' >vice/pkg/DESCR << 'END-of-vice/pkg/DESCR' XVersatile Commodore 8-bit Emulator XVICE, the multi-platform C64, C128, VIC20, PET and CBM-II emulator. X XThe following programs are included: X - x64, a C64 emulator; X - x128, a C128 emulator; X - xvic, a VIC20 emulator; X - xpet, a PET emulator; X - xcbm2, a CBM=II emulator; X - c1541, a stand-alone disk image maintenance utility; X - petcat, a CBM BASIC de-tokenizer; X XWWW: http://www.cs.cmu.edu/~dsladic/vice/vice.html X XThe ROM files are Copyright by Commodore Business Machines. END-of-vice/pkg/DESCR echo x - vice/pkg/PLIST sed 's/^X//' >vice/pkg/PLIST << 'END-of-vice/pkg/PLIST' Xbin/x64 Xbin/x128 Xbin/xvic Xbin/xpet Xbin/xcbm2 Xbin/c1541 Xbin/petcat X@unexec install-info -delete %D/info/vice.info %D/info/dir Xinfo/vice.info Xinfo/vice.info-1 Xinfo/vice.info-2 Xinfo/vice.info-3 Xinfo/vice.info-4 Xinfo/vice.info-5 X@exec install-info %D/info/vice.info %D/info/dir Xlib/vice/C64/basic Xlib/vice/C64/c64s.vpl Xlib/vice/C64/ccs64.vpl Xlib/vice/C64/chargen Xlib/vice/C64/default.vkm Xlib/vice/C64/default.vpl Xlib/vice/C64/default.vrs Xlib/vice/C64/frodo.vpl Xlib/vice/C64/godot.vpl Xlib/vice/C64/kernal Xlib/vice/C64/pc64.vpl Xlib/vice/C64/position.vkm Xlib/vice/C128/basic Xlib/vice/C128/c64s.vpl Xlib/vice/C128/ccs64.vpl Xlib/vice/C128/chargen Xlib/vice/C128/default.vkm Xlib/vice/C128/default.vpl Xlib/vice/C128/default.vrs Xlib/vice/C128/frodo.vpl Xlib/vice/C128/godot.vpl Xlib/vice/C128/kernal Xlib/vice/C128/pc64.vpl Xlib/vice/C128/position.vkm Xlib/vice/VIC20/basic Xlib/vice/VIC20/chargen Xlib/vice/VIC20/default.vkm Xlib/vice/VIC20/default.vpl Xlib/vice/VIC20/kernal Xlib/vice/VIC20/position.vkm Xlib/vice/VIC20/default.vrs Xlib/vice/PET/busi_uk.vkm Xlib/vice/PET/graphics.vkm Xlib/vice/PET/posg_de.vkm Xlib/vice/PET/busi_de.vkm Xlib/vice/PET/basic1 Xlib/vice/PET/basic2 Xlib/vice/PET/basic4 Xlib/vice/PET/kernal1 Xlib/vice/PET/kernal2 Xlib/vice/PET/kernal4 Xlib/vice/PET/edit1g Xlib/vice/PET/edit2g Xlib/vice/PET/edit2b Xlib/vice/PET/edit4g40 Xlib/vice/PET/edit4b40 Xlib/vice/PET/edit4b80 Xlib/vice/PET/chargen Xlib/vice/PET/chargen.de Xlib/vice/PET/amber.vpl Xlib/vice/PET/default.vpl Xlib/vice/PET/white.vpl Xlib/vice/PET/rom1g.vrs Xlib/vice/PET/rom2b.vrs Xlib/vice/PET/rom2g.vrs Xlib/vice/PET/rom4b40.vrs Xlib/vice/PET/rom4b80.vrs Xlib/vice/PET/rom4g40.vrs Xlib/vice/CBM-II/amber.vpl Xlib/vice/CBM-II/basic.128 Xlib/vice/CBM-II/basic.256 Xlib/vice/CBM-II/chargen.600 Xlib/vice/CBM-II/chargen.700 Xlib/vice/CBM-II/busi_uk.vkm Xlib/vice/CBM-II/default.vpl Xlib/vice/CBM-II/kernal Xlib/vice/CBM-II/white.vpl Xlib/vice/CBM-II/rom128l.vrs Xlib/vice/CBM-II/rom128h.vrs Xlib/vice/CBM-II/rom256l.vrs Xlib/vice/CBM-II/rom256h.vrs Xlib/vice/DRIVES/dos1541 Xlib/vice/DRIVES/dos1541II Xlib/vice/DRIVES/dos1571 Xlib/vice/DRIVES/dos1581 Xlib/vice/DRIVES/dos2031 Xlib/vice/doc/vice_1.html Xlib/vice/doc/vice_2.html Xlib/vice/doc/vice_3.html Xlib/vice/doc/vice_4.html Xlib/vice/doc/vice_5.html Xlib/vice/doc/vice_6.html Xlib/vice/doc/vice_7.html Xlib/vice/doc/vice_8.html Xlib/vice/doc/vice_9.html Xlib/vice/doc/vice_10.html Xlib/vice/doc/vice_11.html Xlib/vice/doc/vice_12.html Xlib/vice/doc/vice_13.html Xlib/vice/doc/vice_14.html Xlib/vice/doc/vice_15.html Xlib/vice/doc/vice_16.html Xlib/vice/doc/vice_toc.html X@exec ln -s %f %B/index.html X@unexec rm %B/index.html Xlib/vice/doc/64doc.txt Xlib/vice/doc/Evaluation Xlib/vice/doc/PETdoc.txt Xlib/vice/doc/Readme.dos Xlib/vice/doc/cbm_basic_tokens.txt Xlib/vice/doc/drive_info.txt Xlib/vice/doc/mnemonics.txt Xlib/vice/doc/mon.txt Xlib/vice/doc/serial.txt X@dirrm lib/vice/C64 X@dirrm lib/vice/C128 X@dirrm lib/vice/VIC20 X@dirrm lib/vice/PET X@dirrm lib/vice/CBM-II X@dirrm lib/vice/DRIVES X@dirrm lib/vice/doc X@dirrm lib/vice END-of-vice/pkg/PLIST echo x - vice/Makefile sed 's/^X//' >vice/Makefile << 'END-of-vice/Makefile' X# New ports collection makefile for: vice X# Version required: 1.0 X# Date created: Mar 28, 1998 X# Whom: dchapes@ddm.on.ca X# X# $Id: Makefile,v 1.9 1998/09/21 01:35:30 steve Exp $ X XDISTNAME= vice-1.0 XCATEGORIES= emulators XMASTER_SITES= ftp://ftp.funet.fi/pub/cbm/crossplatform/emulators/VICE/ X XMAINTAINER= dchapes@ddm.on.ca X XLIB_DEPENDS= Xaw3d.6:${PORTSDIR}/x11-toolkits/Xaw3d X XWRKSRC= ${WRKDIR}/vice-1.0 XUSE_XLIB= yes XRESTRICTED= ROMs are copyrighted by Commodore Business Machines XNO_CDROM= ${RESTRICTED} XNO_PACKAGE= ${RESTRICTED} X XGNU_CONFIGURE= yes XCONFIGURE_ENV= CFLAGS="${CFLAGS} -Wall -O5 -fomit-frame-pointer \ X -funroll-loops -finline-functions -fno-strength-reduce" XCONFIGURE_ARGS= --with-xaw3d X XMAN1= vice.1 c1541.1 petcat.1 XMLINKS= vice.1 x64.1 \ X vice.1 x128.1 \ X vice.1 xvic.1 \ X vice.1 xpet.1 \ X vice.1 xcbm2.1 X X.include END-of-vice/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 May 29 20: 4:29 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B5E715078; Sat, 29 May 1999 20:04:18 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA64642; Sat, 29 May 1999 20:04:18 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sat, 29 May 1999 20:04:18 -0700 (PDT) From: Message-Id: <199905300304.UAA64642@freefall.freebsd.org> To: lkoeller@cc.fh-lippe.de, steve@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11888: Xbae-4.6.2 don't work properly when compiled under Motif-2.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Xbae-4.6.2 don't work properly when compiled under Motif-2.1 State-Changed-From-To: open->closed State-Changed-By: steve State-Changed-When: Sat May 29 20:02:35 PDT 1999 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 29 20: 9:46 1999 Delivered-To: freebsd-ports@freebsd.org Received: from stampede.cs.berkeley.edu (stampede.CS.Berkeley.EDU [128.32.45.124]) by hub.freebsd.org (Postfix) with ESMTP id 6164C15043 for ; Sat, 29 May 1999 20:09:44 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca41-214.ix.netcom.com [209.111.208.214]) by stampede.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id UAA14751; Sat, 29 May 1999 20:11:03 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.2/8.6.9) id UAA40335; Sat, 29 May 1999 20:09:31 -0700 (PDT) Date: Sat, 29 May 1999 20:09:31 -0700 (PDT) Message-Id: <199905300309.UAA40335@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: sprice@hiwaay.net Cc: lkoeller@cc.fh-lippe.de, freebsd-ports@FreeBSD.org In-reply-to: (message from Steve Price on Sat, 29 May 1999 12:23:12 -0500 (CDT)) Subject: Re: ports/11888 (was Re: ports/11836: Upgrade of grace port ...) From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) References: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * LOCAL_LIBRARIES = -lXbae XmClientLibs -lXpm ... * * I think I understand what you were trying to accomplish, * but where does the value of XmClientLibs come from, and * shouldn't it look like $(XmClientLibs) or something? Handbook anyone? :) -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 29 20:16:14 1999 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 8511F14E61; Sat, 29 May 1999 20:16:11 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.1a/8.9.0) with ESMTP id WAA20792; Sat, 29 May 1999 22:16:10 -0500 (CDT) Date: Sat, 29 May 1999 22:16:10 -0500 (CDT) From: Steve Price To: Satoshi - Ports Wraith - Asami Cc: lkoeller@cc.fh-lippe.de, freebsd-ports@FreeBSD.org Subject: Re: ports/11888 (was Re: ports/11836: Upgrade of grace port ...) In-Reply-To: <199905300309.UAA40335@silvia.hip.berkeley.edu> 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 Sat, 29 May 1999, Satoshi - Ports Wraith - Asami wrote: # * LOCAL_LIBRARIES = -lXbae XmClientLibs -lXpm ... # * # * I think I understand what you were trying to accomplish, # * but where does the value of XmClientLibs come from, and # * shouldn't it look like $(XmClientLibs) or something? # # Handbook anyone? :) Well I realized where it came from, but I didn't see how it was getting set. I fixed it by adding a #include in Xbae.tmpl. -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 29 21:14: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 32AE714D90; Sat, 29 May 1999 21:14:02 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA71465; Sat, 29 May 1999 21:14:02 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sat, 29 May 1999 21:14:02 -0700 (PDT) From: Message-Id: <199905300414.VAA71465@freefall.freebsd.org> To: steve@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: pending/11886: Port update: graphics/tgif-nls to 4.1.14 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: graphics/tgif-nls to 4.1.14 Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: steve Responsible-Changed-When: Sat May 29 21:11:57 PDT 1999 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 29 21:19:31 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B6AC14D90; Sat, 29 May 1999 21:19:30 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA71842; Sat, 29 May 1999 21:19:30 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sat, 29 May 1999 21:19:30 -0700 (PDT) From: Message-Id: <199905300419.VAA71842@freefall.freebsd.org> To: steve@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: pending/11865: Xemacs 21 Packages port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Xemacs 21 Packages port Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: steve Responsible-Changed-When: Sat May 29 21:19:01 PDT 1999 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 29 21:24:44 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D5DC514DAF; Sat, 29 May 1999 21:24:43 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA72211; Sat, 29 May 1999 21:24:43 -0700 (PDT) (envelope-from steve@FreeBSD.org) Date: Sat, 29 May 1999 21:24:43 -0700 (PDT) From: Message-Id: <199905300424.VAA72211@freefall.freebsd.org> To: steve@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: pending/11745: typo in ld.c Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: typo in ld.c Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: steve Responsible-Changed-When: Sat May 29 21:24:02 PDT 1999 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat May 29 22:40: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A378E15388 for ; Sat, 29 May 1999 22:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA75388; Sat, 29 May 1999 22:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail3.lig.bellsouth.net (mail3.lig.bellsouth.net [205.152.0.51]) by hub.freebsd.org (Postfix) with ESMTP id 46A5E152E8 for ; Sat, 29 May 1999 22:37:37 -0700 (PDT) (envelope-from gljohns@bellsouth.net) Received: from gforce.johnson.home (host-209-214-144-64.msy.bellsouth.net [209.214.144.64]) by mail3.lig.bellsouth.net (8.8.8-spamdog/8.8.5) with ESMTP id BAA02419 for ; Sun, 30 May 1999 01:29:35 -0400 (EDT) Received: (from glenn@localhost) by gforce.johnson.home (8.9.3/8.9.3) id AAA40884; Sun, 30 May 1999 00:37:31 -0500 (CDT) (envelope-from glenn) Message-Id: <199905300537.AAA40884@gforce.johnson.home> Date: Sun, 30 May 1999 00:37:31 -0500 (CDT) From: gljohns@bellsouth.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11939: Upgrade of wmsound to 0.9.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11939 >Category: ports >Synopsis: Upgrade of wmsound to 0.9.5 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat May 29 22:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Glenn Johnson >Release: FreeBSD 3.2-STABLE i386 >Organization: >Environment: >Description: Upgrade the wmsound port from 0.9.3 to 0.9.5 >How-To-Repeat: >Fix: Apply the following diff to ${PORTS}/audio/wmsound. diff -ruN wmsound.old/Makefile wmsound/Makefile --- wmsound.old/Makefile Sat May 29 16:51:35 1999 +++ wmsound/Makefile Sat May 29 17:23:35 1999 @@ -6,7 +6,7 @@ # $Id: Makefile,v 1.4 1999/04/11 21:39:23 jseger Exp $ # -DISTNAME= wmsound-0.9.3 +DISTNAME= wmsound-0.9.5 CATEGORIES= audio windowmaker MASTER_SITES= ftp://shadowmere.student.utwente.nl/pub/WindowMaker/ diff -ruN wmsound.old/files/md5 wmsound/files/md5 --- wmsound.old/files/md5 Sat May 29 16:51:34 1999 +++ wmsound/files/md5 Sat May 29 17:23:35 1999 @@ -1 +1 @@ -MD5 (wmsound-0.9.3.tar.gz) = dcb6acbd293d9ecf0b8a4fdfd6c12189 +MD5 (wmsound-0.9.5.tar.gz) = 86f9b19ca0ca1daa072d76d02943dd3e diff -ruN wmsound.old/patches/patch-aa wmsound/patches/patch-aa --- wmsound.old/patches/patch-aa Sat May 29 16:51:34 1999 +++ wmsound/patches/patch-aa Sat May 29 17:32:15 1999 @@ -1,16 +1,16 @@ ---- Imakefile.orig Sun Jan 17 07:56:11 1999 -+++ Imakefile Fri Jan 22 22:14:48 1999 -@@ -1,12 +1,10 @@ +--- Imakefile.orig Sat May 29 17:31:32 1999 ++++ Imakefile Sat May 29 17:32:02 1999 +@@ -1,11 +1,11 @@ #define IHaveSubdirs #define PassCDebugFlags CDEBUGFLAGS="$(CDEBUGFLAGS)" -PREFIX = /usr/local -- ++XCOMM PREFIX = /usr/local + DESTDIR = $(PREFIX) - XCOMM CDEBUGFLAGS = -Wall -ggdb -DDEBUG --CDEBUGFLAGS = -O6 -ffast-math -+XCOMM CDEBUGFLAGS = -O6 -ffast-math +-CDEBUGFLAGS = -Wall -ggdb -DDEBUG ++XCOMM CDEBUGFLAGS = -Wall -ggdb -DDEBUG + XCOMM CDEBUGFLAGS = -O6 -ffast-math - XCOMM Uncomment the following two lines for HPUX support diff -ruN wmsound.old/pkg/DESCR wmsound/pkg/DESCR --- wmsound.old/pkg/DESCR Sat May 29 16:51:34 1999 +++ wmsound/pkg/DESCR Sat May 29 17:23:35 1999 @@ -10,6 +10,6 @@ Window Maker, or upgrade to a newer version. You must set up your sounds to use for various events, ie., iconification. You -can get preset Sounsets from: +can get preset SoundSets from: http://www.frontiernet.net/~southgat/wmsound/sounds/index.shtml diff -ruN wmsound.old/pkg/DESCR.orig wmsound/pkg/DESCR.orig --- wmsound.old/pkg/DESCR.orig Wed Dec 31 18:00:00 1969 +++ wmsound/pkg/DESCR.orig Sat May 29 17:23:29 1999 @@ -0,0 +1,15 @@ +This is the sound server for Window Maker. To use it, execute "wmsound &" from +an xterm, then dock the application icon. This package comes with a utility +called nmaker that can be used to play .wav files. You can set nmaker to be +the application to play .au and .wav files that you drop onto the docked +wmsound icon. + +Recent versions of Window Maker are built with sound enabled by default. If +you are using an older version of Window Maker, you will have to add the +following argument to configure: "--enable-sound" and rebuild and reinstall +Window Maker, or upgrade to a newer version. + +You must set up your sounds to use for various events, ie., iconification. You +can get preset Sounsets from: + +http://www.frontiernet.net/~southgat/wmsound/sounds/index.shtml >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 May 29 22:50: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 33E3B153C6 for ; Sat, 29 May 1999 22:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA76068; Sat, 29 May 1999 22:50:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail1.lig.bellsouth.net (mail1.lig.bellsouth.net [205.152.0.55]) by hub.freebsd.org (Postfix) with ESMTP id BCD4B1537C for ; Sat, 29 May 1999 22:41:24 -0700 (PDT) (envelope-from gljohns@bellsouth.net) Received: from gforce.johnson.home (host-209-214-144-64.msy.bellsouth.net [209.214.144.64]) by mail1.lig.bellsouth.net (8.8.8-spamdog/8.8.5) with ESMTP id BAA11332 for ; Sun, 30 May 1999 01:41:31 -0400 (EDT) Received: (from glenn@localhost) by gforce.johnson.home (8.9.3/8.9.3) id AAA41000; Sun, 30 May 1999 00:41:23 -0500 (CDT) (envelope-from glenn) Message-Id: <199905300541.AAA41000@gforce.johnson.home> Date: Sun, 30 May 1999 00:41:23 -0500 (CDT) From: gljohns@bellsouth.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11940: Additional patch for wsoundprefs Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11940 >Category: ports >Synopsis: Additional patch for the wsoundprefs port. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat May 29 22:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Glenn Johnson >Release: FreeBSD 3.2-STABLE i386 >Organization: >Environment: >Description: Patch to add to the wsoundprefs port. >How-To-Repeat: >Fix: Add the enclosed patch as patch-ac to $PORTS/audio/wsoundprefs. --- src/SoundPaths.c.orig Sun May 30 00:08:59 1999 +++ src/SoundPaths.c Sun May 30 00:13:22 1999 @@ -82,6 +82,7 @@ wwarning(_("bad value in option SoundPath. Using default path list")); addPathToList(panel->sndL, -1, "~/GNUstep/Library/WindowMaker/Sounds"); addPathToList(panel->sndL, -1, "/usr/local/share/WindowMaker/Sounds"); + addPathToList(panel->sndL, -1, "/usr/X11R6/share/WindowMaker/Sounds"); } else { for (i=0; isndsetL, -1, "~/GNUstep/Library/WindowMaker/SoundSets"); addPathToList(panel->sndsetL, -1, "/usr/local/share/WindowMaker/SoundSets"); + addPathToList(panel->sndsetL, -1, "/usr/X11R6/share/WindowMaker/SoundSets"); } else { for (i=0; iRelease-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 May 30 0:42:18 1999 Delivered-To: freebsd-ports@freebsd.org Received: from henoch.cc.fh-lippe.de (henoch.cc.fh-lippe.de [193.16.112.72]) by hub.freebsd.org (Postfix) with ESMTP id 330D614C0B; Sun, 30 May 1999 00:42:09 -0700 (PDT) (envelope-from lkoeller@cc.fh-lippe.de) Received: from spock.cc.fh-lippe.de([193.16.118.120]) (3210 bytes) by henoch.cc.fh-lippe.de via sendmail with P:smtp/R:inet_hosts/T:smtp (sender: ) id for ; Sun, 30 May 1999 09:42:09 +0200 (MET DST) (Smail-3.2.0.101 1997-Dec-17 #3 built 1998-Feb-3) Received: from cc.fh-lippe.de by spock.cc.fh-lippe.de with smtp (Smail3.1.29.1 #2) id m10o0ER-0006zoC; Sun, 30 May 99 09:42 MET DST Received: from odie.lippe.de (localhost [127.0.0.1]) by cc.fh-lippe.de (8.9.2/8.9.1) with ESMTP id JAA20083; Sun, 30 May 1999 09:22:26 +0200 (CEST) (envelope-from lkoeller@odie.lippe.de) Message-Id: <199905300722.JAA20083@cc.fh-lippe.de> X-Mailer: exmh version 2.0.2 2/24/98 From: Lars =?iso-8859-1?Q?K=F6ller?= To: Steve Price Cc: Satoshi - Ports Wraith - Asami , lkoeller@cc.fh-lippe.de, freebsd-ports@FreeBSD.org Subject: Re: ports/11888 (was Re: ports/11836: Upgrade of grace port ...) In-reply-to: sprice's message of Sat, 29 May 1999 22:16:10 -0500. X-Face: eCcoCV}FjV*O{6>[1$XP/e%]TJhEw2MF33dFh)^HM7Gfd=[/(4+0a$~ On Sat, 29 May 1999, Satoshi - Ports Wraith - Asami wrote: > > # * LOCAL_LIBRARIES = -lXbae XmClientLibs -lXpm ... > # * > # * I think I understand what you were trying to accomplish, > # * but where does the value of XmClientLibs come from, and > # * shouldn't it look like $(XmClientLibs) or something? > # > # Handbook anyone? :) > > Well I realized where it came from, but I didn't see how > it was getting set. I fixed it by adding a > > #include > > in Xbae.tmpl. With an propper Motif installation, the Motif.tmpl schould be included in Imake.tmpl ... hell I need 15 minutes to walk trough the imake jungle :-) It works the following way: In site.def I found #ifndef TopLevelProject # define TopLevelProject Motif #endif and in Imake.tmpl #ifndef ProjectRulesFile # define ProjectRulesFile Concat3(<,TopLevelProject,.rules>) #endif #include ProjectRulesFile so Motif.rules is included from Imake.tmpl. The site.def File is the one delivered with Motif 2.1 The way it works in older Motif releases was a direct include of Motif.tmpl and Motif.rules in Imake.tmpl if I remember right. The normal way should be that there is no source manipulation like include .... in the Motif applications! All the ports like xmcd, xmmix compiles out of the box, even if I didn't use the ports mechanism! Regards Lars -- E-Mail: | Lars Koeller Lars.Koeller@Uni-Bielefeld.DE | UNIX Sysadmin lkoeller@cc.fh-lippe.de | Computing Center PGP-key: | University of Bielefeld http://www.nic.surfnet.nl/pgp/pks-toplev.html | Germany ----------- FreeBSD, what else? ---- 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 Sun May 30 6:31: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from poo.smooch (ts08-003.dublin.indigo.ie [194.125.205.130]) by hub.freebsd.org (Postfix) with SMTP id 2F509150E5 for ; Sun, 30 May 1999 06:30:45 -0700 (PDT) (envelope-from blokey@indigo.ie) Received: (qmail 57902 invoked by uid 1001); 30 May 1999 13:30:36 -0000 From: blokey@indigo.ie Message-ID: <19990530143036.A57891@smooch> Date: Sun, 30 May 1999 14:30:36 +0100 To: ports@freebsd.org Subject: updating ports system Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Is there any work being done with regards to the ports system? Are people for example implementing a mechanism that lets you check if an older version of a package exists before installing a new one over it (for example sometimes I would install a port, then a new one comes along and I install the new one. Then one day I'll be looking at my packages, see that I have two versions of this port and delete the older one, but oops if the MD5 hash for one of the old files matches the new one that gets deleted too and I end up with one deleted and one unusable port). I know some ports actually do check for this kind of thing but surely it should be standardised. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 30 8:30:25 1999 Delivered-To: freebsd-ports@freebsd.org Received: from spooky.rwwa.com (rwwa.com [198.115.177.3]) by hub.freebsd.org (Postfix) with ESMTP id 1333914C99; Sun, 30 May 1999 08:30:01 -0700 (PDT) (envelope-from witr@rwwa.com) Received: from spooky.rwwa.com (localhost.rwwa.com [127.0.0.1]) by spooky.rwwa.com (8.8.7/8.8.7) with ESMTP id LAA25749; Sun, 30 May 1999 11:29:22 -0400 (EDT) (envelope-from witr@rwwa.com) Message-Id: <199905301529.LAA25749@spooky.rwwa.com> X-Mailer: exmh version 2.0zeta 7/24/97 To: Dean Lombardo Cc: freebsd-hackers@freebsd.org, freebsd-ports@freebsd.org Subject: Re: a two-level port system? In-reply-to: Your message of "Thu, 27 May 1999 16:01:28 BST." <374D5E48.15A2D82B@excite.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 30 May 1999 11:29:22 -0400 From: Robert Withrow Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Alternatively, is it possible to have the port tree be essentially empty (perhaps just the makefile and category directories) and then just have it fetch the makefiles and make the directories on demand, for the individal ports? --------------------------------------------------------------------- Robert Withrow, R.W. Withrow Associates, Swampscott MA, witr@rwwa.COM To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 30 8:56:48 1999 Delivered-To: freebsd-ports@freebsd.org Received: from rm2.plala.or.jp (rm2.plala.or.jp [210.153.0.133]) by hub.freebsd.org (Postfix) with ESMTP id 39E3814CB9 for ; Sun, 30 May 1999 08:56:45 -0700 (PDT) (envelope-from tosihide@lime.plala.or.jp) Received: from mld2.tky.plala.or.jp (mld2.tky.plala.or.jp [210.153.1.4]) by rm2.plala.or.jp (mst990527) with ESMTP id AAA19012 for ; Mon, 31 May 1999 00:56:43 +0900 (JST) Received: by mld2.tky.plala.or.jp (tky990527) with ESMTP id AAA29097; Mon, 31 May 1999 00:56:42 +0900 (JST) Received: by lime.tky.plala.or.jp (3.6W/usr990324) with SMTP id AAA13073 for ; Mon, 31 May 1999 00:56:41 +0900 (JST) Message-ID: <000101beaab4$e55f0f00$142999d2@exus> From: "Toshihide Yamamoto" To: Subject: =?iso-2022-jp?B?eHBsNDg2LTQuMRskQiROJSQlcyU5JUghPCVrJCokaCRTPEIbKEI=?= =?iso-2022-jp?B?GyRCOVQkSyREJCQkRhsoQg==?= Date: Mon, 31 May 1999 00:55:51 +0900 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org $B$O$8$a$^$7$F!#(B $B8=:_(B FreeBSD3.1 $B$*$h$S!"(BVine Linux $B$r;HMQ$7$F$$$^$9!#(B $B@hF|!"(BPL/I $B%3%s%Q%$%i$NB8:_$rCN$j!"AaB.%=!<%9$r(B Ports $B$+$i(B $B%@%&%s%m!<%I$5$;$FD:$-!"%$%s%9%H!<%k$r;n$_$^$7$?!#(B $B$7$+$7$J$,$i!"%$%s%9%H!<%k$,>ee$2$N>uBV(B $B$G$9!#(B $B;EJ}$,$J$$$N$G!";THN(B CD $B$h$j(B pkg_add $B$G%$%s%9%H!<%k(B $B$7$?$N$G$9$,!"%^%K%e%"%k$rFI$s$G$b(B xpl $B$N\$7$$; Sun, 30 May 1999 09:48:49 -0700 (PDT) (envelope-from vanderh@ecf.toronto.edu) Received: from localhost.nowhere (ppp18354.on.bellglobal.com [206.172.130.34]) by smtp11.bellglobal.com (8.8.5/8.8.5) with ESMTP id MAA12059; Sun, 30 May 1999 12:51:34 -0400 (EDT) Received: (from tim@localhost) by localhost.nowhere (8.9.3/8.9.1) id MAA05263; Sun, 30 May 1999 12:49:03 -0400 (EDT) (envelope-from tim) Date: Sun, 30 May 1999 12:49:02 -0400 From: Tim Vanderhoek To: blokey@indigo.ie Cc: ports@freebsd.org Subject: Re: updating ports system Message-ID: <19990530124902.A5186@mad> References: <19990530143036.A57891@smooch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: <19990530143036.A57891@smooch>; from blokey@indigo.ie on Sun, May 30, 1999 at 02:30:36PM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, May 30, 1999 at 02:30:36PM +0100, blokey@indigo.ie wrote: > > Is there any work being done with regards to the ports system? Are people for > example implementing a mechanism that lets you check if an older version of a > package exists before installing a new one over it (for example sometimes I This doesn't sound too hard at all. Add an appropriate .if make(install) to the top of the _PORT_USE section of bsd.port.mk that checks to see if the port is installed. You already have the variable ${PKGBASE} defined for you. Use the pkg_info(1) command to see if the port is installed (you could go grokking through PKG_DB_DIR yourself, too, although that's perhaps a little less preferable). If so, print a message advising the user to delete the old one. You might need to be careful about searching for the $PKGBASE "ref" and accidentally finding "referree"... Ideally, pkg_add(1) would be modified to include a similar warning. This wouldn't be a very hard modification for someone just becoming familiar with the system to make. We'll be expecting patches in two weeks. :-) > deleted and one unusable port). I know some ports actually do check for this > kind of thing but surely it should be standardised. They do!?! Ugh. -- This is my .signature which gets appended to the end of my messages. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 30 11: 4: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from chmls05.mediaone.net (ne.mediaone.net [24.128.1.70]) by hub.freebsd.org (Postfix) with ESMTP id AA2D41535C; Sun, 30 May 1999 11:03:56 -0700 (PDT) (envelope-from housley@frenchknot.ne.mediaone.net) Received: from frenchknot.ne.mediaone.net (frenchknot.ne.mediaone.net [24.218.96.75]) by chmls05.mediaone.net (8.8.7/8.8.7) with ESMTP id OAA02100; Sun, 30 May 1999 14:03:44 -0400 (EDT) Received: from frenchknot.ne.mediaone.net (housley@localhost [127.0.0.1]) by frenchknot.ne.mediaone.net (8.9.3/8.9.3) with ESMTP id OAA34788; Sun, 30 May 1999 14:03:44 -0400 (EDT) (envelope-from housley@frenchknot.ne.mediaone.net) Message-ID: <37517D80.26D30168@frenchknot.ne.mediaone.net> Date: Sun, 30 May 1999 14:03:44 -0400 From: "James E. Housley" X-Mailer: Mozilla 4.51 [en] (X11; U; FreeBSD 3.2-BETA i386) X-Accept-Language: en MIME-Version: 1.0 To: hetzels@westbent.net, rse@engelschall.com, dirk@freebsd.org, adam@algroup.co.uk, ache@freebsd.org Cc: ports@freebsd.org Subject: apache 1.3.x-{what ever} Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I was trying to upgrade/switch from apache13-modssl to apache13-fp to experiment with fp. I was done playing with ssl for the moment. The problem/annoyance I came across is that they don't use the same data directory by default. And it was very difficult to force fp to use the ${PREFIX}/share/apache directory that -modssl was using. apache13-fp/Makefile: --datadir=${PREFIX}/www \ apache13-modssl/Makefile: --datadir=${PREFIX}/share/apache \ apache13-php3/Makefile: --datadir=${PREFIX}/share/apache \ apache13-ssl/Makefile: --datadir=${PREFIX}/www \ apache13/Makefile: --datadir=${PREFIX}/www \ There seems to be two distict camps. It might be benificial to decide on one of the two locations. Just my opinion. PS. I do not receive the ports mailing list. If you feel that I need to see any of the replies, please cc me. Thanks. -- James E. Housley PGP: 1024/03983B4D System Supply, Inc. 2C 3F 3A 0D A8 D8 C3 13 Pager: pagejim@notepage.com 7C F0 B5 BF 27 8B 92 FE "The box said 'Requires Windows 95, NT, or better,' so I installed FreeBSD" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 30 11:51:42 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mail.westbend.net (ns1.westbend.net [209.224.254.131]) by hub.freebsd.org (Postfix) with ESMTP id 1B7F5151FA for ; Sun, 30 May 1999 11:51:37 -0700 (PDT) (envelope-from hetzels@westbend.net) Received: from admin (admin.westbend.net [209.224.254.141]) by mail.westbend.net (8.8.8/8.8.8) with SMTP id NAA25382 for ; Sun, 30 May 1999 13:51:36 -0500 (CDT) (envelope-from hetzels@westbend.net) Message-ID: <001001beaacd$72438dc0$8dfee0d1@westbend.net> From: "Scot W. Hetzel" To: References: <19990530143036.A57891@smooch> <19990530124902.A5186@mad> Subject: Re: updating ports system Date: Sun, 30 May 1999 13:51:37 -0500 Organization: West Bend Internet 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.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From: Tim Vanderhoek > This wouldn't be a very hard modification for someone just becoming > familiar with the system to make. > > We'll be expecting patches in two weeks. :-) > > Actually, NetBSD ports tools already have this kind of detection built into their pkg creation tools. It should be a simple matter of syncing up their pkg creation code with ours. Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 30 14:27:37 1999 Delivered-To: freebsd-ports@freebsd.org Received: from smtp11.bellglobal.com (smtp11.bellglobal.com [204.101.251.53]) by hub.freebsd.org (Postfix) with ESMTP id 14BF314EFB for ; Sun, 30 May 1999 14:27:35 -0700 (PDT) (envelope-from vanderh@ecf.toronto.edu) Received: from localhost.nowhere (ppp18334.on.bellglobal.com [206.172.130.14]) by smtp11.bellglobal.com (8.8.5/8.8.5) with ESMTP id RAA24689; Sun, 30 May 1999 17:30:16 -0400 (EDT) Received: (from tim@localhost) by localhost.nowhere (8.9.3/8.9.1) id RAA06792; Sun, 30 May 1999 17:27:49 -0400 (EDT) (envelope-from tim) Date: Sun, 30 May 1999 17:27:48 -0400 From: Tim Vanderhoek To: "Scot W. Hetzel" Cc: ports@FreeBSD.ORG Subject: Re: updating ports system Message-ID: <19990530172748.B6701@mad> References: <19990530143036.A57891@smooch> <19990530124902.A5186@mad> <001001beaacd$72438dc0$8dfee0d1@westbend.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: <001001beaacd$72438dc0$8dfee0d1@westbend.net>; from Scot W. Hetzel on Sun, May 30, 1999 at 01:51:37PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [Re: Detecting old package versions] On Sun, May 30, 1999 at 01:51:37PM -0500, Scot W. Hetzel wrote: > > > > This wouldn't be a very hard modification for someone just becoming > > familiar with the system to make. > > > > We'll be expecting patches in two weeks. :-) > > Actually, NetBSD ports tools already have this kind of detection built into > their pkg creation tools. I haven't looked at their bsd.port.mk lately, but I think it has diverged significantly. Without access to their CVS records, you might find it easier to just rewrite it for ours, since it should be quite straightforward. -- This is my .signature which gets appended to the end of my messages. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 30 15:50: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D3884153A8 for ; Sun, 30 May 1999 15:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA94780; Sun, 30 May 1999 15:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from blaubaer.kn-bremen.de (blaubaer.kn-bremen.de [134.102.38.17]) by hub.freebsd.org (Postfix) with ESMTP id 87BD114E1B for ; Sun, 30 May 1999 15:48:38 -0700 (PDT) (envelope-from nox@saturn.kn-bremen.de) Received: from saturn.kn-bremen.de (uucp@localhost) by blaubaer.kn-bremen.de (8.9.1/8.9.1) with UUCP id AAA13601 for FreeBSD-gnats-submit@freebsd.org; Mon, 31 May 1999 00:46:18 +0200 Received: (from nox@localhost) by saturn.kn-bremen.de (8.9.3/8.8.5) id AAA97676; Mon, 31 May 1999 00:45:23 +0200 (MET DST) Message-Id: <199905302245.AAA97676@saturn.kn-bremen.de> Date: Mon, 31 May 1999 00:45:23 +0200 (MET DST) From: Juergen Lock Reply-To: nox@jelal.kn-bremen.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11949: update sysutils/cdrecord to 1.8a22 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11949 >Category: ports >Synopsis: update sysutils/cdrecord to 1.8a22 >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 May 30 15:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Juergen Lock >Release: FreeBSD 3.2-STABLE i386 >Organization: me? organized? >Environment: FreeBSD 3.2-STABLE i386, tested with: cd0: Removable CD-ROM SCSI-2 device >Description: update cdrecord to 1.8a22. this was an easy one... >How-To-Repeat: n/a >Fix: cvs diff: Diffing . Index: Makefile =================================================================== RCS file: /home/cvs/cvs/ports/sysutils/cdrecord/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- Makefile 1999/05/11 02:29:25 1.14 +++ Makefile 1999/05/24 21:36:09 @@ -6,7 +6,7 @@ # $Id: Makefile,v 1.14 1999/05/11 02:29:25 obrien Exp $ # -DISTNAME= cdrecord-1.8a21 +DISTNAME= cdrecord-1.8a22 CATEGORIES= sysutils MASTER_SITES= ftp://ftp.fokus.gmd.de/pub/unix/cdrecord/alpha/ cvs diff: Diffing files Index: files/md5 =================================================================== RCS file: /home/cvs/cvs/ports/sysutils/cdrecord/files/md5,v retrieving revision 1.8 diff -u -r1.8 md5 --- md5 1999/05/11 02:29:31 1.8 +++ md5 1999/05/24 21:36:46 @@ -1 +1 @@ -MD5 (cdrecord-1.8a21.tar.gz) = 0e07eabda338f3d1d53cbb28ba5457b2 +MD5 (cdrecord-1.8a22.tar.gz) = 07b962c800788224e61fced0ad3c331d cvs diff: Diffing patches cvs diff: Diffing pkg >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 May 30 16: 4:43 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 21FF9155AC; Sun, 30 May 1999 16:03:59 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA96668; Sun, 30 May 1999 16:03:59 -0700 (PDT) (envelope-from asami@FreeBSD.org) Date: Sun, 30 May 1999 16:03:59 -0700 (PDT) From: Message-Id: <199905302303.QAA96668@freefall.freebsd.org> To: taguchi@tohoku.iij.ad.jp, asami@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11924: MD5 fix: x11/XttXF86srv-common Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MD5 fix: x11/XttXF86srv-common State-Changed-From-To: open->closed State-Changed-By: asami State-Changed-When: Sun May 30 16:03:06 PDT 1999 State-Changed-Why: Thanks, committed to xtt and XFree86 ports. By the way, next time you attach something as short as this, please don't gzip and uuencode it -- it's two extra commands for something that could have been easily cut and pasted ! ;) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 30 19:30: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A14214E9B for ; Sun, 30 May 1999 19:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA12970; Sun, 30 May 1999 19:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 7B01F14C0D; Sun, 30 May 1999 19:28:17 -0700 (PDT) Message-Id: <19990531022817.7B01F14C0D@hub.freebsd.org> Date: Sun, 30 May 1999 19:28:17 -0700 (PDT) From: tnt@home.se To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11951: Install from the print/apsfilter port failed. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11951 >Category: ports >Synopsis: Install from the print/apsfilter port failed. >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: Sun May 30 19:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Torbjorn Tornkvist >Release: 3.2-STABLE >Organization: private use >Environment: Sorry, don't have that machine in front of me right now, but I did a cvsup (src-all) a few days ago. >Description: I did cvsup of ports-all a few days ago. Failed to install printer/apsfilter from the ports collection. (Should have included the output from make here if I had the machine in front of me) Let me know if the it isn't repeatable and I can supply an output later. >How-To-Repeat: cd /usr/ports/print/apsfilter make >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 May 30 20: 0: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 43AFF14EBB for ; Sun, 30 May 1999 20:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA14661; Sun, 30 May 1999 20:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.sso.sytexinc.com (rob.sso.sytexinc.com [207.196.92.135]) by hub.freebsd.org (Postfix) with ESMTP id 95BC114EBB for ; Sun, 30 May 1999 19:59:39 -0700 (PDT) (envelope-from jgarman@sso.sytexinc.com) Received: by mail.sso.sytexinc.com (Postfix, from userid 1000) id C84255EF01; Mon, 31 May 1999 02:59:19 +0000 (GMT) Message-Id: <19990531025919.C84255EF01@mail.sso.sytexinc.com> Date: Mon, 31 May 1999 02:59:19 +0000 (GMT) From: jgarman@sso.sytexinc.com Reply-To: jgarman@sso.sytexinc.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11952: poppassd security enhancements Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11952 >Category: ports >Synopsis: poppassd security enhancements >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 May 30 20:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Jason Garman >Release: FreeBSD 3.2-RELEASE i386 >Organization: individual >Environment: not relevant; any machine with the poppassd port installed >Description: poppassd by default allows an attacker to brute force guess account names and passwords >How-To-Repeat: none. >Fix: The following patch adds a delay when an incorrect password is entered for an account, and also changes the response for an unknown username from "user unknown" to "password incorrect" in order to keep people from finding out what user accounts exist by querying the server ad infinitum. --- poppassd.before.jason.c Thu May 27 11:45:42 1999 +++ poppassd.c Thu May 27 11:50:18 1999 @@ -211,13 +211,16 @@ if ((pw = getpwnam (user)) == NULL) { - WriteToClient ("500 Unknown user, %s.", user); - exit(1); + syslog(LOG_ERR, "Unknown user %s tried to use service", user); + sleep (5); + WriteToClient ("500 Old password is incorrect."); + exit(1); } if (chkPass (user, oldpass, pw) == FAILURE) { syslog(LOG_ERR, "Incorrect password from %s", user); + sleep (5); WriteToClient ("500 Old password is incorrect."); exit(1); } >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 May 30 20:26:14 1999 Delivered-To: freebsd-ports@freebsd.org Received: from Argon.Mlink.NET (Argon.Mlink.NET [205.236.182.18]) by hub.freebsd.org (Postfix) with ESMTP id 4681B14CD5 for ; Sun, 30 May 1999 20:26:12 -0700 (PDT) (envelope-from matt@Mlink.NET) Received: from arpaqc-gw.mlink.net (matt@arpaqc-gw.mlink.net [209.104.117.209]) by Argon.Mlink.NET (8.8.8/8.8.2) with ESMTP id XAA19906 for ; Sun, 30 May 1999 23:23:56 -0400 (EDT) Date: Sun, 30 May 1999 23:26:10 -0400 (EDT) From: matt To: FreeBSD-PORTS Subject: WmInet and asmon 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 These two programs need ported badly! They are terrific, I'm dismayed to find that they won't compile normally =/ If anyone likes docked applications and is a better programmer then me wants to have a look at it, Please let me know... Or make it a port, it'd be terrific.. The error is: cc -o asmon -L/usr/X11R6/lib -lXpm -lXext -lX11 /usr/lib/crt1.o: In function `_start': /usr/lib/crt1.o(.text+0x69): undefined reference to `main' *** Error code 1 Maybe that will give you an idea as to the problem.... Yes, I know this should probably go to FreeBSD-Questions, but since it involves two applications that should be ported and aren't, I decided to send it here.. The error was the same on wminet as well btw... Matt -- DISCLAIMER: Anyone sending me unsolicited commercial electronic mail will be charged a $100 fee for time spent reading it. Do NOT send this type of electronic mail to me. In reading this, you automatically agree to be subjected to these terms: US Code Title 47, Sec.227(a)(2)(B), a computer/modem/printer meets the definition of a telephone fax machine. By Sec.227(b)(1)(C), it is unlawful to send any unsolicited advertisement to such equipment. By Sec.227(b)(3)(C), a violation of the aforementioned Section is punishable by action to recover actual monetary loss, or $500, whichever is greater, for each violation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 30 20:29:57 1999 Delivered-To: freebsd-ports@freebsd.org Received: from picnic.mat.net (picnic.mat.net [206.246.122.133]) by hub.freebsd.org (Postfix) with ESMTP id D4BFE14F71 for ; Sun, 30 May 1999 20:29:55 -0700 (PDT) (envelope-from chuckr@picnic.mat.net) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.9.3/8.8.5) with ESMTP id XAA73889; Sun, 30 May 1999 23:29:46 -0400 (EDT) Date: Sun, 30 May 1999 23:29:46 -0400 (EDT) From: Chuck Robey To: matt Cc: FreeBSD-PORTS Subject: Re: WmInet and asmon 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 On Sun, 30 May 1999, matt wrote: > > These two programs need ported badly! They are terrific Geeze. They're great, but you won't spend one word on what they are. Is it any wonder that no one could give a damn about them, when they can't tell if they're an automated crossword puzzle or a new screen saver? No wonder they'll get no help. You need some sales training. Sell us on these things! ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@picnic.mat.net | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run picnic (FreeBSD-current) (301) 220-2114 | and jaunt (Solaris7). ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 30 20:35: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from wopr.caltech.edu (wopr.caltech.edu [131.215.240.222]) by hub.freebsd.org (Postfix) with ESMTP id 2DEEE14F71 for ; Sun, 30 May 1999 20:34:56 -0700 (PDT) (envelope-from mph@wopr.caltech.edu) Received: (from mph@localhost) by wopr.caltech.edu (8.9.3/8.9.1) id UAA11241; Sun, 30 May 1999 20:34:10 -0700 (PDT) (envelope-from mph) Date: Sun, 30 May 1999 20:34:10 -0700 From: Matthew Hunt To: matt Cc: FreeBSD-PORTS Subject: Re: WmInet and asmon Message-ID: <19990530203410.A11199@wopr.caltech.edu> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: ; from matt on Sun, May 30, 1999 at 11:26:10PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, May 30, 1999 at 11:26:10PM -0400, matt wrote: > cc -o asmon -L/usr/X11R6/lib -lXpm -lXext -lX11 > /usr/lib/crt1.o: In function `_start': > /usr/lib/crt1.o(.text+0x69): undefined reference to `main' > *** Error code 1 You're not specifying any source or object files to compile. -- Matthew Hunt * Heh heh. He said "0x69". Heh heh. http://www.pobox.com/~mph/ * To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 30 20:38:42 1999 Delivered-To: freebsd-ports@freebsd.org Received: from november.jaded.net (november.jaded.net [209.90.128.250]) by hub.freebsd.org (Postfix) with ESMTP id E849015090 for ; Sun, 30 May 1999 20:38:39 -0700 (PDT) (envelope-from dan@november.jaded.net) Received: (from dan@localhost) by november.jaded.net (8.9.3/8.9.3+trinsec_nospam) id XAA52157 for ports@freebsd.org; Sun, 30 May 1999 23:46:16 -0400 (EDT) Date: Sun, 30 May 1999 23:46:16 -0400 From: Dan Moschuk To: ports@freebsd.org Subject: Small Makefile patch for MySQL Message-ID: <19990530234616.B52096@trinsec.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Greetings, The following patch is a quick hack against the mysql322 Makefile to allow the building of a client-only install. I hope it can be useful. Regards, -Dan *** Makefile Thu May 20 11:44:07 1999 --- Makefile.old Thu May 20 11:34:01 1999 *************** *** 26,37 **** --without-perl \ --without-debug \ --without-readline \ ! --without-bench ! ! .if defined(CLIENT_ONLY) ! CONFIGURE_ARGS+= --without-server ! .endif ! CONFIGURE_ENV+= PERL=${PERL} \ PERL5=${PERL} \ INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ --- 26,33 ---- --without-perl \ --without-debug \ --without-readline \ ! --without-bench \ ! --without-server CONFIGURE_ENV+= PERL=${PERL} \ PERL5=${PERL} \ INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ *************** *** 76,85 **** post-install: ${MKDIR} ${PREFIX}/share/mysql/mysql ! .if !defined(PACKAGE_BUILDING) && !defined(CLIENT_ONLY) ${PREFIX}/bin/mysql_install_db .endif - .if !defined(CLIENT_ONLY) @ ${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/mysql.sh @ ${ECHO} "#" >> ${PREFIX}/etc/rc.d/mysql.sh @ ${ECHO} "" >> ${PREFIX}/etc/rc.d/mysql.sh --- 72,80 ---- post-install: ${MKDIR} ${PREFIX}/share/mysql/mysql ! .if !defined(PACKAGE_BUILDING) ${PREFIX}/bin/mysql_install_db .endif @ ${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/mysql.sh @ ${ECHO} "#" >> ${PREFIX}/etc/rc.d/mysql.sh @ ${ECHO} "" >> ${PREFIX}/etc/rc.d/mysql.sh *************** *** 90,96 **** @ ${ECHO} " ${PREFIX}/bin/safe_mysqld > /dev/null & && ${ECHO} -n ' mysql'" >> ${PREFIX}/etc/rc.d/mysql.sh @ ${ECHO} "fi" >> ${PREFIX}/etc/rc.d/mysql.sh @ /bin/chmod 750 ${PREFIX}/etc/rc.d/mysql.sh - .endif .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/share/doc/mysql --- 85,90 ---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 30 20:47:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from Argon.Mlink.NET (Argon.Mlink.NET [205.236.182.18]) by hub.freebsd.org (Postfix) with ESMTP id 0687414F08 for ; Sun, 30 May 1999 20:47:18 -0700 (PDT) (envelope-from matt@Mlink.NET) Received: from arpaqc-gw.mlink.net (matt@arpaqc-gw.mlink.net [209.104.117.209]) by Argon.Mlink.NET (8.8.8/8.8.2) with ESMTP id XAA21080; Sun, 30 May 1999 23:44:59 -0400 (EDT) Date: Sun, 30 May 1999 23:47:13 -0400 (EDT) From: matt To: Chuck Robey Cc: FreeBSD-PORTS Subject: Re: WmInet and asmon 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 On Sun, 30 May 1999, Chuck Robey wrote: : On Sun, 30 May 1999, matt wrote: [...] : Geeze. They're great, but you won't spend one word on what they are. : Is it any wonder that no one could give a damn about them, when they : can't tell if they're an automated crossword puzzle or a new screen : saver? WmInet is a Dock Application for Windowmaker (and afterstep etc) It shows status such as users, ftp, nfs, httpd, etc.. asmon is like wmmon which you DO have a port for, however, asmon is much better.. There, does that explain better? : No wonder they'll get no help. You need some sales training. Sell us : on these things! I wasn't aware I had to "sell" you on making FreeBSD a more versatile OS. Matt : ----------------------------+----------------------------------------------- : Chuck Robey | Interests include any kind of voice or data : chuckr@picnic.mat.net | communications topic, C programming, and Unix. : 213 Lakeside Drive Apt T-1 | : Greenbelt, MD 20770 | I run picnic (FreeBSD-current) : (301) 220-2114 | and jaunt (Solaris7). : ----------------------------+----------------------------------------------- -- DISCLAIMER: Anyone sending me unsolicited commercial electronic mail will be charged a $100 fee for time spent reading it. Do NOT send this type of electronic mail to me. In reading this, you automatically agree to be subjected to these terms: US Code Title 47, Sec.227(a)(2)(B), a computer/modem/printer meets the definition of a telephone fax machine. By Sec.227(b)(1)(C), it is unlawful to send any unsolicited advertisement to such equipment. By Sec.227(b)(3)(C), a violation of the aforementioned Section is punishable by action to recover actual monetary loss, or $500, whichever is greater, for each violation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 30 20:48:28 1999 Delivered-To: freebsd-ports@freebsd.org Received: from Argon.Mlink.NET (Argon.Mlink.NET [205.236.182.18]) by hub.freebsd.org (Postfix) with ESMTP id AECA115090 for ; Sun, 30 May 1999 20:48:26 -0700 (PDT) (envelope-from matt@Mlink.NET) Received: from arpaqc-gw.mlink.net (matt@arpaqc-gw.mlink.net [209.104.117.209]) by Argon.Mlink.NET (8.8.8/8.8.2) with ESMTP id XAA21141; Sun, 30 May 1999 23:46:09 -0400 (EDT) Date: Sun, 30 May 1999 23:48:23 -0400 (EDT) From: matt To: Matthew Hunt Cc: FreeBSD-PORTS Subject: Re: WmInet and asmon In-Reply-To: <19990530203410.A11199@wopr.caltech.edu> 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 Sun, 30 May 1999, Matthew Hunt wrote: : On Sun, May 30, 1999 at 11:26:10PM -0400, matt wrote: : : > cc -o asmon -L/usr/X11R6/lib -lXpm -lXext -lX11 : > /usr/lib/crt1.o: In function `_start': : > /usr/lib/crt1.o(.text+0x69): undefined reference to `main' : > *** Error code 1 : : You're not specifying any source or object files to compile. I'm not stupid, I only pasted the last line because everything else compiled fine into object files. it was only on the linking that it died.. I also haven't slept in 30 some odd hours, so that may play a part. Lets not start a war on here, eh? : -- : Matthew Hunt * Heh heh. He said "0x69". Heh heh. : http://www.pobox.com/~mph/ * -- DISCLAIMER: Anyone sending me unsolicited commercial electronic mail will be charged a $100 fee for time spent reading it. Do NOT send this type of electronic mail to me. In reading this, you automatically agree to be subjected to these terms: US Code Title 47, Sec.227(a)(2)(B), a computer/modem/printer meets the definition of a telephone fax machine. By Sec.227(b)(1)(C), it is unlawful to send any unsolicited advertisement to such equipment. By Sec.227(b)(3)(C), a violation of the aforementioned Section is punishable by action to recover actual monetary loss, or $500, whichever is greater, for each violation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 30 20:50: 1 1999 Delivered-To: freebsd-ports@freebsd.org Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 96AA615090 for ; Sun, 30 May 1999 20:49:58 -0700 (PDT) (envelope-from cpiazza@home.net) Received: from norn.ca.eu.org (localhost.norn.ca.eu.org [127.0.0.1]) by norn.ca.eu.org (Postfix) with ESMTP id DD96C14A7; Sun, 30 May 1999 20:49:53 -0700 (PDT) Content-Length: 1025 Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Sun, 30 May 1999 20:49:53 -0700 (PDT) Reply-To: Chris Piazza From: Chris Piazza To: matt Subject: RE: WmInet and asmon Cc: FreeBSD-PORTS Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 31-May-99 matt wrote: > > These two programs need ported badly! They are terrific, I'm dismayed to > find that they won't compile normally =/ If anyone likes docked > applications and is a better programmer then me wants to have a look > at it, Please let me know... Or make it a port, it'd be terrific.. > The error is: Don't expect programs that were made for Linux to work. Asmon most definitely doesn't work (just tried it) and I, for one, don't feel like spending the time to make it work :-). Welcome to if you'd like. With regards to wminet it seems to use some "features" of Linux's struct utmp that don't exist in ours. See above, good luck! > > cc -o asmon -L/usr/X11R6/lib -lXpm -lXext -lX11 > /usr/lib/crt1.o: In function `_start': > /usr/lib/crt1.o(.text+0x69): undefined reference to `main' > *** Error code 1 Use gmake. The Makefile has this: cc -o asmon $^ $(LIBDIR) $(LIBS) --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 30 20:51:22 1999 Delivered-To: freebsd-ports@freebsd.org Received: from picnic.mat.net (picnic.mat.net [206.246.122.133]) by hub.freebsd.org (Postfix) with ESMTP id 9760915123 for ; Sun, 30 May 1999 20:51:19 -0700 (PDT) (envelope-from chuckr@picnic.mat.net) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.9.3/8.8.5) with ESMTP id XAA77945; Sun, 30 May 1999 23:51:10 -0400 (EDT) Date: Sun, 30 May 1999 23:51:10 -0400 (EDT) From: Chuck Robey To: matt Cc: FreeBSD-PORTS Subject: Re: WmInet and asmon 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 On Sun, 30 May 1999, matt wrote: > On Sun, 30 May 1999, Chuck Robey wrote: > > : On Sun, 30 May 1999, matt wrote: > > [...] > > : Geeze. They're great, but you won't spend one word on what they are. > : Is it any wonder that no one could give a damn about them, when they > : can't tell if they're an automated crossword puzzle or a new screen > : saver? > > WmInet is a Dock Application for Windowmaker (and afterstep etc) It shows > status such as users, ftp, nfs, httpd, etc.. asmon is like wmmon which > you DO have a port for, however, asmon is much better.. There, does that > explain better? > > : No wonder they'll get no help. You need some sales training. Sell us > : on these things! > > I wasn't aware I had to "sell" you on making FreeBSD a more versatile OS. How do we tell that those two apps do that? Do you think that anyone is willing to work on anything at all? No one's getting paid, so they work on what's "interesting". If there's no description, then whatever you're after getting done isn't very likely to be "interesting". It might well have been a method for automated spamming. Your description is what I was after ... it's just a little depressing, because a large number of requests look like yours, so people aren't figuring out that keeping things a secret isn't the very best way to go. ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@picnic.mat.net | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run picnic (FreeBSD-current) (301) 220-2114 | and jaunt (Solaris7). ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 30 20:52:42 1999 Delivered-To: freebsd-ports@freebsd.org Received: from wopr.caltech.edu (wopr.caltech.edu [131.215.240.222]) by hub.freebsd.org (Postfix) with ESMTP id 575F3151A8 for ; Sun, 30 May 1999 20:52:41 -0700 (PDT) (envelope-from mph@wopr.caltech.edu) Received: (from mph@localhost) by wopr.caltech.edu (8.9.3/8.9.1) id UAA11532; Sun, 30 May 1999 20:52:39 -0700 (PDT) (envelope-from mph) Date: Sun, 30 May 1999 20:52:39 -0700 From: Matthew Hunt To: matt Cc: FreeBSD-PORTS Subject: Re: WmInet and asmon Message-ID: <19990530205239.A11449@wopr.caltech.edu> References: <19990530203410.A11199@wopr.caltech.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: ; from matt on Sun, May 30, 1999 at 11:48:23PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, May 30, 1999 at 11:48:23PM -0400, matt wrote: > : > cc -o asmon -L/usr/X11R6/lib -lXpm -lXext -lX11 > : > /usr/lib/crt1.o: In function `_start': > : > /usr/lib/crt1.o(.text+0x69): undefined reference to `main' > : > *** Error code 1 > : > : You're not specifying any source or object files to compile. > > I'm not stupid, I only pasted the last line because everything else > compiled fine into object files. it was only on the linking that it died.. > I also haven't slept in 30 some odd hours, so that may play a part. Lets > not start a war on here, eh? Look, I'm not complaining that you omitted the previous steps in the compilation. I'm saying that in the output you posted, in the line beginning "cc -o asmon", there are NO FILES TO BE COMPILED. There should be one or more "foo.c" or "foo.o" files in the command line during the linking phase, and there are none. I can produce exactly the same error message without even having the source! If you're not going to accept help, why ask for it? Sheesh. Matt -- Matthew Hunt * Stupid is as stupid does. http://www.pobox.com/~mph/ * To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 30 20:59:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from Argon.Mlink.NET (Argon.Mlink.NET [205.236.182.18]) by hub.freebsd.org (Postfix) with ESMTP id 821C514F08 for ; Sun, 30 May 1999 20:59:07 -0700 (PDT) (envelope-from matt@Mlink.NET) Received: from arpaqc-gw.mlink.net (matt@arpaqc-gw.mlink.net [209.104.117.209]) by Argon.Mlink.NET (8.8.8/8.8.2) with ESMTP id XAA21759; Sun, 30 May 1999 23:56:49 -0400 (EDT) Date: Sun, 30 May 1999 23:59:04 -0400 (EDT) From: matt To: Chris Piazza Cc: FreeBSD-PORTS Subject: RE: WmInet and asmon 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 On Sun, 30 May 1999, Chris Piazza wrote: [...] : Don't expect programs that were made for Linux to work. Asmon most definitely : doesn't work (just tried it) and I, for one, don't feel like spending the : time to make it work :-). Welcome to if you'd like. If we want FreeBSD to become as popular with the home user as Linux currently is, we NEED to be able to do everything it can and more, there should be no exceptions, our Linux binary emulation is terrific, that's a great start, but we MUST start porting everything and anything we can to FreeBSD if we want to make ourselves a more flexible OS. I only wish I had the programming knowledge to do it. I can program, a little bit, not enough to know the major differences to port between operating systems, except in small cases like include files and ifdefs. : With regards to wminet it seems to use some "features" of Linux's struct utmp : that don't exist in ours. See above, good luck! Refere to above. : > : > cc -o asmon -L/usr/X11R6/lib -lXpm -lXext -lX11 : > /usr/lib/crt1.o: In function `_start': : > /usr/lib/crt1.o(.text+0x69): undefined reference to `main' : > *** Error code 1 : : Use gmake. The Makefile has this: : : cc -o asmon $^ $(LIBDIR) $(LIBS) Yup, that was my stupidity at this hour.. It compiles fine with gmake, but it cores on a floating point exception. : --- : Chris Piazza Abbotsford, BC, Canada : cpiazza@home.net : finger norn@norn.ca.eu.org for PGP key : : : To Unsubscribe: send mail to majordomo@FreeBSD.org : with "unsubscribe freebsd-ports" in the body of the message -- DISCLAIMER: Anyone sending me unsolicited commercial electronic mail will be charged a $100 fee for time spent reading it. Do NOT send this type of electronic mail to me. In reading this, you automatically agree to be subjected to these terms: US Code Title 47, Sec.227(a)(2)(B), a computer/modem/printer meets the definition of a telephone fax machine. By Sec.227(b)(1)(C), it is unlawful to send any unsolicited advertisement to such equipment. By Sec.227(b)(3)(C), a violation of the aforementioned Section is punishable by action to recover actual monetary loss, or $500, whichever is greater, for each violation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 30 21: 2:51 1999 Delivered-To: freebsd-ports@freebsd.org Received: from Argon.Mlink.NET (Argon.Mlink.NET [205.236.182.18]) by hub.freebsd.org (Postfix) with ESMTP id 1509514C4C for ; Sun, 30 May 1999 21:02:48 -0700 (PDT) (envelope-from matt@Mlink.NET) Received: from arpaqc-gw.mlink.net (matt@arpaqc-gw.mlink.net [209.104.117.209]) by Argon.Mlink.NET (8.8.8/8.8.2) with ESMTP id AAA21969; Mon, 31 May 1999 00:00:27 -0400 (EDT) Date: Mon, 31 May 1999 00:02:41 -0400 (EDT) From: matt To: Matthew Hunt Cc: FreeBSD-PORTS Subject: Re: WmInet and asmon In-Reply-To: <19990530205239.A11449@wopr.caltech.edu> 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 Sun, 30 May 1999, Matthew Hunt wrote: : On Sun, May 30, 1999 at 11:48:23PM -0400, matt wrote: [...] : Look, I'm not complaining that you omitted the previous steps in the : compilation. cc -c -Wall -I/usr/X11R6/include asmon.c -o asmon.o is the first line. I first off, would like to apologize for being rude with this matter, I have not had the best day and while that is no excuse, it is a factor, I hope you accept my apology. : If you're not going to accept help, why ask for it? I will accept any help granted to me, and I appreciate any such help, Again, my apologies for the abrutness and rudeness of my last email. : Sheesh. : Matt : : -- : Matthew Hunt * Stupid is as stupid does. : http://www.pobox.com/~mph/ * : : : To Unsubscribe: send mail to majordomo@FreeBSD.org : with "unsubscribe freebsd-ports" in the body of the message : : -- DISCLAIMER: Anyone sending me unsolicited commercial electronic mail will be charged a $100 fee for time spent reading it. Do NOT send this type of electronic mail to me. In reading this, you automatically agree to be subjected to these terms: US Code Title 47, Sec.227(a)(2)(B), a computer/modem/printer meets the definition of a telephone fax machine. By Sec.227(b)(1)(C), it is unlawful to send any unsolicited advertisement to such equipment. By Sec.227(b)(3)(C), a violation of the aforementioned Section is punishable by action to recover actual monetary loss, or $500, whichever is greater, for each violation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 30 22:50: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A9D915049 for ; Sun, 30 May 1999 22:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA31610; Sun, 30 May 1999 22:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from whizkidtech.net (r19.bfm.org [208.18.213.115]) by hub.freebsd.org (Postfix) with ESMTP id 626D014ED0 for ; Sun, 30 May 1999 22:42:52 -0700 (PDT) (envelope-from root@whizkidtech.net) Received: (from root@localhost) by whizkidtech.net (8.9.2/8.9.2) id AAA16588; Mon, 31 May 1999 00:42:58 -0500 (CDT) (envelope-from root) Message-Id: <199905310542.AAA16588@whizkidtech.net> Date: Mon, 31 May 1999 00:42:58 -0500 (CDT) From: adam@whizkidtech.net Reply-To: adam@whizkidtech.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11953: New port gracula (Graphic Counter Language 2.30) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11953 >Category: ports >Synopsis: New port - Graphic Counter Language >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 May 30 22:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: G. Adam Stanislav >Release: FreeBSD 3.1-RELEASE i386 >Organization: Whiz Kid Technomagic >Environment: >Description: Graphic Counter Language is a powerful programming language for the creation of graphic (and textual) counters and timers. It is useful both for creation of CGI and SSI web counters, and for the use of graphical applications, such as XWindow programs. As of version 2.30, GCL can receive its variables not only from the script but also from the value of environment variables as well as from the output of external programs. A sample program is included which allows the creation of counters showing the number of seconds (or minutes, hours, days) left before the year 2000. For more information, see http://www.whizkidtech.net/gcl/ . Gracula is both the compiler and the interpreter for Graphic Counter Language. It was developed and thoroughly tested under FreeBSD 3.1 and 2.2.5. Please keep it in the graphics category: It is not www specific, and it certainly is not "yet another web counter." It is a programming language. Please note that additional ports will follow that depend on this one. >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: # # gracula # gracula/Makefile # gracula/files # gracula/files/md5 # gracula/pkg # gracula/pkg/COMMENT # gracula/pkg/DESCR # gracula/pkg/PLIST # echo c - gracula mkdir -p gracula > /dev/null 2>&1 echo x - gracula/Makefile sed 's/^X//' >gracula/Makefile << 'END-of-gracula/Makefile' X# New ports collection makefile for: gracula X# Version required: 2.30 X# Date created: 30 May 1999 X# Whom: G. Adam Stanislav X# X# $Id$ X# X XDISTNAME= gracula-2.30 XCATEGORIES= graphics XMASTER_SITES= ftp://ftp.whizkidtech.net/cgi/gcl/ \ X http://www.whizkidtech.net/gcl/ X XMAINTAINER= adam@whizkidtech.net X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/gracula ${PREFIX}/bin X $(INSTALL_PROGRAM) ${WRKSRC}/sec2000 ${PREFIX}/bin X.if !defined (NOPORTDOCS) X ${MKDIR} ${PREFIX}/share/doc/gracula X ${INSTALL_MAN} ${WRKSRC}/NNL ${PREFIX}/share/doc/gracula X ${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/gracula X @echo X @echo " Please read the file ${PREFIX}/share/doc/gracula/README" X @echo " to learn how to use Graphic Counter Language." X.endif X @echo X @echo " An introductory tutorial, and a GCL FAQ, can be found at" X @echo " http://www.whizkidtech.net/gcl/" X @echo " You should read both to take full advantage of the power" X @echo " of Graphic Counter Language." X @echo X @echo " Also, sample scripts and graphics are available from" X @echo " Count Gracula's Gallery, http://www.whizkidtech.net/gcl/gallery/" X @echo X X.include END-of-gracula/Makefile echo c - gracula/files mkdir -p gracula/files > /dev/null 2>&1 echo x - gracula/files/md5 sed 's/^X//' >gracula/files/md5 << 'END-of-gracula/files/md5' XMD5 (gracula-2.30.tar.gz) = ab0459caa839bdb49c3956aeb1677fa5 END-of-gracula/files/md5 echo c - gracula/pkg mkdir -p gracula/pkg > /dev/null 2>&1 echo x - gracula/pkg/COMMENT sed 's/^X//' >gracula/pkg/COMMENT << 'END-of-gracula/pkg/COMMENT' XGracula is a Graphic Counter Language compiler/interpreter. END-of-gracula/pkg/COMMENT echo x - gracula/pkg/DESCR sed 's/^X//' >gracula/pkg/DESCR << 'END-of-gracula/pkg/DESCR' XGraphic Counter Language is a powerful programming language for the creation of Xgraphic and textual counters and timers. These can be used on the web, as well Xas in graphic application programs (such as XWindow applications) which can Xcall the GCL interpeter internally and have it create a counter or a timer. X XGracula is the compiler/interpreter for Graphic Counter Language, developed Xunder FreeBSD, though usable on any Unix system. X XFor details about the language, visit GCL home page (www.whizkidtech.net/gcl/) Xas well as Count Gracula's Gallery (www.whizkidtech.net/gcl/gallery) which Xcontains a number of sample GCL scripts and showcases various counter designs. X XGCL requires no configuration files. All you provide is graphic images and Xsimple scripts. Optionally, you may link the images directly into the gracula Xexecutable. GCL can also receive input from external programs. A sample program Xis included (sec2000). It allows the creation of GCL counters to display the Xnumber of seconds (or minutes, hours, days) left till the Year 2000. X XGracula is written in C and highly optimized for speed which makes it work Xreliably even on the busiest web sites. X XG. Adam Stanislav END-of-gracula/pkg/DESCR echo x - gracula/pkg/PLIST sed 's/^X//' >gracula/pkg/PLIST << 'END-of-gracula/pkg/PLIST' Xbin/gracula Xbin/sec2000 Xshare/doc/gracula/NNL Xshare/doc/gracula/README X@dirrm share/doc/gracula END-of-gracula/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 Sun May 30 23:22:47 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DECF615134; Sun, 30 May 1999 23:22:46 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA35814; Sun, 30 May 1999 23:22:46 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Sun, 30 May 1999 23:22:46 -0700 (PDT) From: Message-Id: <199905310622.XAA35814@freefall.freebsd.org> To: nox@jelal.kn-bremen.de, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11949: update sysutils/cdrecord to 1.8a22 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update sysutils/cdrecord to 1.8a22 State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Sun May 30 23:22:36 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun May 30 23:36:37 1999 Delivered-To: freebsd-ports@freebsd.org Received: from bsd.mbp.ee (bsd.mbp.ee [194.204.12.74]) by hub.freebsd.org (Postfix) with ESMTP id 5A81115496 for ; Sun, 30 May 1999 23:36:31 -0700 (PDT) (envelope-from mauri@aripaev.ee) Received: from lant.mbp.ee (lant.mbp.ee [194.204.12.41]) by bsd.mbp.ee (8.9.3/8.9.3) with ESMTP id JAA15329 for ; Mon, 31 May 1999 09:36:26 +0300 (EEST) (envelope-from mauri@aripaev.ee) Received: by lant.mbp.ee with Internet Mail Service (5.5.2232.9) id ; Mon, 31 May 1999 09:37:18 +0300 Message-ID: <554419C71610D211B3F808003636280213B0A2@lant.mbp.ee> From: Lauri Laupmaa To: "'ports@freebsd.org'" Subject: /usr/local/etc/rc.d script sequence Date: Mon, 31 May 1999 09:37:15 +0300 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2232.9) Content-Type: text/plain; charset="iso-8859-4" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi A lot of ports put scripts in /usr/local/etc/rc.d but sometimes their sequrence is not the best one can think of... Example: my apache uses some mysql stuff and for this to work I have to manually rename mysql.sh to 60.mysql.sh or something, so it starts before apache.sh. Wouldn't it be good if there were some rules as how ports name their startup scripts ? _____________ Lauri Laupmaa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 1:30: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E791B1503D for ; Mon, 31 May 1999 01:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA49204; Mon, 31 May 1999 01:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from bulls.mei.co.jp (bulls.mei.co.jp [202.224.189.102]) by hub.freebsd.org (Postfix) with ESMTP id 086F714F71 for ; Mon, 31 May 1999 01:20:45 -0700 (PDT) (envelope-from takamune@avrl.mei.co.jp) Received: by bulls.mei.co.jp (8.9.1/3.7W) with ESMTP id RAA05692 for ; Mon, 31 May 1999 17:20:43 +0900 (JST) Received: by dodgers.mei.co.jp (8.9.1/3.7W) with SMTP id RAA29251 for ; Mon, 31 May 1999 17:20:43 +0900 (JST) Received: by avrlgate1.avrl.mei.co.jp (8.6.10+2.4W/3.3W3-avrl3.0) id RAA12522; Mon, 31 May 1999 17:20:38 +0900 Received: by dream.avrl.mei.co.jp (8.9.3/3.6W-03/04/98-dream) id RAA01199; Mon, 31 May 1999 17:20:42 +0900 (JST) Message-Id: <199905310820.RAA01199@dream.avrl.mei.co.jp> Date: Mon, 31 May 1999 17:20:42 +0900 (JST) From: takamune@avrl.mei.co.jp Reply-To: takamune@avrl.mei.co.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11954: Update: japanese/bookview Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11954 >Category: ports >Synopsis: Update: japanese/bookview >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 May 31 01:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Kazutoki TAKAMUNE >Release: FreeBSD 3.2-STABLE i386 >Organization: Matsushita Electric Industrial Co., Ltd. >Environment: This port works on FreeBSD 3.2-STABLE(Wed May 26 10:34:58 JST 1999) machines with ja-tcl-8.0.5/ja-tk-8.0.5. I haven't tested on FreeBSD 4.0-CURRENT ! >Description: Please apply this patch to upgrade port (of which I'm the maintainer). Changes: - Updates japanese/bookview for the latest version 2.4.3. - No files have been added or removed. - Makefile, pkg/PLIST o Don't concern about creating ${PREFIX}/info/dir. (It will be automatically created by 'bsd.port.mk'.) >How-To-Repeat: >Fix: diff -x CVS -Nur /usr/ports/japanese/bookview/Makefile japanese/bookview/Makefile --- /usr/ports/japanese/bookview/Makefile Sun May 16 19:00:00 1999 +++ japanese/bookview/Makefile Mon May 17 19:00:00 1999 @@ -1,13 +1,13 @@ # New ports collection makefile for: bookview -# Version required: 2.4.1 +# Version required: 2.4.3 # Date created: 2 Oct 1997 # Whom: Motoyuki Kasahara # # $Id: Makefile,v 1.4 1999/04/16 04:54:21 taoka Exp $ # -DISTNAME= bookview-2.4.1 -PKGNAME= ja-bookview-2.4.1 +DISTNAME= bookview-2.4.3 +PKGNAME= ja-bookview-2.4.3 CATEGORIES= japanese MASTER_SITES= ftp://ftp.sra.co.jp/pub/net/ndtp/bookview/ \ ftp://ftp.sra.co.jp/pub/net/ndtp/bookview/old/ \ @@ -22,11 +22,4 @@ INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ INSTALL_DATA="${INSTALL_DATA}" -.include - -pre-install: -.if !exists(${PREFIX}/info/dir) - ${CP} -p ${INFODIR}/dir-tmpl ${PREFIX}/info/dir -.endif - -.include +.include diff -x CVS -Nur /usr/ports/japanese/bookview/files/md5 japanese/bookview/files/md5 --- /usr/ports/japanese/bookview/files/md5 Sun May 16 19:00:00 1999 +++ japanese/bookview/files/md5 Mon May 17 19:00:00 1999 @@ -1 +1 @@ -MD5 (bookview-2.4.1.tar.gz) = 132b30dd4adfb473051363b3cc649f47 +MD5 (bookview-2.4.3.tar.gz) = 025f3820bed5d1461d62f564499b573a diff -x CVS -Nur /usr/ports/japanese/bookview/pkg/PLIST japanese/bookview/pkg/PLIST --- /usr/ports/japanese/bookview/pkg/PLIST Sun May 16 19:00:00 1999 +++ japanese/bookview/pkg/PLIST Mon May 17 19:00:00 1999 @@ -3,7 +3,6 @@ @unexec install-info --delete %D/info/bookview.info %D/info/dir info/bookview-ja.info info/bookview.info -@exec [ -f %B/dir ] || cp -p /usr/share/info/dir-tmpl %B/dir @exec install-info %B/bookview-ja.info %B/dir @exec install-info %B/bookview.info %B/dir share/bookview/arrow.xbm >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 May 31 2:39:11 1999 Delivered-To: freebsd-ports@freebsd.org Received: from blues.ghis.net (slcan55p25.ozemail.com.au [203.108.168.89]) by hub.freebsd.org (Postfix) with ESMTP id C484A14D9B for ; Mon, 31 May 1999 02:39:05 -0700 (PDT) (envelope-from jim@blues.ghis.net) Received: (from jim@localhost) by blues.ghis.net (8.9.3/8.9.3) id TAA98385; Mon, 31 May 1999 19:38:41 +1000 (EST) Date: Mon, 31 May 1999 19:38:41 +1000 From: Jim Mock To: matt Cc: FreeBSD-PORTS Subject: Re: WmInet and asmon Message-ID: <19990531193839.A98288@blues.ghis.net> Reply-To: jim@blues.ghis.net References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.1i In-Reply-To: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 30 May 1999 at 23:26:10 -0400, matt wrote: > > These two programs need ported badly! They are terrific, I'm > dismayed to find that they won't compile normally =/ If anyone likes > docked applications and is a better programmer then me wants to have > a look at it, Please let me know... Or make it a port, it'd be > terrific.. The error is: > > cc -o asmon -L/usr/X11R6/lib -lXpm -lXext -lX11 > /usr/lib/crt1.o: In function `_start': > /usr/lib/crt1.o(.text+0x69): undefined reference to `main' > *** Error code 1 > > Maybe that will give you an idea as to the problem.... Yes, I know > this should probably go to FreeBSD-Questions, but since it involves > two applications that should be ported and aren't, I decided to > send it here.. The error was the same on wminet as well btw... Asmon needs gmake to compile. I've been trying to make it work and submit the port for a while now, but the thing coredumps with a floating point exception error every time I run it. I'm not spending any more time screwing with it.. if someone else wants to try to fix it, more power to 'em. As for wminet, I haven't tried it. -- - Jim Mock - jim@blues.ghis.net - systems administrator - ghis.NET - - work: http://www.ghis.net/ - personal: http://www.ghis.net/~jim/ - - FreeBSD 'zine: http://www.freebsdzine.org/ - jim@freebsdzine.org - - FreeBSD: http://advocacy.freebsd.org/ - jim@advocacy.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 May 31 3: 2:35 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ns.raditex.se (raditex.thorsen.se [193.14.93.200]) by hub.freebsd.org (Postfix) with ESMTP id 6DA8E1503D; Mon, 31 May 1999 03:02:29 -0700 (PDT) (envelope-from kaj@raditex.se) Received: from localhost (dialup162-4-1.swipnet.se [130.244.162.193]) by ns.raditex.se (8.8.8/8.8.8) with ESMTP id MAA16777; Mon, 31 May 1999 12:01:35 +0200 (CEST) (envelope-from kaj@raditex.se) To: witr@rwwa.com Cc: dlombardo@excite.com, freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Cc: Rasmus Kaj Subject: Re: a two-level port system? From: Rasmus Kaj In-Reply-To: Your message of "Sun, 30 May 1999 11:29:22 -0400" <199905301529.LAA25749@spooky.rwwa.com> References: <199905301529.LAA25749@spooky.rwwa.com> X-Mailer: Mew version 1.93 on XEmacs 20.4 (Emerald) X-URL: http://www.e.kth.se/~kaj/ X-Phone: +46 (0)8 - 694 92 80 X-Attribution: Kaj X-Face: M9cR~WYav<"fu%MaslX0`43PAYY?uIsM8[#E(0\Xuy9rj>4gE\h3jm.7DD?]R8*^7T\o&vT U@[53Dwkuup4[0@gw#~kyu>`unH?kVj9CJa02(h>Ki\+i=%rn%sDf^KC.!?IHkKjMAbkd\jgmphp^' d|Q;OeXEAhq?ybGqOs1CHb6TJT42'C`Krnk61//AOfXtNjj/t'`5>Vw0QX!dKfOL$.f+S"LIuwR<;I Z0Qnnx(F^F]o@*V%TUtEV'1Z[TkOl^FFV9Z~A[b19%}uP*,huCU Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19990531120353N.kaj@raditex.se> Date: Mon, 31 May 1999 12:03:53 +0200 X-Dispatcher: imput version 980905(IM100) Lines: 46 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "RW" == Robert Withrow writes: RW> Alternatively, is it possible to have the port tree be essentially RW> empty (perhaps just the makefile and category directories) and then RW> just have it fetch the makefiles and make the directories on demand, for RW> the individal ports? May I suggest not going quite so long? Summary: For each port, keep Makefile, pkg/* and md5, move everything else (patches, files (other than md5), and scripts) elsewhere. Rationale for moving stuff elsewhere In my (recently updated) copy of /usr/ports there is 4819 files in */*/patches and 775 files other than md5 in */*/files. Scripts is another 270 directories containing 522 files. Moving this files to the ftp sites would not only mean >6000 less files to cvsup, but also >4300 less directories (assuming files/md5 could be moved to pkg/ or the port directory). Rationale for keeping Makefile and pkg/* This makes it possible to see what a port is for before starting to build it or download stuff. Also, this makes it possible to make readmes for the entire ports collection whithout getting "the extra stuff". On the other hand This would probably make it harder to submit and commit ports, since things would have to be commited to separate places, and the makefile would need to explicitly list patches and other files rahter than having them 'autodetected'. Comments, anyone? -- Rasmus Kaj ---------------- rasmus@kaj.a.se - http://www.e.kth.se/~kaj/ \ Im sorry if the correct way of doing things offends you \--------------------------------------------- http://www.Raditex.se/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 3:17: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ns.uninet.ee (ns.uninet.ee [194.204.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 48C1B14DA4; Mon, 31 May 1999 03:16:59 -0700 (PDT) (envelope-from taavi@uninet.ee) Received: from localhost (taavi@localhost) by ns.uninet.ee (8.8.8/8.7.3) with SMTP id NAA01455; Mon, 31 May 1999 13:15:20 +0300 (EEST) Date: Mon, 31 May 1999 13:15:20 +0300 (EEST) From: Taavi Talvik To: Rasmus Kaj Cc: witr@rwwa.com, dlombardo@excite.com, freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: a two-level port system? In-Reply-To: <19990531120353N.kaj@raditex.se> 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 Mon, 31 May 1999, Rasmus Kaj wrote: > RW> Alternatively, is it possible to have the port tree be essentially > RW> empty (perhaps just the makefile and category directories) and then > RW> just have it fetch the makefiles and make the directories on demand, for > RW> the individal ports? > Rationale for moving stuff elsewhere > > In my (recently updated) copy of /usr/ports there is 4819 files in > */*/patches and 775 files other than md5 in */*/files. Scripts is > another 270 directories containing 522 files. > > Moving this files to the ftp sites would not only mean >6000 less > files to cvsup, but also >4300 less directories (assuming files/md5 > could be moved to pkg/ or the port directory). > > Comments, anyone? Moving these files to ftp requires good automatic means to keep ftp servers updated. However as of today there are no such means available. CVSup is definitely easiest way to keep well defined collection of files up to date. best regards, taavi ----------------------------------------------------------- Taavi Talvik | Internet: taavi@uninet.ee Unineti Andmeside AS | phone: +372 6405150 Ravala pst. 10-412 | fax: +372 6405151 EE0001, Tallinn, Estonia | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 3:30: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B459215227 for ; Mon, 31 May 1999 03:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA61900; Mon, 31 May 1999 03:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from nsx.kgc.co.jp (nsx.kgc.co.jp [210.226.77.146]) by hub.freebsd.org (Postfix) with SMTP id D11B9150F4 for ; Mon, 31 May 1999 03:21:39 -0700 (PDT) (envelope-from candy@kgc.co.jp) Received: (qmail 14881 invoked from network); 31 May 1999 19:21:38 +0900 Received: from unknown (HELO ssm.kgc.co.jp) (qmailr@210.226.77.148) by 210.226.77.146 with SMTP; 31 May 1999 19:21:38 +0900 Received: (qmail 19305 invoked from network); 31 May 1999 19:19:08 +0900 Received: from xxx.kgc.co.jp (172.31.2.3) by ssm.kgc.co.jp with SMTP; 31 May 1999 19:19:08 +0900 Received: by xxx.kgc.co.jp (8.9.3/3.3W8:95062916) id TAA42511; Mon, 31 May 1999 19:19:08 +0900 (JST) Message-Id: <199905311019.TAA42511@xxx.kgc.co.jp> Date: Mon, 31 May 1999 19:19:08 +0900 (JST) From: candy@kgc.co.jp Reply-To: candy@kgc.co.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11956: fix: netpbm can't handle comments int rgb.txt Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11956 >Category: ports >Synopsis: fix: netpbm can't handle comments int rgb.txt >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 May 31 03:30:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: candy >Release: FreeBSD 3.2-RELEASE i386 >Organization: >Environment: ports/current >Description: netpbm programs which link ppm/libppm4.c can't handle comment line (begins with `!') in /usr/X11R6/lib/X11/rgb.txt >How-To-Repeat: $ ppmtogif -transparent white ppmtogif: can't parse color names database line - "! $XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp $ >Fix: cd /usr/ports/graphics/netpbm make patch cd work/netpbm patch -p < this_patch --- ppm/libppm4.c.orig Mon Oct 4 18:12:13 1993 +++ ppm/libppm4.c Thu Nov 5 16:17:48 1998 @@ -217,6 +217,7 @@ #endif /* A_RGBENV */ canonstr( colorname ); while ( fgets( buf1, sizeof(buf1), f ) != NULL ) + if (buf1[0] != '!') { if ( sscanf( buf1, "%ld %ld %ld %[^\n]", &r, &g, &b, buf2 ) != 4 ) { @@ -298,6 +299,7 @@ #endif /* A_RGBENV */ best_diff = 32767; while ( fgets( buf, sizeof(buf), f ) != NULL ) + if (buf[0] != '!') { if ( sscanf( buf, "%d %d %d %[^\n]", &this_r, &this_g, &this_b, this_colorname ) != 4 ) >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 May 31 3:30: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F7F71524D for ; Mon, 31 May 1999 03:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA61911; Mon, 31 May 1999 03:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from nsx.kgc.co.jp (nsx.kgc.co.jp [210.226.77.146]) by hub.freebsd.org (Postfix) with SMTP id 7150914DA4 for ; Mon, 31 May 1999 03:28:44 -0700 (PDT) (envelope-from candy@kgc.co.jp) Received: (qmail 15138 invoked from network); 31 May 1999 19:28:43 +0900 Received: from unknown (HELO ssm.kgc.co.jp) (qmailr@210.226.77.148) by 210.226.77.146 with SMTP; 31 May 1999 19:28:43 +0900 Received: (qmail 19634 invoked from network); 31 May 1999 19:26:13 +0900 Received: from xxx.kgc.co.jp (172.31.2.3) by ssm.kgc.co.jp with SMTP; 31 May 1999 19:26:13 +0900 Received: by xxx.kgc.co.jp (8.9.3/3.3W8:95062916) id TAA42632; Mon, 31 May 1999 19:26:13 +0900 (JST) Message-Id: <199905311026.TAA42632@xxx.kgc.co.jp> Date: Mon, 31 May 1999 19:26:13 +0900 (JST) From: candy@kgc.co.jp Reply-To: candy@kgc.co.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11957: fix: netpbm/xbmtopbm can't handle some xbm files Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11957 >Category: ports >Synopsis: fix: netpbm/xbmtopbm can't handle some xbm files >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 May 31 03:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: candy >Release: FreeBSD 3.2-RELEASE i386 >Organization: >Environment: ports/current >Description: Some graphic tools generates xbm file in ``unsigned char'' type array. And xbmtopbm can't read them at all. >How-To-Repeat: >Fix: cd /usr/ports/graphics/netpbm make patch cd work/netpbm patch -p < this_patch --- pbm/xbmtopbm.c.orig Mon Oct 4 18:10:33 1993 +++ pbm/xbmtopbm.c Thu Nov 5 16:13:37 1998 @@ -116,6 +116,16 @@ version10 = 0; break; } + if ( sscanf( line, "static unsigned short %s = {", name_and_type ) == 1 ) /* } */ + { + version10 = 1; + break; + } + if ( sscanf( line, "static unsigned char %s = {", name_and_type ) == 1 ) /* } */ + { + version10 = 0; + break; + } } if ( *widthP == -1 ) >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 May 31 3:40: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 045D014C8C for ; Mon, 31 May 1999 03:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA62693; Mon, 31 May 1999 03:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from nsx.kgc.co.jp (nsx.kgc.co.jp [210.226.77.146]) by hub.freebsd.org (Postfix) with SMTP id 714F014DA4 for ; Mon, 31 May 1999 03:35:46 -0700 (PDT) (envelope-from candy@kgc.co.jp) Received: (qmail 15433 invoked from network); 31 May 1999 19:35:44 +0900 Received: from unknown (HELO ssm.kgc.co.jp) (qmailr@210.226.77.148) by 210.226.77.146 with SMTP; 31 May 1999 19:35:44 +0900 Received: (qmail 19960 invoked from network); 31 May 1999 19:33:14 +0900 Received: from xxx.kgc.co.jp (172.31.2.3) by ssm.kgc.co.jp with SMTP; 31 May 1999 19:33:14 +0900 Received: by xxx.kgc.co.jp (8.9.3/3.3W8:95062916) id TAA42838; Mon, 31 May 1999 19:33:14 +0900 (JST) Message-Id: <199905311033.TAA42838@xxx.kgc.co.jp> Date: Mon, 31 May 1999 19:33:14 +0900 (JST) From: candy@kgc.co.jp Reply-To: candy@kgc.co.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11958: fix: netpbm doesn't install pstopnm.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11958 >Category: ports >Synopsis: fix: netpbm doesn't install pstopnm.1 >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 May 31 03:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: candy >Release: FreeBSD 3.2-RELEASE i386 >Organization: >Environment: ports/current >Description: netpbm doesn't install pstopnm.1 >How-To-Repeat: >Fix: cd /usr/ports/graphics/netpbm make patch cd work/netpbm patch -p < this_patch --- pnm/Imakefile.orig Mon May 31 10:26:57 1999 +++ pnm/Imakefile Mon May 31 10:40:57 1999 @@ -45,6 +45,7 @@ pnmnoraw.1 pnmpad.1 pnmpaste.1 pnmscale.1 pnmtile.1 \ pnmtoddif.1 pnmtofits.1 pnmtops.1 pnmtorast.1 pnmtosgi.1 \ pnmtosir.1 pnmtoxwd.1 \ + pstopnm.1 \ rasttopnm.1 sgitopnm.1 sirtopnm.1 xwdtopnm.1 zeisstopnm.1 \ pnmgamma.1 pnmrotate.1 pnmshear.1 \ anytopnm.1 pnmindex.1 pnmmargin.1 pnmsmooth.1 \ >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 May 31 3:44: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 251F315151 for ; Mon, 31 May 1999 03:43:56 -0700 (PDT) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 3.00 #1) id 10oPXu-0009E2-00 for ports@freebsd.org; Mon, 31 May 1999 12:43:54 +0200 From: Sheldon Hearn To: ports@freebsd.org Subject: exim upgrade committer wanted Date: Mon, 31 May 1999 12:43:54 +0200 Message-ID: <35465.928147434@axl.noc.iafrica.com> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi folks, I sent an upgrade for the mail/exim port around the time of 3.2-RELEASE and requested that the upgrade be postponed until after the RELEASE. The delay was important, since the upgrade is to a new version of the software, and releases should really aim at including stable versions of packages. I worry that my request caused interested parties to cross the PR off their lists. :-( The diffs are available on PR11758. Would whomever hits this one please make sure that the commit log is sufficiently verbose and _not_ simply say "Upgrade to 3.01". A suggested commit message is provided. :-) Thanks, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 4: 2:22 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freja.webgiro.com (freja.webgiro.com [212.209.29.10]) by hub.freebsd.org (Postfix) with ESMTP id 3709D14D71; Mon, 31 May 1999 04:02:18 -0700 (PDT) (envelope-from abial@webgiro.com) Received: by freja.webgiro.com (Postfix, from userid 1001) id A58D918D4; Mon, 31 May 1999 13:02:50 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by freja.webgiro.com (Postfix) with ESMTP id 9EFAA49D3; Mon, 31 May 1999 13:02:50 +0200 (CEST) Date: Mon, 31 May 1999 13:02:50 +0200 (CEST) From: Andrzej Bialecki To: Taavi Talvik Cc: Rasmus Kaj , freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: a two-level port system? 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 On Mon, 31 May 1999, Taavi Talvik wrote: > On Mon, 31 May 1999, Rasmus Kaj wrote: > > > RW> Alternatively, is it possible to have the port tree be essentially > > RW> empty (perhaps just the makefile and category directories) and then > > RW> just have it fetch the makefiles and make the directories on demand, for > > RW> the individal ports? > > Rationale for moving stuff elsewhere > > > > In my (recently updated) copy of /usr/ports there is 4819 files in > > */*/patches and 775 files other than md5 in */*/files. Scripts is > > another 270 directories containing 522 files. > > > > Moving this files to the ftp sites would not only mean >6000 less > > files to cvsup, but also >4300 less directories (assuming files/md5 > > could be moved to pkg/ or the port directory). > > > > Comments, anyone? > > Moving these files to ftp requires good automatic means to keep > ftp servers updated. However as of today there are no such means > available. > > CVSup is definitely easiest way to keep well defined collection > of files up to date. Folks, how about _admitting_ finally that our ports collection is a database? We wouldn't need anything else than standard system tools to maintain a ports.db file containing all that we want as DB records. Andrzej Bialecki // WebGiro AB, Sweden (http://www.webgiro.com) // ------------------------------------------------------------------- // ------ FreeBSD: The Power to Serve. http://www.freebsd.org -------- // --- Small & Embedded FreeBSD: http://www.freebsd.org/~picobsd/ ---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 4:20: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0048014D25 for ; Mon, 31 May 1999 04:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA69026; Mon, 31 May 1999 04:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 31 May 1999 04:20:03 -0700 (PDT) Message-Id: <199905311120.EAA69026@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: ports/11758 [PATCH] Upgrade exim port to 3.01 Reply-To: Sheldon Hearn Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11758; it has been noted by GNATS. From: Sheldon Hearn To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/11758 [PATCH] Upgrade exim port to 3.01 Date: Mon, 31 May 1999 13:14:02 +0200 Exim-3.01 includes fixes that I didn't think were important for FreeBSD. I was wrong -- the README.UPDATING is vastly improved. The following diffs supercede those submitted before. Please make sure the commit log reflects an upgrade to 3.01 and not 3.00 . ;-) Thanks, Sheldon. PS: exim-texinfo-3.00 is intentional -- documentation isn't changed for point releases. Index: Makefile =================================================================== RCS file: /home/ncvs/ports/mail/exim/Makefile,v retrieving revision 1.27 diff -u -d -r1.27 Makefile --- Makefile 1999/02/10 16:09:48 1.27 +++ Makefile 1999/05/31 11:01:05 @@ -6,15 +6,15 @@ # $Id: Makefile,v 1.27 1999/02/10 16:09:48 markm Exp $ # -DISTNAME= exim-2.12 +DISTNAME= exim-3.01 CATEGORIES= mail MASTER_SITES= ftp://ftp.cus.cam.ac.uk/pub/software/programs/exim/ \ ftp://ftp.quite.net/pub/exim/ \ http://www.exim.org/ftp/ \ ftp://ftp.is.co.za/networking/mail/transport/exim/ -DISTFILES= exim-2.12.tar.gz exim-texinfo-2.10.tar.gz +DISTFILES= exim-3.01.tar.gz exim-texinfo-3.00.tar.gz -MAINTAINER= axl@iafrica.com +MAINTAINER= sheldonh@FreeBSD.ORG # If USE_XLIB is defined, the eximon monitor, which requires X, will be # built. @@ -39,7 +39,7 @@ ${SED} -e "s#XX_BINOWN_XX#${BINOWN}#" \ < ${FILESDIR}/configure.default > ${WRKSRC}/src/configure.default cd ${WRKSRC}/doc && \ - for i in ../../exim-texinfo-2.10/doc/* ; do \ + for i in ../../exim-texinfo-3.00/doc/* ; do \ ln -sf $$i ; \ done Index: files/Makefile =================================================================== RCS file: /home/ncvs/ports/mail/exim/files/Makefile,v retrieving revision 1.8 diff -u -d -r1.8 Makefile --- Makefile 1998/11/18 11:42:46 1.8 +++ Makefile 1999/05/25 12:53:29 @@ -227,7 +227,7 @@ # "panic", "process" or "reject" to form the final file name. For example, # some installations may want something like this: -LOG_FILE_PATH=/var/log/exim_%slog +LOG_FILE_PATH=/var/log/exim/%slog # which results in files with names /var/log/exim_mainlog, etc. The directory # in which the log files are placed must exist; Exim does not try to create Index: files/configure.default =================================================================== RCS file: /home/ncvs/ports/mail/exim/files/configure.default,v retrieving revision 1.3 diff -u -d -r1.3 configure.default --- configure.default 1998/12/17 10:54:24 1.3 +++ configure.default 1999/05/25 13:04:42 @@ -79,7 +79,7 @@ # expensive, you can specify the networks for which a lookup is done, or # remove the setting entirely. -host_lookup_nets = 0.0.0.0/0 +host_lookup = 0.0.0.0/0 # Exim contains support for the Realtime Blocking List (RBL) that is being @@ -99,7 +99,7 @@ # unscrupulous people out there who will make use of open relays to try to # disguise the source of unsolicited bulk mail. -sender_net_accept_relay = 127.0.0.1/32 +host_accept_relay = "127.0.0.1/32" # If you want Exim to support the "percent hack" for all your local domains, @@ -233,6 +233,8 @@ system_aliases: driver = aliasfile + file_transport = address_file + pipe_transport = address_pipe file = /etc/aliases search_type = lsearch # user = XX_BINOWN_XX @@ -248,6 +250,9 @@ userforward: driver = forwardfile + file_transport = address_file + pipe_transport = address_pipe + reply_transport = address_reply file = .forward no_verify no_expn Index: files/md5 =================================================================== RCS file: /home/ncvs/ports/mail/exim/files/md5,v retrieving revision 1.18 diff -u -d -r1.18 md5 --- md5 1999/02/10 16:09:49 1.18 +++ md5 1999/05/31 11:08:41 @@ -1,2 +1,2 @@ -MD5 (exim-2.12.tar.gz) = 0fb2147e34752cb84d450b61ac89e3fc -MD5 (exim-texinfo-2.10.tar.gz) = ece154c4c8c95e3983d11c5de186005c +MD5 (exim-3.01.tar.gz) = b0578917ec8ed2290f70cc3d0ac708cb +MD5 (exim-texinfo-3.00.tar.gz) = b02bbc0477d97d94fe597590be2932ab To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 5: 0: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F2FAB151A2 for ; Mon, 31 May 1999 05:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA72815; Mon, 31 May 1999 05:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from Crazyman.Dorm10.NCTU.edu.tw (Crazyman.Dorm10.NCTU.edu.tw [140.113.122.212]) by hub.freebsd.org (Postfix) with ESMTP id C514015082 for ; Mon, 31 May 1999 04:52:29 -0700 (PDT) (envelope-from yinjieh@Crazyman.Dorm10.NCTU.edu.tw) Received: (from yinjieh@localhost) by Crazyman.Dorm10.NCTU.edu.tw (8.9.3/8.9.3) id TAA17589; Mon, 31 May 1999 19:51:02 +0800 (CST) (envelope-from yinjieh) Message-Id: <199905311151.TAA17589@Crazyman.Dorm10.NCTU.edu.tw> Date: Mon, 31 May 1999 19:51:02 +0800 (CST) From: Yin-Jieh Chen Reply-To: yinjieh@Crazyman.Dorm10.NCTU.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11959: Compilation error from ddd-3.1.5 port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11959 >Category: ports >Synopsis: Compilation error from ddd-3.1.5 port >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 May 31 05:00:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Yin-Jieh Chen >Release: FreeBSD 3.2-STABLE i386 >Organization: Crazyman.Dorm10.NCTU.edu.tw >Environment: FreeBSD Crazyman.Dorm10.NCTU.edu.tw 3.2-STABLE FreeBSD 3.2-STABLE #21: Sun May 3 0 14:46:02 CST 1999 root@Crazyman.Dorm10.NCTU.edu.tw:/home2/src/sys/compile/ YINJIEH i386 >Description: When compiling ddd-3.1.5 port, it got an error. >How-To-Repeat: # pwd /usr/ports/devel/ddd # make [deleted] ===> Building for ddd-3.1.5 ==> Making all in ./libiberty... gmake[1]: Entering directory `/home2/ports/devel/ddd/work/ddd-3.1.5/libiberty' gmake[2]: Entering directory `/home2/ports/devel/ddd/work/ddd-3.1.5/libiberty' gmake[2]: Leaving directory `/home2/ports/devel/ddd/work/ddd-3.1.5/libiberty' gmake[1]: Leaving directory `/home2/ports/devel/ddd/work/ddd-3.1.5/libiberty' ==> Making all in ./ddd... gmake[1]: Entering directory `/home2/ports/devel/ddd/work/ddd-3.1.5/ddd' Building ddd-3.1.5-i386-portbld-freebsd3.2... c++ -DHAVE_CONFIG_H -DNDEBUG -O2 -W -Wall -Wno-uninitialized -pipe -m486 -fext ernal-templates -felide-constructors -fconserve-space -trigraphs -c -I. -I. -I./ .. -I/usr/X11R6/include -o VSLRead.o VSLRead.C In file included from VSLRead.C:112: /usr/share/misc/bison.simple:302: unterminated `#else' conditional VSLRead.C: In function `int VSLLib_parse()': VSLRead.C:120: parse error before `{' VSLRead.C:123: `s' undeclared (first use this function) VSLRead.C:123: (Each undeclared identifier is reported only once VSLRead.C:123: for each function it appears in.) VSLRead.C:124: `_lib_name' undeclared (first use this function) VSLRead.C:129: warning: implicit declaration of function `int parse(...)' VSLRead.C:138: warning: implicit declaration of function `int process(...)' VSLRead.C:138: `optimizeMode' undeclared (first use this function) VSLRead.C:143: invalid use of `this' in non-member function /usr/share/misc/bison.simple:293: warning: unused variable `struct _YYSTYPE * vs lvs1' VSLRead.C:149: parse error before `{' /usr/share/misc/bison.simple:259: warning: unused variable `int vsllen' /usr/share/misc/bison.simple:255: warning: unused variable `struct _YYSTYPE vslv al' /usr/share/misc/bison.simple:225: warning: unused variable `int vslchar1' /usr/share/misc/bison.simple:221: warning: unused variable `int vsln' /usr/share/misc/bison.simple:285: warning: label `vslnewstate' defined but not u sed VSLRead.C:158: warning: control reaches end of non-void function `VSLLib_parse() ' VSLRead.C: At top level: VSLRead.C:160: warning: ANSI C++ forbids declaration `vslfilename' with no type or storage class VSLRead.C:160: conflicting types for `int vslfilename' VSLRead.C:74: previous declaration as `class string vslfilename' VSLRead.C:160: `lib_name' was not declared in this scope VSLRead.C:162: new declaration `int switchreset()' ./vsl-lex.L:306: ambiguates old declaration `void switchreset()' VSLRead.C:163: parse error before `if' VSLRead.C:167: warning: ANSI C++ forbids declaration `topstack' with no type or storage class VSLRead.C:167: redefinition of `int topstack' ./vsl-lex.L:46: `int topstack' previously defined here VSLRead.C:168: `optimizeMode' was not declared in this scope VSLRead.C:168: warning: ANSI C++ forbids declaration `read' with no type or stor age class VSLRead.C:168: `int read' redeclared as different kind of symbol /usr/include/unistd.h:94: previous declaration of `int read(int, void *, unsigne d int)' VSLRead.C:168: warning: initializer list being treated as compound expression VSLRead.C:169: parse error before `}' VSLRead.C:72: warning: `class VSLLib * vsllib' defined but not used VSLRead.C:162: warning: `int switchreset()' defined but not used gmake[1]: *** [VSLRead.o] Error 1 gmake[1]: Leaving directory `/home2/ports/devel/ddd/work/ddd-3.1.5/ddd' gmake: *** [all] Error 1 *** Error code 2 Stop. *** Error code 1 Stop. *** Error code 1 Stop. >Fix: N/A >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 May 31 5: 5:31 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mrelay.jrc.it (mrelay.jrc.it [139.191.1.65]) by hub.freebsd.org (Postfix) with ESMTP id 2E4F514E66; Mon, 31 May 1999 05:05:25 -0700 (PDT) (envelope-from nick.hibma@jrc.it) Received: from elect8 (elect8.jrc.it [139.191.71.152]) by mrelay.jrc.it (LMC5692) with SMTP id OAA03056; Mon, 31 May 1999 14:05:21 +0200 (MET DST) Date: Mon, 31 May 1999 14:05:20 +0200 (MET DST) From: Nick Hibma X-Sender: n_hibma@elect8 Reply-To: Nick Hibma To: freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) 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 > > Moving these files to ftp requires good automatic means to keep > > ftp servers updated. However as of today there are no such means > > available. > > > > CVSup is definitely easiest way to keep well defined collection > > of files up to date. > > Folks, how about _admitting_ finally that our ports collection is a > database? We wouldn't need anything else than standard system tools to > maintain a ports.db file containing all that we want as DB records. Some thoughts: 1) Cvsupping the while database on every change or writing YAT (Yet Another Tool) to do this properly 2) Keeping things like Makefiles, descriptions, patches in a database 3) making it a binary file instead of Human Readable ASCII IMHO we'd end with something as silly as an OO database. Nick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 5:13:56 1999 Delivered-To: freebsd-ports@freebsd.org Received: from smtp13.bellglobal.com (smtp13.bellglobal.com [204.101.251.52]) by hub.freebsd.org (Postfix) with ESMTP id 7C95F14E66 for ; Mon, 31 May 1999 05:13:54 -0700 (PDT) (envelope-from vanderh@ecf.toronto.edu) Received: from localhost.nowhere (ppp18413.on.bellglobal.com [206.172.130.93]) by smtp13.bellglobal.com (8.8.5/8.8.5) with ESMTP id IAA15601; Mon, 31 May 1999 08:14:59 -0400 (EDT) Received: (from tim@localhost) by localhost.nowhere (8.9.3/8.9.1) id IAA11191; Mon, 31 May 1999 08:00:33 -0400 (EDT) (envelope-from tim) Date: Mon, 31 May 1999 08:00:33 -0400 From: Tim Vanderhoek To: Lauri Laupmaa Cc: "'ports@freebsd.org'" Subject: Re: /usr/local/etc/rc.d script sequence Message-ID: <19990531080033.B10973@mad> References: <554419C71610D211B3F808003636280213B0A2@lant.mbp.ee> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: <554419C71610D211B3F808003636280213B0A2@lant.mbp.ee>; from Lauri Laupmaa on Mon, May 31, 1999 at 09:37:15AM +0300 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, May 31, 1999 at 09:37:15AM +0300, Lauri Laupmaa wrote: > > sequrence is not the best one can think of... Example: my apache uses some > mysql stuff and for this to work I have to manually rename mysql.sh to > 60.mysql.sh or something, so it starts before apache.sh. > > Wouldn't it be good if there were some rules as how ports name their startup > scripts ? Such as .... Maybe the simplest solution is to handle them on a case-by-case basis (ie. send-pr a patch to change the mysql port)? -- This is my .signature which gets appended to the end of my messages. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 5:14: 1 1999 Delivered-To: freebsd-ports@freebsd.org Received: from smtp11.bellglobal.com (smtp11.bellglobal.com [204.101.251.53]) by hub.freebsd.org (Postfix) with ESMTP id 917B315316 for ; Mon, 31 May 1999 05:13:58 -0700 (PDT) (envelope-from vanderh@ecf.toronto.edu) Received: from localhost.nowhere (ppp18413.on.bellglobal.com [206.172.130.93]) by smtp11.bellglobal.com (8.8.5/8.8.5) with ESMTP id IAA04771; Mon, 31 May 1999 08:16:42 -0400 (EDT) Received: (from tim@localhost) by localhost.nowhere (8.9.3/8.9.1) id HAA11177; Mon, 31 May 1999 07:58:28 -0400 (EDT) (envelope-from tim) Date: Mon, 31 May 1999 07:58:27 -0400 From: Tim Vanderhoek To: Jim Mock Cc: matt , FreeBSD-PORTS Subject: Re: WmInet and asmon Message-ID: <19990531075827.A10973@mad> References: <19990531193839.A98288@blues.ghis.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: <19990531193839.A98288@blues.ghis.net>; from Jim Mock on Mon, May 31, 1999 at 07:38:41PM +1000 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, May 31, 1999 at 07:38:41PM +1000, Jim Mock wrote: > > Asmon needs gmake to compile. I've been trying to make it work and > submit the port for a while now, but the thing coredumps with a > floating point exception error every time I run it. I'm not spending Have you done the fpsetmask() thing, yet? FreeBSD handles fp exceptions in a non-standard way. For details on exactly how non-standard, and why, search the list archives for fpsetmask and bruce and evans. The solution is usually to pretend that FreeBSD is normal by calling fpsetmask(). Good luck. [Hey, folks! When you start banging your head against the wall, feel free to email ports@FreeBSD.ORG! It is for discussion of general porting problems. :-] -- This is my .signature which gets appended to the end of my messages. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 5:20:36 1999 Delivered-To: freebsd-ports@freebsd.org Received: from titan.metropolitan.at (mail.metropolitan.at [195.212.98.131]) by hub.freebsd.org (Postfix) with ESMTP id 0C69C152CA; Mon, 31 May 1999 05:20:31 -0700 (PDT) (envelope-from mladavac@metropolitan.at) Received: by TITAN with Internet Mail Service (5.0.1458.49) id ; Mon, 31 May 1999 14:23:13 +0200 Message-ID: <55586E7391ACD211B9730000C110027617962F@r-lmh-wi-100.corpnet.at> From: Ladavac Marino To: 'Nick Hibma' , freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: RE: a two-level port system? (fwd) Date: Mon, 31 May 1999 14:18:01 +0200 X-Priority: 3 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.0.1458.49) Content-Type: text/plain Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > -----Original Message----- > From: Nick Hibma [SMTP:nick.hibma@jrc.it] > Sent: Monday, May 31, 1999 2:05 PM > To: freebsd-ports@FreeBSD.ORG; freebsd-hackers@FreeBSD.ORG > Subject: Re: a two-level port system? (fwd) > > > Folks, how about _admitting_ finally that our ports collection is a > > database? We wouldn't need anything else than standard system tools > to > > maintain a ports.db file containing all that we want as DB records. > > Some thoughts: > > 1) Cvsupping the while database on every change or writing YAT (Yet > Another Tool) to do this properly > 2) Keeping things like Makefiles, descriptions, patches in a database > 3) making it a binary file instead of Human Readable ASCII > [ML] Well, I'll try to make a proof of concept tonight with a flatfile database not unlike the normal diff over several files. The result will be an ascii file which you could diff against and transfer only the diffs. Basically the format will be graphics graphics/gimp graphics/gimp/Makefile It will be trivial to expand it into directories in order to build ports, and compact directories into the file once the port has been added/updated. Advantages: 1) the file behaves like any other source file as far as CVS and CVSup is concerned: one stores and transfers diffs only 2) shar does it (and this will not be much different) 3) well, it is ascii :) /Marino > IMHO we'd end with something as silly as an OO database. > > Nick > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-hackers" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 5:38:19 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ns.uninet.ee (ns.uninet.ee [194.204.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 8E1F815135; Mon, 31 May 1999 05:38:14 -0700 (PDT) (envelope-from taavi@uninet.ee) Received: from localhost (taavi@localhost) by ns.uninet.ee (8.8.8/8.7.3) with SMTP id PAA22007; Mon, 31 May 1999 15:37:49 +0300 (EEST) Date: Mon, 31 May 1999 15:37:49 +0300 (EEST) From: Taavi Talvik To: Ladavac Marino Cc: "'Nick Hibma'" , freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: RE: a two-level port system? (fwd) In-Reply-To: <55586E7391ACD211B9730000C110027617962F@r-lmh-wi-100.corpnet.at> 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 Mon, 31 May 1999, Ladavac Marino wrote: Disadvantage: With one big file it is next to impossible to build version 1.1.1 of one port and 1.1.2 of another. With current model i can check out specific branch for all files/ports separately. best regards, taavi > Basically the format will be > graphics > graphics/gimp > graphics/gimp/Makefile > > > > It will be trivial to expand it into directories in order to > build ports, and compact directories into the file once the port has > been added/updated. > > Advantages: > 1) the file behaves like any other source file as far as CVS and > CVSup is concerned: one stores and transfers diffs only > 2) shar does it (and this will not be much different) > 3) well, it is ascii :) ----------------------------------------------------------- Taavi Talvik | Internet: taavi@uninet.ee Unineti Andmeside AS | phone: +372 6405150 Ravala pst. 10-412 | fax: +372 6405151 EE0001, Tallinn, Estonia | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 5:46:13 1999 Delivered-To: freebsd-ports@freebsd.org Received: from titan.metropolitan.at (mail.metropolitan.at [195.212.98.131]) by hub.freebsd.org (Postfix) with ESMTP id 4836F14E05; Mon, 31 May 1999 05:46:07 -0700 (PDT) (envelope-from mladavac@metropolitan.at) Received: by TITAN with Internet Mail Service (5.0.1458.49) id ; Mon, 31 May 1999 14:48:59 +0200 Message-ID: <55586E7391ACD211B9730000C1100276179630@r-lmh-wi-100.corpnet.at> From: Ladavac Marino To: 'Taavi Talvik' , Ladavac Marino Cc: 'Nick Hibma' , freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: RE: a two-level port system? (fwd) Date: Mon, 31 May 1999 14:43:49 +0200 X-Priority: 3 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.0.1458.49) Content-Type: text/plain Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > -----Original Message----- > From: Taavi Talvik [SMTP:taavi@uninet.ee] > Sent: Monday, May 31, 1999 2:38 PM > To: Ladavac Marino > Cc: 'Nick Hibma'; freebsd-ports@FreeBSD.ORG; > freebsd-hackers@FreeBSD.ORG > Subject: RE: a two-level port system? (fwd) > > On Mon, 31 May 1999, Ladavac Marino wrote: > > Disadvantage: > > With one big file it is next to impossible to build version 1.1.1 of > one > port and 1.1.2 of another. > > With current model i can check out specific branch for > all files/ports separately. > [ML] You have a point there :) Of course, you could check out the 1.1.1 version of the big file, build your port, and then the 1.1.2 version of the big file, build the other one, but this would be probably rather slow--some testing will be needed. Another possibility is one file per port, thus keeping the stuff in more manageable chunks. For this I don't even have to write anything--shar will do (something better than shar, something that keeps the file entries alphabetized and thus guarantees minimal diffs would be good, though). I hope we all agree that a reduction in file/directory count is desirable. [ML] /Marino To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 6: 6: 1 1999 Delivered-To: freebsd-ports@freebsd.org Received: from labinfo.iet.unipi.it (labinfo.iet.unipi.it [131.114.9.5]) by hub.freebsd.org (Postfix) with SMTP id 0CFB91501B; Mon, 31 May 1999 06:05:55 -0700 (PDT) (envelope-from luigi@labinfo.iet.unipi.it) Received: from localhost (luigi@localhost) by labinfo.iet.unipi.it (8.6.5/8.6.5) id MAA18732; Mon, 31 May 1999 12:39:03 +0200 From: Luigi Rizzo Message-Id: <199905311039.MAA18732@labinfo.iet.unipi.it> Subject: Re: a two-level port system? (fwd) To: mladavac@metropolitan.at (Ladavac Marino) Date: Mon, 31 May 1999 12:39:02 +0200 (MET DST) Cc: taavi@uninet.ee, mladavac@metropolitan.at, nick.hibma@jrc.it, freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG In-Reply-To: <55586E7391ACD211B9730000C1100276179630@r-lmh-wi-100.corpnet.at> from "Ladavac Marino" at May 31, 99 02:43:30 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text Content-Length: 2466 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > With one big file it is next to impossible to build version 1.1.1 of > > one > > port and 1.1.2 of another. > > > > With current model i can check out specific branch for > > all files/ports separately. > > > [ML] You have a point there :) > Of course, you could check out the 1.1.1 version of the big > file, build your port, and then the 1.1.2 version of the big file, build > the other one, but this would be probably rather slow--some testing will > be needed. > > Another possibility is one file per port, thus keeping the stuff > in more manageable chunks. For this I don't even have to write > anything--shar will do (something better than shar, something that keeps > the file entries alphabetized and thus guarantees minimal diffs would be > good, though). > > I hope we all agree that a reduction in file/directory count is > desirable. in fact i think the biggest problem, performancewise, is the presence of multiple subdirs per port. I'd be happy if we could build a backward compatible method that (in order of importance) 1) allows short "files" such as those in pkg/ (with perhaps the exception of PLIST and files/md5 for other reasons) to be stored as Makefile variables instead of external files (the backward mechanism would be to look at the file if a matching name is not found;). pkg/PLIST and files/md5, if really needed, could be moved to the main directory. This would remove one dir (pkg/) plus 3-4 files in 100% of the ports, plus another dir (files/) in perhaps 90% of the cases. 2) keeps patches in the main directory instead of a separate subdir. 3) pieces from files/ are also moved into the main directory with an adequate prefix (e.g. new-foo.c) to be stripped at install time (it is my understanding that in most cases the copy from files/ to the right place is done by explicit commands in the Makefile, right ?) This is trickier and maybe not worthwhile... comments ? luigi -----------------------------------+------------------------------------- Luigi RIZZO, luigi@iet.unipi.it . Dip. di Ing. dell'Informazione http://www.iet.unipi.it/~luigi/ . Universita` di Pisa TEL/FAX: +39-050-568.533/522 . via Diotisalvi 2, 56126 PISA (Italy) http://www.iet.unipi.it/~luigi/ngc99/ ==== First International Workshop on Networked Group Communication ==== -----------------------------------+------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 6:25:13 1999 Delivered-To: freebsd-ports@freebsd.org Received: from titan.metropolitan.at (mail.metropolitan.at [195.212.98.131]) by hub.freebsd.org (Postfix) with ESMTP id CA52C14F09; Mon, 31 May 1999 06:24:58 -0700 (PDT) (envelope-from mladavac@metropolitan.at) Received: by TITAN with Internet Mail Service (5.0.1458.49) id ; Mon, 31 May 1999 15:27:45 +0200 Message-ID: <55586E7391ACD211B9730000C1100276179631@r-lmh-wi-100.corpnet.at> From: Ladavac Marino To: 'Luigi Rizzo' Cc: freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: RE: a two-level port system? (fwd) Date: Mon, 31 May 1999 15:22:33 +0200 X-Priority: 3 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.0.1458.49) Content-Type: text/plain Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > -----Original Message----- > From: Luigi Rizzo [SMTP:luigi@labinfo.iet.unipi.it] > Sent: Monday, May 31, 1999 12:39 PM > To: mladavac@metropolitan.at > Cc: taavi@uninet.ee; mladavac@metropolitan.at; nick.hibma@jrc.it; > freebsd-ports@FreeBSD.ORG; freebsd-hackers@FreeBSD.ORG > Subject: Re: a two-level port system? (fwd) > > in fact i think the biggest problem, performancewise, is the presence > of multiple subdirs per port. > I'd be happy if we could build a backward compatible method that (in > order of importance) > [ML] [worthwile suggestions deleted] > comments ? [ML] This would offer an advantage over the existing system only if all ports are updated to the new schema, which is a lot of work. shar approach could be easily mechanised, and requires no changes in the makefiles or the ports themselves. OTOH, shar offers no advantages to the folks who build all ports (or most of them) because they end up creating all directories anyway. I think Satoshi is the only such person :) /Marino > luigi > -----------------------------------+---------------------------------- > --- > Luigi RIZZO, luigi@iet.unipi.it . Dip. di Ing. dell'Informazione > http://www.iet.unipi.it/~luigi/ . Universita` di Pisa > TEL/FAX: +39-050-568.533/522 . via Diotisalvi 2, 56126 PISA > (Italy) > > http://www.iet.unipi.it/~luigi/ngc99/ > ==== First International Workshop on Networked Group Communication > ==== > -----------------------------------+---------------------------------- > --- > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-hackers" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 6:41:50 1999 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 5E9EC14BF1 for ; Mon, 31 May 1999 06:41:44 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.1a/8.9.0) with ESMTP id IAA23290; Mon, 31 May 1999 08:41:12 -0500 (CDT) Date: Mon, 31 May 1999 08:41:12 -0500 (CDT) From: Steve Price To: Ladavac Marino Cc: "'Luigi Rizzo'" , freebsd-ports@FreeBSD.ORG Subject: RE: a two-level port system? (fwd) In-Reply-To: <55586E7391ACD211B9730000C1100276179631@r-lmh-wi-100.corpnet.at> 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 Mon, 31 May 1999, Ladavac Marino wrote: # [ML] This would offer an advantage over the existing system # only if all ports are updated to the new schema, which is a lot of work. # shar approach could be easily mechanised, and requires no changes in the # makefiles or the ports themselves. OTOH, shar offers no advantages to # the folks who build all ports (or most of them) because they end up # creating all directories anyway. I think Satoshi is the only such # person :) You can add me to that list. I'm pretty sure Simokawa-san keeps the whole tree around, Justin Seger is another, everyone that I've ever setup a FreeBSD box for, and the list goes on. The point being that quite a number of people will find it useful to have all the ports on their box for any number of reasons besides the fact that they build packages. IMHO any proposed solution that increases the pain of doing so will probably meet with some resistance. But don't let that discourage you. Code it up and I have a couple of boxes I'll give it a whirl on. :-) -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 6:50:39 1999 Delivered-To: freebsd-ports@freebsd.org Received: from titan.metropolitan.at (mail.metropolitan.at [195.212.98.131]) by hub.freebsd.org (Postfix) with ESMTP id 4D6FD14BF1 for ; Mon, 31 May 1999 06:50:28 -0700 (PDT) (envelope-from mladavac@metropolitan.at) Received: by TITAN with Internet Mail Service (5.0.1458.49) id ; Mon, 31 May 1999 15:53:18 +0200 Message-ID: <55586E7391ACD211B9730000C1100276179633@r-lmh-wi-100.corpnet.at> From: Ladavac Marino To: 'Steve Price' , Ladavac Marino Cc: 'Luigi Rizzo' , freebsd-ports@FreeBSD.ORG Subject: RE: a two-level port system? (fwd) Date: Mon, 31 May 1999 15:48:08 +0200 X-Priority: 3 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.0.1458.49) Content-Type: text/plain Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > -----Original Message----- > From: Steve Price [SMTP:sprice@hiwaay.net] > Sent: Monday, May 31, 1999 3:41 PM > To: Ladavac Marino > Cc: 'Luigi Rizzo'; freebsd-ports@FreeBSD.ORG > Subject: RE: a two-level port system? (fwd) > > You can add me to that list. I'm pretty sure Simokawa-san keeps > the whole tree around, Justin Seger is another, everyone that I've > ever setup a FreeBSD box for, and the list goes on. > > The point being that quite a number of people will find it useful > to have all the ports on their box for any number of reasons besides > the fact that they build packages. IMHO any proposed solution > that increases the pain of doing so will probably meet with some > resistance. But don't let that discourage you. Code it up and I > have a couple of boxes I'll give it a whirl on. :-) [ML] So you actually do BUILD all the ports? In that case I would value your opinion on speed disadvantages of the current system. Namely, I build only the ports I need, and I browse pretty often through the DESC files in order to see if I can use something, which is slow because DESC's are rather deep. One single ports.pseudoshar file would be great for this purpose, but not easily manageable. Multiple (pseudo)shars are hardly better than the current system, except that they bust the NAMI cache somewhat less. I'll go for the unoptimized (read: not sorted) shar files tonight. /Marino > -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 6:53:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.yes.no (ns1.yes.no [195.204.136.10]) by hub.freebsd.org (Postfix) with ESMTP id 8C7DA14BF1; Mon, 31 May 1999 06:53:09 -0700 (PDT) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [195.204.143.218]) by ns1.yes.no (8.9.1a/8.9.1) with ESMTP id PAA07622; Mon, 31 May 1999 15:53:08 +0200 (CEST) Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id PAA56022; Mon, 31 May 1999 15:53:07 +0200 (MET DST) Date: Mon, 31 May 1999 15:53:05 +0200 From: Eivind Eklund To: Andrzej Bialecki Cc: Taavi Talvik , Rasmus Kaj , freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: a two-level port system? Message-ID: <19990531155305.A55875@bitbox.follo.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.1i In-Reply-To: ; from Andrzej Bialecki on Mon, May 31, 1999 at 01:02:50PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, May 31, 1999 at 01:02:50PM +0200, Andrzej Bialecki wrote: > Folks, how about _admitting_ finally that our ports collection is a > database? We wouldn't need anything else than standard system tools to > maintain a ports.db file containing all that we want as DB records. Rule #1: Any change to the ports collection must not make it harder for the ports committers to keep the ports collection up to date. Rule #2: Any change to the ports collection must not make it harder for people to help out with the ports collection. Rule #3,4, and 5: Read rules #1 and 2 again. Rule #6: It is nice (but not essensial) if the ports become faster and/or smaller than today. Rule #7,8,9, and 10: Read rules #1 and 2 again, and understand their impact. Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 7:12:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from dfw-ix16.ix.netcom.com (dfw-ix16.ix.netcom.com [206.214.98.16]) by hub.freebsd.org (Postfix) with ESMTP id C565914E50; Mon, 31 May 1999 07:12:16 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: (from smap@localhost) by dfw-ix16.ix.netcom.com (8.8.4/8.8.4) id JAA00982; Mon, 31 May 1999 09:11:34 -0500 (CDT) Received: from sji-ca41-214.ix.netcom.com(209.111.208.214) by dfw-ix16.ix.netcom.com via smap (V1.3) id rma000927; Mon May 31 09:11:18 1999 Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.2/8.6.9) id HAA51369; Mon, 31 May 1999 07:10:10 -0700 (PDT) Date: Mon, 31 May 1999 07:10:10 -0700 (PDT) Message-Id: <199905311410.HAA51369@silvia.hip.berkeley.edu> X-Authentication-Warning: silvia.hip.berkeley.edu: asami set sender to asami@cs.berkeley.edu using -f To: mladavac@metropolitan.at Cc: luigi@labinfo.iet.unipi.it, freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG In-reply-to: <55586E7391ACD211B9730000C1100276179631@r-lmh-wi-100.corpnet.at> (message from Ladavac Marino on Mon, 31 May 1999 15:22:33 +0200) Subject: Re: a two-level port system? (fwd) From: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) References: <55586E7391ACD211B9730000C1100276179631@r-lmh-wi-100.corpnet.at> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Ladavac Marino I don't really have time to butt in (I have to hop on a plane in a few hours and I haven't finished the presentation slides) but I'd like to throw in my two cents before this gets out of hand. * [ML] This would offer an advantage over the existing system * only if all ports are updated to the new schema, which is a lot of work. * shar approach could be easily mechanised, and requires no changes in the * makefiles or the ports themselves. OTOH, shar offers no advantages to * the folks who build all ports (or most of them) because they end up * creating all directories anyway. I think Satoshi is the only such * person :) I don't think that's really an issue. The question is, what is the problem you are trying to solve here? What are the requirements of the system? The requirements are: @ Easy to maintain. I have a tree checked out, I can go in there and type "make package", tweak the Makefile and type "make clean package", and type "cvs commit" when I'm done. A lot of committers work this way. Can you beat this? @ Version control. Can you check out an arbitrary version of any file? I want to do something like "give me the changes in Makefile between yesterday and today". @ Low on bandwidth. CVS combined with "individual files" approach is pretty darn efficient when it comes to not sending more than what changed. @ Easy to search. Does it let me grep something in all md5 files or all PLISTs? The current approach does this by letting the filesystem take care of the individual files. A shar file per port solution is just moving part of the problem from the kernel (filesystem) to userland (shar/unshar). Now, the problems are: @ It takes a long time to...what? cvsup the tree? That's already pretty fast. Read all files? Why do you want to read all files? It's more likely that you want to read all the Makefiles or all the md5 files or some such, which shar will slow down considerably. CVS update the entire tree? Ok, so that's pretty slow. But do people really do it often enough to hurt? @ It is large. Ok, so it's 44MB (the first poster had the size completely wrong -- probably had some distfiles or work/ subdirs lying around). That's less than 20KB per port. Ok, so you can keep only the Makefile, or even less, and let the network do the work for you whenever you type something. But does anybody have a system that has such a wonderful network connection but yet can't spare 44MB of disk space? It seems to me that you guys are arguing about a problem that doesn't really exist. Or at least all ideas proposed so far seem to hurt more than help. ;) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 7:27:34 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mx.nsu.ru (mx.nsu.ru [193.124.215.71]) by hub.freebsd.org (Postfix) with ESMTP id B1D6114BCC; Mon, 31 May 1999 07:27:19 -0700 (PDT) (envelope-from fjoe@iclub.nsu.ru) Received: from iclub.nsu.ru (fjoe@iclub.nsu.ru [193.124.222.66]) by mx.nsu.ru (8.9.1/8.9.0) with ESMTP id VAA18549; Mon, 31 May 1999 21:22:23 +0700 (NOVST) Received: from localhost (fjoe@localhost) by iclub.nsu.ru (8.9.3/8.8.5) with ESMTP id VAA60016; Mon, 31 May 1999 21:22:23 +0700 (NSS) Date: Mon, 31 May 1999 21:22:23 +0700 (NSS) From: Max Khon To: Satoshi - Ports Wraith - Asami Cc: mladavac@metropolitan.at, luigi@labinfo.iet.unipi.it, freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) In-Reply-To: <199905311410.HAA51369@silvia.hip.berkeley.edu> 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, there! On Mon, 31 May 1999, Satoshi - Ports Wraith - Asami wrote: > @ Version control. Can you check out an arbitrary version of any > file? I want to do something like "give me the changes in > Makefile between yesterday and today". It's hard to check out the port for an arbitrary version of program. E.g.: try to check out port for samba 1.9.18p10 /fjoe PS sorry, previous post was a bogus To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 7:28:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mx.nsu.ru (mx.nsu.ru [193.124.215.71]) by hub.freebsd.org (Postfix) with ESMTP id 32F5B1552D; Mon, 31 May 1999 07:26:46 -0700 (PDT) (envelope-from fjoe@iclub.nsu.ru) Received: from iclub.nsu.ru (fjoe@iclub.nsu.ru [193.124.222.66]) by mx.nsu.ru (8.9.1/8.9.0) with ESMTP id VAA18059; Mon, 31 May 1999 21:19:59 +0700 (NOVST) Received: from localhost (fjoe@localhost) by iclub.nsu.ru (8.9.3/8.8.5) with ESMTP id VAA59952; Mon, 31 May 1999 21:19:59 +0700 (NSS) Date: Mon, 31 May 1999 21:19:59 +0700 (NSS) From: Max Khon To: Satoshi - Ports Wraith - Asami Cc: mladavac@metropolitan.at, luigi@labinfo.iet.unipi.it, freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) In-Reply-To: <199905311410.HAA51369@silvia.hip.berkeley.edu> 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, there! On Mon, 31 May 1999, Satoshi - Ports Wraith - Asami wrote: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 7:32: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from labinfo.iet.unipi.it (labinfo.iet.unipi.it [131.114.9.5]) by hub.freebsd.org (Postfix) with SMTP id CFF0714E6A; Mon, 31 May 1999 07:31:38 -0700 (PDT) (envelope-from luigi@labinfo.iet.unipi.it) Received: from localhost (luigi@localhost) by labinfo.iet.unipi.it (8.6.5/8.6.5) id OAA19033; Mon, 31 May 1999 14:06:23 +0200 From: Luigi Rizzo Message-Id: <199905311206.OAA19033@labinfo.iet.unipi.it> Subject: Re: a two-level port system? (fwd) To: asami@FreeBSD.ORG (Satoshi - Ports Wraith - Asami) Date: Mon, 31 May 1999 14:06:22 +0200 (MET DST) Cc: mladavac@metropolitan.at, freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG In-Reply-To: <199905311410.HAA51369@silvia.hip.berkeley.edu> from "Satoshi - Ports Wraith - Asami" at May 31, 99 07:09:51 am X-Mailer: ELM [version 2.4 PL23] Content-Type: text Content-Length: 1014 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Now, the problems are: > > @ It takes a long time to...what? cvsup the tree? That's already to install the port distribution. it's the slowest part of the install process. developers may not experience that, but all other users (who buy the cd) do. I am primarily concerned with that, and secondly with mainteinance issues when you have a new/updated port, you generally need to touch the Makefile and one or more files in pkg, and the info in pkg/* is often the same comments you would put at the beginning of the makefile. cheers luigi -----------------------------------+------------------------------------- Luigi RIZZO, luigi@iet.unipi.it . Dip. di Ing. dell'Informazione http://www.iet.unipi.it/~luigi/ . Universita` di Pisa TEL/FAX: +39-050-568.533/522 . via Diotisalvi 2, 56126 PISA (Italy) http://www.iet.unipi.it/~luigi/ngc99/ ==== First International Workshop on Networked Group Communication ==== -----------------------------------+------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 7:38:36 1999 Delivered-To: freebsd-ports@freebsd.org Received: from smtp1.mindspring.com (smtp1.mindspring.com [207.69.200.31]) by hub.freebsd.org (Postfix) with ESMTP id 5C2B114F40; Mon, 31 May 1999 07:38:23 -0700 (PDT) (envelope-from rsi@mindspring.com) Received: from kamikaze.mindspring.com (user-2ive1s5.dialup.mindspring.com [165.247.7.133]) by smtp1.mindspring.com (8.8.5/8.8.5) with ESMTP id KAA19838; Mon, 31 May 1999 10:37:06 -0400 (EDT) Received: (from rsi@localhost) by kamikaze.mindspring.com (8.9.3/8.9.1) id KAA10485; Mon, 31 May 1999 10:42:09 -0400 (EDT) (envelope-from rsi) Message-Id: <199905311442.KAA10485@kamikaze.mindspring.com> To: Luigi Rizzo Cc: mladavac@metropolitan.at (Ladavac Marino), taavi@uninet.ee, nick.hibma@jrc.it, freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) References: <199905311039.MAA18732@labinfo.iet.unipi.it> From: Rajappa Iyer Date: 31 May 1999 10:42:09 -0400 Reply-To: rajappa@mindspring.com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Luigi Rizzo writes: > in fact i think the biggest problem, performancewise, is the presence > of multiple subdirs per port. Well, if we are going to change the ports mechanism, may I suggest that we make it easy to create `foreign' packages? Let me explain. In an ideal world, I'd like to use cd /usr/ports/... make make package on any of the platforms that has a ported ports mechanism (i.e. BSD make and /usr/share/mk) in place. Thus, I could see living with a file directory structure as below: + | Makefile | md5 | +- FreeBSD | | PLIST | | patches-* | | DESCR etc. | +- SunOS | pkg-related files | patches-* etc. Now this doesn't reduce the overall file/directory count, but it does reduce the subdir count on each platform. Also, it gives the original author an incentive to use the ports mechanism for all platforms that s/he writes the package for. In an ideal world, it would reduce the burden of the ports maintainers and increase the number of packages available off the bat for FreeBSD. (Hey, one can hope, can't one?) This would also allow FreeBSD to share ports with {Net|Open}BSD. What do people think? rsi -- a.k.a. Rajappa Iyer. New York, New York. We're too busy mopping the floor to turn off the faucet. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 8:19:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mail.theinternet.com.au (zeus.theinternet.com.au [203.34.176.2]) by hub.freebsd.org (Postfix) with ESMTP id 31C9314BE5; Mon, 31 May 1999 08:18:59 -0700 (PDT) (envelope-from akm@mail.theinternet.com.au) Received: (from akm@localhost) by mail.theinternet.com.au (8.9.3/8.9.3) id BAA92145; Tue, 1 Jun 1999 01:21:46 +1000 (EST) (envelope-from akm) From: Andrew Kenneth Milton Message-Id: <199905311521.BAA92145@mail.theinternet.com.au> Subject: Re: a two-level port system? In-Reply-To: <19990531155305.A55875@bitbox.follo.net> from Eivind Eklund at "May 31, 1999 3:53: 5 pm" To: eivind@FreeBSD.ORG (Eivind Eklund) Date: Tue, 1 Jun 1999 01:21:46 +1000 (EST) Cc: abial@webgiro.com, taavi@uninet.ee, kaj@raditex.se, freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL43 (25)] 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 +----[ Eivind Eklund ]--------------------------------------------- | On Mon, May 31, 1999 at 01:02:50PM +0200, Andrzej Bialecki wrote: | > Folks, how about _admitting_ finally that our ports collection is a | > database? We wouldn't need anything else than standard system tools to | > maintain a ports.db file containing all that we want as DB records. | | Rule #1: Any change to the ports collection must not make it harder | for the ports committers to keep the ports collection up to date. | Rule #2: Any change to the ports collection must not make it harder | for people to help out with the ports collection. How about optionally tarring the 'files' and 'patches' subdirs (into seperate tarfiles or as one tarfile) to be extracted when the port is needed. This would make cvsupping ports 'harder' I would imagine, although not impossible, given the .uu files I've seen for /compat stuff recently. 'Harder' is an awkward word, it has too many meanings in this context. One meaning says that any extra exertion required rules out the change, one meaning says that extra complexity rules out the change. I'm not sure which one you mean or if you indeed mean both. -- Totally Holistic Enterprises Internet| P:+61 7 3870 0066 | Andrew The Internet (Aust) Pty Ltd | F:+61 7 3870 4477 | Milton ACN: 082 081 472 | M:+61 416 022 411 |72 Col .Sig PO Box 837 Indooroopilly QLD 4068 |akm@theinternet.com.au|Specialist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 8:21:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from Argon.Mlink.NET (Argon.Mlink.NET [205.236.182.18]) by hub.freebsd.org (Postfix) with ESMTP id 542DE14BE5 for ; Mon, 31 May 1999 08:21:12 -0700 (PDT) (envelope-from matt@Mlink.NET) Received: from arpaqc-gw.mlink.net (matt@arpaqc-gw.mlink.net [209.104.117.209]) by Argon.Mlink.NET (8.8.8/8.8.2) with ESMTP id LAA25041; Mon, 31 May 1999 11:18:43 -0400 (EDT) Date: Mon, 31 May 1999 11:20:57 -0400 (EDT) From: matt To: Jim Mock Cc: FreeBSD-PORTS Subject: Re: WmInet and asmon In-Reply-To: <19990531193839.A98288@blues.ghis.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 Mon, 31 May 1999, Jim Mock wrote: [...] : Asmon needs gmake to compile. I've been trying to make it work and : submit the port for a while now, but the thing coredumps with a : floating point exception error every time I run it. I'm not spending : any more time screwing with it.. if someone else wants to try to fix : it, more power to 'em. Yes, I was reminded to use gmake, which was something I had forgotten to do the first time, and yes, I had the same problem you did.. "Floating point exception" I'm gonna screw around with it when I get some free time, but if anyone else wants to mess with it too, let me know and we can work together on it.. : As for wminet, I haven't tried it. Oh, it TOTALLY doesn't work on FreeBSD, I think it might though, would probably have to rewrite alot of it's utmp handling, which might not even be worth the effor or hell, might even break the program, I'm going to look into it more.. : -- : - Jim Mock - jim@blues.ghis.net - systems administrator - ghis.NET - Matt -- DISCLAIMER: Anyone sending me unsolicited commercial electronic mail will be charged a $100 fee for time spent reading it. Do NOT send this type of electronic mail to me. In reading this, you automatically agree to be subjected to these terms: US Code Title 47, Sec.227(a)(2)(B), a computer/modem/printer meets the definition of a telephone fax machine. By Sec.227(b)(1)(C), it is unlawful to send any unsolicited advertisement to such equipment. By Sec.227(b)(3)(C), a violation of the aforementioned Section is punishable by action to recover actual monetary loss, or $500, whichever is greater, for each violation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 8:26:39 1999 Delivered-To: freebsd-ports@freebsd.org Received: from smtp13.bellglobal.com (smtp13.bellglobal.com [204.101.251.52]) by hub.freebsd.org (Postfix) with ESMTP id 0D77214CFE; Mon, 31 May 1999 08:26:33 -0700 (PDT) (envelope-from vanderh@ecf.toronto.edu) Received: from localhost.nowhere (ppp18367.on.bellglobal.com [206.172.130.47]) by smtp13.bellglobal.com (8.8.5/8.8.5) with ESMTP id LAA13662; Mon, 31 May 1999 11:27:34 -0400 (EDT) Received: (from tim@localhost) by localhost.nowhere (8.9.3/8.9.1) id LAA12616; Mon, 31 May 1999 11:26:49 -0400 (EDT) (envelope-from tim) Date: Mon, 31 May 1999 11:26:48 -0400 From: Tim Vanderhoek To: Max Khon Cc: Satoshi - Ports Wraith - Asami , mladavac@metropolitan.at, luigi@labinfo.iet.unipi.it, freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) Message-ID: <19990531112648.A12515@mad> References: <199905311410.HAA51369@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: ; from Max Khon on Mon, May 31, 1999 at 09:22:23PM +0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, May 31, 1999 at 09:22:23PM +0700, Max Khon wrote: > > It's hard to check out the port for an arbitrary version of program. > E.g.: try to check out port for samba 1.9.18p10 Well, samba was upgraded from 1.9.18p10 to 2.0.0 at Mon Jan 18 2:34:03 1999 UTC, so to checkout 1.9.18p10, $ cvs co -D "Mon Jan 18 1:34:03 1999 UTC" samba $ Actually, if you think about it a little, you'll notice that it becomes _harder_ to checkout a specific version of a port if the whole port is stored inside a single shar archive. [Consider: port import, port upgrade, port bugfix to patch-ac -- to checkout the original version of the port imported and include the bugfix to patch-ac is much harder if it's all shar'd up]. -- This is my .signature which gets appended to the end of my messages. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 8:35:26 1999 Delivered-To: freebsd-ports@freebsd.org Received: from gizmo.internode.com.au (gizmo.internode.com.au [192.83.231.115]) by hub.freebsd.org (Postfix) with ESMTP id D7D50152F2; Mon, 31 May 1999 08:35:21 -0700 (PDT) (envelope-from newton@gizmo.internode.com.au) Received: (from newton@localhost) by gizmo.internode.com.au (8.9.3/8.9.3) id BAA23855; Tue, 1 Jun 1999 01:04:43 +0930 (CST) (envelope-from newton) From: Mark Newton Message-Id: <199905311534.BAA23855@gizmo.internode.com.au> Subject: Re: a two-level port system? To: akm@mail.theinternet.com.au (Andrew Kenneth Milton) Date: Tue, 1 Jun 1999 01:04:43 -1430 (CST) Cc: eivind@FreeBSD.ORG, abial@webgiro.com, taavi@uninet.ee, kaj@raditex.se, freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG In-Reply-To: <199905311521.BAA92145@mail.theinternet.com.au> from "Andrew Kenneth Milton" at Jun 1, 99 01:21:46 am X-Mailer: ELM [version 2.4 PL25] 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 Andrew Kenneth Milton wrote: > How about optionally tarring the 'files' and 'patches' subdirs > (into seperate tarfiles or as one tarfile) to be extracted when the port > is needed. This would make cvsupping ports 'harder' I would imagine, > although not impossible, given the .uu files I've seen for /compat > stuff recently. More blue-sky stuff, but perhaps this one is easier to maintain on a long-term basis... We currently have /usr/ports/distfiles as a catch-all for, well, the distfiles. There's also /usr/ports/Mk for the makefile stubs. As such, they're a special cases, treated differently from all the other subdirs of /usr/ports. I propose another one, called something like /usr/ports/buildenv (for Build Environment). /usr/ports/buildenv would contain everything that the non-special-case /usr/ports directories currently contain, except the Makefiles. They'd continue to live in their present location. The way it'd work in real life is like this: In order to build a port you'd need /usr/ports/Mk and the subdirectory for the port you want to build (and its prerequisites); Type "make install" in /usr/ports/category/application as per usual. The bsd.ports.mk file would begin by checking for the existence of /usr/ports/buildenv/category/application. If it doesn't exist, go looking for it in /cdrom, or on ftp.freebsd.org. If it does exist, copy its contents into /usr/ports/category/application and continue the build in exactly the same way we do it today. The advantage of this approach is that you don't need to truck patches, package DESCR files, etc along with the ports tree distributed to end-users: All you need is a tree full of makefiles, everything else is grabbed on-demand. You still have the option of putting the whole damn thing on your system if you want, but for most people who just want to build a handful of ports, browse the tree to see if there's anything cool they want, and then forget the ports tree 'til the next upgrade, it'll cut down considerably on overhead. It'll cut down on the number of subdirectories in the ports tree by 66% at least. Ok, fire away -- tell me why it'll never work :-) - mark ---- Mark Newton Email: newton@internode.com.au (W) Network Engineer Email: newton@atdot.dotat.org (H) Internode Systems Pty Ltd Desk: +61-8-82232999 "Network Man" - Anagram of "Mark Newton" Mobile: +61-416-202-223 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 8:39:37 1999 Delivered-To: freebsd-ports@freebsd.org Received: from gizmo.internode.com.au (gizmo.internode.com.au [192.83.231.115]) by hub.freebsd.org (Postfix) with ESMTP id EF8FB14F3C; Mon, 31 May 1999 08:39:32 -0700 (PDT) (envelope-from newton@gizmo.internode.com.au) Received: (from newton@localhost) by gizmo.internode.com.au (8.9.3/8.9.3) id BAA23885; Tue, 1 Jun 1999 01:08:56 +0930 (CST) (envelope-from newton) From: Mark Newton Message-Id: <199905311538.BAA23885@gizmo.internode.com.au> Subject: Re: a two-level port system? To: newton@internode.com.au (Mark Newton) Date: Tue, 1 Jun 1999 01:08:56 -1430 (CST) Cc: akm@mail.theinternet.com.au, eivind@FreeBSD.ORG, abial@webgiro.com, taavi@uninet.ee, kaj@raditex.se, freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG In-Reply-To: <199905311534.BAA23855@gizmo.internode.com.au> from "Mark Newton" at Jun 1, 99 01:04:43 am X-Mailer: ELM [version 2.4 PL25] 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 Mark Newton wrote: > /usr/ports/buildenv would contain everything that the non-special-case > /usr/ports directories currently contain, except the Makefiles. They'd > continue to live in their present location. I thought of another advantage of this approach: You can upgrade existing ports on your system (but not add new ones) by doing an "rm -rf /usr/ports/buildenv". Next time you build a port the latest version of the build environment, supplementary makefiles, patches, distfile locations, etc can be sucked over from ftp.freebsd.org - mark ---- Mark Newton Email: newton@internode.com.au (W) Network Engineer Email: newton@atdot.dotat.org (H) Internode Systems Pty Ltd Desk: +61-8-82232999 "Network Man" - Anagram of "Mark Newton" Mobile: +61-416-202-223 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 9: 0: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7FB8914BE2 for ; Mon, 31 May 1999 09:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA54959; Mon, 31 May 1999 09:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Mon, 31 May 1999 09:00:03 -0700 (PDT) Message-Id: <199905311600.JAA54959@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Pedro F. Giffuni" Subject: Re: ports/11932: New port: Visual toolkit (VTK) Reply-To: "Pedro F. Giffuni" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11932; it has been noted by GNATS. From: "Pedro F. Giffuni" To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/11932: New port: Visual toolkit (VTK) Date: Mon, 31 May 1999 10:58:24 -0500 Fixed: begin 644 vtk.tar.gz M'XL(`'7Z43<``^U;>W/:2!+/O^A3]&%O_(HD)`38)*0.&VP3&_`!>6Q5JMA! M#*`@)$X2L*S/]]FO>R1A_%HGMVMG'^I4(FFFI[NGIZ=G?C-D'HS5%T],8&0* MN1R\`-`*.8V>`+H1/D/*`.0+NI'%:J.`;!D]EWL!N:#'E?<_] M%3YD&PR>PZ#GI3F.?YV-^<"R^5/IT#*9O&$\./Y:5E\;?SV+)7HFDWD!F:%]4@:YDL:["`@ZFQ_$1E4?CW'#GH!T<%)#GX\B=7-?%U,%2YL,)1_7CV03> M!,-_'GN<'[8K2K-U\E;:P*:;M?XFODB56KO3*->KI:@Q&J9G9X[ULW1Q=B(J M4E@DDTU'Y4[UI-FJ5=NEU-!CTY%E^E*]W.Y46]UVK4/%@V!:5%5LH/BFZW%3 M\::6POLS=3KKJ1(RUQH=_%MME5+"1^MV2=)Y[;!;J5Y4&Q44=7*N:$9Q\_*B MV>JT*[76E1KK5.O<9ZG/4BH5C/?CN MN-FJESNET"FK[RML=UX)#;D">;(FQK9ZDJ18CFG/^AS>8)\4&AQE,GXK?>_Y M]& M.A[)_SDMS/]Z-I_1(4;`?2[DVB;]!?97407P`;T%LBUG0& MUG#F<;`<\)=^P">A"0#E`!A,+,>:(!9J($25(_X#.T7FWUC@Z?U^IEN2: MBOB3JVSFLY[-5=\=!`L4H/J>J2(X*BCY^#'D#OJ4R0C9=VWF63X54#4"9&$%C>'`]6"Z M#$:N(\9K@K.0QA?'UO+)SHL?.Z?-1FQI>V6J;XX\E_=1O^L$#O-<]4)(0=6& M6HN,C724^WU@_;Y%!QK,AA"E`G/Z*_`JS$`O3BV;$9=H-G/(K]P);@5:L'#! MMAP,,@PHLA4-]\!=.#"PV=!'HS?>MZNM;J2G)/P=%<7Z2A`;%P7J@I$>%P)O M*=1]87,&_FQ*>)88MFP;'([X/=)YPR0A:(XNIL@19DTH@X>&<6=N>:XC.D)] MOM&M"34E\]Y5SDZ;]6HTJ":SYPC1<6X&R*C6.NXKU"-0C!60"-Q_]P9[NW)NE)0M#OSQ^IQ+U@J#+ZAC1_TS;V] M;V@S-$V9GOZ4>2;-GGCRZ,@0\F,U[+HC:.=*%WN9Q3?O2==WB-V?$OJV0-"QVLR;R7"S%6ZW4:S6R]W3M'Z\UJCVEXQ7J>U MASC_F-EN<_O_P43V/?>^29$=`_^Z_W> M.A[!?PCY\XC_\KF\9N0R>H[P7[902/#?O(EVW/;Y_=;<4KAFB-C?K;P6;?+^F%[;O*3G MU6]TWN'[&DK\G;QW7PQF,_O&*_SG((Q!V-IG9->==7,&ZXIU><"ORT^QJ,/,ZPDWL@^KAWN[7C1HWW*^WS@*R,J5W>AB7/5L["*.4O`_9". MC@VX1_O[J><&;K"<[?`61W/01PNVHHX",7P,O$"0(];C+Z0!&( M[8:C(-H3T\;9X\',#>O1F\M M7KP)R-Y@5;,;!I$(QWMCKT33^.XLO380!IB0,<[1CW(T^&HB`:_,;W=25#7Z6WO;GJC7(%I+TK?#Z4V M(,N^]R[H[TMB_S\>/NEO0+_R_L\P"KE\7M?H_B^337[_^2P4C_]1LUZO-CI/ MHN/1WW]D]=7X%W3Z_:^.?Q+\]QS4P9W"!\N?,=OZ19P@0B?\,6*2D_\6%,__ M2K5]U'HB'8_-_T)A-?\+>E;D_T(FF?_/0C3_$8W@GG#!EH0[;,YP8\YZ[BP\ M?X\/?L'R8>"Y$U'8<]TQ8@8JZW/?&CKBS%Z*CO(1)/QX?<'40ZA#1Q4H>QB= MZ8OF0AB!(-LU43V5T64R@A5/U$ETKK_@/9BR(5>`#(V_@-F^P`."[_2Y$D@`3G0-=Q'PDOMZ*K:>P5GB+#J MXKY3(*Y#JC['KCH^=^ADY@)?`PNM/F6V_0IJ[<,&9#3"E?O9@FQ(TC'V8^** M:SWLTB0TCT0)\Q$.H]?6O`4LD$:!^&G[8K%0L`\T@HKI3M3_QO>N47Z/Y__% M>:W]-*O_X_-?UPKA___(%#0CEQ/S7S>2^?\<%/\D/[KW^=`Y.Q(7/G2U>;NL M8]HWB^.HO[_T#GMMPH:6,[RW,&+^WNY(**&$$DHHH8022BBAA!)***&$$DHH 5H8022BBAA!+ZT]/_``]'.EP`4``` ` end To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 10:36:25 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 795FC14C15; Mon, 31 May 1999 10:36:24 -0700 (PDT) (envelope-from jseger@FreeBSD.org) Received: (from jseger@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA63894; Mon, 31 May 1999 10:36:23 -0700 (PDT) (envelope-from jseger@FreeBSD.org) Date: Mon, 31 May 1999 10:36:23 -0700 (PDT) From: Message-Id: <199905311736.KAA63894@freefall.freebsd.org> To: mvh@ix.netcom.com, jseger@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11784: Bind 8.2 port missing patch file Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Bind 8.2 port missing patch file State-Changed-From-To: open->closed State-Changed-By: jseger State-Changed-When: Mon May 31 10:35:51 PDT 1999 State-Changed-Why: Fixed. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 11: 0:24 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CDBA9150EA for ; Mon, 31 May 1999 11:00:10 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA66002 for freebsd-ports@freebsd.org; Mon, 31 May 1999 11:00:10 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 31 May 1999 11:00:10 -0700 (PDT) Message-Id: <199905311800.LAA66002@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 [1999/04/27] ports/11359ports rvplayer 5.0 (Linux) cases ncr PCI SCSI d 1 problem total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1998/09/19] ports/7987 ports Can't post news with TRN + NNTPCACHE o [1999/03/07] ports/10480ports tk81 will not *compile* with threaded app o [1999/03/18] ports/10665ports ports/graphics/sane needs access to /dev/ o [1999/03/19] ports/10681ports lessitf can't find X11 Revision 5 or high o [1999/04/04] ports/10943ports "ports/print/teTeX-beta# make install" fa f [1999/04/07] ports/11003ports wmcdplay is not capable of playing an AUD o [1999/05/03] ports/11465ports The port chipmunk will not run. o [1999/05/05] ports/11515ports new port: net/brouted o [1999/05/05] ports/11521ports Broken openssl port & Apache 1.3.6 o [1999/05/06] ports/11535ports Problems with cyrillic support. o [1999/05/17] misc/11745 ports typo in ld.c o [1999/05/23] ports/11865ports Xemacs 21 Packages port o [1999/05/29] ports/11935ports ports/audio/dap: -DBIGENDIAN is wrong on o [1999/05/29] ports/11939ports Upgrade of wmsound to 0.9.5 o [1999/05/29] ports/11940ports Additional patch for the wsoundprefs port 15 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1998/05/19] ports/6699 ports New port: the Generic NQS system o [1998/09/19] ports/7992 ports New port: xemacs20-stepwise (XEmacs20 hac a [1998/11/25] ports/8864 ports useradd - system V compatible implementat o [1999/01/07] docs/9375 ports Information on how to build PLIST automat a [1999/01/24] ports/9657 ports Progressive Networks' RealAudio proxy por o [1999/01/31] ports/9851 ports Port update: update R to 0.63.2 o [1999/02/02] ports/9884 ports samba does not allow "joes" (username+pas o [1999/02/07] ports/9954 ports new port devel/ACE o [1999/02/10] ports/10007ports Port of the mercury compiler version 0.8 o [1999/02/14] ports/10093ports Upgrade GNAT to 3.11p and fix for ELF o [1999/02/15] ports/10103ports revision of port of plugger-3.0 o [1999/02/16] ports/10124ports UNIX|STAT pr submission failed to include o [1999/03/03] ports/10377ports `make' in ports does not honor {f,ht}tp_p o [1999/03/07] ports/10469ports new port: linux-netcape-communicator-4.51 o [1999/03/07] ports/10477ports The fakemail in lib-src fails to link (ne o [1999/03/10] ports/10532ports Port of GNU Pascal o [1999/03/16] ports/10634ports Update the hylafax port to do a client in f [1999/03/20] ports/10702ports Add NCD audio support for emiclock ports f [1999/03/21] ports/10707ports [ADD] port for doxygen o [1999/03/26] ports/10813ports crossgo32 brokeness f [1999/03/28] ports/10844ports New port: adagdb o [1999/03/30] ports/10874ports [PATCH] html2ps doesn't handle `file:/... o [1999/04/02] ports/10916ports new port biology/molmol again o [1999/04/05] ports/10961ports gzipped manpages and .so macro in ports o [1999/04/08] ports/11029ports Configure scripts for non ported applicat o [1999/04/08] ports/11034ports New ports of crazywwwboardle o [1999/04/11] ports/11086ports Updating AStyle port o [1999/04/13] ports/11127ports New port: Giram o [1999/04/20] ports/11250ports PORTS: upgrade lesstif to 0.88.1 o [1999/04/21] ports/11267ports [New port] textproc/fconv (the return) o [1999/04/24] ports/11304ports New port syncal-0.5, syncing of ical and o [1999/04/25] ports/11319ports Netscape4-navigator wasn't FORTIFY'ing o [1999/05/03] ports/11468ports New port: xcin-devel o [1999/05/04] ports/11486ports New port: gedit-0.5.1 o [1999/05/04] ports/11491ports new port of shujit java compiler o [1999/05/05] ports/11512ports new port: x11-toolkits/wxGTK o [1999/05/05] ports/11520ports Freewais port does not respect ${PREFIX} o [1999/05/08] ports/11587ports inappropriate internet time calculation o [1999/05/08] ports/11599ports New port: japanese/xdvik-vflib o [1999/05/09] ports/11600ports New port: phalanx-21 o [1999/05/09] ports/11601ports new port: ifmail-os-2.14.5 o [1999/05/09] ports/11602ports new port: gup-0.4 o [1999/05/09] ports/11603ports New port: dbview-1.0.3 o [1999/05/09] ports/11618ports new port: editors/xemacs21 o [1999/05/11] ports/11641ports New port: net/firewalk o [1999/05/11] ports/11652ports New port (net/dictd) o [1999/05/12] ports/11672ports New port: intel2gas-1.2 o [1999/05/13] ports/11682ports new port : devel/t1lib o [1999/05/13] ports/11699ports new port: FastCGI development kit o [1999/05/14] ports/11712ports Rosegarden Port is out to date o [1999/05/14] ports/11714ports New port: cls-1.0 (safe version of clear) o [1999/05/14] ports/11718ports New port: sdd o [1999/05/15] ports/11723ports new port for sslproxy o [1999/05/15] ports/11727ports Character combinations halting bind8 o [1999/05/15] ports/11728ports WAIS support for gopher o [1999/05/16] ports/11731ports new port: dopewars-1.4.2 o [1999/05/16] ports/11734ports New Port: tya JIT compiler for Java o [1999/05/17] ports/11742ports Problems with japanese/dvipsk* support. o [1999/05/17] ports/11743ports inn-2.2 (nonfatal) premature stop of buil o [1999/05/17] ports/11750ports Update of x11-wm/wmx port (by maintainer) o [1999/05/18] ports/11755ports ja-vfghostscript5.5 port has wrong md5 da o [1999/05/18] ports/11756ports update port: xchat-0.9.5 to 0.9.6 o [1999/05/18] ports/11758ports [PATCH] Upgrade exim port to 3.00 o [1999/05/18] ports/11768ports Fixes some problems and smother compiling o [1999/05/18] ports/11769ports please update cons port with latest chang o [1999/05/18] ports/11770ports please update cons port with latest chang o [1999/05/18] ports/11771ports Update: print/klyx o [1999/05/19] ports/11776ports Fixed port: gtk-- o [1999/05/19] ports/11781ports Option to not use X windows support where o [1999/05/19] ports/11783ports new port o [1999/05/19] ports/11787ports New port: gpasman-1.1.3 o [1999/05/19] ports/11791ports new master site for bbdate o [1999/05/19] ports/11792ports Update: mail/bbmail o [1999/05/20] ports/11798ports Update of port news/newsfish to 1.1 o [1999/05/20] ports/11802ports new port : gtksheet o [1999/05/20] ports/11811ports Update databases/gdbm o [1999/05/20] ports/11813ports [New port] gnuplot+ o [1999/05/21] ports/11816ports New port of mserver modem-sahring server o [1999/05/21] ports/11820ports bsd.port.subdir.mk does not define the `m o [1999/05/21] ports/11825ports port update: lang/squeak2 o [1999/05/21] ports/11827ports New port: quirc o [1999/05/22] ports/11830ports Update net/imcq o [1999/05/23] ports/11861ports Update: x11-wm/icewm o [1999/05/23] ports/11862ports apache13-fp port is broken o [1999/05/23] ports/11864ports New port: wminet o [1999/05/24] ports/11877ports samba updated to 2.0.4 o [1999/05/24] ports/11878ports [Fix] japanese/emacs-manual unfetchable d o [1999/05/24] ports/11879ports dclock's "-miltime" option and "*miltime" o [1999/05/24] ports/11880ports Update port: wmmon o [1999/05/25] ports/11885ports [NEW PORT] Squirm - redirector for squid o [1999/05/25] ports/11886ports Port update: graphics/tgif-nls to 4.1.14 o [1999/05/26] ports/11892ports new port: graphics/gphoto o [1999/05/26] ports/11893ports new port: www/thttpd o [1999/05/26] ports/11903ports File descriptor leak in ports/www/tidy/ti o [1999/05/27] ports/11907ports new port textproc/perl2html o [1999/05/28] ports/11917ports New port for digital circuit design o [1999/05/29] ports/11930ports New port: blockade o [1999/05/29] ports/11932ports New port: Visual toolkit (VTK) o [1999/05/29] ports/11934ports Port of GNU Nana 2.4 o [1999/05/29] ports/11938ports Port upgrade for emulators/vice o [1999/05/30] ports/11951ports Install from the print/apsfilter port fai o [1999/05/30] ports/11952ports poppassd security enhancements o [1999/05/30] ports/11953ports New port - Graphic Counter Language o [1999/05/31] ports/11954ports Update: japanese/bookview o [1999/05/31] ports/11956ports fix: netpbm can't handle comments int rgb o [1999/05/31] ports/11957ports fix: netpbm/xbmtopbm can't handle some xb o [1999/05/31] ports/11958ports fix: netpbm doesn't install pstopnm.1 o [1999/05/31] ports/11959ports Compilation error from ddd-3.1.5 port 108 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 May 31 11:18:51 1999 Delivered-To: freebsd-ports@freebsd.org Received: from neutron.cichlids.com (as3-015.rp-plus.de [149.221.238.207]) by hub.freebsd.org (Postfix) with ESMTP id 1C1CC14D09; Mon, 31 May 1999 11:18:45 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (8.9.3/8.9.3) with ESMTP id UAA78323; Mon, 31 May 1999 20:03:30 +0200 (CEST) (envelope-from alex@cichlids.com) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id UAA12563; Mon, 31 May 1999 20:03:28 +0200 (CEST) (envelope-from alex) From: Alexander Langer Date: Mon, 31 May 1999 20:03:28 +0200 To: Mark Newton Cc: Andrew Kenneth Milton , eivind@FreeBSD.ORG, abial@webgiro.com, taavi@uninet.ee, kaj@raditex.se, freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: a two-level port system? Message-ID: <19990531200328.A12484@cichlids.cichlids.com> References: <199905311521.BAA92145@mail.theinternet.com.au> <199905311534.BAA23855@gizmo.internode.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: <199905311534.BAA23855@gizmo.internode.com.au> X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Mark Newton (newton@internode.com.au): > but for most people who just want to build a handful of ports, > browse the tree to see if there's anything cool they want, and > then forget the ports tree 'til the next upgrade, it'll cut How do you want to find out if the port fits your needs without a DESCR file? I use them very often. So - include it. Alex -- ************** I doubt, therefore I might be. ************** *** Send email to to get PGP-Key *** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 11:19:38 1999 Delivered-To: freebsd-ports@freebsd.org Received: from neutron.cichlids.com (as1-015.rp-plus.de [149.221.236.15]) by hub.freebsd.org (Postfix) with ESMTP id ABF0E15052; Mon, 31 May 1999 11:19:32 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (8.9.3/8.9.3) with ESMTP id UAA78323; Mon, 31 May 1999 20:03:30 +0200 (CEST) (envelope-from alex@cichlids.com) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id UAA12563; Mon, 31 May 1999 20:03:28 +0200 (CEST) (envelope-from alex) From: Alexander Langer Date: Mon, 31 May 1999 20:03:28 +0200 To: Mark Newton Cc: Andrew Kenneth Milton , eivind@FreeBSD.ORG, abial@webgiro.com, taavi@uninet.ee, kaj@raditex.se, freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: a two-level port system? Message-ID: <19990531200328.A12484@cichlids.cichlids.com> References: <199905311521.BAA92145@mail.theinternet.com.au> <199905311534.BAA23855@gizmo.internode.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: <199905311534.BAA23855@gizmo.internode.com.au> X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Mark Newton (newton@internode.com.au): > but for most people who just want to build a handful of ports, > browse the tree to see if there's anything cool they want, and > then forget the ports tree 'til the next upgrade, it'll cut How do you want to find out if the port fits your needs without a DESCR file? I use them very often. So - include it. Alex -- ************** I doubt, therefore I might be. ************** *** Send email to to get PGP-Key *** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 12:10: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 21C1814F49 for ; Mon, 31 May 1999 12:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA71727; Mon, 31 May 1999 12:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from bigphred.greycat.com (bigphred.greycat.com [207.173.133.2]) by hub.freebsd.org (Postfix) with ESMTP id 3ABCB14EA9 for ; Mon, 31 May 1999 12:08:09 -0700 (PDT) (envelope-from dann@bigphred.greycat.com) Received: (from root@localhost) by bigphred.greycat.com (8.9.3/8.9.3) id MAA70627; Mon, 31 May 1999 12:08:14 -0700 (PDT) (envelope-from dann) Message-Id: <199905311908.MAA70627@bigphred.greycat.com> Date: Mon, 31 May 1999 12:08:14 -0700 (PDT) From: dann@greycat.com Reply-To: dann@greycat.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11962: ports/emulators/mtools build fails in floppyd.c Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11962 >Category: ports >Synopsis: ports/emulators/mtools build fails in floppyd.c >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 May 31 12:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Dann Lunsford >Release: FreeBSD 3.2-STABLE i386 >Organization: Just me :-) >Environment: FreeBSD bigphred.greycat.com 3.2-STABLE FreeBSD 3.2-STABLE #8: Sat May 29 17:28:05 PDT 1999 root@bigphred.greycat.com:/usr/src/sys/compile/PHRED i386 >Description: Build of mtools (mtools-3.9.4-2703b.diff.gz, mtools-3.9.4.tar.gz, supped this morning (31=May-1999)) fails in compiling floppyd.c. cc -DHAVE_CONFIG_H -DSYSCONFDIR=\"/usr/local/etc\" -DCPU_i386 -DVENDOR_ -DOS_freebsd3_2 -DOS_freebsd3 -DOS_freebsd -O -pipe -Wall -I. -I. -c floppyd.c floppyd.c: In function `server_main_loop': floppyd.c:671: `SIGCLD' undeclared (first use this function) floppyd.c:671: (Each undeclared identifier is reported only once floppyd.c:671: for each function it appears in.) floppyd.c: In function `main': floppyd.c:975: too few arguments to function `setpgrp' gmake: *** [floppyd.o] Error 1 *** Error code 2 Stop. *** Error code 1 Stop. *** Error code 1 Stop. >How-To-Repeat: Just try to build mtools: cd /usr/ports/emulators/mtools ; make all install clean. >Fix: Problem is a couple of remaining linuxisms; patch follows. *** floppyd.c.original Mon May 31 11:50:58 1999 --- floppyd.c Mon May 31 11:57:38 1999 *************** *** 668,674 **** /* * Ignore dead servers so no zombies should be left hanging. */ ! signal(SIGCLD, SIG_IGN); for (;;) { int new_sock; --- 668,674 ---- /* * Ignore dead servers so no zombies should be left hanging. */ ! signal(SIGCHLD, SIG_IGN); for (;;) { int new_sock; *************** *** 972,978 **** * Start a new session and group. */ setsid(); ! setpgrp(); #ifndef DEBUG close(2); open("/dev/null", O_WRONLY); --- 972,978 ---- * Start a new session and group. */ setsid(); ! setpgrp(0,0); #ifndef DEBUG close(2); open("/dev/null", O_WRONLY); >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 May 31 12:15:26 1999 Delivered-To: freebsd-ports@freebsd.org Received: from y.ml.org (unknown [204.254.69.29]) by hub.freebsd.org (Postfix) with ESMTP id 062231544C for ; Mon, 31 May 1999 12:15:22 -0700 (PDT) (envelope-from lists+freebsd@y.ml.org) Received: (from j@localhost) by y.ml.org (8.9.3-Y/8.9.3) id MAA15526 for freebsd-ports@freebsd.org; Mon, 31 May 1999 12:15:19 -0700 (PDT) (envelope-from lists+freebsd@y.ml.org) Date: Mon, 31 May 1999 12:15:14 -0700 From: "J. Heinrich" To: freebsd-ports@freebsd.org Subject: Making egcs the default for building ports Message-ID: <19990531121511.A15449@y.ml.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.5i Organization: none X-Operating-System: NetBSD 1.3 i386 X-Hardware: Compaq 386/20 (12/540) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Is there a way to make egcs the default compiler for building ports on 3.1-RELEASE (e.g. CC=/usr/local/bin/gcc in a particular config file)? What other variables would need to be set (GXX, etc.)? Is there a good argument against doing this? I'm trying to build a KDE app that won't compile with the stock gcc/g++ (2.7.2.1); it compiles successfully under the egcs-1.1.2 port but won't link, presumably because the KDE & Qt ports (libs) were built earlier with gcc-2.7.2. I'm looking for a way to force all subsequent port builds to use the same compiler after rebuilding KDE/Qt with egcs (besides adjusting $PATH). -- jh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 12:16: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from smtp13.bellglobal.com (smtp13.bellglobal.com [204.101.251.52]) by hub.freebsd.org (Postfix) with ESMTP id B8AD914EA9; Mon, 31 May 1999 12:15:54 -0700 (PDT) (envelope-from vanderh@ecf.toronto.edu) Received: from localhost.nowhere (ppp18341.on.bellglobal.com [206.172.130.21]) by smtp13.bellglobal.com (8.8.5/8.8.5) with ESMTP id PAA21926; Mon, 31 May 1999 15:16:55 -0400 (EDT) Received: (from tim@localhost) by localhost.nowhere (8.9.3/8.9.1) id PAA13571; Mon, 31 May 1999 15:16:06 -0400 (EDT) (envelope-from tim) Date: Mon, 31 May 1999 15:16:06 -0400 From: Tim Vanderhoek To: Andrew Kenneth Milton Cc: Eivind Eklund , abial@webgiro.com, taavi@uninet.ee, kaj@raditex.se, freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: a two-level port system? Message-ID: <19990531151606.B13442@mad> References: <19990531155305.A55875@bitbox.follo.net> <199905311521.BAA92145@mail.theinternet.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: <199905311521.BAA92145@mail.theinternet.com.au>; from Andrew Kenneth Milton on Tue, Jun 01, 1999 at 01:21:46AM +1000 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Jun 01, 1999 at 01:21:46AM +1000, Andrew Kenneth Milton wrote: > > How about optionally tarring the 'files' and 'patches' subdirs > (into seperate tarfiles or as one tarfile) to be extracted when the port > is needed. This would make cvsupping ports 'harder' I would imagine, Has anyone involved in this discussion tried using the portcheckout script? It's in devel/portcheckout. It checkouts the current version of a port and its dependencies on demand. At one time, I gave wosch patches to optionally use ftp. Due to changes on wcarchive, I'm not sure those work anymore. Actually, I suspect the whole thing is suffering from a little bitrot, but you should at least have a look... -- This is my .signature which gets appended to the end of my messages. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 12:19:44 1999 Delivered-To: freebsd-ports@freebsd.org Received: from smtp13.bellglobal.com (smtp13.bellglobal.com [204.101.251.52]) by hub.freebsd.org (Postfix) with ESMTP id 93C2014EA9; Mon, 31 May 1999 12:19:41 -0700 (PDT) (envelope-from vanderh@ecf.toronto.edu) Received: from localhost.nowhere (ppp18341.on.bellglobal.com [206.172.130.21]) by smtp13.bellglobal.com (8.8.5/8.8.5) with ESMTP id PAA23085; Mon, 31 May 1999 15:20:42 -0400 (EDT) Received: (from tim@localhost) by localhost.nowhere (8.9.3/8.9.1) id PAA13581; Mon, 31 May 1999 15:19:59 -0400 (EDT) (envelope-from tim) Date: Mon, 31 May 1999 15:19:59 -0400 From: Tim Vanderhoek To: Mark Newton Cc: Andrew Kenneth Milton , eivind@FreeBSD.ORG, abial@webgiro.com, taavi@uninet.ee, kaj@raditex.se, freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: a two-level port system? Message-ID: <19990531151958.C13442@mad> References: <199905311521.BAA92145@mail.theinternet.com.au> <199905311534.BAA23855@gizmo.internode.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: <199905311534.BAA23855@gizmo.internode.com.au>; from Mark Newton on Tue, Jun 01, 1999 at 01:04:43AM -1430 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Jun 01, 1999 at 01:04:43AM -1430, Mark Newton wrote: > > The bsd.ports.mk file would begin by checking for the existence of > /usr/ports/buildenv/category/application. If it doesn't exist, > go looking for it in /cdrom, or on ftp.freebsd.org. If it does The portcheckout script can easily be modified to do that. I think everyone is trying to reinvent wosch's short script. -- This is my .signature which gets appended to the end of my messages. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 12:33:33 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C7C9A14D06; Mon, 31 May 1999 12:33:32 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA73382; Mon, 31 May 1999 12:33:32 -0700 (PDT) (envelope-from sada@FreeBSD.org) Date: Mon, 31 May 1999 12:33:32 -0700 (PDT) From: Message-Id: <199905311933.MAA73382@freefall.freebsd.org> To: one@netlab.is.tsukuba.ac.jp, sada@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11886: Port update: graphics/tgif-nls to 4.1.14 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update: graphics/tgif-nls to 4.1.14 State-Changed-From-To: open->closed State-Changed-By: sada State-Changed-When: Mon May 31 12:32:48 PDT 1999 State-Changed-Why: Submitter's request. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 12:38:36 1999 Delivered-To: freebsd-ports@freebsd.org Received: from hp9000.chc-chimes.com (unknown [206.67.97.84]) by hub.freebsd.org (Postfix) with ESMTP id C95D714C41; Mon, 31 May 1999 12:37:11 -0700 (PDT) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA019564195; Mon, 31 May 1999 11:23:15 -0400 Date: Mon, 31 May 1999 11:23:15 -0400 (EDT) From: Bill Fumerola To: Satoshi - Ports Wraith - Asami Cc: mladavac@metropolitan.at, luigi@labinfo.iet.unipi.it, freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) In-Reply-To: <199905311410.HAA51369@silvia.hip.berkeley.edu> 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 Mon, 31 May 1999, Satoshi - Ports Wraith - Asami wrote: > It seems to me that you guys are arguing about a problem that doesn't > really exist. Or at least all ideas proposed so far seem to hurt more > than help. ;) Agreed. This whole discussion, I feel, is silly. This is change for the sake of change. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.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 Mon May 31 12:53: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from hp9000.chc-chimes.com (unknown [206.67.97.84]) by hub.freebsd.org (Postfix) with ESMTP id CD0AA14C41; Mon, 31 May 1999 12:51:40 -0700 (PDT) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA023034943; Mon, 31 May 1999 11:35:43 -0400 Date: Mon, 31 May 1999 11:35:43 -0400 (EDT) From: Bill Fumerola To: Max Khon Cc: Satoshi - Ports Wraith - Asami , mladavac@metropolitan.at, luigi@labinfo.iet.unipi.it, freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) 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 On Mon, 31 May 1999, Max Khon wrote: > > @ Version control. Can you check out an arbitrary version of any > > file? I want to do something like "give me the changes in > > Makefile between yesterday and today". > > It's hard to check out the port for an arbitrary version of program. Not really. > E.g.: try to check out port for samba 1.9.18p10 $ cvs co -D 08/29/98 samba works for me on freefall. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.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 Mon May 31 12:53:46 1999 Delivered-To: freebsd-ports@freebsd.org Received: from hp9000.chc-chimes.com (unknown [206.67.97.84]) by hub.freebsd.org (Postfix) with ESMTP id A429D15332; Mon, 31 May 1999 12:52:22 -0700 (PDT) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA024715067; Mon, 31 May 1999 11:37:47 -0400 Date: Mon, 31 May 1999 11:37:47 -0400 (EDT) From: Bill Fumerola To: Luigi Rizzo Cc: Satoshi - Ports Wraith - Asami , mladavac@metropolitan.at, freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) In-Reply-To: <199905311206.OAA19033@labinfo.iet.unipi.it> 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 Mon, 31 May 1999, Luigi Rizzo wrote: > I am primarily concerned with that, and secondly with mainteinance > issues when you have a new/updated port, you generally need to touch > the Makefile and one or more files in pkg, and the info in pkg/* is > often the same comments you would put at the beginning of the makefile. Yes, but this would be a PITA for package building and parsing. Please understand (everyone) that there is more to the ports tree then building a port by hand. The web pages are built from the structure, pkg_* depends on files being there (and not having to parse a single file). - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.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 Mon May 31 13: 1:49 1999 Delivered-To: freebsd-ports@freebsd.org Received: from picnic.mat.net (picnic.mat.net [206.246.122.133]) by hub.freebsd.org (Postfix) with ESMTP id 5207B151EA for ; Mon, 31 May 1999 13:01:44 -0700 (PDT) (envelope-from chuckr@picnic.mat.net) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.9.3/8.8.5) with ESMTP id QAA98127; Mon, 31 May 1999 16:01:26 -0400 (EDT) Date: Mon, 31 May 1999 16:01:26 -0400 (EDT) From: Chuck Robey To: "J. Heinrich" Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Making egcs the default for building ports In-Reply-To: <19990531121511.A15449@y.ml.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 Mon, 31 May 1999, J. Heinrich wrote: > Is there a way to make egcs the default compiler for building ports > on 3.1-RELEASE (e.g. CC=/usr/local/bin/gcc in a particular config > file)? What other variables would need to be set (GXX, etc.)? > > Is there a good argument against doing this? > > I'm trying to build a KDE app that won't compile with the stock > gcc/g++ (2.7.2.1); it compiles successfully under the egcs-1.1.2 > port but won't link, presumably because the KDE & Qt ports (libs) > were built earlier with gcc-2.7.2. I'm looking for a way to force > all subsequent port builds to use the same compiler after rebuilding > KDE/Qt with egcs (besides adjusting $PATH). Most often, you can do: setenv CC (path to your egcs compiler) setenv CXX (path to your egcs C++ compiler) and that'll do what you want, because the majority of well-written apps use makefile semantics to abstract the value of the compilers. It's not guaranteed, but it *does* work most times. It's the least invasive. You can do other things, like sticking /usr/local/bin in your path ahead of /usr/bin, but I sure don't like that. You could, while you install egcs, set PREFIX to some special place that's completely isolated, then just stick that one place ahead of /usr/bin in your path, that would irritate me a lot less. I usuall really dislike sticking /usr/local/bin ahead of /usr/bin in general. For one thing, that brings in the gnu make ahead of our system make, and I don't like gnu make too much. > > -- > jh > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@picnic.mat.net | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run picnic (FreeBSD-current) (301) 220-2114 | and jaunt (Solaris7). ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 13: 7:42 1999 Delivered-To: freebsd-ports@freebsd.org Received: from wopr.caltech.edu (wopr.caltech.edu [131.215.240.222]) by hub.freebsd.org (Postfix) with ESMTP id B4E85151EA for ; Mon, 31 May 1999 13:07:37 -0700 (PDT) (envelope-from mph@wopr.caltech.edu) Received: (from mph@localhost) by wopr.caltech.edu (8.9.3/8.9.1) id NAA30152; Mon, 31 May 1999 13:07:20 -0700 (PDT) (envelope-from mph) Date: Mon, 31 May 1999 13:07:20 -0700 From: Matthew Hunt To: Chuck Robey Cc: "J. Heinrich" , freebsd-ports@FreeBSD.ORG Subject: Re: Making egcs the default for building ports Message-ID: <19990531130720.A30111@wopr.caltech.edu> References: <19990531121511.A15449@y.ml.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: ; from Chuck Robey on Mon, May 31, 1999 at 04:01:26PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, May 31, 1999 at 04:01:26PM -0400, Chuck Robey wrote: > of /usr/bin in your path, that would irritate me a lot less. I usuall > really dislike sticking /usr/local/bin ahead of /usr/bin in general. > For one thing, that brings in the gnu make ahead of our system make, and > I don't like gnu make too much. wopr:~$ grep 'bin/.*make' /usr/ports/devel/gmake/pkg/PLIST bin/gmake wopr:~$ PATH=/usr/local/bin:$PATH which make gmake /usr/bin/make /usr/local/bin/gmake -- Matthew Hunt * Inertia is a property http://www.pobox.com/~mph/ * of matter. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 13:10: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BA657154AD for ; Mon, 31 May 1999 13:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA76174; Mon, 31 May 1999 13:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pyrl.eye (ppp-209.centerplacenet.com [208.29.63.209]) by hub.freebsd.org (Postfix) with ESMTP id BFE25151EA for ; Mon, 31 May 1999 13:00:52 -0700 (PDT) (envelope-from ortmann@sparc.isl.net) Received: (from ortmann@localhost) by pyrl.eye (8.9.3/8.9.1) id PAA01201; Mon, 31 May 1999 15:00:48 -0500 (CDT) (envelope-from ortmann) Message-Id: <199905312000.PAA01201@pyrl.eye> Date: Mon, 31 May 1999 15:00:48 -0500 (CDT) From: Daniel Ortmann Reply-To: ortmann@sparc.isl.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11963: should update the ocaml-tk module and install in ports Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11963 >Category: ports >Synopsis: should update the ocaml-tk module and install in ports >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 May 31 13:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Daniel Ortmann >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: N/A >Description: Objective Caml's Tk interface currently is slightly out-of-date. 1) The language definition has changed slightly and produces warnings when compiled with the latest ocaml and installed. 2) Although the ocaml-tk code seems to work fine (even with tk8.0, I believe), it should be checked more carefully ... and possibly be updated from tk4.1 to either tk 8.0 or 8.1, whichever is more appropriate. The example code seems to run fine, but my examination was cursory. Even though I am listed as "the maintainer", I am a novice and would welcome any fixes! (thanks:-) >How-To-Repeat: N/A >Fix: - Get the site info and code from the site documented in the Makefile - Contact the maintainer of the ocaml-tk code in case he's done it already - Fix the code if needed or use any code already fixed - Ensure the ocaml-tk authors/maintainers get the needed patches - Install into the ports tree with appropriate dependencies >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 May 31 13:20: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4AC5114C8D for ; Mon, 31 May 1999 13:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA79072; Mon, 31 May 1999 13:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from pyrl.eye (ppp-209.centerplacenet.com [208.29.63.209]) by hub.freebsd.org (Postfix) with ESMTP id 3615C14C21 for ; Mon, 31 May 1999 13:13:41 -0700 (PDT) (envelope-from ortmann@sparc.isl.net) Received: (from ortmann@localhost) by pyrl.eye (8.9.3/8.9.1) id PAA01331; Mon, 31 May 1999 15:13:38 -0500 (CDT) (envelope-from ortmann) Message-Id: <199905312013.PAA01331@pyrl.eye> Date: Mon, 31 May 1999 15:13:38 -0500 (CDT) From: Daniel Ortmann Reply-To: ortmann@sparc.isl.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11964: lang/STk port needs to be updated to STk-3.99.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11964 >Category: ports >Synopsis: lang/STk port needs to be updated to STk-3.99.4 >Confidential: yes >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon May 31 13:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Daniel Ortmann >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: N/A >Description: STk-3.99.4 vastly supercedes STk-3.1.1; the ports tree should be updated to this latest version. The site info is in the Makefile. Most everything compiles fine out-of-the-box, but the dynamically loaded modules need some fixing. The problem is a Elf vs. aout problem. I've taken a crack at it, but I am still too much of a novice to fix it myself. This software is *very* well-written. It is a shame we don't have the latest code installed. Scheme-Tk code is *definately* more readable than Tcl-Tk or Perl-Tk (I haven't compared it to Python-Tk). I'm tempted to update the port even with dynamic object files such as "hash.o" not working, but it would be even better if it was fixed correctly. Any patches should, of course, be sent on to the author to improve the code base. Thanks! >How-To-Repeat: N/A >Fix: N/A >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 May 31 13:21:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from maildns.FSBDial.co.uk (maildns.fsbdial.co.uk [195.89.137.2]) by hub.freebsd.org (Postfix) with ESMTP id DC65D14C8D; Mon, 31 May 1999 13:21:08 -0700 (PDT) (envelope-from dlombardo@excite.com) Received: from [212.1.144.43] by maildns.freenet.co.uk (NTMail 4.30.0008/NT0619.00.8ceac940) with ESMTP id tlwpgaaa for ; Mon, 31 May 1999 21:16:23 +0100 Message-ID: <3752EFC6.95357F1B@excite.com> Date: Mon, 31 May 1999 21:23:34 +0100 From: Dean Lombardo Organization: University of Kent at Canterbury X-Mailer: Mozilla 4.5 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Satoshi - Ports Wraith - Asami , mladavac@metropolitan.at, luigi@labinfo.iet.unipi.it, freebsd-hackers@FreeBSD.ORG Cc: freebsd-ports@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) References: <55586E7391ACD211B9730000C1100276179631@r-lmh-wi-100.corpnet.at> <199905311410.HAA51369@silvia.hip.berkeley.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: > > @ It is large. Ok, so it's 44MB (the first poster had the size > completely wrong -- probably had some distfiles or work/ subdirs > lying around). That's less than 20KB per port. Ok, so you can > keep only the Makefile, or even less, and let the network do the > work for you whenever you type something. But does anybody have a > system that has such a wonderful network connection but yet can't > spare 44MB of disk space? Luigi Rizzo wrote: >> Now, the problems are: >> >> @ It takes a long time to...what? cvsup the tree? That's already > > to install the port distribution. it's the slowest part of the install > process. developers may not experience that, but all other > users (who buy the cd) do. I'm sorry if I got the size wrong - I must have forgotten to exclude the distfiles directory, although I must say that /usr/ports certainly _feels_ a lot bigger than 44Mb... Also, isn't there some penalty for storing a large number of files less than the size of a fragment? A typical pkg/DESCR file may only be 22 bytes in size, but it still occupies at least 512 bytes on disk. So is 44Mb the _actual_ size of the whole thing, as stored on disk, or just the sum of individual file sizes? I agree with Luigi that the slowest part is the first-time installation of the ports tree. I normally get download rates of 1Mb/sec from src.doc.ic.ac.uk, but sysinstall slows down to 10Kb/sec when it comes to installing the ports. FreeBSD also seems a bit slow when dealing with lots of small files. Dean To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 13:31: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from wopr.caltech.edu (wopr.caltech.edu [131.215.240.222]) by hub.freebsd.org (Postfix) with ESMTP id 4DC1114C8D; Mon, 31 May 1999 13:30:59 -0700 (PDT) (envelope-from mph@wopr.caltech.edu) Received: (from mph@localhost) by wopr.caltech.edu (8.9.3/8.9.1) id NAA30504; Mon, 31 May 1999 13:30:58 -0700 (PDT) (envelope-from mph) Date: Mon, 31 May 1999 13:30:58 -0700 From: Matthew Hunt To: Dean Lombardo Cc: Satoshi - Ports Wraith - Asami , mladavac@metropolitan.at, luigi@labinfo.iet.unipi.it, freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) Message-ID: <19990531133058.A30436@wopr.caltech.edu> References: <55586E7391ACD211B9730000C1100276179631@r-lmh-wi-100.corpnet.at> <199905311410.HAA51369@silvia.hip.berkeley.edu> <3752EFC6.95357F1B@excite.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <3752EFC6.95357F1B@excite.com>; from Dean Lombardo on Mon, May 31, 1999 at 09:23:34PM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, May 31, 1999 at 09:23:34PM +0100, Dean Lombardo wrote: > occupies at least 512 bytes on disk. So is 44Mb the _actual_ size of > the whole thing, as stored on disk, or just the sum of individual file > sizes? I would expect that Satoshi measured with du (or maybe df if he has a partition for the ports tree). In either case, the measurement is in allocated blocks of 512 bytes. > installing the ports. FreeBSD also seems a bit slow when dealing with > lots of small files. Either soft updates or async mounts should be used when initially installing the system. Probably not soft updates due to lcense issues. There are safty concerns with async mounts, but if you're doing a fresh install, you don't have precious data to worry about anyway, and if something goes wrong during the install, you're probably going to have to start over either way. Anyway, if I were installing a system, I would not install the ports tree during sysinstall. I would get the system up, and then install the ports tree while I can do other work on the system. -- Matthew Hunt * Stay close to the Vorlon. http://www.pobox.com/~mph/ * To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 13:38:40 1999 Delivered-To: freebsd-ports@freebsd.org Received: from dingo.cdrom.com (castles554.castles.com [208.214.165.118]) by hub.freebsd.org (Postfix) with ESMTP id 0D471154E7; Mon, 31 May 1999 13:38:37 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost [127.0.0.1]) by dingo.cdrom.com (8.9.3/8.8.8) with ESMTP id NAA18191; Mon, 31 May 1999 13:35:48 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Message-Id: <199905312035.NAA18191@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Matthew Hunt Cc: freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) In-reply-to: Your message of "Mon, 31 May 1999 13:30:58 PDT." <19990531133058.A30436@wopr.caltech.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 31 May 1999 13:35:48 -0700 From: Mike Smith Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > installing the ports. FreeBSD also seems a bit slow when dealing with > > lots of small files. This was discussed a while back; the causes are widely known (and have nothing to do with "lots of small files"). > Either soft updates or async mounts should be used when initially > installing the system. Maybe you should do an install one of these days. -- \\ The mind's the standard \\ Mike Smith \\ of the man. \\ msmith@freebsd.org \\ -- Joseph Merrick \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 13:43: 0 1999 Delivered-To: freebsd-ports@freebsd.org Received: from wopr.caltech.edu (wopr.caltech.edu [131.215.240.222]) by hub.freebsd.org (Postfix) with ESMTP id 701531568C; Mon, 31 May 1999 13:42:55 -0700 (PDT) (envelope-from mph@wopr.caltech.edu) Received: (from mph@localhost) by wopr.caltech.edu (8.9.3/8.9.1) id NAA30713; Mon, 31 May 1999 13:42:46 -0700 (PDT) (envelope-from mph) Date: Mon, 31 May 1999 13:42:45 -0700 From: Matthew Hunt To: Mike Smith Cc: freebsd-hackers@freebsd.org, freebsd-ports@freebsd.org Subject: Re: a two-level port system? (fwd) Message-ID: <19990531134245.A30672@wopr.caltech.edu> References: <19990531133058.A30436@wopr.caltech.edu> <199905312035.NAA18191@dingo.cdrom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <199905312035.NAA18191@dingo.cdrom.com>; from Mike Smith on Mon, May 31, 1999 at 01:35:48PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, May 31, 1999 at 01:35:48PM -0700, Mike Smith wrote: > > Either soft updates or async mounts should be used when initially > > installing the system. > > Maybe you should do an install one of these days. Should I take that to mean that async mounts are now used during the installation? Since I only have one computer, and it already has FreeBSD on it, then I don't need to do any installs these days! It's not like it's Windows... I did have to replace my disk the other day and restore from tape, and that's as close to a fresh install as I care to get! -- Matthew Hunt * Inertia is a property http://www.pobox.com/~mph/ * of matter. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 14:22:19 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.yes.no (ns1.yes.no [195.204.136.10]) by hub.freebsd.org (Postfix) with ESMTP id 1C05314C49; Mon, 31 May 1999 14:22:13 -0700 (PDT) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [195.204.143.218]) by ns1.yes.no (8.9.1a/8.9.1) with ESMTP id XAA12698; Mon, 31 May 1999 23:22:11 +0200 (CEST) Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id XAA57704; Mon, 31 May 1999 23:22:10 +0200 (MET DST) Date: Mon, 31 May 1999 23:22:10 +0200 From: Eivind Eklund To: Andrew Kenneth Milton Cc: abial@webgiro.com, taavi@uninet.ee, kaj@raditex.se, freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: a two-level port system? Message-ID: <19990531232210.A56135@bitbox.follo.net> References: <19990531155305.A55875@bitbox.follo.net> <199905311521.BAA92145@mail.theinternet.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.1i In-Reply-To: <199905311521.BAA92145@mail.theinternet.com.au>; from Andrew Kenneth Milton on Tue, Jun 01, 1999 at 01:21:46AM +1000 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Jun 01, 1999 at 01:21:46AM +1000, Andrew Kenneth Milton wrote: > 'Harder' is an awkward word, it has too many meanings in this context. > One meaning says that any extra exertion required rules out the change, > one meaning says that extra complexity rules out the change. I'm not > sure which one you mean or if you indeed mean both. They're the same, it is only a question of when the exertion comes. The important thing is that we do not netto loose contributions; this means that any extra complexity or work has to be outweighted by either decreasing the support work for the people presently doing the work, or make sure that new people will chip in (possibly because the increases in convenience makes them use FreeBSD instead of something else). Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 15: 0: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 137431506C for ; Mon, 31 May 1999 15:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA99221; Mon, 31 May 1999 15:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 6B38214F85; Mon, 31 May 1999 14:51:08 -0700 (PDT) Message-Id: <19990531215108.6B38214F85@hub.freebsd.org> Date: Mon, 31 May 1999 14:51:08 -0700 (PDT) From: mvh@ix.netcom.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11967: p5-Apache port out of date Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11967 >Category: ports >Synopsis: p5-Apache port out of date >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 May 31 15:00:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Mike Harding >Release: 3.2-stable >Organization: stamps.com >Environment: FreeBSD netcom1.netcom.com 3.2-STABLE FreeBSD 3.2-STABLE #1: Sun May 30 06:52:00 PDT 1999 root@netcom1.netcom.com:/usr/src/sys/compile/MIKE i386 >Description: /usr/ports/www/P5-Apache (or mod_perl) port is currently based on Apache 1.2. The port builds on top of Apache 1.3 if you change the 2 references to Apache 12 to Apache 13 >How-To-Repeat: Look at the port >Fix: Try the following patch, install and run Apache. I haven't actually run this because I am running SSL right now, but it builds fine and just needs testing. < BUILD_DEPENDS= /nonexistent:${PORTSDIR}/www/apache12:patch --- > BUILD_DEPENDS= /nonexistent:${PORTSDIR}/www/apache13:patch 20c20 < CONFIGURE_ENV= APACHEDIR=${WRKDIRPREFIX}${.CURDIR}/../apache12/work/ INSTALL_PROGRAM="${INSTALL_PROGRAM}" --- > CONFIGURE_ENV= APACHEDIR=${WRKDIRPREFIX}${.CURDIR}/../apache13/work/ INSTALL_PROGRAM="${INSTALL_PROGRAM}" >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 May 31 15:11: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from spooky.rwwa.com (rwwa.com [198.115.177.3]) by hub.freebsd.org (Postfix) with ESMTP id 1306D15543 for ; Mon, 31 May 1999 15:10:49 -0700 (PDT) (envelope-from witr@rwwa.com) Received: from spooky.rwwa.com (localhost.rwwa.com [127.0.0.1]) by spooky.rwwa.com (8.8.7/8.8.7) with ESMTP id SAA29830; Mon, 31 May 1999 18:10:37 -0400 (EDT) (envelope-from witr@rwwa.com) Message-Id: <199905312210.SAA29830@spooky.rwwa.com> X-Mailer: exmh version 2.0zeta 7/24/97 To: Taavi Talvik Cc: Rasmus Kaj , witr@rwwa.com, dlombardo@excite.com, freebsd-ports@FreeBSD.ORG Subject: Re: a two-level port system? In-reply-to: Your message of "Mon, 31 May 1999 13:15:20 +0300." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 31 May 1999 18:10:37 -0400 From: Robert Withrow Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org taavi@uninet.ee said: :- CVSup is definitely easiest way to keep well defined collection of :- files up to date. Yes, but who ever uses even a *small* fraction of the available ports? For a end user system or even a local server to try to keep the ports files up to date seems like a lot of wasted effort and space. What I was suggesting was this: cd /usr/ports/ make This would ftp the port for whatever, then continue just as if the port was already there. Seems like one just need add a "portfetch" target. And deal with dependencies... Another thing I'd like to see would be to have the "fetch" target look in another place after /usr/ports/distfiles and before trying to do a ftp. That way I could mount the cdrom and the port system would look there before doing the ftp. A final thing I'd like to see would be to have a more regular naming convention for ports that includes the version... I may attempt to implement the first two things someday... --------------------------------------------------------------------- Robert Withrow, R.W. Withrow Associates, Swampscott MA, witr@rwwa.COM To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 16:53:40 1999 Delivered-To: freebsd-ports@freebsd.org Received: from celerystick.finally.org (p6n207167115185.inetworld.net [207.167.115.185]) by hub.freebsd.org (Postfix) with ESMTP id 5730B15310 for ; Mon, 31 May 1999 16:53:36 -0700 (PDT) (envelope-from mark@ieng9.ucsd.edu) Received: from localhost (mark@localhost) by celerystick.finally.org (8.9.3/8.9.3) with ESMTP id QAA00465 for ; Mon, 31 May 1999 16:52:15 -0700 (PDT) (envelope-from mark@ieng9.ucsd.edu) X-Authentication-Warning: celerystick.finally.org: mark owned process doing -bs Date: Mon, 31 May 1999 16:52:14 -0700 (PDT) From: Mark Bermal X-Sender: mark@celerystick.finally.org Reply-To: mbermal@ucsd.edu To: freebsd-ports@freebsd.org Subject: Encap Package Manager 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 I was browsing around, and I came acroess the Encap Package Management system. I was wondering if anybody heard of it and if it would be advantageous to have a similar system under FreeBSD. Basically, it allows packages to have their own install directorys, and symlinks the proper files to /usr/local/bin, /usr/local/share/man, etc, etc. I though it was pretty cool. Comments? URL: http://encap.cso.uiuc.edu/ Mark Bermal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 17:10:34 1999 Delivered-To: freebsd-ports@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id 1505614E4C; Mon, 31 May 1999 17:10:26 -0700 (PDT) (envelope-from doconnor@gsoft.com.au) Received: from lot.gsoft.com.au (lot.gsoft.com.au [203.38.152.106]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id JAA01012; Tue, 1 Jun 1999 09:40:11 +0930 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Tue, 01 Jun 1999 09:40:11 +0930 (CST) From: "Daniel O'Connor" To: Bill Fumerola Subject: Re: a two-level port system? (fwd) Cc: freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, luigi@labinfo.iet.unipi.it, mladavac@metropolitan.at, Satoshi - Ports Wraith - Asami , Max Khon Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 31-May-99 Bill Fumerola wrote: > Not really. > > > E.g.: try to check out port for samba 1.9.18p10 > > $ cvs co -D 08/29/98 samba > > works for me on freefall. Hmm... anon cvs anyone? :) I have a copy of the src repo but not the ports one.. --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 18:45:18 1999 Delivered-To: freebsd-ports@freebsd.org Received: from adelphi.physics.adelaide.edu.au (adelphi.physics.adelaide.edu.au [129.127.36.247]) by hub.freebsd.org (Postfix) with ESMTP id 7AFC914D27 for ; Mon, 31 May 1999 18:45:06 -0700 (PDT) (envelope-from kkennawa@physics.adelaide.edu.au) Received: from bragg (bragg [129.127.36.34]) by adelphi.physics.adelaide.edu.au (8.8.8/8.8.8/UofA-1.5) with SMTP id LAA30474; Tue, 1 Jun 1999 11:15:02 +0930 (CST) Received: from localhost by bragg; (5.65/1.1.8.2/05Aug95-0227PM) id AA11559; Tue, 1 Jun 1999 11:16:04 +0930 Date: Tue, 1 Jun 1999 11:16:04 +0930 (CST) From: Kris Kennaway X-Sender: kkennawa@bragg To: Robert Withrow Cc: Taavi Talvik , Rasmus Kaj , dlombardo@excite.com, freebsd-ports@freebsd.org Subject: Re: a two-level port system? In-Reply-To: <199905312210.SAA29830@spooky.rwwa.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 On Mon, 31 May 1999, Robert Withrow wrote: > taavi@uninet.ee said: > :- CVSup is definitely easiest way to keep well defined collection of > :- files up to date. > > Yes, but who ever uses even a *small* fraction of the available ports? > For a end user system or even a local server to try to keep the > ports files up to date seems like a lot of wasted effort and space. For most users, running cvsup is all that's required, and it only takes about 5 minutes even over a slow modem. That's not much wasted effort, and the port tree isn't THAT huge (especially if you only check out the collections you're interested in). In terms of inodes it's quite hungry, though. This is the source of the only real "problem" with the current port structure, IMO (e.g., updating from a local CVS repository takes ages because of CVS's inefficiency, which I wouldn't have thought would be the common case for most users) > What I was suggesting was this: > > cd /usr/ports/ > make > > This would ftp the port for whatever, then continue just as if the > port was already there. Seems like one just need add a "portfetch" > target. And deal with dependencies... devel/portcheckout pretty much does this already, as somneone else pointed out. > Another thing I'd like to see would be to have the "fetch" target look > in another place after /usr/ports/distfiles and before trying to do > a ftp. That way I could mount the cdrom and the port system would look > there before doing the ftp. It can do this already, I do believe. > A final thing I'd like to see would be to have a more regular naming > convention for ports that includes the version... Do you mean the name by which the package is installed in /var/db/pkg, or the name of the port directory under /usr/ports? There are already naming conventions in place for the former (see the handbook), and I don't think it's appropriate that the latter includes the version in the directory name - it would generate too much update traffic no matter how the collection is synchronised. Kris ----- "Never criticize anybody until you have walked a mile in their shoes, because by that time you will be a mile away and have their shoes." -- Unknown To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 21: 4:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C1D5814C2B; Mon, 31 May 1999 21:04:19 -0700 (PDT) (envelope-from jseger@FreeBSD.org) Received: (from jseger@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA23525; Mon, 31 May 1999 21:04:19 -0700 (PDT) (envelope-from jseger@FreeBSD.org) Date: Mon, 31 May 1999 21:04:19 -0700 (PDT) From: Message-Id: <199906010404.VAA23525@freefall.freebsd.org> To: candy@kgc.co.jp, jseger@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11956: fix: netpbm can't handle comments int rgb.txt Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix: netpbm can't handle comments int rgb.txt State-Changed-From-To: open->closed State-Changed-By: jseger State-Changed-When: Mon May 31 21:04:05 PDT 1999 State-Changed-Why: Committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 21: 4:39 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6668C156FF; Mon, 31 May 1999 21:04:37 -0700 (PDT) (envelope-from jseger@FreeBSD.org) Received: (from jseger@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA23669; Mon, 31 May 1999 21:04:37 -0700 (PDT) (envelope-from jseger@FreeBSD.org) Date: Mon, 31 May 1999 21:04:37 -0700 (PDT) From: Message-Id: <199906010404.VAA23669@freefall.freebsd.org> To: candy@kgc.co.jp, jseger@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11957: fix: netpbm/xbmtopbm can't handle some xbm files Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix: netpbm/xbmtopbm can't handle some xbm files State-Changed-From-To: open->closed State-Changed-By: jseger State-Changed-When: Mon May 31 21:04:25 PDT 1999 State-Changed-Why: Committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 21: 4:59 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E1C6515385; Mon, 31 May 1999 21:04:58 -0700 (PDT) (envelope-from jseger@FreeBSD.org) Received: (from jseger@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA23749; Mon, 31 May 1999 21:04:58 -0700 (PDT) (envelope-from jseger@FreeBSD.org) Date: Mon, 31 May 1999 21:04:58 -0700 (PDT) From: Message-Id: <199906010404.VAA23749@freefall.freebsd.org> To: candy@kgc.co.jp, jseger@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11958: fix: netpbm doesn't install pstopnm.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix: netpbm doesn't install pstopnm.1 State-Changed-From-To: open->closed State-Changed-By: jseger State-Changed-When: Mon May 31 21:04:44 PDT 1999 State-Changed-Why: Committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 21:19:30 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mx.nsu.ru (mx.nsu.ru [193.124.215.71]) by hub.freebsd.org (Postfix) with ESMTP id F281114CEB; Mon, 31 May 1999 21:17:16 -0700 (PDT) (envelope-from fjoe@iclub.nsu.ru) Received: from iclub.nsu.ru (fjoe@iclub.nsu.ru [193.124.222.66]) by mx.nsu.ru (8.9.1/8.9.0) with ESMTP id LAA05002; Tue, 1 Jun 1999 11:12:47 +0700 (NOVST) Received: from localhost (fjoe@localhost) by iclub.nsu.ru (8.9.3/8.8.5) with ESMTP id LAA82973; Tue, 1 Jun 1999 11:12:20 +0700 (NSS) Date: Tue, 1 Jun 1999 11:12:19 +0700 (NSS) From: Max Khon To: Bill Fumerola Cc: Satoshi - Ports Wraith - Asami , mladavac@metropolitan.at, luigi@labinfo.iet.unipi.it, freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) 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 hi, there! On Mon, 31 May 1999, Bill Fumerola wrote: > > It's hard to check out the port for an arbitrary version of program. > > Not really. > > > E.g.: try to check out port for samba 1.9.18p10 > > $ cvs co -D 08/29/98 samba > > works for me on freefall. I have very (VERY!) bad link to anoncvs.freebsd.org. are there other anoncvs servers? /fjoe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 21:20: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F2889155CB for ; Mon, 31 May 1999 21:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA24830; Mon, 31 May 1999 21:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 99B661550B for ; Mon, 31 May 1999 21:10:27 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id D44CC148E; Mon, 31 May 1999 21:10:18 -0700 (PDT) Message-Id: <19990601041018.D44CC148E@norn.ca.eu.org> Date: Mon, 31 May 1999 21:10:18 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11971: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11971 >Category: ports >Synopsis: >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 May 31 21:20:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #217: Sat May 29 16:00:30 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: Update to 0.1.6. >How-To-Repeat: >Fix: Index: gview/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/graphics/gview/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 1999/05/29 04:05:24 1.2 +++ Makefile 1999/06/01 01:14:50 @@ -1,12 +1,12 @@ # New ports collection makefile for: gview -# Version required: 0.1.5 +# Version required: 0.1.6 # Date created: 30 April 1999 # Whom: Andrey Zakhvatov # # $Id: Makefile,v 1.2 1999/05/29 04:05:24 steve Exp $ # -DISTNAME= gview-0.1.5 +DISTNAME= gview-0.1.6 CATEGORIES= graphics MASTER_SITES= http://www.geocities.com/ResearchTriangle/Facility/1468/sg/ Index: gview/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/graphics/gview/files/md5,v retrieving revision 1.2 diff -u -r1.2 md5 --- md5 1999/05/29 04:05:48 1.2 +++ md5 1999/06/01 00:18:34 @@ -1 +1 @@ -MD5 (gview-0.1.5.tar.gz) = f80d8ae4904003e21f2b403f162610e2 +MD5 (gview-0.1.6.tar.gz) = 2987b520141529e37692feb321e8b35f -Chris >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 May 31 21:20:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ADC57155C1 for ; Mon, 31 May 1999 21:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA24821; Mon, 31 May 1999 21:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 87AB21550B for ; Mon, 31 May 1999 21:10:22 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 3B16B13DF; Mon, 31 May 1999 21:10:16 -0700 (PDT) Message-Id: <19990601041016.3B16B13DF@norn.ca.eu.org> Date: Mon, 31 May 1999 21:10:16 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11970: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11970 >Category: ports >Synopsis: >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 May 31 21:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #217: Sat May 29 16:00:30 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: Update to 1.19. I'm the maintainer of this port. >How-To-Repeat: >Fix: Index: aumix/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/audio/aumix/Makefile,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 Makefile --- Makefile 1999/05/29 04:47:12 1.1.1.1 +++ Makefile 1999/06/01 01:31:25 @@ -1,12 +1,12 @@ # New ports collection makefile for: aumix -# Version required: 1.18.4 +# Version required: 1.19 # Date created: 21 May 1999 # Whom: Chris Piazza # # $Id: Makefile,v 1.1.1.1 1999/05/29 04:47:12 steve Exp $ # -DISTNAME= aumix-1.18.4 +DISTNAME= aumix-1.19 CATEGORIES= audio MASTER_SITES= http://jpj.net/~trevor/aumix/ \ ${MASTER_SITE_SUNSITE} @@ -18,8 +18,9 @@ GNU_CONFIGURE= yes USE_GMAKE= yes -CONFIGURE_ENV+= CPPFLAGS="-L${LOCALBASE}/lib -I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -I${LOCALBASE}/include" +CONFIGURE_ARGS= --includedir="${LOCALBASE}/include" \ + --libdir="${LOCALBASE}/lib" +CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" CPPFLAGS="-I${LOCALBASE}/include" MAN1= aumix.1 Index: aumix/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/audio/aumix/files/md5,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 md5 --- md5 1999/05/29 04:47:13 1.1.1.1 +++ md5 1999/06/01 00:12:24 @@ -1 +1 @@ -MD5 (aumix-1.18.4.tar.gz) = 1451d865adc0a529c7b0fb5e7e2888ee +MD5 (aumix-1.19.tar.gz) = 0ca846dda9e0c42f3694113373e3fe47 Index: aumix/patches/patch-aa =================================================================== RCS file: patch-aa diff -N patch-aa --- /dev/null Mon May 31 18:32:17 1999 +++ patch-aa Mon May 31 18:26:11 1999 @@ -0,0 +1,20 @@ +--- src/Makefile.in.orig Thu May 20 04:56:28 1999 ++++ src/Makefile.in Mon May 31 18:25:47 1999 +@@ -80,7 +80,7 @@ + aumix_SOURCES = aumix.c aumix_curses.c aumix_gpm.c aumix.h gpm-xterm.h aumix_curses.h + + localedir = $(datadir)/locale +-INCLUDES = -I../intl -DLOCALEDIR=\"$(localedir)\" ++INCLUDES = -I../intl -DLOCALEDIR=\"$(localedir)\" -I@includedir@ + mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs + CONFIG_CLEAN_FILES = + PROGRAMS = $(bin_PROGRAMS) +@@ -97,7 +97,7 @@ + CFLAGS = @CFLAGS@ + COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) + CCLD = $(CC) +-LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ ++LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -L@libdir@ -o $@ + DIST_COMMON = Makefile.am Makefile.in + + -Chris >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 May 31 21:20:17 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 551A515623 for ; Mon, 31 May 1999 21:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA24839; Mon, 31 May 1999 21:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id C67211557F for ; Mon, 31 May 1999 21:10:25 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id CFBE41435; Mon, 31 May 1999 21:10:17 -0700 (PDT) Message-Id: <19990601041017.CFBE41435@norn.ca.eu.org> Date: Mon, 31 May 1999 21:10:17 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11972: Update: devel/gide Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11972 >Category: ports >Synopsis: Update: devel/gide >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 May 31 21:20:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #217: Sat May 29 16:00:30 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: Update to 0.1.1. Note to committer: I'd consider waiting on a commit of this because the master sites appear to be _really_ flaky. I grabbed the distfile from linuxberg.com. Files removed: patch-aa Files added: patch-ai >How-To-Repeat: >Fix: Index: gide/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/devel/gide/Makefile,v retrieving revision 1.21 diff -u -r1.21 Makefile --- Makefile 1999/04/23 18:06:21 1.21 +++ Makefile 1999/06/01 04:06:10 @@ -1,31 +1,33 @@ # New ports collection makefile for: gIDE -# Version required: 0.0.14 +# Version required: 0.1.1 # Date created: 29 Jul 1998 # Whom: rom # # $Id: Makefile,v 1.21 1999/04/23 18:06:21 mharo Exp $ # -DISTNAME= gIDE-0.0.14 -PKGNAME= gide-0.0.14 +DISTNAME= gIDE-0.1.1 +PKGNAME= gide-0.1.1 CATEGORIES= devel -MASTER_SITES= http://gide.pn.org/ +MASTER_SITES= http://gide.gdev.net/ \ + http://gide.pn.org/ MAINTAINER= rom_glsa@ein-hashofet.co.il -LIB_DEPENDS= gnomeui.1:${PORTSDIR}/x11/gnomelibs \ +LIB_DEPENDS= gnomeui.2:${PORTSDIR}/x11/gnomelibs \ guile.4:${PORTSDIR}/lang/guile FETCH_BEFORE_ARGS= -b -USE_X_PREFIX= yes USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CFLAGS="-I${LOCALBASE}/include ${CFLAGS}" \ GTK_CONFIG="${X11BASE}/bin/gtk12-config" \ - GLIB_CONFIG="${LOCALBASE}/bin/glib12-config" \ LIBS="-L${LOCALBASE}/lib" -MAN1= gide.1 +MAN1= gide.1 gdbio.1 + +pre-install: + @${MKDIR} ${PREFIX}/share/gIDE/extra .include Index: gide/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/devel/gide/files/md5,v retrieving revision 1.8 diff -u -r1.8 md5 --- md5 1999/01/17 20:01:53 1.8 +++ md5 1999/05/31 22:55:56 @@ -1 +1 @@ -MD5 (gIDE-0.0.14.tar.gz) = 0daed165ae67472e8cc8504ffc583d81 +MD5 (gIDE-0.1.1.tar.gz) = 71f00a7a48b04e347890aed7139a13f3 Index: gide/patches/patch-aa =================================================================== RCS file: patch-aa diff -N patch-aa --- /tmp/cvsh99289 Mon May 31 21:06:30 1999 +++ /dev/null Mon May 31 21:05:19 1999 @@ -1,21 +0,0 @@ ---- configure.orig Mon Jan 18 02:50:17 1999 -+++ configure Mon Jan 18 02:50:57 1999 -@@ -1721,13 +1721,13 @@ - fi - - if test "$no_gnome_config" = "yes"; then -- echo $ac_n "checking for gnomeConf.sh file in $gnome_prefix""... $ac_c" 1>&6 --echo "configure:1726: checking for gnomeConf.sh file in $gnome_prefix" >&5 -- if test -f $gnome_prefix/gnomeConf.sh; then -+ echo $ac_n "checking for gnomeConf.sh file in $prefix/share/gnome""... $ac_c" 1>&6 -+echo "configure:1726: checking for gnomeConf.sh file in $prefix/share/gnome" >&5 -+ if test -f $prefix/share/gnome/gnomeConf.sh; then - echo "$ac_t""found" 1>&6 - echo "loading gnome configuration from" \ -- "$gnome_prefix/gnomeConf.sh" -- . $gnome_prefix/gnomeConf.sh -+ "$prefix/share/gnome/gnomeConf.sh" -+ . $prefix/share/gnome/gnomeConf.sh - - else - echo "$ac_t""not found" 1>&6 Index: gide/patches/patch-ai =================================================================== RCS file: patch-ai diff -N patch-ai --- /dev/null Mon May 31 21:05:19 1999 +++ patch-ai Mon May 31 20:28:41 1999 @@ -0,0 +1,10 @@ +--- Makefile.in.orig Mon May 31 20:28:05 1999 ++++ Makefile.in Mon May 31 20:28:29 1999 +@@ -198,7 +198,6 @@ + cd $(srcdir) && $(ACLOCAL) + + config.status: $(srcdir)/configure +- $(SHELL) ./config.status --recheck + $(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES) + cd $(srcdir) && $(AUTOCONF) + Index: gide/pkg/PLIST =================================================================== RCS file: /cvs/FreeBSD/ports/devel/gide/pkg/PLIST,v retrieving revision 1.3 diff -u -r1.3 PLIST --- PLIST 1998/10/10 14:52:05 1.3 +++ PLIST 1999/06/01 03:44:38 @@ -1,2 +1,13 @@ bin/gdbio bin/gide +share/gIDE/extra/README +share/gIDE/extra/compile_sets +share/gIDE/extra/functions.highlight +share/gIDE/extra/functions.ignore +share/gIDE/extra/gide.scm +share/gIDE/extra/glob +share/gIDE/extra/glob.scm +share/gIDE/extra/patterns +share/gIDE/extra/patterns.scm +@dirrm share/gIDE/extra +@dirrm share/gIDE -Chris >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 May 31 21:59:38 1999 Delivered-To: freebsd-ports@freebsd.org Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by hub.freebsd.org (Postfix) with ESMTP id A790014C46; Mon, 31 May 1999 21:59:25 -0700 (PDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.9.3/8.9.3) id XAA62794; Mon, 31 May 1999 23:58:16 -0500 (CDT) (envelope-from dan) Date: Mon, 31 May 1999 23:58:16 -0500 From: Dan Nelson To: Max Khon Cc: Bill Fumerola , Satoshi - Ports Wraith - Asami , mladavac@metropolitan.at, luigi@labinfo.iet.unipi.it, freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) Message-ID: <19990531235815.B62559@dan.emsphone.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.5i In-Reply-To: ; from "Max Khon" on Tue Jun 1 11:12:19 GMT 1999 X-OS: FreeBSD 4.0-CURRENT Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In the last episode (Jun 01), Max Khon said: > hi, there! > > On Mon, 31 May 1999, Bill Fumerola wrote: > > Not really. > > > > > E.g.: try to check out port for samba 1.9.18p10 > > > > $ cvs co -D 08/29/98 samba > > > > works for me on freefall. > > I have very (VERY!) bad link to anoncvs.freebsd.org. are there other > anoncvs servers? Be your own CVS repository. Cvsup the raw CVS tree instead of pulling a single checked-out copy; then you can check out whatever versions you want, view the commitlogs, make local changes, etc. /usr/share/examples/cvsup/cvs-supfile is a good starting point. -Dan Nelson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 22:13: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.yes.no (ns1.yes.no [195.204.136.10]) by hub.freebsd.org (Postfix) with ESMTP id 0853615127; Mon, 31 May 1999 22:12:48 -0700 (PDT) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [195.204.143.218]) by ns1.yes.no (8.9.1a/8.9.1) with ESMTP id HAA18066; Tue, 1 Jun 1999 07:12:43 +0200 (CEST) Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id HAA59651; Tue, 1 Jun 1999 07:12:43 +0200 (MET DST) Date: Tue, 1 Jun 1999 07:12:43 +0200 From: Eivind Eklund To: Luigi Rizzo Cc: Satoshi - Ports Wraith - Asami , mladavac@metropolitan.at, freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) Message-ID: <19990601071242.A58405@bitbox.follo.net> References: <199905311410.HAA51369@silvia.hip.berkeley.edu> <199905311206.OAA19033@labinfo.iet.unipi.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.1i In-Reply-To: <199905311206.OAA19033@labinfo.iet.unipi.it>; from Luigi Rizzo on Mon, May 31, 1999 at 02:06:22PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, May 31, 1999 at 02:06:22PM +0200, Luigi Rizzo wrote: > > Now, the problems are: > > > > @ It takes a long time to...what? cvsup the tree? That's already > > to install the port distribution. it's the slowest part of the install > process. developers may not experience that, but all other > users (who buy the cd) do. This is due to FS bogons. There are two bogons in action: (1) 'async' isn't really fully async. Directory creation is still done synchronously. (2) The directory inode layout algorithm is not really efficient for things like the ports collection. There are a number of solutions available: (1) Change 'make release' to scan the ports collection and create an mtree file beforehand; apply the mtree file before extracting the collection. This will make the inode layout more efficient. (2) Change the directory inode layout policy in the kernel to a more efficient scheme (3) Hit jkh with a baseball bat until he stops refusing to use soft updates on the boot floppy during install (due to "making a point") (4) Fix the async code so it actually is fully async 1 and 2 are alternate solutions to the same part of the problem; 3 and 4 are alternate solutions to another part of the problem. Solving any of these would be useful, but solving one problem from each group would give most benefit. Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 22:20: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0841715145 for ; Mon, 31 May 1999 22:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA29393; Mon, 31 May 1999 22:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from henry.cs.adfa.edu.au (henry.cs.adfa.edu.au [131.236.21.158]) by hub.freebsd.org (Postfix) with ESMTP id 06E2914D66 for ; Mon, 31 May 1999 22:11:01 -0700 (PDT) (envelope-from wkt@henry.cs.adfa.edu.au) Received: (from wkt@localhost) by henry.cs.adfa.edu.au (8.9.2/8.9.1) id PAA07518; Tue, 1 Jun 1999 15:11:01 +1000 (EST) (envelope-from wkt) Message-Id: <199906010511.PAA07518@henry.cs.adfa.edu.au> Date: Tue, 1 Jun 1999 15:11:01 +1000 (EST) From: Warren Toomey Reply-To: wkt@henry.cs.adfa.edu.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11973: another port for you Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11973 >Category: ports >Synopsis: another port for you >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 May 31 22:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Warren Toomey >Release: FreeBSD 3.1-STABLE i386 >Organization: private >Environment: Several: FreeBSD 2.x, 3.x >Description: Here is another ported application which I think fits into both the net and security categories Thanks, Warren # 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: # # pktsuckers # pktsuckers/Makefile # pktsuckers/pkg # pktsuckers/pkg/COMMENT # pktsuckers/pkg/DESCR # pktsuckers/pkg/PLIST # pktsuckers/files # pktsuckers/files/md5 # echo c - pktsuckers mkdir -p pktsuckers > /dev/null 2>&1 echo x - pktsuckers/Makefile sed 's/^X//' >pktsuckers/Makefile << 'END-of-pktsuckers/Makefile' X# New ports collection makefile for: pktsuckers X# Version required: 1.2 X# Date created: 31 May 1999 X# Whom: Warren Toomey X# X# $Id$ X# X XDISTNAME= pktsuckers1_2 XPKGNAME= pktsuckers-1.2 XCATEGORIES= security net XMASTER_SITES= ftp://minnie.cs.adfa.edu.au/pub/NetSecurity/ X XMAINTAINER= wkt@cs.adfa.edu.au X X.include END-of-pktsuckers/Makefile echo c - pktsuckers/pkg mkdir -p pktsuckers/pkg > /dev/null 2>&1 echo x - pktsuckers/pkg/COMMENT sed 's/^X//' >pktsuckers/pkg/COMMENT << 'END-of-pktsuckers/pkg/COMMENT' XLog contents of unwanted UDP packets and TCP connections END-of-pktsuckers/pkg/COMMENT echo x - pktsuckers/pkg/DESCR sed 's/^X//' >pktsuckers/pkg/DESCR << 'END-of-pktsuckers/pkg/DESCR' XThe two programs tcpsuck and udpsuck run out of the Inetd daemon on Xunused ports. They log the contents of packets or connections to these Xports. This allows you to read the contents of the network strobe Xattacks on your machine. It also slows the strobes down, as they think Xyou're actually running a service on several ports when you aren't. X XWarren Toomey, wkt@cs.adfa.edu.au END-of-pktsuckers/pkg/DESCR echo x - pktsuckers/pkg/PLIST sed 's/^X//' >pktsuckers/pkg/PLIST << 'END-of-pktsuckers/pkg/PLIST' Xlibexec/tcpsuck Xlibexec/udpsuck END-of-pktsuckers/pkg/PLIST echo c - pktsuckers/files mkdir -p pktsuckers/files > /dev/null 2>&1 echo x - pktsuckers/files/md5 sed 's/^X//' >pktsuckers/files/md5 << 'END-of-pktsuckers/files/md5' XMD5 (pktsuckers1_2.tar.gz) = 5b6878f7d8b81020ab2f61d4af41eac1 END-of-pktsuckers/files/md5 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 Mon May 31 22:28:23 1999 Delivered-To: freebsd-ports@freebsd.org Received: from pop3-3.enteract.com (pop3-3.enteract.com [207.229.143.32]) by hub.freebsd.org (Postfix) with SMTP id 8F48A1521A for ; Mon, 31 May 1999 22:28:13 -0700 (PDT) (envelope-from dscheidt@enteract.com) Received: (qmail 57848 invoked from network); 1 Jun 1999 05:28:11 -0000 Received: from shell-3.enteract.com (dscheidt@207.229.143.42) by pop3-3.enteract.com with SMTP; 1 Jun 1999 05:28:11 -0000 Received: from localhost (dscheidt@localhost) by shell-3.enteract.com (8.9.3/8.9.2) with SMTP id AAA06059; Tue, 1 Jun 1999 00:28:11 -0500 (CDT) (envelope-from dscheidt@enteract.com) X-Authentication-Warning: shell-3.enteract.com: dscheidt owned process doing -bs Date: Tue, 1 Jun 1999 00:28:11 -0500 (CDT) From: David Scheidt To: Eivind Eklund Cc: freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) In-Reply-To: <19990601071242.A58405@bitbox.follo.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 (CCs snipped) On Tue, 1 Jun 1999, Eivind Eklund wrote: > (3) Hit jkh with a baseball bat until he stops refusing to use soft > updates on the boot floppy during install (due to "making a point") What exactly is the point? We clearly wouldn't be distributing a kernel withoutthe whole sources, so I wouldn't think we would be violating the license. In any event, the -CURRENT /usr/src/sys/ufs/ffs/README.softupdates has a change sugesting that one do something likea "tunefs -n enable /usr " -STABlE still says tunefs -n enable /dev/rsd0s1d. Any reason for this? David To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 22:42:34 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.yes.no (ns1.yes.no [195.204.136.10]) by hub.freebsd.org (Postfix) with ESMTP id 2D2FC155DA; Mon, 31 May 1999 22:42:28 -0700 (PDT) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [195.204.143.218]) by ns1.yes.no (8.9.1a/8.9.1) with ESMTP id HAA18313; Tue, 1 Jun 1999 07:42:27 +0200 (CEST) Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id HAA59777; Tue, 1 Jun 1999 07:42:27 +0200 (MET DST) Date: Tue, 1 Jun 1999 07:42:27 +0200 From: Eivind Eklund To: David Scheidt Cc: freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) Message-ID: <19990601074227.B58405@bitbox.follo.net> References: <19990601071242.A58405@bitbox.follo.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.1i In-Reply-To: ; from David Scheidt on Tue, Jun 01, 1999 at 12:28:11AM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Jun 01, 1999 at 12:28:11AM -0500, David Scheidt wrote: > On Tue, 1 Jun 1999, Eivind Eklund wrote: > > > (3) Hit jkh with a baseball bat until he stops refusing to use soft > > updates on the boot floppy during install (due to "making a point") > > What exactly is the point? We clearly wouldn't be distributing a > kernel withoutthe whole sources, so I wouldn't think we would be > violating the license. The point that FreeBSD won't willingly be using restricted source code as a part of our distribution mechanism, I think. It seems to be within the license, and anyway I believe that Kirk would be willing to grant us an exception for using it on the boot floppy if it wasn't. Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon May 31 23:33:13 1999 Delivered-To: freebsd-ports@freebsd.org Received: from zabagek.ihf.rwth-aachen.de (zabagek.ihf.RWTH-Aachen.DE [134.130.90.60]) by hub.freebsd.org (Postfix) with ESMTP id 0036E14BE7 for ; Mon, 31 May 1999 23:33:09 -0700 (PDT) (envelope-from tg@zabagek.ihf.rwth-aachen.de) Received: (from tg@localhost) by zabagek.ihf.rwth-aachen.de (8.9.3/8.9.2) id IAA06257; Tue, 1 Jun 1999 08:32:04 +0200 (CEST) (envelope-from tg) To: Robert Withrow Cc: Taavi Talvik , Rasmus Kaj , dlombardo@excite.com, freebsd-ports@FreeBSD.ORG Subject: Re: a two-level port system? References: <199905312210.SAA29830@spooky.rwwa.com> Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII From: Thomas Gellekum Date: 01 Jun 1999 08:32:03 +0200 In-Reply-To: Robert Withrow's message of "Mon, 31 May 1999 18:10:37 -0400" Message-ID: Lines: 11 X-Mailer: Gnus v5.6.34/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Robert Withrow writes: > Another thing I'd like to see would be to have the "fetch" target look > in another place after /usr/ports/distfiles and before trying to do > a ftp. That way I could mount the cdrom and the port system would look > there before doing the ftp. It already looks for /cdrom/ports/distfiles and prepends this path to $MASTER_SITES. tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 2:58: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from gizmo.internode.com.au (gizmo.internode.com.au [192.83.231.115]) by hub.freebsd.org (Postfix) with ESMTP id 9C8EB14D97; Tue, 1 Jun 1999 02:58:04 -0700 (PDT) (envelope-from newton@gizmo.internode.com.au) Received: (from newton@localhost) by gizmo.internode.com.au (8.9.3/8.9.3) id TAA29540; Tue, 1 Jun 1999 19:26:19 +0930 (CST) (envelope-from newton) From: Mark Newton Message-Id: <199906010956.TAA29540@gizmo.internode.com.au> Subject: Re: a two-level port system? To: alex@cichlids.com (Alexander Langer) Date: Tue, 1 Jun 1999 19:26:18 +0930 (CST) Cc: newton@internode.com.au, akm@mail.theinternet.com.au, eivind@FreeBSD.ORG, abial@webgiro.com, taavi@uninet.ee, kaj@raditex.se, freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG In-Reply-To: <19990531200328.A12484@cichlids.cichlids.com> from "Alexander Langer" at May 31, 99 08:03:28 pm X-Mailer: ELM [version 2.4 PL25] 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 Alexander Langer wrote: > Thus spake Mark Newton (newton@internode.com.au): > > but for most people who just want to build a handful of ports, > > browse the tree to see if there's anything cool they want, and > > then forget the ports tree 'til the next upgrade, it'll cut > > How do you want to find out if the port fits your needs without a > DESCR file? /usr/ports/INDEX ? - mark ---- Mark Newton Email: newton@internode.com.au (W) Network Engineer Email: newton@atdot.dotat.org (H) Internode Systems Pty Ltd Desk: +61-8-82232999 "Network Man" - Anagram of "Mark Newton" Mobile: +61-416-202-223 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 3:17: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from gizmo.internode.com.au (gizmo.internode.com.au [192.83.231.115]) by hub.freebsd.org (Postfix) with ESMTP id DF31B14E4C; Tue, 1 Jun 1999 03:17:05 -0700 (PDT) (envelope-from newton@gizmo.internode.com.au) Received: (from newton@localhost) by gizmo.internode.com.au (8.9.3/8.9.3) id TAA30081; Tue, 1 Jun 1999 19:45:44 +0930 (CST) (envelope-from newton) From: Mark Newton Message-Id: <199906011015.TAA30081@gizmo.internode.com.au> Subject: Re: a two-level port system? To: alex@cichlids.com (Alexander Langer) Date: Tue, 1 Jun 1999 19:45:44 +0930 (CST) Cc: newton@internode.com.au, akm@mail.theinternet.com.au, eivind@FreeBSD.ORG, abial@webgiro.com, taavi@uninet.ee, kaj@raditex.se, freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG In-Reply-To: <19990601121027.A16920@cichlids.cichlids.com> from "Alexander Langer" at Jun 1, 99 12:10:27 pm X-Mailer: ELM [version 2.4 PL25] 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 Alexander Langer wrote: > Thus spake Mark Newton (newton@internode.com.au): > > > DESCR file? > > /usr/ports/INDEX ? > > Isn't the DESCR much more detailed than this INDEX file? > (compare mail/mutt/pkg/DESCR and the INDEX file) Use INDEX to work out whether the package *might* be appropriate, and use something like "make buildenv" to grab the DESCR file (and everything else) if you think it's useful to do so. I think most novices probably don't even know the DESCR file exists anyway. - mark ---- Mark Newton Email: newton@internode.com.au (W) Network Engineer Email: newton@atdot.dotat.org (H) Internode Systems Pty Ltd Desk: +61-8-82232999 "Network Man" - Anagram of "Mark Newton" Mobile: +61-416-202-223 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 3:17:34 1999 Delivered-To: freebsd-ports@freebsd.org Received: from neutron.cichlids.com (as5-009.rp-plus.de [149.221.239.73]) by hub.freebsd.org (Postfix) with ESMTP id E977E15712; Tue, 1 Jun 1999 03:17:24 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (8.9.3/8.9.3) with ESMTP id MAA84751; Tue, 1 Jun 1999 12:10:33 +0200 (CEST) (envelope-from alex@cichlids.com) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id MAA16951; Tue, 1 Jun 1999 12:10:28 +0200 (CEST) (envelope-from alex) From: Alexander Langer Date: Tue, 1 Jun 1999 12:10:27 +0200 To: Mark Newton Cc: akm@mail.theinternet.com.au, eivind@FreeBSD.ORG, abial@webgiro.com, taavi@uninet.ee, kaj@raditex.se, freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: a two-level port system? Message-ID: <19990601121027.A16920@cichlids.cichlids.com> References: <19990531200328.A12484@cichlids.cichlids.com> <199906010956.TAA29540@gizmo.internode.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: <199906010956.TAA29540@gizmo.internode.com.au> X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Mark Newton (newton@internode.com.au): > > DESCR file? > /usr/ports/INDEX ? Isn't the DESCR much more detailed than this INDEX file? (compare mail/mutt/pkg/DESCR and the INDEX file) Alex -- ************** I doubt, therefore I might be. ************** *** Send email to to get PGP-Key *** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 5:22:53 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C9C4C15668; Tue, 1 Jun 1999 05:22:52 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA72219; Tue, 1 Jun 1999 05:22:52 -0700 (PDT) (envelope-from tg@FreeBSD.org) Date: Tue, 1 Jun 1999 05:22:52 -0700 (PDT) From: Message-Id: <199906011222.FAA72219@freefall.freebsd.org> To: pfgiffun@bachue.usc.unal.edu.co, tg@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11932: New port: Visual toolkit (VTK) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: Visual toolkit (VTK) State-Changed-From-To: open->closed State-Changed-By: tg State-Changed-When: Tue Jun 1 05:21:42 PDT 1999 State-Changed-Why: Committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 5:35:18 1999 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 1E29715673; Tue, 1 Jun 1999 05:35:01 -0700 (PDT) (envelope-from adam@algroup.co.uk) Received: from algroup.co.uk ([192.168.192.1]) by eastwood.aldigital.algroup.co.uk (8.8.8/8.6.12) with ESMTP id MAA09021; Tue, 1 Jun 1999 12:34:01 GMT Message-ID: <3753D335.A63EA688@algroup.co.uk> Date: Tue, 01 Jun 1999 13:33:57 +0100 From: Adam Laurie X-Mailer: Mozilla 4.05 [en] (WinNT; I) MIME-Version: 1.0 To: "James E. Housley" Cc: hetzels@westbent.net, rse@engelschall.com, dirk@freebsd.org, ache@freebsd.org, ports@freebsd.org, Adam Laurie Subject: Re: apache 1.3.x-{what ever} References: <37517D80.26D30168@frenchknot.ne.mediaone.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org James E. Housley wrote: > > I was trying to upgrade/switch from apache13-modssl to apache13-fp to > experiment with fp. I was done playing with ssl for the moment. The > problem/annoyance I came across is that they don't use the same data > directory by default. And it was very difficult to force fp to use the > ${PREFIX}/share/apache directory that -modssl was using. > > apache13-fp/Makefile: --datadir=${PREFIX}/www \ > apache13-modssl/Makefile: --datadir=${PREFIX}/share/apache > \ > apache13-php3/Makefile: --datadir=${PREFIX}/share/apache \ > apache13-ssl/Makefile: --datadir=${PREFIX}/www \ > apache13/Makefile: --datadir=${PREFIX}/www \ > > There seems to be two distict camps. It might be benificial to decide > on one of the two locations. Just my opinion. My own preference would be for the ports to do the same thing as the underlying package would have done, given no arguments to "make install". However, for hysterical reasons, I'm maintaining the layout that I inherited when I took over the port... But I agree - it would be nice if these were unified. cheers, Adam -- Adam Laurie Tel: +44 (181) 742 0755 A.L. Digital Ltd. Fax: +44 (181) 742 5995 Voysey House 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 Tue Jun 1 5:39:41 1999 Delivered-To: freebsd-ports@freebsd.org Received: from rucus.ru.ac.za (rucus.ru.ac.za [146.231.29.2]) by hub.freebsd.org (Postfix) with SMTP id CF65515668 for ; Tue, 1 Jun 1999 05:39:05 -0700 (PDT) (envelope-from nbm@rucus.ru.ac.za) Received: (qmail 19780 invoked by uid 1003); 1 Jun 1999 12:40:00 -0000 Date: Tue, 1 Jun 1999 14:40:00 +0200 From: Neil Blakey-Milner To: freebsd-ports@FreeBSD.ORG Subject: Something a bit different (Re: a two-level port system?) Message-ID: <19990601144000.A13903@rucus.ru.ac.za> References: <374D5E48.15A2D82B@excite.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.1i In-Reply-To: <374D5E48.15A2D82B@excite.com>; from Dean Lombardo on Thu, May 27, 1999 at 04:01:28PM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi On a weird thought, I made my /etc/make.conf set DIRSTDIR to /usr/ports/distfiles/${CATEGORIES} (not really, I had to tell it to use only the first value) Anyone think that it's a good idea? Would make it a lot easier to handle /usr/ports/distfiles, which gets quite alarming on some boxen, and w.r.t. ftp sites. Crossover might be painful, though. In any case, just an idea. Neil -- Neil Blakey-Milner nbm@rucus.ru.ac.za To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 6:13:45 1999 Delivered-To: freebsd-ports@freebsd.org Received: from neutron.cichlids.com (as5-004.rp-plus.de [149.221.239.68]) by hub.freebsd.org (Postfix) with ESMTP id 69A81150F5; Tue, 1 Jun 1999 06:13:38 -0700 (PDT) (envelope-from alex@cichlids.com) Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (8.9.3/8.9.3) with ESMTP id NAA85064; Tue, 1 Jun 1999 13:26:20 +0200 (CEST) (envelope-from alex@cichlids.com) Received: (from alex@localhost) by cichlids.cichlids.com (8.9.3/8.9.3) id NAA17537; Tue, 1 Jun 1999 13:26:15 +0200 (CEST) (envelope-from alex) From: Alexander Langer Date: Tue, 1 Jun 1999 13:26:15 +0200 To: Mark Newton Cc: akm@mail.theinternet.com.au, eivind@FreeBSD.ORG, abial@webgiro.com, taavi@uninet.ee, kaj@raditex.se, freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: a two-level port system? Message-ID: <19990601132615.A17505@cichlids.cichlids.com> References: <19990601121027.A16920@cichlids.cichlids.com> <199906011015.TAA30081@gizmo.internode.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: <199906011015.TAA30081@gizmo.internode.com.au> X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Mark Newton (newton@internode.com.au): > I think most novices probably don't even know the DESCR file > exists anyway. Exactly, when I was new I used lynx and the included .html-files for each package to find out what it is. Ok. if you can remove the buildenv-stuff when the package is not that what you want, this might be ok. But you should then have a build-env-distfile dir, because I often reinstall a port after a while i've not used it, and so the distfiles often are still there. If you have no buildenv-distfile-directory, you need a connection to the internet to build it :( Alex -- ************** I doubt, therefore I might be. ************** *** Send email to to get PGP-Key *** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 6:50:37 1999 Delivered-To: freebsd-ports@freebsd.org Received: from bsd.mbp.ee (bsd.mbp.ee [194.204.12.74]) by hub.freebsd.org (Postfix) with ESMTP id E3ABD15738 for ; Tue, 1 Jun 1999 06:50:30 -0700 (PDT) (envelope-from mauri@aripaev.ee) Received: from lant.mbp.ee (lant.mbp.ee [194.204.12.41]) by bsd.mbp.ee (8.9.3/8.9.3) with ESMTP id QAA97903; Tue, 1 Jun 1999 16:49:58 +0300 (EEST) (envelope-from mauri@aripaev.ee) Received: by lant.mbp.ee with Internet Mail Service (5.5.2232.9) id ; Tue, 1 Jun 1999 16:50:48 +0300 Message-ID: <554419C71610D211B3F808003636280213B0AC@lant.mbp.ee> From: Lauri Laupmaa To: "'Tim Vanderhoek'" Cc: "'ports@freebsd.org'" Subject: RE: /usr/local/etc/rc.d script sequence Date: Tue, 1 Jun 1999 16:50:47 +0300 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2232.9) Content-Type: text/plain; charset="windows-1252" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > -----Original Message----- > From: Tim Vanderhoek [mailto:vanderh@ecf.utoronto.ca] > Sent: Monday, May 31, 1999 3:01 PM > To: Lauri Laupmaa > > Wouldn't it be good if there were some rules as how ports > name their startup > > scripts ? > > Such as .... > > Maybe the simplest solution is to handle them on a case-by-case basis > (ie. send-pr a patch to change the mysql port)? Also quite a simple one is to prefix (i.e. 50.m3.sh) all scripts which modify ldconfig path. _____________ Lauri Laupmaa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 7:20:40 1999 Delivered-To: freebsd-ports@freebsd.org Received: from y.ml.org (unknown [204.254.69.29]) by hub.freebsd.org (Postfix) with ESMTP id 46E4214EDF for ; Tue, 1 Jun 1999 07:20:35 -0700 (PDT) (envelope-from j@y.ml.org) Received: (from j@localhost) by y.ml.org (8.9.3-Y/8.9.3) id HAA17270; Tue, 1 Jun 1999 07:20:15 -0700 (PDT) (envelope-from j) Date: Tue, 1 Jun 1999 07:20:09 -0700 From: "J. Heinrich" To: Chuck Robey Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Making egcs the default for building ports Message-ID: <19990601072007.A17233@y.ml.org> References: <19990531121511.A15449@y.ml.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.5i In-Reply-To: ; from Chuck Robey on Mon, May 31, 1999 at 04:01:26PM -0400 Organization: none X-Operating-System: NetBSD 1.3 i386 X-Hardware: Compaq 386/20 (12/540) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, May 31, 1999 at 04:01:26PM -0400, Chuck Robey wrote: > Most often, you can do: > > setenv CC (path to your egcs compiler) > setenv CXX (path to your egcs C++ compiler) But I'd have to remember to do this every time. I suppose I could set these in /etc/make.conf, but that's a wider scope than the ports tree. Could I set these in one of the bsd.port.*.mk files in /usr/ports/Mk? Are CC & CXX the only vars that need to be set? > You can do other things, like sticking > /usr/local/bin in your path ahead of /usr/bin, but I sure don't like > that. Me neither. > ----------------------------+----------------------------------------------- > Chuck Robey | Interests include any kind of voice or data > chuckr@picnic.mat.net | communications topic, C programming, and Unix. > 213 Lakeside Drive Apt T-1 | > Greenbelt, MD 20770 | I run picnic (FreeBSD-current) > (301) 220-2114 | and jaunt (Solaris7). > ----------------------------+----------------------------------------------- -- jh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 7:26: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from hp9000.chc-chimes.com (hp9000.chc-chimes.com [206.67.97.84]) by hub.freebsd.org (Postfix) with ESMTP id 6230014F1A; Tue, 1 Jun 1999 07:25:58 -0700 (PDT) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA008981758; Tue, 1 Jun 1999 06:09:18 -0400 Date: Tue, 1 Jun 1999 06:09:18 -0400 (EDT) From: Bill Fumerola To: Max Khon Cc: Satoshi - Ports Wraith - Asami , mladavac@metropolitan.at, luigi@labinfo.iet.unipi.it, freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) 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 On Tue, 1 Jun 1999, Max Khon wrote: > I have very (VERY!) bad link to anoncvs.freebsd.org. are there other > anoncvs servers? Not to my knowledge, though FreeBSD.org has a few co-located machines, I'm sure one could run an anoncvs mirror. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.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 Tue Jun 1 7:26:39 1999 Delivered-To: freebsd-ports@freebsd.org Received: from hp9000.chc-chimes.com (hp9000.chc-chimes.com [206.67.97.84]) by hub.freebsd.org (Postfix) with ESMTP id 27B83157B4; Tue, 1 Jun 1999 07:26:25 -0700 (PDT) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA010781969; Tue, 1 Jun 1999 06:12:49 -0400 Date: Tue, 1 Jun 1999 06:12:49 -0400 (EDT) From: Bill Fumerola To: Eivind Eklund Cc: Luigi Rizzo , Satoshi - Ports Wraith - Asami , mladavac@metropolitan.at, freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) In-Reply-To: <19990601071242.A58405@bitbox.follo.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 Tue, 1 Jun 1999, Eivind Eklund wrote: > There are a number of solutions available: > (1) Change 'make release' to scan the ports collection and create an > mtree file beforehand; apply the mtree file before extracting the > collection. This will make the inode layout more efficient. I think this is a very realistic, easy thing to do. Maybe I'll work on a patch.. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.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 Tue Jun 1 7:50:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A5D9715721 for ; Tue, 1 Jun 1999 07:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA50640; Tue, 1 Jun 1999 07:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sprite.netlab.is.tsukuba.ac.jp (sprite.netlab.is.tsukuba.ac.jp [130.158.85.10]) by hub.freebsd.org (Postfix) with SMTP id 9891A15029 for ; Tue, 1 Jun 1999 07:44:35 -0700 (PDT) (envelope-from one@netlab.is.tsukuba.ac.jp) Received: (qmail 63586 invoked by uid 2402); 1 Jun 1999 14:44:06 -0000 Message-Id: <19990601144406.63585.qmail@sprite.netlab.is.tsukuba.ac.jp> Date: 1 Jun 1999 23:44:06 +0900 From: one@netlab.is.tsukuba.ac.jp Reply-To: one@netlab.is.tsukuba.ac.jp To: FreeBSD-gnats-submit@freebsd.org, one@netlab.is.tsukuba.ac.jp X-Send-Pr-Version: 3.2 Subject: ports/11976: graphics/tgif-nls to 4.1.15 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11976 >Category: ports >Synopsis: graphics/tgif-nls to 4.1.15 >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 Jun 1 07:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Hajime Tanno >Release: FreeBSD 3.1-RELEASE i386 >Organization: Computer Networks Lab., Univ. of Tsukuba >Environment: FreeBSD 3.1-RELEASE i386 >Description: based Tgif's version from 4.1.14 to 4.1.15. old version patch-ad contains $Header:*$ line. so when I make new patch-ad, add "-1" option to diff command. >How-To-Repeat: >Fix: Here's a patch to the port. diff -urN tgif-nls/Makefile tgif-nls.new/Makefile --- tgif-nls/Makefile Tue Jun 1 23:07:21 1999 +++ tgif-nls.new/Makefile Tue Jun 1 23:09:03 1999 @@ -6,8 +6,8 @@ # $Id: Makefile,v 1.3 1999/05/29 04:39:26 steve Exp $ # -DISTNAME= tgif-4.1.14 -PKGNAME= tgif-nls-4.1.14 +DISTNAME= tgif-4.1.15 +PKGNAME= tgif-nls-4.1.15 CATEGORIES= graphics MASTER_SITES= ftp://bourbon.cs.umd.edu/pub/tgif/ \ ftp://ftp.cs.ucla.edu/pub/tgif/ @@ -18,19 +18,13 @@ RUN_DEPENDS= giftopnm:${PORTSDIR}/graphics/netpbm USE_IMAKE= yes +XMKMF= LOCALBASE=${LOCALBASE} xmkmf -a + MAN1= tgif.1 -post-extract: +pre-patch: @cd ${WRKSRC}; ${RM} -f Tgif.tmpl; \ - ${SED} -e "s#/usr/share/locale#${PREFIX}/share/locale#" \ - Tgif.tmpl-freebsd > Tgif.tmpl; \ - ${ECHO} "EXTRA_INCLUDES += -I${LOCALBASE}/include" \ - >> Tgif.tmpl; \ - ${ECHO} "EXTRA_LIBRARIES += -L${LOCALBASE}/lib -lintl" \ - >> Tgif.tmpl; \ - ${MV} po/Po.tmpl po/Po.tmpl.orig; \ - ${SED} -e "s#/usr/share/locale#${PREFIX}/share/locale#" \ - po/Po.tmpl.orig > po/Po.tmpl; \ + ${CP} Tgif.tmpl-freebsd Tgif.tmpl post-patch: @cd ${WRKSRC}; \ diff -urN tgif-nls/files/md5 tgif-nls.new/files/md5 --- tgif-nls/files/md5 Tue Jun 1 23:07:21 1999 +++ tgif-nls.new/files/md5 Sun May 30 05:41:28 1999 @@ -1 +1 @@ -MD5 (tgif-4.1.14.tar.gz) = aff6c3dbb7d854bd69409ffc403c6b15 +MD5 (tgif-4.1.15.tar.gz) = 3656598fe1f7963ba581fd9c821da6e5 diff -urN tgif-nls/patches/patch-aa tgif-nls.new/patches/patch-aa --- tgif-nls/patches/patch-aa Tue Jun 1 23:07:21 1999 +++ tgif-nls.new/patches/patch-aa Sun May 30 05:42:30 1999 @@ -1,11 +1,11 @@ ---- tgif.man.orig Wed May 26 01:19:41 1999 -+++ tgif.man Wed May 26 01:20:08 1999 +--- tgif.man.orig Sun May 30 05:28:59 1999 ++++ tgif.man Sun May 30 05:29:12 1999 @@ -8,7 +8,7 @@ .\" .\" .\" --.TH tgif n "Version 4.1 Patchlevel 10 and Above" "Tgif" -+.TH tgif 1L "Version 4.1 Patchlevel 10 and Above" "Tgif" +-.TH tgif n "Version 4.1 Patchlevel 15 and Above" "Tgif" ++.TH tgif 1L "Version 4.1 Patchlevel 15 and Above" "Tgif" .\" .SH NAME .\" diff -urN tgif-nls/patches/patch-ab tgif-nls.new/patches/patch-ab --- tgif-nls/patches/patch-ab Tue Jun 1 23:07:21 1999 +++ tgif-nls.new/patches/patch-ab Sun May 30 05:42:32 1999 @@ -1,5 +1,5 @@ ---- Tgif.tmpl.orig Wed May 26 01:34:43 1999 -+++ Tgif.tmpl Wed May 26 01:39:52 1999 +--- Tgif.tmpl.orig Sun May 30 05:32:54 1999 ++++ Tgif.tmpl Sun May 30 05:33:12 1999 @@ -41,6 +41,15 @@ XIMPDEFINES = #endif @@ -16,7 +16,16 @@ PROGRAMS = tgif XCOMM prtgif frontend11.o testdrive XCOMM CDEBUGFLAGS= -g -Wall XCOMM INSTPGMFLAGS= -s -@@ -58,16 +67,16 @@ +@@ -48,7 +57,7 @@ + XCOMM MANPATH = /u/halfmoon/man + XCOMM TGIFDIR = /u/halfmoon/lib/X11/tgif + TGIFDIR = $(LIBDIR)/tgif +-LOCALEDIR = /usr/share/locale ++LOCALEDIR = $(PREFIX)/share/locale + DIRDEFINES = -DTGIF_PATH=\"$(TGIFDIR)\" -DPSFILE_MOD=0664 \@@\ + -DLOCALEDIR=\"$(LOCALEDIR)\" \@@\ + -DTELEPORT_ATTR=\"warp_to=\" -DTMP_DIR=\"/tmp/\" \@@\ +@@ -58,14 +67,16 @@ -DOBJ_FILE_EXT=\"obj\" -DSYM_FILE_EXT=\"sym\" \@@\ -DTEXT_FILE_EXT=\"txt\" -DPIN_FILE_EXT=\"pin\" MISCDEFINES = -D_BACKGROUND_DONT_FORK -D_USE_XDRAWPOINT_TO_PUT_A_POINT @@ -35,5 +44,15 @@ XCOMM SYS_LIBRARIES = -ldl -lm -SYS_LIBRARIES = -lm +SYS_LIBRARIES = -lm -lcompat - EXTRA_INCLUDES += -I/usr/local/include - EXTRA_LIBRARIES += -L/usr/local/lib -lintl ++EXTRA_INCLUDES += -I$(LOCALBASE)/include ++EXTRA_LIBRARIES += -L$(LOCALBASE)/lib -lintl + +--- po/Po.tmpl.orig Sun Apr 4 03:27:53 1999 ++++ po/Po.tmpl Sun May 30 05:33:12 1999 +@@ -8,5 +8,5 @@ + MKINSTALLDIRS = install -d + + DESTDIR = +-SYSNLSDIR = /usr/share/locale ++SYSNLSDIR = $(PREFIX)/share/locale + NLSDIR = $(DESTDIR)$(SYSNLSDIR) diff -urN tgif-nls/patches/patch-ad tgif-nls.new/patches/patch-ad --- tgif-nls/patches/patch-ad Tue Jun 1 23:07:21 1999 +++ tgif-nls.new/patches/patch-ad Tue Jun 1 05:19:44 1999 @@ -1,8 +1,6 @@ ---- tgif.Xdefaults.orig Wed May 26 01:25:03 1999 -+++ tgif.Xdefaults Wed May 26 01:27:33 1999 -@@ -8,12 +8,12 @@ - ! - ! @(#)$Header: /home/ncvs/ports/graphics/tgif-nls/patches/patch-ad,v 1.2 1999/05/29 04:39:37 steve Exp $ +--- tgif.Xdefaults.orig Sat May 29 02:57:56 1999 ++++ tgif.Xdefaults Sun May 30 05:37:26 1999 +@@ -11,8 +11,8 @@ ! -Tgif.Geometry: 640x512-40+20 -Tgif.IconGeometry: -224+82 @@ -17,65 +15,37 @@ +!Tgif.BorderColor: Aquamarine +!Tgif.ReverseVideo: on ! - Tgif.InitialFont: Times - !Tgif.InitialFont: Courier -@@ -27,7 +27,7 @@ - !Tgif.InitialFontStyle: BoldItalic - ! +@@ -30,3 +30,3 @@ !Tgif.InitialFontJust: Left -Tgif.InitialFontJust: Center +!Tgif.InitialFontJust: Center !Tgif.InitialFontJust: Right - ! - ! The next 3 are obsoleted -@@ -40,7 +40,7 @@ - Tgif.RulerFontSize: 10 - Tgif.DefaultFontSize: 14 +@@ -43,3 +43,3 @@ ! -Tgif.FontSizes: 8 10 11 12 14 17 18 20 24 25 34 +Tgif.FontSizes: 8 9 10 11 12 13 14 15 16 17 18 20 24 32 34 36 40 44 60 70 100 200 250 300 Tgif.AdditionalFonts: \n\ - lucidabright-medium-r-normal,iso8859-1,ZapfChancery-MediumItalic\n\ - lucidabright-demibold-r-normal,iso8859-1,ZapfChancery-MediumItalic\n\ -@@ -83,7 +83,7 @@ - Tgif.DrawCursor: arrow - Tgif.DragCursor: hand2 +@@ -86,3 +86,3 @@ Tgif.VertexCursor: dotbox -Tgif.RubberBandColor: Aquamarine +!Tgif.RubberBandColor: Aquamarine ! - Tgif.MaxColors: 11 - Tgif.Color0: magenta -@@ -97,7 +97,7 @@ - Tgif.Color8: white - Tgif.Color9: black +@@ -100,3 +100,3 @@ Tgif.Color10: DarkSlateGray -Tgif.DefaultColorIndex: 0 +Tgif.DefaultColorIndex: 9 ! - Tgif.ShortCuts: !A:SelectAll() \n\ - !U:Undo() \n\ -@@ -329,7 +329,7 @@ - Tgif.XpmDeckToGifAnim: gifsicle -lforever --delay 10 - !Tgif.XpmDeckToGifAnim: whirlgif -loop -time 10 +@@ -332,3 +332,3 @@ Tgif.GifAnimExplode: gifsicle -eU -Tgif.Btn3PopupModeMenu: false +Tgif.Btn3PopupModeMenu: true Tgif.ScriptFraction: 0.6 - Tgif.DeleteNextCharWithDelKey: true - ! -@@ -370,7 +370,7 @@ - Tgif.GBShowFontChar: \271\372 - Tgif.RyuminShowFontChar: \244\242 +@@ -373,3 +373,3 @@ Tgif.GothicBBBShowFontChar: \244\316 -Tgif.DoubleByteInputMethod: xcin +!Tgif.DoubleByteInputMethod: xcin !Tgif.DoubleByteInputMethod: chinput - !Tgif.DoubleByteInputMethod: kinput2 - !Tgif.DoubleByteInputMethod: xim -@@ -381,11 +381,11 @@ - ! Please note that the environment variables LANG and XMODIFIERS override the - ! Tgif.Lang and Tgif.Modifiers X defaults. +@@ -384,7 +384,7 @@ ! -Tgif.UseNKF: true -Tgif.CopyAndPasteJIS: true @@ -87,5 +57,3 @@ -Tgif.Lang: ja_JP.EUC +!Tgif.Lang: ja_JP.EUC !Tgif.Lang: ja_JP.ujis - !Tgif.Modifiers: false - !Tgif.ConvSelection: _JAPANESE_CONVERSION >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 Jun 1 8:30: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CCEBF15749 for ; Tue, 1 Jun 1999 08:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA57714; Tue, 1 Jun 1999 08:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3889F14C89; Tue, 1 Jun 1999 08:24:54 -0700 (PDT) Message-Id: <19990601152454.3889F14C89@hub.freebsd.org> Date: Tue, 1 Jun 1999 08:24:54 -0700 (PDT) From: aron@cs.rice.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11977: Eterm port is unable to access .Xauthority Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11977 >Category: ports >Synopsis: Eterm port is unable to access .Xauthority >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Jun 1 08:30:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Mohit Aron >Release: FreeBSD-3.2-RELEASE >Organization: Rice University >Environment: FreeBSD luzern.cs.rice.edu 3.2-RELEASE FreeBSD 3.2-RELEASE #2: Fri May 28 15:22:48 CDT 1999 aron@luzern.cs.rice.edu:/usr/src/sys/compile/LUZERN i386 >Description: The eterm-0.8.8 package supplied with FreeBSD-3.2-RELEASE is unable to my .Xauthority file. I mount my home directory using NFS that maps the "root" on my machine to "nobody" for accesses to my filesystem. Since Eterm runs as a setuid program, it has trouble reading my .Xauthority file. I exchanged a few emails with the developers of Eterm and it seems they already have support for this in the source. Apparently, the package needs to be compiled after defining HAVE_SAVED_UIDS in src/feature.h and NEED_LINUX_HACK in src/main.c. Can you please define the above so that Eterm is able to read NFS mounted .Xauthority files. >How-To-Repeat: Mount your home directory using NFS and use .Xauthority based X server authentication. Make sure that the NFS server maps "root" on your machine to "nobody" (or something else). Notice that while xterm works correctly, Eterm does not. >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 Tue Jun 1 13:20: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CE66215822 for ; Tue, 1 Jun 1999 13:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA86912; Tue, 1 Jun 1999 13:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from sepulchre.aldigital.co.uk (sepulchre.aldigital.co.uk [193.123.86.250]) by hub.freebsd.org (Postfix) with SMTP id 287D2157BA for ; Tue, 1 Jun 1999 13:18:03 -0700 (PDT) (envelope-from root@sepulchre.aldigital.co.uk) Received: (qmail 5084 invoked by uid 0); 1 Jun 1999 20:17:58 -0000 Message-Id: <19990601201758.5083.qmail@sepulchre.aldigital.co.uk> Date: 1 Jun 1999 20:17:58 -0000 From: adam@algroup.co.uk Reply-To: adam@algroup.co.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11983: apache-ssl port update (1.36+1.35) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11983 >Category: ports >Synopsis: apache-ssl port update (1.36+1.35) >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 Jun 1 13:20:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Adam Laurie >Release: FreeBSD current >Organization: apache-ssl.org >Environment: >Description: diff -ru --exclude=CVS apache13-ssl-previous/Makefile apache13-ssl/Makefile --- apache13-ssl-previous/Makefile Sat May 29 15:48:14 1999 +++ apache13-ssl/Makefile Tue Jun 1 19:53:12 1999 @@ -9,7 +9,7 @@ # $Id: Makefile,v 1.5 1999/04/07 19:03:38 addy Exp $ APACHE= 1.3.6 -APACHE-SSL= 1.32 +APACHE-SSL= 1.35 DISTNAME= apache_${APACHE} PKGNAME= apache-${APACHE}+ssl_${APACHE-SSL} @@ -29,6 +29,8 @@ ftp://ftp.infoscience.co.jp/pub/Crypto/SSL/Apache-SSL/Apache-SSL/ \ ftp://ftp.funet.fi/pub/crypt/mirrors/ftp.ox.ac.uk/SSL/Apache-SSL/ \ ftp://apache-ssl.raver.net/pub/ftp.apache-ssl.org/Apache-SSL/ \ + ftp://ftp.pca.dfn.de/pub/tools/net/sslapache/Apache-SSL/ \ + ftp://ftp.sekure.net/pub/apache-ssl/ \ http://mirror.aarnet.edu.au/www/servers/apache-ssl/ \ http://ftp.it.net.au/mirrors/crypto/SSL/Apache-SSL/ \ http://www.asap.cs.nott.ac.uk/SSL/ @@ -53,11 +55,7 @@ --suexec-docroot=${PREFIX}/www/data \ --proxycachedir=${PREFIX}/www/proxy \ --libexecdir=${PREFIX}/libexec/apache \ - --without-confadjust \ - --enable-shared=remain \ - --enable-module=most \ - --enable-module=auth_db \ - --disable-module=auth_dbm + --without-confadjust OPTIM=-DHARD_SERVER_LIMIT=512 \ -DDOCUMENT_LOCATION=\\"${PREFIX}/www/data/\\" \ diff -ru --exclude=CVS apache13-ssl-previous/files/md5 apache13-ssl/files/md5 --- apache13-ssl-previous/files/md5 Sat May 29 15:48:13 1999 +++ apache13-ssl/files/md5 Sat May 29 16:02:50 1999 @@ -1,2 +1,2 @@ MD5 (apache_1.3.6.tar.gz) = b4114ed78f296bfe424c4ba05dccc643 -MD5 (apache_1.3.6+ssl_1.32.tar.gz) = 28ab03ea49cd923ccac16275790f42e8 +MD5 (apache_1.3.6+ssl_1.35.tar.gz) = ecf16c247f02c41b2b2a3f84030b9dc5 Only in apache13-ssl-previous/patches: patch-aa diff -ru --exclude=CVS apache13-ssl-previous/pkg/PLIST apache13-ssl/pkg/PLIST --- apache13-ssl-previous/pkg/PLIST Sat May 29 15:48:13 1999 +++ apache13-ssl/pkg/PLIST Sat May 29 16:42:39 1999 @@ -39,23 +39,11 @@ include/apache/util_md5.h include/apache/util_script.h include/apache/util_uri.h -libexec/apache/libproxy.so -libexec/apache/mod_auth_anon.so -libexec/apache/mod_auth_db.so -libexec/apache/mod_cern_meta.so -libexec/apache/mod_digest.so -libexec/apache/mod_expires.so -libexec/apache/mod_headers.so -libexec/apache/mod_info.so -libexec/apache/mod_mime_magic.so -libexec/apache/mod_rewrite.so -libexec/apache/mod_speling.so -libexec/apache/mod_unique_id.so -libexec/apache/mod_usertrack.so sbin/ab -sbin/httpsdctl sbin/apxs +sbin/gcache sbin/httpsd +sbin/httpsdctl sbin/logresolve sbin/rotatelogs @exec mkdir -p %D/www >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 Tue Jun 1 13:31:40 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E9264157E5; Tue, 1 Jun 1999 13:31:38 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA87949; Tue, 1 Jun 1999 13:31:38 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Tue, 1 Jun 1999 13:31:38 -0700 (PDT) From: Message-Id: <199906012031.NAA87949@freefall.freebsd.org> To: wkt@henry.cs.adfa.edu.au, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11973: new port: security/pktsuckers Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: security/pktsuckers State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Tue Jun 1 13:31:25 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 14:15:27 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mta3.odn.ne.jp (mta3.odn.ne.jp [143.90.131.70]) by hub.freebsd.org (Postfix) with ESMTP id 5C3C214D27 for ; Tue, 1 Jun 1999 14:15:15 -0700 (PDT) (envelope-from okazaki@be.to) Received: from acidrain (TBTca-0316p45.ppp.odn.ad.jp [210.231.51.82]) by mta3.odn.ne.jp (8.8.8+2.7Wbeta7/3.6W/9808281335) with SMTP id GAA14175 for ; Wed, 2 Jun 1999 06:15:11 +0900 (JST) Received: (qmail 469 invoked from network); 1 Jun 1999 21:11:34 -0000 Received: from localhost (HELO acidrain.localnet) (127.0.0.1) by localhost with SMTP; 1 Jun 1999 21:11:34 -0000 Date: Wed, 02 Jun 1999 06:11:32 +0900 Message-ID: <14164.19588.713675.87812T@dolphin.be.to> From: OKAZAKI Tetsurou To: j@y.ml.org Cc: chuckr@picnic.mat.net, freebsd-ports@FreeBSD.ORG Subject: Re: Making egcs the default for building ports In-Reply-To: In your message of "Tue, 1 Jun 1999 07:20:09 -0700" <19990601072007.A17233@y.ml.org> References: <19990531121511.A15449@y.ml.org> <19990601072007.A17233@y.ml.org> User-Agent: Wanderlust/1.0.0 (Kokomo) SEMI/1.13.5 (=?ISO-8859-4?Q?Meih=F2?=) FLIM/1.12.6 (=?ISO-8859-4?Q?Family-K=F2enmae?=) Emacs/20.3 (i386--freebsd) MULE/4.0 (HANANOEN) Organization: Personal. MIME-Version: 1.0 (generated by SEMI 1.13.5 - =?ISO-8859-4?Q?=22Meih=F2=22?= ) Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, At Tue, 1 Jun 1999 07:20:09 -0700, J. Heinrich wrote: > > On Mon, May 31, 1999 at 04:01:26PM -0400, Chuck Robey wrote: > > > Most often, you can do: > > > > setenv CC (path to your egcs compiler) > > setenv CXX (path to your egcs C++ compiler) > > But I'd have to remember to do this every time. (snip) > Are CC & CXX the only vars that need to be set? > > > You can do other things, like sticking > > /usr/local/bin in your path ahead of /usr/bin, but I sure don't like > > that. > > Me neither. To specify egcs as the compiler for building ports on -STABLE, you can use egcc and eg++ instead of gcc and g++, for example: % make CC=egcc CXX=eg++ build though some ports may not respect ${CC} and ${CXX}. -- Tetsurou To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 18:57:27 1999 Delivered-To: freebsd-ports@freebsd.org Received: from picnic.mat.net (picnic.mat.net [206.246.122.133]) by hub.freebsd.org (Postfix) with ESMTP id 2F90315169 for ; Tue, 1 Jun 1999 18:57:22 -0700 (PDT) (envelope-from chuckr@picnic.mat.net) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.9.3/8.8.5) with ESMTP id VAA10028; Tue, 1 Jun 1999 21:57:02 -0400 (EDT) Date: Tue, 1 Jun 1999 21:57:02 -0400 (EDT) From: Chuck Robey To: "J. Heinrich" Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Making egcs the default for building ports In-Reply-To: <19990601072007.A17233@y.ml.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 Tue, 1 Jun 1999, J. Heinrich wrote: > On Mon, May 31, 1999 at 04:01:26PM -0400, Chuck Robey wrote: > > > Most often, you can do: > > > > setenv CC (path to your egcs compiler) > > setenv CXX (path to your egcs C++ compiler) > > But I'd have to remember to do this every time. certainly not. Either stick it in your .cshrc (or the equivalent startup file for your chosen shell) or (far better) make a shell script that changes your PATH variable, or resets your path variable back again. > > I suppose I could set these in /etc/make.conf, but that's a wider > scope than the ports tree. Could I set these in one of the > bsd.port.*.mk files in /usr/ports/Mk? NO don't do that, do the second option I list above. Call the script that sets /usr/local/bin first something like "set-egcs". You could reset your path as easily as "source .cshrc". > > Are CC & CXX the only vars that need to be set? Usually. > > > You can do other things, like sticking > > /usr/local/bin in your path ahead of /usr/bin, but I sure don't like > > that. > > Me neither. > > > ----------------------------+----------------------------------------------- > > Chuck Robey | Interests include any kind of voice or data > > chuckr@picnic.mat.net | communications topic, C programming, and Unix. > > 213 Lakeside Drive Apt T-1 | > > Greenbelt, MD 20770 | I run picnic (FreeBSD-current) > > (301) 220-2114 | and jaunt (Solaris7). > > ----------------------------+----------------------------------------------- > > -- > jh > > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@picnic.mat.net | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run picnic (FreeBSD-current) (301) 220-2114 | and jaunt (Solaris7). ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 19:50: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 481A614DE0 for ; Tue, 1 Jun 1999 19:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA29013; Tue, 1 Jun 1999 19:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Tue, 1 Jun 1999 19:50:02 -0700 (PDT) Message-Id: <199906020250.TAA29013@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Stephen Kiernan Subject: Re: ports/11880: Update port: wmmon Reply-To: Stephen Kiernan Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11880; it has been noted by GNATS. From: Stephen Kiernan To: Jun Kuriyama Cc: Cc: ; Subject: Re: ports/11880: Update port: wmmon Date: Tue, 1 Jun 1999 22:44:13 -0400 (EDT) > >Synopsis: Update port: wmmon Thanks. I saw your patches and it seems good for many FreeBSD versions! BTW, in your PR, you change MAINTAINER line of this port. Does current maintainer (Kris Kennaway) know this? I notified Kris via e-mail, but haven't heard anything back. I did the original patches (minus one that Kris did for the Makefiles to work in the ports collection) to make it work on 2.2.x and 3.0. -- Stephen Kiernan | FreeBSD ports-related e-mail: sk-ports@vegamuse.org kiernasj@connix.com | sab@vegamuse.org | FreeBSD -- Get it, use it! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 19:53:23 1999 Delivered-To: freebsd-ports@freebsd.org Received: from shell13.ba.best.com (shell13.ba.best.com [206.184.139.144]) by hub.freebsd.org (Postfix) with ESMTP id 097B8150D7 for ; Tue, 1 Jun 1999 19:53:21 -0700 (PDT) (envelope-from rone@ennui.org) Received: (from rone@localhost) by shell13.ba.best.com (8.9.3/8.9.2/best.sh) id TAA21651 for ports@freebsd.org; Tue, 1 Jun 1999 19:52:42 -0700 (PDT) From: "gil i. pollas" Message-Id: <199906020252.TAA21651@shell13.ba.best.com> Subject: Re: Making egcs the default for building ports In-Reply-To: from Chuck Robey at "Jun 1, 99 09:57:02 pm" To: ports@freebsd.org Date: Tue, 1 Jun 1999 19:52:42 -0700 (PDT) X-URL: http://ennui.org/rone/ X-Mailer: ELM [version 2.4ME+ PL38 (25)] 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 Chuck Robey writes: On Tue, 1 Jun 1999, J. Heinrich wrote: > On Mon, May 31, 1999 at 04:01:26PM -0400, Chuck Robey wrote: > > Most often, you can do: > > setenv CC (path to your egcs compiler) > > setenv CXX (path to your egcs C++ compiler) > But I'd have to remember to do this every time. certainly not. Either stick it in your .cshrc (or the equivalent startup file for your chosen shell) or (far better) make a shell script that changes your PATH variable, or resets your path variable back again. Unfortunately, that carries over when you want to build a kernel or world. Most of us probably don't want that. Maybe there should be a separate *CC variable that applies to the system build. Perhaps this should go to -stable? rone -- el mercado on the corner has grande bags of clues rilly cheapo. - Patrick J. Finerty To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 20:24:53 1999 Delivered-To: freebsd-ports@freebsd.org Received: from picnic.mat.net (picnic.mat.net [206.246.122.133]) by hub.freebsd.org (Postfix) with ESMTP id B1D4B15126 for ; Tue, 1 Jun 1999 20:24:13 -0700 (PDT) (envelope-from chuckr@picnic.mat.net) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.9.3/8.8.5) with ESMTP id XAA10696; Tue, 1 Jun 1999 23:21:42 -0400 (EDT) Date: Tue, 1 Jun 1999 23:21:42 -0400 (EDT) From: Chuck Robey To: "gil i. pollas" Cc: ports@FreeBSD.ORG Subject: Re: Making egcs the default for building ports In-Reply-To: <199906020252.TAA21651@shell13.ba.best.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 On Tue, 1 Jun 1999, gil i. pollas wrote: > Chuck Robey writes: > On Tue, 1 Jun 1999, J. Heinrich wrote: > > On Mon, May 31, 1999 at 04:01:26PM -0400, Chuck Robey wrote: > > > Most often, you can do: > > > setenv CC (path to your egcs compiler) > > > setenv CXX (path to your egcs C++ compiler) > > But I'd have to remember to do this every time. > certainly not. Either stick it in your .cshrc (or the equivalent > startup file for your chosen shell) or (far better) make a shell script > that changes your PATH variable, or resets your path variable back > again. > > Unfortunately, that carries over when you want to build a kernel or > world. Most of us probably don't want that. No it does not, you didn't read the whole paragraph. You make a shell script the changes it, and invoke the shell script to run your port compile. You then either source your shell startup file to reset your path, or if your shell startup isn't idempotent, then make another short shell script to reset your path, use it and then do your kernel build. Maybe there should be a > separate *CC variable that applies to the system build. Perhaps this > should go to -stable? > > rone > -- > el mercado on the corner has grande bags of clues rilly cheapo. > - Patrick J. Finerty > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@picnic.mat.net | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run picnic (FreeBSD-current) (301) 220-2114 | and jaunt (Solaris7). ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 20:48:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from shell13.ba.best.com (shell13.ba.best.com [206.184.139.144]) by hub.freebsd.org (Postfix) with ESMTP id 6E20614E22 for ; Tue, 1 Jun 1999 20:48:18 -0700 (PDT) (envelope-from rone@ennui.org) Received: (from rone@localhost) by shell13.ba.best.com (8.9.3/8.9.2/best.sh) id UAA01081 for ports@freebsd.org; Tue, 1 Jun 1999 20:48:11 -0700 (PDT) From: "gil i. pollas" Message-Id: <199906020348.UAA01081@shell13.ba.best.com> Subject: Re: Making egcs the default for building ports In-Reply-To: from Chuck Robey at "Jun 1, 99 11:21:42 pm" To: ports@freebsd.org Date: Tue, 1 Jun 1999 20:48:11 -0700 (PDT) X-URL: http://ennui.org/rone/ X-Mailer: ELM [version 2.4ME+ PL38 (25)] 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 Chuck Robey writes: On Tue, 1 Jun 1999, gil i. pollas wrote: > Chuck Robey writes: > On Tue, 1 Jun 1999, J. Heinrich wrote: > > On Mon, May 31, 1999 at 04:01:26PM -0400, Chuck Robey wrote: > > > Most often, you can do: > > > setenv CC (path to your egcs compiler) > > > setenv CXX (path to your egcs C++ compiler) > > But I'd have to remember to do this every time. > certainly not. Either stick it in your .cshrc (or the equivalent > startup file for your chosen shell) or (far better) make a shell script > that changes your PATH variable, or resets your path variable back > again. > Unfortunately, that carries over when you want to build a kernel or > world. Most of us probably don't want that. No it does not, you didn't read the whole paragraph. You make a shell script the changes it, and invoke the shell script to run your port compile. You then either source your shell startup file to reset your path, or if your shell startup isn't idempotent, then make another short shell script to reset your path, use it and then do your kernel build. That's cheesy. You might as well just setenv CC before you do a port build and unsetenv it when you're done. A SYSCC environment variable that applies to FreeBSD source would leave CC free for ports and other non-system compilations. The real question is, would this move have any drawbacks (or is it superfluous or pointless)? rone -- el mercado on the corner has grande bags of clues rilly cheapo. - Patrick J. Finerty To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 20:57:31 1999 Delivered-To: freebsd-ports@freebsd.org Received: from picnic.mat.net (picnic.mat.net [206.246.122.133]) by hub.freebsd.org (Postfix) with ESMTP id 61C5714E22 for ; Tue, 1 Jun 1999 20:57:25 -0700 (PDT) (envelope-from chuckr@picnic.mat.net) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.9.3/8.8.5) with ESMTP id XAA11703; Tue, 1 Jun 1999 23:57:03 -0400 (EDT) Date: Tue, 1 Jun 1999 23:57:03 -0400 (EDT) From: Chuck Robey To: "gil i. pollas" Cc: ports@FreeBSD.ORG Subject: Re: Making egcs the default for building ports In-Reply-To: <199906020348.UAA01081@shell13.ba.best.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 On Tue, 1 Jun 1999, gil i. pollas wrote: > Chuck Robey writes: > On Tue, 1 Jun 1999, gil i. pollas wrote: > > Chuck Robey writes: > > On Tue, 1 Jun 1999, J. Heinrich wrote: > > > On Mon, May 31, 1999 at 04:01:26PM -0400, Chuck Robey wrote: > > > > Most often, you can do: > > > > setenv CC (path to your egcs compiler) > > > > setenv CXX (path to your egcs C++ compiler) > > > But I'd have to remember to do this every time. > > certainly not. Either stick it in your .cshrc (or the equivalent > > startup file for your chosen shell) or (far better) make a shell script > > that changes your PATH variable, or resets your path variable back > > again. > > Unfortunately, that carries over when you want to build a kernel or > > world. Most of us probably don't want that. > No it does not, you didn't read the whole paragraph. You make a shell > script the changes it, and invoke the shell script to run your port > compile. You then either source your shell startup file to reset your > path, or if your shell startup isn't idempotent, then make another short > shell script to reset your path, use it and then do your kernel build. > > That's cheesy. You might as well just setenv CC before you do a port > build and unsetenv it when you're done. A SYSCC environment variable > that applies to FreeBSD source would leave CC free for ports and other > non-system compilations. The real question is, would this move have > any drawbacks (or is it superfluous or pointless)? Except that you don't have any control over what people use as the CC and CXX vars. FreeBSD isn't going to do that for you, and everyone else in the world won't either. It works, it's what many people use. If you think it's cheesy, come up with a better one. You could even do a complete chroot environment, with your path set the way you want, but it all comes down to the same thing. Have fun. That's not sarcastic, that's what this whole thing is supposed to be about, right? > > rone > -- > el mercado on the corner has grande bags of clues rilly cheapo. > - Patrick J. Finerty > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@picnic.mat.net | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run picnic (FreeBSD-current) (301) 220-2114 | and jaunt (Solaris7). ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 22:10: 2 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8824015870; Tue, 1 Jun 1999 22:09:41 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA38699; Tue, 1 Jun 1999 22:09:41 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Tue, 1 Jun 1999 22:09:41 -0700 (PDT) From: Message-Id: <199906020509.WAA38699@freefall.freebsd.org> To: cpiazza@home.net, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11971: update port: graphics/gview Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: graphics/gview State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Tue Jun 1 22:09:32 PDT 1999 State-Changed-Why: committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 22:26:57 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EB8F715857; Tue, 1 Jun 1999 22:26:49 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA39947; Tue, 1 Jun 1999 22:26:49 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Tue, 1 Jun 1999 22:26:49 -0700 (PDT) From: Message-Id: <199906020526.WAA39947@freefall.freebsd.org> To: cpiazza@home.net, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11970: update port: audio/aumix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: audio/aumix State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Tue Jun 1 22:26:34 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 23: 0:32 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 31E7615820 for ; Tue, 1 Jun 1999 23:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA42667; Tue, 1 Jun 1999 23:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.cc.ntnu.edu.tw (mail.cc.ntnu.edu.tw [140.122.65.51]) by hub.freebsd.org (Postfix) with ESMTP id 82DBB15179 for ; Tue, 1 Jun 1999 22:56:41 -0700 (PDT) (envelope-from clive@cartier.cirx.org) Received: from cartier.cirx.org (cartier.dorm1.ntnu.edu.tw [140.122.198.163]) by mail.cc.ntnu.edu.tw (8.9.1b+Sun/8.9.1) with ESMTP id NAA16541 for ; Wed, 2 Jun 1999 13:56:33 +0800 (CST) Received: (from clive@localhost) by cartier.cirx.org (8.9.3/8.9.3) id OAA35587; Wed, 2 Jun 1999 14:02:41 +0800 (CST) (envelope-from clive) Message-Id: <199906020602.OAA35587@cartier.cirx.org> Date: Wed, 2 Jun 1999 14:02:41 +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/11985: xc/3.3.3-3.3.3.1.diff.gz md5 error ? Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11985 >Category: ports >Synopsis: xc/3.3.3-3.3.3.1.diff.gz md5 error ? >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: Tue Jun 1 23:00:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Clive Lin >Release: FreeBSD 4.0-CURRENT i386 >Organization: CirX >Environment: FreeBSD cartier.cirx.org 4.0-CURRENT FreeBSD 4.0-CURRENT #3: Fri May 28 13:28:21 CST 1999 clive@cartier.cirx.org:/usr/src/sys/compile/CARTIER i386 >Description: It seems that an md5 error of xc/3.3.3-3.3.3.1.diff.gz. After I re-makesum, everyting also works well. The ports is build, and no noise remains. >How-To-Repeat: under /usr/ports/x11/XttXF86srv-[any X server], /usr/ports/x11/XFree86 while I try to install/build these ports, the system returned something like that: ===> Extracting for XFree86-3.3.3.1 >Fix: --- x11/XFree86/files/md5.orig Wed Jun 2 13:56:43 1999 +++ x11/XFree86/files/md5 Wed Jun 2 13:59:25 1999 @@ -1,4 +1,4 @@ MD5 (xc/X333src-1.tgz) = 4c7518284e05d8858a95501d2013c985 MD5 (xc/X333src-2.tgz) = 8b10b70b59c05bf9e5898444b725f039 -MD5 (xc/3.3.3-3.3.3.1.diff.gz) = 07cfaf1e17ea57b3b701ec59814f8c73 +MD5 (xc/3.3.3-3.3.3.1.diff.gz) = 35d41054e0bcb1a4cf29ab4364027d2b MD5 (xc/Wraphelp.c) = IGNORE --- x11/XttXF86srv-common/files/md5.orig Wed Jun 2 13:49:34 1999 +++ x11/XttXF86srv-common/files/md5 Wed Jun 2 13:49:41 1999 @@ -2,5 +2,5 @@ MD5 (xc/X333src-2.tgz) = 8b10b70b59c05bf9e5898444b725f039 MD5 (xc/xtt-1.2.tar.gz) = 15585e87ffaa35de7cf80ca17fd02246 MD5 (xc/xtt-1.2-to-1.2.1.tar.gz) = 157b175a19e56b5dabeb9d3f88de9533 -MD5 (xc/3.3.3-3.3.3.1.diff.gz) = 07cfaf1e17ea57b3b701ec59814f8c73 +MD5 (xc/3.3.3-3.3.3.1.diff.gz) = 35d41054e0bcb1a4cf29ab4364027d2b MD5 (xc/Wraphelp.c) = IGNORE >Release-Note: >Audit-Trail: >Unformatted: Clive Lin >> Checksum OK for xc/X333src-1.tgz. >> Checksum OK for xc/X333src-2.tgz. >> Checksum mismatch for xc/3.3.3-3.3.3.1.diff.gz. Make sure the Makefile and md5 file (/usr/ports/x11/XFree86/files/md5) are up to date. If you want to override this check, type "make NO_CHECKSUM=yes [other args]". *** Error code 1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 23: 5:44 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CD20E15179; Tue, 1 Jun 1999 23:05:43 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA43152; Tue, 1 Jun 1999 23:05:43 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Tue, 1 Jun 1999 23:05:43 -0700 (PDT) From: Message-Id: <199906020605.XAA43152@freefall.freebsd.org> To: mharo@FreeBSD.org, freebsd-ports@FreeBSD.org, jmz@FreeBSD.org Subject: Re: ports/11985: xc/3.3.3-3.3.3.1.diff.gz md5 error ? Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: xc/3.3.3-3.3.3.1.diff.gz md5 error ? Responsible-Changed-From-To: freebsd-ports->jmz Responsible-Changed-By: mharo Responsible-Changed-When: Tue Jun 1 23:05:03 PDT 1999 Responsible-Changed-Why: Over to maintainer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Jun 1 23:50: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 27DFF14D61 for ; Tue, 1 Jun 1999 23:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA47347; Tue, 1 Jun 1999 23:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from point.osg.gov.bc.ca (point.osg.gov.bc.ca [142.32.102.44]) by hub.freebsd.org (Postfix) with ESMTP id C1D3514D45 for ; Tue, 1 Jun 1999 23:48:06 -0700 (PDT) (envelope-from cy@cschuber.net.gov.bc.ca) Received: (from daemon@localhost) by point.osg.gov.bc.ca (8.8.7/8.8.8) id XAA25296 for ; Tue, 1 Jun 1999 23:48:05 -0700 Received: from cschuber.net.gov.bc.ca(142.31.240.113), claiming to be "cwsys.cwsent.com" via SMTP by point.osg.gov.bc.ca, id smtpda25292; Tue Jun 1 23:48:00 1999 Received: (from cy@localhost) by cwsys.cwsent.com (8.9.3/8.9.1) id XAA82695; Tue, 1 Jun 1999 23:47:58 -0700 (PDT) Message-Id: <199906020647.XAA82695@cwsys.cwsent.com> Date: Tue, 1 Jun 1999 23:47:58 -0700 (PDT) From: Cy.Schubert@uumail.gov.bc.ca Reply-To: Cy.Schubert@uumail.gov.bc.ca To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11986: Fix For Broken NTP Port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11986 >Category: ports >Synopsis: NTP port broken because of new nanokernel PLL code in 3.2 >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 Jun 1 23:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Cy Schubert >Release: FreeBSD 3.2-RELEASE i386 >Organization: ITSD, Province of BC >Environment: FreeBSD cwsys 3.2-RELEASE FreeBSD 3.2-RELEASE #0: Sun May 30 12:16:56 PDT 1999 root@cwsys:/opt2/cvs-320/src/sys/compile/CWSYS i386 >Description: Fix for "structure has no member named `tv_usec'" and upgrade to 4.0.93a. >How-To-Repeat: See above >Fix: Based on ntp-4.0.93a. begin 644 ntp-990601.tar.gz M'XL(`('#5#<``^U;>W/;-A+/O^:GP#1I1HKUX$.4++GN1&0($7VG;_++ZC=<7VGY?B^AY!C^RW["?*_F45KE`F).4)/ M.&-R$]_5C)#X,0QZ7$H^S7]$8R*^Q2KX^OGWVBW;A?EWVEZGG/_'H"_F?QX^ M^+`[MMUNM3;,?Z=U9_Y=S_:?(/NA#='1__G\'Q_XJ*(60:MA-[H>;L!H-*:_ M5]$>:GN3;D2ZW4E[Q\:NW6VUO:ZWX[B1[[6<]HYG_=&VE_2_TUK\IQ?3;[,' M^,K\[WB>X[HM6^5_SR[S_Z/0G?G?/ST^'IR,'E;'O?F_U8'Y]UVOW;&7^;]E MVV7^?PP:S0@Z(?**\0LTHG."SCB3+&`Q.J!"K_JG0G_@\&P_WS MA]9Q3_P[7L>]D_]=I^.6\?\89([_RLGHK(JH0)D@(9(,B>LDF'&6T-\)DB`F M%3N+$+8"-D\S23@*8DH2B1A'@O!+:``QG##@OFT!C).(<)($RRX$RWA`:I;( M@AG"`F'$<4A9W@N6)(ZI)"`3$+J4G[.0S!N6=211RMDE#8E8:<9!D'$<4&B1 MURD-]$^$A>$Z2W-#442ND"2)4%ZM\0K% M_!Z8P8H82S"C8$\YG6-^;2T]6QN??+SV&>,A3<"%$+U-E/$"Q\4@5]Z.]JOH MDF+HY3!F$QQ;9TQ0E6II,D5#Z)#"\%0.SX;56]=K*`+GR0+/TYB`^Z/"003S MA,#,B$[!==4%3)FDL9JF>19+"MS01Y@E(881*HR%40:_P]PH8B7+!9!B.1,U M!&,%EB]G+YA1`@[/Z'2V&MWK7!C&@N()Z)'78,R0@5MWK*!)$&LWEU==4@)*"B`:;$#1B'YK\A MZ37+DI;3G?Q_]N9H^,"[OWOS?\?QVY#_V[[7=FRGXZC\[[;*_/\H-*%)$]9` M:*TN(%W=7@>KJP^K"Y6P;Z\A%11?()@O0J MN3IFQ#9#&Z1<,[1CAKI&R-R?:S;0W2#EF:&6&6J;H8X9,GMLML(SNV6VSSB!? MW+IVF&1#,]1O`Z*S5M5V?;.J]`9$U7T-E,<9Z,YZFPFEW#*`Z>1HZG3&><#PQ+5^3;7<.DP*A/J#1("CB]I1.#)!P` M(9F;E$J6$"W&N*2);NNO+QAI?MM+`WS(X/BD:>>FH\5JVZ*%8J@_NNR\/*-I MD+7B>P>Y=@L=+T/*^1Q],39Z(*_86JB\Y_*GHV3M_D]1B!_^&?!_\_Z/4SS_ M<]I.^?SW,4@S__G?.L8/IN.^Y[]^Q[^=?]MIJ2=";;]\_OLH5*_75_?I588> M9PE=%%O_!N-TNC7*"#J&`7)LY#H]M]US.\CI=G>L[>UM@V`N\W.6P#PBU^W9 MK9[C*9FN]?(EJK?]6AMMPZ?CHIO*?;(K_R8/IN"?^7<=S/L5_IYW'?[M3QO]CD(I_ M];3P]L@?%''_BE/43SER/?C7\^U>JUO$L(K[SP4T\;[S*=Y]N]9%V_#I.'F\ M/T5H%;B0-6!'JCJIR"I"XEJHY[65X=^'XS5,!5^UJ@1)+`AJOD`GIR/UT',, MC/O]-V^&X^'H`+UHYGW3"'I'/_7?#<;CL6(Z'(Q&1\<#R!<18W`.A=AS=G/6 M=3O@('AKQWB\WK)2CD@2PAG@"QW]@Y]5_[_[5EU=*RWB'\$_P0/0T\AG=YF-=U6.-'*LI6[]5%0#\!EQA.! M`A82]'V(*M^+ZJ_)=S4EH1((1+#,1"U_FV`Q5M_4V*FV:C5W30'CB./`Y)F) MX7/'5BZ-^N.3_LEIGM)A9*,8BQEZ?MM>!5_4>-[5A)I[:T,DQ7B.Q84J!8NH MH&!W"U:WTW3_Y=GY>B[8.,N2$(ZV.:M=D%MT$H5T2J4`I+M;C#%Z6JS3NBII M>2UZOK*CAIY#3;G MELJO<4R"_*V<^7(MJ'=K>EOJULU3](YPH3!./F24D["WI7XST'$!.H"4BP(H M)5(U;QU0=:J#

\K(U8\8 MK/W^:'!X>GXT&$([D=9Q?S@:G(^'1R/5$N4O!L'GIU>"TFQ2W"4C0MW4:UH@ M-Q_#:JOB;!^Z@_'^ZG0]>'?UR8UDI$[).U'_^>GB^?Y,_\(+"81*Q&JL7L7Z8B+"AYKHQ MO_BQS-`EE51222655%)))9544DDEE51222655%)))97T5Z7_`&C;R\D`4``` ` 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 Jun 1 23:52:55 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BC9B714D61; Tue, 1 Jun 1999 23:52:54 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA47833; Tue, 1 Jun 1999 23:52:54 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Tue, 1 Jun 1999 23:52:54 -0700 (PDT) From: Message-Id: <199906020652.XAA47833@freefall.freebsd.org> To: mharo@FreeBSD.org, freebsd-ports@FreeBSD.org, andreas@FreeBSD.org Subject: Re: ports/11986: NTP port broken because of new nanokernel PLL code in 3.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NTP port broken because of new nanokernel PLL code in 3.2 Responsible-Changed-From-To: freebsd-ports->andreas Responsible-Changed-By: mharo Responsible-Changed-When: Tue Jun 1 23:52:31 PDT 1999 Responsible-Changed-Why: Over to port's MAINTAINER To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jun 2 3: 9: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ns.raditex.se (raditex.thorsen.se [193.14.93.200]) by hub.freebsd.org (Postfix) with ESMTP id 2DEB114DF2 for ; Wed, 2 Jun 1999 03:08:56 -0700 (PDT) (envelope-from kaj@raditex.se) Received: from localhost (dialup209-3-34.swipnet.se [130.244.209.162]) by ns.raditex.se (8.8.8/8.8.8) with ESMTP id MAA19815; Wed, 2 Jun 1999 12:08:52 +0200 (CEST) (envelope-from kaj@raditex.se) To: ports@freebsd.org Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: Rasmus Kaj Subject: documentation: how to write a PLIST From: Rasmus Kaj X-Mailer: Mew version 1.93 on XEmacs 20.4 (Emerald) X-URL: http://www.e.kth.se/~kaj/ X-Phone: +46 (0)8 - 694 92 80 X-Attribution: Kaj X-Face: M9cR~WYav<"fu%MaslX0`43PAYY?uIsM8[#E(0\Xuy9rj>4gE\h3jm.7DD?]R8*^7T\o&vT U@[53Dwkuup4[0@gw#~kyu>`unH?kVj9CJa02(h>Ki\+i=%rn%sDf^KC.!?IHkKjMAbkd\jgmphp^' d|Q;OeXEAhq?ybGqOs1CHb6TJT42'C`Krnk61//AOfXtNjj/t'`5>Vw0QX!dKfOL$.f+S"LIuwR<;I Z0Qnnx(F^F]o@*V%TUtEV'1Z[TkOl^FFV9Z~A[b19%}uP*,huCU Mime-Version: 1.0 Message-Id: <19990602121106B.kaj@raditex.se> Date: Wed, 02 Jun 1999 12:11:06 +0200 X-Dispatcher: imput version 980905(IM100) Lines: 14 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Someone has worked hard to explicitly state 'WWW:' in front of all the web URLs in DESCR files for ports. Except in the documentation. I have $Id: porting.sgml,v 1.130 1999/02/11 04:14:46 simokawa Exp $ in doc/handbook, and think there should be a WWW: inserted at line 117. While on the subject, why is the 'WWW:' inserted? Is the following URL supposed to be extracted for the README.html (it isn't, at least not yet) ? Or is it used by some other automagic tool? -- Rasmus Kaj ---------------- rasmus@kaj.a.se - http://www.e.kth.se/~kaj/ \ Unix is like a wigwam; no Gates, no Windows, and an Apache inside \--------------------------------------------- http://www.Raditex.se/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jun 2 3:15: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mailsrvr (pm1s09.lanline.com [206.152.160.59]) by hub.freebsd.org (Postfix) with ESMTP id 1334C14DF2 for ; Wed, 2 Jun 1999 03:15:02 -0700 (PDT) (envelope-from urvandsea@lanline.com) Received: from AspPostOffice - 127.0.0.1 by mailsrvr with Microsoft SMTPSVC(5.5.1774.114.11); Wed, 2 Jun 1999 06:18:56 -0400 From: urvandsea@lanline.com To: ports@FreeBSD.org Reply-To: urvandsea@lanline.com SUBJECT:FREE unlimited job posting/FREE resume posting DATE:Wed, 02 Jun 1999 06:18:56 -0500 Message-ID: <027d15618100269MAILSRVR@mailsrvr> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org FREE UNLIMITED JOB POSTINGS/FREE RESUME POSTINGS Since your email address was listed on a related web site page or database, the following might be of interest: Would you lie to fill your job postings as soon as possible? Post your jobs on http://www.onlinejobstore.com This is a special offer. No obligations. Post your jobs today and $ave. Resume Postings are always FREE Browse the site for job listings Please direct any questions to urvandsea@lanline.com ***To permanently discontinue receiving employment opportunity notices from any and all notifications by us please click your "Reply" button and type the word "Remove" without spaces between the letters into the SUBJECT field then click the "send" button. Your email address will be permanently filtered from ALL future job opportunity notification sent by us.*** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jun 2 5:10:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 088ED159BE for ; Wed, 2 Jun 1999 05:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA81975; Wed, 2 Jun 1999 05:10:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mail.raditex.se (mail.raditex.se [192.5.36.20]) by hub.freebsd.org (Postfix) with ESMTP id 9A52D14E13 for ; Wed, 2 Jun 1999 05:02:27 -0700 (PDT) (envelope-from kaj@mail.raditex.se) Received: (from kaj@localhost) by mail.raditex.se (8.9.2/8.9.2) id MAA73715; Wed, 2 Jun 1999 12:06:49 GMT (envelope-from kaj) Message-Id: <199906021206.MAA73715@mail.raditex.se> Date: Wed, 2 Jun 1999 12:06:49 GMT From: Rasmus Kaj Reply-To: kaj@raditex.se To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11990: New port: devel/rstl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11990 >Category: ports >Synopsis: New port: devel/rstl >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: Wed Jun 2 05:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Rasmus Kaj >Release: FreeBSD 3.1-RELEASE i386 >Organization: Raditex AB >Environment: FreeBSD 3.2-STABLE i386 >Description: New port of rstl, a utility / convenience library for C++ and the Standard Template Library (as distributed in gcc) >How-To-Repeat: N/A >Fix: Commit the following port stub. # 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: # # devel/rstl # devel/rstl/Makefile # devel/rstl/pkg # devel/rstl/pkg/COMMENT # devel/rstl/pkg/DESCR # devel/rstl/pkg/PLIST # devel/rstl/files # devel/rstl/files/md5 # echo c - devel/rstl mkdir -p devel/rstl > /dev/null 2>&1 echo x - devel/rstl/Makefile sed 's/^X//' >devel/rstl/Makefile << 'END-of-devel/rstl/Makefile' X# New ports collection makefile for: rstl X# Version required: 0.2 X# Date created: 19990602 X# Whom: Rasmus Kaj X# X# $Id$ X# X XDISTNAME= rstl-0.2 XCATEGORIES= devel XMASTER_SITES= ftp://ftp.raditex.se/pub/opensrc/ X XMAINTAINER= kaj@raditex.se X X.include X Xdo-configure: X @touch ${WRKSRC}/depend.mk X @cd ${WRKSRC} && make depend X X.include END-of-devel/rstl/Makefile echo c - devel/rstl/pkg mkdir -p devel/rstl/pkg > /dev/null 2>&1 echo x - devel/rstl/pkg/COMMENT sed 's/^X//' >devel/rstl/pkg/COMMENT << 'END-of-devel/rstl/pkg/COMMENT' XR utilities for C++ Standard Template Library. END-of-devel/rstl/pkg/COMMENT echo x - devel/rstl/pkg/DESCR sed 's/^X//' >devel/rstl/pkg/DESCR << 'END-of-devel/rstl/pkg/DESCR' XR utilities for C++ Standard Template Library. X XSome string manipulations thats not included in the STL string class, Xsplit and join strings to / from vectors of strings, build a map of Xthe input to a CGI, help producing the output from a CGI. X XWWW: http://www.raditex.se/projekt/opensrc/#rstl X- Rasmus Kaj END-of-devel/rstl/pkg/DESCR echo x - devel/rstl/pkg/PLIST sed 's/^X//' >devel/rstl/pkg/PLIST << 'END-of-devel/rstl/pkg/PLIST' Xinclude/rstl/strings.h Xinclude/rstl/vectors.h Xinclude/rstl/cvec.h Xinclude/rstl/cgiresponce.h Xinclude/rstl/cgiquery.h Xlib/librstl.a Xlib/librstl.so.1 X@dirrm include/rstl END-of-devel/rstl/pkg/PLIST echo c - devel/rstl/files mkdir -p devel/rstl/files > /dev/null 2>&1 echo x - devel/rstl/files/md5 sed 's/^X//' >devel/rstl/files/md5 << 'END-of-devel/rstl/files/md5' XMD5 (rstl-0.2.tar.gz) = c6d3255b296f0b93d0ea3a0f0dbd187e END-of-devel/rstl/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 Jun 2 8:18:53 1999 Delivered-To: freebsd-ports@freebsd.org Received: from peewee.cdrom.com (simo-ppp.eccosys.com [199.100.7.96]) by hub.freebsd.org (Postfix) with ESMTP id AF56914F7E; Wed, 2 Jun 1999 08:18:47 -0700 (PDT) (envelope-from jkh@peewee.cdrom.com) Received: from peewee (jkh@localhost [127.0.0.1]) by peewee.cdrom.com (8.8.8/8.8.8) with ESMTP id HAA09740; Wed, 2 Jun 1999 07:30:43 -0700 (PDT) (envelope-from jkh@peewee.cdrom.com) To: Eivind Eklund Cc: David Scheidt , freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) In-reply-to: Your message of "Tue, 01 Jun 1999 07:42:27 +0200." <19990601074227.B58405@bitbox.follo.net> Date: Wed, 02 Jun 1999 07:30:43 -0700 Message-ID: <9736.928333843@peewee> From: Jordan Hubbard Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > The point that FreeBSD won't willingly be using restricted source code > as a part of our distribution mechanism, I think. It seems to be I'm sure that Kirk has a good reason for leaving the current "modified BSD license" in place for soft updates and when whatever timer he has on that runs out and allows us to configure it in by default, meaning that I have only to add an option to GENERIC while building the boot floppies, then I'll do it. I still don't see what the fuss is about in any case since soft updates would be SLOWER than the async mode I use during installation and anyone who's actually bothered to benchmark extraction of files with the two systems knows this. Have you ever timed it? If not, why not? That seems the minimum amount of work one would be expected to put in before arguing passionately on any topic. :-) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jun 2 8:20: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B9D815142 for ; Wed, 2 Jun 1999 08:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA60096; Wed, 2 Jun 1999 08:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from cheerful.com (pt006.inetmie.or.jp [210.238.81.16]) by hub.freebsd.org (Postfix) with ESMTP id 02F0C15102 for ; Wed, 2 Jun 1999 08:17:20 -0700 (PDT) (envelope-from nishika@cheerful.com) Received: (from nishika@localhost) by cheerful.com (8.9.3/8.9.3) id AAA57643; Thu, 3 Jun 1999 00:16:53 +0900 (JST) (envelope-from nishika) Message-Id: <199906021516.AAA57643@cheerful.com> Date: Thu, 3 Jun 1999 00:16:53 +0900 (JST) From: nishika@cheerful.com Reply-To: nishika@cheerful.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11994: New port: emulators/quasi88 - PC-8801 emulator - Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11994 >Category: ports >Synopsis: new port: emulators/quasi88 >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 Jun 2 08:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Nishika >Release: FreeBSD 3.2-RELEASE i386 >Organization: >Environment: >Description: Hi, This is a new port. The quasi88 is an emulator that emulate old NEC machines called PC-8801. shar formatted port skeleton follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # quasi88 # quasi88/files # quasi88/files/md5 # quasi88/pkg # quasi88/pkg/COMMENT # quasi88/pkg/DESCR # quasi88/pkg/PLIST # quasi88/Makefile # echo c - quasi88 mkdir -p quasi88 > /dev/null 2>&1 echo c - quasi88/files mkdir -p quasi88/files > /dev/null 2>&1 echo x - quasi88/files/md5 sed 's/^X//' >quasi88/files/md5 << 'END-of-quasi88/files/md5' XMD5 (quasi88-0.2.4.tgz) = f80a597e264d673ee41a2375efaa15fa END-of-quasi88/files/md5 echo c - quasi88/pkg mkdir -p quasi88/pkg > /dev/null 2>&1 echo x - quasi88/pkg/COMMENT sed 's/^X//' >quasi88/pkg/COMMENT << 'END-of-quasi88/pkg/COMMENT' XPC-8801 emulator for X. END-of-quasi88/pkg/COMMENT echo x - quasi88/pkg/DESCR sed 's/^X//' >quasi88/pkg/DESCR << 'END-of-quasi88/pkg/DESCR' XThis is a PC-8801 emulator for X. XSee http://www.117.ne.jp/~show/pc8801/pc88emu.html for further information. X XWWW: http://www.117.ne.jp/~show/pc8801/pc88emu.html END-of-quasi88/pkg/DESCR echo x - quasi88/pkg/PLIST sed 's/^X//' >quasi88/pkg/PLIST << 'END-of-quasi88/pkg/PLIST' Xbin/quasi88 Xshare/doc/quasi88/FAQ Xshare/doc/quasi88/FILES Xshare/doc/quasi88/FORMAT Xshare/doc/quasi88/GET-IMAGE Xshare/doc/quasi88/HELP Xshare/doc/quasi88/HISTORY Xshare/doc/quasi88/LIST Xshare/doc/quasi88/MANUAL Xshare/doc/quasi88/QUASI88 X@dirrm share/doc/quasi88 END-of-quasi88/pkg/PLIST echo x - quasi88/Makefile sed 's/^X//' >quasi88/Makefile << 'END-of-quasi88/Makefile' X# New ports collection makefile for: QUASI88 X# Version required: 0.2.4 X# Date created: 22 May 1999 X# Whom: Nishika X# X# $Id$ X# X XDISTNAME= quasi88-0.2.4 XCATEGORIES= emulators XMASTER_SITES= http://www.117.ne.jp/~show/pc8801/ XEXTRACT_SUFX= .tgz X XMAINTAINER= nishika@cheerful.com X XUSE_XLIB= yes XDATAFILES= FAQ FILES FORMAT GET-IMAGE HELP HISTORY LIST MANUAL QUASI88 X Xdo-install: X @ ${INSTALL_PROGRAM} ${WRKSRC}/quasi88 ${PREFIX}/bin X @ ${MKDIR} ${PREFIX}/share/doc/quasi88 X X.for i in ${DATAFILES} X @ ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/quasi88/ X.endfor X X.include END-of-quasi88/Makefile 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 Wed Jun 2 8:35:35 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.yes.no (ns1.yes.no [195.204.136.10]) by hub.freebsd.org (Postfix) with ESMTP id 679DD152BE; Wed, 2 Jun 1999 08:35:30 -0700 (PDT) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [195.204.143.218]) by ns1.yes.no (8.9.1a/8.9.1) with ESMTP id RAA02858; Wed, 2 Jun 1999 17:35:29 +0200 (CEST) Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id RAA70991; Wed, 2 Jun 1999 17:35:28 +0200 (MET DST) Date: Wed, 2 Jun 1999 17:35:28 +0200 From: Eivind Eklund To: Jordan Hubbard Cc: David Scheidt , freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) Message-ID: <19990602173528.B70808@bitbox.follo.net> References: <19990601074227.B58405@bitbox.follo.net> <9736.928333843@peewee> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.1i In-Reply-To: <9736.928333843@peewee>; from Jordan Hubbard on Wed, Jun 02, 1999 at 07:30:43AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Jun 02, 1999 at 07:30:43AM -0700, Jordan Hubbard wrote: > I still don't see what the fuss is about in any case since soft > updates would be SLOWER than the async mode I use during installation > and anyone who's actually bothered to benchmark extraction of files > with the two systems knows this. Have you ever timed it? If not, why > not? That seems the minimum amount of work one would be expected to > put in before arguing passionately on any topic. :-) Because benchmarking something that is synchronously creating inodes all over the disk in a rotating fashion (due to the directory allocation policy) against something that is running fully async and with an elevator sort over the full set of transactions should be sort of useless. It's like doing uphill testing of a fat guy on a bicycle against a Lamborghini - you "know" the result beforehand. If extraction of the ports collection (not files in general, just the ports collection) is slower using soft updates than using "async" mode, then it seems some elevator sorting isn't working the way it should, or we are getting queue stalls due to a limited queue size somewhere. Unfortunately I can't dedicate time right now to investigate it; there are a number of other things I need to get out of my FreeBSD backlog first. Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jun 2 8:39:19 1999 Delivered-To: freebsd-ports@freebsd.org Received: from smtp13.bellglobal.com (smtp13.bellglobal.com [204.101.251.52]) by hub.freebsd.org (Postfix) with ESMTP id 3676115220 for ; Wed, 2 Jun 1999 08:39:13 -0700 (PDT) (envelope-from vanderh@ecf.toronto.edu) Received: from localhost.nowhere (ppp18328.on.bellglobal.com [206.172.130.8]) by smtp13.bellglobal.com (8.8.5/8.8.5) with ESMTP id LAA25219; Wed, 2 Jun 1999 11:40:18 -0400 (EDT) Received: (from tim@localhost) by localhost.nowhere (8.9.3/8.9.1) id LAA90684; Wed, 2 Jun 1999 11:34:03 -0400 (EDT) (envelope-from tim) Date: Wed, 2 Jun 1999 11:34:03 -0400 From: Tim Vanderhoek To: Rasmus Kaj Cc: ports@freebsd.org Subject: Re: documentation: how to write a PLIST Message-ID: <19990602113403.A90582@mad> References: <19990602121106B.kaj@raditex.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: <19990602121106B.kaj@raditex.se>; from Rasmus Kaj on Wed, Jun 02, 1999 at 12:11:06PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Jun 02, 1999 at 12:11:06PM +0200, Rasmus Kaj wrote: > Someone has worked hard to explicitly state 'WWW:' in front of all the > web URLs in DESCR files for ports. Except in the documentation. That would be me and mharo. :-) > I have $Id: porting.sgml,v 1.130 1999/02/11 04:14:46 simokawa Exp $ in > doc/handbook, and think there should be a WWW: inserted at line 117. No, they only go into the pkg/DESCR port files. They ultimately make their way into the ports INDEX file. They are supposedly used by some tools. I'm not sure what tools, or why... -- This is my .signature which gets appended to the end of my messages. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jun 2 9:21: 0 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ns.raditex.se (raditex.thorsen.se [193.14.93.200]) by hub.freebsd.org (Postfix) with ESMTP id 45B5315304 for ; Wed, 2 Jun 1999 09:20:54 -0700 (PDT) (envelope-from kaj@raditex.se) Received: from localhost (dialup78-2-48.swipnet.se [130.244.78.112]) by ns.raditex.se (8.8.8/8.8.8) with ESMTP id SAA20192; Wed, 2 Jun 1999 18:20:28 +0200 (CEST) (envelope-from kaj@raditex.se) To: vanderh@ecf.utoronto.ca Cc: ports@freebsd.org Cc: Rasmus Kaj Subject: Re: documentation: how to write a PLIST From: Rasmus Kaj In-Reply-To: Your message of "Wed, 2 Jun 1999 11:34:03 -0400" <19990602113403.A90582@mad> References: <19990602113403.A90582@mad> X-Mailer: Mew version 1.93 on XEmacs 20.4 (Emerald) X-URL: http://www.e.kth.se/~kaj/ X-Phone: +46 (0)8 - 694 92 80 X-Attribution: Kaj X-Face: M9cR~WYav<"fu%MaslX0`43PAYY?uIsM8[#E(0\Xuy9rj>4gE\h3jm.7DD?]R8*^7T\o&vT U@[53Dwkuup4[0@gw#~kyu>`unH?kVj9CJa02(h>Ki\+i=%rn%sDf^KC.!?IHkKjMAbkd\jgmphp^' d|Q;OeXEAhq?ybGqOs1CHb6TJT42'C`Krnk61//AOfXtNjj/t'`5>Vw0QX!dKfOL$.f+S"LIuwR<;I Z0Qnnx(F^F]o@*V%TUtEV'1Z[TkOl^FFV9Z~A[b19%}uP*,huCU Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19990602182158Y.kaj@raditex.se> Date: Wed, 02 Jun 1999 18:21:58 +0200 X-Dispatcher: imput version 980905(IM100) Lines: 54 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "RK" == Rasmus Kaj (me) wrote >>>>> "TV" == Tim Vanderhoek commented: RK> Someone has worked hard to explicitly state 'WWW:' in front of all the RK> web URLs in DESCR files for ports. Except in the documentation. TV> That would be me and mharo. :-) RK> I have $Id: porting.sgml,v 1.130 1999/02/11 04:14:46 simokawa Exp $ in RK> doc/handbook, and think there should be a WWW: inserted at line 117. TV> No, they only go into the pkg/DESCR port files. They ultimately make TV> their way into the ports INDEX file. They are supposedly used by some TV> tools. I'm not sure what tools, or why... Hmm? That seems like a comment on my third paragraph (which you didn't quote), if it was intended as an answer to the quoted paragraph, I may point out that doc/handbook/porting.sgml is the instructions for contributing a port, and line 177 of it is in the middle of an example of a pkg/DESCR file. You don't want to have to keep inserting 'WWW:' into every new port that comes in, do you? :-) Sorry if I didn't make myself clear enough ... Here's a suggested diff for porting.sgml, so you see what I'm talking about ... --- snip --- # diff -u -U 7 porting.sgml porting.sgml.suggestion --- porting.sgml Thu Feb 11 05:14:46 1999 +++ porting.sgml.suggestion Wed Jun 2 18:10:10 1999 @@ -110,15 +110,15 @@ This is a port of oneko, in which a cat chases a poor mouse all over the screen. : (etc.) -http://www.oneko.org/ +WWW: http://www.oneko.org/ - Satoshi asami@cs.berkeley.edu PLIST --- snip --- -- Rasmus Kaj ---------------- rasmus@kaj.a.se - http://www.e.kth.se/~kaj/ \ !07/11 PDP a ni deppart m'I !pleH \--------------------------------------------- http://www.Raditex.se/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jun 2 9:32:13 1999 Delivered-To: freebsd-ports@freebsd.org Received: from verdi.nethelp.no (verdi.nethelp.no [158.36.41.162]) by hub.freebsd.org (Postfix) with SMTP id 4441E15284 for ; Wed, 2 Jun 1999 09:32:09 -0700 (PDT) (envelope-from sthaug@nethelp.no) Received: (qmail 49498 invoked by uid 1001); 2 Jun 1999 16:32:08 +0000 (GMT) To: eivind@FreeBSD.ORG Cc: jkh@zippy.cdrom.com, dscheidt@enteract.com, freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) From: sthaug@nethelp.no In-Reply-To: Your message of "Wed, 2 Jun 1999 17:35:28 +0200" References: <19990602173528.B70808@bitbox.follo.net> X-Mailer: Mew version 1.05+ on Emacs 19.34.2 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Date: Wed, 02 Jun 1999 18:32:07 +0200 Message-ID: <49496.928341127@verdi.nethelp.no> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > I still don't see what the fuss is about in any case since soft > > updates would be SLOWER than the async mode I use during installation > > and anyone who's actually bothered to benchmark extraction of files > > with the two systems knows this. Have you ever timed it? If not, why > > not? That seems the minimum amount of work one would be expected to > > put in before arguing passionately on any topic. :-) > > Because benchmarking something that is synchronously creating inodes > all over the disk in a rotating fashion (due to the directory > allocation policy) against something that is running fully async and > with an elevator sort over the full set of transactions should be sort > of useless. It's like doing uphill testing of a fat guy on a bicycle > against a Lamborghini - you "know" the result beforehand. > > If extraction of the ports collection (not files in general, just the > ports collection) is slower using soft updates than using "async" > mode, then it seems some elevator sorting isn't working the way it > should, or we are getting queue stalls due to a limited queue size > somewhere. OK, here's a practical result. PII-350 running 3.2-STABLE, extracting the ports from 3.2-19990526-STABLE.tgz. The disk is a Barracuda 9 LP (ST39173W) on an Adaptec 7890 controller. The file system was newfs'ed (8 kbytes/inode) before each extraction. Softupdates: # time tar xzf /local/ports-3.2-19990526-STABLE.tgz 6.274u 38.703s 11:09.90 6.7% 283+1045k 1100+112517io 0pf+0w Async: # time tar xzf /local/ports-3.2-19990526-STABLE.tgz 6.311u 69.739s 12:06.17 10.4% 283+1027k 1378+118407io 0pf+0w Not a huge difference, but enough to be noticeable. Watching with vmstat while the extraction was running, you could clearly see more disk operations per second for softupdates. As always, YMMV. Steinar Haug, Nethelp consulting, sthaug@nethelp.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jun 2 9:42:32 1999 Delivered-To: freebsd-ports@freebsd.org Received: from hp9000.chc-chimes.com (hp9000.chc-chimes.com [206.67.97.84]) by hub.freebsd.org (Postfix) with ESMTP id 584C51531C for ; Wed, 2 Jun 1999 09:42:14 -0700 (PDT) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA252306456; Wed, 2 Jun 1999 08:27:36 -0400 Date: Wed, 2 Jun 1999 08:27:35 -0400 (EDT) From: Bill Fumerola To: Rasmus Kaj Cc: vanderh@ecf.utoronto.ca, ports@FreeBSD.ORG Subject: Re: documentation: how to write a PLIST In-Reply-To: <19990602182158Y.kaj@raditex.se> 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 Wed, 2 Jun 1999, Rasmus Kaj wrote: > Sorry if I didn't make myself clear enough ... Here's a suggested diff > for porting.sgml, so you see what I'm talking about ... > > --- snip --- > # diff -u -U 7 porting.sgml porting.sgml.suggestion > --- porting.sgml Thu Feb 11 05:14:46 1999 > +++ porting.sgml.suggestion Wed Jun 2 18:10:10 1999 You're using the wrong handbook. Tim already made this change to doc/en/handbook/ports/chapter.sgml back in May 2 (rev1.13). - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.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 Wed Jun 2 10: 3:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ns.raditex.se (raditex.thorsen.se [193.14.93.200]) by hub.freebsd.org (Postfix) with ESMTP id 0369D152F0 for ; Wed, 2 Jun 1999 10:03:02 -0700 (PDT) (envelope-from kaj@raditex.se) Received: from localhost (dialup171-2-47.swipnet.se [130.244.171.111]) by ns.raditex.se (8.8.8/8.8.8) with ESMTP id TAA20237; Wed, 2 Jun 1999 19:02:45 +0200 (CEST) (envelope-from kaj@raditex.se) To: billf@chc-chimes.com Cc: vanderh@ecf.utoronto.ca, ports@FreeBSD.ORG Cc: Rasmus Kaj Subject: Re: documentation: how to write a PLIST From: Rasmus Kaj In-Reply-To: Your message of "Wed, 2 Jun 1999 08:27:35 -0400 (EDT)" References: X-Mailer: Mew version 1.93 on XEmacs 20.4 (Emerald) X-URL: http://www.e.kth.se/~kaj/ X-Phone: +46 (0)8 - 694 92 80 X-Attribution: Kaj X-Face: M9cR~WYav<"fu%MaslX0`43PAYY?uIsM8[#E(0\Xuy9rj>4gE\h3jm.7DD?]R8*^7T\o&vT U@[53Dwkuup4[0@gw#~kyu>`unH?kVj9CJa02(h>Ki\+i=%rn%sDf^KC.!?IHkKjMAbkd\jgmphp^' d|Q;OeXEAhq?ybGqOs1CHb6TJT42'C`Krnk61//AOfXtNjj/t'`5>Vw0QX!dKfOL$.f+S"LIuwR<;I Z0Qnnx(F^F]o@*V%TUtEV'1Z[TkOl^FFV9Z~A[b19%}uP*,huCU Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19990602190500Z.kaj@raditex.se> Date: Wed, 02 Jun 1999 19:05:00 +0200 X-Dispatcher: imput version 980905(IM100) Lines: 28 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "BF" == Bill Fumerola writes: BF> On Wed, 2 Jun 1999, Rasmus Kaj wrote: >> Sorry if I didn't make myself clear enough ... Here's a suggested diff >> for porting.sgml, so you see what I'm talking about ... >> >> --- snip --- >> # diff -u -U 7 porting.sgml porting.sgml.suggestion >> --- porting.sgml Thu Feb 11 05:14:46 1999 >> +++ porting.sgml.suggestion Wed Jun 2 18:10:10 1999 BF> You're using the wrong handbook. BF> Tim already made this change to BF> doc/en/handbook/ports/chapter.sgml back in May 2 (rev1.13). Ah, so the handbook has made it over to docbook? Hmmm ... my copy of that version don't seem to be up to date at all ... Isn't it enough to cvsup cvs-all and then check out doc from there? A well, it's back to step [1] for me, I suppose ... :-) [1] http://www.freebsd.org/tutorials/docproj-primer/ -- Rasmus Kaj ---------------- rasmus@kaj.a.se - http://www.e.kth.se/~kaj/ \ We don't care. We don't have to. We're the Phone Company \--------------------------------------------- http://www.Raditex.se/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jun 2 12:10: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E8738153AE for ; Wed, 2 Jun 1999 12:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA85206; Wed, 2 Jun 1999 12:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id D6D4E154B2 for ; Wed, 2 Jun 1999 12:03:55 -0700 (PDT) (envelope-from andre.albsmeier@mchp.siemens.de) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by david.siemens.de (8.9.3/8.9.3) with ESMTP id VAA27749 for ; Wed, 2 Jun 1999 21:03:44 +0200 (MET DST) Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.42.7]) by mail1.siemens.de (8.9.3/8.9.3) with ESMTP id VAA08413 for ; Wed, 2 Jun 1999 21:03:44 +0200 (MET DST) Received: (from daemon@localhost) by curry.mchp.siemens.de (8.9.3/8.9.3) id VAA25283 for ; Wed, 2 Jun 1999 21:03:43 +0200 (CEST) Message-Id: <199906021903.VAA06070@internal> Date: Wed, 2 Jun 1999 21:03:42 +0200 (CEST) From: Andre Albsmeier To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/11996: Fix for mutt sending content-type video attachments Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11996 >Category: ports >Synopsis: Fix for mutt sending content-type video attachments >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jun 2 12:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Andre Albsmeier >Release: FreeBSD 3.2-STABLE i386 >Organization: >Environment: Current mutt port (but older ones as well) >Description: There is a bug in the mutt sources for quite a while now which hits when attaching something of content-type video. In mime.h we find the types defined as enum. They go up to 8 for TYPEVIDEO. In mutt.h in line 509 the component type of the BODY structure is defined with only 3 bits: unsigned int type : 3; /* content-type primary type */ unsigned int encoding : 3; /* content-transfer-encoding */ unsigned int disposition : 2; /* content-disposition */ So TYPEVIDEO is always mapped to TYPEOTHER. I have send a message to the mutt developers but never got a reply. Now I think it might good to patch this thing in the port. >How-To-Repeat: Send the file bla.avi with mutt >Fix: --- mutt.h.orig Thu Apr 22 11:52:35 1999 +++ mutt.h Thu May 27 20:53:58 1999 @@ -506,7 +506,7 @@ * encoding update. */ - unsigned int type : 3; /* content-type primary type */ + unsigned int type : 4; /* content-type primary type */ unsigned int encoding : 3; /* content-transfer-encoding */ unsigned int disposition : 2; /* content-disposition */ unsigned int use_disp : 1; /* Content-Disposition field printed? */ >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 Jun 2 13:50: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BBA4E151AA for ; Wed, 2 Jun 1999 13:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA94069; Wed, 2 Jun 1999 13:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 2B48714F60; Wed, 2 Jun 1999 13:46:34 -0700 (PDT) Message-Id: <19990602204634.2B48714F60@hub.freebsd.org> Date: Wed, 2 Jun 1999 13:46:34 -0700 (PDT) From: crawdad+fbsd@fnal.gov To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11998: port netscape45-navigator doesn't run Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11998 >Category: ports >Synopsis: port netscape45-navigator doesn't run >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Jun 2 13:50:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Matt Crawford >Release: 3.2-RELEASE >Organization: Fermilab >Environment: FreeBSD gleipnir.fnal.gov 3.2-RELEASE FreeBSD 3.2-RELEASE #15: Tue Jun 1 15:40:09 CDT 1999 root@gleipnir.fnal.gov:/usr/src/sys/compile/GLEIPNIR i386 >Description: I did "make install" in /usr/ports/www/netscape45-navigator but the resulting netscape (and vreg) wouldn't run due to the absence of ld.so. Was there an option for including a.out support which I missed? (And which the Makefile didn't check?) >How-To-Repeat: "make install" in /usr/ports/www/netscape45-navigator under 3.2-RELEASE. >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 Wed Jun 2 14:26:18 1999 Delivered-To: freebsd-ports@freebsd.org Received: from smtp13.bellglobal.com (smtp13.bellglobal.com [204.101.251.52]) by hub.freebsd.org (Postfix) with ESMTP id 3221214C0F for ; Wed, 2 Jun 1999 14:26:11 -0700 (PDT) (envelope-from vanderh@ecf.toronto.edu) Received: from localhost.nowhere (Hamilton-ppp44893.sympatico.ca [206.172.76.86]) by smtp13.bellglobal.com (8.8.5/8.8.5) with ESMTP id RAA15399; Wed, 2 Jun 1999 17:27:14 -0400 (EDT) Received: (from tim@localhost) by localhost.nowhere (8.9.3/8.9.1) id RAA01512; Wed, 2 Jun 1999 17:26:27 -0400 (EDT) (envelope-from tim) Date: Wed, 2 Jun 1999 17:26:27 -0400 From: Tim Vanderhoek To: Rasmus Kaj Cc: ports@freebsd.org Subject: Re: documentation: how to write a PLIST Message-ID: <19990602172627.A1467@mad> References: <19990602113403.A90582@mad> <19990602182158Y.kaj@raditex.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95i In-Reply-To: <19990602182158Y.kaj@raditex.se>; from Rasmus Kaj on Wed, Jun 02, 1999 at 12:21:58PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Jun 02, 1999 at 12:21:58PM -0400, Rasmus Kaj wrote: > > TV> No, they only go into the pkg/DESCR port files. They ultimately make > TV> their way into the ports INDEX file. They are supposedly used by some > TV> tools. I'm not sure what tools, or why... > > Hmm? That seems like a comment on my third paragraph (which you didn't > quote), if it was intended as an answer to the quoted paragraph, I may Ya, it sure seems that way, eh? :-) > point out that doc/handbook/porting.sgml is the instructions for > contributing a port, and line 177 of it is in the middle of an example > of a pkg/DESCR file. Ahh... You're looking at an old copy of the handbook. I did update the current handbook (http://www.FreeBSD.org/handbook/porting.html) when the change was made. Thanks, for checking, though. :) [doc/handbook/porting.sgml is the old LinuxDoc handbook; the new DocBook handbook hangs-out in doc/en/handbook/ports/chapter.sgml]. > You don't want to have to keep inserting 'WWW:' into every new port > that comes in, do you? :-) Hehe. I stopped doing that after about ten. -- This is my .signature which gets appended to the end of my messages. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jun 2 15:20: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 03C9514CAA for ; Wed, 2 Jun 1999 15:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA02277; Wed, 2 Jun 1999 15:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Jun 1999 15:20:03 -0700 (PDT) Message-Id: <199906022220.PAA02277@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Tom Hukins Subject: Re: ports/11967: p5-Apache port out of date Reply-To: Tom Hukins Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11967; it has been noted by GNATS. From: Tom Hukins To: mvh@ix.netcom.com Cc: freebsd-gnats-submit@freebsd.org Subject: Re: ports/11967: p5-Apache port out of date Date: Wed, 2 Jun 1999 10:30:01 +0100 On Mon, May 31, 1999 at 02:51:08PM -0700, mvh@ix.netcom.com wrote: > > >Number: 11967 > >Category: ports > >Synopsis: p5-Apache port out of date Please see ports/10385, which contains a proposal for an apache13-modperl port and an explanation of why I think p5-Apache should be killed off. It seems a shame that there are two separate efforts to create an Apache+mod_perl port. Of course, if p5-Apache is considered superior, I'll gladly accept that decision. Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jun 2 16:50:57 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 24B3615393; Wed, 2 Jun 1999 16:50:55 -0700 (PDT) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA10595; Wed, 2 Jun 1999 16:50:55 -0700 (PDT) (envelope-from hoek@FreeBSD.org) Date: Wed, 2 Jun 1999 16:50:55 -0700 (PDT) From: Message-Id: <199906022350.QAA10595@freefall.freebsd.org> To: hoek@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/11996: Fix for mutt sending content-type video attachments Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fix for mutt sending content-type video attachments Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: hoek Responsible-Changed-When: Wed Jun 2 16:49:06 PDT 1999 Responsible-Changed-Why: over to maintainer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jun 2 18:20: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 366E715360 for ; Wed, 2 Jun 1999 18:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA16790; Wed, 2 Jun 1999 18:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Wed, 2 Jun 1999 18:20:01 -0700 (PDT) Message-Id: <199906030120.SAA16790@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: mvh@ix.netcom.com (Mike Harding) Subject: Re: ports/11967: p5-Apache port out of date Reply-To: mvh@ix.netcom.com (Mike Harding) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11967; it has been noted by GNATS. From: mvh@ix.netcom.com (Mike Harding) To: tom@eborcom.com Cc: freebsd-gnats-submit@freebsd.org Subject: Re: ports/11967: p5-Apache port out of date Date: Wed, 2 Jun 1999 18:11:32 -0700 (PDT) Kill it off if you like, but you can update it until you decide what to do. It's just the name, not the actual package. - Mike H. Date: Wed, 2 Jun 1999 10:30:01 +0100 From: Tom Hukins Cc: freebsd-gnats-submit@freebsd.org Content-Type: text/plain; charset=us-ascii X-RULES: lists On Mon, May 31, 1999 at 02:51:08PM -0700, mvh@ix.netcom.com wrote: > > >Number: 11967 > >Category: ports > >Synopsis: p5-Apache port out of date Please see ports/10385, which contains a proposal for an apache13-modperl port and an explanation of why I think p5-Apache should be killed off. It seems a shame that there are two separate efforts to create an Apache+mod_perl port. Of course, if p5-Apache is considered superior, I'll gladly accept that decision. Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jun 2 19:27: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from hp9000.chc-chimes.com (hp9000.chc-chimes.com [206.67.97.84]) by hub.freebsd.org (Postfix) with ESMTP id E8DD414F2E for ; Wed, 2 Jun 1999 19:26:54 -0700 (PDT) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA154441590; Wed, 2 Jun 1999 18:13:11 -0400 Date: Wed, 2 Jun 1999 18:13:10 -0400 (EDT) From: Bill Fumerola To: Tom Hukins Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/11967: p5-Apache port out of date In-Reply-To: <199906022220.PAA02277@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 On Wed, 2 Jun 1999, Tom Hukins wrote: > Please see ports/10385, which contains a proposal for an > apache13-modperl port and an explanation of why I think p5-Apache > should be killed off. > > It seems a shame that there are two separate efforts to create an > Apache+mod_perl port. Of course, if p5-Apache is considered > superior, I'll gladly accept that decision. Hmm.. I need to go import that. Sorry I've taken so long. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.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 Wed Jun 2 21:20: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 38E6D14DB3 for ; Wed, 2 Jun 1999 21:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA29078; Wed, 2 Jun 1999 21:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 9928E14DD9; Wed, 2 Jun 1999 21:11:31 -0700 (PDT) Message-Id: <19990603041131.9928E14DD9@hub.freebsd.org> Date: Wed, 2 Jun 1999 21:11:31 -0700 (PDT) From: tempest@ecst.csuchico.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/12001: wmcdplay 1.0Beta1 05/09/1998 sometimes skips to next track in 1-track repeat Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12001 >Category: ports >Synopsis: wmcdplay 1.0Beta1 05/09/1998 sometimes skips to next track in 1-track repeat >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: Wed Jun 2 21:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ken Lui >Release: 3.2 release >Organization: N/A >Environment: FreeBSD black.tmpest1.org 3.2-RELEASE FreeBSD 3.2-RELEASE #11: Tue Jun 1 21:04:12 PDT 1999 root@black.tmpest1.org:/usr/src/sys/compile/BLACK i386 >Description: With 1-track repeat enabled, sometimes the next track will begin playing after the current one ends rather than repeating the current one. >How-To-Repeat: Launch wmcdplay, load audio CD, click on --> so it looks like ,--->| "- Select desired track (preferrably a short one), and play. After a few plays, the current track will eventually end and the next track begins playing, and it will repeat until the next track is selected and so on. >Fix: The problem is in cdctl.h:trackinfo(). Here's the diff. Convention may be different than how others use diff to create the patch, but the new one is designated "---". This difference is based on the port and not the original wmcdplay. Have emailed the original author, shawkie@geocities.com, although his web site is unavailable as of 06/02/1999. Will also send email to patch author clkao@cirx.org *** wmcdplay/cdctl.h.orig Wed Jun 2 20:46:18 1999 --- wmcdplay/cdctl.h Wed Jun 2 20:20:29 1999 *************** *** 348,358 **** #endif } void trackinfo(struct cd_sub_channel_info *subchnl){ if(status_state==ssPlaying || status_state==ssPaused){ status_pos=((subchnl->what.position.absaddr.msf.minute) * 60 + subchnl->what.position.absaddr.msf.second) * 75 + subchnl->what.position.absaddr.msf.frame - CD_MSF_OFFSET; for(status_track=0;status_trackwhat.position.absaddr.msf.minute) * 60 + subchnl->what.position.absaddr.msf.second) * 75 + subchnl->what.position.absaddr.msf.frame - CD_MSF_OFFSET; for(status_track=0;status_trackRelease-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 Jun 2 21:32: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from celerystick.finally.org (p2n207167113185.inetworld.net [207.167.113.185]) by hub.freebsd.org (Postfix) with ESMTP id B515214E94 for ; Wed, 2 Jun 1999 21:31:56 -0700 (PDT) (envelope-from mark@ieng9.ucsd.edu) Received: from localhost (mark@localhost) by celerystick.finally.org (8.9.3/8.9.3) with ESMTP id VAA11739 for ; Wed, 2 Jun 1999 21:30:45 -0700 (PDT) (envelope-from mark@ieng9.ucsd.edu) X-Authentication-Warning: celerystick.finally.org: mark owned process doing -bs Date: Wed, 2 Jun 1999 21:30:45 -0700 (PDT) From: Mark Bermal X-Sender: mark@celerystick.finally.org Reply-To: mbermal@ucsd.edu To: freebsd-ports@freebsd.org Subject: XCircuit Libraries 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 Hello! I'm a student of EE, and I was trying out XCircuit, but I've had a problem w/ the builtin library of objects. It won't load builtins.lps, it it just says "Error in Library" at the bottom of the screen. Ideas? Anybody have working copies of the libraries or useful replacements? Thank You Mark Bermal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jun 2 22: 7: 3 1999 Delivered-To: freebsd-ports@freebsd.org Received: from picnic.mat.net (picnic.mat.net [206.246.122.133]) by hub.freebsd.org (Postfix) with ESMTP id 4435114F0C for ; Wed, 2 Jun 1999 22:06:58 -0700 (PDT) (envelope-from chuckr@picnic.mat.net) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.9.3/8.8.5) with ESMTP id BAA89812; Thu, 3 Jun 1999 01:07:02 -0400 (EDT) Date: Thu, 3 Jun 1999 01:07:02 -0400 (EDT) From: Chuck Robey To: mbermal@ucsd.edu Cc: freebsd-ports@FreeBSD.ORG Subject: Re: XCircuit Libraries 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 On Wed, 2 Jun 1999, Mark Bermal wrote: > Hello! > I'm a student of EE, and I was trying out XCircuit, but I've had a > problem w/ the builtin library of objects. It won't load builtins.lps, it > it just says "Error in Library" at the bottom of the screen. Ideas? > Anybody have working copies of the libraries or useful replacements? What's the date on your port of xcircuit? I built mine, but other than spending 10 minutes playing with it and proving that the libraries *did* work for me, I didn't do much else. I'll investigate as soon as I check you're not using an older port. > > Thank You > > Mark Bermal > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@picnic.mat.net | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run picnic (FreeBSD-current) (301) 220-2114 | and jaunt (Solaris7). ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Jun 2 23:21: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from celerystick.finally.org (p2n207167113185.inetworld.net [207.167.113.185]) by hub.freebsd.org (Postfix) with ESMTP id BC15714E7A for ; Wed, 2 Jun 1999 23:21:01 -0700 (PDT) (envelope-from mark@ieng9.ucsd.edu) Received: from localhost (mark@localhost) by celerystick.finally.org (8.9.3/8.9.3) with ESMTP id XAA20122; Wed, 2 Jun 1999 23:19:35 -0700 (PDT) (envelope-from mark@ieng9.ucsd.edu) X-Authentication-Warning: celerystick.finally.org: mark owned process doing -bs Date: Wed, 2 Jun 1999 23:19:34 -0700 (PDT) From: Mark Bermal X-Sender: mark@celerystick.finally.org To: Chuck Robey Cc: freebsd-ports@FreeBSD.ORG Subject: Re: XCircuit Libraries 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 On Thu, 3 Jun 1999, Chuck Robey wrote: > What's the date on your port of xcircuit? I built mine, but other than > spending 10 minutes playing with it and proving that the libraries *did* > work for me, I didn't do much else. I'll investigate as soon as I check > you're not using an older port. > I'm using xcircuit-1.7, and I fetched it from both ftp.freebsd.org and bach.ece.jhu.edu (auto-fetch failed on bach.ece.jhu.edu, seems that "tim" moved the xcircuit directory or something, and autofetch a metalab had a bad checksum). I tried both, both had same problem, error in library. If someone can manage to send me the working libraries, maybe I can try those to see if it's an error in the program, or just the libraries that were distribute with it. Or am I running an old port? (I just ran ctm b4 the build, .ctm_status of /usr/ports is at ports-cur 2848) Thank You Mark Bermal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jun 3 1:30: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9BB7E150E6 for ; Thu, 3 Jun 1999 01:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA90520; Thu, 3 Jun 1999 01:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from cgiworld.holywar.net (ns2.holywar.net [210.121.195.97]) by hub.freebsd.org (Postfix) with ESMTP id 8783D151D8 for ; Thu, 3 Jun 1999 01:21:31 -0700 (PDT) (envelope-from hollywar@cgiworld.holywar.net) Received: (from hollywar@localhost) by cgiworld.holywar.net (8.9.3/8.9.2) id IAA96597; Thu, 3 Jun 1999 08:23:53 +0900 (KST) (envelope-from hollywar) Message-Id: <199906022323.IAA96597@cgiworld.holywar.net> Date: Thu, 3 Jun 1999 08:23:53 +0900 (KST) From: JunSeon Oh Reply-To: hollywar@holywar.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12002: [New port package] engdic for korean package Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12002 >Category: ports >Synopsis: ?? >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: Thu Jun 3 01:30:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: JunSeon Oh >Release: FreeBSD 3.2-STABLE i386 >Organization: HolyNet >Environment: >Description: >How-To-Repeat: >Fix: engdic-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: # # engdic # engdic/pkg # engdic/pkg/COMMENT # engdic/pkg/DESCR # engdic/pkg/PLIST # engdic/Makefile # engdic/files # engdic/files/md5 # echo c - engdic mkdir -p engdic > /dev/null 2>&1 echo c - engdic/pkg mkdir -p engdic/pkg > /dev/null 2>&1 echo x - engdic/pkg/COMMENT sed 's/^X//' >engdic/pkg/COMMENT << 'END-of-engdic/pkg/COMMENT' XEnglish dictionary for korean utility. END-of-engdic/pkg/COMMENT echo x - engdic/pkg/DESCR sed 's/^X//' >engdic/pkg/DESCR << 'END-of-engdic/pkg/DESCR' Xengdic X------ X Xengdic is a english dictionary for korean working on unix enviroment system. X XOh Junseon END-of-engdic/pkg/DESCR echo x - engdic/pkg/PLIST sed 's/^X//' >engdic/pkg/PLIST << 'END-of-engdic/pkg/PLIST' Xbin/engdic Xshare/engdic/a.dic.gz Xshare/engdic/b.dic.gz Xshare/engdic/c.dic.gz Xshare/engdic/d.dic.gz Xshare/engdic/e.dic.gz Xshare/engdic/f.dic.gz Xshare/engdic/g.dic.gz Xshare/engdic/h.dic.gz Xshare/engdic/i.dic.gz Xshare/engdic/j.dic.gz Xshare/engdic/k.dic.gz Xshare/engdic/l.dic.gz Xshare/engdic/m.dic.gz Xshare/engdic/n.dic.gz Xshare/engdic/o.dic.gz Xshare/engdic/p.dic.gz Xshare/engdic/q.dic.gz Xshare/engdic/r.dic.gz Xshare/engdic/s.dic.gz Xshare/engdic/t.dic.gz Xshare/engdic/u.dic.gz Xshare/engdic/v.dic.gz Xshare/engdic/w.dic.gz Xshare/engdic/x.dic.gz Xshare/engdic/y.dic.gz Xshare/engdic/z.dic.gz X@dirrm share/engdic END-of-engdic/pkg/PLIST echo x - engdic/Makefile sed 's/^X//' >engdic/Makefile << 'END-of-engdic/Makefile' X# New ports collection makefile for: engdic-0.1 X# Version required: 0.1 X# Date created: 3 Jun 1999 X# Whom: Oh Junseon X# X# $Id$ X# X XDISTNAME= engdic-0.1 XCATEGORIES= korean deskutils XMASTER_SITES= ftp://ftp.holywar.net/pub/engdic/ X XMAINTAINER= hollywar@mail.holywar.net X XUSE_GMAKE= yes X Xpre-install: X @(cd ${WRKSRC}; make ) X X.include END-of-engdic/Makefile echo c - engdic/files mkdir -p engdic/files > /dev/null 2>&1 echo x - engdic/files/md5 sed 's/^X//' >engdic/files/md5 << 'END-of-engdic/files/md5' XMD5 (engdic-0.1.tar.gz) = 23b0104d303b08e9302f346b42c36f97 END-of-engdic/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 Jun 3 1:30: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F3BFE15112 for ; Thu, 3 Jun 1999 01:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA90529; Thu, 3 Jun 1999 01:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id C402D151C4; Thu, 3 Jun 1999 01:25:39 -0700 (PDT) Message-Id: <19990603082539.C402D151C4@hub.freebsd.org> Date: Thu, 3 Jun 1999 01:25:39 -0700 (PDT) From: koji@dti.ad.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/12003: www/lynx-ssl build fails Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12003 >Category: ports >Synopsis: www/lynx-ssl build fails >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 3 01:30:03 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Koji Kondo >Release: FreeBSD 3.2-RELEASE >Organization: DTI >Environment: FreeBSD 3.2-STABLE i386 >Description: configure fail. ===> Configuring for lynx-ssl-2.8.1.1 creating cache ./config.cache checking host system type... i386--freebsd3.2 checking for gcc... cc checking whether the C compiler (cc -O -pipe I/usr/local/include/openssl ) works... no configure: error: installation or configuration problem: C compiler cannot create executables. *** Error code 1 Stop. >How-To-Repeat: >Fix: *** Makefile.orig Thu Jun 3 17:22:19 1999 --- Makefile Thu Jun 3 17:22:30 1999 *************** *** 27,33 **** RESTRICTED= "Contains cryptography" GNU_CONFIGURE= YES ! CFLAGS+= I${PREFIX}/include/openssl CONFIGURE_ARGS= --with-screen=ncurses --with-zlib --libdir="${PREFIX}/etc" \ --enable-nsl-fork MAKEFILE= makefile --- 27,33 ---- RESTRICTED= "Contains cryptography" GNU_CONFIGURE= YES ! CFLAGS+= -I${PREFIX}/include/openssl CONFIGURE_ARGS= --with-screen=ncurses --with-zlib --libdir="${PREFIX}/etc" \ --enable-nsl-fork MAKEFILE= makefile >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 Jun 3 4:30: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 432AC151C4 for ; Thu, 3 Jun 1999 04:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA12691; Thu, 3 Jun 1999 04:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 7073814C20 for ; Thu, 3 Jun 1999 04:20:32 -0700 (PDT) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 3.02 #1) id 10pVXx-0003gR-00 for FreeBSD-gnats-submit@freebsd.org; Thu, 03 Jun 1999 13:20:29 +0200 Message-Id: <14162.928408829@axl.noc.iafrica.com> Date: Thu, 03 Jun 1999 13:20:29 +0200 From: Sheldon Hearn Reply-To: Sheldon Hearn To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12004: [PATCH] Upgrade exim port to 3.02 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12004 >Category: ports >Synopsis: [PATCH] Upgrade exim port to 3.02 >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: Thu Jun 3 04:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Sheldon Hearn >Release: FreeBSD 4.0-CURRENT i386 >Organization: UUNET South Africa >Environment: N/A >Description: Suggested commit log: Upgrade to version 3.02, featuring: Simplified handling of domain/host/net/address lists. Regex handling bugfixes and improvements. Bugfixes. Logical improvements. Documentation improvements. WARNING: backward compatability issues. See README.UPDATING in the distribution tarball for details. Change maintainer's address. >How-To-Repeat: N/A >Fix: The following diffs against the existing port will upgrade it to version 3.02. Index: Makefile =================================================================== RCS file: /home/ncvs/ports/mail/exim/Makefile,v retrieving revision 1.27 diff -u -d -r1.27 Makefile --- Makefile 1999/02/10 16:09:48 1.27 +++ Makefile 1999/06/03 08:16:43 @@ -6,15 +6,15 @@ # $Id: Makefile,v 1.27 1999/02/10 16:09:48 markm Exp $ # -DISTNAME= exim-2.12 +DISTNAME= exim-3.02 CATEGORIES= mail MASTER_SITES= ftp://ftp.cus.cam.ac.uk/pub/software/programs/exim/ \ ftp://ftp.quite.net/pub/exim/ \ http://www.exim.org/ftp/ \ ftp://ftp.is.co.za/networking/mail/transport/exim/ -DISTFILES= exim-2.12.tar.gz exim-texinfo-2.10.tar.gz +DISTFILES= exim-3.02.tar.gz exim-texinfo-3.00.tar.gz -MAINTAINER= axl@iafrica.com +MAINTAINER= sheldonh@FreeBSD.ORG # If USE_XLIB is defined, the eximon monitor, which requires X, will be # built. @@ -39,7 +39,7 @@ ${SED} -e "s#XX_BINOWN_XX#${BINOWN}#" \ < ${FILESDIR}/configure.default > ${WRKSRC}/src/configure.default cd ${WRKSRC}/doc && \ - for i in ../../exim-texinfo-2.10/doc/* ; do \ + for i in ../../exim-texinfo-3.00/doc/* ; do \ ln -sf $$i ; \ done Index: files/Makefile =================================================================== RCS file: /home/ncvs/ports/mail/exim/files/Makefile,v retrieving revision 1.8 diff -u -d -r1.8 Makefile --- Makefile 1998/11/18 11:42:46 1.8 +++ Makefile 1999/06/03 11:16:24 @@ -311,12 +311,6 @@ # then whichever of the two options it does have is added to the file name, # whether obtained from PID_FILE_PATH or by default. -# If you set PID_FILE_PATH, then it is your responsibility to ensure that -# Exim is capable of writing to the relevant files. If you have defined -# EXIM_UID and EXIM_GID above, then that uid/gid combination must be able to -# create and write to the files. If the attempt to open the file fails, Exim -# just refrains from trying to write the data. - # The pid file path does not have to be set here; it can be also be set by an # option in the runtime configuration file, which takes precedence over any # setting here. Index: files/configure.default =================================================================== RCS file: /home/ncvs/ports/mail/exim/files/configure.default,v retrieving revision 1.3 diff -u -d -r1.3 configure.default --- configure.default 1998/12/17 10:54:24 1.3 +++ configure.default 1999/05/25 13:04:42 @@ -79,7 +79,7 @@ # expensive, you can specify the networks for which a lookup is done, or # remove the setting entirely. -host_lookup_nets = 0.0.0.0/0 +host_lookup = 0.0.0.0/0 # Exim contains support for the Realtime Blocking List (RBL) that is being @@ -99,7 +99,7 @@ # unscrupulous people out there who will make use of open relays to try to # disguise the source of unsolicited bulk mail. -sender_net_accept_relay = 127.0.0.1/32 +host_accept_relay = "127.0.0.1/32" # If you want Exim to support the "percent hack" for all your local domains, @@ -233,6 +233,8 @@ system_aliases: driver = aliasfile + file_transport = address_file + pipe_transport = address_pipe file = /etc/aliases search_type = lsearch # user = XX_BINOWN_XX @@ -248,6 +250,9 @@ userforward: driver = forwardfile + file_transport = address_file + pipe_transport = address_pipe + reply_transport = address_reply file = .forward no_verify no_expn Index: files/md5 =================================================================== RCS file: /home/ncvs/ports/mail/exim/files/md5,v retrieving revision 1.18 diff -u -d -r1.18 md5 --- md5 1999/02/10 16:09:49 1.18 +++ md5 1999/06/03 08:31:14 @@ -1,2 +1,2 @@ -MD5 (exim-2.12.tar.gz) = 0fb2147e34752cb84d450b61ac89e3fc -MD5 (exim-texinfo-2.10.tar.gz) = ece154c4c8c95e3983d11c5de186005c +MD5 (exim-3.02.tar.gz) = c02fc43a8999c483a8aab24b6aad42cb +MD5 (exim-texinfo-3.00.tar.gz) = b02bbc0477d97d94fe597590be2932ab >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 Jun 3 4:32:41 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A50D615012; Thu, 3 Jun 1999 04:32:40 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA12963; Thu, 3 Jun 1999 04:32:40 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Jun 1999 04:32:40 -0700 (PDT) From: Message-Id: <199906031132.EAA12963@freefall.freebsd.org> To: sheldonh@uunet.co.za, sheldonh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11758: [PATCH] Upgrade exim port to 3.00 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] Upgrade exim port to 3.00 State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Thu Jun 3 04:31:54 PDT 1999 State-Changed-Why: Superseded by PR12004. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jun 3 6:10: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D1F4215272 for ; Thu, 3 Jun 1999 06:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA23348; Thu, 3 Jun 1999 06:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 3 Jun 1999 06:10:02 -0700 (PDT) Message-Id: <199906031310.GAA23348@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Lucio Pileggi Subject: Re: ports/11998: port netscape45-navigator doesn't run Reply-To: Lucio Pileggi Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11998; it has been noted by GNATS. From: Lucio Pileggi To: freebsd-gnats-submit@freebsd.org, crawdad+fbsd@fnal.gov Cc: Subject: Re: ports/11998: port netscape45-navigator doesn't run Date: Thu, 03 Jun 1999 15:07:38 +0200 same problem with the packaged versions: netscape-communicator-4.51 Netscape Communicator suite netscape-navigator-4.5.1 netscape navigator ver 4.5.1 -- Lucio Pileggi Centro Servizi Informatici Facolta' di Ingegneria - Universita' di Pisa Via Giunta Pisano, 28 - 50126 - Pisa Tel 050-553594 Fax 050-560085 - email:lucio@ing.unipi.it To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jun 3 6:52:20 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5236B14DD5; Thu, 3 Jun 1999 06:52:19 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA09005; Thu, 3 Jun 1999 06:52:19 -0700 (PDT) (envelope-from sheldonh@FreeBSD.org) Date: Thu, 3 Jun 1999 06:52:19 -0700 (PDT) From: Message-Id: <199906031352.GAA09005@freefall.freebsd.org> To: cpiazza@home.net, sheldonh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11830: Update net/imcq Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update net/imcq State-Changed-From-To: open->closed State-Changed-By: sheldonh State-Changed-When: Thu Jun 3 06:51:15 PDT 1999 State-Changed-Why: Commited by ache, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jun 3 8:20: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0613C14D1F for ; Thu, 3 Jun 1999 08:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA97733; Thu, 3 Jun 1999 08:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 3 Jun 1999 08:20:02 -0700 (PDT) Message-Id: <199906031520.IAA97733@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Rasmus Kaj Subject: Re: ports/11990 Reply-To: Rasmus Kaj Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11990; it has been noted by GNATS. From: Rasmus Kaj To: bug-followup@FreeBSD.ORG Cc: Rasmus Kaj Subject: Re: ports/11990 Date: Thu, 03 Jun 1999 17:18:42 +0200 >Category: ports >Responsible: freebsd-ports >Synopsis: New port: devel/rstl >Arrival-Date: Wed Jun 2 05:10:00 PDT 1999 Please close this PR. The library contains a serious bug (crashing any program that links with it) and is being fixed. I will submit a new port when the library is fixed. Sorry for the inconvenience. -- = Rasmus Kaj ---------------- rasmus@kaj.a.se - http://www.e.kth.se/~kaj/ \ K=E4rlek och musik =E4r de enda spr=E5k som inte beh=F6ver =F6= vers=E4ttas \--------------------------------------------- http://www.Raditex.se/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jun 3 8:34:56 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3260B14D1F; Thu, 3 Jun 1999 08:34:55 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA98886; Thu, 3 Jun 1999 08:34:54 -0700 (PDT) (envelope-from billf@FreeBSD.org) Date: Thu, 3 Jun 1999 08:34:54 -0700 (PDT) From: Message-Id: <199906031534.IAA98886@freefall.freebsd.org> To: kaj@raditex.se, billf@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11990: New port: devel/rstl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: devel/rstl State-Changed-From-To: open->closed State-Changed-By: billf State-Changed-When: Thu Jun 3 08:34:30 PDT 1999 State-Changed-Why: Submitter reports a fatal flaw in this version of the software. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jun 3 10:50: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A70B914D14 for ; Thu, 3 Jun 1999 10:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA12366; Thu, 3 Jun 1999 10:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 42DB01554D; Thu, 3 Jun 1999 10:43:05 -0700 (PDT) Message-Id: <19990603174305.42DB01554D@hub.freebsd.org> Date: Thu, 3 Jun 1999 10:43:05 -0700 (PDT) From: ambrisko@whistle.com To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/12009: Add port tcpview (a visual tcpdump) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12009 >Category: ports >Synopsis: Add port tcpview (a visual tcpdump) >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 Jun 3 10:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Doug Ambrisko >Release: -current June/99 >Organization: Whistle >Environment: FreeBSD 770z.whistle.com 4.0-CURRENT FreeBSD 4.0-CURRENT #5: Tue Jun 1 16:48:07 PDT 1999 ambrisko@770z.whistle.com:/usr/home/ambrisko/current/usr/src/sys/compile/THINK i386 >Description: We don't have this port >How-To-Repeat: >Fix: begin 664 tcpview.tgz M'XL(`(:\5C<``^T]:W?;-K+]*O\*-&TW4DH]2(IZI4Y7D>2$IWI=D6Z2L[M' MI4C(XIHB>4G*C]W;_WX'`"D^1#EV$KLOXD2R``P&@\',8`8$D4!WKTQ\7?_J M$1-J-MIM"7V%D-`06N0OI$;X-\R@5EN0)+'%\RV$>%YJ2U\AZ3&)BM+.#S0/ MH:^T[C-;R"/EM&3C MX&325]318JG(*BG9!(';J]<]\]+?V37X@^W:A5/[MUO7/'UC7F&_#HWJMJ-7 M`\>Q_'HD92>`2)ZJ\!DM3DL1R_]^O3']P,(UW=F>G+P^E\?#Y7`T'TV'RBE" M]9WOU=_S_*)5-VW=VAFX_G[;^_:_\]E"58;RXM?Z#<_3?B[-P*];V/<#O3GYKAO_.4C0S1/?]1UH%[F?_6RTP$TT1#`7BA5:[ M5=C_ITCI^=\:C\'SC]E_U&YFYE\4F\W"_C]%F@PE5$Y8_AIPHW;QGPHZ19K6 MT9I&BV]U5IVVWM%6W94(<\3S*VW=D0RA,*5_@A3IOZL%^N:15H`'V'^Q);2) M_@M"L[#_3Y&R\T__5C7M2_9QM_UOBA(OL/GG(01HBC#_S793+.S_4Z07+UZ@ M*/:K.9YY45(W.]1W/20(,`^]9J,G-!'?[8HGU6IU#UI2=QB=X15"7=#6GB#T M(&X'J.[)BW0B>20VN&83T2Q"W\!G.#J#$$"!108R@\%LKL+/ZDPX^1K)T\'X M?$CKJG*M!B5C^34Z!3C2%JD@I!AI'D9KQT/!!B-E9S?1%?9\T[$)2`(=JKZ& MV0U,G91G$,,7C2P<%]O7IAW%%@22=HA0U?*P[UA7I.NOT7LHA9;6^RWY"L@7 MSR>H0J8-?5D6-M#*M#7O%ID^B+L#5/$"6!:S4B M03R3QR2FA1`2VE#:+$?7K'K")0Z`-Q$Q9SO+0F`>-[:VQ08:G(W[;Q0H4U1HW%\,EZP$<'Q;ID)0 M@1^A")*?D0!4J+`R+H;"^IMRD745#ID_SL$T'+J#?5G(+\BZ/('L2%Q7B`22 M]:1[IAN@,JBHZSD7GK:M`$NT`'DXV'FV'_)'WY@V*+-M(`>*;EWL<[0Y-/LW M+&D(&V8`+*70E-6WSL[SL;4F%G4R//VE!L$>:?<+Y&<*R3L^RX>$C&Y<$!\S ML&Z1`38?>M.=K6M:)E@%QT;>SL+(!]6G9F2FH.9S'^BZQ,APL&\_#Y!E0N9" MUVL47=_R'8YD:3VR'3*BK7.%*8DU!ZTPF"5JFRY-^P(]U_SG'$B'J6^0KME0 MC30J?8QEH?0]*I5M\0-0U6=*N`: MI#?2)U#ORDOTSQ2PCB+;Q5.15U0"1=LD=36_';5C!^V2NDO;?9UMQTS:0<.4 M+E?8?%BF'?1*P!R=+$TEDD75S>K&)IJJ+`85]'_0`UM]"3^ZD5#]Z?B!#INJ MK,O4]BHLRN1777/=*LBOMK,"_R&L)*(%UM-::?JE7]/SW$EP%*5N[$XFH),> M9:/3$]L]$-"C'F6KQ;5#NTGPD.S>?<(WL.#8Z)UI7.``;?#-,H"BY37-OXQ" MSOH+4H7**R<('#`8X,@8SC5Z43_`X`*!.%A:V@I;+PD_OD??F&L;.(26RS,/ MX]?*<+F,F^D;""A>^+?^$GN>9?K!/_[UDK3!MF&N0U-AKEESF+(!;7OEF`9H MMV'ZKJ7=+O6=Y\'JMR3-RZ2N\I*.V\"!9EI5P]EJIIW'8K$G=GL2'[,XT^)A M;(8*3F@T8T:S`BEB-4NZ!GZENNQ//_1*)>#KEL628&IOJ9UE3"WY@:>[MV52 MLESMUAQZ!BV>50A+2RL/:YLQ2O%@HBEG*=0IALGU0(G6253?&<\XRJ\\9+E* M(((C)L9F_%?R%>)]]A*!]#F>#X[)=_X_;4`-Q#/&3/J+GY;OY.EP]JX,)5^C MHQR.4H24_&:5*#WD""#L2G>AEBJFV.1:S;VS^.DD/D0N/HOJ7$9+(M<"NQ4Q MVMT%1,G+S_]I/\^E]V#Z#GG\[BA]M"%RPXGQ;E$)[& MD'$.6<_T*)IKQ`OSRQ7*N+I3]4([PJ)2< MPCQ=SA.W'W_\D?5$)J8M\C`X,:T$R<'=1[A_@_$F5ZR'C3JQ5.T,]_@Z)1VL M4Q3\88N4V.(BR:'.7"NQE4+2L[^7OX%(["W6#.SUF,-#MP@@Q/,"T][L8]7% M0*DGZ>"N$%]CNU_U1K,.=`N-'M_N22T4-B4N/_H6E<_?59X1YL4L^SY>Y.-) M)8714VEP$.JN!L%*;?,JN5:D(6B<0B"R%;Y#O))LC8V!*AS48:F'FCQN-;O[ M+9`PEF_OS7.,1_-/V7+T.GZ.C)O6YHR85 MVB[8'"M?[FSS)J_2O]+SBF\,+Z\8/LNM?W&OL9"!;YV='430^WE8^P31E7!T MF`0"/HR"9,TST"?LK35PZS?/Z)1MC:HI=EI[-3JF'&0^][`/TZ&$1/"W,+?`%.JD^V<4A$>FZ;=#,QN"4E`\TR M(6*P3:W&D/0A\J!(?'!T?>Q=88/5L.H%<7X#SUSM:+!,XO2=3_;_D`]QN,XB M]]#<`=ZM#Z&N"0L0A._DK[,+&)ZM`ZPV=1IRU@P";)#M@2O3@!]D M>Z"'RGPE0JX[P/HD`3[#YA%SP/8$M!4)O?4]*R`>-T.RZ#XD4>8+3W,WA&83 M1@F\,:']+8?*0H6A2_6`V)23T#T<%Z4B$H2[^V3X[NXXVLTP''VWA4*V#0$, MZ9PYE*VV7H):C`RV+%40B2,V`F0Y,G]"^1X-('P`*A0SC M&FO!#N::=$GFDLH)$.P[Z^":S$P8[M#.UHX%"Q9!"/&6[5Q;&*(O@K''D/WR MBTH'ZSG&3@\B+B61X2M8\MQH9_BX/'(,X5B[AA@+N/D:>Y?8PK=0LG(\+7!@ M)LA@"2MUQV8L`#^U]OPYFF*3\FZ_2>2LHYE(=6@[,0Q5D"PR8-LMV:$!OAAD M^Q,L!)1BAHSM9&V=`$?C]6%X'F`WT!HJ,FP,Y1_Y+M:)[)-%V?$8JFN/B+[- ME,`G._VA.JIO904ILS/U77\Q0O![OIC]+`]'0^!T7X$"&&U_.D3O9/7M[%R% MWQ_0Z/U\,5(4-%L@>3(?RZ,APP4H%OVI*H\4+GP\(4_?0EG_M3R6U0^4@C-9G9)>SZ#;/IKW%ZH\.!_W%VA^ MOIC/E!$;4!V^$P$DV:.`+'N(P6)R3_=-XQ__0J<$_M`Q`-.Y-5T_7/8%U&W4 M&]VZP*.&T"/K/H^VNJ[9-HX6_?'K,5GU]^:=]A^9S)F-AJ,!6LC*(-I[!(M% M5DD@:>OZ9,Y!WFFCK8QUF$UV3Z<8P6Z%VD_U('_&TOH;0V8YH$[K$GHTM MM`$U(=JB.SL+9'5+U!>,1Y#B!F.";H&SL/3-B[5YX9>)*?HO?$IL>Q2)9`B_ M$OCD8K-YP&*S^8S%ANRO%8M-L=@4BTVQV/QQ%AO6/G_]V-#U0T1=H=Z0ZH)$ M][T[/4G(6S]22U?XT"AZ8-`?RV^FZ55%I4]+R31,Y+F26%B88"C`H%LKK&M$6RCP#Z>OT+D%4G.375*!LM*.UE!B&#BMC];; MUQ_4T7*V&(X6B9'$A3`MJCH>+4?3H=R?'JR9X>$$?T,7,Y#4M7G#1!5^>UBS MR$`\!P9*SBZ`Z$%E=L6?JK.WXT3G-%^^J93@@TZ1'3@;"WYF()0TA)^&>*O. MI@DQ#K7LMO\OGVL9'G##5G;#F#.=(/ M96$,7HI8BE)82A$?,\41\W**D]`IKI'?D>`1U\'QJV$D?J]H.`G^&3Z*4/@H MA8]2^"B%C_*'\E$^.R`&ZTE>G@JZ%46$8%\5( M2NWVD8",$0,T_<_Y2%$3]*8KD)AL?]!X/OZ0UQ2*4?,P4K?QM>EOT$*>D].M M6[`Q?BJ<+4'-8#)G5*O8!&*SGZ,V4Y/1^/2],S!?@_H)E,_9L1V`%UL0<) M\QDH)0.EY$(M9C-U#T(RF?KQ;/;3^7P/P;)9'*/^<"Q/?XKQA`4Y<"F83/V[ MA:R.!OW!V]$>*B[*@TV#92`&T$,"A&4/*)K,?AXE:"+9`QAR/4$"AF2S7$J. M/F?DRH=)"B3,9Z`F/PWE>+YH+DO+)`E!$(4S)2:'9K-22*IB M,23?L=03=Y>>O+GS*&BST>,31VS2#;*^=:\X"2JV.;XI)3QL6M#>'VH* MSRF]I>?LXC-*;\,#F6A_WBF"G&0@)\Q0''`N+# M-2!&"?1T[Y_L"[`#Y8?+>'8"=KH'X7GVB!P[>,6.9J&L6W47[9]SJ$LS#"]P MB",2GNHZU.UFEQ/BMQ-+)7+,MFRXZ)3$QCXXB/];]EP.A896-SNH.3NN?JR MQ.6RK;LB.7E"S`E]IW\G4WSA5H%PUVTO(IC8A*2*7/SN4YHE@6'FRV0D1A]E@65NS2`" MI6=LLKC2$%D.H1_("\_O+7.5H8-5R.11A^V;V?='6*U"*B^&F#'XM[[)Y]/2 M_OZGRXM'NP/XWO=_\8(D-.G]CZ+4*.[_>HJ4G/_!;#(93=4OWL='[W\4XON_ MR.X6F*(FWR[N_WJ*1"Y>6FGT\2V[O.(/:L>*]&DIJ?_#D3)8/$(?#]-_$0O^?(A7Z_]=.2?V?CV7ERZ_^][G_/_;_>$FB][\6]W\^35J9=G0%(3H) M,_1.J7V.7A-UDKG.K_[ZS?RP,,`6^<\"LL47V,:>J$-6JBRZ_>KD([=8U:/KK@KK5J0B%:E(12I2D8I4I"(5J4A%*E*1 /BE2DOU3Z?V54S^D`>``` ` 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 Thu Jun 3 11:42:41 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6125814FB3; Thu, 3 Jun 1999 11:42:40 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA17479; Thu, 3 Jun 1999 11:42:40 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Thu, 3 Jun 1999 11:42:40 -0700 (PDT) From: Message-Id: <199906031842.LAA17479@freefall.freebsd.org> To: koji@dti.ad.jp, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/12003: www/lynx-ssl build fails Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: www/lynx-ssl build fails State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Thu Jun 3 11:42:29 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jun 3 12:27:48 1999 Delivered-To: freebsd-ports@freebsd.org Received: from peewee.cdrom.com (mg130-099.ricochet.net [204.179.130.99]) by hub.freebsd.org (Postfix) with ESMTP id 45D8814F8F; Thu, 3 Jun 1999 12:25:25 -0700 (PDT) (envelope-from jkh@peewee.cdrom.com) Received: from peewee (jkh@localhost [127.0.0.1]) by peewee.cdrom.com (8.8.8/8.8.8) with ESMTP id DAA10792; Thu, 3 Jun 1999 03:49:49 -0700 (PDT) (envelope-from jkh@peewee.cdrom.com) To: Eivind Eklund Cc: Jordan Hubbard , David Scheidt , freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) In-reply-to: Your message of "Wed, 02 Jun 1999 17:35:28 +0200." <19990602173528.B70808@bitbox.follo.net> Date: Thu, 03 Jun 1999 03:49:49 -0700 Message-ID: <10787.928406989@peewee> From: Jordan Hubbard Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > of useless. It's like doing uphill testing of a fat guy on a bicycle > against a Lamborghini - you "know" the result beforehand. Unfortunately, what you're probably not aware of is that the fat guy also has a JATO unit strapped to the back of his bicycle. Don't make assumptions. :-) > If extraction of the ports collection (not files in general, just the > ports collection) is slower using soft updates than using "async" > mode, then it seems some elevator sorting isn't working the way it Extraction of ALL the distribution bits is faster with async than it is with soft updates. To put it another, more practical, way - if you timed the installation with a stopwatch, with or without ports, the async policy would win and Kirk has even pointed that out in other emails. Given that, I have to honestly wonder why you've been arguing so strongly for soft updates being used in the installation. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jun 3 13:10: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F42E159C7 for ; Thu, 3 Jun 1999 13:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA25899; Thu, 3 Jun 1999 13:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 8361A14F38 for ; Thu, 3 Jun 1999 13:03:10 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id C3A0A1478; Thu, 3 Jun 1999 13:03:06 -0700 (PDT) Message-Id: <19990603200306.C3A0A1478@norn.ca.eu.org> Date: Thu, 3 Jun 1999 13:03:06 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12010: Update: graphics/tgif Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12010 >Category: ports >Synopsis: Update: graphics/tgif >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 Jun 3 13:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #218: Tue Jun 1 19:22:37 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: Update to 4.1.15 >How-To-Repeat: >Fix: Index: tgif/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/graphics/tgif/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- Makefile 1999/05/22 07:48:20 1.15 +++ Makefile 1999/06/03 19:33:13 @@ -1,12 +1,12 @@ # New ports collection makefile for: tgif -# Version required: 4.1.11 +# Version required: 4.1.15 # Date created: 30 Jan 1999 # Whom: bmc@WillsCreek.COM # # $Id: Makefile,v 1.15 1999/05/22 07:48:20 mharo Exp $ # -DISTNAME= tgif-4.1.11 +DISTNAME= tgif-4.1.15 CATEGORIES= graphics MASTER_SITES= ftp://bourbon.cs.umd.edu/pub/tgif/ \ ftp://ftp.cs.ucla.edu/pub/tgif/ Index: tgif/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/graphics/tgif/files/md5,v retrieving revision 1.13 diff -u -r1.13 md5 --- md5 1999/05/22 07:48:23 1.13 +++ md5 1999/06/03 19:37:45 @@ -1 +1 @@ -MD5 (tgif-4.1.11.tar.gz) = 0d00991cd36db5d8e8ae550ca71cb95a +MD5 (tgif-4.1.15.tar.gz) = 3656598fe1f7963ba581fd9c821da6e5 Index: tgif/patches/patch-aa =================================================================== RCS file: /cvs/FreeBSD/ports/graphics/tgif/patches/patch-aa,v retrieving revision 1.10 diff -u -r1.10 patch-aa --- patch-aa 1999/05/22 07:48:25 1.10 +++ patch-aa 1999/06/03 19:39:54 @@ -1,11 +1,11 @@ ---- tgif.man.orig Wed May 19 16:05:42 1999 -+++ tgif.man Fri May 21 23:51:19 1999 +--- tgif.man.orig Thu Jun 3 12:39:14 1999 ++++ tgif.man Thu Jun 3 12:39:45 1999 @@ -8,7 +8,7 @@ .\" .\" .\" --.TH tgif n "Version 4.1 Patchlevel 10 and Above" "Tgif" -+.TH tgif 1L "Version 4.1 Patchlevel 11 and Above" "Tgif" +-.TH tgif n "Version 4.1 Patchlevel 15 and Above" "Tgif" ++.TH tgif 1L "Version 4.1 Patchlevel 15 and Above" "Tgif" .\" .SH NAME .\" -Chris >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 Jun 3 13:20: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B6E40159CF for ; Thu, 3 Jun 1999 13:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA26724; Thu, 3 Jun 1999 13:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 638F01599E for ; Thu, 3 Jun 1999 13:13:55 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id B4E8C1478; Thu, 3 Jun 1999 13:13:52 -0700 (PDT) Message-Id: <19990603201352.B4E8C1478@norn.ca.eu.org> Date: Thu, 3 Jun 1999 13:13:52 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12011: Update: print/lyx Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12011 >Category: ports >Synopsis: Update: print/lyx >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 Jun 3 13:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #218: Tue Jun 1 19:22:37 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: Update to lyx 1.0.3. I removed the ONLY_FOR_ARCHS= i386 because steve recently added xforms for FreeBSD/alpha. I have no idea if it works though. files removed: patch-aa >How-To-Repeat: >Fix: Index: lyx/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/print/lyx/Makefile,v retrieving revision 1.29 diff -u -r1.29 Makefile --- Makefile 1999/05/05 14:09:34 1.29 +++ Makefile 1999/06/03 20:09:47 @@ -1,12 +1,12 @@ # New ports collection makefile for: lyx -# Version required: 1.0.2 +# Version required: 1.0.3 # Date created: Sa 12 Okt 1996 19:20:51 MET DST # Whom: Andreas Klemm # # $Id: Makefile,v 1.29 1999/05/05 14:09:34 flathill Exp $ # -DISTNAME= lyx-1.0.2 +DISTNAME= lyx-1.0.3 CATEGORIES= print MASTER_SITES= ftp://ftp.lyx.org/pub/lyx/stable/ \ ftp://la1ad.uio.no/pub/lyx/ \ @@ -22,9 +22,6 @@ .endif LIB_DEPENDS= xforms.0:${PORTSDIR}/x11-toolkits/xforms \ Xpm.4:${PORTSDIR}/graphics/xpm - -# depends on xforms -ONLY_FOR_ARCHS= i386 USE_PERL5= yes GNU_CONFIGURE= yes Index: lyx/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/print/lyx/files/md5,v retrieving revision 1.10 diff -u -r1.10 md5 --- md5 1999/05/05 14:09:35 1.10 +++ md5 1999/06/03 19:37:47 @@ -1 +1 @@ -MD5 (lyx-1.0.2.tar.gz) = fb1ba5950f11c239a7311e6e8c33be6b +MD5 (lyx-1.0.3.tar.gz) = c7a8191795160de3a138a66041dc8de6 Index: lyx/patches/patch-aa =================================================================== RCS file: patch-aa diff -N patch-aa --- /tmp/cvsr43112 Thu Jun 3 13:09:50 1999 +++ /dev/null Thu Jun 3 13:07:11 1999 @@ -1,12 +0,0 @@ ---- src/filetools.C 1999/02/11 14:46:11 1.2 -+++ src/filetools.C 1999/05/07 13:09:00 1.3 -@@ -517,7 +517,7 @@ - delete[] with_drive; - #endif - } else -- TempBase = safer_getcwd(); -+ TempBase = GetCWD(); //safer_getcwd(); - #ifdef __EMX__ - if (AbsolutePath(TempRel)) - return TempBase.substring(0,1) + TempRel; - Index: lyx/pkg/PLIST =================================================================== RCS file: /cvs/FreeBSD/ports/print/lyx/pkg/PLIST,v retrieving revision 1.13 diff -u -r1.13 PLIST --- PLIST 1999/05/05 14:09:36 1.13 +++ PLIST 1999/06/03 19:53:13 @@ -8,6 +8,7 @@ share/locale/fi/LC_MESSAGES/lyx.mo share/locale/fr/LC_MESSAGES/lyx.mo share/locale/hu/LC_MESSAGES/lyx.mo +share/locale/it/LC_MESSAGES/lyx.mo share/locale/nl/LC_MESSAGES/lyx.mo share/locale/no/LC_MESSAGES/lyx.mo share/locale/pl/LC_MESSAGES/lyx.mo @@ -16,6 +17,7 @@ share/locale/sl/LC_MESSAGES/lyx.mo share/locale/sv/LC_MESSAGES/lyx.mo share/locale/tr/LC_MESSAGES/lyx.mo +share/locale/wa/LC_MESSAGES/lyx.mo share/lyx/CREDITS share/lyx/bind/broadway.bind share/lyx/bind/cua.bind @@ -49,6 +51,9 @@ share/lyx/doc/de_Intro.lyx share/lyx/doc/de_Tutorial.lyx share/lyx/doc/de_UserGuide.lyx +share/lyx/doc/es_Intro.lyx +share/lyx/doc/es_Tutorial.lyx +share/lyx/doc/es_splash.lyx share/lyx/doc/escher-lsd.eps share/lyx/doc/fr_Intro.lyx share/lyx/doc/fr_Tutorial.lyx @@ -74,7 +79,10 @@ share/lyx/examples/beispiel_gelyxt.lyx share/lyx/examples/beispiel_roh.lyx share/lyx/examples/de_splash.lyx +share/lyx/examples/ejemplo_con_lyx.lyx +share/lyx/examples/ejemplo_sin_lyx.lyx share/lyx/examples/example_lyxified.lyx +share/lyx/examples/es_splash.lyx share/lyx/examples/example_raw.lyx share/lyx/examples/exemple_brut.lyx share/lyx/examples/exemple_lyxifie.lyx @@ -82,7 +90,11 @@ share/lyx/examples/landslide.lyx share/lyx/examples/noweb2lyx.lyx share/lyx/examples/pl_splash.lyx +share/lyx/examples/primer_lyxan.lyx +share/lyx/examples/primer_surov.lyx +share/lyx/examples/pt_splash.lyx share/lyx/examples/scriptone.lyx +share/lyx/examples/sl_splash.lyx share/lyx/examples/splash.lyx share/lyx/images/amssymb.xbm share/lyx/images/amssymb.xpm -Chris >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 Jun 3 13:30: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DD359159DD for ; Thu, 3 Jun 1999 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA27733; Thu, 3 Jun 1999 13:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 4556515A1A; Thu, 3 Jun 1999 13:22:14 -0700 (PDT) Message-Id: <19990603202214.4556515A1A@hub.freebsd.org> Date: Thu, 3 Jun 1999 13:22:14 -0700 (PDT) From: osa@freebsd.org.ru To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/12012: new version of postfix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12012 >Category: ports >Synopsis: new version of postfix >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jun 3 13:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Osokin Sergey >Release: FreeBSD-4.0-CURRENT >Organization: FreeBSD Russian Group >Environment: 4.0-CURRENT FreeBSD 4.0-CURRENT #0: Wed Jun 2 22:21:17 MSD 1999 >Description: New version of postfix-19990601 >How-To-Repeat: >Fix: 1st patch: ============= --- Makefile.orig Mon May 3 01:14:42 1999 +++ Makefile Fri Jun 4 00:15:42 1999 @@ -3,11 +3,10 @@ # Date created: 18 Mar 1999 # Whom: torstenb # -# $Id: Makefile,v 1.2 1999/05/02 20:26:38 torstenb Exp $ # -DISTNAME= postfix-19990317-pl03 -PKGNAME= postfix-alpha-19990317.03 +DISTNAME= postfix-19990601 +PKGNAME= postfix-19990601 CATEGORIES= mail MASTER_SITES= ftp://ftp.merit.edu/postfix/ \ ftp://ftp.snoopy.net/pub/mirrors/postfix/ \ @@ -53,9 +52,12 @@ @${INSTALL} -C -o root -g wheel -m 755 ${WRKSRC}/conf/postfix-script-sgid \ ${PREFIX}/etc/postfix/postfix-script @mkdir -p -m 0755 ${PREFIX}/libexec/postfix - @for f in bounce cleanup fsstone local master pickup pipe \ - qmgr showq smtp smtp-sink smtp-source smtpd \ - trivial-rewrite ; do \ + @for f in bounce cleanup error fsstone local master pickup pipe \ + qmgr showq smtp smtpd trivial-rewrite ; do \ + ${INSTALL} -C -o root -g wheel -m 0755 ${WRKSRC}/libexec/$$f \ + ${PREFIX}/libexec/postfix/$$f ;\ + done + @for f in smtp-sink smtp-source ; do \ ${INSTALL} -C -o root -g wheel -m 0755 ${WRKSRC}/bin/$$f \ ${PREFIX}/libexec/postfix/$$f ;\ done ============== 2nd patch: ============ --- files/md5.orig Tue Mar 30 00:15:08 1999 +++ files/md5 Thu Jun 3 23:25:45 1999 @@ -1 +1 @@ -MD5 (postfix-19990317-pl03.tar.gz) = d40f5773f4886ecbff40908588f07406 +MD5 (postfix-19990601.tar.gz) = adf54dfceb7950587b3e1a0966e84026 >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 Jun 3 14: 0: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 44B7514C35 for ; Thu, 3 Jun 1999 14:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA38835; Thu, 3 Jun 1999 14:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 3 Jun 1999 14:00:03 -0700 (PDT) Message-Id: <199906032100.OAA38835@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Bill Fumerola Subject: Re: ports/12012: new version of postfix Reply-To: Bill Fumerola Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/12012; it has been noted by GNATS. From: Bill Fumerola To: osa@freebsd.org.ru Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/12012: new version of postfix Date: Thu, 3 Jun 1999 12:44:58 -0400 (EDT) On Thu, 3 Jun 1999 osa@freebsd.org.ru wrote: > +DISTNAME= postfix-19990601 > +PKGNAME= postfix-19990601 Redundant. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.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 Thu Jun 3 14:20: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A0BB61555B for ; Thu, 3 Jun 1999 14:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA40946; Thu, 3 Jun 1999 14:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 66CFF14E1F; Thu, 3 Jun 1999 14:16:03 -0700 (PDT) Message-Id: <19990603211603.66CFF14E1F@hub.freebsd.org> Date: Thu, 3 Jun 1999 14:16:03 -0700 (PDT) From: osa@freebsd.org.ru To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/12015: new postfix port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12015 >Category: ports >Synopsis: new postfix port >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jun 3 14:20:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Osokin Sergey >Release: 4.0-CURRENT >Organization: FreeBSD Russian Group >Environment: 4.0-CURRENT FreeBSD 4.0-CURRENT #0: Wed Jun 2 22:21:17 MSD 1999 >Description: Too Sorry. In 12013 patch for Makefile is not corrent. Here is new patches for old version of postfix. >How-To-Repeat: >Fix: 1st patch: ============ --- Makefile.orig Mon May 3 01:14:42 1999 +++ Makefile Fri Jun 4 01:06:58 1999 @@ -3,11 +3,9 @@ # Date created: 18 Mar 1999 # Whom: torstenb # -# $Id: Makefile,v 1.2 1999/05/02 20:26:38 torstenb Exp $ # -DISTNAME= postfix-19990317-pl03 -PKGNAME= postfix-alpha-19990317.03 +DISTNAME= postfix-19990601 CATEGORIES= mail MASTER_SITES= ftp://ftp.merit.edu/postfix/ \ ftp://ftp.snoopy.net/pub/mirrors/postfix/ \ @@ -27,7 +25,7 @@ postfix.1 postkick.1 postlock.1 postlog.1 postmap.1 postsuper.1 \ sendmail.1 MAN5= access.5 aliases.5 canonical.5 relocated.5 transport.5 virtual.5 -MAN8= bounce.8 cleanup.8 defer.8 local.8 master.8 pickup.8 pipe.8 qmgr.8 \ +MAN8= bounce.8 cleanup.8 defer.8 error.8 local.8 master.8 pickup.8 pipe.8 qmgr.8 \ showq.8 smtp.8 smtpd.8 trivial-rewrite.8 SHAREMODE= 0644 @@ -53,9 +51,12 @@ @${INSTALL} -C -o root -g wheel -m 755 ${WRKSRC}/conf/postfix-script-sgid \ ${PREFIX}/etc/postfix/postfix-script @mkdir -p -m 0755 ${PREFIX}/libexec/postfix - @for f in bounce cleanup fsstone local master pickup pipe \ - qmgr showq smtp smtp-sink smtp-source smtpd \ - trivial-rewrite ; do \ + @for f in bounce cleanup error fsstone local master pickup pipe \ + qmgr showq smtp smtpd trivial-rewrite ; do \ + ${INSTALL} -C -o root -g wheel -m 0755 ${WRKSRC}/libexec/$$f \ + ${PREFIX}/libexec/postfix/$$f ;\ + done + @for f in smtp-sink smtp-source ; do \ ${INSTALL} -C -o root -g wheel -m 0755 ${WRKSRC}/bin/$$f \ ${PREFIX}/libexec/postfix/$$f ;\ done ============ 2nd patch ============ --- files/md5.orig Tue Mar 30 00:15:08 1999 +++ files/md5 Thu Jun 3 23:25:45 1999 @@ -1 +1 @@ -MD5 (postfix-19990317-pl03.tar.gz) = d40f5773f4886ecbff40908588f07406 +MD5 (postfix-19990601.tar.gz) = adf54dfceb7950587b3e1a0966e84026 ============= >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 Jun 3 14:48:13 1999 Delivered-To: freebsd-ports@freebsd.org Received: from neptune.psn.net (unknown [207.211.58.16]) by hub.freebsd.org (Postfix) with ESMTP id 4200D158C6 for ; Thu, 3 Jun 1999 14:48:11 -0700 (PDT) (envelope-from andrews@technologist.com) Received: from 5042-243.008.popsite.net ([209.224.140.243] helo=shadow) by neptune.psn.net with smtp (PSN Internet Service 2.12 #3) id 10pfLN-0001qG-00; Thu, 3 Jun 1999 14:48:09 -0700 Message-Id: <3.0.6.32.19990603174121.007b3910@mail.psn.net> X-Sender: andrews@mail.psn.net X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Thu, 03 Jun 1999 17:41:21 -0400 To: koji@dti.ad.jp From: Will Andrews Subject: Re: ports/12003: www/lynx-ssl build fails Cc: ports@FreeBSD.ORG In-Reply-To: <19990603082539.C402D151C4@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Sorry I couldn't use send-pr to reply to this message. However, relevant information has been posted here. At 01:25 AM 6/3/99 -0700, you wrote: >>Number: 12003 >>Category: ports >>Synopsis: www/lynx-ssl build fails >>Confidential: no >>Severity: serious >>Priority: low >>Responsible: freebsd-ports >>State: open >>Quarter: >>Keywords: >>Date-Required: >>Class: sw-bug >>Submitter-Id: current-users >>Arrival-Date: Thu Jun 3 01:30:03 PDT 1999 >>Closed-Date: >>Last-Modified: >>Originator: Koji Kondo >>Release: FreeBSD 3.2-RELEASE >>Organization: >DTI >>Environment: >FreeBSD 3.2-STABLE i386 uname -srm: FreeBSD 3.1-RELEASE i386 >>Description: >configure fail. > >===> Configuring for lynx-ssl-2.8.1.1 >creating cache ./config.cache >checking host system type... i386--freebsd3.2 >checking for gcc... cc >checking whether the C compiler (cc -O -pipe I/usr/local/include/openssl ) works... no It should be noted that OpenSSL installs its libraries as /usr/local/include/libssl*.h. Also, that cc thing appears to be a typo.. In the Makefile, line 30: -CFLAGS+= I${PREFIX}/include/openssl CFLAGS+= -I${PREFIX}/include/libssl I reran `make' in the port's toplevel dir, and it succeeded. I also tested the lynx binary that resulted, and it worked with a HTTPS (Thawte SSL Cert) server. :-) -- Will Andrews System Administrator, Gatekeeper Technologies Powered by FreeBSD - http://www.gatekeep.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jun 3 15:41:30 1999 Delivered-To: freebsd-ports@freebsd.org Received: from uni4nn.gn.iaf.nl (osmium.gn.iaf.nl [193.67.144.12]) by hub.freebsd.org (Postfix) with ESMTP id F164114EB3; Thu, 3 Jun 1999 15:41:26 -0700 (PDT) (envelope-from wilko@yedi.iaf.nl) Received: from yedi.iaf.nl (uucp@localhost) by uni4nn.gn.iaf.nl (8.9.2/8.9.2) with UUCP id XAA00957; Thu, 3 Jun 1999 23:52:52 +0200 (MET DST) Received: (from wilko@localhost) by yedi.iaf.nl (8.9.3/8.9.3) id XAA58615; Thu, 3 Jun 1999 23:40:13 +0200 (CEST) (envelope-from wilko) From: Wilko Bulte Message-Id: <199906032140.XAA58615@yedi.iaf.nl> Subject: Re: a two-level port system? (fwd) In-Reply-To: <10787.928406989@peewee> from Jordan Hubbard at "Jun 3, 1999 3:49:49 am" To: jkh@zippy.cdrom.com (Jordan Hubbard) Date: Thu, 3 Jun 1999 23:40:13 +0200 (CEST) Cc: eivind@FreeBSD.ORG, jkh@zippy.cdrom.com, dscheidt@enteract.com, freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG X-Organisation: Private FreeBSD site - Arnhem, The Netherlands X-pgp-info: PGP public key at 'finger wilko@freefall.freebsd.org' X-Mailer: ELM [version 2.4ME+ PL43 (25)] 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 As Jordan Hubbard wrote ... > > of useless. It's like doing uphill testing of a fat guy on a bicycle > > against a Lamborghini - you "know" the result beforehand. > > Unfortunately, what you're probably not aware of is that the fat guy > also has a JATO unit strapped to the back of his bicycle. Don't make > assumptions. :-) You've been reading too much of the Darwin Awards web site ;-) > > If extraction of the ports collection (not files in general, just the > > ports collection) is slower using soft updates than using "async" > > mode, then it seems some elevator sorting isn't working the way it > > Extraction of ALL the distribution bits is faster with async than it > is with soft updates. To put it another, more practical, way - if you > timed the installation with a stopwatch, with or without ports, the > async policy would win and Kirk has even pointed that out in other > emails. Given that, I have to honestly wonder why you've been arguing > so strongly for soft updates being used in the installation. Maybe I'm missing the very obvious: I've always considered (and lots of people who first saw it had the same judgement..) the FreeBSD installation to be fast. Even if you could gain, say, a 10% speedup overall, would that be worth the time/effort? Just playing the devil's (daemon's?) advocate here... | / o / / _ Arnhem, The Netherlands - Powered by FreeBSD - |/|/ / / /( (_) Bulte WWW : http://www.tcja.nl 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 Jun 3 17:40:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9758815272 for ; Thu, 3 Jun 1999 17:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA54332; Thu, 3 Jun 1999 17:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from lambic.physics.montana.edu (lambic.physics.montana.edu [153.90.192.128]) by hub.freebsd.org (Postfix) with ESMTP id 8D5BF15272 for ; Thu, 3 Jun 1999 17:32:07 -0700 (PDT) (envelope-from handy@lambic.physics.montana.edu) Received: (from handy@localhost) by lambic.physics.montana.edu (8.8.8/8.8.7) id SAA06300; Thu, 3 Jun 1999 18:31:54 -0600 (MDT) (envelope-from handy) Message-Id: <199906040031.SAA06300@lambic.physics.montana.edu> Date: Thu, 3 Jun 1999 18:31:54 -0600 (MDT) From: handy@physics.montana.edu Reply-To: handy@physics.montana.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12016: windowmaker upgrade: 0.53.0 -> 0.60.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12016 >Category: ports >Synopsis: windowmaker upgrade: 0.53.0 -> 0.60.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: Thu Jun 3 17:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Brian Handy >Release: FreeBSD 2.2.8-STABLE i386 >Organization: MSU - Physics >Environment: >Description: In what has become a rich and time-honored tradition, the windowmaker people have released a new version of wmaker while I'm on travel. As my laptop is in the shop, this upgrade is being done in the blind, on a 2.2-STABLE box: caveat emptor. However, may the buyer also note it'll work on a 2.2 box. >How-To-Repeat: >Fix: I did this blind -- it patches, it compiles, I'm not absolutely sure it runs. This is a popular port, though, so I thought I'd get it out in a timely manner for all my fans. I'll check it over on my 3.x box when I get home in a few days, but I imagine this should work fine. Files removed: pkg/patch-ab diff -urN windowmaker.orig/Makefile windowmaker/Makefile --- windowmaker.orig/Makefile Thu Jun 3 18:03:17 1999 +++ windowmaker/Makefile Thu Jun 3 18:03:31 1999 @@ -1,12 +1,12 @@ # New ports collection makefile for: WindowMaker -# Version required: 0.53.0 +# Version required: 0.60.0 # Date created: August 13, 1997 # Whom: handy@physics.montana.edu # # $Id: Makefile,v 1.51 1999/05/27 07:32:49 tg Exp $ -DISTNAME= WindowMaker-0.53.0 -PKGNAME= windowmaker-0.53.0 +DISTNAME= WindowMaker-0.60.0 +PKGNAME= windowmaker-0.60.0 CATEGORIES= x11-wm windowmaker MASTER_SITES= ${MASTER_SITE_WINDOWMAKER} \ http://jgo.local.net/cool_downloads/wm/ diff -urN windowmaker.orig/files/md5 windowmaker/files/md5 --- windowmaker.orig/files/md5 Thu Jun 3 18:03:16 1999 +++ windowmaker/files/md5 Thu Jun 3 18:05:12 1999 @@ -1,2 +1,2 @@ -MD5 (WindowMaker-0.53.0.tar.bz2) = fecdc560c2c2c98aa1783023aaea9c92 +MD5 (WindowMaker-0.60.0.tar.bz2) = e1685207d36d51a588fcbb0b95f5f1d0 MD5 (WindowMaker-extra-0.1.tar.bz2) = e6fb381da0d207c320f58e7a1fea2a2b diff -urN windowmaker.orig/patches/patch-ab windowmaker/patches/patch-ab --- windowmaker.orig/patches/patch-ab Thu Jun 3 18:03:17 1999 +++ windowmaker/patches/patch-ab Wed Dec 31 17:00:00 1969 @@ -1,26 +0,0 @@ ---- ltconfig.orig Tue Jan 12 06:48:53 1999 -+++ ltconfig Sun Jan 24 22:07:00 1999 -@@ -777,7 +777,7 @@ - ;; - - # FreeBSD 3, at last, uses gcc -shared to do shared libraries. -- freebsd3*) -+ freebsd*) - archive_cmds='$CC -shared -o $lib$libobjs' - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes -@@ -1123,10 +1123,11 @@ - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done' - ;; - --freebsd2* | freebsd3*) -- version_type=sunos -+freebsd*) -+ objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` -+ version_type=freebsd-$objformat - library_names_spec='${libname}${release}.so.$versuffix $libname.so' -- finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir' -+ finish_cmds="PATH=\"\$PATH:/sbin\" OBJFORMAT=$objformat ldconfig -m \$libdir" - shlibpath_var=LD_LIBRARY_PATH - ;; - diff -urN windowmaker.orig/pkg/PLIST windowmaker/pkg/PLIST --- windowmaker.orig/pkg/PLIST Thu Jun 3 18:03:17 1999 +++ windowmaker/pkg/PLIST Thu Jun 3 18:22:46 1999 @@ -33,11 +33,15 @@ GNUstep/Apps/WPrefs.app/tiff/moreanim.tiff GNUstep/Apps/WPrefs.app/tiff/mousesettings.tiff GNUstep/Apps/WPrefs.app/tiff/mousespeed.tiff +GNUstep/Apps/WPrefs.app/tiff/msty1.tiff +GNUstep/Apps/WPrefs.app/tiff/msty2.tiff +GNUstep/Apps/WPrefs.app/tiff/msty3.tiff GNUstep/Apps/WPrefs.app/tiff/newstyle.tiff GNUstep/Apps/WPrefs.app/tiff/nonopaque.tiff GNUstep/Apps/WPrefs.app/tiff/oldstyle.tiff GNUstep/Apps/WPrefs.app/tiff/opaque.tiff GNUstep/Apps/WPrefs.app/tiff/paths.tiff +GNUstep/Apps/WPrefs.app/tiff/smooth.tiff GNUstep/Apps/WPrefs.app/tiff/sound.tiff GNUstep/Apps/WPrefs.app/tiff/speed0.tiff GNUstep/Apps/WPrefs.app/tiff/speed0s.tiff @@ -98,11 +102,15 @@ GNUstep/Apps/WPrefs.app/xpm/moreanim.xpm GNUstep/Apps/WPrefs.app/xpm/mousesettings.xpm GNUstep/Apps/WPrefs.app/xpm/mousespeed.xpm +GNUstep/Apps/WPrefs.app/xpm/msty1.xpm +GNUstep/Apps/WPrefs.app/xpm/msty2.xpm +GNUstep/Apps/WPrefs.app/xpm/msty3.xpm GNUstep/Apps/WPrefs.app/xpm/newstyle.xpm GNUstep/Apps/WPrefs.app/xpm/nonopaque.xpm GNUstep/Apps/WPrefs.app/xpm/oldstyle.xpm GNUstep/Apps/WPrefs.app/xpm/opaque.xpm GNUstep/Apps/WPrefs.app/xpm/paths.xpm +GNUstep/Apps/WPrefs.app/xpm/smooth.xpm GNUstep/Apps/WPrefs.app/xpm/sound.xpm GNUstep/Apps/WPrefs.app/xpm/speed0.xpm GNUstep/Apps/WPrefs.app/xpm/speed0s.xpm @@ -114,7 +122,10 @@ GNUstep/Apps/WPrefs.app/xpm/speed3s.xpm GNUstep/Apps/WPrefs.app/xpm/speed4.xpm GNUstep/Apps/WPrefs.app/xpm/speed4s.xpm +GNUstep/Apps/WPrefs.app/xpm/tdel.xpm +GNUstep/Apps/WPrefs.app/xpm/tedit.xpm GNUstep/Apps/WPrefs.app/xpm/temp.xpm +GNUstep/Apps/WPrefs.app/xpm/textr.xpm GNUstep/Apps/WPrefs.app/xpm/theme.xpm GNUstep/Apps/WPrefs.app/xpm/timer0.xpm GNUstep/Apps/WPrefs.app/xpm/timer0s.xpm @@ -128,6 +139,7 @@ GNUstep/Apps/WPrefs.app/xpm/timer4s.xpm GNUstep/Apps/WPrefs.app/xpm/timer5.xpm GNUstep/Apps/WPrefs.app/xpm/timer5s.xpm +GNUstep/Apps/WPrefs.app/xpm/tnew.xpm GNUstep/Apps/WPrefs.app/xpm/whandling.xpm GNUstep/Apps/WPrefs.app/xpm/windowfocus.xpm GNUstep/Apps/WPrefs.app/xpm/workspace.xpm @@ -349,9 +361,10 @@ share/WindowMaker/menu.zh_CN share/WindowMaker/menu.zh_TW.Big5 share/WindowMaker/plmenu -share/WindowMaker/plmenu.dk +share/WindowMaker/plmenu.da share/WindowMaker/plmenu.fr share/WindowMaker/plmenu.hr +share/WindowMaker/plmenu.it share/WindowMaker/plmenu.zh_CN share/WindowMaker/wmmacros share/WindowMaker/xtree.dat >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 Jun 3 18:45:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2050915A4F; Thu, 3 Jun 1999 18:44:58 -0700 (PDT) (envelope-from jseger@FreeBSD.org) Received: (from jseger@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA60789; Thu, 3 Jun 1999 18:44:58 -0700 (PDT) (envelope-from jseger@FreeBSD.org) Date: Thu, 3 Jun 1999 18:44:58 -0700 (PDT) From: Message-Id: <199906040144.SAA60789@freefall.freebsd.org> To: girgen@partitur.se, jseger@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11877: samba updated to 2.0.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: samba updated to 2.0.4 State-Changed-From-To: open->closed State-Changed-By: jseger State-Changed-When: Thu Jun 3 18:44:43 PDT 1999 State-Changed-Why: Committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jun 3 20: 3:55 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ns1.yes.no (ns1.yes.no [195.204.136.10]) by hub.freebsd.org (Postfix) with ESMTP id 0167B15A56; Thu, 3 Jun 1999 20:03:41 -0700 (PDT) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [195.204.143.218]) by ns1.yes.no (8.9.1a/8.9.1) with ESMTP id FAA21653; Fri, 4 Jun 1999 05:03:40 +0200 (CEST) Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id FAA80717; Fri, 4 Jun 1999 05:03:28 +0200 (MET DST) Date: Fri, 4 Jun 1999 05:03:28 +0200 From: Eivind Eklund To: Jordan Hubbard Cc: David Scheidt , freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: a two-level port system? (fwd) Message-ID: <19990604050327.I77195@bitbox.follo.net> References: <19990602173528.B70808@bitbox.follo.net> <10787.928406989@peewee> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.1i In-Reply-To: <10787.928406989@peewee>; from Jordan Hubbard on Thu, Jun 03, 1999 at 03:49:49AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Jun 03, 1999 at 03:49:49AM -0700, Jordan Hubbard wrote: > > of useless. It's like doing uphill testing of a fat guy on a bicycle > > against a Lamborghini - you "know" the result beforehand. > > Unfortunately, what you're probably not aware of is that the fat guy > also has a JATO unit strapped to the back of his bicycle. Don't make > assumptions. :-) I think the bricks some joker put inside the wheels of the Lamborghini might be more of an issue, actually. Not that I will take it as an assumption... :) > > If extraction of the ports collection (not files in general, just the > > ports collection) is slower using soft updates than using "async" > > mode, then it seems some elevator sorting isn't working the way it > > Extraction of ALL the distribution bits is faster with async than it > is with soft updates. The IMO most relevant benchmark is minimal install + ports - because that's where you see the impact of the ports extraction most. > To put it another, more practical, way - if you timed the > installation with a stopwatch, with or without ports, the async > policy would win and Kirk has even pointed that out in other emails. That's interesting, but not really relevant for my reason for wanting this - which is the psychological effect on the user. I'm not really interested in how long time the installation takes - I'm interested in the user NOT seeing his 100MBit link drop down to 10KB/s download speed during extraction of the ports collection. > Given that, I have to honestly wonder why you've been arguing so > strongly for soft updates being used in the installation. Because I've been assuming that dropping the synchronous writes during the ports collection extract would have a really significant difference. My wish is to fix the ports extraction time, and your previous reply (on IRC) indicated that the reason for not wanting soft updates on the install floppy was the license, not that it didn't fix the speed. Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Jun 3 22: 0:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 558B014FA1 for ; Thu, 3 Jun 1999 22:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA12011; Thu, 3 Jun 1999 22:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from server.research.zopps.fi (ws99.research.zopps.fi [195.165.196.99]) by hub.freebsd.org (Postfix) with ESMTP id 7833A14D9E for ; Thu, 3 Jun 1999 21:54:28 -0700 (PDT) (envelope-from martti@research.zopps.fi) Received: (from uucp@localhost) by server.research.zopps.fi (8.9.3/8.8.8) id HAA65819 for ; Fri, 4 Jun 1999 07:54:29 +0300 (EEST) (envelope-from martti.kuparinen) Received: from ws125.research.zopps.fi(195.165.196.125) via SMTP by ws99.research.zopps.fi, id smtpdQ65813; Fri Jun 4 07:54:24 1999 Received: (from martti@localhost) by ws125.research.zopps.fi (8.9.3/8.8.8) id HAA53801; Fri, 4 Jun 1999 07:54:24 +0300 (EEST) (envelope-from martti@research.zopps.fi) Message-Id: <199906040454.HAA53801@ws125.research.zopps.fi> Date: Fri, 4 Jun 1999 07:54:24 +0300 (EEST) From: martti.kuparinen@ericsson.com Reply-To: martti.kuparinen@ericsson.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12018: [PATCH] ports/security/stunnel update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12018 >Category: ports >Synopsis: ports/security/stunnel needs to be updated to version 3.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: Thu Jun 3 22:00:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Martti Kuparinen >Release: FreeBSD 3.2-RELEASE i386 >Organization: Oy L M Ericsson Ab >Environment: >Description: The current stunnel 2.1 should be updated to 3.x. While waiting for version 3.3, here is 3.2 as so many users have requested it directly from me. >How-To-Repeat: Apply the following patch as # cd /usr/ports/security/stunnel # patch -p1 < /tmp/foobar >Fix: diff -rc old/Makefile stunnel/Makefile *** old/Makefile Fri Jun 4 07:37:19 1999 --- stunnel/Makefile Tue May 4 11:53:31 1999 *************** *** 1,14 **** # New ports collection makefile for: stunnel ! # Version required: 2.1 # Date created: Mon Jan 11 11:53:54 EET 1999 # Whom: Martti Kuparinen # # $Id: Makefile,v 1.4 1999/05/03 02:10:08 steve Exp $ # ! DISTNAME= stunnel-2.1 CATEGORIES= security MASTER_SITES= http://mike.daewoo.com.pl/computer/stunnel/ \ ftp://ftp.fu-berlin.de/unix/security/stunnel/ \ ftp://ftp.uni-freiburg.de/pub/net/stunnel/ \ ftp://ftp.all.de/pub2/unix/security/stunnel/ --- 1,15 ---- # New ports collection makefile for: stunnel ! # Version required: 3.2 # Date created: Mon Jan 11 11:53:54 EET 1999 # Whom: Martti Kuparinen # # $Id: Makefile,v 1.4 1999/05/03 02:10:08 steve Exp $ # ! DISTNAME= stunnel-3.2 CATEGORIES= security MASTER_SITES= http://mike.daewoo.com.pl/computer/stunnel/ \ + http://opensores.thebunker.net/pub/mirrors/stunnel/ \ ftp://ftp.fu-berlin.de/unix/security/stunnel/ \ ftp://ftp.uni-freiburg.de/pub/net/stunnel/ \ ftp://ftp.all.de/pub2/unix/security/stunnel/ *************** *** 28,32 **** --- 29,55 ---- GNU_CONFIGURE= yes WRKSRC= ${WRKDIR}/stunnel MAN8= stunnel.8 + + cert: + @(cd ${WRKSRC}; make cert) + + post-build: + @${ECHO} "" + @${ECHO} "********************************************************************" + @${ECHO} "To create and install a real certificate, execute \"make cert\" before" + @${ECHO} "\"make install\"." + @${ECHO} "" + @${ECHO} "You can also create a real certificate later by executing" + @${ECHO} " # make cert" + @${ECHO} " # cp work/stunnel/stunnel.pem ${PREFIX}/certs/" + @${ECHO} "********************************************************************" + @${ECHO} "" + + post-install: + @${ECHO} "" + @${ECHO} "**************************************************************************" + @${ECHO} "Please check out the FAQ at http://mike.daewoo.com.pl/computer/stunnel/FAQ" + @${ECHO} "**************************************************************************" + @${ECHO} "" .include diff -rc old/files/md5 stunnel/files/md5 *** old/files/md5 Fri Jun 4 07:38:03 1999 --- stunnel/files/md5 Tue May 4 10:03:30 1999 *************** *** 1 **** ! MD5 (stunnel-2.1.tar.gz) = 3409d14c4916be25fe88d5f24c90f7cf --- 1 ---- ! MD5 (stunnel-3.2.tar.gz) = 16efa198ba58561fc835dc1b4bfdd63c diff -rc old/patches/patch-aa stunnel/patches/patch-aa *** old/patches/patch-aa Fri Jun 4 07:38:14 1999 --- stunnel/patches/patch-aa Thu Jun 3 08:59:33 1999 *************** *** 1,38 **** ! --- Makefile.in.orig Mon Jun 1 05:07:59 1998 ! +++ Makefile.in Sun Jan 17 17:12:35 1999 ! @@ -4,18 +4,20 @@ ! ! VERSION=2.1 ! HOST=@host@ ! -SBINDIR=/usr/sbin ! -MANDIR=/usr/man/man8 ! +SBINDIR=$(PREFIX)/sbin ! +MANDIR=$(PREFIX)/man/man8 ! ! CC=@CC@ ! INSTALL=@INSTALL@ ! -CFLAGS=@CFLAGS@ -Wall -I/usr/local/ssl/include ! -LIBS=@LIBS@ -L/usr/local/ssl/lib -lssl -lcrypto ! +CFLAGS=@CFLAGS@ -Wall -I$(PREFIX)/include -I$(PREFIX)/include/openssl ! +LIBS=@LIBS@ -L$(PREFIX)/lib -lssl -lcrypto ${EXTRA_SSL_LIBS} ! + ! +all: stunnel ! ! stunnel: stunnel.o ! $(CC) $(LDFLAGS) -s -o stunnel stunnel.o $(LIBS) ! - mkdir -p ../distrib ! - gzip < stunnel > ../distrib/stunnel-$(VERSION)-$(HOST).gz ! +# mkdir -p ../distrib ! +# gzip < stunnel > ../distrib/stunnel-$(VERSION)-$(HOST).gz ! ! stunnel.o: stunnel.c ! $(CC) -c $(CFLAGS) stunnel.c ! @@ -29,7 +31,7 @@ ! install: $(SBINDIR)/stunnel $(MANDIR)/stunnel.8 ! ! cert: ! - /usr/local/ssl/bin/ssleay req -new -x509 -nodes \ ! + $(PREFIX)/bin/openssl req -new -x509 -nodes \ ! -out server.pem -days 365 -keyout server.pem ! ! clean: --- 1,42 ---- ! *** Makefile.in.orig Fri Apr 16 18:47:06 1999 ! --- Makefile.in Thu Jun 3 08:58:32 1999 ! *************** ! *** 4,10 **** ! ! VERSION=@VERSION@ ! HOST=@host@ ! ! DESTDIR=/usr ! SBINDIR=$(DESTDIR)/sbin ! MANDIR=$(DESTDIR)/man/man8 ! SSLDIR=@SSLDIR@ ! --- 4,10 ---- ! ! VERSION=@VERSION@ ! HOST=@host@ ! ! DESTDIR=$(PREFIX) ! SBINDIR=$(DESTDIR)/sbin ! MANDIR=$(DESTDIR)/man/man8 ! SSLDIR=@SSLDIR@ ! *************** ! *** 12,20 **** ! ! CC=@CC@ ! INSTALL=@INSTALL@ ! ! CFLAGS=@CFLAGS@ -Wall -I$(SSLDIR)/include ! ! LIBS=-L$(SSLDIR)/lib @LIBS@ -lssl -lcrypto ! OBJS=stunnel.o sthreads.o log.o ! ! stunnel: $(OBJS) ! $(CC) $(LDFLAGS) -o stunnel $(OBJS) $(LIBS) ! --- 12,22 ---- ! ! CC=@CC@ ! INSTALL=@INSTALL@ ! ! CFLAGS=@CFLAGS@ -Wall -I$(SSLDIR)/include -I$(SSLDIR)/include/openssl ! ! LIBS=-L$(SSLDIR)/lib @LIBS@ -lssl -lcrypto ${EXTRA_SSL_LIBS} ! OBJS=stunnel.o sthreads.o log.o ! + ! + all: stunnel stunnel.8 ! ! stunnel: $(OBJS) ! $(CC) $(LDFLAGS) -o stunnel $(OBJS) $(LIBS) diff -rc old/patches/patch-ab stunnel/patches/patch-ab *** old/patches/patch-ab Fri Jun 4 07:38:22 1999 --- stunnel/patches/patch-ab Thu Jun 3 11:24:05 1999 *************** *** 0 **** --- 1,13 ---- + *** configure.orig Tue Apr 27 17:33:26 1999 + --- configure Thu Jun 3 11:23:37 1999 + *************** + *** 836,841 **** + --- 836,843 ---- + SSLDIR="/usr/local/ssl" + test -f $SSLDIR/include/ssl.h || SSLDIR="/usr/lib/ssl" + test -f $SSLDIR/include/ssl.h || SSLDIR="/usr" + + test -f $SSLDIR/include/ssl.h || SSLDIR="/usr/local" + + test -f $SSLDIR/include/openssl/ssl.h || SSLDIR="/usr/local" + echo "$ac_t""$SSLDIR" 1>&6 + + cat >> confdefs.h < + + # + + # $Id$ + + # + + + + if [ ! -f config.h ]; then + + echo "** You must run ./configure first **" + + exit 1 + + fi + + if [ ! -f stunnel.8.in ]; then + + echo "** Can not find the manual page source file **" + + exit 1 + + fi + + + + SSLDIR=`grep SSLDIR config.h | sed 's/.*"\(.*\)".*/\1/'` + + sed s+!!SSLDIR!!+${SSLDIR}+g < stunnel.8.in > stunnel.8 >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 Jun 4 1: 3:32 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A19B514CE0; Fri, 4 Jun 1999 01:03:31 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA52004; Fri, 4 Jun 1999 01:03:31 -0700 (PDT) (envelope-from tg@FreeBSD.org) Date: Fri, 4 Jun 1999 01:03:31 -0700 (PDT) From: Message-Id: <199906040803.BAA52004@freefall.freebsd.org> To: handy@physics.montana.edu, tg@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/12016: windowmaker upgrade: 0.53.0 -> 0.60.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: windowmaker upgrade: 0.53.0 -> 0.60.0 State-Changed-From-To: open->closed State-Changed-By: tg State-Changed-When: Fri Jun 4 01:01:10 PDT 1999 State-Changed-Why: Committed, thanks. I added some calls to ldconfig in the Makefile and PLIST. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jun 4 2:29:44 1999 Delivered-To: freebsd-ports@freebsd.org Received: from rucus.ru.ac.za (rucus.ru.ac.za [146.231.29.2]) by hub.freebsd.org (Postfix) with SMTP id F178A14FD9 for ; Fri, 4 Jun 1999 02:29:34 -0700 (PDT) (envelope-from nbm@rucus.ru.ac.za) Received: (qmail 79185 invoked by uid 1003); 4 Jun 1999 09:31:34 -0000 Date: Fri, 4 Jun 1999 11:31:34 +0200 From: Neil Blakey-Milner To: ports@FreeBSD.org Subject: port configuration suggestions Message-ID: <19990604113134.A78000@rucus.ru.ac.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi I've collected some stuff I've been working on, and I've put it up at http://rucus.ru.ac.za/~nbm/portconf/portconf.html. Basically it concerns the adding of a portconf target to bsd.port.mk, which then checks what sort of configuration is requested, and applies it as necessary. At the moment there is one method, the use of "pdlg", which displays a dialog window asking the user to select which options they would like with regards to building a port, based on a configuration file which comes with the port. It can work in batch mode too, simply returning default settings without any user query. Any comments would be greatly appreciated, and I'll try get a more challenging (and working) example later. Neil -- Neil Blakey-Milner nbm@rucus.ru.ac.za To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jun 4 3:30: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A5FB14BE4 for ; Fri, 4 Jun 1999 03:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA65484; Fri, 4 Jun 1999 03:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 4 Jun 1999 03:30:02 -0700 (PDT) Message-Id: <199906041030.DAA65484@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Sheldon Hearn Subject: Re: ports/12004: [PATCH] Upgrade exim port to 3.02 Reply-To: Sheldon Hearn Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/12004; it has been noted by GNATS. From: Sheldon Hearn To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/12004: [PATCH] Upgrade exim port to 3.02 Date: Fri, 04 Jun 1999 12:23:55 +0200 Grrrr. A bug was uncovered in the script that produces the texinfo documentation. Unfortunately, it's Philip's policy to keep the version number of the doc tarballs concurrent with the major release number of the software. Please use this diff for files/md5. Thanks, Sheldon. Index: files/md5 =================================================================== RCS file: /home/ncvs/ports/mail/exim/files/md5,v retrieving revision 1.18 diff -u -d -r1.18 md5 --- md5 1999/02/10 16:09:49 1.18 +++ md5 1999/06/04 10:21:31 @@ -1,2 +1,2 @@ -MD5 (exim-2.12.tar.gz) = 0fb2147e34752cb84d450b61ac89e3fc -MD5 (exim-texinfo-2.10.tar.gz) = ece154c4c8c95e3983d11c5de186005c +MD5 (exim-3.02.tar.gz) = c02fc43a8999c483a8aab24b6aad42cb +MD5 (exim-texinfo-3.00.tar.gz) = c0e8bde7adfbbf30de8f9a6889976d87 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jun 4 3:50: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2641E14D68 for ; Fri, 4 Jun 1999 03:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA67649; Fri, 4 Jun 1999 03:50:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Fri, 4 Jun 1999 03:50:02 -0700 (PDT) Message-Id: <199906041050.DAA67649@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Junseon Oh Subject: RE : ports/12002 Reply-To: Junseon Oh Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/12002; it has been noted by GNATS. From: Junseon Oh To: bug-followup@FreeBSD.ORG Cc: Subject: RE : ports/12002 Date: Fri, 04 Jun 1999 10:48:31 +0000 This is a multi-part message in MIME format. --------------14C5228220D37BDE67CAA2C4 Content-Type: text/plain; charset=iso-2022-kr Content-Transfer-Encoding: 7bit package name has changed.. engdic-0.1 -> ko-engdic-0.1 and some bug fixed , makesum updated. --------------14C5228220D37BDE67CAA2C4 Content-Type: text/plain; charset=iso-2022-kr; name="engdic-port" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="engdic-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: # # . # ./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' XEnglish dictionary utility for korean. END-of-./pkg/COMMENT echo x - ./pkg/DESCR sed 's/^X//' >./pkg/DESCR << 'END-of-./pkg/DESCR' Xengdic X------ X Xengdic is a english dictionary for korean working on unix enviroment system. X XSpecial thanks to : KwangSuk Lee (Dictionary data maker) X XOh Junseon END-of-./pkg/DESCR echo x - ./pkg/PLIST sed 's/^X//' >./pkg/PLIST << 'END-of-./pkg/PLIST' Xbin/engdic Xshare/engdic/a.dic.gz Xshare/engdic/b.dic.gz Xshare/engdic/c.dic.gz Xshare/engdic/d.dic.gz Xshare/engdic/e.dic.gz Xshare/engdic/f.dic.gz Xshare/engdic/g.dic.gz Xshare/engdic/h.dic.gz Xshare/engdic/i.dic.gz Xshare/engdic/j.dic.gz Xshare/engdic/k.dic.gz Xshare/engdic/l.dic.gz Xshare/engdic/m.dic.gz Xshare/engdic/n.dic.gz Xshare/engdic/o.dic.gz Xshare/engdic/p.dic.gz Xshare/engdic/q.dic.gz Xshare/engdic/r.dic.gz Xshare/engdic/s.dic.gz Xshare/engdic/t.dic.gz Xshare/engdic/u.dic.gz Xshare/engdic/v.dic.gz Xshare/engdic/w.dic.gz Xshare/engdic/x.dic.gz Xshare/engdic/y.dic.gz Xshare/engdic/z.dic.gz X@dirrm share/engdic 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 (engdic-0.1.tar.gz) = 2c76671260ff0c7aee9ff772606d927b END-of-./files/md5 echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection makefile for: engdic-0.1 X# Version required: 0.1 X# Date created: 3 Jun 1999 X# Whom: Oh Junseon X# X# $Id$ X# X XDISTNAME= engdic-0.1 XPKGNAME= ko-engdic-0.1 XCATEGORIES= korean deskutils XMASTER_SITES= ftp://ftp.holywar.net/pub/engdic/ X XMAINTAINER= hollywar@mail.holywar.net X XUSE_GMAKE= yes X Xpre-install: X @(cd ${WRKSRC}; make ) X X.include END-of-./Makefile exit --------------14C5228220D37BDE67CAA2C4-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jun 4 9: 0:34 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E42AD14C99; Fri, 4 Jun 1999 09:00:32 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA60274; Fri, 4 Jun 1999 09:00:32 -0700 (PDT) (envelope-from sada@FreeBSD.org) Date: Fri, 4 Jun 1999 09:00:32 -0700 (PDT) From: Message-Id: <199906041600.JAA60274@freefall.freebsd.org> To: crawdad+fbsd@fnal.gov, sada@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11998: port netscape45-navigator doesn't run Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port netscape45-navigator doesn't run State-Changed-From-To: open->closed State-Changed-By: sada State-Changed-When: Fri Jun 4 08:57:06 PDT 1999 State-Changed-Why: Try new version of compat22 and please send report to ports ML. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jun 4 10:58:54 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3185F15A99; Fri, 4 Jun 1999 10:58:53 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA71894; Fri, 4 Jun 1999 10:58:53 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Fri, 4 Jun 1999 10:58:53 -0700 (PDT) From: Message-Id: <199906041758.KAA71894@freefall.freebsd.org> To: cpiazza@home.net, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/12010: Update: graphics/tgif Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: graphics/tgif State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Fri Jun 4 10:58:43 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jun 4 11: 7:53 1999 Delivered-To: freebsd-ports@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [206.67.97.83]) by hub.freebsd.org (Postfix) with ESMTP id 9B72A14C01; Fri, 4 Jun 1999 11:07:37 -0700 (PDT) (envelope-from billf@jade.chc-chimes.com) Received: from localhost (billf@localhost) by jade.chc-chimes.com (8.8.8/8.8.8) with SMTP id OAA05348; Fri, 4 Jun 1999 14:10:26 -0400 (EDT) (envelope-from billf@jade.chc-chimes.com) Date: Fri, 4 Jun 1999 14:10:26 -0400 (EDT) From: Bill Fumerola To: Matt Behrens , freebsd-ports@FreeBSD.ORG Cc: Narvi , Roger Marquis , security@FreeBSD.ORG Subject: Re: SSH2 (in FreeBSD-Questions) 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 On Fri, 4 Jun 1999, Matt Behrens wrote: > Yep. Works on maybe half the ports. Some override PREFIX themselves; > some have commands with /usr/local hardcoded in; some packages even > ignore configure command-line switches to change their paths, > preferring /usr/local. send-pr(1) > The PLIST that comes out of ports is usually a pretty poor > representation of what is actually installed. For fun sometime, > you should try installing a lot of ports then uninstalling them. > Check out what's left over in /usr/local send-pr(1) We try to make these things conform. If you find one(s) that doesn't please tell us. It's normally a simple patch. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.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 Fri Jun 4 11:25:21 1999 Delivered-To: freebsd-ports@freebsd.org Received: from gungnir.fnal.gov (gungnir.fnal.gov [131.225.80.1]) by hub.freebsd.org (Postfix) with ESMTP id 561CD15432; Fri, 4 Jun 1999 11:25:18 -0700 (PDT) (envelope-from crawdad@gungnir.fnal.gov) Received: from gungnir.fnal.gov (localhost [127.0.0.1]) by gungnir.fnal.gov (8.9.1/8.9.1) with ESMTP id NAA05436; Fri, 4 Jun 1999 13:25:18 -0500 (CDT) Message-Id: <199906041825.NAA05436@gungnir.fnal.gov> To: sada@FreeBSD.org Cc: freebsd-ports@FreeBSD.org From: "Matt Crawford" Subject: Re: ports/11998: port netscape45-navigator doesn't run In-reply-to: Your message of Fri, 04 Jun 1999 09:00:32 PDT. <199906041600.JAA60274@freefall.freebsd.org> Date: Fri, 04 Jun 1999 13:25:18 -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Synopsis: port netscape45-navigator doesn't run > ... > State-Changed-Why: > Try new version of compat22 and please send report to ports ML. All better now, thanks! Matt Crawford To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jun 4 13:32:37 1999 Delivered-To: freebsd-ports@freebsd.org Received: from bubba.whistle.com (s205m7.whistle.com [207.76.205.7]) by hub.freebsd.org (Postfix) with ESMTP id 0FB5415B37; Fri, 4 Jun 1999 13:32:10 -0700 (PDT) (envelope-from archie@whistle.com) Received: (from archie@localhost) by bubba.whistle.com (8.9.2/8.9.2) id NAA84053; Fri, 4 Jun 1999 13:32:07 -0700 (PDT) From: Archie Cobbs Message-Id: <199906042032.NAA84053@bubba.whistle.com> Subject: New ports question To: asami@freebsd.org Date: Fri, 4 Jun 1999 13:32:07 -0700 (PDT) Cc: freebsd-ports@freebsd.org X-Mailer: ELM [version 2.4ME+ PL38 (25)] 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 Satoshi (PW), I've looked at http://www.freebsd.org/~asami/cvsguide.txt but still have one question: why do you recommend that people create new ports via "cvs import" instead of via "cvs add"? It's not like the new port has some master original coming from another vendor, etc. Thanks, -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jun 4 14:10:15 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5350415B99 for ; Fri, 4 Jun 1999 14:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA85669; Fri, 4 Jun 1999 14:10:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from germanium.xtalwind.net (germanium.xtalwind.net [205.160.242.5]) by hub.freebsd.org (Postfix) with ESMTP id 01AA31520E for ; Fri, 4 Jun 1999 14:05:51 -0700 (PDT) (envelope-from jack@germanium.xtalwind.net) Received: (from jack@localhost) by germanium.xtalwind.net (8.9.3/8.9.3) id RAA48487; Fri, 4 Jun 1999 17:05:40 -0400 (EDT) Message-Id: <199906042105.RAA48487@germanium.xtalwind.net> Date: Fri, 4 Jun 1999 17:05:40 -0400 (EDT) From: jack@germanium.xtalwind.net Reply-To: jack@germanium.xtalwind.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12024: New port of asfsm-1.0pre15 Afterstep file system monitor Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12024 >Category: ports >Synopsis: New port of asfsm-1.0pre15 Afterstep file system monitor >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 Jun 4 14:10:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 3.2-STABLE i386 >Organization: >Environment: >Description: Port fo asfsm-1.0pre15 a dockable Afterstep file system monitor >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/sysutils/asfsm # /usr/ports/sysutils/asfsm/Makefile # /usr/ports/sysutils/asfsm/files # /usr/ports/sysutils/asfsm/files/md5 # /usr/ports/sysutils/asfsm/patches # /usr/ports/sysutils/asfsm/patches/patch-aa # /usr/ports/sysutils/asfsm/pkg # /usr/ports/sysutils/asfsm/pkg/PLIST # /usr/ports/sysutils/asfsm/pkg/COMMENT # /usr/ports/sysutils/asfsm/pkg/DESCR # echo c - /usr/ports/sysutils/asfsm mkdir -p /usr/ports/sysutils/asfsm > /dev/null 2>&1 echo x - /usr/ports/sysutils/asfsm/Makefile sed 's/^X//' >/usr/ports/sysutils/asfsm/Makefile << 'END-of-/usr/ports/sysutils/asfsm/Makefile' X# New ports collection makefile for: asfsm X# Version required: asfsm-1.0pre15 X# Date created: 4 June 1999 X# Whom: jack X# X XDISTNAME= asfsm-1.0pre15 XPKGNAME= asfsm-1.0p15 XCATEGORIES= sysutils afterstep XMASTER_SITES= http://www.tigr.net/afterstep/as-apps/download/asfsm/ X XMAINTAINER= jack@germnaium.xtalwind.net X XLIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm X XUSE_X_PREFIX= yes XGNU_CONFIGURE= yes XCONFIGURE_ARGS+= --x-includes=${X11BASE}/include/X11 X XMAN1= asfsm.1 X Xdo-install: X ${INSTALL_MAN} ${WRKSRC}/asfsm.man ${PREFIX}/man/man1/asfsm.1 X ${INSTALL_PROGRAM} ${WRKSRC}/asfsm ${PREFIX}/bin X Xpost-install: X @${ECHO_MSG} "" X @${ECHO_MSG} "If you would like to be able to mount and umount file systems" X @${ECHO_MSG} "using asfsm, as root, type \`chmod 4555 ${PREFIX}/bin/asfsm\`" X @${ECHO_MSG} "NOTE: This opens a SECURITY HOLE as ALL users will have this ability." X @${ECHO_MSG} "" X X.include END-of-/usr/ports/sysutils/asfsm/Makefile echo c - /usr/ports/sysutils/asfsm/files mkdir -p /usr/ports/sysutils/asfsm/files > /dev/null 2>&1 echo x - /usr/ports/sysutils/asfsm/files/md5 sed 's/^X//' >/usr/ports/sysutils/asfsm/files/md5 << 'END-of-/usr/ports/sysutils/asfsm/files/md5' XMD5 (asfsm-1.0pre15.tar.gz) = 2e0956f60bd2c3612066c484b2197089 END-of-/usr/ports/sysutils/asfsm/files/md5 echo c - /usr/ports/sysutils/asfsm/patches mkdir -p /usr/ports/sysutils/asfsm/patches > /dev/null 2>&1 echo x - /usr/ports/sysutils/asfsm/patches/patch-aa sed 's/^X//' >/usr/ports/sysutils/asfsm/patches/patch-aa << 'END-of-/usr/ports/sysutils/asfsm/patches/patch-aa' X*** asfsm.c.orig Sun Oct 18 06:02:09 1998 X--- asfsm.c Fri Jun 4 11:10:15 1999 X*************** X*** 98,107 **** X int flag=0; X X /* figure out which "df -" command to use */ X! tempfile=popen("df -Bk","r"); X fscanf(tempfile,"%s",word); X if (!strcmp(word,"Filesystem")) { X! sprintf(dfcommand,"df -Bk"); X } else { X tempfile=popen("df -a","r"); X fscanf(tempfile,"%s",word); X--- 98,107 ---- X int flag=0; X X /* figure out which "df -" command to use */ X! tempfile=popen("df -k","r"); X fscanf(tempfile,"%s",word); X if (!strcmp(word,"Filesystem")) { X! sprintf(dfcommand,"df -k"); X } else { X tempfile=popen("df -a","r"); X fscanf(tempfile,"%s",word); X*************** X*** 135,161 **** X } X fclose(tempfile); X X- /* detect which user mount/unmount command to use */ X- /* by giving umnt a bum parameter (-h) and seeing if it */ X- /* returns anything about an illegal option or if it just says */ X- /* command not found. Different shells have different messages */ X- /* for not finding a command, and which behaves differently too, */ X- /* so this seems a reasonable way to do it. */ X- tempfile=popen("umnt -h > /usr/tmp/testumnt 2> /usr/tmp/testumnt; cat /usr/tmp/testumnt; rm /usr/tmp/testumnt","r"); X- while(!feof(tempfile)) { X- fscanf(tempfile,"%s",word); X- if (!strcmp("option",word)) { X- /* the response must have been X- umnt: ERROR: Illegal option -- h X- or something like it, the command exists */ X- sprintf(mountcmd,"mnt "); X- sprintf(umountcmd,"umnt "); X- flag=1; X- break; X- } X- } X- pclose(tempfile); X- X if (flag==0) { X /* otherwise, the mount/unmount commands must be used */ X sprintf(mountcmd,"mount "); X--- 135,140 ---- X*************** X*** 374,380 **** X fs[counter].percent, X fs[counter].mountdir); X if (strlen(fs[counter].mountdir)>0 && counter<23) { X! if (atoi(fs[counter].blocks)>0 || showzero==1) { X counter++; X } X } else { X--- 353,360 ---- X fs[counter].percent, X fs[counter].mountdir); X if (strlen(fs[counter].mountdir)>0 && counter<23) { X! if ((atoi(fs[counter].blocks)>0 || showzero==1) && X! (strcmp(fs[counter].mountdir, "/proc"))){ X counter++; X } X } else { X*************** X*** 721,727 **** X }; X X if (!feof(fstabfile)) { X! if (buffer[0]!='#') { X strcpy(fstab[fstabcounter].filesystem, X ""); X strcpy(fstab[fstabcounter].mountdir,""); X--- 701,707 ---- X }; X X if (!feof(fstabfile)) { X! if (buffer[0]!='#' && strncmp(buffer, "proc", 4)) { X strcpy(fstab[fstabcounter].filesystem, X ""); X strcpy(fstab[fstabcounter].mountdir,""); END-of-/usr/ports/sysutils/asfsm/patches/patch-aa echo c - /usr/ports/sysutils/asfsm/pkg mkdir -p /usr/ports/sysutils/asfsm/pkg > /dev/null 2>&1 echo x - /usr/ports/sysutils/asfsm/pkg/PLIST sed 's/^X//' >/usr/ports/sysutils/asfsm/pkg/PLIST << 'END-of-/usr/ports/sysutils/asfsm/pkg/PLIST' Xbin/asfsm END-of-/usr/ports/sysutils/asfsm/pkg/PLIST echo x - /usr/ports/sysutils/asfsm/pkg/COMMENT sed 's/^X//' >/usr/ports/sysutils/asfsm/pkg/COMMENT << 'END-of-/usr/ports/sysutils/asfsm/pkg/COMMENT' XFile-system monitor for the AfterStep window manager. END-of-/usr/ports/sysutils/asfsm/pkg/COMMENT echo x - /usr/ports/sysutils/asfsm/pkg/DESCR sed 's/^X//' >/usr/ports/sysutils/asfsm/pkg/DESCR << 'END-of-/usr/ports/sysutils/asfsm/pkg/DESCR' XThis is a file-system monitor for the AfterStep window manager. It fits nicely Xin the Wharf. END-of-/usr/ports/sysutils/asfsm/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 Fri Jun 4 14:10:18 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CA0D515B9B for ; Fri, 4 Jun 1999 14:10:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA85683; Fri, 4 Jun 1999 14:10:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from germanium.xtalwind.net (germanium.xtalwind.net [205.160.242.5]) by hub.freebsd.org (Postfix) with ESMTP id 9A3FA15B7E for ; Fri, 4 Jun 1999 14:09:19 -0700 (PDT) (envelope-from jack@germanium.xtalwind.net) Received: (from jack@localhost) by germanium.xtalwind.net (8.9.3/8.9.3) id RAA48758; Fri, 4 Jun 1999 17:09:19 -0400 (EDT) Message-Id: <199906042109.RAA48758@germanium.xtalwind.net> Date: Fri, 4 Jun 1999 17:09:19 -0400 (EDT) From: jack@germanium.xtalwind.net Reply-To: jack@germanium.xtalwind.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12025: New port of asmem-1.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12025 >Category: ports >Synopsis: New port of asmem-1.1 >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 Jun 4 14:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 3.2-STABLE i386 >Organization: >Environment: >Description: The asmem tool is an AfterStep look-n-feel memory utilization monitor for X Windows. asmem shows the levels of utilization of the various kinds of memory and swap space. >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/sysutils/asmem # /usr/ports/sysutils/asmem/Makefile # /usr/ports/sysutils/asmem/files # /usr/ports/sysutils/asmem/files/md5 # /usr/ports/sysutils/asmem/patches # /usr/ports/sysutils/asmem/patches/patch-aa # /usr/ports/sysutils/asmem/patches/patch-ab # /usr/ports/sysutils/asmem/pkg # /usr/ports/sysutils/asmem/pkg/PLIST # /usr/ports/sysutils/asmem/pkg/COMMENT # /usr/ports/sysutils/asmem/pkg/DESCR # echo c - /usr/ports/sysutils/asmem mkdir -p /usr/ports/sysutils/asmem > /dev/null 2>&1 echo x - /usr/ports/sysutils/asmem/Makefile sed 's/^X//' >/usr/ports/sysutils/asmem/Makefile << 'END-of-/usr/ports/sysutils/asmem/Makefile' X# New ports collection makefile for: asfsm X# Version required: asmem-1.1 X# Date created: 4 June 1999 X# Whom: jack X# X XDISTNAME= asmem-1.1 XCATEGORIES= sysutils afterstep XMASTER_SITES= http://www.bewoner.dma.be/Albert/software/ X XMAINTAINER= jack@germnaium.xtalwind.net X XLIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm X XUSE_X_PREFIX= yes X XMAKEFILE= Makefile.UNIX X XMAN1= asmem.1 X Xdo-install: X ${INSTALL_MAN} ${WRKSRC}/asmem.man ${PREFIX}/man/man1/asmem.1 X ${INSTALL} ${COPY} ${STRIP} -o ${BINOWN} -g kmem -m 2755 ${WRKSRC}/asmem ${PREFIX}/bin X X.include END-of-/usr/ports/sysutils/asmem/Makefile echo c - /usr/ports/sysutils/asmem/files mkdir -p /usr/ports/sysutils/asmem/files > /dev/null 2>&1 echo x - /usr/ports/sysutils/asmem/files/md5 sed 's/^X//' >/usr/ports/sysutils/asmem/files/md5 << 'END-of-/usr/ports/sysutils/asmem/files/md5' XMD5 (asmem-1.1.tar.gz) = ccb5985d30a16dade91232a131307ec0 END-of-/usr/ports/sysutils/asmem/files/md5 echo c - /usr/ports/sysutils/asmem/patches mkdir -p /usr/ports/sysutils/asmem/patches > /dev/null 2>&1 echo x - /usr/ports/sysutils/asmem/patches/patch-aa sed 's/^X//' >/usr/ports/sysutils/asmem/patches/patch-aa << 'END-of-/usr/ports/sysutils/asmem/patches/patch-aa' X*** Makefile.UNIX.orig Sat Mar 6 09:13:53 1999 X--- Makefile.UNIX Fri Jun 4 15:41:11 1999 X*************** X*** 5,11 **** X X # The location and names of the X11 libraries X LDIR = -L/usr/X11R6/lib X! LIBS = -lXpm -lX11 X X # The include path to the X11 files X C_INCLUDE = -I. -I/usr/X11R6/include X--- 5,11 ---- X X # The location and names of the X11 libraries X LDIR = -L/usr/X11R6/lib X! LIBS = -lXpm -lX11 -lkvm X X # The include path to the X11 files X C_INCLUDE = -I. -I/usr/X11R6/include X*************** X*** 17,23 **** X X CFLAGS = $(COPTS) $(COMPILE_FLAGS) $(C_INCLUDE) X X! OBJ = asmem.o asmem_x.o read_mem.o x_color.o safecopy.o X X all: asmem X @echo Ready. X--- 17,23 ---- X X CFLAGS = $(COPTS) $(COMPILE_FLAGS) $(C_INCLUDE) X X! OBJ = asmem.o asmem_x.o kvm_read.o x_color.o safecopy.o X X all: asmem X @echo Ready. X*************** X*** 34,40 **** X x_color.o: x_color.c X $(CC) -c $< $(CFLAGS) -o $@ X X! read_mem.o: read_mem.h read_mem.c state.h X $(CC) -c $< $(CFLAGS) -o $@ X X asmem_x.o: asmem_x.c asmem_x.h x_color.h safecopy.h state.h\ X--- 34,40 ---- X x_color.o: x_color.c X $(CC) -c $< $(CFLAGS) -o $@ X X! kvm_read.o: read_mem.h kvm_read.c state.h X $(CC) -c $< $(CFLAGS) -o $@ X X asmem_x.o: asmem_x.c asmem_x.h x_color.h safecopy.h state.h\ END-of-/usr/ports/sysutils/asmem/patches/patch-aa echo x - /usr/ports/sysutils/asmem/patches/patch-ab sed 's/^X//' >/usr/ports/sysutils/asmem/patches/patch-ab << 'END-of-/usr/ports/sysutils/asmem/patches/patch-ab' X*** kvm_read.c.orig Fri Jun 4 15:45:13 1999 X--- kvm_read.c Fri Jun 4 15:49:13 1999 X*************** X*** 0 **** X--- 1,194 ---- X+ /* X+ * This file obtains memory usage via FreeBSD's kvm library. X+ * It is a modified version of read_mem.c which is X+ * Copyright (c) 1999 Albert Dorofeev X+ * use this in place of that file for FreeBSD systems. X+ * X+ * This software is distributed under GPL. For details see LICENSE file. X+ */ X+ X+ X+ #include X+ #include X+ #include X+ #include X+ #include X+ X+ #include "state.h" X+ X+ #include X+ #include X+ #include X+ #include X+ #include X+ #include X+ #include X+ #include X+ #include X+ X+ extern struct asmem_state state; X+ X+ kvm_t *kd; X+ X+ #define SVAR(var) __STRING(var) /* to force expansion */ X+ #define KGET(idx, var) \ X+ KGET1(idx, &var, sizeof(var), SVAR(var)) X+ #define KGET1(idx, p, s, msg) \ X+ KGET2(nl[idx].n_value, p, s, msg) X+ #define KGET2(addr, p, s, msg) \ X+ if (kvm_read(kd, (u_long)(addr), p, s) != s) \ X+ warnx("cannot read %s: %s", msg, kvm_geterr(kd)) X+ X+ struct nlist nl[] = { X+ #define VM_SWAPLIST 0 X+ { "_swaplist" },/* list of free swap areas */ X+ #define VM_SWDEVT 1 X+ { "_swdevt" }, /* list of swap devices and sizes */ X+ #define VM_NSWAP 2 X+ { "_nswap" }, /* size of largest swap device */ X+ #define VM_NSWDEV 3 X+ { "_nswdev" }, /* number of swap devices */ X+ #define VM_DMMAX 4 X+ { "_dmmax" }, /* maximum size of a swap block */ X+ #define X_CNT 5 X+ { "_cnt" }, X+ #define X_BUFSPACE 6 X+ { "_bufspace" }, /* K in buffer cache */ X+ { "" } X+ }; X+ X+ int close_meminfo() X+ { X+ kvm_close(kd); X+ return 0; X+ } X+ X+ int read_meminfo() X+ { X+ X+ int nswap, nswdev, dmmax; X+ int i, avail, nfree, used, bufspace = 0; X+ struct swdevt *sw; X+ struct vmmeter sum; X+ long *perdev; X+ struct rlist head; X+ struct rlisthdr swaplist; X+ struct rlist *swapptr; X+ u_long ptr; X+ X+ KGET(VM_NSWAP, nswap); X+ KGET(VM_NSWDEV, nswdev); X+ KGET(VM_DMMAX, dmmax); X+ KGET1(VM_SWAPLIST, &swaplist, sizeof swaplist, "swaplist"); X+ if ((sw = (struct swdevt*)malloc(nswdev * sizeof(*sw))) == NULL || X+ (perdev = (long *)malloc(nswdev * sizeof(*perdev))) == NULL) X+ errx(1, "malloc"); X+ KGET1(VM_SWDEVT, &ptr, sizeof ptr, "swdevt"); X+ KGET2(ptr, sw, nswdev * sizeof(*sw), "*swdevt"); X+ X+ /* Count up swap space. */ X+ nfree = 0; X+ memset(perdev, 0, nswdev * sizeof(*perdev)); X+ swapptr = swaplist.rlh_list; X+ while (swapptr) { X+ int top, bottom, next_block; X+ X+ KGET2(swapptr, &head, sizeof(struct rlist), "swapptr"); X+ X+ top = head.rl_end; X+ bottom = head.rl_start; X+ X+ nfree += top - bottom + 1; X+ X+ /* X+ * Swap space is split up among the configured disks. X+ * X+ * For interleaved swap devices, the first dmmax blocks X+ * of swap space some from the first disk, the next dmmax X+ * blocks from the next, and so on up to nswap blocks. X+ * X+ * The list of free space joins adjacent free blocks, X+ * ignoring device boundries. If we want to keep track X+ * of this information per device, we'll just have to X+ * extract it ourselves. X+ */ X+ while (top / dmmax != bottom / dmmax) { X+ next_block = ((bottom + dmmax) / dmmax); X+ perdev[(bottom / dmmax) % nswdev] += X+ next_block * dmmax - bottom; X+ bottom = next_block * dmmax; X+ } X+ perdev[(bottom / dmmax) % nswdev] += X+ top - bottom + 1; X+ X+ swapptr = head.rl_next; X+ } X+ X+ avail = 0; X+ for (i = 0; i < nswdev; i++) { X+ int xsize, xfree; X+ X+ /* X+ * Don't report statistics for partitions which have not X+ * yet been activated via swapon(8). X+ */ X+ if (!(sw[i].sw_flags & SW_FREED)) X+ continue; X+ X+ /* The first dmmax is never allocated to avoid trashing of X+ * disklabels X+ */ X+ xsize = sw[i].sw_nblks - dmmax; X+ xfree = perdev[i]; X+ used = xsize - xfree; X+ avail += xsize; X+ } X+ X+ /* X+ * If only one partition has been set up via swapon(8), we don't X+ * need to bother with totals. X+ */ X+ used = avail - nfree; X+ free(sw); X+ free(perdev); X+ X+ state.fresh.swap_total = avail * 512; X+ state.fresh.swap_used = used * 512; X+ state.fresh.swap_free = (avail - used) * 512; X+ X+ KGET(X_CNT, sum); X+ KGET(X_BUFSPACE, bufspace); X+ X+ state.fresh.total = sum.v_page_size * sum.v_page_count; X+ state.fresh.used = sum.v_page_size * (sum.v_page_count - sum.v_free_count); X+ state.fresh.free = sum.v_page_size * sum.v_free_count; X+ state.fresh.shared = 0; X+ state.fresh.cached = sum.v_page_size * sum.v_cache_count; X+ X+ state.fresh.buffers = bufspace; X+ return(0); X+ X+ } X+ X+ int open_meminfo() X+ { X+ X+ if (kd == 0) { X+ kd = kvm_openfiles(NULL, NULL, NULL, O_RDONLY, 0); X+ if (kd != NULL) { X+ if (kvm_nlist(kd, nl) < 0) { X+ errx(1, "kvm_nlist: %s", kvm_geterr(kd)); X+ } X+ X+ if (nl[0].n_type == 0) { X+ errx(1, "no namelist"); X+ } X+ } else { X+ warnx("kvm not available"); X+ return(-1); X+ } X+ } X+ return(0); X+ } X+ X+ END-of-/usr/ports/sysutils/asmem/patches/patch-ab echo c - /usr/ports/sysutils/asmem/pkg mkdir -p /usr/ports/sysutils/asmem/pkg > /dev/null 2>&1 echo x - /usr/ports/sysutils/asmem/pkg/PLIST sed 's/^X//' >/usr/ports/sysutils/asmem/pkg/PLIST << 'END-of-/usr/ports/sysutils/asmem/pkg/PLIST' Xbin/asmem END-of-/usr/ports/sysutils/asmem/pkg/PLIST echo x - /usr/ports/sysutils/asmem/pkg/COMMENT sed 's/^X//' >/usr/ports/sysutils/asmem/pkg/COMMENT << 'END-of-/usr/ports/sysutils/asmem/pkg/COMMENT' Xasmem is an AfterStep look-n-feel memory utilization monitor. END-of-/usr/ports/sysutils/asmem/pkg/COMMENT echo x - /usr/ports/sysutils/asmem/pkg/DESCR sed 's/^X//' >/usr/ports/sysutils/asmem/pkg/DESCR << 'END-of-/usr/ports/sysutils/asmem/pkg/DESCR' XThe asmem tool is an AfterStep look-n-feel memory utilization monitor for X XWindows. asmem shows the levels of utilization of the various kinds of memory Xand swap space. Multiple options for customization are available (colors, Xappearance, other stuff). END-of-/usr/ports/sysutils/asmem/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 Fri Jun 4 16:20:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C91914C09 for ; Fri, 4 Jun 1999 16:20:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA96258; Fri, 4 Jun 1999 16:20:08 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from disco.cdrom.com (disco.cdrom.com [204.216.28.173]) by hub.freebsd.org (Postfix) with ESMTP id AE12015495 for ; Fri, 4 Jun 1999 16:16:25 -0700 (PDT) (envelope-from murray@disco.cdrom.com) Received: (from root@localhost) by disco.cdrom.com (8.9.3/8.9.2) id QAA04263; Fri, 4 Jun 1999 16:12:59 -0700 (PDT) (envelope-from murray) Message-Id: <199906042312.QAA04263@disco.cdrom.com> Date: Fri, 4 Jun 1999 16:12:59 -0700 (PDT) From: murray@cdrom.com Reply-To: murray@cdrom.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12027: nasm port updated to .98 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12027 >Category: ports >Synopsis: Port upgrade >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 Jun 4 16:20:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Murray Stokely >Release: FreeBSD 3.2-STABLE i386 >Organization: Walnut Creek CDROM >Environment: >Description: A shar file is included to update the port with a slightly modified Makefile and new md5 sum. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # . # ./Makefile # ./files # ./files/md5 # ./pkg # ./pkg/COMMENT # ./pkg/DESCR # ./pkg/PLIST # echo c - . mkdir -p . > /dev/null 2>&1 echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection makefile for: nasm X# Version required: 0.98 X# Date created: 7 April 1998 X# Whom: Murray Stokely X# X# $Id: Makefile,v 1.4 1998/04/11 18:47:05 vanilla Exp $ X# X XDISTNAME= nasm-0.98 XCATEGORIES= devel lang XMASTER_SITES= ${MASTER_SITE_SUNSITE} XMASTER_SITE_SUBDIR= devel/lang/assemblers X XMAINTAINER= murray@cdrom.com X XGNU_CONFIGURE= yes X XMAN1= nasm.1 ndisasm.1 X X.include END-of-./Makefile echo c - ./files mkdir -p ./files > /dev/null 2>&1 echo x - ./files/md5 sed 's/^X//' >./files/md5 << 'END-of-./files/md5' XMD5 (nasm-0.98.tar.gz) = fc334b4b05b5f57fe3fc867c42320ef9 END-of-./files/md5 echo c - ./pkg mkdir -p ./pkg > /dev/null 2>&1 echo x - ./pkg/COMMENT sed 's/^X//' >./pkg/COMMENT << 'END-of-./pkg/COMMENT' XGeneral-purpose multi-platform x86 assembler END-of-./pkg/COMMENT echo x - ./pkg/DESCR sed 's/^X//' >./pkg/DESCR << 'END-of-./pkg/DESCR' XThis is a distribution of NASM, the Netwide Assembler. NASM is a Xprototype general-purpose x86 assembler. It will currently output Xflat-form binary files, a.out, COFF and ELF Unix object files, XMicrosoft Win32 and 16-bit DOS object files, OS/2 object files, the Xas86 object format, and a home-grown format called RDF. X XAlso included is NDISASM, a prototype x86 binary-file disassembler Xwhich uses the same instruction table as NASM. X XWWW: http://www.cryogen.com/Nasm END-of-./pkg/DESCR echo x - ./pkg/PLIST sed 's/^X//' >./pkg/PLIST << 'END-of-./pkg/PLIST' Xbin/nasm Xbin/ndisasm END-of-./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 Jun 4 16:27:54 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B7F401509E; Fri, 4 Jun 1999 16:27:53 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA97044; Fri, 4 Jun 1999 16:27:53 -0700 (PDT) (envelope-from billf@FreeBSD.org) Date: Fri, 4 Jun 1999 16:27:53 -0700 (PDT) From: Message-Id: <199906042327.QAA97044@freefall.freebsd.org> To: murray@cdrom.com, billf@FreeBSD.org, freebsd-ports@FreeBSD.org, billf@FreeBSD.org Subject: Re: ports/12027: Port upgrade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port upgrade State-Changed-From-To: open->analyzed State-Changed-By: billf State-Changed-When: Fri Jun 4 16:22:18 PDT 1999 State-Changed-Why: Even though the port wasn't submitted properly, it looks like there are just a few changes. I'll test them. Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: billf Responsible-Changed-When: Fri Jun 4 16:22:18 PDT 1999 Responsible-Changed-Why: I like Murray too much to yell at him for not reading http://www.FreeBSD.org/handbook/porting.html#AEN2536 That and I'll commit this port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Jun 4 19:50: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8DA8115296 for ; Fri, 4 Jun 1999 19:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA09728; Fri, 4 Jun 1999 19:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3743B15170; Fri, 4 Jun 1999 19:47:07 -0700 (PDT) Message-Id: <19990605024707.3743B15170@hub.freebsd.org> Date: Fri, 4 Jun 1999 19:47:07 -0700 (PDT) From: koji@dti.ad.jp To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/12029: update port: net/traceroute Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12029 >Category: ports >Synopsis: update port: net/traceroute >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 Jun 4 19:50:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Koji Kondo >Release: FreeBSD-3.2 RELEASE >Organization: DTI >Environment: FreeBSD 3.2-STABLE i386 >Description: Update to 990522. >How-To-Repeat: >Fix: diff -rc traceroute.old/Makefile traceroute/Makefile *** traceroute.old/Makefile Mon May 3 01:16:15 1999 --- traceroute/Makefile Sat Jun 5 01:37:36 1999 *************** *** 14,20 **** MAINTAINER= dima@Chg.RU ! RELEASEDATE= 990207 NO_WRKSUBDIR= yes MAN8= traceroute.8 --- 14,20 ---- MAINTAINER= dima@Chg.RU ! RELEASEDATE= 990522 NO_WRKSUBDIR= yes MAN8= traceroute.8 diff -rc traceroute.old/files/md5 traceroute/files/md5 *** traceroute.old/files/md5 Mon May 3 01:16:16 1999 --- traceroute/files/md5 Sat Jun 5 01:38:21 1999 *************** *** 1 **** ! MD5 (traceroute_990207.tar.Z) = 8b84b0fc563502ecda14415d93e30c2d --- 1 ---- ! MD5 (traceroute_990522.tar.Z) = f75fb831566c85669baf5e9cade3a14c >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 Jun 4 23: 6:24 1999 Delivered-To: freebsd-ports@freebsd.org Received: from www.gglb.com (unknown [202.103.237.142]) by hub.freebsd.org (Postfix) with ESMTP id 8487B154DA for ; Fri, 4 Jun 1999 23:04:59 -0700 (PDT) (envelope-from gglb@public.nn.gx.cn) Received: from mail pickup service by www.gglb.com with Microsoft SMTPSVC; Sat, 5 Jun 1999 13:50:52 +0800 From: To: Subject: ¹ã¸æÁª°î¸üпìµÝ Date: Sat, 5 Jun 1999 13:50:51 +0800 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3612.1700 Message-ID: <008db5250050569WWW@www.gglb.com> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ¹ã¸æÁª°î¸üпìµÝ---------------- http://www.gglb.com 1¡¢È«ÐÂÍƳö¡°Ãâ·Ñ·ÖÀà¹ã¸æ¡°À¸Ä¿ http://ad.gglb.com Äú¿ÉÒÔÔÚ´Ë·¢²¼ÄúµÄÒ»ÇÐ ºÏ·¨ÐÅ¡£ 2¡¢È«¹úΨһµÄ¡°¹ã¸æÈËÁÄÌìÊÒ¡±³ÏÑûÄúÔÚ´ËÇãÌý¹ã¸æÈ˵ÄÐÄÉù£¬½»Á÷¹ã¸æÈ˵ľ­ Ñé¡£ 3¡¢ÔÚ¡°¹ã¸æÂÛ̳¡±£¬Äã¿ÉÒÔÕÒµ½Ò»¸ö¹ã¸æÈËÕæÕý½»Á÷µÄ¿Õ¼ä¡£ 4¡¢¹ã¸æÁª°îÊÕ¼ÁËÈ«¹úÖøÃûµÄ¹ã¸æ¹«Ë¾£¬¹ã¸æ²ÄÁϹ«Ë¾£¬¹ã¸æÉ豸¹«Ë¾£¬²éѯ¸ü¿ì ½Ý£¬Ôö¼Ó¸ü·½±ã¡£ 5¡¢×îйúÄÚ¹ã¸æÐÂÎÅ£¬¹ã¸æ¶¯Ì¬¡£ 6¡¢È«ÐÂÍƳöÆ»¹ûÈí¼þ´óÔùËÍ£º¶àÖÖÉè¼Æ¡¢Í¼ÐÎÈí¼þÎÞÏÞÖƸßËÙÏÂÔØ¡£ 7¡¢´óÁ¿¹úÄÚÓÅÐã¹ã¸æͼ¿â£¬½ÔΪȫ¹ú¸÷µØµÄ»§Íâ¹ã¸æͼÐΣ¬Ô­°æÔùËÍ£¬Ï£ÍûÄܸøÄú ´øÀ´Áé¸Ð¡£ À´¹ã¸æÁª°î£¬×öÁª°î¹ã¸æ............ http://www.gglb.com ¹ã¸æÁª°îÏÂÔØÕ¾µã£º................ http://download.gglb.com ×îÖØÒªµÄÒ»µã£¬ÄúÔÚ¡°¹ã¸æÁª°î¡±Ëù×öµÄÒ»ÇУ¬¶¼ÊÇÃâ·ÑµÄ¡£ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 1:15:37 1999 Delivered-To: freebsd-ports@freebsd.org Received: from adelphi.physics.adelaide.edu.au (adelphi.physics.adelaide.edu.au [129.127.36.247]) by hub.freebsd.org (Postfix) with ESMTP id 8198D14D6B for ; Sat, 5 Jun 1999 01:15:31 -0700 (PDT) (envelope-from kkennawa@physics.adelaide.edu.au) Received: from bragg (bragg [129.127.36.34]) by adelphi.physics.adelaide.edu.au (8.8.8/8.8.8/UofA-1.5) with SMTP id RAA22379; Sat, 5 Jun 1999 17:45:26 +0930 (CST) Received: from localhost by bragg; (5.65/1.1.8.2/05Aug95-0227PM) id AA05352; Sat, 5 Jun 1999 17:46:26 +0930 Date: Sat, 5 Jun 1999 17:46:26 +0930 (CST) From: Kris Kennaway X-Sender: kkennawa@bragg To: Matt Behrens , freebsd-ports@freebsd.org Subject: Re: SSH2 (in FreeBSD-Questions) 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 On Fri, 4 Jun 1999, Matt Behrens wrote: > Yep. Works on maybe half the ports. Some override PREFIX themselves; > some have commands with /usr/local hardcoded in; some packages even > ignore configure command-line switches to change their paths, > preferring /usr/local. Patches accepted - actually, even just send-pr'ing a list of the broken ones would be more useful than just mentioning "ports in general". It's hard to fix what we don't know is broken. Kris ----- "Never criticize anybody until you have walked a mile in their shoes, because by that time you will be a mile away and have their shoes." -- Unknown To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 4:32:24 1999 Delivered-To: freebsd-ports@freebsd.org Received: from megaweapon.zigg.com (megaweapon.zigg.com [206.114.60.8]) by hub.freebsd.org (Postfix) with ESMTP id 5FF0314C88 for ; Sat, 5 Jun 1999 04:32:20 -0700 (PDT) (envelope-from matt@zigg.com) Received: from localhost (matt@localhost) by megaweapon.zigg.com (8.9.3/8.9.2) with ESMTP id HAA25801; Sat, 5 Jun 1999 07:32:00 -0400 (EDT) (envelope-from matt@zigg.com) Date: Sat, 5 Jun 1999 07:31:59 -0400 (EDT) From: Matt Behrens To: Kris Kennaway Cc: freebsd-ports@freebsd.org Subject: Re: SSH2 (in FreeBSD-Questions) 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 On Sat, 5 Jun 1999, Kris Kennaway wrote: : On Fri, 4 Jun 1999, Matt Behrens wrote: : > Yep. Works on maybe half the ports. Some override PREFIX themselves; : > some have commands with /usr/local hardcoded in; some packages even : > ignore configure command-line switches to change their paths, : > preferring /usr/local. : Patches accepted - actually, even just send-pr'ing a list of the broken ones : would be more useful than just mentioning "ports in general". : : It's hard to fix what we don't know is broken. That I can understand. Please note also, though, the distinction I make above with the packages that ignore command-line switches -- I'm referring to the source tarballs themselves. A patch to work around this broken behavior would be convoluted at best, I would think. However, I'm certainly not going to just complain and not do anything. I'll try to find the offenders again and make patches. (Along those lines, I've noticed very few PLISTs contain entries for manpages. Are they _supposed_ to?) I've been mulling over solutions to this in my mind lately and wonder if something along the lines of "/etc/paths.conf" or maybe just another several lines in "/etc/make.conf" might be useful. PREFIX works pretty well but it's limited to stuffing in a single directory. I think the flexibility could be there to do something like the following: BINDIR=/opt/$PACKAGE/bin LINK_BINDIR=/opt/bin LIBDIR=/opt/$PACKAGE/lib LINK_LIBDIR=/opt/lib ETCDIR=/etc/opt/$PACKAGE but would probably ship with other defaults: BINDIR=/usr/local/bin LIBDIR=/usr/local/lib ETCDIR=/usr/local/etc and what not. Is it even possible to put something like this into the ports system (I've studied the makefiles and such and I fear I've only scratched the surface)? Matt Behrens Owner/Administrator, zigg.com Chief Engineer, Nameless IRC Network To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 6:10:30 1999 Delivered-To: freebsd-ports@freebsd.org Received: from adelphi.physics.adelaide.edu.au (adelphi.physics.adelaide.edu.au [129.127.36.247]) by hub.freebsd.org (Postfix) with ESMTP id C0F3E14F70 for ; Sat, 5 Jun 1999 06:10:22 -0700 (PDT) (envelope-from kkennawa@physics.adelaide.edu.au) Received: from bragg (bragg [129.127.36.34]) by adelphi.physics.adelaide.edu.au (8.8.8/8.8.8/UofA-1.5) with SMTP id WAA22258; Sat, 5 Jun 1999 22:40:17 +0930 (CST) Received: from localhost by bragg; (5.65/1.1.8.2/05Aug95-0227PM) id AA06374; Sat, 5 Jun 1999 22:41:19 +0930 Date: Sat, 5 Jun 1999 22:41:16 +0930 (CST) From: Kris Kennaway X-Sender: kkennawa@bragg To: Matt Behrens Cc: freebsd-ports@freebsd.org Subject: Re: SSH2 (in FreeBSD-Questions) 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 On Sat, 5 Jun 1999, Matt Behrens wrote: > : Patches accepted - actually, even just send-pr'ing a list of the broken ones > : would be more useful than just mentioning "ports in general". > : > : It's hard to fix what we don't know is broken. > > That I can understand. Please note also, though, the distinction > I make above with the packages that ignore command-line switches > -- I'm referring to the source tarballs themselves. A patch to > work around this broken behavior would be convoluted at best, I > would think. However, I'm certainly not going to just complain > and not do anything. I'll try to find the offenders again and make > patches. (Along those lines, I've noticed very few PLISTs contain > entries for manpages. Are they _supposed_ to?) Nope - they used to, but there were problems with manpages being gzipped, and being left around when the port was deinstalled. thesedays the manpage installation/deinstallation is taken care of via the MAN? variables and logic in bsd.port.mk > I've been mulling over solutions to this in my mind lately and > wonder if something along the lines of "/etc/paths.conf" or maybe > just another several lines in "/etc/make.conf" might be useful. > PREFIX works pretty well but it's limited to stuffing in a single > directory. I think the flexibility could be there to do something > The problem is that most software doesn't support such fine-grained installation control, and so in general you'd have to rework the build structure (and code) of the majority of ports. Not a small undertaking. Kris ----- "Never criticize anybody until you have walked a mile in their shoes, because by that time you will be a mile away and have their shoes." -- Unknown To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 6:30: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C9C1714F70 for ; Sat, 5 Jun 1999 06:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA47520; Sat, 5 Jun 1999 06:30:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mrelay.jrc.it (mrelay.jrc.it [139.191.1.65]) by hub.freebsd.org (Postfix) with ESMTP id 1613F14F70 for ; Sat, 5 Jun 1999 06:20:58 -0700 (PDT) (envelope-from nick.hibma@jrc.it) Received: from elpc36.jrc.it (elpc36.jrc.it [139.191.71.36]) by mrelay.jrc.it (LMC5692) with ESMTP id PAA20506 for ; Sat, 5 Jun 1999 15:20:55 +0200 (MET DST) Received: (from root@localhost) by elpc36.jrc.it (8.9.3/8.8.7) id PAA38500; Sat, 5 Jun 1999 15:19:33 +0200 (CEST) (envelope-from n_hibma) Message-Id: <199906051319.PAA38500@elpc36.jrc.it> Date: Sat, 5 Jun 1999 15:19:33 +0200 (CEST) From: Nick Hibma Reply-To: nick.hibma@jrc.it To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12032: [PATCH] de-/usr/local-ise the port net/pmf Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12032 >Category: ports >Synopsis: [PATCH] net/pmf/Makefile references /usr/local instead of PREFIX >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 Jun 5 06:30:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Nick Hibma >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: current ports tree (as of yesterday afternoon) >Description: Makefile uses /usr/local instead of the indirection through ${PREFIX} >How-To-Repeat: >Fix: --- /usr/ports/net/pmf/Makefile.orig Sat Jun 5 15:14:17 1999 +++ /usr/ports/net/pmf/Makefile Sat Jun 5 15:15:20 1999 @@ -16,12 +16,12 @@ BROKEN_ELF= cc: c_packages/libc_packs.a: No such file or directory pre-install: - @${MKDIR} /usr/local/lib/pmf + @${MKDIR} ${PREFIX}/lib/pmf @find ${WRKSRC}/../system_dir -name '*.orig' -exec rm {} \; @-mv ${WRKSRC}/../doc/pmf.doc ${WRKSRC}/../system_dir @tar -C ${WRKSRC}/../system_dir -cf - . \ - | tar -C /usr/local/lib/pmf -xf - - @chown -R bin.bin /usr/local/lib/pmf - @chmod -R a-w /usr/local/lib/pmf + | tar -C ${PREFIX}/lib/pmf -xf - + @chown -R bin.bin ${PREFIX}/lib/pmf + @chmod -R a-w ${PREFIX}/lib/pmf .include >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 Jun 5 6:48: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mrelay.jrc.it (mrelay.jrc.it [139.191.1.65]) by hub.freebsd.org (Postfix) with ESMTP id C6E8614CE1 for ; Sat, 5 Jun 1999 06:48:01 -0700 (PDT) (envelope-from nick.hibma@jrc.it) Received: from elect8 (elect8.jrc.it [139.191.71.152]) by mrelay.jrc.it (LMC5692) with SMTP id PAA20663 for ; Sat, 5 Jun 1999 15:47:57 +0200 (MET DST) Date: Sat, 5 Jun 1999 15:47:57 +0200 (MET DST) From: Nick Hibma X-Sender: n_hibma@elect8 Reply-To: Nick Hibma To: freebsd-ports@freebsd.org Subject: ports referencing files in /usr/local 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 Below a list of Makefiles listing dependencies and executables in /usr/local. I was wondering whether that should not be ${PREFIX}. (For other ports that do similar things the use is either correct (IMHO) or I have mailed to port maintainer a patch.) The list below is a bit garbled, but was created with a (cd /usr/ports ; grep /usr/local `ls */*/Makefile`) Nick -- ISIS/STA, T.P.270, Joint Research Centre, 21020 Ispra, Italy comms/conserver/Makefile: echo " /usr/local/sbin/conserver -d -n ; echo -n ' conserver'" >> ${PREFIX}/etc/rc.d/conserver.sh; \ databases/postgresql/Makefile: --with-includes="/usr/local/include ${TCL_INCDIR} ${TK_INCDIR}" ${WITH_TCL} \ databases/postgresql/Makefile: --with-libraries=/usr/local/lib japanese/jtex209-both/Makefile: if [ -e /usr/local/share/tex/BOTH ] ; \ japanese/netscape3.language/Makefile:LIBDIR= /usr/local/lib/netscape japanese/pine/Makefile: ${LDCONFIG} -m /usr/local/lib korean/netscape3/Makefile:LIBDIR= /usr/local/lib/netscape www/squid11-novm/Makefile: echo "if [ -x /usr/local/sbin/RunCache -a -f /usr/local/etc/squid/squid.conf ]; then" >> ${PREFIX}/etc/rc.d/squid.sh; \ www/squid11-novm/Makefile: echo " (cd /tmp; /usr/local/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \ www/squid11/Makefile: echo "if [ -x /usr/local/sbin/RunCache -a -f /usr/local/etc/squid/squid.conf ]; then" >> ${PREFIX}/etc/rc.d/squid.sh; \ www/squid11/Makefile: echo " (cd /tmp; /usr/local/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \ www/squid20/Makefile: echo "if [ -x /usr/local/sbin/RunCache -a -f /usr/local/etc/squid/squid.conf ]; then" >> ${PREFIX}/etc/rc.d/squid.sh; \ www/squid20/Makefile: echo " (cd /tmp; /usr/local/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \ www/squid21/Makefile: echo "if [ -x /usr/local/sbin/RunCache -a -f /usr/local/etc/squid/squid.conf ]; then" >> ${PREFIX}/etc/rc.d/squid.sh; \ www/squid21/Makefile: echo " (cd /tmp; /usr/local/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \ www/squid22/Makefile: echo "if [ -x /usr/local/sbin/RunCache -a -f /usr/local/etc/squid/squid.conf ]; then" >> ${PREFIX}/etc/rc.d/squid.sh; \ www/squid22/Makefile: echo " (cd /tmp; /usr/local/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \ www/webglimpse/Makefile:RUN_DEPENDS+= /usr/local/etc/apache/httpd.conf:${PORTSDIR}/www/apache13 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 7:10: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BED3F15154 for ; Sat, 5 Jun 1999 07:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA12792; Sat, 5 Jun 1999 07:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mrelay.jrc.it (mrelay.jrc.it [139.191.1.65]) by hub.freebsd.org (Postfix) with ESMTP id 15B5C14D19 for ; Sat, 5 Jun 1999 07:09:17 -0700 (PDT) (envelope-from nick.hibma@jrc.it) Received: from elpc36.jrc.it (elpc36.jrc.it [139.191.71.36]) by mrelay.jrc.it (LMC5692) with ESMTP id QAA20832 for ; Sat, 5 Jun 1999 16:09:14 +0200 (MET DST) Received: (from n_hibma@localhost) by elpc36.jrc.it (8.9.3/8.8.7) id QAA42344; Sat, 5 Jun 1999 16:07:53 +0200 (CEST) (envelope-from n_hibma) Message-Id: <199906051407.QAA42344@elpc36.jrc.it> Date: Sat, 5 Jun 1999 16:07:53 +0200 (CEST) From: Nick Hibma Reply-To: nick.hibma@jrc.it To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12034: comms/conserver installs into /usr/local Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Note: There was a bad value `sw-bus' for the field `>Class:'. It was set to the default value of `sw-bug'. >Number: 12034 >Category: ports >Synopsis: comms/conserver installs into /usr/local instead of ${PREFIX} >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 Jun 5 07:10:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Nick Hibma >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: ports as of 16:00 today >Description: comms/conserver installs into /usr/local instead of ${PREFIX}. It should patch the Makefile to install into ${PREFIX} instead. >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 Sat Jun 5 7:10: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 58C2615162 for ; Sat, 5 Jun 1999 07:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA12781; Sat, 5 Jun 1999 07:10:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from mrelay.jrc.it (mrelay.jrc.it [139.191.1.65]) by hub.freebsd.org (Postfix) with ESMTP id 0170114CE1 for ; Sat, 5 Jun 1999 07:01:27 -0700 (PDT) (envelope-from nick.hibma@jrc.it) Received: from elpc36.jrc.it (elpc36.jrc.it [139.191.71.36]) by mrelay.jrc.it (LMC5692) with ESMTP id QAA20743 for ; Sat, 5 Jun 1999 16:01:24 +0200 (MET DST) Received: (from n_hibma@localhost) by elpc36.jrc.it (8.9.3/8.8.7) id QAA40060; Sat, 5 Jun 1999 16:00:03 +0200 (CEST) (envelope-from n_hibma) Message-Id: <199906051400.QAA40060@elpc36.jrc.it> Date: Sat, 5 Jun 1999 16:00:03 +0200 (CEST) From: Nick Hibma Reply-To: nick.hibma@jrc.it To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12033: [PATCH] audio/rplay port references /usr/local directly instead of ${PREFIX} Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12033 >Category: ports >Synopsis: [PATCH] audio/rplay port references /usr/local directly instead of ${PREFIX} >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 Jun 5 07:10:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Nick Hibma >Release: FreeBSD 4.0-CURRENT i386 >Organization: >Environment: ports current as of yesterday afternoon 16:xx >Description: [PATCH] audio/rplay port references /usr/local directly instead of ${PREFIX} to find an executable it has installed in ${PREFIX} >How-To-Repeat: >Fix: --- Makefile.orig Sat Jun 5 15:51:04 1999 +++ Makefile Sat Jun 5 15:51:31 1999 @@ -23,7 +23,7 @@ @if [ ! -f ${PREFIX}/etc/rc.d/rplayd.sh ]; then \ echo "Installing ${PREFIX}/etc/rc.d/rplayd.sh startup file."; \ echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/rplayd.sh; \ - echo "[ -x /usr/local/sbin/rplayd ] && ( /usr/local/sbin/rplayd & ) && echo -n ' rplayd'" >> ${PREFIX}/etc/rc.d/rplayd.sh; \ + echo "[ -x ${PREFIX}/sbin/rplayd ] && ( ${PREFIX}/sbin/rplayd & ) && echo -n ' rplayd'" >> ${PREFIX}/etc/rc.d/rplayd.sh; \ chmod 751 ${PREFIX}/etc/rc.d/rplayd.sh; \ fi @if [ ! -f ${PREFIX}/etc/rplay.hosts ]; then \ >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 Jun 5 11:27:57 1999 Delivered-To: freebsd-ports@freebsd.org Received: from alpha.netvision.net.il (alpha.netvision.net.il [194.90.1.13]) by hub.freebsd.org (Postfix) with ESMTP id A93DC14E05 for ; Sat, 5 Jun 1999 11:27:54 -0700 (PDT) (envelope-from spud@i.am) Received: from Tomer.DrugsAreGood.org (RAS2-p7.hfa.netvision.net.il [62.0.145.135]) by alpha.netvision.net.il (8.9.3/8.8.6) with SMTP id VAA21537 for ; Sat, 5 Jun 1999 21:27:53 +0300 (IDT) From: Tomer Weller To: "" Subject: KDE programs won't compile Date: Sat, 5 Jun 1999 21:08:54 +0300 X-Mailer: KMail [version 1.0.21] Content-Type: text/plain MIME-Version: 1.0 Message-Id: <99060521105700.05202@Tomer.DrugsAreGood.org> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org every small kde program i try to install (right now i tried Knewmail and Kover) i get : checking for kde headers installed... configure: error: your system is not able to compile a small KDE application! Check, if you installed the KDE header files correctly. i'm using a current machine as if last night, installed kde from ports (yes, kde-libs was compiled with -CURRENT and EGCS) any idea what's the problem ? ====================================== Tomer Weller spud@i.am wellers@netvision.net.il "Drugs are good, and if you do'em pepole think that you're cool", NoFX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 11:29:47 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ohm.ingsala.unal.edu.co (ohm.ingsala.unal.edu.co [168.176.15.18]) by hub.freebsd.org (Postfix) with ESMTP id 03AFC14E05 for ; Sat, 5 Jun 1999 11:29:41 -0700 (PDT) (envelope-from pfgiffun@bachue.usc.unal.edu.co) Received: from bachue.usc.unal.edu.co (unalmodem07.usc.unal.edu.co [168.176.3.37]) by ohm.ingsala.unal.edu.co (8.8.5/8.8.5) with ESMTP id NAA06221 for ; Sat, 5 Jun 1999 13:33:09 -0500 (COT) Message-ID: <37596C70.17D5FEEB@bachue.usc.unal.edu.co> Date: Sat, 05 Jun 1999 13:29:04 -0500 From: "Pedro F. Giffuni" Organization: Universidad Nacional de Colombia X-Mailer: Mozilla 4.08 [en] (X11; I; FreeBSD 3.1-RELEASE i386) MIME-Version: 1.0 To: ports@FreeBSD.org Subject: Question about linking GLUT. Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Since we will soon have accelerated OpenGL, I am porting GLUI: http://www.cs.unc.edu/~rademach/glui however I have problems building the examples: ________________________ Linking example1 cc -I/usr/X11R6/include example1.o -lXmu -lXext -lX11 -lm -L/usr/X11R6/lib -lglut -lGL -lGLU -Llib -lglui -o bin/example1 /usr/X11R6/lib/libglut.so: undefined reference to `XGetExtensionVersion' /usr/X11R6/lib/libglut.so: undefined reference to `XFreeDeviceList' /usr/X11R6/lib/libglut.so: undefined reference to `XQueryDeviceState' /usr/X11R6/lib/libglut.so: undefined reference to `XListInputDevices' /usr/X11R6/lib/libglut.so: undefined reference to `XFreeDeviceState' /usr/X11R6/lib/libglut.so: undefined reference to `XOpenDevice' /usr/X11R6/lib/libglut.so: undefined reference to `XSelectExtensionEvent' *** Error code 1 ________________________ Any ideas on what is missing ? TIA, Pedro. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 11:40: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BE49614F71 for ; Sat, 5 Jun 1999 11:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA34016; Sat, 5 Jun 1999 11:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from valkirie.issei.org (valkirie.issei.org [210.169.187.142]) by hub.freebsd.org (Postfix) with ESMTP id 7204214EBD for ; Sat, 5 Jun 1999 11:37:05 -0700 (PDT) (envelope-from issei@issei.org) Received: (from issei@localhost) by valkirie.issei.org (8.9.2/3.7W-mobile-990331) id DAA13153; Sun, 6 Jun 1999 03:34:14 +0900 (JST) Message-Id: <199906051834.DAA13153@valkirie.issei.org> Date: Sun, 6 Jun 1999 03:34:14 +0900 (JST) From: issei@jp.FreeBSD.ORG Reply-To: issei@jp.FreeBSD.ORG To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12037: Update port: security/ssh Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12037 >Category: ports >Synopsis: Update port: security/ssh >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 Jun 5 11:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Issei Suzuki >Release: FreeBSD 3.1-RELEASE i386 >Organization: Personal >Environment: I build and test this port on FreeBSD 3.1-RELEASE enviroment only. >Description: 1. Update ssh version from 1.2.26 to 1.2.27. 2. Make default configuration of sshd server more secure (patches/patch-ae). Deleted patch files: patch-aj - patch-ap merge to patch-ab patch-ar merge to patch-ag patch-at ssh-1.2.27 includes this patch patch-au ssh-1.2.27 includes this patch patch-av ssh-1.2.27 includes this patch >How-To-Repeat: >Fix: Apply the following patch to the port-current. begin 644 ssh-port.diff.gz M'XL("'!K63<``W-S:"UP;W)T+F1I9F8`[%M[>YLXE__;^12JFZ:FOG$UQIGD M;9HF;69R6SN=[KO3/KP89(<-!@9P+IV9[[[G2(#!QD[3N;W[[/II(9:.I*.? MSDU'LN-.)J0]C\Y)'%]W`L_IGEDW=.)Z%`OR+UOM=GN%HC::^^1[^$]Z1)0& MHC$0^T0R#&.KV6R6FI/UZBSPGY_2.A$&4Q,0. M/(_:B1OX9)9Q-0FB00WZWFH_)S_2*,;*B/X\=R/J#`A^I([CJ_.#L:(_P#TRAS3CM M;377UNE;Y/#@ZNC=Q?#D:+17BZD]C]SD@?@TV2)G!Z.KHZ$Y.KG"NDD2#KI= M>'8F@0X[LX_JVT^'GI MXZN_CE2"Y=>+RZ_`\B.$[;.W&FDLD.DD5M29?A'('I$I57N.JJFBI#F.*-D: M[4]$7:76>"+*JI:VC6(KHA.YT%`\L M#RJW0RNQKV_U7KUXQ16SC?&_\X,YO7P=Q$G="K^/ZG2!RI[6/U"$' M841DA8":J^)`U+`W';EN;VA=.XYB(O"5U_:BZ*E5V^!GP*^"<')YT"*WCZ%!X5XG&5U(TW"?'XR4(\ M7G8P\D#M;Q!B._`G[G0>T74RVRO(;$Z\*J+CZ'0M4G>QKX.R+9EFSZI`[[V#4@02:ZM!![@*H-9""8](G=!=!/7ZYU.AQ'; M=2+M[_2VVFD']7QV`^#4&)!'NR+[.QH'.YN?G`KH:IEKNV18,W@`TDS$ M*W&5=0TPU'M:`5=%E.06//HE7"=NCJ2LHF"Q)U=>)\`G0!);$[KW+\XZ0G3M M1'7R*XE!T%X^O.ATF^T7IAF:+U[^:RWL$.B0K.DJU#@QX%EI(>,%959$L8<\ MR[D^+_&L*,@S/$'..--_`;O5F.NB`DHI*GH!\UY/U5N]GI;96."ZB2'1#T?# M-T?#BY$YO+BXVJMOW[D)F$$:C6D4Q%I]B>CD_'"T5V^?;/]2:O=;U_5M;^Y0 MH']6I#\]>8/TIROTGCLF;6\:QU;HFC?16(-OZ&8&(?6)ZT,C'[ZNXE0A[HA%0=S7],2EG:TEL&S>6E&ZG%C[TGR9-ZE>5"8Z M`+V$T$NYZOV)T+L3\A-I3T@5XOC_1N/X=BSR>1?UV^?M?N^J9?V6U@T[IEY, M_Y@AU@P`.OB_6$"6%9@I*QAW4.">H9<,I`T&>7^?;!]>G!^?O#-'5P=7'T;D MN^^.+HYS*Z0RE]R3<\N95JYK^RFMQ]G!%-A.$":'Z*2DQR>G1Z-=L,`H6@F- M$U*_WTY)Z^39'KGO=%)!8L93%V4-C8]4,)[@5@V@;"B_+$$"GYM,, MBYQQ+G^FXT;(_G06MN6.V)%9D"TC]X\'AG95)&=O"@SM)P>&]G)\K^5Q&`\, M>Q@8]EA@B`-G"8O2O@*S`J1/8#0(#16V.>IOM7'$`CFCO+`30G!K.Y"D@:*G ME"Q4,-26I$*P@&\#QVNN':^PCS$&BI1/L#Q>&0I9'FAB2LGG]T>@I1?'>,28#K+;:D[\XNWYX,2:VVM[R*/,316(BC98HZ'!T,CXY'PT/6 M:(]L-W@)?!6Z<3"/;,K[_4^31YY`\SK[^S7'0A59W*2*Z:ZGR2T",PFJU,N& MJFTW#@\%T@Y(-+';X31]=0(^0,?N!`,>TK#NE#P,VV(9%&<`S(U&[]^:%V^^ M'PGP!:=Z="DL>.9?_@N,//Z)0[:C&7HE;)[R"N$(X-=4-3E;-U:LJ6FQD<-; M0\-9CY_O8`IHY_EV`]_"\SKY;KL11S:HBM!=LQ$E^U45V*=]/0L7SUZ2ME-:1VY=R">.@,96I*G) M4F&U-%GAA?ULS.>D$4"SZ,Z-P:(E8`!]$OC>`_&"*9H(*V91^ASVDE@=S?T8 MREK$\ATRFP,C8\IZ&0=S*`'_:1$_\-NX&P:!GP*TN)T1.H0<>''0(J$5QQ#I M.\2:([>)"Q:7)PH?6#]^@%T2Z]9R/6N,5G;".HP"J,!!YS&ZR_C:X MPP#5V93UA2BF=0)0]`#,S3PAK^P@HC#J MY?#BW?#@#+2$ZQA/3#`0C%Y!JAPW3@;LV9Y$E&DZXTD'50:+!0Y0Q7?&DPZB MPXI!=G@Q\C&[0:^QWY/6*Y&K^.B&/%RD.J1P'PD:Y=IU_:V M6VRXRUT7,_02DU?^RF;SW)TX=$*.S='1X8?AD7EX<79V-#P\.3C%RG1FJLQ$ M0=4+TJ^K+&FC:[G)J9$&C\OB[J?.]C;(@7G+D\^?ZETH\.E=H6!:W^5AW%WZ M_EF`N(LZA:FDQ)UKLM]UZ&W7GWM>N@84PC1G\+A_=:H$F_$%]1G^T8J&/F-FV/L*)&5M`BF%RIU6JL00.T-J)VPNF= MG\3/9&>'+!5*GP7RCV*K'YNC]P=N+ MC^15%Y%;HKD8'4OFH1WL\U'%IE6:2#_)`8VQV,O7!8P_YB8`?L$&3R+63 ML\"A<4;U'W.7LA)&PO9UR&:6UOD3V>0L?0N7E0D&1'N17#BV8AM"#QAIBJ&; MSY*MEY'K0R^)P[K%W`VEX8'GWE)6D)^PR+T\!"&.::24:&\66JX!74.6Q'LS!YN,PM00K+AY@6L7Q.#C&U;#.SDR09VLFQY]($B;SBRPBTI!#5XM(0&%1M*$H%H29(&JEX(F#CA$I$B MPK]"I)3VMB9$,HI&DW>WPJRTT4S*(NP$9#&+CMB8,GQ`1>3%<0HAX9T=A`^= M\,ZT/5AB<-#W<1(Y\[`1WK7WLV)A=X7ZVO*G%,@S,O9]A8S>AVY4(./?*\]= MB\UP?[+""8;E*P/$U]3S5FE9\8(:"'9XF_0(=@'/(OFX@&<1&OZ-\$A])H'] M2H">/NUJ,5%$56LIHJ863]WD/I3)AEH0$QAF;B<$#(')-K3S$+UX0N\3LO2= M!W<0;\'.SO5!LANFF5[<,4T!8\JTHL%BNM.+=R?GYN'!I?E>X$.Q*S*F;84F M;(\]FX,AZRT#7`@^,S!2EO!X'1UB$L+(SPHA(S'-<>RXIHECFC#\B?GCT7!T M=']*+`/"QS1'P*$V=G MHM>NYV"NQ4?3#Y85TR\O8Y)G56(6<;).L`ISB^8Y(/OLEQ#\H`EAY;G3H+(=ZT.J;<6#0]`W<%77$.[ MB+(XVNG@S@T)?DOU5E5[+46%B'NQV54P?:JH/;$@K"N?)W.UIIMU/!;(?\.M M9G$="_+&JK@PDK='QP5R*Q\<&K&PBW1I8G=G&'S-?8^"6;?P\L(,DY)W5DSB MD-KNQ`69"2(4#8B+0%K MG)N)[04Q;4P*A?E"]@Q8-%W+]S7+G\JN5^@*(RS5_<84LVP4N"H*&W0QY1/S M!"6WAKI<`ZPI0F[!;4Q+$>&CM)V"*-@JWX$L""OQ+./YR>YEBL MC"&D>B5+:`MEJ:!7WX1S$8VOF=`2@$^?U^81A4Q=]3ZL?%]=JZY_],J7O0$: MY47%XQ(A_,TB4:V+F@XRHO6EA2X2-6Y'&!,:-&^/Y!-!SO\#P^+?0(A-A MP2"'F-,D#HVBG(5UL/Y["%#E!EXQ(*B%1[_"EGP%)DM<5T%3(BD@],=8F+GK MX)'[AY.W[-X'M"VH]C,>FP#_$)Z,@\!K>':+U%V6_?`#5EMO$;&PN/0>7+FL MJ4*Z$0`Y`4>M&>+"H/QUPE(QN155?L()E9"9Y7J` MYVY6E[UQ)DC08`3!?8OLI*0"V=N#C2*"E)9TXL3$E<,*4?@W$+Q*HZ1JLM92 M-:48J<)7% MAY231OT\8(-U/OD;CH&JB5FGN*_*>L41V/P*[%OH1,A^<48S+!)66?EG,"?7 MUBTMCE'HN9JYIXWYR/RJ.%@[ZN,9Q&E5RF^Z*8,X?7(&<;JMX#F6*V>1Z2>![2B-T+6=H'9^V9 MWM`$K$9CRE]@F;]#M6BW:Q,KL;Q&G=Q( MHKB&N,3ZD#HN'D*BG\%[++!+XY%OB4?N;4+7QZ/070Z)H;*+2?S%($E/.?$G M'&E^1$A[^*4TVP;F'_$ZJ8E[_XRVL5-L*!2G_T-Z'9?\J"$&J4/%QB[LG;_@ M!A*[Z\!\V63-&>P[K2EM1&5TROTPB)[:5SJ-!??HTXN,9S2_L7<*E<8S.NF; M@57C)]=U/%N`L7X8OM',\RMS-/S1?#^Z:BTH=NR(.G&''^\)0@'2E!GVBY:E MR3'6T[D!9]RVLQM!T(UK4^);,XI8=C`/TOS]'3$P66>I&U^/W31(@BR15D:K M+!RVC?[11!MFNR&L7P'F%K%M"\Q%CE.*DNVYH'Y?B]($K.$\HIBKRDQ M\!@J:QHR$(3?A0(3%YU=2^2O@F8MH$%<<,)XJF1Y<1D9,0,EA2C%!MYX3X?] M_0T`%8=[&D*EEG\41'UV*9"_4HC6FQF\"(/X,(TM@[63U>56A]00D]KZ:5%V M@0^[(L7&3'`8*M_4E@/#<:E5@E*K1J2(BL&.-?BK4G!F-V9$?X9]!.[;!4H2578A,'WG(D5( M2:9R(",'^`C+^)7A8PC!"\B\DER%EGT#^NNX<1I]E*:[?-&&3YZ[?BY;W]@^ MC0CX:JX%JD+(:CE$AL@A8N\4(H:&`_Z50-"0[;!X*1_`QCL0$2_&_'#R$-)= M)B[VM15EUU;0C?PDR?W/NTP45JHT2?Z\F[I4>$1T%B04?2-'+">+A/"0,T)[!^S%RY[(`MHI8WZY"K:Q=$WWI8 M-+VC[%8B"?"GWA:Y>G>5'<8M-L&>W#EF,N4!:KS)0T)$P2=3O@"< M.=1)2NU6RNJT5E>+3-8K'8 M,O"?$36E_.=$65=\JU\?!3.*QQMV,/<<_)T(M6YI[$1!&*9'\P_!G)\F$S^X MPQR3WW;]-JA#>^8Z#G@,*TD@S!">U0N,IKV?).SVKQ<'H()Q[.+/3_+?J3.7 M?$,?R+45D__FOWRA/N'G*/FI>K&[2X@T8K:YA!$3Y`P\_T.YHMD`+6V9XF,X',Z;:<^>#XDPN-C<2=>)%"AU45/+U&NQZ<$BSE? MN]F#<2L;LR9Y>TP,>&U.!2'5;A#MHI)T,&9`K*-XD"1+.X*?)-2)?MQ`][#^ MFZID;?HK`*6PV^,'U#M_4:)39"Q\ODZUI>A4,Z]DU*JMQH&EJE7;3LVR6)4* MN20ZHPAD,?\0DBLN%U?'/C;GL:9N6N M#=LA3#?)8.I!-X3*68;<@.RY0K8.LDO7'TTFBU"B4T'#HCTA4H9EB65C4<#@C>Q?@;.X4`#O2 M9E;`SQ5;RL'6PGD:6]A@+(;6JKELJ.X=T+"2^**JB0U=KNTHZ40LNT%)XZ#$ M@#"I`4L^W&,*;*L`J0I/&=Q>6>`F5G?2;.1*E//B9B&,N_HJ.+;"+=\4SN M>`*0C1R1*,7A4W`"/9(CI>@D@C0:%AOKL#^3/?,QHS#!)8.ZQ9B;?>4!,%;K(@/%M5_>#KJV&T)U)#5' M7U(K)RF*=W>QS+%^NA&G[P0"<)'TQF3@'(\S9D_#CZGA4^BF0/LDE%`'_=?GISUI M8[`I[9CM:!9,=`V`]N-(,<8+0O8+^SP;3:?S<44(`83!.ZS*+`$]"LQ(#&3T M(I<><'E%==H)N37ETJ6UY3#X\3&(QV,^[XMX*H\#\V0'YT='O<$@F6RSB1L! MBW0CT$0/TLU'4HO9M$5^533-#7#2C.";-)2/VT5X?2^<7A[XO9%[:?@FEQ4- MMQ$- MFS4_:"R723RNOW#],9AY([O^0IA0A233(G-0NR/XJFH*F2`&Z/!V+RN)QPRR M/617%I\3@W*&1E6$*",>W2Z\R!W>CD0H=3ELTYXR\$UW%OQ(4_6CS.X2_%D& M_N*XMF!D$':81D.#_7JE;$/7)M_SZR)7]NNU7=FO*5T%YU69A4F"&I1[J],0 MKNQ-+GLV:@U#`O?\>P>,.=R7;QIH6@>VK&H,IVE;[5K;;B;A?/!O*;DZ/O^! M_9,-YHC)PC$3\2.`_^:3'_KPM)$?G.Y5N%8S<9<<,]QOK`H?\< M,4CNR!OG6V5Z1^W=7KD+"+:[[[#.C.R,]KAI.!JQ#ZA*/!'6/O-![?C?CKT3//'\*R MSY8?N=JS0/D2C>%;//5F7I3V+$!TUG_3$\@J@*LBZT,#-\EJ\333LHFQ,CF75')F%4B0(L2"/@9*ITH%,'2U;2]X!3]1T1""C M,ODGHR$YX0;3\M#C!-KSGZ<5@-P%ST7HHAI]^RYP_33BWQ25N\,@Q/8'^=/@ MW=%O`TS]^"3@/*#5L)WGD(/CB)-=3H'A0@+&,82)!E"RD4IE&!]_9[%PPQLX M@"H_!8H.GDPU4(7BR7@/PA\G>:$P5"P)NUQU7$J]@[? M0`BN%BKY18^;7+6%',QU("&%HV)N$P+FM7AY879[DH`%4@D:W*4A%XB'H!N`V.@;E%#->LZ<3T)8'.\G. M^JN1$WG:U/3^3(5HH#0G-3ZOGL+/HX^QT2#HY3504>IMN(HI;WP MY`UG`($Z,@?RV35;@K_?%_J)#O8'!5UJ5"WH4B>R'<4HIG>I0Z3)Z]J*20PB M7=L4\"KN45*DJ[>]WC$R"OS?ZW41RJM\+K_*UP.2(]%BNJ:A9[#4&!S MO-HQAI[.%^AJ>7OEC:^0W[P`(P!<[5>?S(&U9+_S8VCBA<%T=(?9C[R)NR>Z M]"Y\D#MYC>%Q_Q2>B"1'XHFX5FR/?ZU#DS\*C6Z7;PQ8PFY'47X"2;ITHR1P M1'Y(XD3D`QFA2S)W=Y_0`6Z<2%.HR>VC-%BV:Q-U%\:G_/ATK\DK'_`M\G3" M7TE'(V`Q]./9)[0GCSD)]L57L2%#7VU+33BA;_+->V%50]`^)#N.%MZ,5HXZ M/S\;OGHW.!OT_]VCUR1]0+J=9"`^Z9U!-4AN+O*2X8+$N!0_Q5$HPZ)5Z,:I MJX4)IJ3*['81EQV^/F+_F)HH('"D)+1H2S2M_61/T"$00KPZJ'8$#P-NP,++ M.O%E%C."W.GQ;!3"J8%E93#LGYX/3K_R\G=1GIZ M(RX#Z>;)D^UF%ZYZTI4:Y5<]Z97*KWJJ/\`M6SB&>UVB5#==HM1NK'B)4GWC M2Y1(VA2@[VKRY@.!?H-;MNH/=[1TAH:J7.N3XP+>QQTX1^;+@NA%+37B)3^QVLJ?H M+_UT#V\MV<1VO)/J22(?Q1"0]&&RM-23!#Z2*S'\+G/QT%_62`_R46Z_Y7T6 M]D?_W\_$@TULQ\:3@S"I:@S$JEMJ"ZD)@WL`9%)I(1%5&@:&T*%)51H%8[I4#0\W1^62?\1/)S MB<(BT!-FPS4QC6;*-D&7:O5,5E[H`9%.>R%'-_:%(B"?% M`!EKBT^YT,1K@3CP'TB?!JW+F$G*J6)E*B0RI>^Y"*2P7[AGY($4.0=T#1K:3B@))5LX=30T^YU][' M2^VH$`O.83WUP@C!KWA^?9-5-CL=@0G]N/?K^8G$VXY%M^E92GPV9TE>SA2,`R-20NG'HRD8W?'Z2+@?DX40]:N\(?E?#Q/+HWV2BUTPC22-Q3>` M3.*+Y_IT+T":J$@.''P?X!>\4I.!.I=NR@1&$H5/2NH!(??EV^'&A+\W1=OA M9NWM<%.V'<"97=T.X3C(VPL4>2)34$*];)VNN&50;`3'(3KO*'0>>7>^'A^L MAMW\F(`]7>Z@;+&#E9BVR+^Y$=J:K&H+W@KA+O<2F0X@9$/!HM>O( 9G[UYGQA?DJLF0',O?_W'_P#*UG5\=XL```9$ ` 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 Sat Jun 5 13: 2: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from phoenix.keytown.com (phoenix.keytown.com [194.186.124.2]) by hub.freebsd.org (Postfix) with ESMTP id 2B3CA14D4D for ; Sat, 5 Jun 1999 13:02:01 -0700 (PDT) (envelope-from valera@cliph.keytown.com) Received: from innopharm.keytown.com (alpha.innopharm.keytown.com [194.186.124.61]) by phoenix.keytown.com (8.9.3/8.9.3) with ESMTP id AAA00212 for ; Sun, 6 Jun 1999 00:03:00 +0400 (MSD) (envelope-from valera@cliph.keytown.com) Received: from [194.186.124.62] (helo=cliph.keytown.com) by innopharm.keytown.com with esmtp (Exim 2.12 #1) id 10qMaO-000H9X-00 for freebsd-ports@freebsd.org; Sat, 5 Jun 1999 23:58:33 +0400 Received: from [192.168.1.95] (helo=192.168.1.1) by cliph.keytown.com with smtp (Exim 2.10 #1) id 10qMYv-0002p3-00 for freebsd-ports@FreeBSD.ORG; Sat, 5 Jun 1999 23:57:01 +0400 Date: Sat, 5 Jun 1999 23:57:03 +0400 From: Valera Makushkin X-Mailer: The Bat! (v1.043) S/N F252CF92 Reply-To: Valera Makushkin Message-ID: <16997.990605@cliph.keytown.com> To: freebsd-ports@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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 13: 6: 0 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DF46214D4D; Sat, 5 Jun 1999 13:05:59 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA40443; Sat, 5 Jun 1999 13:05:59 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Sat, 5 Jun 1999 13:05:59 -0700 (PDT) From: Message-Id: <199906052005.NAA40443@freefall.freebsd.org> To: nick.hibma@jrc.it, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/12034: comms/conserver installs into /usr/local instead of ${PREFIX} Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: comms/conserver installs into /usr/local instead of ${PREFIX} State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Sat Jun 5 13:05:16 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 13: 8:12 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 584EA15569; Sat, 5 Jun 1999 13:08:10 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA40608; Sat, 5 Jun 1999 13:08:10 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Sat, 5 Jun 1999 13:08:10 -0700 (PDT) From: Message-Id: <199906052008.NAA40608@freefall.freebsd.org> To: nick.hibma@jrc.it, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/12033: [PATCH] audio/rplay port references /usr/local directly instead of ${PREFIX} Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] audio/rplay port references /usr/local directly instead of ${PREFIX} State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Sat Jun 5 13:08:02 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 13:15:17 1999 Delivered-To: freebsd-ports@freebsd.org Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 6731014BE2 for ; Sat, 5 Jun 1999 13:15:11 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 22B521477; Sat, 5 Jun 1999 13:15:06 -0700 (PDT) Date: Sat, 5 Jun 1999 13:15:06 -0700 From: Chris Piazza To: "Pedro F. Giffuni" Cc: ports@FreeBSD.ORG Subject: Re: Question about linking GLUT. Message-ID: <19990605131506.A497@norn.ca.eu.org> References: <37596C70.17D5FEEB@bachue.usc.unal.edu.co> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.5i In-Reply-To: <37596C70.17D5FEEB@bachue.usc.unal.edu.co>; from Pedro F. Giffuni on Sat, Jun 05, 1999 at 01:29:04PM -0500 X-Operating-System: FreeBSD norn.ca.eu.org 4.0-CURRENT Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Jun 05, 1999 at 01:29:04PM -0500, Pedro F. Giffuni wrote: > Hi, Since we will soon have accelerated OpenGL, I am porting GLUI: > > http://www.cs.unc.edu/~rademach/glui > > however I have problems building the examples: > ________________________ > Linking example1 > cc -I/usr/X11R6/include example1.o -lXmu -lXext -lX11 -lm > -L/usr/X11R6/lib -lglut -lGL -lGLU -Llib -lglui -o bin/example1 > /usr/X11R6/lib/libglut.so: undefined reference to `XGetExtensionVersion' > *** Error code 1 > ________________________ > Any ideas on what is missing ? > I believe you need a -lXi too. Good luck. -- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 13:16:54 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 53D3C14BE2; Sat, 5 Jun 1999 13:16:53 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA41151; Sat, 5 Jun 1999 13:16:53 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Sat, 5 Jun 1999 13:16:53 -0700 (PDT) From: Message-Id: <199906052016.NAA41151@freefall.freebsd.org> To: koji@dti.ad.jp, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/12029: update port: net/traceroute Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: net/traceroute State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Sat Jun 5 13:11:41 PDT 1999 State-Changed-Why: Committed, thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 13:20: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E3E0414C21; Sat, 5 Jun 1999 13:20:04 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA41346; Sat, 5 Jun 1999 13:20:04 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Sat, 5 Jun 1999 13:20:04 -0700 (PDT) From: Message-Id: <199906052020.NAA41346@freefall.freebsd.org> To: osa@freebsd.org.ru, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/12012: new version of postfix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new version of postfix State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Sat Jun 5 13:19:13 PDT 1999 State-Changed-Why: 12015 is an update to this PR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 13:30: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 59D9A14D75 for ; Sat, 5 Jun 1999 13:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA42013; Sat, 5 Jun 1999 13:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 5 Jun 1999 13:30:03 -0700 (PDT) Message-Id: <199906052030.NAA42013@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Michael Haro Subject: Re: ports/11939: Upgrade of wmsound to 0.9.5 Reply-To: Michael Haro Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11939; it has been noted by GNATS. From: Michael Haro To: freebsd-gnats-submit@freebsd.org, gljohns@bellsouth.net Cc: Subject: Re: ports/11939: Upgrade of wmsound to 0.9.5 Date: Sat, 5 Jun 1999 13:29:41 -0700 I tested your patch. When I run wmsound, I get: WMSound Error: Problem loading WMSound Config file! Do you know how to fix this error? Michael To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 13:34:21 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9B65614D75; Sat, 5 Jun 1999 13:34:20 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA42364; Sat, 5 Jun 1999 13:34:20 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Sat, 5 Jun 1999 13:34:20 -0700 (PDT) From: Message-Id: <199906052034.NAA42364@freefall.freebsd.org> To: deuerl@indra.de, mharo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: misc/11745: typo in ld.c Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: typo in ld.c State-Changed-From-To: open->closed State-Changed-By: mharo State-Changed-When: Sat Jun 5 13:31:07 PDT 1999 State-Changed-Why: My -STABLE system shows n_type. Try updating your source and try again. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 13:37: 0 1999 Delivered-To: freebsd-ports@freebsd.org Received: from ohm.ingsala.unal.edu.co (ohm.ingsala.unal.edu.co [168.176.15.18]) by hub.freebsd.org (Postfix) with ESMTP id 213EC14D75 for ; Sat, 5 Jun 1999 13:36:55 -0700 (PDT) (envelope-from pfgiffun@bachue.usc.unal.edu.co) Received: from bachue.usc.unal.edu.co (unalmodem16.usc.unal.edu.co [168.176.3.46]) by ohm.ingsala.unal.edu.co (8.8.5/8.8.5) with ESMTP id PAA06310; Sat, 5 Jun 1999 15:38:32 -0500 (COT) Message-ID: <375989CC.42F28EAF@bachue.usc.unal.edu.co> Date: Sat, 05 Jun 1999 15:34:20 -0500 From: "Pedro F. Giffuni" Organization: Universidad Nacional de Colombia X-Mailer: Mozilla 4.08 [en] (X11; I; FreeBSD 3.1-RELEASE i386) MIME-Version: 1.0 To: Chris Piazza Cc: ports@FreeBSD.ORG Subject: Re: Question about linking GLUT. References: <37596C70.17D5FEEB@bachue.usc.unal.edu.co> <19990605131506.A497@norn.ca.eu.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Chris Piazza wrote: > > > I believe you need a -lXi too. Good luck. > Yes ! Thanks... Pedro. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 13:40: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3527514D75 for ; Sat, 5 Jun 1999 13:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA42695; Sat, 5 Jun 1999 13:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 5 Jun 1999 13:40:02 -0700 (PDT) Message-Id: <199906052040.NAA42695@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Michael Haro Subject: Re: ports/11521: Broken openssl port %26 Apache 1.3.6 Reply-To: Michael Haro Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11521; it has been noted by GNATS. From: Michael Haro To: freebsd-gnats-submit@freebsd.org, kvgu@uswest.net Cc: Subject: Re: ports/11521: Broken openssl port %26 Apache 1.3.6 Date: Sat, 5 Jun 1999 13:37:29 -0700 The openssl port was updated. Please check if this update has fixed your problem. Michael To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 13:43:18 1999 Delivered-To: freebsd-ports@freebsd.org Received: from y.ml.org (unknown [204.254.69.29]) by hub.freebsd.org (Postfix) with ESMTP id 43437151FF for ; Sat, 5 Jun 1999 13:43:14 -0700 (PDT) (envelope-from j@y.ml.org) Received: (from j@localhost) by y.ml.org (8.9.3-Y/8.9.3) id NAA25575 for freebsd-ports@freebsd.org; Sat, 5 Jun 1999 13:43:13 -0700 (PDT) (envelope-from j) Date: Sat, 5 Jun 1999 13:43:07 -0700 From: "J. Heinrich" To: freebsd-ports@freebsd.org Subject: MySQL port & Perl version Message-ID: <19990605134304.A25508@y.ml.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.5i Organization: none X-Operating-System: NetBSD 1.3 i386 X-Hardware: Compaq 386/20 (12/540) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org First attempt to build the mysql-3.22.22 port on 3.1-RELEASE failed with "Error: you don't have the right version of perl in /usr/bin." I see in /usr/ports/Mk/bsd.port.mk (1.312 1999/05/06 12:07:57) that this is due to PERL_VERSION being set to 5.00503, so the test "exists(/usr/bin/perl${PERL_VERSION}" fails because 3.1-RELEASE shipped with 5.00502. Setting PERL_VERSION to 5.00502 in bsd.port.mk resulted in what appears to be a successful MySQL installation. Is there a more appropriate way around this? Is there a reason that PERL_VERSION is set to a version that isn't even in the ports collection? -- $Id: .signature,v 1.3 1998/03/02 22:18:29 j Exp $ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 14:38:51 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A54914C8D; Sat, 5 Jun 1999 14:38:50 -0700 (PDT) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA46493; Sat, 5 Jun 1999 14:38:49 -0700 (PDT) (envelope-from nik@FreeBSD.org) Date: Sat, 5 Jun 1999 14:38:49 -0700 (PDT) From: Message-Id: <199906052138.OAA46493@freefall.freebsd.org> To: tom@eborcom.com, nik@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: docs/9375: Information on how to build PLIST automatically Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Information on how to build PLIST automatically State-Changed-From-To: open->closed State-Changed-By: nik State-Changed-When: Sat Jun 5 14:38:00 PDT 1999 State-Changed-Why: Added the proposed text (with minor changes). Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 14:54:24 1999 Delivered-To: freebsd-ports@freebsd.org Received: from area51.fremont.ca.us (d60-076.leach.ucdavis.edu [169.237.60.76]) by hub.freebsd.org (Postfix) with ESMTP id 1C9A815269 for ; Sat, 5 Jun 1999 14:54:20 -0700 (PDT) (envelope-from mharo@area51.fremont.ca.us) Received: (from mharo@localhost) by area51.fremont.ca.us (8.9.3/8.9.2) id OAA55739; Sat, 5 Jun 1999 14:54:08 -0700 (PDT) (envelope-from mharo) Date: Sat, 5 Jun 1999 14:54:08 -0700 From: Michael Haro To: "J. Heinrich" Cc: freebsd-ports@FreeBSD.ORG Subject: Re: MySQL port & Perl version Message-ID: <19990605145408.A55674@area51.fremont.ca.us> Mail-Followup-To: "J. Heinrich" , freebsd-ports@FreeBSD.ORG References: <19990605134304.A25508@y.ml.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <19990605134304.A25508@y.ml.org>; from J. Heinrich on Sat, Jun 05, 1999 at 01:43:07PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Jun 05, 1999 at 01:43:07PM -0700, J. Heinrich wrote: > > Setting PERL_VERSION to 5.00502 in bsd.port.mk resulted in what > appears to be a successful MySQL installation. Is there a more > appropriate way around this? Install the upgrade kit at http:/www.freebsd.org/ports/ > Is there a reason that PERL_VERSION > is set to a version that isn't even in the ports collection? That version of perl is part of 3.2 and included in the upgrade kit. Michael To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 15:40: 8 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 482DC1512B for ; Sat, 5 Jun 1999 15:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA53483; Sat, 5 Jun 1999 15:40:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 63E5F14F12 for ; Sat, 5 Jun 1999 15:39:13 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 5FCA31478; Sat, 5 Jun 1999 15:39:08 -0700 (PDT) Message-Id: <19990605223908.5FCA31478@norn.ca.eu.org> Date: Sat, 5 Jun 1999 15:39:08 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12038: New port: id3ed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12038 >Category: ports >Synopsis: New port: id3ed >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 Jun 5 15:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #218: Tue Jun 1 19:22:37 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: A command line id3 tag editor for mp3 files. >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: # # id3ed # id3ed/files # id3ed/files/md5 # id3ed/patches # id3ed/patches/patch-aa # id3ed/pkg # id3ed/pkg/COMMENT # id3ed/pkg/DESCR # id3ed/pkg/PLIST # id3ed/Makefile # echo c - id3ed mkdir -p id3ed > /dev/null 2>&1 echo c - id3ed/files mkdir -p id3ed/files > /dev/null 2>&1 echo x - id3ed/files/md5 sed 's/^X//' >id3ed/files/md5 << 'END-of-id3ed/files/md5' XMD5 (id3ed-1.6.tar.gz) = 7cc763ec55d24313a4ca43e234b07a7a END-of-id3ed/files/md5 echo c - id3ed/patches mkdir -p id3ed/patches > /dev/null 2>&1 echo x - id3ed/patches/patch-aa sed 's/^X//' >id3ed/patches/patch-aa << 'END-of-id3ed/patches/patch-aa' X--- Makefile.orig Thu Jun 3 11:58:26 1999 X+++ Makefile Sat Jun 5 15:27:50 1999 X@@ -1,22 +1,14 @@ X-CXXFLAGS=-Wall -g X X-#comment these two lines if you don't want readline X-CXXFLAGS+=-DWANT_READLINE X-LIBS+=-lreadline -lhistory -lcurses X-#comment this if you are using readline >= 4.0 X-CXXFLAGS+=-DOLD_READLINE X- X-PREFIX=/usr/local X BINDIR=$(PREFIX)/bin X MANDIR=$(PREFIX)/man/man1 X X all: id3ed X X id3ed: id3ed.o misc.o X- g++ $(CFLAGS) $(CXXFLAGS) $^ -o $@ $(LIBS) X+ $(CXX) $(CFLAGS) $(CXXFLAGS) $^ -o $@ $(LIBS) X X depend: X- g++ -MM *.cc > .depend X+ $(CXX) -MM *.cc > .depend X X install: all X install -s -o root -g bin -m 0755 id3ed $(BINDIR) END-of-id3ed/patches/patch-aa echo c - id3ed/pkg mkdir -p id3ed/pkg > /dev/null 2>&1 echo x - id3ed/pkg/COMMENT sed 's/^X//' >id3ed/pkg/COMMENT << 'END-of-id3ed/pkg/COMMENT' XAn id3 tag editor for mp3 files. END-of-id3ed/pkg/COMMENT echo x - id3ed/pkg/DESCR sed 's/^X//' >id3ed/pkg/DESCR << 'END-of-id3ed/pkg/DESCR' XA command line tool to edit id3 tags in mp3 files. X X X-Chris Piazza Xcpiazza@home.net END-of-id3ed/pkg/DESCR echo x - id3ed/pkg/PLIST sed 's/^X//' >id3ed/pkg/PLIST << 'END-of-id3ed/pkg/PLIST' Xbin/id3ed END-of-id3ed/pkg/PLIST echo x - id3ed/Makefile sed 's/^X//' >id3ed/Makefile << 'END-of-id3ed/Makefile' X# New ports collection makefile for: id3ed X# Version required: 1.6 X# Date created: 05 June 1999 X# Whom: Chris Piazza X# X# $Id$ X# X XDISTNAME= id3ed-1.6 XCATEGORIES= audio XMASTER_SITES= http://www.treefort.org/~donut/id3ed/ X XMAINTAINER= cpiazza@home.net X XWRKSRC= ${WRKDIR}/id3ed XUSE_GMAKE= yes XMAKE_ENV= CXXFLAGS="${CXXFLAGS}" CXX="${CXX}" X XMAN1= id3ed.1 X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/id3ed ${PREFIX}/bin X ${INSTALL_MAN} ${WRKSRC}/id3ed.1 ${PREFIX}/man/man1 X X.include END-of-id3ed/Makefile exit -Chris >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 Jun 5 15:40:16 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DF6731516C for ; Sat, 5 Jun 1999 15:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA53492; Sat, 5 Jun 1999 15:40:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id AE71B14F12 for ; Sat, 5 Jun 1999 15:39:17 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 704D9147E; Sat, 5 Jun 1999 15:39:12 -0700 (PDT) Message-Id: <19990605223912.704D9147E@norn.ca.eu.org> Date: Sat, 5 Jun 1999 15:39:12 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12039: New port: spruce Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12039 >Category: ports >Synopsis: New port: spruce >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 Jun 5 15:40:02 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #218: Tue Jun 1 19:22:37 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: A simple GTK+ based mail client. >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: # # spruce # spruce/patches # spruce/patches/patch-aa # spruce/patches/patch-ab # spruce/patches/patch-ac # spruce/patches/patch-ad # spruce/patches/patch-ae # spruce/Makefile # spruce/files # spruce/files/md5 # spruce/pkg # spruce/pkg/PLIST # spruce/pkg/COMMENT # spruce/pkg/DESCR # echo c - spruce mkdir -p spruce > /dev/null 2>&1 echo c - spruce/patches mkdir -p spruce/patches > /dev/null 2>&1 echo x - spruce/patches/patch-aa sed 's/^X//' >spruce/patches/patch-aa << 'END-of-spruce/patches/patch-aa' X--- pop3io.h.orig Sat May 29 08:17:02 1999 X+++ pop3io.h Sat Jun 5 14:55:46 1999 X@@ -19,9 +19,8 @@ X #ifndef POP3IO_H X #define POP3IO_H X X-#include X #include X-#include X+#include X #include X #include X #include END-of-spruce/patches/patch-aa echo x - spruce/patches/patch-ab sed 's/^X//' >spruce/patches/patch-ab << 'END-of-spruce/patches/patch-ab' X--- server.h.orig Fri May 21 18:34:59 1999 X+++ server.h Sat Jun 5 14:55:46 1999 X@@ -19,12 +19,11 @@ X #ifndef SERVER_H X #define SERVER_H X X-#include X #include X-#include X+#include X+#include X #include X #include X-#include X #include X #include X #include END-of-spruce/patches/patch-ab echo x - spruce/patches/patch-ac sed 's/^X//' >spruce/patches/patch-ac << 'END-of-spruce/patches/patch-ac' X--- smtpio.h.orig Sat Jun 5 10:54:32 1999 X+++ smtpio.h Sat Jun 5 14:55:46 1999 X@@ -19,9 +19,8 @@ X #ifndef SMTPIO_H X #define SMTPIO_H X X-#include X #include X-#include X+#include X #include X #include X #include END-of-spruce/patches/patch-ac echo x - spruce/patches/patch-ad sed 's/^X//' >spruce/patches/patch-ad << 'END-of-spruce/patches/patch-ad' X--- sockio.h.orig Mon May 17 17:42:53 1999 X+++ sockio.h Sat Jun 5 14:55:46 1999 X@@ -19,9 +19,8 @@ X #ifndef SOCKIO_H X #define SOCKIO_H X X-#include X #include X-#include X+#include X #include X #include X #include END-of-spruce/patches/patch-ad echo x - spruce/patches/patch-ae sed 's/^X//' >spruce/patches/patch-ae << 'END-of-spruce/patches/patch-ae' X--- smtpio.c.orig Sat Jun 5 10:54:01 1999 X+++ smtpio.c Sat Jun 5 14:55:46 1999 X@@ -17,6 +17,7 @@ X */ X X #include "smtpio.h" X+#include X X static char *smtp_errlist[] = {"", X ": Hostname failed to resolve", END-of-spruce/patches/patch-ae echo x - spruce/Makefile sed 's/^X//' >spruce/Makefile << 'END-of-spruce/Makefile' X# New ports collection makefile for: spruce X# Version required: 0.4.4 X# Date created: 05 June 1999 X# Whom: Chris Piazza X# X# $Id$ X# X XDISTNAME= spruce-0.4.4 XCATEGORIES= mail XMASTER_SITES= http://www.xtorshun.org/spruce/ X XMAINTAINER= cpiazza@home.net X XLIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 X XGNU_CONFIGURE= yes XCONFIGURE_ENV= GTK_CONFIG=${X11BASE}/bin/gtk12-config XUSE_GMAKE= yes X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/spruce ${PREFIX}/bin X @ ${MKDIR} ${PREFIX}/share/spruce X ${INSTALL_DATA} ${WRKSRC}/xpm/* ${PREFIX}/share/spruce X X.include END-of-spruce/Makefile echo c - spruce/files mkdir -p spruce/files > /dev/null 2>&1 echo x - spruce/files/md5 sed 's/^X//' >spruce/files/md5 << 'END-of-spruce/files/md5' XMD5 (spruce-0.4.4.tar.gz) = 9d257d502c215443f7a4fddd72f69c50 END-of-spruce/files/md5 echo c - spruce/pkg mkdir -p spruce/pkg > /dev/null 2>&1 echo x - spruce/pkg/PLIST sed 's/^X//' >spruce/pkg/PLIST << 'END-of-spruce/pkg/PLIST' Xbin/spruce Xshare/spruce/dir_closed.xpm Xshare/spruce/dir_open.xpm Xshare/spruce/enabled.xpm Xshare/spruce/envelope.xpm Xshare/spruce/forwarded.xpm Xshare/spruce/inbox.xpm Xshare/spruce/outbox.xpm Xshare/spruce/replied.xpm Xshare/spruce/splashscreen.xpm Xshare/spruce/splashscreen2.xpm Xshare/spruce/trash.xpm Xshare/spruce/tray_empty.xpm Xshare/spruce/tray_full.xpm X@dirrm share/spruce END-of-spruce/pkg/PLIST echo x - spruce/pkg/COMMENT sed 's/^X//' >spruce/pkg/COMMENT << 'END-of-spruce/pkg/COMMENT' XA simple GTK based email client. END-of-spruce/pkg/COMMENT echo x - spruce/pkg/DESCR sed 's/^X//' >spruce/pkg/DESCR << 'END-of-spruce/pkg/DESCR' XSpruce is a very simple email client that uses GTK+ for it's user interface. X XWWW: http://www.xtorshun.org/spruce/ X X-Chris Piazza Xcpiazza@home.net END-of-spruce/pkg/DESCR exit -Chris >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 Jun 5 16:40: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C7EF150EA for ; Sat, 5 Jun 1999 16:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA58727; Sat, 5 Jun 1999 16:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 7E50E150EA for ; Sat, 5 Jun 1999 16:37:51 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id E7037143C; Sat, 5 Jun 1999 16:37:46 -0700 (PDT) Message-Id: <19990605233746.E7037143C@norn.ca.eu.org> Date: Sat, 5 Jun 1999 16:37:46 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12040: New port: toolbox Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12040 >Category: ports >Synopsis: New port: toolbox >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 Jun 5 16:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #218: Tue Jun 1 19:22:37 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: A style/theme configuration utility for the blackbox window manager. I put it in misc following the precedent that enlightenment-conf set. >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: # # toolbox # toolbox/files # toolbox/files/md5 # toolbox/patches # toolbox/patches/patch-aa # toolbox/pkg # toolbox/pkg/COMMENT # toolbox/pkg/DESCR # toolbox/pkg/PLIST # toolbox/Makefile # echo c - toolbox mkdir -p toolbox > /dev/null 2>&1 echo c - toolbox/files mkdir -p toolbox/files > /dev/null 2>&1 echo x - toolbox/files/md5 sed 's/^X//' >toolbox/files/md5 << 'END-of-toolbox/files/md5' XMD5 (toolbox-0.4.0.tar.gz) = 0e3000c14df48439b831e88316944540 END-of-toolbox/files/md5 echo c - toolbox/patches mkdir -p toolbox/patches > /dev/null 2>&1 echo x - toolbox/patches/patch-aa sed 's/^X//' >toolbox/patches/patch-aa << 'END-of-toolbox/patches/patch-aa' X--- Makefile.orig Sat Jun 5 16:31:00 1999 X+++ Makefile Sat Jun 5 16:31:25 1999 X@@ -1,6 +1,6 @@ X-CC = gcc X-LIBS = `gtk-config --libs` `glib-config --libs` -L/usr/X11R6/lib -lX11 X-CFLAGS = -g -O2 -Wall `gtk-config --cflags` `glib-config --cflags` -I/usr/X11R6/include X+CC ?= gcc X+LIBS = `gtk12-config --libs` `glib12-config --libs` -L/usr/X11R6/lib -lX11 X+CFLAGS += `gtk12-config --cflags` `glib12-config --cflags` -I/usr/X11R6/include X X OBJECTS = toolbox.o sigfunc.o widget.o tree.o uibox.o color.o io.o parser.o X SOURCES = toolbox.c sigfunc.c widget.c tree.c uibox.c color.c io.c parser.c END-of-toolbox/patches/patch-aa echo c - toolbox/pkg mkdir -p toolbox/pkg > /dev/null 2>&1 echo x - toolbox/pkg/COMMENT sed 's/^X//' >toolbox/pkg/COMMENT << 'END-of-toolbox/pkg/COMMENT' XA blackbox style configuration utility. END-of-toolbox/pkg/COMMENT echo x - toolbox/pkg/DESCR sed 's/^X//' >toolbox/pkg/DESCR << 'END-of-toolbox/pkg/DESCR' XA utility for the blackbox window manager that allows you to configure and Xcreate "styles" or "themes" for your desktop. X X-Chris Piazza Xcpiazza@home.net END-of-toolbox/pkg/DESCR echo x - toolbox/pkg/PLIST sed 's/^X//' >toolbox/pkg/PLIST << 'END-of-toolbox/pkg/PLIST' Xbin/toolbox END-of-toolbox/pkg/PLIST echo x - toolbox/Makefile sed 's/^X//' >toolbox/Makefile << 'END-of-toolbox/Makefile' X# New ports collection makefile for: toolbox X# Version required: 0.4.0 X# Date created: 05 June 1999 X# Whom: Chris Piazza X# X# $Id$ X# X XDISTNAME= toolbox-0.4.0 XCATEGORIES= misc XMASTER_SITES= http://cs.bc.edu/~kelleyry/blackbox/utils/ X XMAINTAINER= cpiazza@home.net X XLIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 X XALL_TARGET= default X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/toolbox ${PREFIX}/bin/toolbox X X.include END-of-toolbox/Makefile exit -Chris >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 Jun 5 19:20: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 69CC114D17 for ; Sat, 5 Jun 1999 19:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA28041; Sat, 5 Jun 1999 19:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from praxis.lunabase.org (unknown [204.140.175.133]) by hub.freebsd.org (Postfix) with ESMTP id E2F0B14CBA for ; Sat, 5 Jun 1999 19:14:28 -0700 (PDT) (envelope-from faber@praxis.lunabase.org) Received: (from faber@localhost) by praxis.lunabase.org (8.9.2/8.8.8) id TAA17787; Sat, 5 Jun 1999 19:14:27 -0700 (PDT) (envelope-from faber) Message-Id: <199906060214.TAA17787@praxis.lunabase.org> Date: Sat, 5 Jun 1999 19:14:27 -0700 (PDT) From: Ted Faber Reply-To: faber@lunabase.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12043: sced port update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12043 >Category: ports >Synopsis: sced-1.02 released >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 Jun 5 19:20:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Ted Faber >Release: FreeBSD 3.1-RELEASE i386 >Organization: >Environment: >Description: sced has been updated. I made minimal changes (changed the distname and recomputed the checksum) and the port compiles and installs successfully. The port owner is ports@freebsd.org, so this seemed the easiest way to suggest an update. A diff if my minimal changes is attached. Feel free to take a closer look and see if I missed something. >How-To-Repeat: >Fix: diff -ruN sced.bak/Makefile sced/Makefile --- sced.bak/Makefile Mon Dec 28 15:49:36 1998 +++ sced/Makefile Sat Jun 5 18:56:26 1999 @@ -6,7 +6,7 @@ # $Id: Makefile,v 1.4 1998/12/28 21:44:40 dirk Exp $ # -DISTNAME= sced-1.01 +DISTNAME= sced-1.02 CATEGORIES= graphics MASTER_SITES= http://www.cs.berkeley.edu/~schenney/sced/src/ \ http://www.physik.TU-Berlin.DE/~ibex/ports/distfiles/ diff -ruN sced.bak/files/md5 sced/files/md5 --- sced.bak/files/md5 Mon Dec 28 15:49:36 1998 +++ sced/files/md5 Sat Jun 5 19:02:46 1999 @@ -1 +1 @@ -MD5 (sced-1.01.tar.gz) = b1810c96168f7735fb9b1c0d4f89a002 +MD5 (sced-1.02.tar.gz) = 1e4d4bbc2faba5e09db20449d67e3760 >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 Jun 5 20:12:56 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mail3.lig.bellsouth.net (mail3.lig.bellsouth.net [205.152.0.51]) by hub.freebsd.org (Postfix) with ESMTP id 7AB5314D35 for ; Sat, 5 Jun 1999 20:12:54 -0700 (PDT) (envelope-from gljohns@bellsouth.net) Received: from gforce.johnson.home (host-209-214-147-227.msy.bellsouth.net [209.214.147.227]) by mail3.lig.bellsouth.net (8.8.8-spamdog/8.8.5) with ESMTP id XAA20382; Sat, 5 Jun 1999 23:02:44 -0400 (EDT) Received: (from glenn@localhost) by gforce.johnson.home (8.9.3/8.9.3) id WAA09931; Sat, 5 Jun 1999 22:12:14 -0500 (CDT) (envelope-from glenn) From: Glenn Johnson Date: Sat, 5 Jun 1999 22:12:14 -0500 To: Michael Haro Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/11939: Upgrade of wmsound to 0.9.5 Message-ID: <19990605221214.A4984@gforce.johnson.home> References: <199906052030.NAA42013@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.5i In-Reply-To: <199906052030.NAA42013@freefall.freebsd.org>; from Michael Haro on Sat, Jun 05, 1999 at 01:30:03PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Jun 05, 1999 at 01:30:03PM -0700, Michael Haro wrote: > The following reply was made to PR ports/11939; it has been noted by GNATS. > > From: Michael Haro > To: freebsd-gnats-submit@freebsd.org, gljohns@bellsouth.net > Cc: > Subject: Re: ports/11939: Upgrade of wmsound to 0.9.5 > Date: Sat, 5 Jun 1999 13:29:41 -0700 > > I tested your patch. When I run wmsound, I get: > WMSound Error: Problem loading WMSound Config file! > > Do you know how to fix this error? > > Michael This error is caused if the WMSound file is not in the user's $HOME/GNUstep/Defaults directory. I don't know how that situation can be resolved in the port. However, a default WMSound file is installed in /usr/X11R6/share/WindowMaker/Defaults. I will see if there is a way to force wmsound to use this file as perhaps it should. Of course, if the sound files that this WMSound file references are not installed then there will be a different error. I think the author's intent was to use the installed WMSound file as a guide for one to create their own WMSound file in their $HOME/GNUstep/Defaults directory. I plan on doing a port of some predefined SoundSets. That should help the situation if I can get wmsound to use the global WMSound file. I will get back to you. -- Glenn Johnson gljohns@bellsouth.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 22:27: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mail2.lig.bellsouth.net (mail2.lig.bellsouth.net [205.152.0.56]) by hub.freebsd.org (Postfix) with ESMTP id 1872214D10 for ; Sat, 5 Jun 1999 22:27:05 -0700 (PDT) (envelope-from gljohns@bellsouth.net) Received: from gforce.johnson.home (host-209-214-150-76.msy.bellsouth.net [209.214.150.76]) by mail2.lig.bellsouth.net (8.8.8-spamdog/8.8.5) with ESMTP id BAA11116; Sun, 6 Jun 1999 01:26:53 -0400 (EDT) Received: (from glenn@localhost) by gforce.johnson.home (8.9.3/8.9.3) id AAA29918; Sun, 6 Jun 1999 00:26:54 -0500 (CDT) (envelope-from glenn) From: Glenn Johnson Date: Sun, 6 Jun 1999 00:26:18 -0500 To: Michael Haro Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/11939: Upgrade of wmsound to 0.9.5 Message-ID: <19990606002618.A29837@gforce.johnson.home> References: <199906052030.NAA42013@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary=G4iJoqBmSsgzjUCe X-Mailer: Mutt 0.95.5i In-Reply-To: <199906052030.NAA42013@freefall.freebsd.org>; from Michael Haro on Sat, Jun 05, 1999 at 01:30:03PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --G4iJoqBmSsgzjUCe Content-Type: text/plain; charset=us-ascii On Sat, Jun 05, 1999 at 01:30:03PM -0700, Michael Haro wrote: > The following reply was made to PR ports/11939; it has been noted by GNATS. > > From: Michael Haro > To: freebsd-gnats-submit@freebsd.org, gljohns@bellsouth.net > Cc: > Subject: Re: ports/11939: Upgrade of wmsound to 0.9.5 > Date: Sat, 5 Jun 1999 13:29:41 -0700 > > I tested your patch. When I run wmsound, I get: > WMSound Error: Problem loading WMSound Config file! > > Do you know how to fix this error? > > Michael As I mentioned in a previous e-mail, this error is because the WMSound file is not in the user's ~/GNUstep/Defaults directory. I looked into this a bit more and have come to realize that this is a messy problem. As you probably know, in order to use Window Maker, one must first run 'wmaker.inst'. This is in order to get the necessary config files into ~/GNUstep/Defaults. This is true for wmsound as well. If one runs wmaker.inst after installing wmsound, then WMSound will be properly installed into ~/GNUstep/Defaults. Of course, the file can be manually copied as well. This all seems to stem from the fact that the 'Defaults' path is hard-coded into libPropList. The path ~/GNUstep/Defaults is set in the libPropList build. Is it reasonable to define this default to something else? I am not sure what would break, as several Window Maker ports as well as some gnome ports (at least one) use it. I don't know what the proper solution is. I guess a note at the end of the wmsound installation reminding the sysadmin of the need to tell the users of wmsound to copy the installed WMSound file into ~/GNUstep/Defaults would be a minimum. Each user rerunning wmaker.inst would also do the trick. Please note, I am attaching a new diff to the port. The only difference between the attached and what was in the PR is that the attached puts the WMSound file into X11R6/etc/WindowMaker as opposed to X11R6/share/WindowMaker. Also, I will be submitting a port for SoundSets, which I think should probably be a RUN_DEPENDS in wmsound. I will be submitting that in the next week. Thanks. -- Glenn Johnson gljohns@bellsouth.net --G4iJoqBmSsgzjUCe Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=wmsound-update diff -ruN wmsound.old/Makefile wmsound/Makefile --- wmsound.old/Makefile Sat May 29 16:51:35 1999 +++ wmsound/Makefile Sat Jun 5 23:12:40 1999 @@ -6,7 +6,7 @@ # $Id: Makefile,v 1.4 1999/04/11 21:39:23 jseger Exp $ # -DISTNAME= wmsound-0.9.3 +DISTNAME= wmsound-0.9.5 CATEGORIES= audio windowmaker MASTER_SITES= ftp://shadowmere.student.utwente.nl/pub/WindowMaker/ @@ -20,9 +20,9 @@ post-install: ${SH} ${FILESDIR}/configure > ${WRKDIR}/WMSound - ${MKDIR} ${PREFIX}/share/WindowMaker/Defaults + ${MKDIR} ${PREFIX}/etc/WindowMaker/ ${INSTALL_DATA} ${WRKDIR}/WMSound \ - ${PREFIX}/share/WindowMaker/Defaults/WMSound + ${PREFIX}/etc/WindowMaker/WMSound ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib .include diff -ruN wmsound.old/files/md5 wmsound/files/md5 --- wmsound.old/files/md5 Sat May 29 16:51:34 1999 +++ wmsound/files/md5 Sat Jun 5 21:39:11 1999 @@ -1 +1 @@ -MD5 (wmsound-0.9.3.tar.gz) = dcb6acbd293d9ecf0b8a4fdfd6c12189 +MD5 (wmsound-0.9.5.tar.gz) = 86f9b19ca0ca1daa072d76d02943dd3e diff -ruN wmsound.old/patches/patch-aa wmsound/patches/patch-aa --- wmsound.old/patches/patch-aa Sat May 29 16:51:34 1999 +++ wmsound/patches/patch-aa Sat Jun 5 21:39:11 1999 @@ -1,16 +1,16 @@ ---- Imakefile.orig Sun Jan 17 07:56:11 1999 -+++ Imakefile Fri Jan 22 22:14:48 1999 -@@ -1,12 +1,10 @@ +--- Imakefile.orig Sat May 29 17:31:32 1999 ++++ Imakefile Sat May 29 17:32:02 1999 +@@ -1,11 +1,11 @@ #define IHaveSubdirs #define PassCDebugFlags CDEBUGFLAGS="$(CDEBUGFLAGS)" -PREFIX = /usr/local -- ++XCOMM PREFIX = /usr/local + DESTDIR = $(PREFIX) - XCOMM CDEBUGFLAGS = -Wall -ggdb -DDEBUG --CDEBUGFLAGS = -O6 -ffast-math -+XCOMM CDEBUGFLAGS = -O6 -ffast-math +-CDEBUGFLAGS = -Wall -ggdb -DDEBUG ++XCOMM CDEBUGFLAGS = -Wall -ggdb -DDEBUG + XCOMM CDEBUGFLAGS = -O6 -ffast-math - XCOMM Uncomment the following two lines for HPUX support diff -ruN wmsound.old/pkg/DESCR wmsound/pkg/DESCR --- wmsound.old/pkg/DESCR Sat May 29 16:51:34 1999 +++ wmsound/pkg/DESCR Sat Jun 5 21:39:11 1999 @@ -10,6 +10,8 @@ Window Maker, or upgrade to a newer version. You must set up your sounds to use for various events, ie., iconification. You -can get preset Sounsets from: +can get preset SoundSets from: http://www.frontiernet.net/~southgat/wmsound/sounds/index.shtml + +WWW: http://www.frontiernet.net/~southgat/ diff -ruN wmsound.old/pkg/PLIST wmsound/pkg/PLIST --- wmsound.old/pkg/PLIST Sat May 29 16:51:34 1999 +++ wmsound/pkg/PLIST Sat Jun 5 23:25:24 1999 @@ -3,7 +3,7 @@ bin/getsounds bin/setsounds include/wmsnd.h -share/WindowMaker/Defaults/WMSound +etc/WindowMaker/WMSound lib/libwmsnd.a @exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B @unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R --G4iJoqBmSsgzjUCe-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Jun 5 22:35: 1 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 62A5F14D10; Sat, 5 Jun 1999 22:35:00 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Received: (from mharo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA30181; Sat, 5 Jun 1999 22:35:00 -0700 (PDT) (envelope-from mharo@FreeBSD.org) Date: Sat, 5 Jun 1999 22:35:00 -0700 (PDT) From: Message-Id: <199906060535.WAA30181@freefall.freebsd.org> To: mharo@FreeBSD.org, freebsd-ports@FreeBSD.org, mharo@FreeBSD.org Subject: Re: ports/11939: Upgrade of wmsound to 0.9.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Upgrade of wmsound to 0.9.5 Responsible-Changed-From-To: freebsd-ports->mharo Responsible-Changed-By: mharo Responsible-Changed-When: Sat Jun 5 22:33:56 PDT 1999 Responsible-Changed-Why: The maintainer of this port requested to be contacted before updates. I'll contact him and then update the port in the next few days. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jun 6 0:20: 5 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ABA7414C9B for ; Sun, 6 Jun 1999 00:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA37720; Sun, 6 Jun 1999 00:20:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sun, 6 Jun 1999 00:20:01 -0700 (PDT) Message-Id: <199906060720.AAA37720@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Chris Piazza Subject: Re: ports/12040: New port: toolbox Reply-To: Chris Piazza Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/12040; it has been noted by GNATS. From: Chris Piazza To: cpiazza@home.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/12040: New port: toolbox Date: Sun, 6 Jun 1999 01:14:18 -0700 The program was already updated, a new shell archive is attached. # 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: # # toolbox # toolbox/files # toolbox/files/md5 # toolbox/patches # toolbox/patches/patch-aa # toolbox/pkg # toolbox/pkg/COMMENT # toolbox/pkg/DESCR # toolbox/pkg/PLIST # toolbox/Makefile # echo c - toolbox mkdir -p toolbox > /dev/null 2>&1 echo c - toolbox/files mkdir -p toolbox/files > /dev/null 2>&1 echo x - toolbox/files/md5 sed 's/^X//' >toolbox/files/md5 << 'END-of-toolbox/files/md5' XMD5 (toolbox-0.4.1.tar.gz) = defc368867fc23d51a50aadf66a7ea55 END-of-toolbox/files/md5 echo c - toolbox/patches mkdir -p toolbox/patches > /dev/null 2>&1 echo x - toolbox/patches/patch-aa sed 's/^X//' >toolbox/patches/patch-aa << 'END-of-toolbox/patches/patch-aa' X--- Makefile.orig Sat Jun 5 16:31:00 1999 X+++ Makefile Sat Jun 5 16:31:25 1999 X@@ -1,6 +1,6 @@ X-CC = gcc X-LIBS = `gtk-config --libs` `glib-config --libs` -L/usr/X11R6/lib -lX11 X-CFLAGS = -g -O2 -Wall `gtk-config --cflags` `glib-config --cflags` -I/usr/X11R6/include X+CC ?= gcc X+LIBS = `gtk12-config --libs` `glib12-config --libs` -L/usr/X11R6/lib -lX11 X+CFLAGS += `gtk12-config --cflags` `glib12-config --cflags` -I/usr/X11R6/include X X OBJECTS = toolbox.o sigfunc.o widget.o tree.o uibox.o color.o io.o parser.o X SOURCES = toolbox.c sigfunc.c widget.c tree.c uibox.c color.c io.c parser.c END-of-toolbox/patches/patch-aa echo c - toolbox/pkg mkdir -p toolbox/pkg > /dev/null 2>&1 echo x - toolbox/pkg/COMMENT sed 's/^X//' >toolbox/pkg/COMMENT << 'END-of-toolbox/pkg/COMMENT' XA blackbox style configuration utility. END-of-toolbox/pkg/COMMENT echo x - toolbox/pkg/DESCR sed 's/^X//' >toolbox/pkg/DESCR << 'END-of-toolbox/pkg/DESCR' XA utility for the blackbox window manager that allows you to configure and Xcreate "styles" or "themes" for your desktop. X X-Chris Piazza Xcpiazza@home.net END-of-toolbox/pkg/DESCR echo x - toolbox/pkg/PLIST sed 's/^X//' >toolbox/pkg/PLIST << 'END-of-toolbox/pkg/PLIST' Xbin/toolbox END-of-toolbox/pkg/PLIST echo x - toolbox/Makefile sed 's/^X//' >toolbox/Makefile << 'END-of-toolbox/Makefile' X# New ports collection makefile for: toolbox X# Version required: 0.4.1 X# Date created: 05 June 1999 X# Whom: Chris Piazza X# X# $Id$ X# X XDISTNAME= toolbox-0.4.1 XCATEGORIES= misc XMASTER_SITES= http://cs.bc.edu/~kelleyry/blackbox/utils/ X XMAINTAINER= cpiazza@home.net X XLIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 X XALL_TARGET= default X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/toolbox ${PREFIX}/bin/toolbox X X.include END-of-toolbox/Makefile exit -- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jun 6 1: 1:56 1999 Delivered-To: freebsd-ports@freebsd.org Received: from rmx07.globecomm.net (rmx07.iname.net [165.251.8.75]) by hub.freebsd.org (Postfix) with ESMTP id 920C114FE7 for ; Sun, 6 Jun 1999 01:01:53 -0700 (PDT) (envelope-from davec@unforgettable.com) Received: from weba3.iname.net by rmx07.globecomm.net (8.9.1/8.8.0) with ESMTP id EAA27557 ; Sun, 6 Jun 1999 04:01:53 -0400 (EDT) From: davec@unforgettable.com Received: (from root@localhost) by weba3.iname.net (8.9.1a/8.9.2.Alpha2) id EAA12248; Sun, 6 Jun 1999 04:01:53 -0400 (EDT) MIME-Version: 1.0 Message-Id: <9906060401536K.05052@weba3.iname.net> Date: Sun, 6 Jun 1999 04:01:53 -0400 (EDT) Content-Type: Text/Plain Content-Transfer-Encoding: 7bit To: ports@FreeBSD.ORG Subject: xanim 2.80.1 port path error? Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, this email is in regards to the FreeBSD xanim port. The compiled xanim is looking for the vid libs/dlls in /usr/X11R6/lib/X11/xanim/mods, which is not where the port installs the .xa files to. xanim's patch file (patch-ab) needs to be modified to say: +XA_DLL_PATH = $(LIBDIR)/xanim instead of: +XA_DLL_PATH = $(LIBDIR)/xanim/mods I hope this helps. Dave davec@unforgettable.com ---------------------------------------------------------------- Get your free email from AltaVista at http://altavista.iname.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Jun 6 1:40: 6 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2C44514CD4 for ; Sun, 6 Jun 1999 01:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA41472; Sun, 6 Jun 1999 01:40:00 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 06A7E14CB0 for ; Sun, 6 Jun 1999 01:36:56 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 09CF5146E; Sun, 6 Jun 1999 02:36:48 -0700 (PDT) Message-Id: <19990606093648.09CF5146E@norn.ca.eu.org> Date: Sun, 6 Jun 1999 02:36:48 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12045: Update: audio/aumix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12045 >Category: ports >Synopsis: Update: audio/aumix >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 Jun 6 01:40:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #218: Tue Jun 1 19:22:37 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: Update to 1.20. I'm the maintainer of this port. >How-To-Repeat: >Fix: Index: aumix/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/audio/aumix/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 1999/06/02 05:26:34 1.2 +++ Makefile 1999/06/06 09:31:29 @@ -1,12 +1,12 @@ # New ports collection makefile for: aumix -# Version required: 1.19 +# Version required: 1.20 # Date created: 21 May 1999 # Whom: Chris Piazza # # $Id: Makefile,v 1.2 1999/06/02 05:26:34 mharo Exp $ # -DISTNAME= aumix-1.19 +DISTNAME= aumix-1.20 CATEGORIES= audio MASTER_SITES= http://jpj.net/~trevor/aumix/ \ ${MASTER_SITE_SUNSITE} Index: aumix/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/audio/aumix/files/md5,v retrieving revision 1.2 diff -u -r1.2 md5 --- md5 1999/06/02 05:26:38 1.2 +++ md5 1999/06/06 09:32:00 @@ -1 +1 @@ -MD5 (aumix-1.19.tar.gz) = 0ca846dda9e0c42f3694113373e3fe47 +MD5 (aumix-1.20.tar.gz) = 9a54263eeb0f6e1d32425edf1e40f492 -Chris >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 Jun 6 2:40: 9 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E34914D85 for ; Sun, 6 Jun 1999 02:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA43977; Sun, 6 Jun 1999 02:40:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id DB13414C94 for ; Sun, 6 Jun 1999 02:34:49 -0700 (PDT) (envelope-from norn@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id 163E61480; Sun, 6 Jun 1999 02:34:49 -0700 (PDT) Message-Id: <19990606093449.163E61480@norn.ca.eu.org> Date: Sun, 6 Jun 1999 02:34:49 -0700 (PDT) From: cpiazza@home.net Reply-To: cpiazza@home.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12047: Update: editors/cooledit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12047 >Category: ports >Synopsis: Update: editors/cooledit >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 Jun 6 02:40:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Chris Piazza >Release: FreeBSD 4.0-CURRENT i386 >Organization: n/a >Environment: FreeBSD norn.ca.eu.org 4.0-CURRENT FreeBSD 4.0-CURRENT #218: Tue Jun 1 19:22:37 PDT 1999 norn@norn.ca.eu.org:/usr/src/sys/compile/NORN i386 >Description: Update to 3.11.0 and sort the PLIST. Files removed: all of patches/ >How-To-Repeat: >Fix: Index: cooledit/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/editors/cooledit/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- Makefile 1999/06/05 19:00:07 1.13 +++ Makefile 1999/06/06 09:57:02 @@ -1,12 +1,12 @@ # New ports collection makefile for: cooledit -# Version required: 3.8.3 +# Version required: 3.11.0 # Date created: 18 November 1997 # Whom: brett@peloton.physics.montana.edu # # $Id: Makefile,v 1.13 1999/06/05 19:00:07 mharo Exp $ # -DISTNAME= cooledit-3.9.0 +DISTNAME= cooledit-3.11.0 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= apps/editors/X Index: cooledit/files/md5 =================================================================== RCS file: /cvs/FreeBSD/ports/editors/cooledit/files/md5,v retrieving revision 1.6 diff -u -r1.6 md5 --- md5 1999/04/06 22:06:40 1.6 +++ md5 1999/06/06 09:43:53 @@ -1 +1 @@ -MD5 (cooledit-3.9.0.tar.gz) = 89514b4f8c92985017f8ec8cf818d78e +MD5 (cooledit-3.11.0.tar.gz) = 833b06b605533a85c48d2385e2ce445f Index: cooledit/patches/patch-aa =================================================================== RCS file: patch-aa diff -N patch-aa --- /tmp/cvsp93894 Sun Jun 6 02:32:18 1999 +++ /dev/null Sun Jun 6 02:29:02 1999 @@ -1,23 +0,0 @@ ---- icon/Makefile.in.orig Sat Mar 13 16:48:21 1999 -+++ icon/Makefile.in Tue Apr 6 12:02:40 1999 -@@ -95,8 +95,7 @@ - VERSION = @VERSION@ - l = @l@ - --bin_PROGRAMS = coolicon coolicon.static coolbrowse coolbrowse.static coolmessage coolmessage.static \ -- coollistbox coollistbox.static coolquery coolquery.static coolinput coolinput.static -+bin_PROGRAMS = coolicon coolbrowse coolmessage coollistbox coolquery coolinput - - INCLUDES = -I$(top_srcdir)/widget -I$(top_srcdir) -I$(top_srcdir)/intl - -@@ -199,8 +198,8 @@ - - TAR = tar - GZIP = --best --SOURCES = $(coolicon_SOURCES) $(coolicon_static_SOURCES) $(coolbrowse_SOURCES) $(coolbrowse_static_SOURCES) $(coolmessage_SOURCES) $(coolmessage_static_SOURCES) $(coollistbox_SOURCES) $(coollistbox_static_SOURCES) $(coolquery_SOURCES) $(coolquery_static_SOURCES) $(coolinput_SOURCES) $(coolinput_static_SOURCES) --OBJECTS = $(coolicon_OBJECTS) $(coolicon_static_OBJECTS) $(coolbrowse_OBJECTS) $(coolbrowse_static_OBJECTS) $(coolmessage_OBJECTS) $(coolmessage_static_OBJECTS) $(coollistbox_OBJECTS) $(coollistbox_static_OBJECTS) $(coolquery_OBJECTS) $(coolquery_static_OBJECTS) $(coolinput_OBJECTS) $(coolinput_static_OBJECTS) -+SOURCES = $(coolicon_SOURCES) $(coolbrowse_SOURCES) $(coolmessage_SOURCES) $(coollistbox_SOURCES) $(coolquery_SOURCES) $(coolinput_SOURCES) -+OBJECTS = $(coolicon_OBJECTS) $(coolbrowse_OBJECTS) $(coolmessage_OBJECTS) $(coollistbox_OBJECTS) $(coolquery_OBJECTS) $(coolinput_OBJECTS) - - all: Makefile $(PROGRAMS) - Index: cooledit/patches/patch-ab =================================================================== RCS file: patch-ab diff -N patch-ab --- /tmp/cvsg93894 Sun Jun 6 02:32:18 1999 +++ /dev/null Sun Jun 6 02:29:02 1999 @@ -1,22 +0,0 @@ ---- editor/Makefile.in.orig Sat Mar 13 16:48:21 1999 -+++ editor/Makefile.in Mon Apr 5 14:18:46 1999 -@@ -95,7 +95,7 @@ - VERSION = @VERSION@ - l = @l@ - --bin_PROGRAMS = cooledit smalledit coolman cooledit.static smalledit.static coolman.static -+bin_PROGRAMS = cooledit smalledit coolman - - INCLUDES = -I$(top_srcdir)/widget -I$(top_srcdir) -I$(top_srcdir)/intl @PYTHON_INCLUDES@ - -@@ -170,8 +170,8 @@ - - TAR = tar - GZIP = --best --SOURCES = $(cooledit_SOURCES) $(smalledit_SOURCES) $(coolman_SOURCES) $(cooledit_static_SOURCES) $(smalledit_static_SOURCES) $(coolman_static_SOURCES) --OBJECTS = $(cooledit_OBJECTS) $(smalledit_OBJECTS) $(coolman_OBJECTS) $(cooledit_static_OBJECTS) $(smalledit_static_OBJECTS) $(coolman_static_OBJECTS) -+SOURCES = $(cooledit_SOURCES) $(smalledit_SOURCES) $(coolman_SOURCES) -+OBJECTS = $(cooledit_OBJECTS) $(smalledit_OBJECTS) $(coolman_OBJECTS) - - all: Makefile $(PROGRAMS) - Index: cooledit/pkg/PLIST =================================================================== RCS file: /cvs/FreeBSD/ports/editors/cooledit/pkg/PLIST,v retrieving revision 1.8 diff -u -r1.8 PLIST --- PLIST 1999/06/05 19:00:15 1.8 +++ PLIST 1999/06/06 10:08:21 @@ -1,37 +1,19 @@ +bin/coolbrowse bin/cooledit -bin/smalledit -bin/coolman bin/coolicon -bin/coolbrowse -bin/coolmessage +bin/coolinput bin/coollistbox +bin/coolman +bin/coolmessage bin/coolquery -bin/coolinput +bin/smalledit +bin/ttyname_stop +lib/libCw.a +lib/libCw.so lib/libCw.so.1 @exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B @unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R lib/cooledit/global.py -lib/coolicon/browse.xpm -lib/coolicon/cooledit.xpm -lib/coolicon/coolicon.config -lib/coolicon/dynamite.xpm -lib/coolicon/e.data -lib/coolicon/launch.xpm -lib/coolicon/manual.xpm -lib/coolicon/mc.xpm -lib/coolicon/netscape.xpm -lib/coolicon/nscape.xpm -lib/coolicon/phonedown.xpm -lib/coolicon/phoneup.xpm -lib/coolicon/printer.xpm -lib/coolicon/spanner.xpm -lib/coolicon/xterm.xpm -lib/coolicon/xv.xpm -lib/coolicon/cdrom_eject.xpm -lib/coolicon/cdrom_view.xpm -lib/coolicon/modify-xinitrc -lib/coolicon/gmc.xpm -lib/coolicon/lyx.xpm lib/cooledit/syntax/c.syntax lib/cooledit/syntax/changelog.syntax lib/cooledit/syntax/diff.syntax @@ -48,21 +30,46 @@ lib/cooledit/syntax/python.syntax lib/cooledit/syntax/sh.syntax lib/cooledit/syntax/smalltalk.syntax -share/locale/de/LC_MESSAGES/cooledit.mo -share/locale/fr/LC_MESSAGES/cooledit.mo -share/locale/sv/LC_MESSAGES/cooledit.mo +lib/cooledit/syntax/swig.syntax +lib/cooledit/syntax/texinfo.syntax +lib/cooledit/syntax/unknown.syntax +lib/coolicon/browse.xpm +lib/coolicon/cdrom_eject.xpm +lib/coolicon/cdrom_view.xpm +lib/coolicon/cooledit.xpm +lib/coolicon/coolicon.config +lib/coolicon/dynamite.xpm +lib/coolicon/e.data +lib/coolicon/gmc.xpm +lib/coolicon/launch.xpm +lib/coolicon/lyx.xpm +lib/coolicon/manual.xpm +lib/coolicon/mc.xpm +lib/coolicon/modify-xinitrc +lib/coolicon/netscape.xpm +lib/coolicon/nscape.xpm +lib/coolicon/phonedown.xpm +lib/coolicon/phoneup.xpm +lib/coolicon/printer.xpm +lib/coolicon/spanner.xpm +lib/coolicon/xterm.xpm +lib/coolicon/xv.xpm share/locale/cs/LC_MESSAGES/cooledit.mo -share/locale/es/LC_MESSAGES/cooledit.mo share/locale/da/LC_MESSAGES/cooledit.mo +share/locale/de/LC_MESSAGES/cooledit.mo +share/locale/es/LC_MESSAGES/cooledit.mo +share/locale/fi/LC_MESSAGES/cooledit.mo +share/locale/fr/LC_MESSAGES/cooledit.mo share/locale/it/LC_MESSAGES/cooledit.mo +share/locale/ja/LC_MESSAGES/cooledit.mo +share/locale/ko/LC_MESSAGES/cooledit.mo share/locale/nl/LC_MESSAGES/cooledit.mo -share/locale/pt/LC_MESSAGES/cooledit.mo share/locale/no/LC_MESSAGES/cooledit.mo share/locale/pl/LC_MESSAGES/cooledit.mo -share/locale/fi/LC_MESSAGES/cooledit.mo -share/locale/ja/LC_MESSAGES/cooledit.mo -share/locale/ko/LC_MESSAGES/cooledit.mo +share/locale/pt/LC_MESSAGES/cooledit.mo +share/locale/ru/LC_MESSAGES/cooledit.mo share/locale/sl/LC_MESSAGES/cooledit.mo +share/locale/sv/LC_MESSAGES/cooledit.mo @dirrm lib/coolicon @dirrm lib/cooledit/syntax @dirrm lib/cooledit -Chris >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message