From owner-freebsd-ports Sun May 4 02:03:39 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA16760 for ports-outgoing; Sun, 4 May 1997 02:03:39 -0700 (PDT) Received: from silvia.HIP.Berkeley.EDU (wck-ca7-09.ix.netcom.com [204.31.231.41]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA16754 for ; Sun, 4 May 1997 02:03:35 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.5/8.6.9) id CAA11320; Sun, 4 May 1997 02:03:22 -0700 (PDT) Date: Sun, 4 May 1997 02:03:22 -0700 (PDT) Message-Id: <199705040903.CAA11320@silvia.HIP.Berkeley.EDU> To: imp@village.org CC: ports@freebsd.org In-reply-to: (message from Warner Losh on Sat, 03 May 1997 19:47:18 -0600) Subject: Re: Coping with OS specific patches From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * I think that it may be time for a good, solid mechanism to be * put into place to handle things like this. The FreeBSD project * doesn't necessarily need to maintain patches of this nature, but it * should, imho, place FreeBSD specific changes that can't be ifdef'd * into an OS dependent patch mechanism. Others can then place their OS * specific patches into similar trees. This can then lead toward being * able to co-locate the patches on one machine (say because you want to * NFS mount your ports tree). You know, I was thinking about this too. In fact, I was thinking of a more generic approach -- to make this system orthogonal OS/platform. * There are some interesting logistical issues with doing * something like this. With the current source code control * environment, it would be best if it were in a separate directory. I'm * thinking that patches-${OSNAME} (eg patches-FreeBSD) might not be a * bad thing to do. Yes. And patches-alpha and such, too. * The patches would then be applied in the following * order: * patches/* patches-${OSNAME}/* * to make things less ambiguous. This would allow a parallel tree to be I'm not sure if this is a good idea. It maybe work for patches/, but not for files/ and pkg/. What I am thinking is, for each (where is "patches", "files" and such), test the existence of .${OSNAME}-${ARCH} .${ARCH} .${OSNAME} and use the first one found. (The ordering of the second and third are debatable, of course). Also, if a file called "Makefile.${...}" is found (where the ${...} takes the same permutation as above), this is to be included as the first thing by bsd.port.mk. That way you can override anything done in the original Makefile fairly easily. Comments? Satoshi From owner-freebsd-ports Sun May 4 06:40:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA23081 for ports-outgoing; Sun, 4 May 1997 06:40:05 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA23072; Sun, 4 May 1997 06:40:02 -0700 (PDT) Resent-Date: Sun, 4 May 1997 06:40:02 -0700 (PDT) Resent-Message-Id: <199705041340.GAA23072@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, kenji@reseau.toyonaka.osaka.jp Received: from mail0.iij.ad.jp (mail0.iij.ad.jp [202.232.2.113]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id GAA22835 for ; Sun, 4 May 1997 06:30:38 -0700 (PDT) Received: from uucp3.iij.ad.jp (uucp3.iij.ad.jp [202.232.2.203]) by mail0.iij.ad.jp (8.8.5+2.7Wbeta5/3.5Wpl4-MAIL) with SMTP id WAA25789 for ; Sun, 4 May 1997 22:30:36 +0900 (JST) Received: (from uucp@localhost) by uucp3.iij.ad.jp (8.6.12+2.4W/3.3W9-UUCP) with UUCP id WAA15401 for FreeBSD-gnats-submit@freebsd.org; Sun, 4 May 1997 22:30:36 +0900 Received: (qmail 3537 invoked from network); 4 May 1997 13:30:14 -0000 Received: from fernseher.reseau.rcac.tdi.co.jp (202.230.24.69) by reseau.reseau.rcac.tdi.co.jp with SMTP; 4 May 1997 13:30:14 -0000 Received: (qmail 1195 invoked by uid 1000); 4 May 1997 13:30:14 -0000 Message-Id: <19970504133014.1194.qmail@fernseher.reseau.toyonaka.osaka.jp> Date: 4 May 1997 13:30:14 -0000 From: kenji@reseau.toyonaka.osaka.jp Reply-To: kenji@reseau.toyonaka.osaka.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/3492: tcsh on 2.2.1-RELEASE terminates by setting env variable LANG to C using source builtin Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3492 >Category: ports >Synopsis: tcsh on 2.2.1-RELEASE terminates by setting env variable LANG to C using source builtin >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun May 4 06:40:01 PDT 1997 >Last-Modified: >Originator: Kenji Rikitake >Organization: TDI RCAC Project >Release: FreeBSD 2.2.1-RELEASE i386 >Environment: a machine using FreeBSD 2.2.1-RELEASE using the ports' tcsh as is >Description: executing a script which includes "setenv LANG C" using the 'source' builtin command generates the error as follows: ^E^x@^Z^ALoad: Command not found. ^A^FLA^HERROR:: Too many arguments. >How-To-Repeat: 1. invoking the tcsh with no env variable inherited e.g., (unsetenv *; tcsh) 2. executing a script which includes "setenv LANG C" such as: > ( unsetenv * ; tcsh ) %echo 'setenv LANG C' > foo %source foo ^E^x@^Z^ALoad: Command not found. ^A^FLA^HERROR:: Too many arguments. % >Fix: Using a vanilla tcsh 6.06.00 compiled in the same environment WITHOUT the 'nls' option did not have this problem. >Audit-Trail: >Unformatted: From owner-freebsd-ports Sun May 4 07:24:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id HAA24186 for ports-outgoing; Sun, 4 May 1997 07:24:03 -0700 (PDT) Received: from nexis.net (customer-1.ican.net [198.133.36.101]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id HAA24155 for ; Sun, 4 May 1997 07:23:57 -0700 (PDT) Received: from localhost (james@localhost) by nexis.net (8.8.5/8.8.5) with SMTP id KAA03609; Sun, 4 May 1997 10:21:38 -0400 (EDT) Date: Sun, 4 May 1997 10:21:38 -0400 (EDT) From: James FitzGibbon To: Satoshi Asami cc: chuckr@mat.net, freebsd-ports@freebsd.org Subject: Re: Suggested change to apache port In-Reply-To: <199705040118.SAA27103@vader.cs.berkeley.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Sat, 3 May 1997, Satoshi Asami wrote: > Ouch. I didn't think about that, what I needed was a way force all > the targets to a single value ("package" in my case) to avoid the file > mixups.... > > * I guess what I need is something like this: > * > * DEPENDS= ${PORTSDIR}/www/apache:patch > * BUILD_DEPENDS= perl5.003:${PORTSDIR}/lang/perl5:install > > Hmm. That's quite interesting, let me see if I can fix bsd.port.mk to > do it. But (assuming those override DEPENDS_TARGET in the > environment), you need to lose the ":install" at the end of > BUILD_DEPENDS or the package build will have the same problem as > before. Could you split out the value of ???_DEPENDS< and if there are three values, use the third as the target. If there are two, use whatever your default for that step would be ? (I could do this in perl. Make and shell I'm not as comfortable with). -- j. From owner-freebsd-ports Sun May 4 07:54:58 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id HAA26917 for ports-outgoing; Sun, 4 May 1997 07:54:58 -0700 (PDT) Received: from nexis.net (customer-1.ican.net [198.133.36.101]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id HAA26902 for ; Sun, 4 May 1997 07:54:56 -0700 (PDT) Received: from localhost (james@localhost) by nexis.net (8.8.5/8.8.5) with SMTP id KAA03708; Sun, 4 May 1997 10:52:02 -0400 (EDT) Date: Sun, 4 May 1997 10:52:01 -0400 (EDT) From: James FitzGibbon To: Warner Losh cc: ports@FreeBSD.ORG Subject: Re: Coping with OS specific patches In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sat, 3 May 1997, Warner Losh wrote: > environment, it would be best if it were in a separate directory. I'm > thinking that patches-${OSNAME} (eg patches-FreeBSD) might not be a > bad thing to do. The patches would then be applied in the following > order: > patches/* patches-${OSNAME}/* > to make things less ambiguous. This would allow a parallel tree to be > maintained by other groups with their own patches. I could see this > being a very big win to the whole process. If someone has better > ideas than what I'm proposing, please let me know. Very few ports The issue here would be that if you want to build upon the FreeBSD ports tree, which for legacy reasons would have to own the patches/ directory, then any other OSes that have their own patches directory would have to have applied FreeBSD's first. The idea is good, but rather than the default being to apply the standard patches directory, why not make the default to just apply patches-${OSNAME}, and if a certain flag is set, also apply the FreeBSD ones. -- j. From owner-freebsd-ports Sun May 4 08:29:44 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id IAA29595 for ports-outgoing; Sun, 4 May 1997 08:29:44 -0700 (PDT) Received: from critter.dk.tfs.com (phk.freebsd.dk [195.8.129.17]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id IAA29588 for ; Sun, 4 May 1997 08:29:41 -0700 (PDT) Received: from critter (localhost [127.0.0.1]) by critter.dk.tfs.com (8.8.5/8.8.5) with ESMTP id RAA04511 for ; Sun, 4 May 1997 17:28:30 +0200 (CEST) To: ports@freebsd.org Subject: port candidate From: Poul-Henning Kamp Date: Sun, 04 May 1997 17:28:30 +0200 Message-ID: <4509.862759710@critter> Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk This would be nice to have as a port: ------------------------------------------------------------------- This is the README file for RAToolSet up to v 3.5.2 MAILING LIST ratoolset@isi.edu To subscribe to the mailing list, please send mail to majordomo@isi.edu with body (not the subject) of the message containing "subscribe ratoolset". FTP and WWW SITES ftp.isi.edu:pub/ra/RAToolSet http://www.isi.edu/ra/RAToolSet ftp site may contain binaries. I will try to make binaries available upon request. [...] ------------------------------------------------------------------- -- Poul-Henning Kamp | phk@FreeBSD.ORG FreeBSD Core-team. http://www.freebsd.org/~phk | phk@login.dknet.dk Private mailbox. whois: [PHK] | phk@tfs.com TRW Financial Systems, Inc. Future will arrive by its own means, progress not so. From owner-freebsd-ports Sun May 4 09:02:48 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA01520 for ports-outgoing; Sun, 4 May 1997 09:02:48 -0700 (PDT) Received: (from max@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA01497; Sun, 4 May 1997 09:02:21 -0700 (PDT) Date: Sun, 4 May 1997 09:02:21 -0700 (PDT) From: Masafumi NAKANE Message-Id: <199705041602.JAA01497@hub.freebsd.org> To: max, gnats-admin, freebsd-ports Subject: Re: pending/3498 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: nn-current port is out of date Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: max Responsible-Changed-When: Sun May 4 09:00:24 PDT 1997 Responsible-Changed-Why: Misfiled PR. From owner-freebsd-ports Sun May 4 09:45:19 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA03485 for ports-outgoing; Sun, 4 May 1997 09:45:19 -0700 (PDT) Received: from nexis.net (customer-1.ican.net [198.133.36.101]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id JAA03480 for ; Sun, 4 May 1997 09:45:17 -0700 (PDT) Received: from localhost (james@localhost) by nexis.net (8.8.5/8.8.5) with SMTP id MAA04442; Sun, 4 May 1997 12:42:50 -0400 (EDT) Date: Sun, 4 May 1997 12:42:49 -0400 (EDT) From: James FitzGibbon To: Poul-Henning Kamp cc: ports@FreeBSD.ORG Subject: Re: port candidate In-Reply-To: <4509.862759710@critter> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sun, 4 May 1997, Poul-Henning Kamp wrote: > This would be nice to have as a port: I've give it a shot. > > ------------------------------------------------------------------- > This is the README file for RAToolSet up to v 3.5.2 > > MAILING LIST > ratoolset@isi.edu > To subscribe to the mailing list, please send mail to > majordomo@isi.edu with body (not the subject) of the message > containing "subscribe ratoolset". > > FTP and WWW SITES > ftp.isi.edu:pub/ra/RAToolSet > http://www.isi.edu/ra/RAToolSet > > ftp site may contain binaries. I will try to make binaries > available upon request. > [...] > ------------------------------------------------------------------- > > -- > Poul-Henning Kamp | phk@FreeBSD.ORG FreeBSD Core-team. > http://www.freebsd.org/~phk | phk@login.dknet.dk Private mailbox. > whois: [PHK] | phk@tfs.com TRW Financial Systems, Inc. > Future will arrive by its own means, progress not so. > From owner-freebsd-ports Sun May 4 10:01:44 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA04713 for ports-outgoing; Sun, 4 May 1997 10:01:44 -0700 (PDT) Received: (from max@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA04685; Sun, 4 May 1997 10:01:17 -0700 (PDT) Date: Sun, 4 May 1997 10:01:17 -0700 (PDT) From: Masafumi NAKANE Message-Id: <199705041701.KAA04685@hub.freebsd.org> To: max, gnats-admin, freebsd-ports Subject: Re: pending/3499 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: exim port out of date Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: max Responsible-Changed-When: Sun May 4 10:00:22 PDT 1997 Responsible-Changed-Why: Misfiled PR. From owner-freebsd-ports Sun May 4 10:05:15 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA04994 for ports-outgoing; Sun, 4 May 1997 10:05:15 -0700 (PDT) Received: (from max@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA04860; Sun, 4 May 1997 10:03:45 -0700 (PDT) Date: Sun, 4 May 1997 10:03:45 -0700 (PDT) From: Masafumi NAKANE Message-Id: <199705041703.KAA04860@hub.freebsd.org> To: arnej@imf.unit.no, max, freebsd-ports Subject: Re: ports/2677 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Various ports have checksum problems State-Changed-From-To: open-closed State-Changed-By: max State-Changed-When: Sun May 4 10:02:35 PDT 1997 State-Changed-Why: I updated many of the ports mentioned in this PR. For the ports I wasn't able to update, I filed separate PRs. From owner-freebsd-ports Sun May 4 17:03:29 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA23984 for ports-outgoing; Sun, 4 May 1997 17:03:29 -0700 (PDT) Received: from nexis.net (customer-1.ican.net [198.133.36.101]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id RAA23978 for ; Sun, 4 May 1997 17:03:26 -0700 (PDT) Received: from localhost (james@localhost) by nexis.net (8.8.5/8.8.5) with SMTP id UAA06861; Sun, 4 May 1997 20:00:58 -0400 (EDT) Date: Sun, 4 May 1997 20:00:58 -0400 (EDT) From: James FitzGibbon To: Satoshi Asami cc: chuckr@mat.net, freebsd-ports@FreeBSD.ORG Subject: Re: Suggested change to apache port In-Reply-To: <199705040145.SAA27203@vader.cs.berkeley.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sat, 3 May 1997, Satoshi Asami wrote: > It was simpler than I thought. This patch only works for > fetch/build/run depends. If this works ok, I'll duplicate it > elsewhere (lib-depends and depends have pretty much the same > structure) and commit it. > > Note, the default target is still "install" (or whatever > DEPENDS_TARGET is), so you don't need to specify ":install". That way > we won't have to go change all the ports. This works, but in the specific case of p5-Apache, I required two things that the patch didn't cover: - The ability to specify a double target ("clean patch") so that I know I'm working off of clean source - Putting it in DEPENDS instead of *_DEPENDS. For now, I kludged it in to cd into ${PORTSDIR}/www/apache and do a make clean patch rather than keep the requestor of the port waiting. Still, as Chuck mentioned, these changes will make life a lot easier for future ports (and some existing ones that do really ugly things right now). Thanks. -- j. From owner-freebsd-ports Sun May 4 17:59:19 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA26329 for ports-outgoing; Sun, 4 May 1997 17:59:19 -0700 (PDT) Received: from sag.space.lockheed.com (sag.space.lockheed.com [192.68.162.134]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id RAA26323 for ; Sun, 4 May 1997 17:59:17 -0700 (PDT) Received: from localhost by sag.space.lockheed.com; (5.65v3.2/1.1.8.2/21Nov95-0423PM) id AA23994; Sun, 4 May 1997 17:59:22 -0700 Date: Sun, 4 May 1997 17:59:22 -0700 (PDT) From: "Brian N. Handy" Reply-To: "Brian N. Handy" To: ports@freebsd.org Subject: Tix port checksum changed Message-Id: X-Files: The truth is out there Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I just tried to compile the new cd-write utility, and tix complained bitterly of a bad checksum. Compiles just fine, installs fine, even seems to work. I'd submit a PR but if I did that I'd feel compelled to submit a patch to fix this, and I don't have time just yet...so I'll come back to this if no one else gets it first... Happy trails, Brian From owner-freebsd-ports Sun May 4 18:00:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id SAA26415 for ports-outgoing; Sun, 4 May 1997 18:00:03 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id SAA26402; Sun, 4 May 1997 18:00:02 -0700 (PDT) Resent-Date: Sun, 4 May 1997 18:00:02 -0700 (PDT) Resent-Message-Id: <199705050100.SAA26402@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, Received:(from nobody@localhost) by.hub.freebsd.org.id.RAA26302;Sun; (8.8.5/8.8.5);, 4 May 1997 17:58:41.-0700 (PDT) Message-Id: <199705050058.RAA26302@hub.freebsd.org> Date: Sun, 4 May 1997 17:58:41 -0700 (PDT) From: joes@spiritone.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/3500: Compile for perl5.003 fails Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3500 >Category: ports >Synopsis: Compile for perl5.003 fails >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun May 4 18:00:00 PDT 1997 >Last-Modified: >Originator: Joseph Stein >Organization: >Release: 2.2-Stable >Environment: FreeBSD joes.users.spiritone.com 2.2-STABLE FreeBSD 2.2-STABLE #0: Sun May 4 04:30:34 PDT 1997 joes@joes.users.spiritone.com:/usr/ src/sys/compile/JOES_NZ_RELENG i386 >Description: When compiling perl5.003 as a dependency for p5-Compress-Zlib, make stops with errorlevel 1 on the following error: pp_sys.c: In function `Perl_pp_telldir': pp_sys.c:2602: conflicting types for `telldir' /usr/include/dirent.h:83: previous declaration of `telldir' *** Error code 1 >How-To-Repeat: do a make in /usr/ports/archivers/p5-Compress-Zlib >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-ports Mon May 5 00:17:21 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id AAA09319 for ports-outgoing; Mon, 5 May 1997 00:17:21 -0700 (PDT) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id AAA09314 for ; Mon, 5 May 1997 00:17:18 -0700 (PDT) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.5/8.8.5) with ESMTP id JAA00735; Mon, 5 May 1997 09:17:16 +0200 (CEST) Received: (from thomas@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.5/8.8.5) id JAA09175; Mon, 5 May 1997 09:17:15 +0200 (CEST) To: "Brian N. Handy" Cc: ports@FreeBSD.ORG Subject: Re: Tix port checksum changed References: From: Thomas Gellekum Date: 05 May 1997 09:17:14 +0200 In-Reply-To: "Brian N. Handy"'s message of Sun, 4 May 1997 17:59:22 -0700 (PDT) Message-ID: <87d8r61j7p.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 8 X-Mailer: Gnus v5.4.37/XEmacs 19.15 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk "Brian N. Handy" writes: > I just tried to compile the new cd-write utility, and tix complained > bitterly of a bad checksum. My port. I'll take a look. tg From owner-freebsd-ports Mon May 5 03:57:17 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA18255 for ports-outgoing; Mon, 5 May 1997 03:57:17 -0700 (PDT) Received: from nexis.net (customer-1.ican.net [198.133.36.101]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id DAA18250 for ; Mon, 5 May 1997 03:57:15 -0700 (PDT) Received: from localhost (james@localhost) by nexis.net (8.8.5/8.8.5) with SMTP id GAA10070 for ; Mon, 5 May 1997 06:54:52 -0400 (EDT) Date: Mon, 5 May 1997 06:54:52 -0400 (EDT) From: James FitzGibbon To: freebsd-ports@freebsd.org Subject: Use of perl5 "virtual" category. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I just went to check the web index of ports to see the the virtual "perl5" category had been updated yet, and found that it was. I also found that a number of ports were there that didn't seem to make much sense. It seems that the initial add of ports to this category added anything that depended on perl5. When the original discussion came up about the category, I assumed that people were talking about my perl5 modules, and the lack of a separate category being annoying to programmer types. When I first started doing perl5 module ports, I argued with Satoshi to make a new directory for them. In the end, we agreed to put them in their appropriate directories. Over the next few months, a number of people who used to modules for programming expressed displeasure with this - they, like me, knew that they were looking for a perl module, knew it's name, and wanted a quick way to see if it had been ported. For this reason, I thought the perl5 virtual category was a great idea. Take, though, crossfire as an example. Crossfire is a multi-player arcade game for X. It happens to require perl5, and is listed in the perl5 category. Does that really make sense ? It would be like me putting every one of the 800+ ports into lang because "they require some kind of compiler, don't they?" The specific ports that fit this category are : crossfire gwstat mailagent premail wwwstat Thoughts ? -- j. From owner-freebsd-ports Mon May 5 06:20:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA23593 for ports-outgoing; Mon, 5 May 1997 06:20:03 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA23566; Mon, 5 May 1997 06:20:01 -0700 (PDT) Date: Mon, 5 May 1997 06:20:01 -0700 (PDT) Message-Id: <199705051320.GAA23566@hub.freebsd.org> To: freebsd-ports Cc: From: Ollivier Robert Subject: Re: ports/3500: Compile for perl5.003 fails Reply-To: Ollivier Robert Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR ports/3500; it has been noted by GNATS. From: Ollivier Robert To: joes@spiritone.com Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/3500: Compile for perl5.003 fails Date: Mon, 5 May 1997 15:09:44 +0200 According to joes@spiritone.com: > When compiling perl5.003 as a dependency for p5-Compress-Zlib, make > stops with errorlevel 1 on the following error: > pp_sys.c: In function `Perl_pp_telldir': > pp_sys.c:2602: conflicting types for `telldir' > /usr/include/dirent.h:83: previous declaration of `telldir' > *** Error code 1 In Perl5's config.sh you should have pp_sys_cflags='ccflags="$ccflags -DHAS_TELLDIR_PROTOTYPE"' It is inserted by Configure based on hints/freebsd.sh. Can you check the define is present ? -- Ollivier ROBERT -=- FreeBSD: There are no limits -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 3.0-CURRENT #7: Sat Apr 26 17:13:26 CEST 1997 From owner-freebsd-ports Mon May 5 07:00:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id HAA25553 for ports-outgoing; Mon, 5 May 1997 07:00:05 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id HAA25528; Mon, 5 May 1997 07:00:02 -0700 (PDT) Resent-Date: Mon, 5 May 1997 07:00:02 -0700 (PDT) Resent-Message-Id: <199705051400.HAA25528@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, tejblum@arc.hq.cti.ru Received: from arc.hq.cti.ru (arc.hq.cti.ru [194.67.85.50]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id GAA25239 for ; Mon, 5 May 1997 06:54:30 -0700 (PDT) Received: (from tejblum@localhost) by arc.hq.cti.ru (8.8.5/8.7.3) id RAA16563; Mon, 5 May 1997 17:54:24 +0400 (MSD) Message-Id: <199705051354.RAA16563@arc.hq.cti.ru> Date: Mon, 5 May 1997 17:54:24 +0400 (MSD) From: Dmitrij Tejblum Reply-To: tejblum@arc.hq.cti.ru To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/3507: Missed file in exmh2 PLIST Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3507 >Category: ports >Synopsis: Missed file in exmh2 PLIST >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon May 5 07:00:01 PDT 1997 >Last-Modified: >Originator: Dmitrij Tejblum >Organization: CompTek >Release: FreeBSD 2.2-STABLE i386 >Environment: >Description: File lib/exmh-2.0gamma/quote.tcl missed from the PLIST of exmh2 port and not included in the package. It makes impossible to quote mail. >How-To-Repeat: Install exmh2 from package. Try to quote mail in Reply. >Fix: Probably, add lib/exmh-2.0gamma/quote.tcl to PLIST. >Audit-Trail: >Unformatted: From owner-freebsd-ports Mon May 5 08:44:33 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id IAA02058 for ports-outgoing; Mon, 5 May 1997 08:44:33 -0700 (PDT) Received: (from max@localhost) by hub.freebsd.org (8.8.5/8.8.5) id IAA02037; Mon, 5 May 1997 08:44:23 -0700 (PDT) Date: Mon, 5 May 1997 08:44:23 -0700 (PDT) From: Masafumi NAKANE Message-Id: <199705051544.IAA02037@hub.freebsd.org> To: tejblum@arc.hq.cti.ru, max, freebsd-ports Subject: Re: ports/3507 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Missed file in exmh2 PLIST State-Changed-From-To: open-closed State-Changed-By: max State-Changed-When: Mon May 5 08:43:16 PDT 1997 State-Changed-Why: Fixed in PLIST Rev.1.4. From owner-freebsd-ports Mon May 5 10:05:53 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA06590 for ports-outgoing; Mon, 5 May 1997 10:05:53 -0700 (PDT) Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA06014 for freebsd-ports@freebsd.org; Mon, 5 May 1997 10:00:19 -0700 (PDT) Date: Mon, 5 May 1997 10:00:19 -0700 (PDT) Message-Id: <199705051700.KAA06014@hub.freebsd.org> From: FreeBSD bugmaster To: FreeBSD ports list Subject: Current unassigned ports problem reports Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk 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 Work on the problem has been postponed. This happens if a timely solution is not possible or is not cost-effective at the present time. The PR continues to exist, though a solution is not being actively sought. 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 ------------------------------------------------------------------------------- f [1997/01/01] ports/2352 ports wu-ftp port does not work with DES crypte o [1997/05/01] ports/3467 ports Update of port xgs 2 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1996/10/11] bin/1773 ports A NULL pointer causing segmentation core s [1996/12/22] ports/2268 ports libc from linux emulator does not use /et o [1997/02/13] ports/2731 ports new port: Tcl 8.0A2 o [1997/03/01] ports/2842 ports Expect port upgraded at master site; does o [1997/03/07] ports/2918 ports Unable to pass 8+ command line arguments o [1997/03/11] ports/2956 ports New Port: xgospel-1.10d in ftp.freebsd.or a [1997/03/15] ports/2994 ports xpm port does not build for the first tim o [1997/03/29] ports/3142 ports new port: slrn o [1997/03/30] ports/3146 ports new port fix (slrn) o [1997/04/02] ports/3179 ports WebStone 2.0.1 port submitted o [1997/04/04] ports/3193 ports MAKE fails for /usr/ports/net/ucd-snmp o [1997/04/05] ports/3205 ports Mtools-3.0 attempts to flock() a disk par o [1997/04/11] ports/3256 ports ncftp-2.4.2 in packages-2.2 was not linke o [1997/04/24] ports/3377 ports xfishtank port uploaded o [1997/04/25] ports/3390 ports submition of JED port. o [1997/05/04] ports/3492 ports tcsh on 2.2.1-RELEASE terminates by setti o [1997/05/04] ports/3500 ports Compile for perl5.003 fails 17 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1996/04/23] ports/1155 ports systat or top display disagreeing informa o [1996/08/21] ports/1520 ports sudo dosn't recognise certain passwords a a [1996/08/28] ports/1550 ports "make install" needs to know how to updat o [1996/10/31] ports/1939 ports exodus port doesn't build with new g++-2. o [1996/12/03] ports/2145 ports qpopper bulletin support broken o [1996/12/08] ports/2182 ports FreeBSD's and X-32's list of locales do n o [1996/12/21] ports/2264 ports latex* ports need updating o [1997/01/05] ports/2379 ports New URT port o [1997/01/12] ports/2477 ports Tcl 8.0 a1 port submission. o [1997/01/12] ports/2478 ports Tk 8.0a1 port submission. f [1997/01/24] ports/2571 ports Maxima lacks pkg directory o [1997/02/20] ports/2778 ports New Port: Version of traceroute which pri o [1997/02/25] ports/2816 ports New port - aftp ftp-like shell for apple2 o [1997/02/25] ports/2817 ports New port - prodosemu is an Apple2e prodos a [1997/03/02] ports/2849 ports correction to New math/cad port (SCILAB) o [1997/03/03] ports/2869 ports Submiting new port: tac_plus a [1997/03/06] ports/2902 ports Fix xmcd port for PACKAGE_BUILDING o [1997/03/06] ports/2903 ports New port: xdeblock o [1997/03/06] ports/2904 ports New port: wm2 a [1997/03/06] ports/2905 ports Fixed port: xshisen-1.36 o [1997/03/07] ports/2916 ports ports sysutils/top/Makefile MASTER_SITES o [1997/03/08] ports/2920 ports patch for mispositioned xv windows under o [1997/03/08] ports/2922 ports Please commit new port: viz-1.1.1 o [1997/03/09] ports/2926 ports xmgt-2.31 port, now in pub/incoming on ft o [1997/03/10] ports/2936 ports The teTeX port runs strup on /usr/local/b o [1997/03/11] ports/2949 ports bsd.port.mk needs something like FETCH_EN o [1997/03/11] ports/2951 ports xgraph source is not on MASTER_SITE o [1997/03/12] ports/2961 ports New port(jp-vftool-1.2):japanese/virfonts o [1997/03/13] ports/2974 ports updated Makefile and patch-ab of jp-dvi2p o [1997/03/14] ports/2986 ports fvwm95-2.0.43a port don't install/have ma o [1997/03/15] ports/2993 ports qmail-port-take2-proff.tar.gz in incoming o [1997/03/17] ports/3012 ports qmailanalog port in incoming a [1997/03/21] ports/3052 ports /usr/ports/lang/expect does not find tkCo o [1997/03/24] ports/3081 ports sitelispdir is a directory no a path in x o [1997/03/24] ports/3090 ports ircii-2.9-roof does not run. o [1997/04/01] ports/3169 ports nn port broken o [1997/04/03] ports/3189 ports Update plan to version 1.6 o [1997/04/05] ports/3199 ports new ports collection: automake-1.0 o [1997/04/06] ports/3215 ports Update to Gnat port o [1997/04/08] ports/3227 ports new port(xtimer-8087) o [1997/04/10] ports/3248 ports update a port o [1997/04/10] ports/3250 ports New CAD port: xpns o [1997/04/13] ports/3277 ports tcp_wrapper port does not include NIS sup o [1997/04/13] ports/3279 ports new port of KON2 o [1997/04/15] ports/3296 ports New port(jp-GP-2.01jp):japanese/GP. o [1997/04/15] ports/3297 ports xforms-0.86 port no longer compiles o [1997/04/15] ports/3306 ports new port-package for ifmail o [1997/04/17] ports/3318 ports New port: jigsaw (Java-based HTTP server) o [1997/04/18] ports/3320 ports new and updated ports of korean, and upda o [1997/04/18] ports/3321 ports port update request for audio/splay-0.2 t o [1997/04/18] ports/3322 ports setlocale problem in lang/perl5 o [1997/04/18] ports/3330 ports hylafax port seems to be broken (partly) o [1997/04/19] ports/3333 ports new port request of korea/fvwm95 o [1997/04/19] ports/3334 ports new port request of korean/han o [1997/04/19] ports/3335 ports new port request of korean/hanemacs o [1997/04/19] ports/3336 ports new port request of korean/hanmutt o [1997/04/19] ports/3338 ports new port request of korean/hfvwm2 o [1997/04/19] ports/3339 ports new port request of korean/hlatexpsfonts o [1997/04/19] ports/3340 ports new port(update) request of korean/hmconv o [1997/04/19] ports/3341 ports new port request of korean/hpscat o [1997/04/19] ports/3342 ports new port request of korean/linuxdoc-sgml o [1997/04/19] ports/3343 ports new port request of korean/nh2ps o [1997/04/19] ports/3344 ports new port request of korean/netscape3 o [1997/04/19] ports/3347 ports new port request of net/ztelnet o [1997/04/19] ports/3348 ports new port request of korean/nhppf o [1997/04/19] ports/3352 ports New port: cddbd o [1997/04/20] ports/3357 ports I make "pari-GP" ports o [1997/04/20] ports/3358 ports XFMail-1.1 has been released o [1997/04/20] ports/3362 ports Ports submission: XFrisk 0.99b4 o [1997/04/20] ports/3363 ports port of nana-1.00 for your collection o [1997/04/21] ports/3370 ports tk41 doesn't build if not untarred into / o [1997/04/22] ports/3372 ports cal-3.5 port updated o [1997/04/25] ports/3383 ports kaffe core dumps if LD_LIBRARY_PATH not s o [1997/04/27] ports/3396 ports update of the port of Mesa (now version 2 o [1997/04/28] ports/3407 ports port for ephem-4.28 o [1997/04/28] ports/3411 ports New port - Atari 8 bit computer emulator o [1997/04/28] ports/3412 ports New port - Apple IIGS beta release o [1997/04/28] ports/3413 ports New port: cs-0.3 o [1997/04/29] ports/3414 ports ucd-snmp port doesn't build under 2.2 o [1997/05/01] ports/3440 ports port of webstone submitted o [1997/05/01] ports/3442 ports New port: xbattle o [1997/05/01] ports/3454 ports New port submission: ztrack-1.0 o [1997/05/01] ports/3457 ports New ports for cutils 1.3.3 and umatrix o [1997/05/01] ports/3458 ports port of Squeak, version 1.18 o [1997/05/01] ports/3466 ports FreeBSD origional o [1997/05/03] ports/3482 ports SlingShot (new) port o [1997/05/03] ports/3484 ports libwww is out of date o [1997/05/04] ports/3498 ports nn-current port is out of date o [1997/05/04] ports/3499 ports exim port out of date 89 problems total. From owner-freebsd-ports Mon May 5 10:39:54 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA08464 for ports-outgoing; Mon, 5 May 1997 10:39:54 -0700 (PDT) Received: from casimir.easynet.fr ([195.114.64.17]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id KAA08458 for ; Mon, 5 May 1997 10:39:51 -0700 (PDT) Received: (qmail 10091 invoked from network); 5 May 1997 17:39:25 -0000 Received: from casimir.easynet.fr (@195.114.64.17) by casimir.easynet.fr with SMTP; 5 May 1997 17:39:25 -0000 Date: Mon, 5 May 1997 19:39:24 +0200 (MET DST) From: David Ramahefason To: FreeBSD ports list Subject: IP Traffic Tool Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Hi all Is there a way to do IP accounting for several networks on a same machine ? In fact we're ISP and like to make our Web customer to pay the bandwidth they generate.... Thanks |David Ramahefason, rama@easynet.fr,systems@easynet.fr| |Administrateur Systeme/Reseau, Easynet France SA | |Think different Think BSD http://www.FreeBSD.org | |Wrap around probs with Python http://www.python.org | From owner-freebsd-ports Mon May 5 11:12:34 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id LAA09794 for ports-outgoing; Mon, 5 May 1997 11:12:34 -0700 (PDT) Received: from misery.sdf.com (misery.sdf.com [204.244.210.193]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id LAA09788 for ; Mon, 5 May 1997 11:12:25 -0700 (PDT) Received: from misery.sdf.com [204.244.213.33] by misery.sdf.com with smtp (Exim 1.61 #1) id 0wOSB6-0007ha-00; Mon, 5 May 1997 11:08:00 -0700 Date: Mon, 5 May 1997 11:08:00 -0700 (PDT) From: Tom Samplonius To: David Ramahefason cc: FreeBSD ports list Subject: Re: IP Traffic Tool In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Mon, 5 May 1997, David Ramahefason wrote: > Hi all > > Is there a way to do IP accounting for several networks > on a same machine ? > In fact we're ISP and like to make our Web customer to pay the > bandwidth they generate.... > > Thanks > > |David Ramahefason, rama@easynet.fr,systems@easynet.fr| > |Administrateur Systeme/Reseau, Easynet France SA | > |Think different Think BSD http://www.FreeBSD.org | > |Wrap around probs with Python http://www.python.org | > > > This doesn't really belong on freebsd-ports You can use the IPFIREWALL code to add rules to count traffic. Tom From owner-freebsd-ports Mon May 5 14:43:29 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA22529 for ports-outgoing; Mon, 5 May 1997 14:43:29 -0700 (PDT) Received: from bloke.statsci.com (bloke.statsci.com [206.63.206.184]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id OAA22522 for ; Mon, 5 May 1997 14:43:24 -0700 (PDT) Received: from bloke.statsci.com [206.63.206.184] with smtp by bloke.statsci.com with smtp (/\oo/\ Smail3.1.29.1 #29.3 #3) id m0wOVP3-000QdoC; Mon, 5 May 97 14:34 PDT Message-Id: To: Warner Losh cc: ports@FreeBSD.ORG Subject: Re: New Port Idea: nmh References: In-reply-to: Your message of "Fri, 02 May 1997 20:32:05 -0600." Reply-to: scott@statsci.com Date: Mon, 05 May 1997 14:34:36 -0700 From: Scott Blachowicz Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Warner Losh wrote: > I haven't even thought about looking at this yet, but this looks like > the sort of thing that people on this list would be keen on having a > port to FreeBSD for. This is FYI in case someone with more free time > than I gets to this before I commit it around Easter '99. I've already built earlier versions of this on FreeBSD 2.1.5 at home (which I'm soon upgrading to 2.2.1). I can probably try to grab the latest version of nmh and put it together into a port sometime if nobody else does. I think I might be able to get to it before Easter '98...or hopefully sooner. :-)) I assume the handbook section(s) on putting together a port would be in the 2.2.1 release somewhere, so it probably shouldn't be too hard to do. The biggest problem I had with it is that it was using some autoconf macros that expand to sh code that doesn't work right with the FreeBSD /bin/sh (& the results of my send-pr on the problem were that the FreeBSD /bin/sh is bug-compatible with the definitive POSIX sh - the ATT ksh I believe). If you go do some queries on the bug database for my email address(es) below (or possibly scott@sabami.seaslug.org), you should be able to find what I'm talking about. Scott Blachowicz Ph: 206/283-8802x240 Mathsoft (Data Analysis Products Div) 1700 Westlake Ave N #500 scott@statsci.com Seattle, WA USA 98109 Scott.Blachowicz@seaslug.org From owner-freebsd-ports Mon May 5 15:47:12 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id PAA25589 for ports-outgoing; Mon, 5 May 1997 15:47:12 -0700 (PDT) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA25584 for ; Mon, 5 May 1997 15:47:09 -0700 (PDT) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.5/8.7.3) id PAA01113; Mon, 5 May 1997 15:47:00 -0700 (PDT) Date: Mon, 5 May 1997 15:47:00 -0700 (PDT) Message-Id: <199705052247.PAA01113@vader.cs.berkeley.edu> To: james@nexis.net CC: freebsd-ports@freebsd.org In-reply-to: (message from James FitzGibbon on Mon, 5 May 1997 06:54:52 -0400 (EDT)) Subject: Re: Use of perl5 "virtual" category. From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * It seems that the initial add of ports to this category added anything * that depended on perl5. When the original discussion came up about the * category, I assumed that people were talking about my perl5 modules, and * the lack of a separate category being annoying to programmer types. No objections from me. Satoshi From owner-freebsd-ports Mon May 5 22:42:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id WAA17188 for ports-outgoing; Mon, 5 May 1997 22:42:06 -0700 (PDT) Received: from fps.biblos.unal.edu.co ([168.176.37.11]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id WAA17181 for ; Mon, 5 May 1997 22:42:03 -0700 (PDT) Received: from unalmodem.usc.unal.edu.co by fps.biblos.unal.edu.co (AIX 4.1/UCB 5.64/4.03) id AA14874; Tue, 6 May 1997 00:42:51 -0500 Message-Id: <336EE016.7691@fps.biblos.unal.edu.co> Date: Tue, 06 May 1997 00:39:02 -0700 From: "Pedro F. Giffuni" Organization: Universidad Nacional de Colombia X-Mailer: Mozilla 3.0 (Win16; I) Mime-Version: 1.0 To: ports@freebsd.org Subject: Potential Scientific Ports Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Take a look at how the Scientific Applications for Linux site has transformed: http://SAL.KachinaTech.COM/ Pedro. From owner-freebsd-ports Mon May 5 22:55:18 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id WAA17809 for ports-outgoing; Mon, 5 May 1997 22:55:18 -0700 (PDT) Received: from silvia.HIP.Berkeley.EDU (ala-ca16-13.ix.netcom.com [204.32.168.141]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id WAA17782; Mon, 5 May 1997 22:54:31 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.5/8.6.9) id WAA10899; Mon, 5 May 1997 22:53:43 -0700 (PDT) Date: Mon, 5 May 1997 22:53:43 -0700 (PDT) Message-Id: <199705060553.WAA10899@silvia.HIP.Berkeley.EDU> To: pst@freebsd.org CC: ports@freebsd.org, samath@slt.lk Subject: popper no-package ? From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I see that mail/popper/Makefile contains this line: === NO_PACKAGE= "Needs POP UID" === Is this still true? I don't see any pop id on hub, for instance. === >> ls -slg /usr/local/bin/popauth 58 -rws--x--x 1 root bin 58410 May 12 1996 /usr/local/bin/popauth* === Even if it really needs the UID, we can just make the check the existence of the uid and fall back to IS_INTERACTIVE if it doesn't exist. (Put the check in pkg/REQ and that will cover the package too.) Satoshi From owner-freebsd-ports Tue May 6 01:58:59 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id BAA26406 for ports-outgoing; Tue, 6 May 1997 01:58:59 -0700 (PDT) Received: from lakdiva.slt.lk (lakdiva.slt.lk [204.143.96.17]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id BAA26388; Tue, 6 May 1997 01:58:31 -0700 (PDT) Received: from lakmail (mail.slt.lk [204.143.96.21]) by lakdiva.slt.lk (8.7.5/8.6.12) with SMTP id OAA28920; Tue, 6 May 1997 14:55:39 +0600 (GMT+0600) Message-Id: <3.0.1.32.19970506152656.0060f260@eng.slt.lk> X-Sender: samath@eng.slt.lk X-Mailer: Windows Eudora Light Version 3.0.1 (32) Date: Tue, 06 May 1997 15:26:56 +0000 To: asami@vader.cs.berkeley.edu (Satoshi Asami), pst@freebsd.org From: Samath Wijesundara Subject: Re: popper no-package ? Cc: ports@freebsd.org In-Reply-To: <199705060553.WAA10899@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Satoshi, Thanks, I was really expecting this to be there in the pakage collection and sorry I troubled you. In earlier this was in the package collection also. ( I think ) Thank you very much and I installed it ! Samath Sri lanka At 10:53 PM 5/5/97 -0700, Satoshi Asami wrote: >I see that mail/popper/Makefile contains this line: > >=== >NO_PACKAGE= "Needs POP UID" >=== > >Is this still true? I don't see any pop id on hub, for instance. > >=== >>> ls -slg /usr/local/bin/popauth > 58 -rws--x--x 1 root bin 58410 May 12 1996 /usr/local/bin/popauth* >=== > >Even if it really needs the UID, we can just make the check the >existence of the uid and fall back to IS_INTERACTIVE if it doesn't >exist. (Put the check in pkg/REQ and that will cover the package >too.) > >Satoshi > From owner-freebsd-ports Tue May 6 06:30:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA10657 for ports-outgoing; Tue, 6 May 1997 06:30:04 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA10650; Tue, 6 May 1997 06:30:02 -0700 (PDT) Resent-Date: Tue, 6 May 1997 06:30:02 -0700 (PDT) Resent-Message-Id: <199705061330.GAA10650@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, mita@jp.FreeBSD.org Received: from hanpen.fujita3.iis.u-tokyo.ac.jp (hanpen.fujita3.iis.u-tokyo.ac.jp [157.82.109.66]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id GAA10367 for ; Tue, 6 May 1997 06:25:32 -0700 (PDT) Received: (from mita@localhost) by hanpen.fujita3.iis.u-tokyo.ac.jp (8.8.5/8.8.5) id WAA03640; Tue, 6 May 1997 22:30:11 +0900 (JST) Message-Id: <199705061330.WAA03640@hanpen.fujita3.iis.u-tokyo.ac.jp> Date: Tue, 6 May 1997 22:30:11 +0900 (JST) From: mita@jp.FreeBSD.org Reply-To: mita@jp.FreeBSD.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/3515: A small bug in ports/korean/Wnn/pkg/COMMENT Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3515 >Category: ports >Synopsis: kr-Wnn should be built with Korean, not Chinese :) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue May 6 06:30:01 PDT 1997 >Last-Modified: >Originator: MITA Yoshio >Organization: IIS, the University of TOKYO >Release: FreeBSD 2.2.1-RELEASE i386 >Environment: 2.2.1-RELEASE >Description: See patch attached. >How-To-Repeat: >Fix: *** korean/Wnn/pkg/COMMENT.orig Tue May 6 22:26:18 1997 --- korean/Wnn/pkg/COMMENT Tue May 6 22:26:28 1997 *************** *** 1 **** ! A Japanese/Chinese/Korean input method (only Chinese built) --- 1 ---- ! A Japanese/Chinese/Korean input method (only Korean built) >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue May 6 09:18:55 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA19116 for ports-outgoing; Tue, 6 May 1997 09:18:55 -0700 (PDT) Received: from precipice.shockwave.com (ppp-206-170-5-41.rdcy01.pacbell.net [206.170.5.41]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id JAA19098 for ; Tue, 6 May 1997 09:18:50 -0700 (PDT) Received: from shockwave.com (localhost [127.0.0.1]) by precipice.shockwave.com (8.8.5/8.7.3) with ESMTP id JAA04340; Tue, 6 May 1997 09:18:09 -0700 (PDT) Message-Id: <199705061618.JAA04340@precipice.shockwave.com> To: asami@vader.cs.berkeley.edu (Satoshi Asami) cc: ports@freebsd.org, samath@slt.lk Subject: Re: popper no-package ? In-reply-to: Your message of "Mon, 05 May 1997 22:53:43 PDT." <199705060553.WAA10899@silvia.HIP.Berkeley.EDU> Date: Tue, 06 May 1997 09:18:09 -0700 From: Paul Traina Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk From: asami@vader.cs.berkeley.edu (Satoshi Asami) Subject: popper no-package ? I see that mail/popper/Makefile contains this line: === NO_PACKAGE= "Needs POP UID" === Is this still true? I don't see any pop id on hub, for instance. Yes. === >> ls -slg /usr/local/bin/popauth 58 -rws--x--x 1 root bin 58410 May 12 1996 /usr/local/bin/popauth* === That's insecure. Even if it really needs the UID, we can just make the check the existence of the uid and fall back to IS_INTERACTIVE if it doesn't exist. (Put the check in pkg/REQ and that will cover the package too.) OK? Satoshi From owner-freebsd-ports Tue May 6 09:20:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA19337 for ports-outgoing; Tue, 6 May 1997 09:20:06 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA19317; Tue, 6 May 1997 09:20:02 -0700 (PDT) Resent-Date: Tue, 6 May 1997 09:20:02 -0700 (PDT) Resent-Message-Id: <199705061620.JAA19317@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, Received:(from nobody@localhost) by.hub.freebsd.org.id.JAA18600;Tue; (8.8.5/8.8.5);, 6 May 1997 09:10:57.-0700 (PDT) Message-Id: <199705061610.JAA18600@hub.freebsd.org> Date: Tue, 6 May 1997 09:10:57 -0700 (PDT) From: itojun@itojun.org To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/3517: new port: graphics/tiff34 (fix) Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3517 >Category: ports >Synopsis: new port: graphics/tiff34 (fix) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue May 6 09:20:01 PDT 1997 >Last-Modified: >Originator: Jun-ichiro itojun Itoh >Organization: >Release: 2.2.1-RELEASE >Environment: home-brew PC. >Description: I've modified tiff34 port, since I needed it for hylafax 4.0p1. tiff34 is said to be incompatible with tiff33, so I've changed installation path so that there's no collision. archive can be found at ftp://jaz.jp.freebsd.org/pub/incoming/ports-jp/graphics/tiff34-ports2.tar.gz >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue May 6 09:20:10 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA19367 for ports-outgoing; Tue, 6 May 1997 09:20:10 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA19341; Tue, 6 May 1997 09:20:06 -0700 (PDT) Resent-Date: Tue, 6 May 1997 09:20:06 -0700 (PDT) Resent-Message-Id: <199705061620.JAA19341@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, Received:(from nobody@localhost) by.hub.freebsd.org.id.JAA18781;Tue; (8.8.5/8.8.5);, 6 May 1997 09:12:34.-0700 (PDT) Message-Id: <199705061612.JAA18781@hub.freebsd.org> Date: Tue, 6 May 1997 09:12:34 -0700 (PDT) From: itojun@itojun.org To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/3518: new port: comms/hylafax40p1 (may be renamed to hylafax?) Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3518 >Category: ports >Synopsis: new port: comms/hylafax40p1 (may be renamed to hylafax?) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue May 6 09:20:05 PDT 1997 >Last-Modified: >Originator: Jun-ichiro itojun Itoh >Organization: >Release: 2.2.1-RELEASE >Environment: home-brew PC. >Description: a port for hylafax 4.0p1. Could you please merge this one? archive can be found at: ftp://jaz.jp.freebsd.org/pub/incoming/ports-jp/comms/hylafax40p1-ports3.tar.gz thanks. >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue May 6 09:20:16 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA19400 for ports-outgoing; Tue, 6 May 1997 09:20:16 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA19374; Tue, 6 May 1997 09:20:10 -0700 (PDT) Resent-Date: Tue, 6 May 1997 09:20:10 -0700 (PDT) Resent-Message-Id: <199705061620.JAA19374@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, Received:(from nobody@localhost) by.hub.freebsd.org.id.JAA18837;Tue; (8.8.5/8.8.5);, 6 May 1997 09:14:15.-0700 (PDT) Message-Id: <199705061614.JAA18837@hub.freebsd.org> Date: Tue, 6 May 1997 09:14:15 -0700 (PDT) From: itojun@itojun.org To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/3519: new port: comms/snooper Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3519 >Category: ports >Synopsis: new port: comms/snooper >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue May 6 09:20:09 PDT 1997 >Last-Modified: >Originator: Jun-ichiro itojun Itoh >Organization: >Release: 2.2.1-RELEASE >Environment: home-brew PC. >Description: a port for snooper, RS232C protocol analyzing tool. (uses 2 serial interfaces) archive can be found at: ftp://jaz.jp.freebsd.org/pub/incoming/ports-jp/comms/snooper-970212.tar.gz thanks, >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue May 6 09:20:21 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA19428 for ports-outgoing; Tue, 6 May 1997 09:20:21 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA19397; Tue, 6 May 1997 09:20:17 -0700 (PDT) Resent-Date: Tue, 6 May 1997 09:20:17 -0700 (PDT) Resent-Message-Id: <199705061620.JAA19397@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, Received:(from nobody@localhost) by.hub.freebsd.org.id.JAA18878;Tue; (8.8.5/8.8.5);, 6 May 1997 09:15:23.-0700 (PDT) Message-Id: <199705061615.JAA18878@hub.freebsd.org> Date: Tue, 6 May 1997 09:15:23 -0700 (PDT) From: itojun@itojun.org To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/3520: new port: graphics/camediaplay Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3520 >Category: ports >Synopsis: new port: graphics/camediaplay >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue May 6 09:20:12 PDT 1997 >Last-Modified: >Originator: Jun-ichiro itojun Itoh >Organization: >Release: 2.2.1-RELEASE >Environment: home-brew PC. >Description: a port for camediaplay, olympus/agfa/epson/sanyo digital camera data downloader. archive can be found at: ftp://jaz.jp.freebsd.org/pub/incoming/ports-jp/graphics/camediaplay-970418-ports4.tar.gz thanks, >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue May 6 09:20:27 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA19460 for ports-outgoing; Tue, 6 May 1997 09:20:27 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA19444; Tue, 6 May 1997 09:20:24 -0700 (PDT) Resent-Date: Tue, 6 May 1997 09:20:24 -0700 (PDT) Resent-Message-Id: <199705061620.JAA19444@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, Received:(from nobody@localhost) by.hub.freebsd.org.id.JAA19050;Tue; (8.8.5/8.8.5);, 6 May 1997 09:18:07.-0700 (PDT) Message-Id: <199705061618.JAA19050@hub.freebsd.org> Date: Tue, 6 May 1997 09:18:07 -0700 (PDT) From: itojun@itojun.org To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/3521: new port: graphics/qvplay Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3521 >Category: ports >Synopsis: new port: graphics/qvplay >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue May 6 09:20:20 PDT 1997 >Last-Modified: >Originator: Jun-ichiro itojun Itoh >Organization: >Release: 2.2.1-RELEASE >Environment: home-brew PC. >Description: a port for qvplay, Casio digital camera downloader. I've got the permission to merge this port into FreeBSD tree, so don't worry. archive can be found at: ftp://jaz.jp.freebsd.org/pub/incoming/ports-jp/graphics/qvplay-0.92-ports1.tar.gz thanks, (ugg, if it must be put into ftp.freebsd.org, I'll do that so please contact me. sorry.) >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue May 6 13:06:47 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA01794 for ports-outgoing; Tue, 6 May 1997 13:06:47 -0700 (PDT) Received: (from max@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA01771; Tue, 6 May 1997 13:06:32 -0700 (PDT) Date: Tue, 6 May 1997 13:06:32 -0700 (PDT) From: Masafumi NAKANE Message-Id: <199705062006.NAA01771@hub.freebsd.org> To: mita@jp.FreeBSD.org, max, freebsd-ports Subject: Re: ports/3515 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: kr-Wnn should be built with Korean, not Chinese :) State-Changed-From-To: open-closed State-Changed-By: max State-Changed-When: Tue May 6 13:05:41 PDT 1997 State-Changed-Why: Suggested correction is made in COMMENT Rev.1.2. From owner-freebsd-ports Tue May 6 18:59:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id SAA22066 for ports-outgoing; Tue, 6 May 1997 18:59:06 -0700 (PDT) Received: from minke.antcrc.utas.edu.au (minke.iasos.utas.edu.au [131.217.29.2]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id SAA22060 for ; Tue, 6 May 1997 18:59:03 -0700 (PDT) Received: from minke (localhost [127.0.0.1]) by minke.antcrc.utas.edu.au (8.8.5/8.7.3) with SMTP id LAA19224 for ; Wed, 7 May 1997 11:59:00 +1000 (EST) Message-ID: <336FE1E3.167E@bom.gov.au> Date: Wed, 07 May 1997 11:58:59 +1000 From: Neil David Adams Organization: Bureau of Meteorology (Antarctic CRC) X-Mailer: Mozilla 2.02 (X11; I; IRIX64 6.1 IP26) MIME-Version: 1.0 To: ports@FreeBSD.org Subject: pine port X-URL: http://www.freebsd.org/ports/mail.html Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Hi, I'm trying to install pine 3.96 to over come a problem with pine 3.91 locking telnet sessions and I get afair way through the compilation process under the ports system but it crashes at the line : install -d -o bin -g bin -m 755 /usr/local/share/doc/pine giving me the correct usage fo rthe install program and then bombs with Error code 1 stop This line is post install option in the Makefile. Any clues as to how I can fix this so it works ? since it leaves me with a system that looks like it is runnig pine 3.96 but which still locks up eventually if I am running any telnet sessions. Cheers Neil -- _____________________________________________________________________ Neil Adams (Bureau of Meteorology). Senior Meteorologist Antarctic CRC and Bureau of Meteorology Email: N.Adams@bom.gov.au Phone: Australia (03) 6226 7545 Fax : Australia (03) 6226 7545 Mobile 0417331181 Post: University of Tasmania GPO Box 252-80 Hobart, Tasmania Australia 7001 _____________________________________________________________________ From owner-freebsd-ports Tue May 6 19:02:01 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA22332 for ports-outgoing; Tue, 6 May 1997 19:02:01 -0700 (PDT) Received: from smtp2.erols.com (smtp2.erols.com [205.252.116.102]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA22326 for ; Tue, 6 May 1997 19:01:58 -0700 (PDT) Received: from genesis (cadams.erols.com [207.96.19.81]) by smtp2.erols.com (8.8.5/8.8.5) with SMTP id WAA20927 for ; Tue, 6 May 1997 22:01:55 -0400 (EDT) Message-ID: <336FE4C1.41C67EA6@erols.com> Date: Tue, 06 May 1997 22:11:13 -0400 From: Chris X-Mailer: Mozilla 3.01 (X11; I; FreeBSD 2.1.6-RELEASE i386) MIME-Version: 1.0 To: ports@FreeBSD.ORG Subject: ashe Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk What is the binary for ashe? How do you run ashe? From owner-freebsd-ports Tue May 6 19:34:44 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA25119 for ports-outgoing; Tue, 6 May 1997 19:34:44 -0700 (PDT) Received: from cais.cais.com (root@cais.com [199.0.216.4]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA25106 for ; Tue, 6 May 1997 19:34:41 -0700 (PDT) Received: from earth.mat.net (root@earth.mat.net [205.252.122.1]) by cais.cais.com (8.8.5/8.7.3) with SMTP id WAA00776; Tue, 6 May 1997 22:34:39 -0400 (EDT) Received: from Journey2.mat.net (journey2.mat.net [205.252.122.116]) by earth.mat.net (8.6.12/8.6.12) with SMTP id WAA15059; Tue, 6 May 1997 22:34:37 -0400 Date: Tue, 6 May 1997 22:34:07 -0400 (EDT) From: Chuck Robey To: Neil David Adams cc: ports@FreeBSD.ORG Subject: Re: pine port In-Reply-To: <336FE1E3.167E@bom.gov.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Wed, 7 May 1997, Neil David Adams wrote: > Hi, > I'm trying to install pine 3.96 to over come a problem with pine 3.91 > locking telnet sessions and I get afair way through the compilation > process under the ports system but it crashes at the line : > > install -d -o bin -g bin -m 755 /usr/local/share/doc/pine > > giving me the correct usage fo rthe install program > and then bombs with Error code 1 > stop > > This line is post install option in the Makefile. > > Any clues as to how I can fix this so it works ? since it leaves me > with a system that looks like it is runnig pine 3.96 but which still > locks up eventually if I am running any telnet sessions. I would guess you're probably not doing this on a current system, where the install program recognizes the -d option as (from the man page): -d Create directories. Missing parent directories are created as required. If it were me, I'd manually edit the Makefile to remove the -d option, create the directory manually (or have the Makefile do it with mkdir -p) and run install again. > > Cheers > Neil > -- > _____________________________________________________________________ > Neil Adams (Bureau of Meteorology). > Senior Meteorologist > Antarctic CRC and Bureau of Meteorology > Email: N.Adams@bom.gov.au > Phone: Australia (03) 6226 7545 Fax : Australia (03) 6226 7545 > Mobile 0417331181 > Post: University of Tasmania > GPO Box 252-80 > Hobart, Tasmania > Australia 7001 > _____________________________________________________________________ > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Tue May 6 19:59:01 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA26147 for ports-outgoing; Tue, 6 May 1997 19:59:01 -0700 (PDT) Received: from sag.space.lockheed.com (sag.space.lockheed.com [192.68.162.134]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id TAA26142 for ; Tue, 6 May 1997 19:58:59 -0700 (PDT) Received: from localhost by sag.space.lockheed.com; (5.65v3.2/1.1.8.2/21Nov95-0423PM) id AA18791; Tue, 6 May 1997 19:58:54 -0700 Date: Tue, 6 May 1997 19:58:54 -0700 (PDT) From: "Brian N. Handy" To: Neil David Adams Cc: ports@freebsd.org Subject: Re: pine port In-Reply-To: <336FE1E3.167E@bom.gov.au> Message-Id: X-Files: The truth is out there Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Any clues as to how I can fix this so it works ? since it leaves me >with a system that looks like it is runnig pine 3.96 but which still >locks up eventually if I am running any telnet sessions. Just curious here...Pine locks up my telnet sessions when I'm logged in over a laggy network link. I'm not sure what your problem is (sounds like you've got an old system trying to install a new port), but if you have the pine problem you are suggesting...Pine 3.96 doesn't fix it. Sigh. (If I had an idea how to chase this one down, I would.) Brian From owner-freebsd-ports Tue May 6 23:18:34 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id XAA04424 for ports-outgoing; Tue, 6 May 1997 23:18:34 -0700 (PDT) Received: from Campino.Informatik.RWTH-Aachen.DE (campino.Informatik.RWTH-Aachen.DE [137.226.116.240]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id XAA04419 for ; Tue, 6 May 1997 23:18:31 -0700 (PDT) Received: from gil.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de [137.226.31.2]) by Campino.Informatik.RWTH-Aachen.DE (RBI-Z-5/8.6.12) with ESMTP id IAA13268; Wed, 7 May 1997 08:19:30 +0200 (MET DST) Received: (from kuku@localhost) by gil.physik.rwth-aachen.de (8.8.5/8.6.9) id IAA03101; Wed, 7 May 1997 08:35:51 +0200 (MET DST) From: Christoph Kukulies Message-Id: <199705070635.IAA03101@gil.physik.rwth-aachen.de> Subject: Re: ashe In-Reply-To: <336FE4C1.41C67EA6@erols.com> from Chris at "May 6, 97 10:11:13 pm" To: cadams@erols.com (Chris) Date: Wed, 7 May 1997 08:35:50 +0200 (MET DST) Cc: ports@FreeBSD.ORG Reply-To: Christoph Kukulies X-Mailer: ELM [version 2.4ME+ PL28 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > What is the binary for ashe? How do you run ashe? xhtml > -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de From owner-freebsd-ports Wed May 7 00:20:54 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id AAA07264 for ports-outgoing; Wed, 7 May 1997 00:20:54 -0700 (PDT) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id AAA07259 for ; Wed, 7 May 1997 00:20:49 -0700 (PDT) Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id JAA23167; Wed, 7 May 1997 09:20:47 +0200 Received: (from j@localhost) by uriah.heep.sax.de (8.8.5/8.8.5) id IAA18170; Wed, 7 May 1997 08:52:40 +0200 (MET DST) Message-ID: <19970507085240.GK47310@uriah.heep.sax.de> Date: Wed, 7 May 1997 08:52:40 +0200 From: j@uriah.heep.sax.de (J Wunsch) To: ports@freebsd.org Cc: jkh@time.cdrom.com (Jordan K. Hubbard) Subject: Re: conf/3512: xload does not have proper owner and permissions. References: <19970506201633.PJ12430@uriah.heep.sax.de> <5839.862965397@time.cdrom.com> X-Mailer: Mutt 0.60_p2-3,5,8-9 Mime-Version: 1.0 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <5839.862965397@time.cdrom.com>; from Jordan K. Hubbard on May 6, 1997 17:36:37 -0700 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Query forwarded: As Jordan K. Hubbard wrote: > OK, well, given that I haven't installed a new version of apache > for some time, would someone more familiar with the new > organization care to tell me how its new organization relates > to /usr/src/release/sysinstall/apache.c? The relevant constants > are: > > /* These change if the package uses different defaults */ > > #define DEFAULT_USER "bin" > #define DEFAULT_GROUP "bin" > #define WELCOME_FILE "index.html" > #define USER_HOMEDIR "public_html" > > #define APACHE_BASE "/usr/local/www" > #define DATA_SUBDIR "data" > #define CONFIG_SUBDIR "server/conf" > > #define LOGS_SUBDIR "/var/log" > #define ACCESS_LOGNAME "httpd.access" > #define ERROR_LOGNAME "httpd.error" -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-ports Wed May 7 03:05:40 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA13969 for ports-outgoing; Wed, 7 May 1997 03:05:40 -0700 (PDT) Received: from mexico.brainstorm.eu.org (root@mexico.brainstorm.fr [193.56.58.253]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id DAA13964 for ; Wed, 7 May 1997 03:05:36 -0700 (PDT) Received: from brasil.brainstorm.eu.org (brasil.brainstorm.fr [193.56.58.33]) by mexico.brainstorm.eu.org (8.8.4/8.8.4) with ESMTP id MAA18859 for ; Wed, 7 May 1997 12:05:23 +0200 Received: (from uucp@localhost) by brasil.brainstorm.eu.org (8.8.4/8.6.12) with UUCP id MAA01700 for ports@FreeBSD.ORG; Wed, 7 May 1997 12:04:12 +0200 Received: (from roberto@localhost) by keltia.freenix.fr (8.8.5/keltia-uucp-2.9) id KAA01596; Wed, 7 May 1997 10:50:55 +0200 (CEST) Message-ID: <19970507105055.40536@keltia.freenix.fr> Date: Wed, 7 May 1997 10:50:55 +0200 From: Ollivier Robert To: "FreeBSD's ports list" Subject: Perl5 and the NOSUID flag Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.67 X-Operating-System: FreeBSD 3.0-CURRENT ctm#3245 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following patch has been submitted to the Perl5 porters people but I'm not sure it will make it into 5.004 (due to time constraints). It would be nice to verify it can be applied to 5.003 (probably) and included in the perl5 port. It makes suidperl respect the NOSUID mout flag when executing setuid scripts. A similar patch was committed to /usr/bin/perl a while ago. --- perl.h.old Tue May 6 12:22:21 1997 +++ perl.h Tue May 6 12:26:50 1997 @@ -223,6 +223,15 @@ # include #endif +/* needed for IAMSUID case for 4.4BSD systems + * XXX there should probably be a Configure variable + */ + +#ifdef I_SYS_PARAM +#if (defined (BSD) && (BSD >= 199306)) +# include +#endif /* !BSD */ +#endif /* !I_SYS_PARAM */ /* Use all the "standard" definitions? */ #if defined(STANDARD_C) && defined(I_STDLIB) --- perl.c.old Sun Apr 27 15:04:13 1997 +++ perl.c Tue May 6 12:27:40 1997 @@ -1913,4 +1913,18 @@ if (Stat(SvPVX(GvSV(curcop->cop_filegv)),&tmpstatbuf) < 0) croak("Permission denied"); /* testing full pathname here */ +#if (defined(BSD) && (BSD >= 199306)) +#ifdef IAMSUID + { + struct statfs stfs; + + if (fstatfs(fileno(rsfp),&stfs) < 0) + croak("Can't statfs filesystem of script \"%s\"",origfilename); + + if (stfs.f_flags & MNT_NOSUID) + croak("Permission denied"); + } +#endif /* IAMSUID */ +#endif /* BSD */ + if (tmpstatbuf.st_dev != statbuf.st_dev || tmpstatbuf.st_ino != statbuf.st_ino) { -- Ollivier ROBERT -=- FreeBSD: There are no limits -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 3.0-CURRENT #7: Sat Apr 26 17:13:26 CEST 1997 From owner-freebsd-ports Wed May 7 14:50:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA19740 for ports-outgoing; Wed, 7 May 1997 14:50:03 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA19724; Wed, 7 May 1997 14:50:01 -0700 (PDT) Resent-Date: Wed, 7 May 1997 14:50:01 -0700 (PDT) Resent-Message-Id: <199705072150.OAA19724@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, tm@systrix.de Received: from tmueller.prodata.de (tmueller.prodata.de [193.141.3.59]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA19436 for ; Wed, 7 May 1997 14:43:28 -0700 (PDT) Received: (from tm@localhost) by tmueller.prodata.de (8.8.5/8.8.5) id AAA01817; Thu, 8 May 1997 00:57:12 +0200 (CEST) Message-Id: <199705072257.AAA01817@tmueller.prodata.de> Date: Thu, 8 May 1997 00:57:12 +0200 (CEST) From: tm@systrix.de Reply-To: tm@systrix.de To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/3536: MakeTexPK calls gftopk with wron argument Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3536 >Category: ports >Synopsis: MakeTexPK calls gftopk with wron argument >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed May 7 14:50:00 PDT 1997 >Last-Modified: >Originator: Thomas Mueller >Organization: SYSTRIX CS GmbH >Release: FreeBSD 2.2.1-RELEASE i386 >Environment: >Description: MakeTeXPK (from FreeBSD 2.2.1-RELEASE CD-ROM package tex-3.14159) calls gftopk with wrong argument (-v instead of -verbose) making it unuseable. >How-To-Repeat: Run xdvi on .dvi file using a font which doesn't exist on your system. >Fix: *** /usr/local/bin/MakeTeXPK.ORG Thu May 8 00:55:11 1997 --- /usr/local/bin/MakeTeXPK Thu May 8 00:55:27 1997 *************** *** 146,152 **** exit 1 fi ! gftopk -verbose ./$GFNAME ./$PKNAME # Install the PK file carefully, since others may be doing the same # as us simultaneously. --- 146,152 ---- exit 1 fi ! gftopk -v ./$GFNAME ./$PKNAME # Install the PK file carefully, since others may be doing the same # as us simultaneously. >Audit-Trail: >Unformatted: From owner-freebsd-ports Wed May 7 14:50:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA19748 for ports-outgoing; Wed, 7 May 1997 14:50:04 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA19736; Wed, 7 May 1997 14:50:02 -0700 (PDT) Resent-Date: Wed, 7 May 1997 14:50:02 -0700 (PDT) Resent-Message-Id: <199705072150.OAA19736@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, tm@systrix.de Received: from tmueller.prodata.de (tmueller.prodata.de [193.141.3.59]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA19436 for ; Wed, 7 May 1997 14:43:28 -0700 (PDT) Received: (from tm@localhost) by tmueller.prodata.de (8.8.5/8.8.5) id AAA01817; Thu, 8 May 1997 00:57:12 +0200 (CEST) Message-Id: <199705072257.AAA01817@tmueller.prodata.de> Date: Thu, 8 May 1997 00:57:12 +0200 (CEST) From: tm@systrix.de Reply-To: tm@systrix.de To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/3537: MakeTexPK calls gftopk with wron argument Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3537 >Category: ports >Synopsis: MakeTexPK calls gftopk with wron argument >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed May 7 14:50:01 PDT 1997 >Last-Modified: >Originator: Thomas Mueller >Organization: SYSTRIX CS GmbH >Release: FreeBSD 2.2.1-RELEASE i386 >Environment: >Description: MakeTeXPK (from FreeBSD 2.2.1-RELEASE CD-ROM package tex-3.14159) calls gftopk with wrong argument (-v instead of -verbose) making it unuseable. >How-To-Repeat: Run xdvi on .dvi file using a font which doesn't exist on your system. >Fix: *** /usr/local/bin/MakeTeXPK.ORG Thu May 8 00:55:11 1997 --- /usr/local/bin/MakeTeXPK Thu May 8 00:55:27 1997 *************** *** 146,152 **** exit 1 fi ! gftopk -verbose ./$GFNAME ./$PKNAME # Install the PK file carefully, since others may be doing the same # as us simultaneously. --- 146,152 ---- exit 1 fi ! gftopk -v ./$GFNAME ./$PKNAME # Install the PK file carefully, since others may be doing the same # as us simultaneously. >Audit-Trail: >Unformatted: From owner-freebsd-ports Wed May 7 16:14:20 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA24085 for ports-outgoing; Wed, 7 May 1997 16:14:20 -0700 (PDT) Received: from darkstar.isi.edu (darkstar.isi.edu [128.9.128.127]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id QAA24074 for ; Wed, 7 May 1997 16:14:14 -0700 (PDT) Received: from dash.isi.edu by darkstar.isi.edu (5.65c/5.61+local-25) id ; Wed, 7 May 1997 16:14:11 -0700 Received: from dash.isi.edu (localhost.isi.edu [127.0.0.1]) by dash.isi.edu (8.8.5/8.8.4) with ESMTP id QAA04178 for ; Wed, 7 May 1997 16:14:10 -0700 Message-Id: <199705072314.QAA04178@dash.isi.edu> X-Url: To: freebsd-ports@freebsd.org Subject: suggestion for documentation Date: Wed, 07 May 1997 16:14:09 -0700 From: John Heidemann Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk As a recent port submitter, it would be helpful if the handbook listed what exactly to do with your port when you've got it working. Other than that the handbook was very helpful (wrt ports). -John Heidemann From owner-freebsd-ports Wed May 7 16:43:55 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA25494 for ports-outgoing; Wed, 7 May 1997 16:43:55 -0700 (PDT) Received: from cais.cais.com (root@cais.com [199.0.216.4]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA25488 for ; Wed, 7 May 1997 16:43:53 -0700 (PDT) Received: from earth.mat.net (root@earth.mat.net [205.252.122.1]) by cais.cais.com (8.8.5/8.7.3) with SMTP id TAA17680; Wed, 7 May 1997 19:43:46 -0400 (EDT) Received: from Journey2.mat.net (journey2.mat.net [205.252.122.116]) by earth.mat.net (8.6.12/8.6.12) with SMTP id TAA10704; Wed, 7 May 1997 19:43:39 -0400 Date: Wed, 7 May 1997 19:43:04 -0400 (EDT) From: Chuck Robey To: John Heidemann cc: freebsd-ports@FreeBSD.ORG Subject: Re: suggestion for documentation In-Reply-To: <199705072314.QAA04178@dash.isi.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Wed, 7 May 1997, John Heidemann wrote: > > As a recent port submitter, it would be helpful if the handbook > listed what exactly to do with your port when you've got it working. > Other than that the handbook was very helpful (wrt ports). If you want, send it to me, I will test & commit it on Friday. OTOH, I would be _extremely_ surprised, if you wanted to get committer privileges, if it wasn't granted real quickly. All you need is to have some vague idea that maybe cvs might be a useful tool (you don't have to even know it, just be willing to learn it quickly). Stuff like that is usually withheld for a few introductory months, whilst the new person gets used to things. I don't know you myself, but (from what you've written already) I get the idea that could be short-circuited. If you want those privileges, tell me (or tell the list). I am not core team, I would forward that request to Satoshi or Jordan. I _can_ do your commit, tho. > > -John Heidemann > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Wed May 7 17:05:44 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA26506 for ports-outgoing; Wed, 7 May 1997 17:05:44 -0700 (PDT) Received: from darkstar.isi.edu (darkstar.isi.edu [128.9.128.127]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id RAA26499 for ; Wed, 7 May 1997 17:05:41 -0700 (PDT) Received: from dash.isi.edu by darkstar.isi.edu (5.65c/5.61+local-25) id ; Wed, 7 May 1997 17:05:40 -0700 Received: from dash.isi.edu (localhost.isi.edu [127.0.0.1]) by dash.isi.edu (8.8.5/8.8.4) with ESMTP id RAA04360; Wed, 7 May 1997 17:05:38 -0700 Message-Id: <199705080005.RAA04360@dash.isi.edu> X-Url: To: Chuck Robey Cc: freebsd-ports@FreeBSD.ORG Subject: Re: suggestion for documentation In-Reply-To: Date: Wed, 07 May 1997 17:05:37 -0700 From: John Heidemann Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Wed, 07 May 1997 19:43:04 EDT, Chuck Robey wrote: >On Wed, 7 May 1997, John Heidemann wrote: > >> >> As a recent port submitter, it would be helpful if the handbook >> listed what exactly to do with your port when you've got it working. >> Other than that the handbook was very helpful (wrt ports). > >If you want, send it to me, I will test & commit it on Friday. > >OTOH, I would be _extremely_ surprised, if you wanted to get committer >privileges ... I should have given more background. I don't follow FreeBSD development closely, but I want to support it, so I want to make my software easy to use by FreeBSDers. I look at the handbook and do and test the port. Now how do I get the port to people, get it in the collection, etc.? I'm thinking of a new section 17.2.5.x on that says 17.2.5.x After the Port Works To distribute your port to others, (1) Ftp your port to ftp://ftp.freebsd.org/FreeBSD/incoming and (2) send mail about it to freebsd-ports@FreeBSD.ORG. or whatever you think is best. -John Heidemann From owner-freebsd-ports Wed May 7 17:10:09 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA26870 for ports-outgoing; Wed, 7 May 1997 17:10:09 -0700 (PDT) Received: (from max@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA26779; Wed, 7 May 1997 17:09:50 -0700 (PDT) Date: Wed, 7 May 1997 17:09:50 -0700 (PDT) From: Masafumi NAKANE Message-Id: <199705080009.RAA26779@hub.freebsd.org> To: tm@systrix.de, max, freebsd-ports Subject: Re: ports/3537 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: MakeTexPK calls gftopk with wron argument State-Changed-From-To: open-closed State-Changed-By: max State-Changed-When: Wed May 7 17:08:12 PDT 1997 State-Changed-Why: Duplicate PR (CF. #3536). From owner-freebsd-ports Wed May 7 19:50:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA03485 for ports-outgoing; Wed, 7 May 1997 19:50:03 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA03469; Wed, 7 May 1997 19:50:01 -0700 (PDT) Resent-Date: Wed, 7 May 1997 19:50:01 -0700 (PDT) Resent-Message-Id: <199705080250.TAA03469@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, andrew@ugh.net.au Received: from house.key.net.au (root@house.key.net.au [203.35.4.2]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA03222 for ; Wed, 7 May 1997 19:42:06 -0700 (PDT) Received: (from andrew@localhost) by house.key.net.au (8.8.5/8.8.5) id MAA21760; Thu, 8 May 1997 12:41:52 +1000 (EST) Message-Id: <199705080241.MAA21760@house.key.net.au> Date: Thu, 8 May 1997 12:41:52 +1000 (EST) From: Andrew Reply-To: andrew@ugh.net.au To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/3538: New port of poppassd (works under 2.2 I think) Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3538 >Category: ports >Synopsis: This is a port of poppassd that should work under 2.2 and above >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed May 7 19:50:01 PDT 1997 >Last-Modified: >Originator: Andrew >Organization: KeyNet >Release: FreeBSD 2.1.7-RELEASE i386 >Environment: >Description: The previous port of poppassd worked fine under 2.1.x but broke under 2.2.x. Ron Bickers sent me some changes which should allow it to work under 2.2.x and these changes are incorporated in this version. The port seems to still work under 2.1.x. NOTE: I didnt do these 2.2.x changes and I havent a machine to test them on. The new port is poppassd-2.2.tar.gz in incoming on ftp.freebsd.org. >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-ports Wed May 7 19:50:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA03487 for ports-outgoing; Wed, 7 May 1997 19:50:04 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA03480; Wed, 7 May 1997 19:50:02 -0700 (PDT) Resent-Date: Wed, 7 May 1997 19:50:02 -0700 (PDT) Resent-Message-Id: <199705080250.TAA03480@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, andrew@ugh.net.au Received: from house.key.net.au (root@house.key.net.au [203.35.4.2]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA03222 for ; Wed, 7 May 1997 19:42:06 -0700 (PDT) Received: (from andrew@localhost) by house.key.net.au (8.8.5/8.8.5) id MAA21760; Thu, 8 May 1997 12:41:52 +1000 (EST) Message-Id: <199705080241.MAA21760@house.key.net.au> Date: Thu, 8 May 1997 12:41:52 +1000 (EST) From: Andrew Reply-To: andrew@ugh.net.au To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/3539: New port of poppassd (works under 2.2 I think) Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3539 >Category: ports >Synopsis: This is a port of poppassd that should work under 2.2 and above >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed May 7 19:50:02 PDT 1997 >Last-Modified: >Originator: Andrew >Organization: KeyNet >Release: FreeBSD 2.1.7-RELEASE i386 >Environment: >Description: The previous port of poppassd worked fine under 2.1.x but broke under 2.2.x. Ron Bickers sent me some changes which should allow it to work under 2.2.x and these changes are incorporated in this version. The port seems to still work under 2.1.x. NOTE: I didnt do these 2.2.x changes and I havent a machine to test them on. The new port is poppassd-2.2.tar.gz in incoming on ftp.freebsd.org. >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-ports Wed May 7 21:56:26 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id VAA08458 for ports-outgoing; Wed, 7 May 1997 21:56:26 -0700 (PDT) Received: (from fenner@localhost) by hub.freebsd.org (8.8.5/8.8.5) id VAA08366; Wed, 7 May 1997 21:54:34 -0700 (PDT) Date: Wed, 7 May 1997 21:54:34 -0700 (PDT) From: Bill Fenner Message-Id: <199705080454.VAA08366@hub.freebsd.org> To: andrew@ugh.net.au, fenner, freebsd-ports Subject: Re: ports/3538 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: This is a port of poppassd that should work under 2.2 and above State-Changed-From-To: open-closed State-Changed-By: fenner State-Changed-When: Wed May 7 21:54:09 PDT 1997 State-Changed-Why: Duplicate for ports/3539. (Is hub duplicating email?) From owner-freebsd-ports Wed May 7 23:53:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id XAA12696 for ports-outgoing; Wed, 7 May 1997 23:53:03 -0700 (PDT) Received: from silvia.HIP.Berkeley.EDU (ala-ca26-32.ix.netcom.com [207.93.42.96]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id XAA12687 for ; Wed, 7 May 1997 23:52:39 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.5/8.6.9) id XAA21907; Wed, 7 May 1997 23:49:54 -0700 (PDT) Date: Wed, 7 May 1997 23:49:54 -0700 (PDT) Message-Id: <199705080649.XAA21907@silvia.HIP.Berkeley.EDU> To: johnh@ISI.EDU CC: chuckr@mat.net, freebsd-ports@FreeBSD.ORG In-reply-to: <199705080005.RAA04360@dash.isi.edu> (message from John Heidemann on Wed, 07 May 1997 17:05:37 -0700) Subject: Re: suggestion for documentation From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * I'm thinking of a new section 17.2.5.x on * * that says * * 17.2.5.x After the Port Works * * To distribute your port to others, * (1) Ftp your port to ftp://ftp.freebsd.org/FreeBSD/incoming * and (2) send mail about it to freebsd-ports@FreeBSD.ORG. Well, there already is a "Submitting the port" section. Maybe it's a little easy to miss because it's kinda in the middle (right at the end of "quick porting"). Satoshi From owner-freebsd-ports Thu May 8 02:00:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA16873 for ports-outgoing; Thu, 8 May 1997 02:00:05 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA16849; Thu, 8 May 1997 02:00:02 -0700 (PDT) Resent-Date: Thu, 8 May 1997 02:00:02 -0700 (PDT) Resent-Message-Id: <199705080900.CAA16849@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, Received:(from nobody@localhost) by.hub.freebsd.org.id.BAA16735;Thu; (8.8.5/8.8.5);, 8 May 1997 01:57:10.-0700 (PDT) Message-Id: <199705080857.BAA16735@hub.freebsd.org> Date: Thu, 8 May 1997 01:57:10 -0700 (PDT) From: vova@folco.lms.ru To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/3540: sudo package don't accept passwords longer then 8 characters Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3540 >Category: ports >Synopsis: sudo package don't accept passwords longer then 8 characters >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu May 8 02:00:01 PDT 1997 >Last-Modified: >Originator: Vladimr B. Grebenschikov >Organization: PlugCom >Release: 2.2-RELEASE >Environment: FreeBSD folco.lms.ru 2.2-RELEASE FreeBSD 2.2-RELEASE #0: Thu Mar 27 15:11:35 MSK 1997 vova@folco.lms.ru:/usr/src/sys/compile/Folco i386 >Description: I can't do sudo with password longer 8 chars sudo v1.5.3 >How-To-Repeat: setup your password longer 8 chars, include yourself to sudoers file run sudo >Fix: I fix it very stupid: --- ports/security/sudo/work/sudo.v1.5.3/compat.h~ Thu Nov 14 05:37:21 1996 +++ ports/security/sudo/work/sudo.v1.5.3/compat.h Thu May 8 12:45:06 1997 @@ -104,7 +104,7 @@ # if (SHADOW_TYPE != SPW_NONE) # define _PASSWD_LEN 24 # else -# define _PASSWD_LEN 8 +# define _PASSWD_LEN 24 # endif /* SHADOW_TYPE != SPW_NONE */ # endif /* PASS_MAX */ # endif /* !_PASSWD_LEN */ >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu May 8 02:00:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA16878 for ports-outgoing; Thu, 8 May 1997 02:00:06 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA16866; Thu, 8 May 1997 02:00:04 -0700 (PDT) Resent-Date: Thu, 8 May 1997 02:00:04 -0700 (PDT) Resent-Message-Id: <199705080900.CAA16866@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, Received:(from nobody@localhost) by.hub.freebsd.org.id.BAA16735;Thu; (8.8.5/8.8.5);, 8 May 1997 01:57:10.-0700 (PDT) Message-Id: <199705080857.BAA16735@hub.freebsd.org> Date: Thu, 8 May 1997 01:57:10 -0700 (PDT) From: vova@folco.lms.ru To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/3541: sudo package don't accept passwords longer then 8 characters Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3541 >Category: ports >Synopsis: sudo package don't accept passwords longer then 8 characters >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu May 8 02:00:03 PDT 1997 >Last-Modified: >Originator: Vladimr B. Grebenschikov >Organization: PlugCom >Release: 2.2-RELEASE >Environment: FreeBSD folco.lms.ru 2.2-RELEASE FreeBSD 2.2-RELEASE #0: Thu Mar 27 15:11:35 MSK 1997 vova@folco.lms.ru:/usr/src/sys/compile/Folco i386 >Description: I can't do sudo with password longer 8 chars sudo v1.5.3 >How-To-Repeat: setup your password longer 8 chars, include yourself to sudoers file run sudo >Fix: I fix it very stupid: --- ports/security/sudo/work/sudo.v1.5.3/compat.h~ Thu Nov 14 05:37:21 1996 +++ ports/security/sudo/work/sudo.v1.5.3/compat.h Thu May 8 12:45:06 1997 @@ -104,7 +104,7 @@ # if (SHADOW_TYPE != SPW_NONE) # define _PASSWD_LEN 24 # else -# define _PASSWD_LEN 8 +# define _PASSWD_LEN 24 # endif /* SHADOW_TYPE != SPW_NONE */ # endif /* PASS_MAX */ # endif /* !_PASSWD_LEN */ >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu May 8 02:06:43 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA17121 for ports-outgoing; Thu, 8 May 1997 02:06:43 -0700 (PDT) Received: from news1.gtn.com (news1.gtn.com [192.109.159.3]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA17114; Thu, 8 May 1997 02:06:39 -0700 (PDT) Received: (from uucp@localhost) by news1.gtn.com (8.7.2/8.7.2) with UUCP id LAA19745; Thu, 8 May 1997 11:00:36 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.8.5/8.8.2) id KAA21091; Thu, 8 May 1997 10:45:42 +0200 (CEST) Message-ID: <19970508104542.05705@klemm.gtn.com> Date: Thu, 8 May 1997 10:45:42 +0200 From: Andreas Klemm To: asami@FreeBSD.ORG Cc: ports@FreeBSD.ORG Subject: a new ports categorie for kdm ? Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.69 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk I'm currently trying to make some ports out of the Kool desktop manager package Since there are some (many) application under this "label", would you agree, to create a new categorie especially for these kdm tools ? For more information see: http://www.kde.org/ -- Andreas Klemm | klemm.gtn.com - powered by Symmetric MultiProcessor FreeBSD http://www.freebsd.org/~fsmp/SMP/SMP.html http://www.freebsd.org/~fsmp/SMP/benches.html From owner-freebsd-ports Thu May 8 02:23:54 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA17808 for ports-outgoing; Thu, 8 May 1997 02:23:54 -0700 (PDT) Received: from silvia.HIP.Berkeley.EDU (ala-ca26-32.ix.netcom.com [207.93.42.96]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA17803 for ; Thu, 8 May 1997 02:23:52 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.5/8.6.9) id CAA18062; Thu, 8 May 1997 02:23:41 -0700 (PDT) Date: Thu, 8 May 1997 02:23:41 -0700 (PDT) Message-Id: <199705080923.CAA18062@silvia.HIP.Berkeley.EDU> To: andreas@klemm.gtn.com CC: ports@FreeBSD.ORG In-reply-to: <19970508104542.05705@klemm.gtn.com> (message from Andreas Klemm on Thu, 8 May 1997 10:45:42 +0200) Subject: Re: a new ports categorie for kdm ? From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * Since there are some (many) application under this "label", * would you agree, to create a new categorie especially for these * kdm tools ? I took a look at www.kde.org, it seems more like a collection of X applications. They don't seem to be tied together too closely, for instance, I can just install kwm and use it, right? How about putting them under their regular categories (x11/ for window manager, editors/ for editor, print/ for dvi previewer, etc.) and add an extra "kde" to the CATEGORIES line? Satoshi From owner-freebsd-ports Thu May 8 02:48:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA18626 for ports-outgoing; Thu, 8 May 1997 02:48:06 -0700 (PDT) Received: from silvia.HIP.Berkeley.EDU (ala-ca26-32.ix.netcom.com [207.93.42.96]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA18621 for ; Thu, 8 May 1997 02:48:03 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.5/8.6.9) id CAA18182; Thu, 8 May 1997 02:47:46 -0700 (PDT) Date: Thu, 8 May 1997 02:47:46 -0700 (PDT) Message-Id: <199705080947.CAA18182@silvia.HIP.Berkeley.EDU> To: james@nexis.net CC: chuckr@mat.net, freebsd-ports@FreeBSD.ORG In-reply-to: (message from James FitzGibbon on Sun, 4 May 1997 20:00:58 -0400 (EDT)) Subject: Re: Suggested change to apache port From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * This works, but in the specific case of p5-Apache, I required two things * that the patch didn't cover: * * - The ability to specify a double target ("clean patch") so that I know * I'm working off of clean source I don't think that's what we really want to do. The ports' directories are supposed to have states, that only go forward unless you explicitly type "make clean". I don't know what's going to happen, for instance, if you type "make install package" in ports/www. Actually I do know what's going to happen; apache will be built and installed, p5-Apache will come and clean apache/work, build and install itself, apache will be installed (again) and packaged (will p5-Apache build in apache/work? if that's so, this second installation will be that of p5-Apache, not vanilla apache), then p5-Apache will be packaged. As you can see, this opens up a whole new can of worms. * - Putting it in DEPENDS instead of *_DEPENDS. Yeah, as I said, that's only a temporary patch. I didn't want to duplicate code before I knew it was working. ;) * For now, I kludged it in to cd into ${PORTSDIR}/www/apache and do a make * clean patch rather than keep the requestor of the port waiting. Let me repeat my original suggestion, that is to use as many of the port files under apache as possible but build by yourself under p5-Apache. You can't really use the depend mechanism unless you are (1) only moving forward, (i.e., if you specify "patch", you can use the "build" or "install"ed state too), and (2) not changing anything under the depended port's work/ subdir. * Still, as Chuck mentioned, these changes will make life a lot easier for * future ports (and some existing ones that do really ugly things right * now). Let me know more about the ugliness. Satoshi From owner-freebsd-ports Thu May 8 05:06:43 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id FAA22926 for ports-outgoing; Thu, 8 May 1997 05:06:43 -0700 (PDT) Received: from bsd.fs.bauing.th-darmstadt.de (bsd.fs.bauing.th-darmstadt.de [130.83.63.241]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id FAA22919 for ; Thu, 8 May 1997 05:06:40 -0700 (PDT) Received: from campa.panke.de (anonymous226.ppp.cs.tu-berlin.de [130.149.17.226]) by bsd.fs.bauing.th-darmstadt.de (8.8.5/8.8.5) with ESMTP id OAA26053; Thu, 8 May 1997 14:06:30 +0200 (MET DST) Received: (from wosch@localhost) by campa.panke.de (8.8.5/8.6.12) id OAA02304; Thu, 8 May 1997 14:04:24 +0200 (MET DST) To: asami@vader.cs.berkeley.edu (Satoshi Asami) Cc: andreas@klemm.gtn.com, ports@FreeBSD.ORG Subject: Re: a new ports categorie for kdm ? References: <199705080923.CAA18062@silvia.HIP.Berkeley.EDU> From: Wolfram Schneider Date: 08 May 1997 14:04:22 +0200 In-Reply-To: asami@vader.cs.berkeley.edu's message of Thu, 8 May 1997 02:23:41 -0700 (PDT) Message-ID: Lines: 9 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk asami@vader.cs.berkeley.edu (Satoshi Asami) writes: > How about putting them under their regular categories (x11/ for window > manager, editors/ for editor, print/ for dvi previewer, etc.) and add > an extra "kde" to the CATEGORIES line? Good idea. -- Wolfram Schneider http://www.apfel.de/~wosch/ From owner-freebsd-ports Thu May 8 05:23:59 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id FAA23664 for ports-outgoing; Thu, 8 May 1997 05:23:59 -0700 (PDT) Received: from news1.gtn.com (news1.gtn.com [194.77.0.15]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id FAA23655 for ; Thu, 8 May 1997 05:23:56 -0700 (PDT) Received: (from uucp@localhost) by news1.gtn.com (8.7.2/8.7.2) with UUCP id OAA19492; Thu, 8 May 1997 14:15:16 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.8.5/8.8.2) id MAA21302; Thu, 8 May 1997 12:32:18 +0200 (CEST) Message-ID: <19970508123217.19898@klemm.gtn.com> Date: Thu, 8 May 1997 12:32:17 +0200 From: Andreas Klemm To: Satoshi Asami Cc: ports@FreeBSD.ORG Subject: Re: a new ports categorie for kdm ? References: <19970508104542.05705@klemm.gtn.com> <199705080923.CAA18062@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.69 In-Reply-To: <199705080923.CAA18062@silvia.HIP.Berkeley.EDU>; from Satoshi Asami on Thu, May 08, 1997 at 02:23:41AM -0700 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Thu, May 08, 1997 at 02:23:41AM -0700, Satoshi Asami wrote: > * Since there are some (many) application under this "label", > * would you agree, to create a new categorie especially for these > * kdm tools ? > > I took a look at www.kde.org, Please do that ;-) > it seems more like a collection of X applications. No I think it looks more like KDE (X11) applications. > They don't seem to be tied together too closely, for instance, > I can just install kwm and use it, right? I think yes. But on the other hand it seems, that all these tools installed together form something like a "complete" package as ther commercial CDE (Common desktop environment) is. I think it would be a good advantage, to be able to jump into a directory /usr/ports/kdm and to do a make all install clean, to get a complete kde _Environment_. Look at the given URL and after that let's discuss again. In the meantime I finish the port. > How about putting them under their regular categories (x11/ for window > manager, editors/ for editor, print/ for dvi previewer, etc.) and add > an extra "kde" to the CATEGORIES line? Would that result in (only) a new packages directory with proper symlinks to the x11, editors and print category ? -- Andreas Klemm | klemm.gtn.com - powered by Symmetric MultiProcessor FreeBSD http://www.freebsd.org/~fsmp/SMP/SMP.html http://www.freebsd.org/~fsmp/SMP/benches.html From owner-freebsd-ports Thu May 8 06:16:40 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA25945 for ports-outgoing; Thu, 8 May 1997 06:16:40 -0700 (PDT) Received: from cais.cais.com (root@cais.com [199.0.216.4]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id GAA25939; Thu, 8 May 1997 06:16:37 -0700 (PDT) Received: from earth.mat.net (root@earth.mat.net [205.252.122.1]) by cais.cais.com (8.8.5/8.7.3) with SMTP id JAA22768; Thu, 8 May 1997 09:15:20 -0400 (EDT) Received: from Journey2.mat.net (journey2.mat.net [205.252.122.116]) by earth.mat.net (8.6.12/8.6.12) with SMTP id JAA16524; Thu, 8 May 1997 09:15:18 -0400 Date: Thu, 8 May 1997 09:14:39 -0400 (EDT) From: Chuck Robey To: Andreas Klemm cc: asami@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: a new ports categorie for kdm ? In-Reply-To: <19970508104542.05705@klemm.gtn.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Thu, 8 May 1997, Andreas Klemm wrote: > I'm currently trying to make some ports out of the > > Kool desktop manager package > > Since there are some (many) application under this "label", > would you agree, to create a new categorie especially for these > kdm tools ? Seeing as this completely breaks the sorting paradigm that ports uses, and it's confusing enough as it is for folks not familiar with our ports, I don't see this as necessary. XFree86 has _more_ different programs of the same type, and it is not a separate category. Neither is iv. Neither is fvwm. kde is bigger than fvwm (tho about the same number of parts), but I don't see that kde really requires it's own dir. I tend to think we ought to handle kde like XFree86. BTW, it's a really cool thing, but it's very beta yet. > > For more information see: > > http://www.kde.org/ > > > -- > Andreas Klemm | klemm.gtn.com - powered by > Symmetric MultiProcessor FreeBSD > http://www.freebsd.org/~fsmp/SMP/SMP.html > http://www.freebsd.org/~fsmp/SMP/benches.html > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Thu May 8 07:00:26 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id HAA28322 for ports-outgoing; Thu, 8 May 1997 07:00:26 -0700 (PDT) Received: from fallout.campusview.indiana.edu (fallout.campusview.indiana.edu [149.159.1.1]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id HAA28315 for ; Thu, 8 May 1997 07:00:22 -0700 (PDT) Received: from localhost (jfieber@localhost) by fallout.campusview.indiana.edu (8.8.5/8.8.5) with SMTP id JAA05271; Thu, 8 May 1997 09:00:14 -0500 (EST) Date: Thu, 8 May 1997 09:00:13 -0500 (EST) From: John Fieber To: Satoshi Asami cc: johnh@ISI.EDU, chuckr@mat.net, freebsd-ports@FreeBSD.ORG Subject: Re: suggestion for documentation In-Reply-To: <199705080649.XAA21907@silvia.HIP.Berkeley.EDU> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Wed, 7 May 1997, Satoshi Asami wrote: > Well, there already is a "Submitting the port" section. Maybe it's a > little easy to miss because it's kinda in the middle (right at the end > of "quick porting"). The porting section is a very important part of the handbook and I'm thinking of promoting to the chapter level, which would have the side effect of all the subsections a little more visible. -john From owner-freebsd-ports Thu May 8 08:34:36 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id IAA03281 for ports-outgoing; Thu, 8 May 1997 08:34:36 -0700 (PDT) Received: from bacall.lodgenet.com (bacall.lodgenet.com [205.138.147.242]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id IAA03263 for ; Thu, 8 May 1997 08:34:31 -0700 (PDT) Received: (from mail@localhost) by bacall.lodgenet.com (8.6.12/8.6.12) id IAA12142; Thu, 8 May 1997 08:21:00 -0500 Received: from garbo.lodgenet.com(204.124.123.250) by bacall via smap (V1.3) id sma012127; Thu May 8 08:20:49 1997 Received: from jake.lodgenet.com (jake.lodgenet.com [10.0.11.30]) by garbo.lodgenet.com (8.6.12/8.6.9) with ESMTP id IAA22838; Thu, 8 May 1997 08:18:20 -0500 Received: from jake.lodgenet.com (localhost.lodgenet.com [127.0.0.1]) by jake.lodgenet.com (8.8.5/8.6.12) with ESMTP id IAA28897; Thu, 8 May 1997 08:17:39 -0500 (CDT) Message-Id: <199705081317.IAA28897@jake.lodgenet.com> X-Mailer: exmh version 2.0gamma 1/27/96 To: asami@vader.cs.berkeley.edu (Satoshi Asami) cc: andreas@klemm.gtn.com, ports@FreeBSD.ORG Subject: Re: a new ports categorie for kdm ? In-reply-to: Your message of "Thu, 08 May 1997 02:23:41 PDT." <199705080923.CAA18062@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 08 May 1997 08:17:39 -0500 From: "Eric L. Hernes" Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Satoshi Asami writes: > * Since there are some (many) application under this "label", > * would you agree, to create a new categorie especially for these > * kdm tools ? > >I took a look at www.kde.org, it seems more like a collection of X >applications. They don't seem to be tied together too closely, for >instance, I can just install kwm and use it, right? Yea, I took a look at this last week, but it looked pretty buggy from here. I thought about the kde/ category, but The thing is really three distributions. 1 -- kde-support libraries, libjpeg, and libgif. we already have libjpeg, I made a port of the original libgif that I can commit. this one won't be necessary. 2 -- kde-libraries -- just a set of libraries for the clients. 3 -- All the clients bundled up as one package. So I started on three ports, graphics/libgif, x11/kde-libs x11/kde-clients. `pkg_add kde-clients' will sort it all out via the dependancies. Unfortunately, I won't have time to work on it anymore for a couple weeks, if anyone is interested in picking it up, let me know... (I think graphics/libgif is ready for commit. kde-libs is packaged, but may have bugs) > >Satoshi > eric. -- erich@rrnet.com http://rrnet.com/~erich erich@freebsd.org http://www.freebsd.org/~erich erich@lodgenet.com From owner-freebsd-ports Thu May 8 09:00:01 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA04674 for ports-outgoing; Thu, 8 May 1997 09:00:01 -0700 (PDT) Received: from darkstar.isi.edu (darkstar.isi.edu [128.9.128.127]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id IAA04633 for ; Thu, 8 May 1997 08:59:58 -0700 (PDT) Received: from dash.isi.edu by darkstar.isi.edu (5.65c/5.61+local-25) id ; Thu, 8 May 1997 08:59:56 -0700 Received: from dash.isi.edu (localhost.isi.edu [127.0.0.1]) by dash.isi.edu (8.8.5/8.8.4) with ESMTP id IAA05771; Thu, 8 May 1997 08:59:50 -0700 Message-Id: <199705081559.IAA05771@dash.isi.edu> X-Url: To: asami@vader.cs.berkeley.edu (Satoshi Asami) Cc: chuckr@mat.net, freebsd-ports@FreeBSD.ORG Subject: Re: suggestion for documentation In-Reply-To: <199705080649.XAA21907@silvia.HIP.Berkeley.EDU> Date: Thu, 08 May 1997 08:59:48 -0700 From: John Heidemann Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Wed, 07 May 1997 23:49:54 PDT, Satoshi Asami wrote: > * I'm thinking of a new section 17.2.5.x on > * > * that says > * > * 17.2.5.x After the Port Works > * > * To distribute your port to others, > * (1) Ftp your port to ftp://ftp.freebsd.org/FreeBSD/incoming > * and (2) send mail about it to freebsd-ports@FreeBSD.ORG. > >Well, there already is a "Submitting the port" section. Maybe it's a >little easy to miss because it's kinda in the middle (right at the end >of "quick porting"). D'ohh! I guess I missed it---carefully RTFM is the moral of this story. Putting a pointer to it at the end of the section 17.2.5 would make it more noticable for the casual reader, though. -John Heidemann From owner-freebsd-ports Thu May 8 09:30:52 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA05956 for ports-outgoing; Thu, 8 May 1997 09:30:52 -0700 (PDT) Received: from fps.biblos.unal.edu.co ([168.176.37.11]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id JAA05913; Thu, 8 May 1997 09:30:14 -0700 (PDT) Received: from localhost by fps.biblos.unal.edu.co (AIX 4.1/UCB 5.64/4.03) id AA29842; Thu, 8 May 1997 11:30:41 -0500 Date: Thu, 8 May 1997 11:30:41 -0500 (EST) From: "Pedro F. Giffuni" To: Andreas Klemm Cc: asami@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: a new ports categorie for kdm ? In-Reply-To: <19970508104542.05705@klemm.gtn.com> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Thu, 8 May 1997, Andreas Klemm wrote: > > Since there are some (many) application under this "label", > would you agree, to create a new categorie especially for these > kdm tools ? > I'm a bit more drastic. I would like a branch per GUI: -OpenLook & related apps. -Motif related apps. -kdm & related apps. -Other Window Managers (fvwm, fvwm95, mlwm, etc.). And a bit of cleaning in X11 :). Pedro. > -- > Andreas Klemm | klemm.gtn.com - powered by > Symmetric MultiProcessor FreeBSD > http://www.freebsd.org/~fsmp/SMP/SMP.html > http://www.freebsd.org/~fsmp/SMP/benches.html > From owner-freebsd-ports Thu May 8 10:22:17 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA08586 for ports-outgoing; Thu, 8 May 1997 10:22:17 -0700 (PDT) Received: from superior.mooseriver.com (ppp010-sm2.sirius.com [205.134.231.10]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id KAA08576 for ; Thu, 8 May 1997 10:22:13 -0700 (PDT) Received: (from jgrosch@localhost) by superior.mooseriver.com (8.8.5/8.8.5) id KAA20182; Thu, 8 May 1997 10:21:38 -0700 (PDT) From: Josef Grosch Message-Id: <199705081721.KAA20182@superior.mooseriver.com> Subject: Re: a new ports categorie for kdm ? In-Reply-To: from "Pedro F. Giffuni" at "May 8, 97 11:30:41 am" To: pgiffuni@fps.biblos.unal.edu.co (Pedro F. Giffuni) Date: Thu, 8 May 1997 10:21:37 -0700 (PDT) Cc: ports@freebsd.org Reply-To: jgrosch@sirius.com X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Pedro F. Giffuni said: >On Thu, 8 May 1997, Andreas Klemm wrote: >> >> Since there are some (many) application under this "label", >> would you agree, to create a new categorie especially for these >> kdm tools ? >> >I'm a bit more drastic. I would like a branch per GUI: >-OpenLook & related apps. >-Motif related apps. >-kdm & related apps. >-Other Window Managers (fvwm, fvwm95, mlwm, etc.). >And a bit of cleaning in X11 :). > > Pedro. > I agree with Pedro. Creating branches for each window manager would clear up some of the confusion (at least for me) as to which packages run under which window manager and would clean up X11 which is on it's way to be coming a general dumping ground. My $0.02 Josef -- Josef Grosch | Another day closer to a | FreeBSD 2.2.1 jgrosch@sirius.com | Micro$oft free world | UNIX for the masses From owner-freebsd-ports Thu May 8 12:23:46 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id MAA14337 for ports-outgoing; Thu, 8 May 1997 12:23:46 -0700 (PDT) Received: from haldjas.folklore.ee (Haldjas.folklore.ee [193.40.6.121]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id MAA14317; Thu, 8 May 1997 12:22:10 -0700 (PDT) Received: from localhost (narvi@localhost) by haldjas.folklore.ee (8.8.4/8.8.4) with SMTP id WAA07286; Thu, 8 May 1997 22:33:02 +0300 (EEST) Date: Thu, 8 May 1997 22:33:01 +0300 (EEST) From: Narvi To: vova@folco.lms.ru cc: freebsd-gnats-submit@FreeBSD.ORG, GNATS Management , freebsd-ports@hub.freebsd.org Subject: Re: ports/3540: sudo package don't accept passwords longer then 8 characters In-Reply-To: <199705080857.BAA16735@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Thu, 8 May 1997 vova@folco.lms.ru wrote: > > >Number: 3540 > >Category: ports > >Synopsis: sudo package don't accept passwords longer then 8 characters > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-ports > >State: open > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Thu May 8 02:00:01 PDT 1997 > >Last-Modified: > >Originator: Vladimr B. Grebenschikov > >Organization: > PlugCom > >Release: 2.2-RELEASE > >Environment: > FreeBSD folco.lms.ru 2.2-RELEASE FreeBSD 2.2-RELEASE #0: Thu Mar 27 15:11:35 MSK 1997 vova@folco.lms.ru:/usr/src/sys/compile/Folco i386 > > >Description: > I can't do sudo with password longer 8 chars > sudo v1.5.3 > > >How-To-Repeat: > setup your password longer 8 chars, include yourself to sudoers file > run sudo > > >Fix: > I fix it very stupid: > > --- ports/security/sudo/work/sudo.v1.5.3/compat.h~ Thu Nov 14 05:37:21 1996 > +++ ports/security/sudo/work/sudo.v1.5.3/compat.h Thu May 8 12:45:06 1997 > @@ -104,7 +104,7 @@ > # if (SHADOW_TYPE != SPW_NONE) > # define _PASSWD_LEN 24 > # else > -# define _PASSWD_LEN 8 > +# define _PASSWD_LEN 24 Hey! you just increased the value to 24 but didn't solve the problem - sudo shouldn't care, how long passwd I have, but cope with it without an overflow. Think of all the people who use sentences for their passwords. Sander > # endif /* SHADOW_TYPE != SPW_NONE */ > # endif /* PASS_MAX */ > # endif /* !_PASSWD_LEN */ > > > >Audit-Trail: > >Unformatted: > From owner-freebsd-ports Thu May 8 12:30:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id MAA14512 for ports-outgoing; Thu, 8 May 1997 12:30:04 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id MAA14499; Thu, 8 May 1997 12:30:02 -0700 (PDT) Date: Thu, 8 May 1997 12:30:02 -0700 (PDT) Message-Id: <199705081930.MAA14499@hub.freebsd.org> To: freebsd-ports Cc: From: Narvi Subject: Re: ports/3540: sudo package don't accept passwords longer then 8 characters Reply-To: Narvi Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR ports/3540; it has been noted by GNATS. From: Narvi To: vova@folco.lms.ru Cc: freebsd-gnats-submit@FreeBSD.ORG, GNATS Management , freebsd-ports@hub.freebsd.org Subject: Re: ports/3540: sudo package don't accept passwords longer then 8 characters Date: Thu, 8 May 1997 22:33:01 +0300 (EEST) On Thu, 8 May 1997 vova@folco.lms.ru wrote: > > >Number: 3540 > >Category: ports > >Synopsis: sudo package don't accept passwords longer then 8 characters > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-ports > >State: open > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Thu May 8 02:00:01 PDT 1997 > >Last-Modified: > >Originator: Vladimr B. Grebenschikov > >Organization: > PlugCom > >Release: 2.2-RELEASE > >Environment: > FreeBSD folco.lms.ru 2.2-RELEASE FreeBSD 2.2-RELEASE #0: Thu Mar 27 15:11:35 MSK 1997 vova@folco.lms.ru:/usr/src/sys/compile/Folco i386 > > >Description: > I can't do sudo with password longer 8 chars > sudo v1.5.3 > > >How-To-Repeat: > setup your password longer 8 chars, include yourself to sudoers file > run sudo > > >Fix: > I fix it very stupid: > > --- ports/security/sudo/work/sudo.v1.5.3/compat.h~ Thu Nov 14 05:37:21 1996 > +++ ports/security/sudo/work/sudo.v1.5.3/compat.h Thu May 8 12:45:06 1997 > @@ -104,7 +104,7 @@ > # if (SHADOW_TYPE != SPW_NONE) > # define _PASSWD_LEN 24 > # else > -# define _PASSWD_LEN 8 > +# define _PASSWD_LEN 24 Hey! you just increased the value to 24 but didn't solve the problem - sudo shouldn't care, how long passwd I have, but cope with it without an overflow. Think of all the people who use sentences for their passwords. Sander > # endif /* SHADOW_TYPE != SPW_NONE */ > # endif /* PASS_MAX */ > # endif /* !_PASSWD_LEN */ > > > >Audit-Trail: > >Unformatted: > From owner-freebsd-ports Thu May 8 12:30:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id MAA14522 for ports-outgoing; Thu, 8 May 1997 12:30:05 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id MAA14509; Thu, 8 May 1997 12:30:03 -0700 (PDT) Date: Thu, 8 May 1997 12:30:03 -0700 (PDT) Message-Id: <199705081930.MAA14509@hub.freebsd.org> To: freebsd-ports Cc: From: Narvi Subject: Re: ports/3540: sudo package don't accept passwords longer then 8 characters Reply-To: Narvi Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR ports/3540; it has been noted by GNATS. From: Narvi To: vova@folco.lms.ru Cc: freebsd-gnats-submit@FreeBSD.ORG, GNATS Management , freebsd-ports@hub.freebsd.org Subject: Re: ports/3540: sudo package don't accept passwords longer then 8 characters Date: Thu, 8 May 1997 22:33:01 +0300 (EEST) On Thu, 8 May 1997 vova@folco.lms.ru wrote: > > >Number: 3540 > >Category: ports > >Synopsis: sudo package don't accept passwords longer then 8 characters > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-ports > >State: open > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Thu May 8 02:00:01 PDT 1997 > >Last-Modified: > >Originator: Vladimr B. Grebenschikov > >Organization: > PlugCom > >Release: 2.2-RELEASE > >Environment: > FreeBSD folco.lms.ru 2.2-RELEASE FreeBSD 2.2-RELEASE #0: Thu Mar 27 15:11:35 MSK 1997 vova@folco.lms.ru:/usr/src/sys/compile/Folco i386 > > >Description: > I can't do sudo with password longer 8 chars > sudo v1.5.3 > > >How-To-Repeat: > setup your password longer 8 chars, include yourself to sudoers file > run sudo > > >Fix: > I fix it very stupid: > > --- ports/security/sudo/work/sudo.v1.5.3/compat.h~ Thu Nov 14 05:37:21 1996 > +++ ports/security/sudo/work/sudo.v1.5.3/compat.h Thu May 8 12:45:06 1997 > @@ -104,7 +104,7 @@ > # if (SHADOW_TYPE != SPW_NONE) > # define _PASSWD_LEN 24 > # else > -# define _PASSWD_LEN 8 > +# define _PASSWD_LEN 24 Hey! you just increased the value to 24 but didn't solve the problem - sudo shouldn't care, how long passwd I have, but cope with it without an overflow. Think of all the people who use sentences for their passwords. Sander > # endif /* SHADOW_TYPE != SPW_NONE */ > # endif /* PASS_MAX */ > # endif /* !_PASSWD_LEN */ > > > >Audit-Trail: > >Unformatted: > From owner-freebsd-ports Thu May 8 14:13:01 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA20034 for ports-outgoing; Thu, 8 May 1997 14:13:01 -0700 (PDT) Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id OAA20026 for ; Thu, 8 May 1997 14:12:51 -0700 (PDT) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <18123(8)>; Thu, 8 May 1997 14:02:11 PDT Received: from localhost by crevenia.parc.xerox.com with SMTP id <177487>; Thu, 8 May 1997 13:44:24 -0700 To: Tom Samplonius cc: ports@freebsd.org Subject: Re: ucd-snmp In-reply-to: Your message of "Fri, 18 Apr 97 11:00:49 PDT." Date: Thu, 8 May 1997 13:44:10 PDT From: Bill Fenner Message-Id: <97May8.134424pdt.177487@crevenia.parc.xerox.com> Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Yes, there's a fix in PR #ports/3414. http://www.freebsd.org/cgi/query-pr.cgi?pr=3414 Bill From owner-freebsd-ports Thu May 8 16:25:33 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA26129 for ports-outgoing; Thu, 8 May 1997 16:25:33 -0700 (PDT) Received: from bsd.fs.bauing.th-darmstadt.de (bsd.fs.bauing.th-darmstadt.de [130.83.63.241]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA26124 for ; Thu, 8 May 1997 16:25:30 -0700 (PDT) Received: from campa.panke.de (anonymous231.ppp.cs.tu-berlin.de [130.149.17.231]) by bsd.fs.bauing.th-darmstadt.de (8.8.5/8.8.5) with ESMTP id BAA05025; Fri, 9 May 1997 01:24:46 +0200 (MET DST) Received: (from wosch@localhost) by campa.panke.de (8.8.5/8.6.12) id BAA10192; Fri, 9 May 1997 01:16:51 +0200 (MET DST) To: jgrosch@sirius.com Cc: pgiffuni@fps.biblos.unal.edu.co (Pedro F. Giffuni), ports@FreeBSD.ORG Subject: Re: a new ports categorie for kdm ? References: <199705081721.KAA20182@superior.mooseriver.com> From: Wolfram Schneider Date: 09 May 1997 01:16:47 +0200 In-Reply-To: Josef Grosch's message of Thu, 8 May 1997 10:21:37 -0700 (PDT) Message-ID: Lines: 17 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Josef Grosch writes: > Pedro F. Giffuni said: > >I'm a bit more drastic. I would like a branch per GUI: > >-OpenLook & related apps. > >-Motif related apps. > >-kdm & related apps. > >-Other Window Managers (fvwm, fvwm95, mlwm, etc.). > I agree with Pedro. Creating branches for each window manager would clear > up some of the confusion (at least for me) as to which packages run under > which window manager and would clean up X11 which is on it's way to be > coming a general dumping ground. Well, we can create some new virtual categories, e.g. motif, kdm, windowmanager, kdm etc. -- Wolfram Schneider http://www.apfel.de/~wosch/ From owner-freebsd-ports Thu May 8 16:30:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA26362 for ports-outgoing; Thu, 8 May 1997 16:30:06 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA26353; Thu, 8 May 1997 16:30:03 -0700 (PDT) Resent-Date: Thu, 8 May 1997 16:30:03 -0700 (PDT) Resent-Message-Id: <199705082330.QAA26353@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, soil@quick.net Received: from jg.dyn.ml.org (soil@newport-1-11.quick.net [207.212.160.211]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA26077 for ; Thu, 8 May 1997 16:24:48 -0700 (PDT) Received: (from soil@localhost) by jg.dyn.ml.org (8.8.5/8.8.5) id QAA15451; Thu, 8 May 1997 16:24:44 -0700 (PDT) Message-Id: <199705082324.QAA15451@jg.dyn.ml.org> Date: Thu, 8 May 1997 16:24:44 -0700 (PDT) From: soil@quick.net Reply-To: soil@quick.net To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/3550: mail/fetchmail upgrade, 3.9.2 -> 3.9.3. Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3550 >Category: ports >Synopsis: mail/fetchmail upgrade, 3.9.2 -> 3.9.3. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu May 8 16:30:01 PDT 1997 >Last-Modified: >Originator: Josh Gilliam >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: ports-current >Description: pl 3.9.3 (Wed May 7 11:40:47 EDT 1997): * Fix for -I option from George Sipe. * Finally got error.c to compile under AIX, thanks to Dave Vinish. * Prevent header rewrite logic from appending mailserver name to blank To. * When header rewrite is on, hack Return-Path as well. >How-To-Repeat: >Fix: diff -ur /usr/ports/mail/fetchmail/Makefile fetchmail/Makefile --- /usr/ports/mail/fetchmail/Makefile Thu Apr 24 10:27:34 1997 +++ fetchmail/Makefile Thu May 8 16:04:18 1997 @@ -1,12 +1,12 @@ # New ports collection makefile for: fetchmail -# Version required: 3.9.2 +# Version required: 3.9.3 # Date created: 26 Oct 1996 # Whom: Ville Eerola # -# $Id: Makefile,v 1.27 1997/04/24 16:23:25 ache Exp $ +# $Id$ # -DISTNAME= fetchmail-3.9.2 +DISTNAME= fetchmail-3.9.3 CATEGORIES= mail MASTER_SITES= ftp://ftp.ccil.org/pub/esr/fetchmail/ diff -ur /usr/ports/mail/fetchmail/files/md5 fetchmail/files/md5 --- /usr/ports/mail/fetchmail/files/md5 Thu Apr 24 10:27:57 1997 +++ fetchmail/files/md5 Thu May 8 16:05:25 1997 @@ -1 +1 @@ -MD5 (fetchmail-3.9.2.tar.gz) = 03b28a56817e6f1d90e19d742085544b +MD5 (fetchmail-3.9.3.tar.gz) = ca82a573a04cc1af60a409a8f74a4ee6 >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu May 8 16:30:09 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA26381 for ports-outgoing; Thu, 8 May 1997 16:30:09 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA26366; Thu, 8 May 1997 16:30:06 -0700 (PDT) Resent-Date: Thu, 8 May 1997 16:30:06 -0700 (PDT) Resent-Message-Id: <199705082330.QAA26366@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, soil@quick.net Received: from jg.dyn.ml.org (soil@newport-1-11.quick.net [207.212.160.211]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA26077 for ; Thu, 8 May 1997 16:24:48 -0700 (PDT) Received: (from soil@localhost) by jg.dyn.ml.org (8.8.5/8.8.5) id QAA15451; Thu, 8 May 1997 16:24:44 -0700 (PDT) Message-Id: <199705082324.QAA15451@jg.dyn.ml.org> Date: Thu, 8 May 1997 16:24:44 -0700 (PDT) From: soil@quick.net Reply-To: soil@quick.net To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/3551: mail/fetchmail upgrade, 3.9.2 -> 3.9.3. Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3551 >Category: ports >Synopsis: mail/fetchmail upgrade, 3.9.2 -> 3.9.3. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu May 8 16:30:05 PDT 1997 >Last-Modified: >Originator: Josh Gilliam >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: ports-current >Description: pl 3.9.3 (Wed May 7 11:40:47 EDT 1997): * Fix for -I option from George Sipe. * Finally got error.c to compile under AIX, thanks to Dave Vinish. * Prevent header rewrite logic from appending mailserver name to blank To. * When header rewrite is on, hack Return-Path as well. >How-To-Repeat: >Fix: diff -ur /usr/ports/mail/fetchmail/Makefile fetchmail/Makefile --- /usr/ports/mail/fetchmail/Makefile Thu Apr 24 10:27:34 1997 +++ fetchmail/Makefile Thu May 8 16:04:18 1997 @@ -1,12 +1,12 @@ # New ports collection makefile for: fetchmail -# Version required: 3.9.2 +# Version required: 3.9.3 # Date created: 26 Oct 1996 # Whom: Ville Eerola # -# $Id: Makefile,v 1.27 1997/04/24 16:23:25 ache Exp $ +# $Id$ # -DISTNAME= fetchmail-3.9.2 +DISTNAME= fetchmail-3.9.3 CATEGORIES= mail MASTER_SITES= ftp://ftp.ccil.org/pub/esr/fetchmail/ diff -ur /usr/ports/mail/fetchmail/files/md5 fetchmail/files/md5 --- /usr/ports/mail/fetchmail/files/md5 Thu Apr 24 10:27:57 1997 +++ fetchmail/files/md5 Thu May 8 16:05:25 1997 @@ -1 +1 @@ -MD5 (fetchmail-3.9.2.tar.gz) = 03b28a56817e6f1d90e19d742085544b +MD5 (fetchmail-3.9.3.tar.gz) = ca82a573a04cc1af60a409a8f74a4ee6 >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu May 8 16:41:39 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA26853 for ports-outgoing; Thu, 8 May 1997 16:41:39 -0700 (PDT) Received: from house.key.net.au (root@house.key.net.au [203.35.4.2]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA26847; Thu, 8 May 1997 16:41:29 -0700 (PDT) Received: from localhost (andrew@localhost) by house.key.net.au (8.8.5/8.8.5) with SMTP id JAA25566; Fri, 9 May 1997 09:41:19 +1000 (EST) Date: Fri, 9 May 1997 09:41:19 +1000 (EST) From: Andrew To: Bill Fenner cc: fenner@hub.freebsd.org, freebsd-ports@hub.freebsd.org Subject: Re: ports/3538 In-Reply-To: <199705080454.VAA08366@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Wed, 7 May 1997, Bill Fenner wrote: > Duplicate for ports/3539. (Is hub duplicating email?) I think so...I got a response twice... Andrew From owner-freebsd-ports Thu May 8 18:56:42 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id SAA02533 for ports-outgoing; Thu, 8 May 1997 18:56:42 -0700 (PDT) Received: from jg.dyn.ml.org (soil@newport-1-11.quick.net [207.212.160.211]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id SAA02519; Thu, 8 May 1997 18:56:12 -0700 (PDT) Received: from localhost (soil@localhost) by jg.dyn.ml.org (8.8.5/8.8.5) with SMTP id SAA18412; Thu, 8 May 1997 18:56:09 -0700 (PDT) X-Authentication-Warning: jg.dyn.ml.org: soil owned process doing -bs Date: Thu, 8 May 1997 18:56:08 -0700 (PDT) From: Josh Gilliam X-Sender: soil@jg.dyn.ml.org To: FreeBSD-gnats-submit@FreeBSD.ORG cc: GNATS Management , freebsd-ports@hub.freebsd.org Subject: Re: ports/3551: mail/fetchmail upgrade, 3.9.2 -> 3.9.3. In-Reply-To: <199705082324.QAA15451@jg.dyn.ml.org> Message-ID: X-IRC: soil X-Operating-System: FreeBSD 3.0-CURRENT i386 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk In <199705082324.QAA15451@jg.dyn.ml.org>, soil@quick.net wrote: > >Number: 3551 > >Category: ports > >Synopsis: mail/fetchmail upgrade, 3.9.2 -> 3.9.3. This is a duplicate of PR 3550. Please close. -- Josh Gilliam Orange, California, USA soil@quick.net From owner-freebsd-ports Thu May 8 19:00:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA02750 for ports-outgoing; Thu, 8 May 1997 19:00:05 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA02695; Thu, 8 May 1997 19:00:02 -0700 (PDT) Date: Thu, 8 May 1997 19:00:02 -0700 (PDT) Message-Id: <199705090200.TAA02695@hub.freebsd.org> To: freebsd-ports Cc: From: Josh Gilliam Subject: Re: ports/3551: mail/fetchmail upgrade, 3.9.2 -> 3.9.3. Reply-To: Josh Gilliam Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR ports/3551; it has been noted by GNATS. From: Josh Gilliam To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: GNATS Management , freebsd-ports@hub.freebsd.org Subject: Re: ports/3551: mail/fetchmail upgrade, 3.9.2 -> 3.9.3. Date: Thu, 8 May 1997 18:56:08 -0700 (PDT) In <199705082324.QAA15451@jg.dyn.ml.org>, soil@quick.net wrote: > >Number: 3551 > >Category: ports > >Synopsis: mail/fetchmail upgrade, 3.9.2 -> 3.9.3. This is a duplicate of PR 3550. Please close. -- Josh Gilliam Orange, California, USA soil@quick.net From owner-freebsd-ports Thu May 8 19:00:08 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA02787 for ports-outgoing; Thu, 8 May 1997 19:00:08 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA02736; Thu, 8 May 1997 19:00:04 -0700 (PDT) Date: Thu, 8 May 1997 19:00:04 -0700 (PDT) Message-Id: <199705090200.TAA02736@hub.freebsd.org> To: freebsd-ports Cc: From: Josh Gilliam Subject: Re: ports/3551: mail/fetchmail upgrade, 3.9.2 -> 3.9.3. Reply-To: Josh Gilliam Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR ports/3551; it has been noted by GNATS. From: Josh Gilliam To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: GNATS Management , freebsd-ports@hub.freebsd.org Subject: Re: ports/3551: mail/fetchmail upgrade, 3.9.2 -> 3.9.3. Date: Thu, 8 May 1997 18:56:08 -0700 (PDT) In <199705082324.QAA15451@jg.dyn.ml.org>, soil@quick.net wrote: > >Number: 3551 > >Category: ports > >Synopsis: mail/fetchmail upgrade, 3.9.2 -> 3.9.3. This is a duplicate of PR 3550. Please close. -- Josh Gilliam Orange, California, USA soil@quick.net From owner-freebsd-ports Thu May 8 21:30:24 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id VAA09582 for ports-outgoing; Thu, 8 May 1997 21:30:24 -0700 (PDT) Received: (from jkh@localhost) by hub.freebsd.org (8.8.5/8.8.5) id VAA09552; Thu, 8 May 1997 21:30:13 -0700 (PDT) Date: Thu, 8 May 1997 21:30:13 -0700 (PDT) From: "Jordan K. Hubbard" Message-Id: <199705090430.VAA09552@hub.freebsd.org> To: soil@quick.net, jkh, freebsd-ports Subject: Re: ports/3551 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: mail/fetchmail upgrade, 3.9.2 -> 3.9.3. State-Changed-From-To: open-closed State-Changed-By: jkh State-Changed-When: Thu May 8 21:29:57 PDT 1997 State-Changed-Why: Duplicate closed per author request. From owner-freebsd-ports Thu May 8 23:21:23 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id XAA14184 for ports-outgoing; Thu, 8 May 1997 23:21:23 -0700 (PDT) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id XAA14179 for ; Thu, 8 May 1997 23:21:20 -0700 (PDT) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.5/8.8.5) with ESMTP id IAA19999; Fri, 9 May 1997 08:21:12 +0200 (CEST) Received: (from thomas@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.5/8.8.5) id IAA15081; Fri, 9 May 1997 08:21:11 +0200 (CEST) To: "Eric L. Hernes" Cc: asami@vader.cs.berkeley.edu (Satoshi Asami), andreas@klemm.gtn.com, ports@FreeBSD.ORG Subject: Re: a new ports categorie for kdm ? References: <199705081317.IAA28897@jake.lodgenet.com> From: Thomas Gellekum Date: 09 May 1997 08:21:10 +0200 In-Reply-To: "Eric L. Hernes"'s message of Thu, 08 May 1997 08:17:39 -0500 Message-ID: <87vi4t9ne1.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 9 X-Mailer: Gnus v5.4.37/XEmacs 19.15 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk "Eric L. Hernes" writes: > 1 -- kde-support libraries, libjpeg, and libgif. we already have > libjpeg, I made a port of the original libgif that I can commit. > this one won't be necessary. Already there. See graphics/giflib. tg From owner-freebsd-ports Fri May 9 00:12:10 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id AAA17087 for ports-outgoing; Fri, 9 May 1997 00:12:10 -0700 (PDT) Received: from news1.gtn.com (news1.gtn.com [194.77.0.15]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id AAA17080 for ; Fri, 9 May 1997 00:12:08 -0700 (PDT) Received: (from uucp@localhost) by news1.gtn.com (8.7.2/8.7.2) with UUCP id JAA25946; Fri, 9 May 1997 09:00:06 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.8.5/8.8.2) id IAA05905; Fri, 9 May 1997 08:44:41 +0200 (CEST) Message-ID: <19970509084440.36691@klemm.gtn.com> Date: Fri, 9 May 1997 08:44:40 +0200 From: Andreas Klemm To: "Eric L. Hernes" Cc: Satoshi Asami , ports@FreeBSD.ORG Subject: Re: a new ports categorie for kdm ? References: <199705080923.CAA18062@silvia.HIP.Berkeley.EDU> <199705081317.IAA28897@jake.lodgenet.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary=AhhlLboLdkugWU4S X-Mailer: Mutt 0.69 In-Reply-To: <199705081317.IAA28897@jake.lodgenet.com>; from Eric L. Hernes on Thu, May 08, 1997 at 08:17:39AM -0500 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk --AhhlLboLdkugWU4S Content-Type: text/plain; charset=us-ascii > > Yea, I took a look at this last week, but it looked pretty buggy > from here. I have a port ready for commit as well... -rw------- 1 andreas wiz 188416 May 9 08:23 kfm.core -rw------- 1 andreas wiz 204800 May 9 08:23 kpanel.core -rw------- 1 andreas wiz 188416 May 9 08:23 kwm.core But unfortunately the programs are dumping core like hell :-/ > 1 -- kde-support libraries, libjpeg, and libgif. we already have > libjpeg, I made a port of the original libgif that I can commit. > this one won't be necessary. If you place kde in a place like /usr/local/kde, then gnu configure doesn't find those libs anymore. Therefore I had to use the kde support package. If you don't choose a prefix /usr/local/kde, then kde will create several additional subdirs in /usr/local, that make your /usr/local directory look very ugly. > So I started on three ports, graphics/libgif, x11/kde-libs > x11/kde-clients. With what results ? Didn't you try the port ? xinitrc: [...] /usr/local/kde/bin/kwm & /usr/local/kde/bin/kfm & /usr/local/kde/bin/kpanel Would be interesting for me, if your programs are dumping core as well.... I'll attach my work ... Maybe you can compare / test what I have done on a different system that FreeBSD-current ... Maybe you can send me your's, then I'll have a look, if it works better. Andreas /// -- Andreas Klemm | klemm.gtn.com - powered by Symmetric MultiProcessor FreeBSD http://www.freebsd.org/~fsmp/SMP/SMP.html http://www.freebsd.org/~fsmp/SMP/benches.html --AhhlLboLdkugWU4S Content-Type: application/x-gunzip Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="kde.port.tar.gz" H4sICIvHcjMCA2tkZS5wb3J0LnRhcgDtXXtz2kgSz7/mU0xdUlfJ2oDe2L7zlgnGDuv4UUAu 3qtUUYM0iDF6RQ8/snXf/XokBAKNgNzZeDfRuAzSr3semlb39KhHw8Qg9VfPnJAiNFQVvUJI bKhC9jtNAkKaLCuy0FBUDciCpDVeIfXVFlIUhNhH6BV2DJ/goJDvnn579QOmCcj/Ak/IiFrk ueoQBUFTlGL5i5I6lX9DlEU4FsVGQ32FhFL+z556n96fdLq7RwhuBOx5QSULWHS4CASR57l+ WKnUqKNbkUHQP4eBUWNYLYiGBvVr9uTXyqsy/ZX0fyr6ZxsHNrb/qiKrkhDrvyiU9n/b8n+u cWCN/Qfzr83kL2oNQGRFE0r7v430Gl2Se8QMeIB017KIHlLXQfb0VkAj1z/cSceG1+hfxA8Y 3SdfI+oT43BHqB3UBAlIJzgkSIc+DBm80x9H6AI/IrQP7tyhuH8oy6jV7vWReHDQAPbPY9cG tp1m0u/o3CK2jf45FcPxhJ3WzNCp6a79a+U15HjTMd7AQeWk0+tfNi/aR2m7qtM2tJr99tlV t9PuHe08iCIbsCoXzV6/3R30On2GjkLvsF6HzxrQaq5v1r1oyO7/ukGD0KfDiF19PTS/1Svt m3632eoPep9Ob452aoBVoLTOZR/+292jnbSlpz4h73sntavuWaXysfN+cNK+bl+eQG0mHX35 UpPgXz5888f1Vbffg5H0P3XTx96Y6kF9PqKiL5WdnVuPmMCswb+4UQY41V2fAL8A//sLeaAD 6tMhPOWN6EacX0PWANbyHNtXGPo/d8973dbRzs6bP+AwJqX3x6dee3B20TwH0TySoPKh2Ru0 ri5PO2efulNodjpods96u0fVqufDjfZwBDV126edm7gwrn9ROhbPbf+Zwj+HF7D5/E8WBJGN /1KjoZXj/8vI3zaeut/Xzf9QQ8nIX4zHf6Wc/20lXZyo6O3iOMqGunfoCJEGFjR5JOuKfqAe 6AQLElYPBJik74+GiiKX1vgH038Ph/r4GUaAze2/IgoNZv9lSKX9fyn5x99VjLdl/xVBS+2/ pKlM/qoglvZ/K6laraLJyK7jKHRZT4Q13fNgZkTNhRmcfChKhzBNjydvu7u7+TzL7PKh1EjY j49RVdzT0K64B87d8XEFvZ5591/ZrMsxa+NfF1A7MIfuQ4xWdl/TkUFGaDCYzrQGA4alvMFj UA8fPRIw7t3XxDHoqLKbLc2AiaoTLlXBskHbE/gnHslW6P9wa/ovzfRf1gSx1P9t679BxsTy 6jZ2irRfEg+FrPYv5sgzK1JG94VY+YU9cO2Z9i+oYWhQd1k1ZyZh95mUP3IoVMyxCPeYxryl /oP+61vT/0Yj1X9FlpLxX5JL/d+2/gcE+/qYKXUA34WmQD1UlbwpyGdeztc4VJS5VZCYUZBS mzBXQwouBQjCzhmF0lBsWf+NLem/KMhp/F9WG2oy/itKqf9b0/+7cBb7q1GHp/SKcCjIGaVf zJFnBkd/pumystdAu/EnU/Wzbrt9Prh6/9tRIv7Xpj8hlhvWXFCyRDFRpRpHXwYn7dPOZbuH jlD1BHQaPvv93/vN90df/lYnoV4Pw8cQD7/8DQjX3c5lf3DduW6jN2+TOuIy3gHtonkz6LZP u+3eh8F1u9u5OjmCBlZPTpvnbSD0rj51W1BL9YQFMG5aV9e/N7vtJpy3rj5edWEKkm8NFNZO WvSC7YK/XrfFGuQ/3MEsDOmuDQbYgCMU6GAHwTtDUWh78PUQkDBiBwYZRiZ8+yRwI18Hk6gj G4PYW18qaCdtI5T7rnzA91P7f2RL9h+p4uz5nyCLjWT+V9r/rdr/meXIW3/lUBAPZW3R+s/4 86wwgs9tf0PbOwDjH38x65+kP8DSUCdEnul7YL1MEnrUePvuHwx29dB6K+yhfueq1bs+617v obf6GGT0y7u/M37gqu6AMWPHLMvu7ETYE+IidMsNyFvXI85bMMQOtvfQ1eBz9+ry4+97SHiX LQAtlIDSIpL0H2Zgk1T/BVGHhsgdoZD4NjipCLzPSA8jn+zs/FKv/ID6P9qW/muauPT8H+Z/ Yqn/W9P/xFcI8B3xVzuCoN+NmX7HpqAgKyeXOrcKB8whPJj6gxdXLTABx/AFJ53L1unH5lns Y3Vq6Bhb1mA68QqOGVSroNbNTcpznB4fg3OV5mWe1Yfmv9rTtSeDD5Xqx5NZjunhcVK2RYc+ 9mlc+McaqlrTJTXJUUTh+2sIHzfkIf4SxcruExYGn7r/6IXxQ7FsQh0H7kvLWkRfP/2j6gX9 n5jPsgZ08/ifpohavP5DaUhl/G/r9h/kf/2x0+s/cR1z+x+Lekn+oiYqykz+kqzE638Ebcv2 33fdcBXfDyz/WPhNz7Oojtn6x6B+fjZ2g/COknu2UNJyJhU+32RMHgwarmHyYHaZ5znDNvga E5s6MAUtIIInUkQKSejTfMYPxPLyoGuTHHh+elE/c6J+s1tE+nfnmkvqkhFMnsfohAST0M1X 13sMQmLXW2D665N7u4g+MWjgWfixkD5ynRCcbGwSP8fT93EwzqGfQmrREEag+qfLzs0K8oSA 2HZXMYwoePcr6OzmmBNAUg6xsvxD6tSxbtHZyWSIHYddSRBkMAs7zIdwFmEdW/r8LHnCnDlP +m0OxBczP2VNz5xZmEk/W/zIzh5DI4kTZpB5t89BM1WIOZTc+/NzmBRY4AfNAQsHy9drJXf7 AuTqk+yZ6UaZQmP1mJ/GqpQ9hV7PnmZprvVouksd6z367iLiQ/WLSKJZ8/PFq77LVHFvZ4+X +jFyPDy9Mt2kVQYxMYJsyEMOTaIHCew6I2rWa8nF+cl9YLh6/UP/4mPdIHdwn41D21rE42K5 eAhXnMfjWyz5rJl0VEzkZE3uRy4luTPrQ7hyE/RnBYvuWq4f6PYqHpOAwmBrFcvMiKzgYfrF PHQeT2IH8j2Q4JwMsV3g4TYfHTD7UEBKRF1AZDOJaciGSx+79wUUmvjOBVSHFOXzxpSfaW4Q Fo1yvtsKWTnFzkxK5rAqbswpbcwpb8ypbMypbsypbcq5ms+BSROnw+cMnk/uVjKELk/Vpx4M p+7EM+EQwETLnJJi25x6O5xsiY3jUaa+DIcSwWw6X1PcWwUwp5A7bnPuwUP50Lw8a/cKqMx1 KaTo7kpikV4DnTnaNnEiDjmgjmmRgUcfwMbnru9+DA5lppdmBqLehH6ld4tu5Jza+kCwQfwi am8aBeFSz+iogPCNenwKayuf0rHBFBRU9JtHTD5l9lSFT4Wbmk8oLPBqeEv0kE+7Ngqu9xq0 CMYR6hVk7GO/gKBbBQQYr4sIRZXQUUHzcu7wnPQZ3/EJN0O7gOAVEP5dJHPjjmYJ0ydW9VQP FkDq6UtIPHYuI4k3NZhzW3SYjL6phxSfTP2jhGjXp1MS6EMbhv4Qmnbav0afugt35Apm9spf Hy5pM/Zr3zV9bG/GvHEjPn/+XNTi6ZUbSR4eCQ4zXQL/rHPxAsAMyD0Xs3hg4NaEmjojeOw9 vHh29eDZi2g8mSFhzVsm6MbAdiMYFR44lMgppPlgZPMwi24UwMbMai7jOX7m4HHQB6LzUB7v yHI977HoyqbUwqsbuRYYZQ4eenmQSSKPUmZPObAzcvPohDxywNib5cDMvbQJn+In038OMb5h Bga3yGSCnMMtHDk6pywbP1CbfuM0AdySIorr0NDl9KlDwHZjj8h5EouS5W+aGM3xsrmbe88n RBypeT54QjwZ+0R/1C3OFQTscQoXHYCheeSRHq0oyONxkM7BnA4PzW8c0HWtIfbjedtqakE7 ZixuGPKUdpG+phAwZSHY/mA9x5qCYLJM3WhFOXxxZqlramBWRHe9DTg2KSgK1zJsUIyHg5Bs wLKuqAfdwnb8DHMVEw1XU9fUwnyIxFSu5rExtVZzsHntSga+Umc5YoXdgGXtNTmUZx8X6esK cf177BtrGdYUEz+pKaZyjXxKpQbBxVT23G41dU3T4hntSuoGBcQsAxhL17Ct5PC442iWuqYl 8Zx3GOnM+ylmYhP0ldR1taQsa66Gsa3k8Inl4rX0Na3xqTkOb6NgxRUnL0etJq+pJaSr7jJG XVeA660krskeeatoazKzBxLgo+2u59isoOp6js0KWsuwQTHf3FUDfcpRVFA8X83DPIsQOROH O05HDnsIkYPvsWV54O354MfpBDuCWLv1zEKe+GsNzz1MzPg8sUs4sChPDe7vkxGpXGX514n/ n7R7re6zxf8L1n/I6fovVVCS/Z9ksVz/tS35o+njFIQzUftSaX9O/W9dXVy0L/svp/8Ntv+n rKpSqf+l/pdpS/rPNn/7c+z/qYjx/p+CWK7/3Lb8X2r/T1GVZ/KXGlqy/1f5/vdW0qb7f8Zb QRfu/ym82P6frF3VaRuy+3+mW2b++JuA/k/bdcbi/N7tOo92CrbrnL6F0d4FDrPcvPOvav9f fv9PSVQUKdn/Uy3H/5eR/0vu/5nKvxz/t5XS/T8z4+hs/09BG+oH2tDAWD8YKbqoSRJRZFE3 tAYeaVJp0H8w/X/59/8kWZUb8ft/Wrn/54vI/3nf/+PKXxJFKX3/T1Qbye8/COXvP2xN/umq 03PuetUpauAQL1Gw7QXk6xKos4V2i5BBwzF7BWIR9PFyTTDXtHEYLKHx2r88xF6u4MK+zYHd 4e3yElvsecsQzPxC11lG4zd1DMvk4qbvRrlyoK+IRyc8OBxaubW+cCUGxZabq4FC17OVCLnO m0AnM7FwYI6cYC5tWCCsZZitwh/iXNk2DXIrlNMNWRdRL3mjbxmlDzbOVea5XrLqfwlmS4hJ sCz0SUDYo4g86mEfszWOywSLcnopYEt0lrEQh1HAuewQD/UwJ5xpPD8Pe/fUMEmuhaFPSBwN X8Ij38qs42ari5O9AZbWIU9Bi4vGK5H3lygRzRUBkMXBMtmDMfZJnfh+ZrXoFOOseksoC8tq E4gtzAyo6ZRR/h9m/H+R+L+qzv0/KY7/yeX4v50027OEPelF5ydt9PYcTF76bjtqO3fUdx0w 3WG5H9xPoP8vEv/P6r8cx3/Ucv/PUv/LtDX9nwaUnmcJwHfE/6VG8vtfilbG/19C/s+yBGCd /W+k679UtgO0DGRFEsrn/1tJm8b/019+/p4lACcuYuH/C0zjoD8S1UNJO5QP4nUAT7cEYNq0 P9sqAH7gPe3HP8tPZS7p/7OEgDd//q9Kspj4f5pS2v8XsP/PEgJeH/9tLMlfgYlAaf+3kdL4 76IRTUPAiqINZUPGqra/b4jDfWWEdVU5kBv7ikZGglHOCH4w/X+WEPB37P8qaPHv/8iSIpT2 /4Xk/+Qh4LX+vyTO5K9qsf8Pf6X935b8Z6FbI4kILQV0DbYkdQk0CfRaDqSjwZi915qHLTpc Qm/1cTQa5UBeBPrWyEUCbw1ebl7zb6cHy7BN7OAxyKGuT/RRrgHQATQXbmYo57rukvnRYrQP +mAxTMcAK4cEbk2qyVk07nucQ6w8BHm1mlj5//X/yR8Br3//S53b//j5jyKLjVL/t6T/iMyf 8aJ0ZXm8QLx0j35G/+/JQ8Dfp/9s/ZciaGX8p9T/MpWpTGUqU5nKVKYylalMZSrTk6X/Alja F4IAoAAA --AhhlLboLdkugWU4S-- From owner-freebsd-ports Fri May 9 01:04:25 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id BAA19581 for ports-outgoing; Fri, 9 May 1997 01:04:25 -0700 (PDT) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id BAA19571 for ; Fri, 9 May 1997 01:04:22 -0700 (PDT) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.5/8.8.5) with ESMTP id KAA20248; Fri, 9 May 1997 10:02:10 +0200 (CEST) Received: (from thomas@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.5/8.8.5) id KAA16719; Fri, 9 May 1997 10:02:09 +0200 (CEST) To: Andreas Klemm Cc: "Eric L. Hernes" , Satoshi Asami , ports@FreeBSD.ORG Subject: Re: a new ports categorie for kdm ? References: <199705080923.CAA18062@silvia.HIP.Berkeley.EDU> <199705081317.IAA28897@jake.lodgenet.com> <19970509084440.36691@klemm.gtn.com> From: Thomas Gellekum Date: 09 May 1997 10:02:08 +0200 In-Reply-To: Andreas Klemm's message of Fri, 9 May 1997 08:44:40 +0200 Message-ID: <87ohal9ipr.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 23 X-Mailer: Gnus v5.4.37/XEmacs 19.15 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Andreas Klemm writes: > --AhhlLboLdkugWU4S > Content-Type: text/plain; charset=us-ascii > > > > > Yea, I took a look at this last week, but it looked pretty buggy > > from here. > > I have a port ready for commit as well... Fine. Saves me some work. :-) > If you place kde in a place like /usr/local/kde, then gnu > configure doesn't find those libs anymore. Therefore I had to > use the kde support package. Ultimately, I'd like to have all this stuff neatly integrated in the ${X11BASE} hierarchy. It's an X11 package, so it should use the tree layout X11 already provides. tg From owner-freebsd-ports Fri May 9 03:32:10 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA25665 for ports-outgoing; Fri, 9 May 1997 03:32:10 -0700 (PDT) Received: (from jmg@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA25646; Fri, 9 May 1997 03:32:02 -0700 (PDT) Date: Fri, 9 May 1997 03:32:02 -0700 (PDT) From: John-Mark Gurney Message-Id: <199705091032.DAA25646@hub.freebsd.org> To: vova@folco.lms.ru, jmg, freebsd-ports Subject: Re: ports/3541 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: sudo package don't accept passwords longer then 8 characters State-Changed-From-To: open-closed State-Changed-By: jmg State-Changed-When: Fri May 9 03:31:43 PDT 1997 State-Changed-Why: duplicate of 3540 From owner-freebsd-ports Fri May 9 03:44:55 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA26397 for ports-outgoing; Fri, 9 May 1997 03:44:55 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id DAA26379; Fri, 9 May 1997 03:44:46 -0700 (PDT) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id DAA05522; Fri, 9 May 1997 03:44:26 -0700 (PDT) Date: Fri, 9 May 1997 03:44:26 -0700 (PDT) Message-Id: <199705091044.DAA05522@freefall.freebsd.org> To: soil@quick.net, ache@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/3550 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: mail/fetchmail upgrade, 3.9.2 -> 3.9.3. State-Changed-From-To: open-closed State-Changed-By: ache State-Changed-When: ΠΤ 9 ΝΑΚ 1997 03:43:51 PDT State-Changed-Why: Upgrade done From owner-freebsd-ports Fri May 9 06:46:46 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA03316 for ports-outgoing; Fri, 9 May 1997 06:46:46 -0700 (PDT) Received: from agora.rdrop.com (root@agora.rdrop.com [199.2.210.241]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id GAA03306 for ; Fri, 9 May 1997 06:46:43 -0700 (PDT) Received: from bacall.lodgenet.com (bacall.lodgenet.com [205.138.147.242]) by agora.rdrop.com (8.8.5/8.8.5) with SMTP id FAA04786 for ; Fri, 9 May 1997 05:24:14 -0700 (PDT) Received: (from mail@localhost) by bacall.lodgenet.com (8.6.12/8.6.12) id HAA00499; Fri, 9 May 1997 07:10:43 -0500 Received: from garbo.lodgenet.com(192.168.1.252) by bacall via smap (V1.3) id sma000497; Fri May 9 07:10:32 1997 Received: from jake.lodgenet.com (jake.lodgenet.com [10.0.11.30]) by garbo.lodgenet.com (8.6.12/8.6.9) with ESMTP id HAA00916; Fri, 9 May 1997 07:10:33 -0500 Received: from jake.lodgenet.com (localhost.lodgenet.com [127.0.0.1]) by jake.lodgenet.com (8.8.5/8.6.12) with ESMTP id HAA10779; Fri, 9 May 1997 07:09:48 -0500 (CDT) Message-Id: <199705091209.HAA10779@jake.lodgenet.com> X-Mailer: exmh version 2.0gamma 1/27/96 To: Andreas Klemm cc: "Eric L. Hernes" , Satoshi Asami , ports@FreeBSD.org Subject: Re: a new ports categorie for kdm ? In-reply-to: Your message of "Fri, 09 May 1997 08:44:40 +0200." <19970509084440.36691@klemm.gtn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 09 May 1997 07:09:48 -0500 From: "Eric L. Hernes" Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Andreas Klemm writes: > >I have a port ready for commit as well... > >-rw------- 1 andreas wiz 188416 May 9 08:23 kfm.core >-rw------- 1 andreas wiz 204800 May 9 08:23 kpanel.core >-rw------- 1 andreas wiz 188416 May 9 08:23 kwm.core > >But unfortunately the programs are dumping core like hell :-/ I don't think I got kwm to core, but I didn't give it too much of a chance after the rest did :( > >> 1 -- kde-support libraries, libjpeg, and libgif. we already have >> libjpeg, I made a port of the original libgif that I can commit. >> this one won't be necessary. > >If you place kde in a place like /usr/local/kde, then gnu >configure doesn't find those libs anymore. Therefore I had to >use the kde support package. Well, I patched the hell out of configure to find 'em. I already had to patch it to find libqt. > >If you don't choose a prefix /usr/local/kde, then kde will create >several additional subdirs in /usr/local, that make your /usr/local >directory look very ugly. > >> So I started on three ports, graphics/libgif, x11/kde-libs >> x11/kde-clients. > >With what results ? Didn't you try the port ? Yea, 'bout the same as you. It's a really good core generator. I had the libraries all packaged up pretty well, but the acid test failed. I ran out of time trying to figure out the core's it could be buggy programs, or buggy libraries, or both... :( I think the terminal emulator and the wm were amongst the few that didn't dump. > >xinitrc: >[...] >/usr/local/kde/bin/kwm & >/usr/local/kde/bin/kfm & >/usr/local/kde/bin/kpanel Actually I fired up an XNest and ran everything in it, manually. Sometimes that kind of bastardized installation will cause core's too. >I'll attach my work ... Maybe you can compare / test what I have >done on a different system that FreeBSD-current ... Ok, I'm smp-current here ;-) > >Maybe you can send me your's, then I'll have a look, if it works >better. Ok, I'll send it separately. > > Andreas /// > >-- >Andreas Klemm | klemm.gtn.com - powered by > Symmetric MultiProcessor FreeBSD > http://www.freebsd.org/~fsmp/SMP/SMP.html > http://www.freebsd.org/~fsmp/SMP/benches.html > eric. -- erich@rrnet.com http://rrnet.com/~erich erich@freebsd.org http://www.freebsd.org/~erich erich@lodgenet.com From owner-freebsd-ports Fri May 9 06:58:23 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA04345 for ports-outgoing; Fri, 9 May 1997 06:58:23 -0700 (PDT) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id GAA04339 for ; Fri, 9 May 1997 06:58:20 -0700 (PDT) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.5/8.8.5) with ESMTP id PAA21128 for ; Fri, 9 May 1997 15:58:18 +0200 (CEST) Received: (from thomas@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.5/8.8.5) id PAA19425; Fri, 9 May 1997 15:58:17 +0200 (CEST) To: ports@freebsd.org Subject: example/ or examples? From: Thomas Gellekum Date: 09 May 1997 15:58:16 +0200 Message-ID: <87g1vwagsn.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 7 X-Mailer: Gnus v5.4.37/XEmacs 19.15 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Moin, I just noticed that we have both ${PREFIX}/share/example (e.g. for afio) and .../examples (amanda, kermit). Could we agree on one name? My vote is for `examples', in symmetry with /usr/share/. tg From owner-freebsd-ports Fri May 9 12:35:34 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id MAA24950 for ports-outgoing; Fri, 9 May 1997 12:35:34 -0700 (PDT) Received: from garbo.lodgenet.com ([204.124.122.252]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id MAA24945 for ; Fri, 9 May 1997 12:35:32 -0700 (PDT) Received: from jake.lodgenet.com (jake.lodgenet.com [10.0.11.30]) by garbo.lodgenet.com (8.6.12/8.6.9) with ESMTP id HAA00242; Fri, 9 May 1997 07:23:01 -0500 Received: from jake.lodgenet.com (localhost.lodgenet.com [127.0.0.1]) by jake.lodgenet.com (8.8.5/8.6.12) with ESMTP id HAA10953; Fri, 9 May 1997 07:22:17 -0500 (CDT) Message-Id: <199705091222.HAA10953@jake.lodgenet.com> X-Mailer: exmh version 2.0gamma 1/27/96 To: Thomas Gellekum cc: Andreas Klemm , "Eric L. Hernes" , Satoshi Asami , ports@FreeBSD.ORG Subject: Re: a new ports categorie for kdm ? In-reply-to: Your message of "09 May 1997 10:02:08 +0200." <87ohal9ipr.fsf@ghpc6.ihf.rwth-aachen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 09 May 1997 07:22:17 -0500 From: "Eric L. Hernes" Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Thomas Gellekum writes: >Andreas Klemm writes: > >> If you place kde in a place like /usr/local/kde, then gnu >> configure doesn't find those libs anymore. Therefore I had to >> use the kde support package. > >Ultimately, I'd like to have all this stuff neatly integrated in the >${X11BASE} hierarchy. It's an X11 package, so it should use the >tree layout X11 already provides. Yup, I agree, linux app programmers are really good about wanting to stuff a bunch of full-fledged X11-mega-apps in /usr/local/, not even /usr/local/X11. Anyway. my port sets `USE_X11=yes'. > >tg > eric. -- erich@rrnet.com http://rrnet.com/~erich erich@freebsd.org http://www.freebsd.org/~erich erich@lodgenet.com From owner-freebsd-ports Fri May 9 16:24:15 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA05372 for ports-outgoing; Fri, 9 May 1997 16:24:15 -0700 (PDT) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA05367 for ; Fri, 9 May 1997 16:24:12 -0700 (PDT) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.5/8.7.3) id QAA10104; Fri, 9 May 1997 16:24:09 -0700 (PDT) Date: Fri, 9 May 1997 16:24:09 -0700 (PDT) Message-Id: <199705092324.QAA10104@vader.cs.berkeley.edu> To: tg@ihf.rwth-aachen.de CC: ports@FreeBSD.org In-reply-to: <87g1vwagsn.fsf@ghpc6.ihf.rwth-aachen.de> (message from Thomas Gellekum on 09 May 1997 15:58:16 +0200) Subject: Re: example/ or examples? From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk * I just noticed that we have both ${PREFIX}/share/example (e.g. for * afio) and .../examples (amanda, kermit). Could we agree on one name? * My vote is for `examples', in symmetry with /usr/share/. There is no need to discuss: "examples" is correct, according to BSD.local.dist. :) Satoshi From owner-freebsd-ports Fri May 9 16:32:12 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA05782 for ports-outgoing; Fri, 9 May 1997 16:32:12 -0700 (PDT) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA05776 for ; Fri, 9 May 1997 16:32:11 -0700 (PDT) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.5/8.7.3) id QAA10119; Fri, 9 May 1997 16:32:06 -0700 (PDT) Date: Fri, 9 May 1997 16:32:06 -0700 (PDT) Message-Id: <199705092332.QAA10119@vader.cs.berkeley.edu> To: andreas@klemm.gtn.com CC: ports@FreeBSD.ORG In-reply-to: <19970508123217.19898@klemm.gtn.com> (message from Andreas Klemm on Thu, 8 May 1997 12:32:17 +0200) Subject: Re: a new ports categorie for kdm ? From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * From: Andreas Klemm * > I took a look at www.kde.org, * * Please do that ;-) I said "took a look". That means I already did. :) * I think it would be a good advantage, to be able to jump into * a directory /usr/ports/kdm and to do a make all install clean, * to get a complete kde _Environment_. No problem, just make a port /usr/ports/x11/kde with this Makefile: === DISTNAME= kde-1.0 : LIB_DEPENDS= RUN_DEPENDS= === :) Satoshi From owner-freebsd-ports Fri May 9 16:34:20 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA05829 for ports-outgoing; Fri, 9 May 1997 16:34:20 -0700 (PDT) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA05823 for ; Fri, 9 May 1997 16:34:18 -0700 (PDT) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.5/8.7.3) id QAA10124; Fri, 9 May 1997 16:34:09 -0700 (PDT) Date: Fri, 9 May 1997 16:34:09 -0700 (PDT) Message-Id: <199705092334.QAA10124@vader.cs.berkeley.edu> To: erich@lodgenet.com CC: tg@ihf.rwth-aachen.de, andreas@klemm.gtn.com, erich@lodgenet.com, ports@FreeBSD.ORG In-reply-to: <199705091222.HAA10953@jake.lodgenet.com> (erich@lodgenet.com) Subject: Re: a new ports categorie for kdm ? From: asami@vader.cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * >Ultimately, I'd like to have all this stuff neatly integrated in the * >${X11BASE} hierarchy. It's an X11 package, so it should use the * >tree layout X11 already provides. * * Yup, I agree, linux app programmers are really good about wanting * to stuff a bunch of full-fledged X11-mega-apps in /usr/local/, not * even /usr/local/X11. Anyway. my port sets `USE_X11=yes'. I agree too. :) Satoshi From owner-freebsd-ports Fri May 9 20:10:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id UAA13534 for ports-outgoing; Fri, 9 May 1997 20:10:04 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id UAA13524; Fri, 9 May 1997 20:10:01 -0700 (PDT) Resent-Date: Fri, 9 May 1997 20:10:01 -0700 (PDT) Resent-Message-Id: <199705100310.UAA13524@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, gjm11@dpmms.cam.ac.uk Received: from mauve.csi.cam.ac.uk (exim@mauve.csi.cam.ac.uk [131.111.8.38]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id UAA13402 for ; Fri, 9 May 1997 20:05:17 -0700 (PDT) Received: from g.pet.cam.ac.uk [131.111.209.233] by mauve.csi.cam.ac.uk with smtp (Exim 1.62 #1) id 0wQ2TC-0004Zb-00; Sat, 10 May 1997 04:05:14 +0100 Received: from gjm11 by g.pet.cam.ac.uk with local (Exim 1.59 #1) id 0wQ2TB-0001rj-00; Sat, 10 May 1997 04:05:13 +0100 Message-Id: Date: Sat, 10 May 1997 04:05:13 +0100 From: gjm11@dpmms.cam.ac.uk Reply-To: gjm11@dpmms.cam.ac.uk To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/3572: virtualpaper-1.4 port attempts to call mknod() Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3572 >Category: ports >Synopsis: virtualpaper-1.4 port attempts to call mknod() >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri May 9 20:10:00 PDT 1997 >Last-Modified: >Originator: Gareth McCaughan >Organization: all too little >Release: FreeBSD 2.2-RELEASE i386 >Environment: Bog-standard FreeBSD 2.2 system >Description: The virtualpaper-1.4 port contains the following, in buildlectern/src/POSIX/OSUtilsPosix.m3 : IF Unix.mknod(M3toC.TtoS(p), Mode, 0) < 0 THEN OSErrorPosix.Raise(); END; Unfortunately, only root is supposed to call mknod(), so this is not a good idea. Calling mkfifo() instead (this is in a procedure called CreateFifo) seems to work. >How-To-Repeat: Install virtualpaper-1.4 and type "BuildLectern foo.ps zog.lect". >Fix: Declare an <*EXTERNAL*> procedure called mkfifo with the right type, and call that instead. The following lines of code do this, but I know just enough Modula-3 to be certain that they don't belong in the place where, in search of a quick fix, I put them. :-) in an interface file somewhere, insert: FROM Ctypes IMPORT char_star, int; FROM Utypes IMPORT mode_t; <*EXTERNAL*> PROCEDURE mkfifo(p: char_star; m: mode_t): int; in OSUtilsPosix.m3: replace the definition of CreateFifo with: PROCEDURE CreateFifo(p: TEXT) RAISES {OSError.E} = CONST Mode = Unix.MROWNER + Unix.MWOWNER; BEGIN <* ASSERT pFifo=NIL *> IF mkfifo(M3toC.TtoS(p), Mode) < 0 THEN OSErrorPosix.Raise(); END; pFifo := p; END CreateFifo; >Audit-Trail: >Unformatted: From owner-freebsd-ports Fri May 9 21:29:55 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id VAA16531 for ports-outgoing; Fri, 9 May 1997 21:29:55 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id VAA16523; Fri, 9 May 1997 21:29:36 -0700 (PDT) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA19372; Fri, 9 May 1997 21:29:10 -0700 (PDT) Date: Fri, 9 May 1997 21:29:10 -0700 (PDT) Message-Id: <199705100429.VAA19372@freefall.freebsd.org> To: kenji@reseau.toyonaka.osaka.jp, ache@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/3492 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: tcsh on 2.2.1-RELEASE terminates by setting env variable LANG to C using source builtin State-Changed-From-To: open-closed State-Changed-By: ache State-Changed-When: ΠΤ 9 ΝΑΚ 1997 21:28:30 PDT State-Changed-Why: Fixed in libc/nls/msgcat.c v1.10 From owner-freebsd-ports Sat May 10 06:34:07 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA05268 for ports-outgoing; Sat, 10 May 1997 06:34:07 -0700 (PDT) Received: from beer.pilsnet.sunet.se (beer.pilsnet.sunet.se [192.36.125.73]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id GAA05261 for ; Sat, 10 May 1997 06:33:59 -0700 (PDT) Received: from nbki.ipri.kiev.ua by beer.pilsnet.sunet.se (8.6.8/2.03) id PAA18421; Sat, 10 May 1997 15:32:27 +0200 Received: from cki.ipri.kiev.ua by nbki.ipri.kiev.ua with ESMTP id PAA11230; (8.6.9/zah/1.1) Sat, 10 May 1997 15:13:29 +0100 Received: from 194.44.146.14 (mac.ipri.kiev.ua [194.44.146.14]) by cki.ipri.kiev.ua (8.7.6/8.7.3) with SMTP id PAA06644; Sat, 10 May 1997 15:25:13 +0300 (EET DST) Message-ID: <33745B5A.464D@cki.ipri.kiev.ua> Date: Sat, 10 May 1997 14:26:15 +0300 From: Ruslan Shevchenko Reply-To: rssh@cki.ipri.kiev.ua Organization: IPRI X-Mailer: Mozilla 3.01Gold (Macintosh; I; 68K) MIME-Version: 1.0 To: jgrosch@sirius.com CC: "Pedro F. Giffuni" , ports@FreeBSD.ORG Subject: Re: a new ports categorie for kdm ? References: <199705081721.KAA20182@superior.mooseriver.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Josef Grosch wrote: > > Pedro F. Giffuni said: > >On Thu, 8 May 1997, Andreas Klemm wrote: > >> > >> Since there are some (many) application under this "label", > >> would you agree, to create a new categorie especially for these > >> kdm tools ? > >> > >I'm a bit more drastic. I would like a branch per GUI: > >-OpenLook & related apps. > >-Motif related apps. > >-kdm & related apps. > >-Other Window Managers (fvwm, fvwm95, mlwm, etc.). > >And a bit of cleaning in X11 :). > > > > Pedro. > > > > I agree with Pedro. Creating branches for each window manager would clear > up some of the confusion (at least for me) as to which packages run under > which window manager and would clean up X11 which is on it's way to be > coming a general dumping ground. > May be the same with koreian ? > My $0.02 > > Josef > > -- > Josef Grosch | Another day closer to a | FreeBSD 2.2.1 > jgrosch@sirius.com | Micro$oft free world | UNIX for the masses From owner-freebsd-ports Sat May 10 10:50:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA13938 for ports-outgoing; Sat, 10 May 1997 10:50:05 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA13930; Sat, 10 May 1997 10:50:02 -0700 (PDT) Resent-Date: Sat, 10 May 1997 10:50:02 -0700 (PDT) Resent-Message-Id: <199705101750.KAA13930@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, obrien@NUXI.com Received: from relay.nuxi.com (nuxi.ucdavis.edu [128.120.175.23]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id KAA13813; Sat, 10 May 1997 10:48:41 -0700 (PDT) Received: from dragon.nuxi.com (reqf-027.ucdavis.edu [128.120.253.147]) by relay.nuxi.com (8.8.5/8.6.12) with ESMTP id JAA06189; Sat, 10 May 1997 09:54:49 GMT Received: (from obrien@localhost) by dragon.nuxi.com (8.8.5/8.7.3) id RAA21968; Sat, 10 May 1997 17:48:30 GMT Message-Id: <199705101748.RAA21968@dragon.nuxi.com> Date: Sat, 10 May 1997 17:48:30 GMT From: "David O'Brien" Reply-To: obrien@NUXI.com To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: pst@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/3574: tkgoodstuff's Dialer script has wrong path for pppd Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3574 >Category: ports >Synopsis: tkgoodstuff's Dialer script has wrong path for pppd >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat May 10 10:50:01 PDT 1997 >Last-Modified: >Originator: David O'Brien >Organization: The FreeBSD Project >Release: FreeBSD 2.2-STABLE i386 >Environment: tkgoodstuff-4.1.tgz package from 2.2.1-R cdrom. >Description: The Dialer script (of which there are two, bin/Dialer and lib/tkgoodstuff/Dialer -- should there be?) have /usr/lib/ppp/pppd as the path to pppd rather than /usr/sbin/pppd. >How-To-Repeat: cd /cdrom/packages/All pkg_add tkgoodstuff-4.1.tgz >Fix: ;-) >Audit-Trail: >Unformatted: From owner-freebsd-ports Sat May 10 18:40:07 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id SAA05294 for ports-outgoing; Sat, 10 May 1997 18:40:07 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id SAA05286; Sat, 10 May 1997 18:40:04 -0700 (PDT) Resent-Date: Sat, 10 May 1997 18:40:04 -0700 (PDT) Resent-Message-Id: <199705110140.SAA05286@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, mita@jp.FreeBSD.org Received: from datsu.fujita3.iis.u-tokyo.ac.jp (datsu.fujita3.iis.u-tokyo.ac.jp [157.82.109.78]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id SAA05046 for ; Sat, 10 May 1997 18:35:03 -0700 (PDT) Received: (from mita@localhost) by datsu.fujita3.iis.u-tokyo.ac.jp (8.8.5/8.8.5) id KAA08974; Sun, 11 May 1997 10:33:52 +0900 (JST) Message-Id: <199705110133.KAA08974@datsu.fujita3.iis.u-tokyo.ac.jp> Date: Sun, 11 May 1997 10:33:52 +0900 (JST) From: mita@jp.FreeBSD.org Reply-To: mita@jp.FreeBSD.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/3576: Added jp-vfghostscript-4.03 drivers Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 3576 >Category: ports >Synopsis: drivers for jp-vfghostscript-4.03 is updated >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat May 10 18:40:02 PDT 1997 >Last-Modified: >Originator: MITA Yoshio >Organization: IIS, the University of Tokyo >Release: FreeBSD 2.2.1-RELEASE i386 >Environment: 2.2.1-RELEASE >Description: 1. Add lips3 device as a default printer driver. 2. Bug fix of gdevep82.patch >How-To-Repeat: >Fix: diff -rcN japanese/vfghostscript4.orig/files/gdevep82.patch japanese/vfghostscript4/files/gdevep82.patch *** japanese/vfghostscript4.orig/files/gdevep82.patch Thu May 1 19:03:04 1997 --- japanese/vfghostscript4/files/gdevep82.patch Sun May 11 09:15:39 1997 *************** *** 139,145 **** + } + sprintf(buf, "%cS%c%cS%c", ESC, ESC, ESC, FS); /* ESC/PS -> ESC/P */ + sprintf(buf, "%cz%c%c", ESC, NULL, NULL); /* ESC/P -> ESC/Page */ ! + sprintf(buf,"\033\001@EJL \012@EJL ENLA=ESC/PAGE\012\033\001@EJL \012@EJL SE LA=ESC/PAGE\012@EJL SET EC=ON RS=%s PU=%s PS=%s ZO=OFF FO=OFF\012@EJL EN LA=ESC/PAGE\012", + (ptype==EPAG300)?"QK":"FN", + "AU", /* "AU"..auto "2"..tray(maybe) "1"..casette1*/ + ps --- 139,145 ---- + } + sprintf(buf, "%cS%c%cS%c", ESC, ESC, ESC, FS); /* ESC/PS -> ESC/P */ + sprintf(buf, "%cz%c%c", ESC, NULL, NULL); /* ESC/P -> ESC/Page */ ! + sprintf(buf,"\033\001@EJL \012@EJL SE LA=ESC/PAGE\012@EJL SET EC=ON RS=%s PU=%s PS=%s ZO=OFF FO=OFF\012@EJL EN LA=ESC/PAGE\012", + (ptype==EPAG300)?"QK":"FN", + "AU", /* "AU"..auto "2"..tray(maybe) "1"..casette1*/ + ps diff -rcN japanese/vfghostscript4.orig/scripts/configure japanese/vfghostscript4/scripts/configure *** japanese/vfghostscript4.orig/scripts/configure Thu May 1 19:03:05 1997 --- japanese/vfghostscript4/scripts/configure Sun May 11 08:51:06 1997 *************** *** 4,10 **** if [ ! "X"${BATCH} = "X" ] ; then ! PRINTER_JAPAN=' epag300.dev epag600.dev mjc180.dev mjc360.dev mjc720.dev mj500c.dev lips4.dev lips4c.dev rpdlA3.dev rpdlA4.dev rpdlB4.dev rpdlB5.dev bj10v.dev bj10vh.dev' sed -e "s;XINCLUDE=-I/usr/local/X/include;XINCLUDE=-I/usr/X11R6/include;" \ -e "s;XLIBDIRS=-L/usr/X11/lib;XLIBDIRS=-L/usr/X11R6/lib;" \ --- 4,10 ---- if [ ! "X"${BATCH} = "X" ] ; then ! PRINTER_JAPAN=' epag300.dev epag600.dev mjc180.dev mjc360.dev mjc720.dev mj500c.dev lips3.dev lips4.dev lips4c.dev rpdlA3.dev rpdlA4.dev rpdlB4.dev rpdlB5.dev bj10v.dev bj10vh.dev' sed -e "s;XINCLUDE=-I/usr/local/X/include;XINCLUDE=-I/usr/X11R6/include;" \ -e "s;XLIBDIRS=-L/usr/X11/lib;XLIBDIRS=-L/usr/X11R6/lib;" \ --- MITA Yoshio >Audit-Trail: >Unformatted: