From owner-freebsd-ports Sun Nov 30 07:00:33 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA13205 for ports-outgoing; Sun, 30 Nov 1997 07:00:33 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from zerium.idgonline.no (root@oslo-1-11.newmedia.no [194.52.244.11]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id HAA13198 for ; Sun, 30 Nov 1997 07:00:28 -0800 (PST) (envelope-from hanspb@persbraten.vgs.no) Received: from localhost (hanspbie@zerium.newmedia.no [127.0.0.1]) by zerium.idgonline.no (8.8.7/8.8.5) with SMTP id QAA15384 for ; Sun, 30 Nov 1997 16:00:23 +0100 Date: Sun, 30 Nov 1997 16:00:23 +0100 (MET) From: Hans Petter Bieker X-Sender: hanspbie@zerium.newmedia.no To: ports@FreeBSD.org Subject: fix for ports/4865 (was: Re: xdm: doesn't run setusercontext()) properly Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk On Sun, 30 Nov 1997, Hans Petter Bieker wrote: > xdm now runs setusercontext with NULL for login_cap_t *lc parameter. This > parameter should be the class of the current user so I made this patch > against the session.c~ (not session.c.org). > > This causes to use ``default'' as loginclass for all users loged inn thru > xdm. This is obviously wrong: This patch actually works (it's tested), but it's just a hack. However I hope you commit this patch. As you see the problem was that xdm doesn't use environ as a template for the new environ, but it creates a new one from scratch. This patch fixes PR ports/4865. --- /usr/ports/x11/XFree86/patches/patch-ae~ Sun Sep 28 07:46:52 1997 +++ /usr/ports/x11/XFree86/patches/patch-ae Sun Nov 30 15:32:12 1997 @@ -11,8 +11,43 @@ SYS_LIBRARIES = $(SYS_LIBRARIES1) $(SYS_LIBRARIES2) $(SYS_LIBRARIES3) #if HasBSD44Sockets ---- programs/xdm/session.c.orig Mon Jun 9 01:16:11 1997 -+++ programs/xdm/session.c Mon Jun 9 01:19:30 1997 +--- programs/xdm/util.c.orig Thu Oct 3 10:49:48 1996 ++++ programs/xdm/util.c Sun Nov 30 15:27:46 1997 +@@ -141,6 +141,32 @@ + return new; + } + ++char ** ++putEnv(string, env) ++ const char *string; ++ char ** env; ++{ ++ char *v, *b, *n; ++ int nl; ++ ++ if ((b = strchr(string, '=')) == NULL) return NULL; ++ v = b + 1; ++ ++ nl = b - string; ++ if ((n = malloc(nl + 1)) == NULL) ++ { ++ LogOutOfMem ("putAllEnv"); ++ return NULL; ++ } ++ ++ strncpy(n, string,nl + 1); ++ n[nl] = 0; ++ ++ env = setEnv(env,n,v); ++ free(n); ++ return env; ++} ++ + freeEnv (env) + char **env; + { +--- programs/xdm/session.c.orig Mon Dec 23 08:10:57 1996 ++++ programs/xdm/session.c Sun Nov 30 15:27:46 1997 @@ -65,6 +65,17 @@ #ifdef CSRG_BASED @@ -31,29 +66,50 @@ #endif extern int PingServer(); -@@ -494,6 +505,9 @@ +@@ -81,6 +92,7 @@ + extern int source(); + extern char **defaultEnv(); + extern char **setEnv(); ++extern char **putEnv(); + extern char **parseArgs(); + extern int printEnv(); + extern char **systemEnv(); +@@ -494,6 +506,13 @@ char **f, *home, *getEnv (); char *failsafeArgv[2]; int pid; +#ifdef HAVE_SETUSERCONTEXT ++ login_cap_t *lc = NULL; ++ extern char **environ; ++ char ** e; + struct passwd *pwd; ++ char *envinit[1]; +#endif if (verify->argv) { Debug ("StartSession %s: ", verify->argv[0]); -@@ -512,6 +526,28 @@ +@@ -512,6 +531,43 @@ /* Do system-dependent login setup here */ +#ifdef HAVE_SETUSERCONTEXT + /* ++ * Destroy environment unless user has requested its preservation. ++ * We need to do this before setusercontext() because that may ++ * set or reset some environment variables. ++ */ ++ environ = envinit; ++ ++ /* + * Set the user's credentials: uid, gid, groups, + * environment variables, resource limits, and umask. + */ ++ + pwd = getpwnam(name); + if (pwd) + { -+ if (setusercontext(NULL, pwd, pwd->pw_uid, LOGIN_SETALL) < 0) ++ lc = login_getpwclass(pwd); ++ if (setusercontext(lc, pwd, pwd->pw_uid, LOGIN_SETALL) < 0) + { + LogError("setusercontext for \"%s\" failed, errno=%d\n", name, + errno); @@ -66,11 +122,17 @@ + LogError("getpwnam for \"%s\" failed, errno=%d\n", name, errno); + return (0); + } ++ login_close(lc); ++ ++ e = environ; ++ while(*e) ++ verify->userEnviron = putEnv(*e++, verify->userEnviron); ++ +#else #ifdef AIXV3 /* * Set the user's credentials: uid, gid, groups, -@@ -548,6 +584,7 @@ +@@ -548,6 +604,7 @@ return (0); } #endif /* AIXV3 */ -- Linux; 64bit, multi-platform, multi-tasking, multi-user, fast and Free. UNIX was not designed to stop you from doing stupid things, because that would also stop you from doing clever things. -- Doug Gwyn From owner-freebsd-ports Sun Nov 30 09:58:59 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA21530 for ports-outgoing; Sun, 30 Nov 1997 09:58:59 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from mx.mjhb.com (mx.mjhb.com [204.254.69.20]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id JAA21510 for ; Sun, 30 Nov 1997 09:58:56 -0800 (PST) (envelope-from marty@mjhb.com) Received: from nt.home.mjhb.com (pool050-maxa.gardena-ca-us.dialup.earthlink.net [207.217.20.200]) by mx.mjhb.com (8.8.5/8.8.5) with SMTP id JAA28506 for ; Sun, 30 Nov 1997 09:58:52 -0800 (PST) Date: Sun, 30 Nov 1997 10:00:28 -0800 (Pacific Standard Time) From: Marty Bower Reply-To: Marty Bower To: freebsd-ports@FreeBSD.ORG Subject: Incorrect Perl dependencies for MySQL and INN ports Message-ID: X-mailer: Pine/3.96 (WinNT; I) Organization: Martin J. H. Bower X-X-Sender: marty@mx.mjhb.com MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk I've noticed this twice now; the first time I believe it was INN-1.5.1, and now MySQL-3.20.32a. The MySQL port claims that it is dependent on Perl5.00404 (which has not been installed yet), but then proceeds to download and attempt to install the Perl5.003 port: >> Checksum OK for mysql-3.20.32a.tar.gz. ===> Installing for mysql-3.20.32a ===> mysql-3.20.32a depends on executable: perl5.00404 - not found ===> Verifying install for perl5.00404 in /usr/ports/lang/perl5 >> perl5.003.tar.gz doesn't seem to exist on this system. >> Attempting to fetch from [snipped] Receiving perl5.003.tar.gz (1546567bytes) This fails with "perl-5.003 is already installed - perhaps an older version?". pkg_delete will not deinstall it because of the INN dependency, so I set FORCE_PKG_REGISTER=yes and reran "make install" (for MySQL). The INN port claimed that it was dependent on Perl5.00401, which was previously installed; but then it fetched and installed 5.003, which *also* had been installed previously (verified with pkg_info). This undoes the 5.0040[14] installation (man pages, /usr/local/bin/perl link, etc), requiring a reinstallation of the newer port. Marty Bower | marty@mjhb.mdr.ca.us | http://mjhb.mdr.ca.us From owner-freebsd-ports Sun Nov 30 11:21:32 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA27118 for ports-outgoing; Sun, 30 Nov 1997 11:21:32 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id LAA27108; Sun, 30 Nov 1997 11:21:21 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id LAA19142; Sun, 30 Nov 1997 11:20:51 -0800 (PST) Date: Sun, 30 Nov 1997 11:20:51 -0800 (PST) Message-Id: <199711301920.LAA19142@freefall.freebsd.org> To: vanilla@MinJe.com.TW, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5025 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Change Freefonts' ftp site State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Sun Nov 30 11:20:08 PST 1997 State-Changed-Why: Committed. From owner-freebsd-ports Sun Nov 30 11:50:07 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA29265 for ports-outgoing; Sun, 30 Nov 1997 11:50:07 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA29256; Sun, 30 Nov 1997 11:50:01 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 30 Nov 1997 11:50:01 -0800 (PST) Resent-Message-Id: <199711301950.LAA29256@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, watanabe@edu5.phys.nagoya-u.ac.jp Received: (from nobody@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA29126; Sun, 30 Nov 1997 11:48:20 -0800 (PST) (envelope-from nobody) Message-Id: <199711301948.LAA29126@hub.freebsd.org> Date: Sun, 30 Nov 1997 11:48:20 -0800 (PST) From: watanabe@edu5.phys.nagoya-u.ac.jp To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5179: New port ja-dvipsk-5.66a (japanese/dvipsk) Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5179 >Category: ports >Synopsis: New port ja-dvipsk-5.66a (japanese/dvipsk) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Class: support >Submitter-Id: current-users >Arrival-Date: Sun Nov 30 11:50:00 PST 1997 >Last-Modified: >Originator: Makoto WATANABE >Organization: Z lab. Division of Particle and Astrophysical Sciences, Nagoya University >Release: FreeBSD 2.2.2-RELEASE i386 >Environment: >Description: I made a new port 'ja-dvipsk-5.66a'. This is a DVI to PostScript translator with Japanese patch. I put the port packed with 'tar czf' and uuencode below "Fix:" Packed tarball is 2793 Nov 4 11:54 ja-dvipsk-5.66a-971104.tar.gz Packed list is 0 Nov 4 11:53 1997 dvipsk/ 0 Oct 21 23:28 1997 dvipsk/files/ 129 Oct 21 23:28 1997 dvipsk/files/md5 0 Oct 21 23:35 1997 dvipsk/patches/ 598 Oct 21 23:42 1997 dvipsk/patches/patch-aa 462 Oct 21 23:46 1997 dvipsk/patches/patch-ab 0 Oct 21 23:59 1997 dvipsk/pkg/ 48 Nov 4 11:48 1997 dvipsk/pkg/COMMENT 876 Nov 4 11:48 1997 dvipsk/pkg/DESCR 3423 Nov 4 11:49 1997 dvipsk/pkg/PLIST 570 Nov 4 11:48 1997 dvipsk/pkg/MESSAGE 2022 Nov 4 11:33 1997 dvipsk/Makefile >How-To-Repeat: >Fix: begin 644 ja-dvipsk-5.66a-971104.tar.gz M'XL(`(*.7C0``^T;:W/B.'*^QK^B9R=5,\,$@XV!)+/9&B:0+#0/E)>Y5`%(3$!WCAD#$+ M63K=Q8A2^SDZ]+Q@Q/XW+9L&3S4+UO5_22E5BEH)R52EFOG_66#&_X[Q)"97 MBL6*IJ7[7RTJ#_U?T:HOH/@4G7D(_W#_M^IE>!-/@GQ9KE2(C.:0A]=OX0!4 MO8J>(T0SJ+:K%4G%T&E)-^E`K^P.#-.0IIE_>"341WE/D4O3,I0*,:E&]PR- M5O?H0*T4JZJA*T5SURP7Z2Z1_FH#_,,A6?_">4^U`VP2_ZM*A:__LEK.XO]S MP`/_QXN8D$?5L2+^*QCN)_ZOEDLX%Q1-52I9_'\.R.5RD,P!%H5>%,JZS'QK MJ&[U(PH=/015`;6T7ZKLE_=`V=NK2OE\_B'+`V)-V2\I,7%N%G@==O=V]C00 M52Z+5RN`I;P$@-X(+1T^,F93XH+'/.I2`S>2(KQ'M.6&8),@-!D6WD,A!_32 M8WZ()"$#@P4>U2UB\XII78+/4!R50WH)GL\&-G4@5[C7(=9UQ\[D.-(#\U[1R3,G+!C8X1.]8@76->0 M,RTW*<8TTTB#FDGI`&ZR3?U_!A;'_\&CZEB5_XL]7\1_K:B4>/ZO*54MB__/ M`5/Q7\>8ZEL#_M^TAK+/QI8^MA;O!M7]8G%N-U@LX.'>4-Y7J^E[@[:#DT'4 M`/B?`SA[.(CZ2\CA?*FY!@04/^+M!P97//R0R`YYW`]'%(,];A34EQ,F!B]M MST\D<@GUA-RG`;,C'C8GI'5,5HM3E">XV0@R/P2,;C2("?FH15>3;2NMJ]W( M!1+P2&W9V*&IKDX4FFMVJ[1.MS;W_V3]CX=/=P>X?OZO*66%KW^EHE6R_/\Y M8,K_AYU6J]'N/[Z.5?$?*G?WO_BI\?-?M93E_\\"-:A_:?*P>&F29W?\93*W_>J-WV'T*':O._^6R-K7^J^+^ MIUS,UO]S0%WX'S!E.Z=^R#,5'@_X\!G6(:\@@A@;$#A@$D<=O"0+X'GJ6_GH'60),47F!.B&]?+TC(0M\ MYSTY[?3ZKV5)ZF,7XM4Q&2]8`3C,L$P+>X`="?AQFYG0Q[YTXV3W=1#S`(J3 M(HR:?"!C#)VC@!*PK8%/_"M^;($RQP',S3]3!>'\BM8`MR(D]7)LU MM4>AZ:`H*0\M$3#@:ZU?:]<^-J0+$A*7#.B':YL,9&]T%<@N&;(KDH]DHLL_ MO+_EWCD5_T]/FKTGR/Y6QO]*N52]C_]:4;S_%;/S_[/`P'(+8@Y(O$1,1\4) M+EFNR>)FF1"&J5V=)?(U-47(?P4 M!#'2$`&:*AWEI>!TYH]34(:>AA!^7(PS(W=\E8+C97H9+L%:(;HF'1U<.2G8 M2UM-PX1IF.0."]?%/`YS![XSR`[Q%G.*6S"5:(O9)P2#P2H\]F`)/NFB22Y7 M$]F6NWC.SE+]4)>-:&(3S/=*EZ4U"'V,J*O)DGO")80VX\MGF:V73X0+W1P=1LK*-AR M$K1[(+*O%>,,1NS"(\,570I]2ETY&*TB49?3G#-[3/U"MU&KMQJKZ9+)09;- MLUE2(_)LYBY;,7/T:``_7)O!X?SN?(;$100;<,]>BS9)1]8B'>(<':]#FLR` M-2A#RZ'3V@VF)YB96/^P68Z_,3B'C1-(U&!)'PS+]QU8M9Y6TJ42+$(\6`II M)+-&F*6Z&\S?\L@_`U/G_U:CUZL=-QY?QZK[WV)5O3__B_=_M5K)SO_/`KE' MA>S.\F]\9_G(KOZK9VX&CP%)_&^1,>4+X4ETK(C_I:I6F<1_3;P%*FHE>_][ M'G@%;7H!\>,89L8VU44H=I+YP,/Q/G=2\A+V#I*L[15\21[`?/J?R/*I(5#RN_2*]0 MVG;3V,:"5&_V^NU:JW&P-?VS%HSHQW'K#Y*?01S6^HWC3K?9Z''Z9[UFGR/-T-LO%/!3CO+$NDZ4%[QH(!+"0^POS_HN1`88+ROXM[0U MQ4<"W;)DG4W8^O1;0;3E/2Y!=/VH><*5+?A)#J3_TD:2NI_;9_7&::-=1^;M MF]-NXZCY[7;Q#G-SVNGV>_5F][8P&3`B0\9L"8?<;/?QK]$]V%K]HB4=MS^? M'7;:1\WCSUVT[14-I,^]QMDQW__B:N-;OUL[[)]UVB>_+1P6U]E6#K:VDA<` MN+OUER3K@O;7W8OIEH.VS5;R%_"-LW7[N? M>MU#K%Q>FUCE)A8C7V9,SZ=YT3DX*?MFZ1XB[C#SNEO*)YA\6.SW?G: MQLHPKAQW3V]_@D0#ZD,5.,<`+!-^AY>0Y]J$U6X7'I7@#U2.:9(+@@MX1SYQ M>ZQ@>X]I$GZDJ9H_$*VA:`&34(,,;X4S$XN4:><%`DHO\B:FV M;[HM-*B9+C$GOO0Z&2]_K;=XVII.CZ0&FXQTRC[;UIP=N/X'`]M>U&DN>,;L M!G/IQK9)+IQRR]V[B<0[C^66>5*29#3#2P,W$9<:;]H='G+JGXAD[N[KO MCL_+)E$:RWI3:.8*(EW:.H:)1?TY&?=W'DODR-0U+%.(PSU+V.#3L8AERAudit-Trail: >Unformatted: From owner-freebsd-ports Sun Nov 30 12:09:53 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA00713 for ports-outgoing; Sun, 30 Nov 1997 12:09:53 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id MAA00703 for ; Sun, 30 Nov 1997 12:09:49 -0800 (PST) (envelope-from fenner@parc.xerox.com) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <54144(2)>; Sun, 30 Nov 1997 12:09:16 PST Received: from localhost by crevenia.parc.xerox.com with SMTP id <177476>; Sun, 30 Nov 1997 12:09:07 -0800 To: Marty Bower cc: freebsd-ports@freebsd.org Subject: Re: Incorrect Perl dependencies for MySQL and INN ports In-reply-to: Your message of "Sun, 30 Nov 97 10:00:28 PST." Date: Sun, 30 Nov 1997 12:09:03 PST From: Bill Fenner Message-Id: <97Nov30.120907pst.177476@crevenia.parc.xerox.com> Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk You need to update your /usr/ports/lang/perl5 directory. In general, it's best to update your whole ports directory at the same time, since updated ports sometimes depend on other updated ports. Bill From owner-freebsd-ports Sun Nov 30 12:17:22 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA01255 for ports-outgoing; Sun, 30 Nov 1997 12:17:22 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.133]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id MAA01240 for ; Sun, 30 Nov 1997 12:17:14 -0800 (PST) (envelope-from mark@greenpeace.grondar.za) Received: from greenpeace.grondar.za (s4PylzvijGC5R+eRUbZMjaEcZyu/OR2p@greenpeace.grondar.za [196.7.18.132]) by gratis.grondar.za (8.8.7/8.8.8) with ESMTP id WAA17211; Sun, 30 Nov 1997 22:17:14 +0200 (SAT) (envelope-from mark@greenpeace.grondar.za) Received: from greenpeace.grondar.za (snVeaDfBg8EDQuvimmEBRDyH3lHepYh1@localhost [127.0.0.1]) by greenpeace.grondar.za (8.8.8/8.8.8) with ESMTP id WAA01233; Sun, 30 Nov 1997 22:18:25 +0200 (SAST) (envelope-from mark@greenpeace.grondar.za) Message-Id: <199711302018.WAA01233@greenpeace.grondar.za> X-Mailer: exmh version 2.0zeta 7/24/97 To: Marty Bower cc: freebsd-ports@FreeBSD.ORG Subject: Re: Incorrect Perl dependencies for MySQL and INN ports Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 30 Nov 1997 22:18:24 +0200 From: Mark Murray Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Marty Bower wrote: > I've noticed this twice now; the first time I believe it was INN-1.5.1, > and now MySQL-3.20.32a. The MySQL port claims that it is dependent on > Perl5.00404 (which has not been installed yet), but then proceeds to > download and attempt to install the Perl5.003 port: > > >> Checksum OK for mysql-3.20.32a.tar.gz. > ===> Installing for mysql-3.20.32a > ===> mysql-3.20.32a depends on executable: perl5.00404 - not found > ===> Verifying install for perl5.00404 in /usr/ports/lang/perl5 > >> perl5.003.tar.gz doesn't seem to exist on this system. > >> Attempting to fetch from > [snipped] > Receiving perl5.003.tar.gz (1546567bytes) The immediate impression I get here (as the perl5 maintainer) is that your ports collection is a mix of all sorts of dates-and-times. Please update _*everything*_ to the very latest, and try again. M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org From owner-freebsd-ports Sun Nov 30 12:29:38 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA02340 for ports-outgoing; Sun, 30 Nov 1997 12:29:38 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id MAA02330; Sun, 30 Nov 1997 12:29:33 -0800 (PST) (envelope-from pst@FreeBSD.org) From: Paul Traina Received: (from pst@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id MAA20374; Sun, 30 Nov 1997 12:29:03 -0800 (PST) Date: Sun, 30 Nov 1997 12:29:03 -0800 (PST) Message-Id: <199711302029.MAA20374@freefall.freebsd.org> To: chuckr@FreeBSD.ORG Subject: octave port Cc: asami@FreeBSD.ORG, jseeger@FreeBSD.ORG, ports@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Chuck, It looks like octave is installing obsolete versions of libreadline (and other stuff) in /usr/local/lib. Could you fix the port to either use the system readline code or not install "misc" shared libraries in /usr/local/lib {readline,history,kpathsea}? I suspect Octave is unfortunately breaking any ports that require readline 2.1 functionality (pilot-link). Thanks, Paul From owner-freebsd-ports Sun Nov 30 12:34:42 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA02698 for ports-outgoing; Sun, 30 Nov 1997 12:34:42 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.133]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id MAA02686 for ; Sun, 30 Nov 1997 12:34:33 -0800 (PST) (envelope-from mark@greenpeace.grondar.za) Received: from greenpeace.grondar.za (tubFkkxqNok8g5Z4y1IjjKkUGGUdJm+j@greenpeace.grondar.za [196.7.18.132]) by gratis.grondar.za (8.8.7/8.8.8) with ESMTP id WAA17233; Sun, 30 Nov 1997 22:34:33 +0200 (SAT) (envelope-from mark@greenpeace.grondar.za) Received: from greenpeace.grondar.za (W5MVn/IF0HcNMeNPOB4rO/PioiBmxPto@localhost [127.0.0.1]) by greenpeace.grondar.za (8.8.8/8.8.8) with ESMTP id WAA01316; Sun, 30 Nov 1997 22:35:48 +0200 (SAST) (envelope-from mark@greenpeace.grondar.za) Message-Id: <199711302035.WAA01316@greenpeace.grondar.za> X-Mailer: exmh version 2.0zeta 7/24/97 To: Bill Fenner cc: Marty Bower , freebsd-ports@FreeBSD.ORG Subject: Re: Incorrect Perl dependencies for MySQL and INN ports Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 30 Nov 1997 22:35:48 +0200 From: Mark Murray Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Bill Fenner wrote: > You need to update your /usr/ports/lang/perl5 directory. In general, it's > best to update your whole ports directory at the same time, since updated > ports sometimes depend on other updated ports. /usr/share/mk/bsd.ports.mk as well. M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org From owner-freebsd-ports Sun Nov 30 12:39:10 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA02983 for ports-outgoing; Sun, 30 Nov 1997 12:39:10 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from precipice.shockwave.com (precipice.shockwave.com [207.105.15.229]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id MAA02964; Sun, 30 Nov 1997 12:39:05 -0800 (PST) (envelope-from pst@shockwave.com) Received: from shockwave.com (localhost [127.0.0.1]) by precipice.shockwave.com (8.8.8/8.8.8) with ESMTP id MAA27503; Sun, 30 Nov 1997 12:38:49 -0800 (PST) (envelope-from pst@shockwave.com) Message-Id: <199711302038.MAA27503@precipice.shockwave.com> To: asami@cs.berkeley.edu (Satoshi Asami) cc: jseger@freebsd.org, ports@freebsd.org Subject: Re: pilot-link log In-reply-to: Your message of "Sun, 30 Nov 1997 12:16:00 PST." <199711302016.MAA09870@silvia.HIP.Berkeley.EDU> Date: Sun, 30 Nov 1997 12:38:49 -0800 From: Paul Traina Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk From: asami@cs.berkeley.edu (Satoshi Asami) Subject: Re: pilot-link log * Additionally, I think the best fix might likely involve fixing that other * port to not install a back-rev version of libreadline in /usr/local. What about the stuff that were installed before? Not everybody starts with a clean /usr/local you know. * find /usr/local/lib /usr/lib -name libreadline\* | \ * mail -s libreadline pst@shockwave.com * * on your 2.0 and 3.0 machines, I'd appreciate it. I don't have any 2.0 or 3.0's here, but I did it on my 2.2-stable package building machine. :) Should have said 2.x. I tried 2.2 + a bit, 2.2.5, and 3.0. It turns out that you and Justin are the only guys getting bit by this because you probably have octave in /usr/local due to the fact that you guys compile everything under the sun. I also just fixed the two cross-gdb ports to behave like my gdb port and not install bogus crap (this is just general housekeeping). I'm currently fetching octave to try to reproduce the problem you're seeing. Now that we think we know what it is, how can we fix it? Unfortunately, I just looked at the man pages for ld and I'm a bit stumped. Unfortunately, it says -L "adds to the path of directories to search." I think add=append. That means, if the search path already looks like: -L/usr/local/lib -lfoo -lbar -lreadline adding -L/usr/local/lib -lfoo -lbar -L/usr/lib -lreadline is a noop. I can't refer to the readline library with /usr/lib/libreadline.so.3.x because the shared library version is going to change at some point. You must have come across this kind of problem before, yes? What did you do? From owner-freebsd-ports Sun Nov 30 12:46:52 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA03533 for ports-outgoing; Sun, 30 Nov 1997 12:46:52 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from picnic.mat.net (picnic.mat.net [206.246.122.117]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id MAA03474; Sun, 30 Nov 1997 12:46:29 -0800 (PST) (envelope-from chuckr@glue.umd.edu) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.8.8/8.8.5) with SMTP id PAA21840; Sun, 30 Nov 1997 15:45:46 -0500 (EST) X-Authentication-Warning: picnic.mat.net: chuckr owned process doing -bs Date: Sun, 30 Nov 1997 15:45:44 -0500 (EST) From: Chuck Robey X-Sender: chuckr@picnic.mat.net To: Paul Traina cc: chuckr@FreeBSD.ORG, asami@FreeBSD.ORG, jseeger@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: octave port In-Reply-To: <199711302029.MAA20374@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sun, 30 Nov 1997, Paul Traina wrote: > Chuck, > It looks like octave is installing obsolete versions of libreadline (and > other stuff) in /usr/local/lib. > > Could you fix the port to either use the system readline code or not > install "misc" shared libraries in /usr/local/lib {readline,history,kpathsea}? > > I suspect Octave is unfortunately breaking any ports that require readline 2.1 > functionality (pilot-link). I'll take a look at it. JW Eaton won't take realine out (I asked him a great long time ago to do that). I just wish you could have asked for something other than the 2nd largest port out there, it takes more than an hour to do a test build -- on a very fast machine! I'll probably have to rename the octave readline. > > Thanks, > > Paul > > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@glue.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Sun Nov 30 14:19:20 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id OAA09786 for ports-outgoing; Sun, 30 Nov 1997 14:19:20 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from mail.san.rr.com (ns.san.rr.com [204.210.0.1]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id OAA09765 for ; Sun, 30 Nov 1997 14:19:14 -0800 (PST) (envelope-from Studded@dal.net) Received: from dal.net (dt051n19.san.rr.com [204.210.32.25]) by mail.san.rr.com (8.8.7/8.8.7) with ESMTP id OAA11640; Sun, 30 Nov 1997 14:19:51 -0800 (PST) Message-ID: <3481E63F.B3250EE4@dal.net> Date: Sun, 30 Nov 1997 14:18:39 -0800 From: Studded X-Mailer: Mozilla 4.04 [en] (X11; I; FreeBSD 2.2.5-11-30-STABLE i386) MIME-Version: 1.0 To: ports@freebsd.org Subject: Question/suggestion re pine port Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Greetings, :) According to the Makefile, ports@ is the maintainer for the pine port, so I have a question and a suggestion. First off, I'm curious as to why the patches we supply build -g versions of the binaries. Not a big deal, just wondering. :) I also have a suggestion regarding installing the default version of the pine.conf file. At minimum something like this in the pine/files/Makefile would be useful I think: /usr/local/bin/pine -conf > /usr/local/share/doc/pine/pine.conf You might also consider cp'ing that file to /usr/local/etc if there is not currently a pine.conf there, or maybe even copy /usr/local/etc/pine.conf to /usr/local/etc/pine.conf.old? Hope this helps, Doug From owner-freebsd-ports Sun Nov 30 15:45:25 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id PAA14561 for ports-outgoing; Sun, 30 Nov 1997 15:45:25 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from mx.mjhb.com (mx.mjhb.com [204.254.69.20]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id PAA14556 for ; Sun, 30 Nov 1997 15:45:20 -0800 (PST) (envelope-from marty@mjhb.com) Received: from nt.home.mjhb.com (pool049-maxa.gardena-ca-us.dialup.earthlink.net [207.217.20.199]) by mx.mjhb.com (8.8.5/8.8.5) with SMTP id PAA28859; Sun, 30 Nov 1997 15:44:40 -0800 (PST) Date: Sun, 30 Nov 1997 15:46:18 -0800 (Pacific Standard Time) From: Marty Bower To: Bill Fenner cc: freebsd-ports@freebsd.org Subject: Re: Incorrect Perl dependencies for MySQL and INN ports In-Reply-To: <97Nov30.120907pst.177476@crevenia.parc.xerox.com> Message-ID: X-mailer: Pine/3.96 (WinNT; I) Organization: Martin J. H. Bower (http://mjhb.com) X-X-Sender: marty@mx.mjhb.com MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Sun, 30 Nov 1997, Bill Fenner wrote: > You need to update your /usr/ports/lang/perl5 directory. This is probably the source of my apparently self-inflicted problem. I fetched and built the 5.004 port in a directory named "lang/perl5.004", instead of the default "lang/perl5". Thanks for the tip. -- Marty Bower | marty@mjhb.mdr.ca.us | http://mjhb.mdr.ca.us From owner-freebsd-ports Sun Nov 30 15:55:11 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id PAA14949 for ports-outgoing; Sun, 30 Nov 1997 15:55:11 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from mx.mjhb.com (mx.mjhb.com [204.254.69.20]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id PAA14943 for ; Sun, 30 Nov 1997 15:55:07 -0800 (PST) (envelope-from marty@mjhb.com) Received: from nt.home.mjhb.com (pool049-maxa.gardena-ca-us.dialup.earthlink.net [207.217.20.199]) by mx.mjhb.com (8.8.5/8.8.5) with SMTP id PAA28874; Sun, 30 Nov 1997 15:54:39 -0800 (PST) Date: Sun, 30 Nov 1997 15:56:17 -0800 (Pacific Standard Time) From: Marty Bower To: Mark Murray cc: freebsd-ports@freebsd.org Subject: Re: Incorrect Perl dependencies for MySQL and INN ports In-Reply-To: <199711302035.WAA01316@greenpeace.grondar.za> Message-ID: X-mailer: Pine/3.96 (WinNT; I) Organization: Martin J. H. Bower (http://mjhb.com) X-X-Sender: marty@mx.mjhb.com MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Sun, 30 Nov 1997, Mark Murray wrote: > /usr/share/mk/bsd.ports.mk as well. Is "/pub/FreeBSD/FreeBSD-stable/src/share/mk/bsd.port.mk" appropriate for a 2.2.1-RELEASE system (w/ the "221upgrade-97.07.21" package)? -- Marty Bower | marty@mjhb.mdr.ca.us | http://mjhb.mdr.ca.us From owner-freebsd-ports Sun Nov 30 19:10:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA26435 for ports-outgoing; Sun, 30 Nov 1997 19:10:03 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA26423; Sun, 30 Nov 1997 19:10:01 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 30 Nov 1997 19:10:01 -0800 (PST) Resent-Message-Id: <199712010310.TAA26423@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, maurice@serc.rmit.edu.au Received: from planetoid.serc.rmit.edu.au (planetoid.serc.rmit.edu.au [144.110.168.139]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id TAA25923 for ; Sun, 30 Nov 1997 19:02:51 -0800 (PST) (envelope-from maurice@planetoid.serc.rmit.edu.au) Received: (from maurice@localhost) by planetoid.serc.rmit.edu.au (8.8.5/8.8.5) id OAA18193; Mon, 1 Dec 1997 14:02:42 +1100 (EST) Message-Id: <199712010302.OAA18193@planetoid.serc.rmit.edu.au> Date: Mon, 1 Dec 1997 14:02:42 +1100 (EST) From: Maurice Castro Reply-To: maurice@serc.rmit.edu.au To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5184: Port of S-Plus like language R Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5184 >Category: ports >Synopsis: Port of S-Plus like language R >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 30 19:10:00 PST 1997 >Last-Modified: >Originator: Maurice Castro >Organization: Software Engineering Research Centre >Release: FreeBSD 2.2.2-RELEASE i386 >Environment: Version 2.2.2 FreeBSD >Description: Port of S-Plus like language to FreeBSD. R is a statistical language similar to AT&T's S-Plus. The package is distributed under GNU copyleft. >How-To-Repeat: >Fix: Port can be found in ftp://ftp.FreeBSD.ORG/pub/FreeBSD/incoming/R-0.49.tar.gz >Audit-Trail: >Unformatted: From owner-freebsd-ports Sun Nov 30 19:40:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA28796 for ports-outgoing; Sun, 30 Nov 1997 19:40:05 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA28768; Sun, 30 Nov 1997 19:40:01 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 30 Nov 1997 19:40:01 -0800 (PST) Resent-Message-Id: <199712010340.TAA28768@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, usagi@ruby.club.or.jp Received: from nejimaki2.pfu.co.jp (nejimaki2.pfu.co.jp [202.248.171.130]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id TAA28436 for ; Sun, 30 Nov 1997 19:36:52 -0800 (PST) (envelope-from ematsu@pfu.co.jp) Received: from nejimaki.pfu.co.jp ([202.248.171.134]) by nejimaki2.pfu.co.jp (8.8.8+2.7Wbeta7/3.6Wbeta7-97111523) with ESMTP id MAA01035; Mon, 1 Dec 1997 12:36:33 +0900 (JST) Received: from Io.unoke.pfu.co.jp by nejimaki.pfu.co.jp (8.8.7/3.4W5-MX971008-PFU Domain Mail Master) id MAA23337; Mon, 1 Dec 1997 12:37:03 +0900 (JST) Received: (from ematsu@localhost) by Io.unoke.pfu.co.jp (8.8.5/3.5Wpl7) id MAA21630; Mon, 1 Dec 1997 12:41:19 +0900 (JST) Message-Id: <199712010341.MAA21630@Io.unoke.pfu.co.jp> Date: Mon, 1 Dec 1997 12:41:19 +0900 (JST) From: usagi@ruby.club.or.jp Reply-To: usagi@ruby.club.or.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5185: Upgrading ruby-1.0 port Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5185 >Category: ports >Synopsis: Upgrading ruby-1.0 port >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 30 19:40:01 PST 1997 >Last-Modified: >Originator: Eiji-usagi-MATSUmoto >Organization: Ruby Club member >Release: FreeBSD 2.2.1-RELEASE i386 >Environment: I would like to upgrade ruby-1.0 port collection that I maintain. >Description: Changes - catch-up new version (ruby-1.0-971125) - Some sample scripts are added. - delete @dirrm from PLIST. >How-To-Repeat: >Fix: Here is the 'diff -ruN' results. -----------------8< -----------------8< -----------------8< -----------------8< diff -ruN ruby.old/Makefile ruby/Makefile --- ruby.old/Makefile Tue Nov 18 14:24:42 1997 +++ ruby/Makefile Mon Dec 1 12:10:10 1997 @@ -1,12 +1,12 @@ # New ports collection makefile for: ruby -# Version required: 1.0-970919 +# Version required: 1.0-971125 # Date created: 04 September 1997 # Whom: Eiji-usagi-MATSUmoto # # $Id: Makefile,v 1.3 1997/09/22 13:59:37 tg Exp $ # -DISTNAME= ruby-1.0-970919 +DISTNAME= ruby-1.0-971125 PKGNAME= ruby-1.0 CATEGORIES= lang MASTER_SITES= ftp://ftp.netlab.co.jp/pub/lang/ruby/ diff -ruN ruby.old/files/md5 ruby/files/md5 --- ruby.old/files/md5 Tue Nov 18 14:24:41 1997 +++ ruby/files/md5 Mon Dec 1 10:53:08 1997 @@ -1 +1 @@ -MD5 (ruby-1.0-970919.tar.gz) = 667a4927fc11e7d37d3a86104b7eaa53 +MD5 (ruby-1.0-971125.tar.gz) = 832404a835e8b9c6681bf85410ff5975 diff -ruN ruby.old/patches/patch-ag ruby/patches/patch-ag --- ruby.old/patches/patch-ag Thu Jan 1 09:00:00 1970 +++ ruby/patches/patch-ag Mon Dec 1 11:30:34 1997 @@ -0,0 +1,13 @@ +--- Makefile.in.orig Mon Dec 1 11:23:04 1997 ++++ Makefile.in Mon Dec 1 11:30:16 1997 +@@ -106,6 +106,10 @@ + done + gzip ruby.1 + $(INSTALL_DATA) ruby.1.gz $(man1dir) ++ @test -d $(libdir)/sample || mkdir $(libdir)/sample ++ @for rb in `grep '^sample/' @srcdir@/MANIFEST`; do \ ++ $(INSTALL_DATA) @srcdir@/$$rb $(libdir)/sample; \ ++ done + + clean:; @rm -f $(OBJS) $(LIBRUBY) $(MAINOBJ) + @rm -f ext/extinit.c ext/extinit.o dmyext.o diff -ruN ruby.old/pkg/PLIST ruby/pkg/PLIST --- ruby.old/pkg/PLIST Tue Nov 18 14:24:42 1997 +++ ruby/pkg/PLIST Mon Dec 1 12:04:08 1997 @@ -6,6 +6,7 @@ lib/ruby/date.rb lib/ruby/debug.rb lib/ruby/e2mmap.rb +lib/ruby/e2mmap1_0.rb lib/ruby/finalize.rb lib/ruby/find.rb lib/ruby/ftplib.rb @@ -41,6 +42,55 @@ lib/ruby/i386-freebsd/md5.so lib/ruby/i386-freebsd/socket.so lib/ruby/i386-freebsd/tkutil.so +lib/ruby/sample/biorhythm.rb +lib/ruby/sample/clnt.rb +lib/ruby/sample/dbmtest.rb +lib/ruby/sample/dir.rb +lib/ruby/sample/eval.rb +lib/ruby/sample/export.rb +lib/ruby/sample/exyacc.rb +lib/ruby/sample/fact.rb +lib/ruby/sample/fib.awk +lib/ruby/sample/fib.pl +lib/ruby/sample/fib.rb +lib/ruby/sample/fib.scm +lib/ruby/sample/freq.rb +lib/ruby/sample/from.rb +lib/ruby/sample/fullpath.rb +lib/ruby/sample/getopts.test +lib/ruby/sample/io.rb +lib/ruby/sample/less.rb +lib/ruby/sample/list.rb +lib/ruby/sample/list2.rb +lib/ruby/sample/list3.rb +lib/ruby/sample/mrshtest.rb +lib/ruby/sample/mkproto.rb +lib/ruby/sample/mpart.rb +lib/ruby/sample/observ.rb +lib/ruby/sample/occur.pl +lib/ruby/sample/occur.rb +lib/ruby/sample/occur2.rb +lib/ruby/sample/philos.rb +lib/ruby/sample/pi.rb +lib/ruby/sample/rcs.awk +lib/ruby/sample/rcs.dat +lib/ruby/sample/rcs.rb +lib/ruby/sample/regx.rb +lib/ruby/sample/ruby-mode.el +lib/ruby/sample/rubydb2x.el +lib/ruby/sample/rubydb3x.el +lib/ruby/sample/sieve.rb +lib/ruby/sample/svr.rb +lib/ruby/sample/test.rb +lib/ruby/sample/time.rb +lib/ruby/sample/tkbiff.rb +lib/ruby/sample/tkbrowse.rb +lib/ruby/sample/tkdialog.rb +lib/ruby/sample/tkfrom.rb +lib/ruby/sample/tkhello.rb +lib/ruby/sample/tkline.rb +lib/ruby/sample/tktimer.rb +lib/ruby/sample/trojan.rb +lib/ruby/sample/tsvr.rb +lib/ruby/sample/uumerge.rb man/man1/ruby.1.gz -@dirrm lib/ruby/i386-freebsd -@dirrm lib/ruby -----------------8< -----------------8< -----------------8< -----------------8< >Audit-Trail: >Unformatted: From owner-freebsd-ports Sun Nov 30 20:36:23 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id UAA02681 for ports-outgoing; Sun, 30 Nov 1997 20:36:23 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from pineapple.theshop.net (pineapple.theshop.net [208.128.7.7]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id UAA02662; Sun, 30 Nov 1997 20:36:14 -0800 (PST) (envelope-from lol@theshop.net) Received: from theshop.net (jojojo@banana17.theshop.net [208.128.7.105]) by pineapple.theshop.net (8.8.7/8.8.7) with ESMTP id WAA01487; Sun, 30 Nov 1997 22:30:28 -0600 (CST) Message-ID: <34823E4F.5D9B8CA0@theshop.net> Date: Sun, 30 Nov 1997 22:34:27 -0600 From: lol X-Mailer: Mozilla 4.04 [en] (Win95; I) MIME-Version: 1.0 To: ports@FreeBSD.org, wosch@FreeBSD.org Subject: Wondering Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Hello, I need to get and learn FreeBSD from scratch, I was wondering how I should go about doin this. From owner-freebsd-ports Sun Nov 30 22:01:58 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA08922 for ports-outgoing; Sun, 30 Nov 1997 22:01:58 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.133]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id WAA08917 for ; Sun, 30 Nov 1997 22:01:54 -0800 (PST) (envelope-from mark@greenpeace.grondar.za) Received: from greenpeace.grondar.za (sQcBTJkS+E3GISMqU1Z6nl7FJlHwjlat@greenpeace.grondar.za [196.7.18.132]) by gratis.grondar.za (8.8.7/8.8.8) with ESMTP id IAA17994; Mon, 1 Dec 1997 08:01:57 +0200 (SAT) (envelope-from mark@greenpeace.grondar.za) Received: from greenpeace.grondar.za (C6viY8q7rVtcx/h6/Y/WD4Ikid2vg6MZ@localhost [127.0.0.1]) by greenpeace.grondar.za (8.8.8/8.8.8) with ESMTP id IAA02927; Mon, 1 Dec 1997 08:03:20 +0200 (SAST) (envelope-from mark@greenpeace.grondar.za) Message-Id: <199712010603.IAA02927@greenpeace.grondar.za> X-Mailer: exmh version 2.0zeta 7/24/97 To: Marty Bower cc: freebsd-ports@FreeBSD.ORG Subject: Re: Incorrect Perl dependencies for MySQL and INN ports Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 01 Dec 1997 08:03:20 +0200 From: Mark Murray Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Marty Bower wrote: > On Sun, 30 Nov 1997, Mark Murray wrote: > > > /usr/share/mk/bsd.ports.mk as well. > > Is "/pub/FreeBSD/FreeBSD-stable/src/share/mk/bsd.port.mk" appropriate for > a 2.2.1-RELEASE system (w/ the "221upgrade-97.07.21" package)? I believe so. M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org From owner-freebsd-ports Sun Nov 30 23:49:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id XAA16435 for ports-outgoing; Sun, 30 Nov 1997 23:49:04 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-12.ix.netcom.com [207.93.143.140]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id XAA16422 for ; Sun, 30 Nov 1997 23:48:59 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id XAA19022; Sun, 30 Nov 1997 23:47:01 -0800 (PST) Date: Sun, 30 Nov 1997 23:47:01 -0800 (PST) Message-Id: <199712010747.XAA19022@silvia.HIP.Berkeley.EDU> To: Studded@dal.net CC: ports@freebsd.org, bde@zeta.org.au In-reply-to: <3481E63F.B3250EE4@dal.net> (message from Studded on Sun, 30 Nov 1997 14:18:39 -0800) Subject: Re: Question/suggestion re pine port From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * so I have a question and a suggestion. First off, I'm curious as to why * the patches we supply build -g versions of the binaries. Not a big * deal, just wondering. :) I also have a suggestion regarding installing Really? It says "-O2 -pipe" here. Maybe you should define CFLAGS in /etc/make.conf. Speaking of which, why is it that we ship the system with CFLAGS in /etc/make.conf commented out? Shouldn't hurt to have a reasonable default, no? (Note CC: line. :) Satoshi From owner-freebsd-ports Mon Dec 1 00:11:55 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA18459 for ports-outgoing; Mon, 1 Dec 1997 00:11:55 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id AAA18432; Mon, 1 Dec 1997 00:11:39 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id AAA24800; Mon, 1 Dec 1997 00:11:05 -0800 (PST) Date: Mon, 1 Dec 1997 00:11:05 -0800 (PST) Message-Id: <199712010811.AAA24800@freefall.freebsd.org> To: usagi@ruby.club.or.jp, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5185 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Upgrading ruby-1.0 port State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Mon Dec 1 00:10:17 PST 1997 State-Changed-Why: Committed. thans. From owner-freebsd-ports Mon Dec 1 00:59:26 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA21765 for ports-outgoing; Mon, 1 Dec 1997 00:59:26 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-12.ix.netcom.com [207.93.143.140]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id AAA21749; Mon, 1 Dec 1997 00:59:05 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id AAA01118; Mon, 1 Dec 1997 00:58:12 -0800 (PST) Date: Mon, 1 Dec 1997 00:58:12 -0800 (PST) Message-Id: <199712010858.AAA01118@silvia.HIP.Berkeley.EDU> To: lol@theshop.net CC: ports@FreeBSD.ORG, wosch@FreeBSD.ORG In-reply-to: <34823E4F.5D9B8CA0@theshop.net> (message from lol on Sun, 30 Nov 1997 22:34:27 -0600) Subject: Re: Wondering From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * Hello, I need to get and learn FreeBSD from scratch, I was wondering how * I should go about doin this. Start with www.freebsd.org? :) Satoshi From owner-freebsd-ports Mon Dec 1 01:00:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA21907 for ports-outgoing; Mon, 1 Dec 1997 01:00:03 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA21880; Mon, 1 Dec 1997 01:00:01 -0800 (PST) (envelope-from gnats) Date: Mon, 1 Dec 1997 01:00:01 -0800 (PST) Message-Id: <199712010900.BAA21880@hub.freebsd.org> To: freebsd-ports Cc: From: asami@cs.berkeley.edu (Satoshi Asami) Subject: Re: ports/5185: Upgrading ruby-1.0 port Reply-To: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR ports/5185; it has been noted by GNATS. From: asami@cs.berkeley.edu (Satoshi Asami) To: FreeBSD-gnats-submit@FreeBSD.ORG, usagi@ruby.club.or.jp Cc: Subject: Re: ports/5185: Upgrading ruby-1.0 port Date: Mon, 1 Dec 1997 00:51:24 -0800 (PST) * - delete @dirrm from PLIST. Why is that? Satoshi From owner-freebsd-ports Mon Dec 1 01:47:00 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA24786 for ports-outgoing; Mon, 1 Dec 1997 01:47:00 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from mail.cs.tu-berlin.de (root@mail.cs.tu-berlin.de [130.149.17.13]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA24781 for ; Mon, 1 Dec 1997 01:46:55 -0800 (PST) (envelope-from wosch@cs.tu-berlin.de) Received: from panke.panke.de (anonymous213.ppp.cs.tu-berlin.de [130.149.17.213]) by mail.cs.tu-berlin.de (8.8.6/8.8.8) with ESMTP id KAA08916; Mon, 1 Dec 1997 10:28:49 +0100 (MET) Received: (from wosch@localhost) by panke.panke.de (8.8.5/8.6.12) id LAA01485; Sun, 30 Nov 1997 11:43:16 +0100 (MET) To: "Justin M. Seger" Cc: ports@FreeBSD.ORG Subject: Re: lynx References: <199711290430.XAA12193@freebsd.scds.com> From: Wolfram Schneider Date: 30 Nov 1997 11:43:13 +0100 In-Reply-To: "Justin M. Seger"'s message of Fri, 28 Nov 1997 23:30:39 -0500 (EST) Message-ID: Lines: 12 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk "Justin M. Seger" writes: > Should we perhaps have a lynx and a lynx-current port? Yes! > It seems that whenever I go to build lynx these days, the distfile > isn't available on any sites because it's out of date. > Any opinions? -- Wolfram Schneider http://www.apfel.de/~wosch/ From owner-freebsd-ports Mon Dec 1 01:52:33 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA25231 for ports-outgoing; Mon, 1 Dec 1997 01:52:33 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from mail.cs.tu-berlin.de (root@mail.cs.tu-berlin.de [130.149.17.13]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA25216 for ; Mon, 1 Dec 1997 01:52:23 -0800 (PST) (envelope-from wosch@cs.tu-berlin.de) Received: from panke.panke.de (anonymous213.ppp.cs.tu-berlin.de [130.149.17.213]) by mail.cs.tu-berlin.de (8.8.6/8.8.8) with ESMTP id KAA09157; Mon, 1 Dec 1997 10:30:30 +0100 (MET) Received: (from wosch@localhost) by panke.panke.de (8.8.5/8.6.12) id KAA00775; Sun, 30 Nov 1997 10:56:15 +0100 (MET) Date: Sun, 30 Nov 1997 10:56:15 +0100 (MET) Message-Id: <199711300956.KAA00775@panke.panke.de> From: Wolfram Schneider To: ports@FreeBSD.ORG reply-to: ports@FreeBSD.ORG Subject: New ports added/updated last two weeks MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Introduction ------------ The FreeBSD Ports Collection offers a simple way for users and administrators to install applications. Each "port" listed here contains any patches necessary to make the original application source code compile and run on FreeBSD. Installing an application is as simple as downloading the port, unpacking it and typing make in the port directory. The Makefile automatically fetches the application source code, either from a local disk or via ftp, unpacks it on your system, applies the patches, and compiles. If all goes well, simply type make install to install the application. For more information about using ports, see the ports collection http://www.freebsd.org/handbook/ports.html and http://www.freebsd.org/ports/ There are currently 1198 ports in the FreeBSD Ports Collection. New ports added last two weeks ------------------------------ Category archivers ================================================== bzip2-0.1p2 A block-sorting file compressor Maintained by: ports@FreeBSD.org Category audio ================================================== cdplay-0.9 Neat cd-player with console user interface Maintained by: anttik@iki.fi Category cad ================================================== kaskade-3.1.1 Adaptive linear scalar elliptic and parabolic problem solver Maintained by: giffunip@asme.org Category chinese ================================================== zh-samba-1.9.17.4 A LanManager(R)-compatible server suite for Unix (config w/ Chinese filename) Maintained by: vanilla@MinJe.com.TW Also listed in: net Category comms ================================================== conserver-5.21 Manage remote serial consoles via TCP/IP Maintained by: peter@FreeBSD.org pilot-link-0.8.7 PalmPilot communications utilities (backup/restore/install/debug/...) Maintained by: ports@freebsd.org Also listed in: tk80 Requires: perl-5.00404, tcl-8.0, tk-8.0 Category devel ================================================== electricfence-2.0.5 A debugging malloc() that uses the VM hardware to detect buffer overruns. Maintained by: jraynard@freebsd.org prc-tools-0.5.0 Development environment for PalmPilot(tm) handheld computer. Maintained by: ports@freebsd.org Requires: perl-5.00404 Category emulators ================================================== hfsutils-2.0 Yet Another HFS Utility Maintained by: vanilla@MinJe.com.TW Requires: tcl-8.0, tk-8.0 xcopilot-0.4.8 Emulator for US Robotics Pilot PDA Maintained by: nsayer@quack.kfu.com Requires: xpm-3.4j xzx-2.2.1 ZX Spectrum (48K/128K/+3) Emulator for X11 Windows Maintained by: axl@iafrica.com Also listed in: x11 Category games ================================================== xjig-2.4 jigsaw puzzle game for X11 Maintained by: vanilla@MinJe.com.TW Category japanese ================================================== ja-zipcodes-1.0 japanese zipcode tables. includes both 3/5 and 7 digits form. Maintained by: itojun@itojun.org Requires: ja-nkf-1.62, lha-1.14c Category lang ================================================== atlast-1.0 Autodesk Threaded Language Application System Toolkit Maintained by: pgiffuni@FPS.biblos.unal.edu.co hugs-1.4 Nottingham's and Yale's Haskell interpreter/programming environment. Maintained by: Torsten.Grust@uni-konstanz.de yorick-1.4.1 An Interpreted Language for Scientific Computing Maintained by: giffunip@asme.org Also listed in: math Category mail ================================================== tkrat-1.0.5 An advanced scriptable GUI Mail UA for X-, Win32 and Mac Maintained by: bgingery@gtcs.com Also listed in: tk80 Requires: imap-uw-4.1b, tcl-8.0, tk-8.0 Category math ================================================== p5-MatrixReal-1.2 A perl module implementing a Matrix of Reals. Maintained by: sander@haldjas.folklore.ee Also listed in: perl5 Requires: perl-5.00404 Category misc ================================================== display-1.0 runs a specified command over and over. Maintained by: ports@FreeBSD.ORG Requires: sharutils-4.2 xinvest-2.5.1 A personal finance tracking and performance tool Maintained by: ports@FreeBSD.org Requires: xpm-3.4j Category net ================================================== cvsup-bin-15.2 A network file distribution and update system for CVS repositories. Maintained by: axl@iafrica.com Also listed in: devel kirc-0.3.2 KDE project's IRC client Maintained by: andreas@FreeBSD.ORG Also listed in: kde Requires: giflib-3.0, gmake-3.76.1, jpeg-6a, kdelibs-1.2b, qt-1.31 lftp-0.12.2 Shell-like command line ftp client Maintained by: andy@icc.surw.chel.su ttt-0.4.1 Tele Traffic Tapper, a network traffic monitoring tool Maintained by: itojun@itojun.org Requires: blt-2.1, tcl-7.5.1, tk-4.1.1 Category news ================================================== ifmail-2.10 FidoNet(tm) support package for UN*X platform Maintained by: dirk.meyer@dinoex.sub.org Category plan9 ================================================== wily-0.13.36 A clone of the Plan9 editor `acme'. Maintained by: koshy@india.hp.com Also listed in: editors Category sysutils ================================================== asrpages-0.1 alt.sysadmin.recovery manpage collection Maintained by: axl@iafrica.com xosview-1.5.0 A graphical performance meter Maintained by: handy@physics.montana.edu Also listed in: x11 Category textproc ================================================== c2html-0.1 C-language sources to HTML converter Maintained by: andy@icc.surw.chel.su Also listed in: www texi2html-1.51 Texinfo to HTML converter Maintained by: i.vaudrey@cableinet.co.uk Category www ================================================== netscape-communicator-4.04 netscape ver 4 communicator web-surfboard Maintained by: ache@FreeBSD.ORG netscape-navigator-4.04 netscape ver 4 navigator web-surfboard Maintained by: asami@FreeBSD.ORG vrweb-1.5 a browser for a VRML 1.0 format file Maintained by: Nakai@Mlab.t.u-tokyo.ac.jp Requires: gmake-3.76.1 Category x11 ================================================== amiwm-0.20p28 A window manager that makes your desktop look like an Amiga(TM). Maintained by: ports@FreeBSD.org icewm-0.8.6 cool window manager developped in a very hot day in a winter Maintained by: Nakai@Mlab.t.u-tokyo.ac.jp tkstep-8.0 The Tk toolkit with a NeXTSTEP look and more. Maintained by: tg@FreeBSD.ORG Also listed in: tk80 Requires: jpeg-6a, tcl-8.0, tiff-3.4, xpm-3.4j tycoon-1.07o A nifty set of desktop apps, including floating buttons Maintained by: steve@farrell.org Requires: xforms-0.86 xaniroc-1.02 Animate your root-cursor. Maintained by: sec@42.org xtide-1.6.2 Harmonic tide clock and tide predictor Maintained by: brion@queeg.com Updated ports last two weeks ----------------------------------- Category archivers ================================================== unzip+crypt-5.3.2 List, test and extract compressed files in a ZIP archive, with encryption. Maintained by: ache@FreeBSD.ORG unzip-5.3.2 List, test and extract compressed files in a ZIP archive. Maintained by: ache@FreeBSD.ORG Category audio ================================================== s3mod-1.09 MOD/S3M player. Maintained by: ugen@FreeBSD.org Category chinese ================================================== zh-ted-4.0g A Small and Powerful Text Editor for X Window with big5 support Maintained by: vanilla@MinJe.com.TW Also listed in: editors Category databases ================================================== db-2.3.12 the Berkeley DB package, revision 2 Maintained by: josh@ican.net Category devel ================================================== portlint-1.60 a verifier for FreeBSD port directory. Maintained by: itojun@itojun.org tclcheck-1.1.11 A program to check the nesting of parenthesis in tcl scripts. Maintained by: sander@haldjas.folklore.ee Category editors ================================================== nedit-5.0 An X11/Motif GUI text editor for programs and plain text files. Maintained by: deischen@iworks.InterWorks.org Also listed in: x11 Requires: xpm-3.4j vim-5.0r A vi "workalike", with many additional features. Maintained by: obrien@FreeBSD.org xemacs-19.16 XEmacs text editor binaries Maintained by: me@FreeBSD.org Requires: gmake-3.76.1, jpeg-6a, png-0.96, xpm-3.4j Category games ================================================== xcubes-5.4.3 cube puzzle for X-Window Maintained by: Nakai@Mlab.t.u-tokyo.ac.jp xdino-5.4.3 dino puzzle game for X-Window Maintained by: Nakai@Mlab.t.u-tokyo.ac.jp xfrisk-0.99c09 A multi-player networked Risk game for X11. Maintained by: mph@pobox.com xkobo-1.11 Multi-way scrolling shoot 'em up game for X. Strangely addictive. Maintained by: ports@FreeBSD.ORG xrubik-5.4.3 X-based rubik's cube(tm) Maintained by: nakai@mlab.t.u-tokyo.ac.jp xshisen-1.36 Shisen-sho puzzle game for X11 Maintained by: Nakai@Mlab.t.u-tokyo.ac.jp Requires: xpm-3.4j xtriangles-5.4.3 Triangles puzzle Maintained by: Nakai@Mlab.t.u-tokyo.ac.jp Category graphics ================================================== Mesa-2.5 A graphics library similar to SGI's OpenGL. Maintained by: jseger@FreeBSD.ORG imlib-0.7 a graphic library for enlightenment package Maintained by: vanilla@MinJe.com.TW Requires: ImageMagick-3.9.1, gmake-3.76.1, jbigkit-0.9, jpeg-6a, mpeg_lib-1.2.1, netpbm-94.3.1, png-0.96, tiff-3.3, tiff-3.4 Category japanese ================================================== ja-hex-2.03 A hexadecimal dump tool which handles Japanese. Maintained by: yu@pastel.club.or.jp Category lang ================================================== eperl-2.2.8 Embedded Perl 5 Language Maintained by: rse@engelschall.com Also listed in: www perl5 Requires: perl-5.00404 guavac-1.0 Guavac, a java compiler and decompiler developed under GPL. Maintained by: Nakai@Mlab.t.u-tokyo.ac.jp Requires: gmake-3.76.1 p5-ePerl-2.2.8 Perl Modules of ePerl package: Parse::ePerl, Apache::ePerl Maintained by: rse@engelschall.com Also listed in: www perl5 Requires: perl-5.00404 perl-5.00404 Pattern Extraction and Recognition Language. Maintained by: markm@FreeBSD.ORG Also listed in: devel perl5 Category mail ================================================== adcomplain-2.78 complain about inappropriate commercial use (f.e. SPAM) of usenet/e-mail Maintained by: ache@FreeBSD.org Also listed in: news cucipop-1.21 Cubic Circle's POP3 daemon (fully RFC1939 compliant). Maintained by: igor@zynaps.ru mutt-pgp-0.88 "The Mongrel of Mail User Agents" (part Elm, Pine, mh) Maintained by: obrien@FreeBSD.org mutt-0.88 "The Mongrel of Mail User Agents" (part Elm, Pine, mh) Maintained by: obrien@FreeBSD.org qpopper-2.41b1 Berkeley POP 3 server (now maintained by Qualcomm). Maintained by: ache@freebsd.org Category misc ================================================== fd-1.03e A file and directory management tool Maintained by: nobu@psrc.isac.co.jp rpm-2.4.10 The Red Hat Package Manager Maintained by: tg@FreeBSD.ORG Requires: gdbm-1.7.3, gmake-3.76.1 Category net ================================================== p5-Net-DNS-0.12 perl5 interface to the DNS resolver Maintained by: jfitz@FreeBSD.ORG Also listed in: perl5 Requires: perl-5.00404 p5-Net-1.0602 perl5 modules to access and use network protocols. Maintained by: jfitz@FreeBSD.ORG Also listed in: perl5 Requires: p5-Data-Dumper-2.07, perl-5.00404 tf-4.0a3 A popular programmable MUD client, with macro support and more. Maintained by: jseger@FreeBSD.org Also listed in: games zircon-1.18.71 An X11 interface to Internet Relay Chat. Maintained by: ports@FreeBSD.org Also listed in: tk80 Requires: tcl-8.0, tk-8.0 Category www ================================================== apache-1.3b3 The extremely popular Apache http server. Very fast, very clean. Maintained by: ache@freebsd.org harvest-1.5 Collect information from all over the Internet Maintained by: andreas@FreeBSD.ORG lynx-2.7.1ac-0.96 An alphanumeric display oriented World-Wide Web Client. Maintained by: ache@FreeBSD.ORG netscape-3.04 netscape ver 3 web-surfboard (regular or gold) Maintained by: ports@FreeBSD.ORG p5-libwww-5.16 perl5 library for WWW access. Maintained by: jfitz@FreeBSD.ORG Also listed in: perl5 devel Requires: p5-Data-Dumper-2.07, p5-MD5-1.7, p5-MIME-Base64-2.03, p5-Net-1.0602, perl-5.00404 wml-1.3.5 Website META Language, a webdesigner's toolkit for HTML generation Maintained by: rse@engelschall.com Also listed in: lang Requires: perl-5.00404 Category x11 ================================================== ctwm-3.5b3 An extension to twm, with support for multiple virtual screens, etc. Maintained by: torstenb@FreeBSD.ORG Requires: xpm-3.4j enlightenment-0.12.6 a very artistic X window manager. Maintained by: vanilla@MinJe.com.TW Requires: ImageMagick-3.9.1, gmake-3.76.1, imlib-0.7, jbigkit-0.9, jpeg-6a, mpeg_lib-1.2.1, netpbm-94.3.1, png-0.96, tiff-3.3, tiff-3.4 eterm-0.6a2 X-Windows terminal emulator based on rxvt/xterm Maintained by: murray@cdrom.com Requires: ImageMagick-3.9.1, gmake-3.76.1, imlib-0.7, jbigkit-0.9, jpeg-6a, mpeg_lib-1.2.1, netpbm-94.3.1, png-0.96, tiff-3.3, tiff-3.4 gtk-971109 General Toolkit for X11 GUI. Maintained by: vanilla@MinJe.com.TW Requires: gmake-3.76.1 lesstif-0.82 API compatible clone of the Motif toolkit. Maintained by: ports@FreeBSD.org tkgoodstuff-8.0 TkGoodstuff module for fvwm2 window manager - requires XPM and fvwm2 Maintained by: pst@FreeBSD.org Requires: fvwm-2.0.46, tcl-8.0, tk-8.0, xpm-3.4j xdaliclock-2.10 A rather neat animated clock. Maintained by: gpalmer@FreeBSD.ORG xlockmore-4.06.1 Like XLock session locker/screen saver, but just more. Maintained by: tg@FreeBSD.ORG Requires: xpm-3.4j _________________________________________________________________ © 1996-1997 by Wolfram Schneider. All rights reserved. Please direct questions about this service to wosch@FreeBSD.org General questions about FreeBSD ports should be sent to ports@FreeBSD.org Last database update: 1997-11-25 11:35:13 UTC _________________________________________________________________ This information was produced by http://www.freebsd.org/cgi/ports.cgi -- Wolfram Schneider http://www.apfel.de/~wosch/ From owner-freebsd-ports Mon Dec 1 02:55:28 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA29321 for ports-outgoing; Mon, 1 Dec 1997 02:55:28 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-12.ix.netcom.com [207.93.143.140]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id CAA29306 for ; Mon, 1 Dec 1997 02:55:24 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id CAA16929; Mon, 1 Dec 1997 02:53:46 -0800 (PST) Date: Mon, 1 Dec 1997 02:53:46 -0800 (PST) Message-Id: <199712011053.CAA16929@silvia.HIP.Berkeley.EDU> To: wosch@cs.tu-berlin.de CC: jseger@freebsd.scds.com, ports@FreeBSD.ORG In-reply-to: (message from Wolfram Schneider on 30 Nov 1997 11:43:13 +0100) Subject: Re: lynx From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * > Should we perhaps have a lynx and a lynx-current port? * * Yes! Me too! Should I do a repository copy? lynx and lynx-current? I'm assuming ache is going to take care of lynx-current, will you (Justin) maintain lynx? Satoshi From owner-freebsd-ports Mon Dec 1 03:06:16 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id DAA29970 for ports-outgoing; Mon, 1 Dec 1997 03:06:16 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from rodent.cpt.tech.iafrica.com (root@rodent.iafrica.com [196.31.1.10]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id DAA29798 for ; Mon, 1 Dec 1997 03:01:53 -0800 (PST) (envelope-from markm@rodent.cpt.tech.iafrica.com) Received: from rodent.cpt.tech.iafrica.com (markm@localhost [127.0.0.1]) by rodent.cpt.tech.iafrica.com (8.8.8/8.8.8) with ESMTP id NAA12573 for ; Mon, 1 Dec 1997 13:00:32 +0200 (SAT) (envelope-from markm@rodent.cpt.tech.iafrica.com) Message-Id: <199712011100.NAA12573@rodent.cpt.tech.iafrica.com> X-Mailer: exmh version 2.0zeta 7/24/97 To: ports@freebsd.org Subject: What is up with databases/p5-DBD-mysql? Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 01 Dec 1997 13:00:32 +0200 From: Mark R V Murray Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi all What is happening with p5-DBD-mysql? There is an entry for it in ports/ databases/Makefile, but the port itself has been pushed into the attic. It this an incomplete delete, or a mistaken delete? I can find no helpful logs. I would like to use the port. M -- Mark Murray Senior Network Engineer, UUNET Internet Africa Join the anti-SPAM movement: http://www.cauce.org From owner-freebsd-ports Mon Dec 1 04:17:15 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id EAA03448 for ports-outgoing; Mon, 1 Dec 1997 04:17:15 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freebsd.scds.com (jseger.shore.net [204.167.102.1]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id EAA03425 for ; Mon, 1 Dec 1997 04:17:09 -0800 (PST) (envelope-from jseger@freebsd.scds.com) Received: (from jseger@localhost) by freebsd.scds.com (8.8.7/8.8.5) id HAA17578; Mon, 1 Dec 1997 07:38:04 -0500 (EST) Date: Mon, 1 Dec 1997 07:38:04 -0500 (EST) From: "Justin M. Seger" Message-Id: <199712011238.HAA17578@freebsd.scds.com> To: asami@cs.berkeley.edu, wosch@cs.tu-berlin.de Subject: Re: lynx Cc: jseger@freebsd.scds.com, ports@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Me too! Should I do a repository copy? lynx and lynx-current? I'm > assuming ache is going to take care of lynx-current, will you (Justin) > maintain lynx? Sure, I'll take care of that, as well as isc-dhcp2 tonight if the copies are both done. -Justin Seger- From owner-freebsd-ports Mon Dec 1 04:40:50 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id EAA05108 for ports-outgoing; Mon, 1 Dec 1997 04:40:50 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-12.ix.netcom.com [207.93.143.140]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id EAA05101 for ; Mon, 1 Dec 1997 04:40:47 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id EAA18755; Mon, 1 Dec 1997 04:39:50 -0800 (PST) Date: Mon, 1 Dec 1997 04:39:50 -0800 (PST) Message-Id: <199712011239.EAA18755@silvia.HIP.Berkeley.EDU> To: jseger@freebsd.scds.com CC: wosch@cs.tu-berlin.de, jseger@freebsd.scds.com, ports@FreeBSD.ORG In-reply-to: <199712011238.HAA17578@freebsd.scds.com> (jseger@freebsd.scds.com) Subject: Re: lynx From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * Sure, I'll take care of that, as well as isc-dhcp2 tonight if the copies are * both done. Ok, done. Satoshi From owner-freebsd-ports Mon Dec 1 08:51:45 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA20457 for ports-outgoing; Mon, 1 Dec 1997 08:51:45 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id IAA20436 for ; Mon, 1 Dec 1997 08:51:36 -0800 (PST) (envelope-from bde@zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.6.9) id DAA28955; Tue, 2 Dec 1997 03:46:49 +1100 Date: Tue, 2 Dec 1997 03:46:49 +1100 From: Bruce Evans Message-Id: <199712011646.DAA28955@godzilla.zeta.org.au> To: asami@cs.berkeley.edu, Studded@dal.net Subject: Re: Question/suggestion re pine port Cc: bde@zeta.org.au, ports@freebsd.org Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Speaking of which, why is it that we ship the system with CFLAGS in >/etc/make.conf commented out? Shouldn't hurt to have a reasonable >default, no? (Note CC: line. :) The reasonable default is in sys.mk. Bruce From owner-freebsd-ports Mon Dec 1 10:04:50 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA27140 for ports-outgoing; Mon, 1 Dec 1997 10:04:50 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA26802 for ports@freebsd.org; Mon, 1 Dec 1997 10:01:17 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 1 Dec 1997 10:01:17 -0800 (PST) Message-Id: <199712011801.KAA26802@hub.freebsd.org> From: FreeBSD bugmaster To: ports Subject: Current problem reports assigned to you Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Current FreeBSD problem reports Critical problems Serious problems Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1997/11/13] kern/5034 ports (tcsh) blocked write on named pipe sticks 1 problem total. From owner-freebsd-ports Mon Dec 1 10:08:16 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA27541 for ports-outgoing; Mon, 1 Dec 1997 10:08:16 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA26586 for freebsd-ports@freebsd.org; Mon, 1 Dec 1997 10:00:40 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 1 Dec 1997 10:00:40 -0800 (PST) Message-Id: <199712011800.KAA26586@hub.freebsd.org> From: FreeBSD bugmaster To: FreeBSD ports list Subject: Current unassigned ports problem reports Sender: owner-freebsd-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 Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [1996/12/22] ports/2268 ports libc from linux emulator does not use /et o [1997/03/07] ports/2918 ports Unable to pass 8+ command line arguments f [1997/03/11] ports/2956 ports New Port: xgospel-1.10d in ftp.freebsd.or o [1997/09/30] ports/4662 ports Ports Additions: upsd-2.0 o [1997/10/07] ports/4724 ports teTeX-0.4 port, make install fails - not o [1997/10/16] ports/4781 ports installation of teTeX overwrites the mp e o [1997/10/19] ports/4803 ports xgrabsc dies with "bus error" after selec o [1997/10/24] ports/4846 ports Install option for HTML docs does not wor o [1997/10/27] ports/4865 ports xdm doesn't set env variables o [1997/11/17] ports/5079 ports /usr/ports/x11/auis/patches needs updatin o [1997/11/19] ports/5093 ports gated 3-5-7 exited on signal 11 o [1997/11/20] ports/5106 ports Perl5 is not listed as an install option 12 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1996/07/21] ports/1416 ports cflow(1) doesn't parse GNU C __attribute_ f [1996/12/08] ports/2182 ports FreeBSD's and X-32's list of locales do n f [1997/01/24] ports/2571 ports Maxima lacks pkg directory o [1997/03/13] ports/2974 ports updated Makefile and patch-ab of jp-dvi2p a [1997/03/21] ports/3052 ports /usr/ports/lang/expect does not find tkCo o [1997/04/01] ports/3169 ports nn port broken o [1997/04/17] ports/3318 ports New port: jigsaw (Java-based HTTP server) a [1997/04/19] ports/3335 ports new port request of korean/hanemacs o [1997/04/25] ports/3383 ports kaffe core dumps if LD_LIBRARY_PATH not s f [1997/05/14] ports/3597 ports jp-groff-0.99 port macro update o [1997/05/21] ports/3657 ports Port of NCSA HyperNews submitted as p5-hy f [1997/06/14] ports/3870 ports Upgrade tkdesk 1.0b3 --> 1.0b4 o [1997/06/22] ports/3928 ports New port: jp-pgp-2.6.3ia (language) o [1997/06/23] ports/3939 ports new port: latex2html_icon_server o [1997/06/30] ports/3991 ports set of OffiX ports o [1997/07/02] ports/4014 ports package/port installation obeys roots uma o [1997/07/03] ports/4025 ports New port - jp-ebw3 o [1997/07/09] ports/4067 ports wrong formats of files in offix.tar o [1997/07/16] ports/4103 ports Should I or should I not ? o [1997/07/30] ports/4192 ports New port: Amulet o [1997/08/04] ports/4227 ports cops perl script produces errors o [1997/08/10] ports/4263 ports new ports: jp-vfxdvik-18f (dvi viewer for o [1997/08/10] ports/4264 ports mftp get a Segmentation fault o [1997/08/12] ports/4281 ports Compress pcl graphics files - this is an o [1997/08/14] ports/4304 ports Recommendation re. Ports Collection o [1997/08/18] ports/4330 ports new ports for rxvt with big5 support s [1997/08/22] ports/4360 ports new port of Amaya-1.0b o [1997/08/23] ports/4362 ports submit new port chinese/rxvt f [1997/08/25] ports/4377 ports bkpupsd [device] o [1997/08/26] ports/4391 ports New port: VPCE o [1997/08/28] ports/4412 ports New port: YaTeX (in print and japanese) o [1997/09/12] ports/4521 ports 'Joe' editor does not show control-chars o [1997/09/17] ports/4565 ports News port: ircII-current (ircII-2.9a8/col o [1997/09/21] ports/4595 ports Lynx tarball missing from ftp.freebsd.org o [1997/09/21] ports/4596 ports nas port fails build on 2.2-STABLE a [1997/09/24] ports/4620 ports update xinetd to 2.2.1 o [1997/09/24] ports/4621 ports New port: xtris [category games] o [1997/09/25] ports/4631 ports New port: ncurses-1.9.9g o [1997/09/28] ports/4643 ports new port - japanese-english dictionary o [1997/09/28] ports/4644 ports This is a new port xfig -international ba o [1997/09/29] ports/4656 ports New port: sidplay (category emulators) o [1997/09/30] ports/4658 ports yet another X11 utility added -- XDiary o [1997/09/30] ports/4664 ports New port sendfile-1.6 (category net) o [1997/10/06] ports/4707 ports new-port : ja-mtools-3.6 (manipulating MS o [1997/10/08] ports/4726 ports new port developed(X11 japanese font) o [1997/10/09] ports/4733 ports new port of cfengine o [1997/10/09] ports/4734 ports Ports of NDTPD-1.0.2 and BookView-1.0.4 o [1997/10/12] ports/4744 ports New port: pnmtopng o [1997/10/13] ports/4759 ports New port: ja-xnetmaj o [1997/10/14] ports/4762 ports New port: aalib-1.0 o [1997/10/14] ports/4767 ports New port: cftp-0.7 o [1997/10/14] ports/4769 ports msql-2.0.3 ported o [1997/10/15] ports/4770 ports New port: Xitami HTTP Server o [1997/10/16] ports/4777 ports New port: le-1.4.0 o [1997/10/17] ports/4788 ports New port xd-2.3(misc/xd). o [1997/10/17] ports/4791 ports i can't make install on mc-4.1 port o [1997/10/19] ports/4809 ports Update port: tkdesk 1.03b -> 1.04b o [1997/10/20] ports/4811 ports patch-file corrections for faces and xfac o [1997/10/21] ports/4819 ports New port: libhelp o [1997/10/21] ports/4820 ports New port: seabattle-1.0 o [1997/10/23] ports/4839 ports New port - spin - Verification system for o [1997/10/27] ports/4870 ports New port p5-Gtk o [1997/10/28] ports/4878 ports Apache w/FrontPage Module Port o [1997/10/29] ports/4885 ports Create a new ports about cqcam-0.45.tar.g o [1997/10/29] ports/4889 ports new port for ntimelord-1.0 o [1997/11/02] ports/4919 ports -s option description is present twice in o [1997/11/02] ports/4920 ports New math port: METIS o [1997/11/04] ports/4933 ports New port: cgihtml library o [1997/11/04] ports/4935 ports audio/nas port fails build + fix o [1997/11/04] ports/4937 ports A looks-nice audio level meter port is no o [1997/11/04] ports/4941 ports New port: nslint 2.0a2 o [1997/11/06] ports/4958 ports installing mutt port failes if sgmlfmt is o [1997/11/07] ports/4967 ports I have ported Carl DeClerck's mserver-0.2 o [1997/11/07] ports/4974 ports New port: YODL, Yet Oneother Document Lan o [1997/11/08] ports/4979 ports port for Eval-113 o [1997/11/08] ports/4980 ports NEW PORT: netscape3-us (Netscape Nav with o [1997/11/09] ports/4985 ports NEW PORT: www/htmlpp htmlpp-3.9, a WWW au o [1997/11/09] ports/4986 ports NEW PORT: comms/atp - ATP 1.50, a BBS QWK o [1997/11/11] ports/5014 ports Mysql package does not install correctly o [1997/11/12] ports/5020 ports patch-aa AND checksum for xmysql 1.5 are o [1997/11/14] ports/5042 ports New port: unpost-2.3.4 o [1997/11/14] ports/5045 ports freebsd.ftp.markers for xearth is out of o [1997/11/16] ports/5066 ports New port rxvt for Chinese category o [1997/11/17] ports/5075 ports Update: print/c2ps to 4.0 o [1997/11/17] ports/5078 ports make clean complains about p5-DBD-mysql M o [1997/11/17] ports/5080 ports Apache-1.2.4: Improved rc.d script o [1997/11/18] ports/5083 ports New port: zh-pine-3.96 o [1997/11/18] ports/5086 ports new port: elisp-manual.tar.gz o [1997/11/18] ports/5087 ports new port: emacs-lisp-intro.tar.gz o [1997/11/19] ports/5094 ports change fvwm95's ftp directory o [1997/11/20] ports/5104 ports New port: sis-1.2pl1 o [1997/11/20] ports/5111 ports New port of cooledit-3.5.2 o [1997/11/20] ports/5115 ports Update xbuffy to 3.3 o [1997/11/21] ports/5120 ports Update to BLAS lib. (math port) o [1997/11/23] ports/5131 ports New math port: SuperLU o [1997/11/24] ports/5138 ports GNAT port is out of date o [1997/11/26] ports/5157 ports update to eterm port o [1997/11/26] ports/5158 ports thot editor port doesn't install template o [1997/11/27] ports/5161 ports new port: p5-DBD-Mysql o [1997/11/27] ports/5162 ports port submission: catdoc o [1997/11/27] ports/5164 ports New ports o [1997/11/27] ports/5167 ports New port ja-vftool-1.2(japanese/vftool). o [1997/11/29] ports/5175 ports NEW PORT: news/xmitBin, a binary files au o [1997/11/29] ports/5177 ports Not enought argument in script of databas o [1997/11/30] ports/5179 ports New port ja-dvipsk-5.66a (japanese/dvipsk o [1997/11/30] ports/5184 ports Port of S-Plus like language R 106 problems total. From owner-freebsd-ports Mon Dec 1 11:54:17 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA08794 for ports-outgoing; Mon, 1 Dec 1997 11:54:17 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id LAA08721; Mon, 1 Dec 1997 11:53:44 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id LAA14998; Mon, 1 Dec 1997 11:53:05 -0800 (PST) Date: Mon, 1 Dec 1997 11:53:05 -0800 (PST) Message-Id: <199712011953.LAA14998@freefall.freebsd.org> To: yssu@netflow.nctu.edu.tw, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5083 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port: zh-pine-3.96 State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Mon Dec 1 11:51:43 PST 1997 State-Changed-Why: Committed. thanks. From owner-freebsd-ports Mon Dec 1 13:59:36 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id NAA23939 for ports-outgoing; Mon, 1 Dec 1997 13:59:36 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from fenner@localhost) by hub.freebsd.org (8.8.7/8.8.7) id NAA23920; Mon, 1 Dec 1997 13:59:31 -0800 (PST) (envelope-from fenner) Date: Mon, 1 Dec 1997 13:59:31 -0800 (PST) From: Bill Fenner Message-Id: <199712012159.NAA23920@hub.freebsd.org> To: fenner, ports, freebsd-ports Subject: Re: kern/5034 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: (tcsh) blocked write on named pipe sticks in uninterruptible sleep Responsible-Changed-From-To: ports->freebsd-ports Responsible-Changed-By: fenner Responsible-Changed-When: Mon Dec 1 13:59:05 PST 1997 Responsible-Changed-Why: The "freebsd-" is required. From owner-freebsd-ports Mon Dec 1 18:50:31 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id SAA17492 for ports-outgoing; Mon, 1 Dec 1997 18:50:31 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from megaweapon.zigg.com (tcgr-148.dialup.alliance.net [207.74.43.148]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id SAA17483; Mon, 1 Dec 1997 18:50:25 -0800 (PST) (envelope-from matt@megaweapon.zigg.com) Received: from localhost (matt@localhost) by megaweapon.zigg.com (8.8.7/8.8.7) with SMTP id VAA23632; Mon, 1 Dec 1997 21:54:53 -0500 (EST) (envelope-from matt@megaweapon.zigg.com) Date: Mon, 1 Dec 1997 21:54:52 -0500 (EST) From: Matt Behrens To: jmz@freebsd.org, ports@freebsd.org Subject: patch for dvips port Makefile to fix install problem Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-819308407-881031292=:23630" Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-819308407-881031292=:23630 Content-Type: TEXT/PLAIN; charset=US-ASCII Attached is a patch to the Makefile for dvips to fix the install problem I reported earlier. It's merely a missing directory that needs to be created. Matt Behrens | Help bring a free realtime communication http://www.zigg.com/ | system to the Internet. Join the NetPager matt@zigg.com | Project! http://www.zigg.com/netpager/ --0-819308407-881031292=:23630 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=patch Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: patch for /usr/ports/print/dvips/Makefile MjRjMjQNCjwgCUAke01LRElSfSAke1BSRUZJWH0vc2hhcmUvdGV4bWYvZm9u dHMvdmYgICR7UFJFRklYfS9zaGFyZS90ZXhtZi90ZXgvbGF0ZXgNCi0tLQ0K PiAJQCR7TUtESVJ9ICR7UFJFRklYfS9zaGFyZS90ZXhtZi9mb250cy92ZiAg JHtQUkVGSVh9L3NoYXJlL3RleG1mL2ZvbnRzL3RmbSAgJHtQUkVGSVh9L3No YXJlL3RleG1mL3RleC9sYXRleA0K --0-819308407-881031292=:23630-- From owner-freebsd-ports Mon Dec 1 20:20:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id UAA24840 for ports-outgoing; Mon, 1 Dec 1997 20:20:05 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id UAA24800; Mon, 1 Dec 1997 20:20:01 -0800 (PST) (envelope-from gnats) Date: Mon, 1 Dec 1997 20:20:01 -0800 (PST) Message-Id: <199712020420.UAA24800@hub.freebsd.org> To: freebsd-ports Cc: From: "Daniel M. Eischen" Subject: Re: ports/5138: GNAT port is out of date Reply-To: "Daniel M. Eischen" Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR ports/5138; it has been noted by GNATS. From: "Daniel M. Eischen" To: freebsd-gnats-submit@freebsd.org, deischen@iworks.InterWorks.org Cc: Subject: Re: ports/5138: GNAT port is out of date Date: Mon, 01 Dec 1997 23:13:54 -0500 I modified the GNAT port to work for recent changes in FreeBSDs libc_r. These changes were introduced into 3.0-current around 11/25/97, before GNAT-3.10p was first submitted. Please disregard the diffs posted in the previous port upgrade request and use this diff. Thanks, Dan Eischen deischen@iworks.InterWorks.org begin 664 gnat.diffs.gz M'XL("(2)@S0``V=N870N9&EF9G,`W#W[;]M&DS\G?\4V=T"EAI(EV9+\J+]^ MBNVD1AP[L)3T[G``09,KFPU%ZN/#KGKH_WXS^UX^9"EQFMP)"&J1N[.S,[/S M7C4(YW/2\5-R&WMY9[?;.]AYYWVB\S"B[)'Z]ORGGWZJ&?1LZN5D2I>$C,A@ M<-CK'?;V2/_@8/R\T^G8$)Y-BYA<)O>D/R+]WF%_>#@8\*$_V1^V5'_D#,:$ M?27DWXB?Q/,H]'/R$.9W),GO**#L^^3&RVA`EFD2%'Z>=PN: M$=^+R0W%]_=A``.++(QO&7DW=DQX1^U MWTZ6^O#^_=LWYFO]'J:?3&9G;ZZNS\^FQ\\BCZWR;C*=G5V[T_,9/(3A\WQY MN+/C9]UX571I4.PLBYL=1B/RWS#\V3,^8)G29=<+NXLP-T85`K_7YQ<<6AF_ M;NZEW=L_D2R=07?<'73[XA%N#K$YOYS!O[/KXV<+KTA#G_XSHS`O%0MUO0)' M(N,X]>&OSK>G?K^W7$]^&/!MZ2\P?"H&U!V'O7UG>""/P[-_4O\N(2^.CX__ M07_^U8^!\Q(D!VV.`2&=.?H:1[R>SDU_96/:X,X?5;K(`)AZ1]O-.":G7 MX1^(DK%N":T7.,5$8WI]\M<.4!&7[SR^/)(>%RY3XSV^Q:4_=^L_5-DO2>>Z!,@+/`+_.!!VZ)#'(WGHOD,>?R-2]Y^:UD'5YJ%] MRG:&\S!>>`D<_N"&VZ[J\Y(=K`ZP+&+_<&]P.!B6+&+-I'<)MXV#/=)CMK&W MO\8V@GKNPTBA#OAGF7JW"X],,E`I.6E=TZR(FH$(<`C&F643.^*/$@> M8M)Z\>;RP\7%.7GMA5&14D`Q"V^](,AH_J+=/E)S!;C#8V":6C&_2ZD7N#!C MX66?2&MZ_L9]=7%U\M8A[^#!CQ/?IUGFD+B((@-6,Z8_;(5I:7V-+XT#,N/O M7D6)_\D]CW.:IL4R/^*:F-LX045QX+X3*KHPIXF27Y^&KH7QXW2LED\LG_/-Y'-*P&'W@=W-:4UH[AT"C)9TOF49-*"9I'JZQ.I*F&?3:A:^1KO._W]4:U\ M/;UTH5S]782SB?9F#=&:=9X@3IU4/85,)=],J)**5&U-H+5.;;[PXCJG5CYO M=&KE@*V<6C5I.Z=V?^CT#TJJ%3YO*5V"_D8ZT8"TSO[PZ3(/DUB3)R.M\W8; M.3I+"WID3M8VBY@?-'`^`C'XQCZM:0B;B=8LXQ"8J3R')`I<_;UMK;V)-=Y0 M7A2^ED%&.8F29'G$3P>CW\`^'=\Y_ M*_V\X5CI`5L<*V.2>:S&<*8.!VN.U7CL[`_XH4*8\-6(>5@ZSU2<1Z0`@EE/ MGF.$[G_R;BFY28(5F:ZRG"ZZ5U-7#2-AALKI)9)N7L2,GN0L3>.$I#0OTI@` M[CCHI:!OOEI2?.8N\Q2>@T@@DXD7181I[I=$#57PLQ%^REE`ZV.X$H?\KV!.($ MJMRMVYA\I7>GME;C8TAT6G?)`WI,@BSB^(&=@F<"N`3X[2.5096P*>*![&.7Y9C"-MP"`,B7&?%MQI2;\"0 MY#&.B-T_!4>2K5ABTKN.'TT8;]$V'4]",+N;D3C)T5($Q(/8QD\6"PH;"SI)D=>- MS(HE+@'#`9G\#O1BQHP(N?/N*7%=',D2R/=>5%#NS8@M6^S>8LMEZU/:)[0!U)PDYSGA9^[BJO1QY";KQ*+^N,6&F(S`.R)572DN'F)W&6>S&+ MM/I']7L>]IS!T(QV36TH/$RI!^$)@N4.IG;58)1IFBKX20\SP8&-X]H2GBDQ MS1J13X*#8KB/1S*O/!@"XX8FX[[ZKNHX]U1;JF7<:-<9C/8-81WM.8/Q0=V> M8R].L@B"$-)*_Y4O'9(N\J7>6QXN:+:D?GLC1!4P0%3]+1#5@NQCKB\,7/0Y M`4AX[^546_D3%%'W^FQR,3N'8VE(JII7XQ*P=Z@6$6'E"_"G88!0S,G\`_LD MXJ26=ULVE=H*5S=M+0T;M[YS"URBN6D76[,IK*_)+!:4[TND%HK1`-`L!;L@ M!;NF%.R.]YS=`SLIO0%32]:_WLN0#$;%^QLE`?4C5,WY0T(>4F^YI&G&-&P% M&-AA^*S`FY`;E8:T)O+R8P4 MH*TCU.6@MJ.5PY8'X*#U'<*JWL'O#H/B!=A3`3M@")$PM[8%-FL);D>[^S>& M&T<:@_,`K8[O18A+)0M9\L\WP/'I//#MD#3\58'E^JJ!Y:^0]U?3\__H]GVP MC93OJ]\GS9ZJ":/NP(W&/6N7%&?:EYHB2^W,@UXVF6-PX^CZ@K\^GF#PZ\';.'P&Y/0X3_%K?2Q^6TX.AR,FAU^\(O& MN](M0D%2G\D-:$UWAD=")=;*8W3>^/R4TYOE>6H2-T=B:B'5W[V7ADF1,>XX MBHE<"26@8YE%R*I`WRM=5P$Y#?^D[@S@,?_(FC7-$Q!`ZIY%%/UKF-NQYX(9 MF@1!"B=:O+'V>$M3XW4)(R11R"7?`@F:FI,/A#Y/DXA7MLLDY`0^K:(\`U%U MKQ0E*AB?,&@E9-E#]Y1&W@J635.N"PR<=;J3'<4T$X:Y]/*4HJKWE=UF`H>R MHN*D+Y:5E]9NS0I$#)Q"+G7-W;\L\;I:Y7I9PBF*&$:9?"M4T%GD`;;@I[DP M@K0V6U^Z/M^->'\E$?Q"*:G3,.-]9]]L(,*TKT#[#/T4]YJB?Q8JVV$,*)/8 M?FO2JE-Z5SD]NE#*I.`BC#_!H;YBE0-PFUYT(M]-C=AJ/'3VA;#7[>I@X/1[ M9IYD,CMYY;ZE*_0,HI!WJPH[_XFN7.F3(N%Q%&,1^`+SD/E\E/EU@A$$G,3$ M#SV,\AG%/<(A<24A9)L'IN+_O'.PV4[$_/'#ZHSWM9O2' M0-?A@>UFP.G)Z1^U,;5XU19U`271,%82$YR!*8WFVG^3W0%UA5PYYBH""G$W MKX8R9K%7+HFDFF19L<`VQ9`Y+IDWI\AC]"5^7RQ)4G"^"#J2.U`&$4T=Y'\] M>48CIS_N&^09]>'!KB2/6CR(K?+FF&YU`\Q>%F?41L$IOL28:=!E(\,=\E4*VF5<&]; M]3WXI%Z(T$3#^H_<5I;3,.@PA_/F-,C^R!D<#*2^J1/`*C$7!9P-%XE%6A=M MG7'R<61)=@>"C;V`(,N\#U4LR#'?"!+VV'J M(TG#?$5\#IO<2]@*3B/U%<%+*%@EUFUZ'?2^&2M8U@@4T4#G"[Z,?G#:#.S9 M,3&JR[74?0WGA&H(N)5'YU0XHF8K6?E_PJ$ZB=^%"'2O7(F88A+.?0U+-42V M*CUO]$.I.2VT`\PD2.-P!#L"+Q%\!7BFTE!H3,H]/+:M.%=I?C;D7P4H3L-6 MR+`6QYBB)F>4""W1XH9JRP8?G(*F5VV34;2"VS%&.#.!%_)6;/LE#QGD?RNA M@P6K?$#`^@8LI`X>O#`W$)=;ZEY<=$\^*N5L/+U0#P6*6F/74LD$7ML,99"K MQ;?TCV,[.RD6:I-.TU[KP:VEOD5U=3K5XS6M5"6A_L"2<M'>DKB6:+.-;B3<:N/_-X5:T4:)L=R0)9^;BZ<0$>JE MT:I=)ZAL0+VH*BG]#=R^8EDKH"(C/W+V]DW/_4OUM=RM$B)#N`W^5?2W?HDO M`O2Z#YGO_2I)(NK)8\XB!E)6S76'RB%E=>DHT-_RU&]$H!HML"6!R'H]L$E8 M]2UUA>FV*6+\?"Q.5]E[TQ21/8K&2ZTL,JRHN*N01H$U@B?_JZZ:@<9C6LM& M6A2AL$50U&O0PTLY#.!#@*J-!9LTO0]!1KH$CQL[Z^2!G5FC^1&A/8"#B/D; M!H@3P;OU,'AG.?N.@,TA9V)1F,0*H!8D+R<@+C`48S^$AAL)YR'V,BP2F-@U M=X);,$G%JA8@)TFZL-=*8N:\(L!Y@@4G]%91*X<\5P.;A?B?'I:!]=O$UMUL M_P!U28*"!>+XAM`_EB$_!]TRA$$;:?U`4\K#6,P'LL(9T(9@UC"7H7N+?6/- M@AE9\H"Z78&WR^!A@2V\1Z((ACC@>WL<5P$.<$N*E)Q\K(#8:Y-)+`IZ=UY& M$M\OP(RQ;`M2Z&K:49>>N2R`H[\`2MW3"JP33<-6O^V0UJ#-$Y(M0!3#]!AX MX47-\T@+T!%YGYC>4T1I";L'QD6LYLP00I+#G:($`(]$3XN?!-22H1HQ(EO9@F>'@T)9-:^ITB^\3"<3,Y4) MA%1F&`D;^:Z2MBDYL0VP3357BDW5IZS+^*=VVW]\9#'<.QHZ\0(S% M+0%+A*?<#ZL'TF*%3*U)VDP(2.L,JWVG5Q]F;5[]9F>9=TG5PE$Y]BYHF93> MLV2\R&0S/.7UY@>4YGH8HI+;Z?-3@DE0Q)_+6(=E]WB_&QS?L\F;R?EEMPI( M2\?/(!TJ#<>[QH[%O"8),&5;4:"&5=K,U#]=([$*;`,.](\PWQAP?09A1^8+ M&@_'QCZL?;#;5CA`S&YZ&S4[;_E`N:JD`4O-PJRDN+WKDO,Y>Q4&#KD%_8F& M`S.S96WX_D.77*$:>P@SZDA;#"+)]2\WIBQO7\32*@N#6-&'`SY@HL>MV> MT97-1M:W86\4@-8E$/?&>\ZPMV>GS'4<96;P*\F3MAW\-`6J(&\#C'Z`++QB)CE91W"[B,B](A:B M/(18A4U7K&%/-(-B@1F9D"<6)!X(PD%GK8A\.B+!*HDTX'Z//M/88@3FC?V- MJ]B\Y"LRE@/J'<6?P,L]`D*WX(U?:`QQWUV30LV50-VH\$5E0`FF6BSTF94678=^)E106M^N)N=#CNM$>WZPGB=E>+'X3 M)`E6PF2*CD#CI-8UJZB^'J$.'!.2J`F.=G>=T>Y^,YE'NWO.:&_W*7]>I%H* M8PQ!Y8'T1U*+!.WCM\BMU+1YE;S4'=)\*!KJ46NCV75[.@'TT_Z@SJ?P1G4>E-E_,(XS$-/MMP0IKY9MX>PI]C6 M'8.:#3&E-$^3A15<,&V,^T]21T:)H#?NPS2)47%R^XZVFUU=S3-EY'EGA0.A MBP4L2)B?@$WHJ)877APNBPCH2WR`0-,?,PM3+^>=Y\Q*=RU($]G4@SX=MG@P M`\/N&]D]=I($T:K[%(RN/9)[!\Y(_SR==J4*F$0Q"686SGN6`[6QC5$'21Z8 MLMNN+GL^:E74`=)+?-D!ZICN8^Z^EU7]ULPA\HMQSIASK8%RQ3?N]YQQ?]BL M^,:[<+SV*C^0H.[KD)95^9U4M9UB((?:8)INJW?^,L'3W7@S[G8HNEK MZ7M:\K0SBAWTG?%!Z8;<-R?(FI\N^'M(4RL[0Y"=4@VB)-Z^(J4?=8H9C3%%B1HL@*%SC!R\>,6Z)ZEH[$5^L#2Y M_+5/_C%2(>'M'%08NRI<;RLWL8U;]FF4*"D06&,581!=+/,50W.=M[L1VU&* M]_M]9[_\,W3?`VMX>@YT7L7@L:A&][%V63AC.:4I%C-RTZEB-K1(L?;$KE29.YB3K,,+1'CAPLK>;=9.WJUI7S>] MNT.G/QH;3DGUUT[X\[J?-REUJIN=S$_0*E]!@DE&5MRP6U%%C)(`G&-Y M<'#_K"C.>JO%ZEWHITE&,16?N>\AL)VROXT&`W81V^WU>O@/$WURJAGIB@&H M)G3E_-J$[DI%?'15&YI<<%>8N5Q&W(<*I7+^[$>:0M25QIP M'"\(9S*J$25O?4F[U49:%N)O#(9DY*/AA(LEO_V%FA"(SGXCO-0RT"6_)@]8 MV68@6(S#@B=1.M+`L%"4$-9R[TYD+X"P>O#N5M0*>7L%4`8&?X@#:[@&YLU! M"!_PU\RQ%IX&8(MPEWAU@"(*'O(`[Q"%_*8C0NV27W[Y18/XC;([QSSABK<; MDR+'^]6LKP-S?V@Z01$NJ(+&1QJ!X(EQ.P[IZ*Q-YK*M&[>'D(T[! M^GV7G)-/,"+3,!+ M1!%?B(/G>].0""Y>.MN<U1_"CVFY-6YK#!X\.:>Z,T)9@R MJ9OU!8VY=5LZ-I\2L7WFJ+5T3\.'Z7]>GKBS7Z_/)J>.-""7H+YD]MP&7JO) M^CII*A?;1)MIA$0X6[,%SEF.M-&>86/=^WHXJN77H&C=#2BEF;\6U?2-!CV? MM<-8\+3<'I>46VD6TU76\H MY<36YN^U@M,-I)U:)XE9V;G9H8@VX4^:)KC3F&+IZ)Z:UAE_6@*M$2\]6H!R M#WL!)30/'&:`6/"B)^8_Y846G:QD;2V1ZIH`UZ32,O'4'9QE=5U1TQI0(7Z: MQO:YI620GYK\:JM?6['VR'"1*C4D04(^6+48-XY^WJF3'R%Q3;<(RA+$/IN( MD1AHRA+_G&!C8YR75T,R"[]2HFI8TUJI$S:8IWA8R42$Z0'G$AV6+FQ7Q[[SX%O_'/@K2K_\EVI9O MBC`*9+*&3^XRKUAD-\`ICC]AX1E<4G#G^4@IQBS7PYJW?,VDGH-%:WZ3EU]N M/7LW!9BO``+FM&[_M[TK[9'<.+*?Q[^B)`CK.;IFFJRCNUKKQ8XE62MC)!DZ M8&!MH<&N8E53JH,NLJ9Z#/_XS9MYQ(L]T M%E6]+2S9M+J3K_2MO+<>.6'VA1B5]^(W^=0RNUS251X\][H2CR1>5BH9E4%) MB/&_+3R1+<6E>"43MR\N+__G?XT;$/(WJCTNS+NA6@"&CKD0"9C.W+9Q9C[E M67(&@OP>HA<_=]SA$?KHC.B\"'L*0G19[45X]FN8O'D6D;@''KD)%_W^[):K MRW5#_9O@!=D9OMT+\M>=G4I42QL'S:V[-X.K;!*?>W-"5*_D07$_QK#L.L)_ MLB][YI6UVD?C;Z1Q:P=E%MQ^KC;+F(TRZ>87M/UE%`^5WFHSR@\9K81/Y`Y! ML,"?Y7?HVU=JF&U72GDT43?#%D!<>YVLS:(^\)1W"CS(Y-*)*F1WQ$F40 MQ(9]V[9\/.K*MF!P/GNWFOD3SN)/9N=5U-9N6\KJ_O9K/5JKA=K.[NIM?K>5&LE_/Y5;TLB]GUM)I.Y_I[E$R*J>Q^4D*- M.^EMO9Y?E7?%_'(^7=3KNKR>+M;5;%DMBE6UG%U?_L"T$.5E1,^,.%FUU%D> M7XU*+X:C0IR5-Y-Y5(@I)5"N+.V,,U#J(]C4H7,B6$^E]-\RV5\ M35"D"\K\T5?WI]'+]C@:349%>3,5Z9CH1+PS4BD?LCE'+5SZ1Z/X"70"%K/Y MQ6+N8G(T>O3>8U'ZJ^;XY,7SYR]VA]?UN%F/U=!/=#R[=MS+3Q=K=9+R\*NF M]H?3\EX.O)R9NB[^\\[HY8V'GWPA`N.]Q^U1)/SAB7R* M9K_5*BF?S4\\=BZ%;;4YFC%4^-WV_??_:DWV:HI$F(@?SZ093$3?TU5+_?SY]:%<6G3QX],L3UR#&MY:YINW&W:<;-L7GP3#>#Z:/[MJV>CN]; M\<_)M[GW;)Z.F[O=N&H>II[!TAB`?)J+3+D*\VD^%Y?\.GXZ/\G//4Y$/ M[M?1/X8;;PZ3\1WK*NY8KVXN+[F.=3K_23K64SWZ8[47B9:K M"BY%TJ=OW2:)1_ZT>B,2+]6OY8`PTR85UXN+8C$).M8//G@B'^6]QR]?O;H5 MC?D?7KW\^,LGH_?^4QG(;N/YX49U#EECT\!_)3\V]O5VVXT^_NQKW:#;-=@3 M^Q6S?E`G,*M%):)-EV6Z=T$?1X_T1*_UN\2_U%JKJ^]U0M%/GF M?3T3_U<-/])"LMBE8KW[OK//6#I#-7/_S]RD>^N;=,YPW:C7$#6W\D-S>YQ$ MBKHRNII<#\L]QZI(KJ93<ZZE+'I4N``8RHZ3JMT:CK.V>3BVA[^_^-W&:0U[$`2ZR>/;`'2!G^U M@[HY-ZB3`:Z6V*D1G7JW.&U&A5J3=2E:P1G7>EIR/)R[%O_P36=Y*=^LKH:F M[E(XS_,,:*C#]46)SDE<+IKCX?-L=IU;JH*[?7A?X9Q MNOCY>#F<3/VE&B#;W3`WOU-GN.=/';T>SHS],CC5LZO?W^/DFX]FO*TI>!RXU^\%$1,_@L5 MA'2'7]JGQ<5B&E80_2-+Y_95I;]##7\\D\(LJ>'+HWC3>^S,E#*@W,RJT_[; MQY]5N_KV]Z?U6I3NXV+T_/E(77E5[Y\,L>*Y_;#I6OF518?\A7\3^=_?_J$Y MBL0(-\,M!S_>CYY6C1LN/P,_.^SU8CO1-UOA1^^O*&A.'/W/N MY-\%:G+D7O/O`G7\+C"YN8QG2E-*_"Y03+AW@8E[%S!]%.B;_BC1A92*#`F7AHT<='=_WR MW*C^5QI^_,$'M_9O:F_CI\U>W5;:%B%2/3CD\L(.MDR^^,WAKS%?=%C_3%F3 M'VFMR7'1FA]IK=.1E@U;--):!R.MZYLR(SXJJR`QTDJJWI_KE1XTB3'6US?U>]J.K9?/''@[_&?/E9JY[N2"97N8Y$#F2& M<(ZZ@ZF;VL?A;!W$W%EV;FL^N9@OHL'15W)^^/:3_?*HEW^-3($4EY<7L=5G MIF1'SNI=.[)[K@>]5E3'S2(D0U1?M4V/&>0(0HV+W@]BZ0NYS?A3>0`DH!S? M%4/LE]VR:>3^%3=6T:N;%)'FG1/>6)T((_,F'!W]='E##]]!@LW`*!SR_(S9 M0P?3M)Q>3">7\5A;^__HL'T_N2AN(H9Y^LI?QJ^_&84_HA!>U\<[J1LCE2V] MUX?8[3N,6UM#1K(9^D:[74M93M4LV5/3MOK-3*X:>L+%!DKQ,K]*;Q:&BP#89!8M0Q8R:< MKBYF,S?>$(^K&ORU]_MW1^\/603>GW)BR?NS/:HSN]/E/"^J<24/-CJH/?0Y MBPY9+*OMJMYR/IP%YZ/>KS(^M`7V<5_=5WO6A[7@?!RK)6^QK?J"M3ALFYI/ MA[5@?.Q$H?(^C`7V<6ZV%9O25;UL=A5W%V>!?32'9=>S/JP%X^-8-VP4.@OL MX\V^/3:L#VL!?>CM[IP/9P%]B*%@P]_#6&`?VSZ38^MSSD*> M;Y*WT">@9"TX'Z)#82T.,M]9B^RS;-=YBW.?L6BR/IJL#Y&0K(5PPELT61]- MQL=^66_7)]9BLZR5!2Q;9\'Y./1O,CZT!>/#I)3QD7V6;3:EVVPZMOF[R-OD M+')WV>92VF6?IYNQ@+QL>N.CUD+&J^ M;Q`61WYTX2R@#W74Q8[SX2P8'WUCA,=S%M!'5__MQ/>WS@+[R+:G7;8][;)C MARX[=NBR;7*7;9.[KLFEPUIP/O)WR;3)G1BZ\R,#>4YVIN2L!>-#O!FR[:FS MX'S4?)\M+-;-0^8NVH+ST>PW&8M=U6;NHBTX'UW-MC#.@O-QVM]E?&@+QD?7 MY\JVR\58?V[N,CZ,!>MCS8X^G07K@W^S#,_RNZMDVS%EP/C)]B[/`/D1K7+-O\LZ"\?&0J0G. M`OL0[U@5V\HY"]9')AW6@O&QJG/I,!:LCUPZ5IE>L&_J?2X=QH+UD4N'L6!\ MK)N<#V/!^=CFGL58L#ZRZ=CFTK')ENTF6[9-MER:;+DTV7)ILN6RR]:77;:^ M[++U99>M+[DQ89\=$_9B3)CS82R@C]-^N3RP_8*P6/'C!F^YS+:ZS8'WDTI%K<<]]KK5T%LC'BFGD](>;BJGV>'?'V+)"/?<6$=C->8N<:Q$SQDL)]YA,6 MA[L#\^5T,,`>M%@+Y\):,#Z8&10+8[::"V(=6`O6!_>YT[.`/M:'8\_5*L\" M^CAT)?NQ2EFP\>99<#ZZ-^RS"(O^GDU'6XFA)1N:S@+Y,$=4,1:'W.?.7;6\ M5P+-T*(;5ZL5.Q7D66`?QZ:?3UD?U@+[4&>XLCZL!>.C9Y<8>!;81U\MN]90!]W37]HF2DGSP+Z6*J%8ZS%?=T>V&=9'G8BS+AT.`OH8U7? MZ;M`'\X"^\@L0NBRBQ"ZL6@\CC73F'H6V,?#4O2ZK`]KP?C8K[=LN0B+#;=( MQ;/@?+`]B[+8KIG^2UMP[;JVV#(?58T%,^)2%ETV'5TV'5V7N4N;S?4VF^MM M-M?;;*ZWV5QOL[G>9G.]S>:ZL&!><#P+SL?NP$PG>Q:TX$M?6&3R=-V(P6O&8IMI<9T%XV/?[-@6 MUUEP/HY\[^$LL(_#D7F3>C:_Z>\:$M&!_GS,Q;>SPT^S5[%VL!?1Q;]E$U#-E=O>QZ=H3N+!@? M_`+Q+KM`7%CT%?NEQ+-@?+"O7AIFV(>:^[[I67`^,O/&77]D%UYZ%IP/O=B( M\\$N1U(6HDPR/K0%YR/S3^7;/PY"\:'J"5L[#@+W@?[9N8L&!]= MQ2VG]BPX'YGZKBS8^0%GP?GXCON"ZEEP/@[\/(6SX'RTJTSI&PO6![<91UG\ M[<36;&?!^\C$1W?DYUJ=!7>73&OL+#@?[+8ASX+SP:Y;\2P8'WU5L2V=L\`^ M!M'VG`7GHW_#UMO3OLM8O*ZVF;E29\'YR,R5.@O.1V:NU%EP/NH]V_(["\Y' M9J3G+#@?F;E29\'[8./46?`^YSZ=`6 MV$>SRK12SH+SD6FEG`7G(]/".`O.1Z9F.PO>1RX=F9HM+#*UP5E@'^=LGIZS M>7K.YNDYFZ?G[+.<,\\B55W9A?@M%=UEJG6TF)55\Q*2,\" M^#@W^ULYQ)4K;`Y'IE8YP^Z-<'H\[)N_*]&^MV#T]U(0^"U\XP?Q+`(?>NG9 M_6]&XM+Z\$*NN92_Q'^/B^2*EL:ZNBBN[#E\;W=>T+/ASRY[>)#[4PQ5@S_? M=-\KR=291[/KRXNBF$[ML4>*LUDN->E3/_9@H-2/01(_ZA@@RI$^'8ARI)"4 M84X+(A@:21EGR#@;1G2]V5,/;<\82OT8A&3(C^$T0R`40YTP1#(DDC+,B4,$ M0R,I`^9'(^&O(<]$2EE&"1EF%.%"(9&*(8Z58=D2(1@P%1M4:KT M*4040R$D`Z5*(10#/OF6?O(.YE4'\JJ#>=6!O.I@7G4@KT[P'B=PCQ.\QPG= M0Y]/1#$40C#T>4440R$4HZ;[,H-0C",]$#%(TGX?*WG81N+('EF4.C((P=`' M%%$,A22,#C:5'6@J.]A4=J"I[&!3V8&FLH--90>:2GN,$,'0",5`]^CHAL\> M,T0RR(;/'CM$,#1",/0!011#(12CIKM@@U`,=3P0R9`(Q5#'!9$,B5`,=3@0 MR9`(Q5!'`9&,CAK*VH-_2(9$"$9GR_P=$B$8^E`?ZAX*(1EK.DHT0C+H`;9! M2$9'UG.#D(S3GGYRA:0,&5=U53)FB-Z"$\:21CZ2)[47ETG MK#O0ZADD99B#<@B&1@C&`V@M#)(RS"$X!$,C!$,?P$`Q%$(P]#$'%$,A!$,? M)D`Q%$(P-C!5&Y"J!J:JT:E*KN^H4C+'HE!^=B`'#Z`7,`C!T!OP*89"$L89 M]F9GT)O90T((1D]'@CW.@V1(A&"@V#$(P=#';%`,A5`,4*X&(1@HV@Q",%"T M&81@H&@S",%`<640@H&BQ"`Q8T4UYZND)1].<(B-'1(QAM,88H9#$H8]-R%N M^QV2,.PI">D]#)(RS'D&!$,C"8.J0^HJ87E+#MH=DC#LR03I$QLD9JB3"A+_ M\FIDJ0XFB`WEQ=3.G%%`&&LD9>@C"0B"`E+[EAA@Z>X*AD91A=M83#(T0C)Z<)W=(RC`[W@F&1A*&W=^>,@R2 M,.Q^]Y1AD)1A]K\3#(VD#+/;G6!H)&'8O>TIPR`IP^QD)Q@:21AVWWK*,$C* M,+O4"89&"(;>M4XQ%$(Q-E3KY1"*H5:QD`S]K2AEJ-VR)$,B)(-JDQQ",K;$ ME)U#:`;Q_N80BM'!Y^C`PS%M0YBTL\Q:4>0O+O`5EKO?7`T8RAAQVTY,,B5`,&%0<048"\A8T`RYUYIF"(1F$,MM'$(S2L@H`0.61P'*HR#?,PU",V`)%J`$ M"U@>!2@/N=L9,*X!`Y9@`4JPA"58@A(L80F6H`1+6((E*,$2EF`)2K"$)5B" M$BQA"9:@!$M8!TM0!TM8YB4H\Q*6>0G*O(1E7H(RG\`RGX`RG\`RGY!EKG?\ M4@R%4`PP'C%(RC"[>0F&1BB&VKM+,B1",=1.79(A$8)Q!K,1!DD99I\NP=!( MPE`;3FQM7MP4W.#$`R]XY9B*"1EF/VU!$,C!(/LQN5EPE;OG:7,%4(Q MP#R500B&WCE+,11",=3^$)(A$8JA=L62#(E0##!O:)"$87>\QO.X#B$8>G]K M>@^#T`QR%&D0@J'WKE*I4@C%`'7"(#2#?',P",7XCIX=,`C%.-!O)P:A&"WU M\39)!SA#8 M'9DD@YPAL/LO:085[7:W)QB$8GQ+O\4; MA&*H79,D0R(40^V1)!D221EF1R3!T`C%`'70(!0#U"B#4`P0[0:A&>@>9+3; M?8LD@XPKNTN18)S!DY_ADY_!DY]AJLYDJLQ^P\1>7X^LW>[#V-P"MI?=/'LV M-KOMC`>[]^Z+CUY^^.E'T<7U]E#I_7C^U6VS:T3,W:LM=]/RXOJZM)ON?M!N M-;<-4'[='J0$,=I1J-V_1G,=BKAJ)QOD:I3FFCUM@&M1Q#TZ#0("U3O9`&HV MJ('[6A1P]58UQ-T-YV.GJ-F<1J-V(QKMV:$TUQ<_PRC@>N?78Y3FFJUP@&M1 MDNLT(DANH""1H';'&\UU*.#NJRU,LT-I[K9G@JM<1L;B,]CE.0&HO,8!5Q/;!ZC)#K8 M/K1C^]".;>LZMJT+1.0QBKB\9Z:M"T3C"=03C,(P"KB?\CE'`/0UBEA@%7$\L'J.0NX:CKT`@ MGD3Q"#D0AB?1#K9(@2`\B9Y@*QH(P:?HJ6=&UPZEN;Z`?(J^X=[X`N'X!/5$ MXQ$&>)Y8/$81E^D3`H'X%/7%X3$*N`],+0D$X5/4%X/'*.0R]_4%X`G4DS/& M*.1R]UTQ$1>(O6,4J=%$:@G-8Q1Q-UR:?;DA4F4O>^6N^^&+:,-6T8- MF\\-F\\-F\\-F\\[-IYW;#SOV'C>L?',C:UZ=FP5B+)CE.0&8NP4NL(]!5+G&(5< M[KY<>Q5(FV.4XJY`@Q+)F4=H)&4>H9&,.48Q=\-RP6M1)%N.49*[JN\8KD-) M;B!UCE',A<\;R)NGJ"]MCE&2BX+-DS,G$$_*'*,D-Y`PQRC)[=JFK4"`>RCB M]NCUST,!MZ]X%'T^T>AK\&KBB;%'R"#$3@(TPQ=@3U%/?!V"--,77<J*A-(C-!))QRC-]<71,4IS?5%TC`)N#S_[1D+H*>J+H&.4 MYOKBYQ@EN8'H.49);B!VGJ*^T'F*^B+G&"6Y@;@Y1FDN\U&X8S\*1V+F&*6Y MOH@Y1@'7$R^GT`WZZ!^)EE,H;)DCL7(21>UD)%).HV",%(F3DRA[WT&6FD!; M-B=;-B=;-B=;-B=;-B=;-B=;-B=;-B<]P7&,(NX@-(Y1Q&5+L&5+L.5+<)"0 MP"C)#<3$*90I_4!$G$*9\@W$PRF4R:M`-)Q`MTQK%HB%$Z@G%(Y1Q#WB%C@0 M!T_101@<820O$`3'*.3B]`8BX!0Z2!M@%'&9GCD0_:90.*:.Q+XI=!#ZQBCF MPGH?B'O3*'@SCD2]:90K7Z:M"H2\,8JX\$TB$N^F4*8U"D2[*720JL`HY+)U MXQBKDB0&Z,T%]==6&\#`6X"]<2W,4IR`]%MC)+<0&P; MHY@[8[DSECMGN7.6>\5RKUCN@N4N.*X3T<8HYA8L%RQ8';9R,]R2Y;+E6[#E M6\#WUD`@FT;9V"C8V"C8\BW8\G5BV!C%7#8V"C8V2C8V2C8V2C8V2C8V2C8V M2C8V2C8V2C8V2C8V2C8V2C8V2C8V2K;=*-EVHV3CJF3CJF3CJF3CJF3CJF3C M:L+&U82-JPD;5Q,FKCQQ:HPB+C-2#`2I4]07H\8HX@XBU!A%W$%\&J.`>V9F M2P+!:8R2W$%H&D`D*Q"8QBC@XD6A';LH-!*4QBC@PB'^(")-0)Z`-$81EYF7 M"T2C,8JX@Q0C1A%W$(G&*.(R!,'2"!J+0&`7<]H@6G'DHY!Y@S`0BTC0* MWQP"\6@"]82C,8JXJYI)LT$1EZGO@=`T1A'W._05*1*7IM`#?D\.1*4I=!"4 MQBCDHD7UD8@T1A'WB&?/`EEH"F7:ST`.FD+A8OY(!II"X7?\2/Z90#WI9XS2 M7%_R&:.(.P@Y)V@@\YR@KZOU%M=?AP+NEIE!"Z2A*92900LDH2F4F4$+I*`I M=!`4Q2CB,F.J0/J90ID9M$#RF49A3`92SS3*/2\S@Q;(.V,4<9E9L$#2F41Q M'0RDG"F4F4$+))Q3M.;&#(%TZ^3"T+I)8Q2G//;%Z=V;PZ MLWEU9O/JS*;YS*0YE%*.45]&.<)"">4(C.23"=0)(P!X0ITQ,@ARIH@5>DP0[,T):1((\K9%*>A@VCJ8M@ZF[00Y)\QQ0I0) MX@0G4Z2F:Y8G(!DAGB)D@CCEQPCI8(QV,$8[&*,=C%%/@3%%,`=$HJ>XJ'*6*5#5/$*ABFB%4J3!&K2)@@6'GP9/6K$H[3'B20-;I[">(TTA*D!F7@ MZ>4ER`9Z:Z"W'4S;`=0>3Z$N0LZPEGJ*42!.6.IQ27(N!)/>6W!$'Y MYBFY)0C*-T^9+4161"4(Y-8"))!5BQ`LGV9W:*0<3T`M1@:AM`BABC(0/XL0 M+')F=R>02$\=3#KL.Z"1AF@>AOT&2=JLG%IPU4JGQ1<'G;08<7IH,=`2[7*@ M<48@U)@XT"R+$$^;+$1\#;(0@:IBXE^=)R$A$!6+#G?SQ,-B9!`)BY%!#"Q! M>O+E(Q#WBA!/Q"M"/+&N&!E$N6)D$-^*$$]D*T8&,:T(\42S8F00QTH0)X*5 M(ALJ!`-1JQ2Q$C4$0@5;($9%(41+$HA+$0B\CQ7U29`6YD$+\Z"%>=#"/&AA M'K0P#UJ8!TYL*46LJ%**P'QK8;ZU.-_LX:41XHD;I0C('4^L*$5`JCWQH039 M@EKBB0FER)&N#(]*6+E>"B$C`)/7H="T/-8 MN9P4(3N80/XF1>PAG00"F(CD*&)$;)L/&F9!'$2,A'B2<5$B"<) M0R$SB,PA<@61!4*,-`N%$-->@=0*A<#G*UY-(H1#X/$;RA$+@DY;P24OX MI"5\TA(^:0F?M(1/6L(R+6$>E#`/2I@'$Y@'$Y`'3J(C14";XTENI(B5UD@1 M*Z&1(&L$2*V&.P M4\0*1:0(&(-RP@]ZW0K%<=(/%$*VN*R4@UHO0G)`:7JB#2GR'3TJ\4084J2E MWG,#4844L>()*7*D1X">M$&*D!.2@51!@CA)@A@9I`=2Q`H&1`B6$K#K$%*. M)R:0(F#$XHD#I(@]N#M%0+OB'>I/(62^>8?TIP@8EWB'[A,(73[>(?HQ4J,: M[!V*3R"0\RT]SO`.LT\1>VA]C`R'TZ<(*%/OL/D4`:7@'1Z?(B#?O,/@4P2E MX`R\#8>X!]?]X]HU8#]D?I]3V)^&/_+O45',IA=%,9^,U*60>;C[=OE"5,1Z M96;A8]2,)\\O%S>C;GELVK[[S?\!K-"[^!-X`0!1 ` end From owner-freebsd-ports Mon Dec 1 23:17:41 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id XAA06184 for ports-outgoing; Mon, 1 Dec 1997 23:17:41 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from lily.ezo.net (root@lily.ezo.net [206.102.130.13]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id XAA06146; Mon, 1 Dec 1997 23:17:32 -0800 (PST) (envelope-from jflowers@ezo.net) Received: from lily.ezo.net (jflowers@localhost.ezo.net [127.0.0.1]) by lily.ezo.net (8.8.7/8.8.7) with SMTP id CAA24479; Tue, 2 Dec 1997 02:17:15 -0500 (EST) Date: Tue, 2 Dec 1997 02:17:15 -0500 (EST) From: Jim Flowers To: skip-info@skip.org, freebsd-hackers@freebsd.org, freebsd-isp@freebsd.org, freebsd-ports@freebsd.org, freebsd-security@freebsd.org, freebsd-test@freebsd.org cc: "Matthew N. Dodd" Subject: Skip 1.0 for FreeBSD 2.5.5 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Patches for Skip Source Release 1.0 that compile cleanly on FreeBSD 2.5.5 are available from http://www.vip-link.com/pub/vip/skip/. Initial tests indicate all functions work including skiptool with X-windows (except for pop-up display of statistics). Please feel free to download and use. Email any comments or bug reports to my attention. Jim Flowers #4 ISP on C|NET, #1 in Ohio From owner-freebsd-ports Mon Dec 1 23:35:51 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id XAA07555 for ports-outgoing; Mon, 1 Dec 1997 23:35:51 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from misery.sdf.com (misery.sdf.com [204.244.210.193]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id XAA07549 for ; Mon, 1 Dec 1997 23:35:47 -0800 (PST) (envelope-from tom@sdf.com) Received: from tom by misery.sdf.com with smtp (Exim 1.73 #1) id 0xcmik-0007N7-00; Mon, 1 Dec 1997 23:26:14 -0800 Date: Mon, 1 Dec 1997 23:26:09 -0800 (PST) From: Tom To: ports@freebsd.org Subject: which database? msql vs mysql Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I need a multiuser database for some smallish (tables up to 100,000 entries, but most much smaller). I don't require complex query operations, so both msql and mysql will do what I want. But which is more reliable? I can't be having the server process die or core dump. mysql uses the threads, which seems to be kind of slippery slope these days. (BTW, I'm not afraid of paying for msql) Tom From owner-freebsd-ports Tue Dec 2 05:00:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id FAA28902 for ports-outgoing; Tue, 2 Dec 1997 05:00:06 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id FAA28835; Tue, 2 Dec 1997 05:00:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 2 Dec 1997 05:00:01 -0800 (PST) Resent-Message-Id: <199712021300.FAA28835@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, Yoshio.Mita@isen.fr Received: from pcmita.isen.fr (pcmita.isen.fr [192.134.17.84]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id EAA28742 for ; Tue, 2 Dec 1997 04:58:38 -0800 (PST) (envelope-from mita@pcmita.isen.fr) Received: (from mita@localhost) by pcmita.isen.fr (8.8.7/8.8.7) id NAA00441; Tue, 2 Dec 1997 13:56:34 +0100 (CET) (envelope-from mita) Message-Id: <199712021256.NAA00441@pcmita.isen.fr> Date: Tue, 2 Dec 1997 13:56:34 +0100 (CET) From: Yoshio.Mita@isen.fr Reply-To: Yoshio.Mita@isen.fr To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5190: japanese/vflib.. fixed typo Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5190 >Category: ports >Synopsis: fixed typo in vflib port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 2 05:00:00 PST 1997 >Last-Modified: >Originator: MITA Yoshio >Organization: le Centre National de la Recherche Scientifique >Release: FreeBSD 2.2.5-RELEASE i386 >Environment: >Description: toufuto is a Japanese phrase, which means `Tofu and '. See patch. (x_x) >How-To-Repeat: >Fix: diff -ruN japanese/vflib.orig/patches/patch-ab japanese/vflib/patches/patch-ab --- japanese/vflib.orig/patches/patch-ab Wed Oct 1 20:10:00 1997 +++ japanese/vflib/patches/patch-ab Tue Dec 2 13:50:27 1997 @@ -209,7 +209,7 @@ ! r-dynalab-df-gokufuto-gothic|Dynalab Dynafont 30fonts Gokufuto Gothic:\ ! :ft=truetype:\ ! :ff=/usr/local/share/fonts/truetype/dfgoteb: -! r-dynalab-df-toufuto-gothic|Dynalab Dynafont 30fonts Tokufuto Gothic:\ +! r-dynalab-df-tokufuto-gothic|Dynalab Dynafont 30fonts Tokufuto Gothic:\ ! :ft=truetype:\ ! :ff=/usr/local/share/fonts/truetype/dfgotub: ! r-dynalab-df-heisei-maru-gothic-w4|Dynalab Dynafont 30fonts Heisei Maru Gothic W4:\ @@ -465,8 +465,8 @@ + :fc=r-dynalab-df-heisei-gothic-w9: + dynalab-df-gokufuto-gothic:\ + :fc=r-dynalab-df-gokufuto-gothic: -+ dynalab-df-toufuto-gothic:\ -+ :fc=r-dynalab-df-toufuto-gothic: ++ dynalab-df-tokufuto-gothic:\ ++ :fc=r-dynalab-df-tokufuto-gothic: + dynalab-df-heisei-maru-gothic-w4:\ + :fc=r-dynalab-df-heisei-maru-gothic-w4: + dynalab-df-hosomaru-gothic:\ >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue Dec 2 06:50:42 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id GAA04590 for ports-outgoing; Tue, 2 Dec 1997 06:50:42 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id GAA04567; Tue, 2 Dec 1997 06:50:06 -0800 (PST) (envelope-from max@FreeBSD.org) From: Masafumi NAKANE Received: (from max@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id GAA22149; Tue, 2 Dec 1997 06:49:22 -0800 (PST) Date: Tue, 2 Dec 1997 06:49:22 -0800 (PST) Message-Id: <199712021449.GAA22149@freefall.freebsd.org> To: Yoshio.Mita@isen.fr, max@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5190 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: fixed typo in vflib port State-Changed-From-To: open-closed State-Changed-By: max State-Changed-When: Tue Dec 2 06:48:48 PST 1997 State-Changed-Why: The patch is applied. From owner-freebsd-ports Tue Dec 2 09:30:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA16686 for ports-outgoing; Tue, 2 Dec 1997 09:30:06 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA16673; Tue, 2 Dec 1997 09:30:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 2 Dec 1997 09:30:01 -0800 (PST) Resent-Message-Id: <199712021730.JAA16673@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, dirk.meyer@dinoex.sub.org Received: from mail.dinoex.sub.de (root@mail.dinoex.sub.de [193.203.172.14]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id JAA16446 for ; Tue, 2 Dec 1997 09:25:45 -0800 (PST) (envelope-from dinoex@net2.dinoex.sub.org) Received: from net2.dinoex.sub.org (uucp@localhost) by mail.dinoex.sub.de (8.8.5/8.8.7) with UUCP id SAA16281 for freebsd.org!FreeBSD-gnats-submit; Tue, 2 Dec 1997 18:25:44 +0100 (CET) Received: by net2.dinoex.sub.org (Smail3.1.29.1 #1) id m0xcw4W-000k7VC; Tue, 2 Dec 97 18:25 CET Message-Id: Date: Tue, 2 Dec 97 18:25 CET From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5192: URL fix in port ifmail Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5192 >Category: ports >Synopsis: URL is not vaild any more >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 2 09:30:00 PST 1997 >Last-Modified: >Originator: Dirk Meyer >Organization: privat >Release: FreeBSD 2.2.5-RELEASE i386 >Environment: building the port for ifmail >Description: my URL has changed since the first distribution, >How-To-Repeat: building the port for ifmail >Fix: change URL in ports/news/ifmail/Makefile *** Makefile Tue Dec 2 18:24:18 1997 --- orig/Makefile Sun Nov 16 04:57:00 1997 *************** *** 7,17 **** # DISTNAME= ifmail-2.10 ! CATEGORIES= news mail MASTER_SITES= ftp://tsx-11.mit.edu/pub/linux/sources/usr.bin/ \ ${MASTER_SITE_SUNSITE} \ ftp://ftp.demos.su/unix/linux/source/fido/ \ ! ftp://ftp.dinoex.sub.de/pub/approved/ MASTER_SITE_SUBDIR= system/Mail/transport/ MAINTAINER= dirk.meyer@dinoex.sub.org --- 7,17 ---- # DISTNAME= ifmail-2.10 ! CATEGORIES= news MASTER_SITES= ftp://tsx-11.mit.edu/pub/linux/sources/usr.bin/ \ ${MASTER_SITE_SUNSITE} \ ftp://ftp.demos.su/unix/linux/source/fido/ \ ! ftp://net2.dinoex.sub.org/pub/approved/ MASTER_SITE_SUBDIR= system/Mail/transport/ MAINTAINER= dirk.meyer@dinoex.sub.org >Audit-Trail: >Unformatted: From owner-freebsd-ports Tue Dec 2 10:07:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA19551 for ports-outgoing; Tue, 2 Dec 1997 10:07:04 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from florence.pavilion.net (florence.pavilion.net [194.242.128.25]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id KAA19539 for ; Tue, 2 Dec 1997 10:06:51 -0800 (PST) (envelope-from joe@florence.pavilion.net) Received: (from joe@localhost) by florence.pavilion.net (8.8.7/8.8.7) id SAA05079 for ports@freebsd.org; Tue, 2 Dec 1997 18:06:39 GMT Resent-Message-Id: <199712021806.SAA05079@florence.pavilion.net> Message-ID: <19971201175341.20837@pavilion.net> Date: Mon, 1 Dec 1997 17:53:41 +0000 From: Josef Karthauser To: Satoshi Asami Subject: A change in the way we port perl anyone? References: <199711231601.IAA22224@baloon.mimi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81 In-Reply-To: <199711231601.IAA22224@baloon.mimi.com>; from Satoshi Asami on Sun, Nov 23, 1997 at 08:01:47AM -0800 X-NCC-RegID: uk.pavilion Resent-From: joe@pavilion.net Resent-Date: Tue, 2 Dec 1997 18:06:38 +0000 Resent-To: ports@freebsd.org Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Sun, Nov 23, 1997 at 08:01:47AM -0800, Satoshi Asami wrote: > * I _WISH_ that there had been a p5 category made, because without that, > * it's really hard not to do duplicates on Perl stuff. There too darn many! > > There is a "perl5" virtual category. It shows up in the ports index > page and ports/INDEX. :) > > Satoshi Why don't we integrate the p5 stuff with mod-CPAN. The perl code changes so often and they've already got an update mechanism for their stuff. Seems like we're reinventing the wheel, badly, here. Comments? Joe -- Josef Karthauser Technical Manager Email: joe@pavilion.net Pavilion Internet plc. [Tel: +44 1273 607072 Fax: +44 1273 607073] From owner-freebsd-ports Tue Dec 2 12:37:09 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA01333 for ports-outgoing; Tue, 2 Dec 1997 12:37:09 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from whistle.com (s205m131.whistle.com [207.76.205.131]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id MAA01269; Tue, 2 Dec 1997 12:36:45 -0800 (PST) (envelope-from archie@whistle.com) Received: (from smap@localhost) by whistle.com (8.7.5/8.6.12) id MAA05734; Tue, 2 Dec 1997 12:36:12 -0800 (PST) Received: from bubba.whistle.com(207.76.205.7) by whistle.com via smap (V1.3) id sma005730; Tue Dec 2 12:35:58 1997 Received: (from archie@localhost) by bubba.whistle.com (8.8.5/8.6.12) id MAA02228; Tue, 2 Dec 1997 12:35:58 -0800 (PST) From: Archie Cobbs Message-Id: <199712022035.MAA02228@bubba.whistle.com> Subject: Re: Skip 1.0 for FreeBSD 2.5.5 In-Reply-To: from Jim Flowers at "Dec 2, 97 02:17:15 am" To: jflowers@ezo.net (Jim Flowers) Date: Tue, 2 Dec 1997 12:35:57 -0800 (PST) Cc: skip-info@skip.org, freebsd-hackers@freebsd.org, freebsd-isp@freebsd.org, freebsd-ports@freebsd.org, freebsd-security@freebsd.org, freebsd-test@freebsd.org, winter@jurai.net 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-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Jim Flowers writes: > Patches for Skip Source Release 1.0 that compile cleanly on FreeBSD 2.5.5 > are available from http://www.vip-link.com/pub/vip/skip/. Initial tests > indicate all functions work including skiptool with X-windows (except for > pop-up display of statistics). Please feel free to download and use. Email > any comments or bug reports to my attention. FYI- [Jim and I are in contact already regarding this] I'm working on a FreeBSD port of skip-1.0. This is somewhat involved because it requires modload'ing the kernel module, installing an rc script, etc. Hopefully will be done soon. Thanks, -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com From owner-freebsd-ports Tue Dec 2 18:28:36 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id SAA27850 for ports-outgoing; Tue, 2 Dec 1997 18:28:36 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from kiri.toba-cmt.ac.jp (kiri.toba-cmt.ac.jp [202.26.248.91]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id SAA27838 for ; Tue, 2 Dec 1997 18:28:27 -0800 (PST) (envelope-from kiri@kiri.toba-cmt.ac.jp) Received: from localhost (localhost [127.0.0.1]) by kiri.toba-cmt.ac.jp (8.8.8/8.8.7) with ESMTP id LAA27378 for ; Wed, 3 Dec 1997 11:24:25 +0900 (JST) To: ports@FreeBSD.ORG Subject: Can't compile kdelibs-2.1b In-Reply-To: Your message of "Thu, 20 Nov 1997 17:09:03 -0500 (EST)" References: X-Mailer: Mew version 1.92.4 on Emacs 19.28 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19971203112425U.kiri@kiri.toba-cmt.ac.jp> Date: Wed, 03 Dec 1997 11:24:25 +0900 From: Kazuhiko Kiriyama(System administrator) X-Dispatcher: imput version 971024 Lines: 164 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk I try to compile kdelibs-2.1b(x11/kdelibs), but stop with the following error at build process. What's wrong? >> Checksum OK for kdelibs-Beta2-1.src.tgz. ===> Extracting for kdelibs-2.1b ===> kdelibs-2.1b depends on executable: moc - found ===> kdelibs-2.1b depends on shared library: qt\.1\.3[0-9] - found ===> kdelibs-2.1b depends on shared library: gif\.[23]\. - found ===> kdelibs-2.1b depends on shared library: jpeg\.[67]\. - found ===> Patching for kdelibs-2.1b ===> Applying FreeBSD patches for kdelibs-2.1b ===> Configuring for kdelibs-2.1b creating cache ./config.cache checking host system type... i386-unknown-freebsd2.2.5 checking target system type... i386-unknown-freebsd2.2.5 checking build system type... i386-unknown-freebsd2.2.5 checking for a BSD compatible install... /usr/bin/install -c -o bin -g bin checking whether build environment is sane... yes checking for working aclocal... missing checking for working autoconf... found checking for working automake... missing checking for working autoheader... found checking for working makeinfo... found checking whether make sets ${MAKE}... yes checking for a BSD compatible install... /usr/bin/install -c -o bin -g bin checking for a C-Compiler... cc checking whether the C compiler (cc -O ) works... yes checking whether the C compiler (cc -O ) is a cross-compiler... no checking whether we are using GNU C... yes checking how to run the C preprocessor... cc -E checking for a C++-Compiler... checking for g++... g++ checking whether the C++ compiler (g++ -O -s) works... yes checking whether the C++ compiler (g++ -O -s) is a cross-compiler... no checking whether we are using GNU C++... yes checking for ranlib... ranlib checking for ld used by GCC... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... no checking for BSD-compatible nm... /usr/bin/nm -p checking whether ln -s works... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... -static checking if the linker (/usr/bin/ld) is GNU ld... no checking whether the linker (/usr/bin/ld) supports shared libraries... yes checking command to parse /usr/bin/nm -p output... no checking how to hardcode library paths into programs... relink checking for /usr/bin/ld option to reload object files... -r checking dynamic linker characteristics... freebsd2.2.5 ld.so checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for objdir... .libs creating libtool checking for AIX... no checking for minix/config.h... no checking whether NLS is requested... yes checking for msgfmt... msgfmt checking for gmsgfmt... msgfmt checking for xgettext... : checking how to run the C++ preprocessor... g++ -E checking for ANSI C header files... yes checking for inline... inline checking for off_t... yes checking for size_t... yes checking for working alloca.h... no checking for alloca... yes checking for unistd.h... yes checking for getpagesize... yes checking for working mmap... yes checking for argz.h... no checking for limits.h... yes checking for locale.h... yes checking for nl_types.h... yes checking for malloc.h... no checking for string.h... yes checking for unistd.h... (cached) yes checking for values.h... no checking for alloca.h... (cached) no checking for getcwd... yes checking for munmap... yes checking for putenv... yes checking for setenv... yes checking for setlocale... yes checking for strchr... yes checking for strcasecmp... yes checking for __argz_count... no checking for __argz_stringify... no checking for __argz_next... no checking for stpcpy... no checking for LC_MESSAGES... no checking for dirent.h that defines DIR... yes checking for opendir in -ldir... no checking for ANSI C header files... (cached) yes checking for fcntl.h... yes checking for sys/time.h... yes checking for unistd.h... (cached) yes checking for sys/cdefs.h... yes checking for fnmatch.h... yes checking for sysent.h... yes checking for strings.h... yes checking for sys/stat.h... yes checking for sys/select.h... yes checking for socket in -lsocket... no checking for X... libraries /usr/X11R6/lib -L/usr/local/lib, headers /usr/X11R6/include -I/usr/local/include -I/usr/local/include/giflib checking for QT... libraries /usr/X11R6/lib, headers /usr/X11R6/include/X11/qt checking for moc... test: syntax error /usr/bin/moc checking for KDE... will be installed in /usr/local checking for main in -lcompat... yes checking for giflib... yes checking for jpeglib... -ljpeg checking for X11/extensions/shape.h... yes checking whether time.h and sys/time.h may both be included... yes checking for bool... yes checking if you need GNU extensions... no checking for socket... yes checking for vsnprintf... yes checking for usleep... yes checking for setenv... (cached) yes checking for getdomainname... yes checking for the third argument of getsockname... int updating cache ./config.cache creating ./config.status creating Makefile creating kdecore/Makefile creating kdeui/Makefile creating khtmlw/Makefile creating kdetest/Makefile creating kdedoc/Makefile creating jscript/Makefile creating kfmlib/Makefile creating mediatool/Makefile creating po/Makefile creating doc/Makefile creating config.h ===> Building for kdelibs-2.1b make all-recursive Making all in kdecore /usr/bin/moc kconfig.h -o kconfig.moc /usr/bin/moc: not found *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. ------------------------------------------------------------------------ KIRIYAMA Kazuhiko Toba National College of Maritime Technology Department of Electronic Mechanical Engineering From owner-freebsd-ports Tue Dec 2 19:28:44 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA01656 for ports-outgoing; Tue, 2 Dec 1997 19:28:44 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from picnic.mat.net (picnic.mat.net [206.246.122.117]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id TAA01646 for ; Tue, 2 Dec 1997 19:28:37 -0800 (PST) (envelope-from chuckr@glue.umd.edu) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.8.8/8.8.5) with SMTP id WAA15605; Tue, 2 Dec 1997 22:25:40 -0500 (EST) X-Authentication-Warning: picnic.mat.net: chuckr owned process doing -bs Date: Tue, 2 Dec 1997 22:25:34 -0500 (EST) From: Chuck Robey X-Sender: chuckr@localhost To: Kazuhiko Kiriyama cc: ports@FreeBSD.ORG Subject: Re: Can't compile kdelibs-2.1b In-Reply-To: <19971203112425U.kiri@kiri.toba-cmt.ac.jp> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Wed, 3 Dec 1997, Kazuhiko Kiriyama wrote: > I try to compile kdelibs-2.1b(x11/kdelibs), but stop with the following > error at build process. What's wrong? > > >> Checksum OK for kdelibs-Beta2-1.src.tgz. > ===> Extracting for kdelibs-2.1b > ===> kdelibs-2.1b depends on executable: moc - found [lots of errors taken out] > checking for X... libraries /usr/X11R6/lib -L/usr/local/lib, headers /usr/X11R6/include -I/usr/local/include -I/usr/local/include/giflib > checking for QT... libraries /usr/X11R6/lib, headers /usr/X11R6/include/X11/qt > checking for moc... test: syntax error > /usr/bin/moc see here > checking for KDE... will be installed in /usr/local > checking for main in -lcompat... yes [more errors taken out] > creating config.h > ===> Building for kdelibs-2.1b > make all-recursive > Making all in kdecore > /usr/bin/moc kconfig.h -o kconfig.moc > /usr/bin/moc: not found > *** Error code 1 notice in the first group of errors above that there was a syntax error when it tried to get moc. FreeBSD found it, but that configure script choked at that point. moc is part of qt, and I don't know why kdelibs had trouble finding it ... but that's your problem. Make sure your build of qt is up to date, and that moc is installed from it and in root's path. Maybe you want to make sure you're running the newest ports version of qt? If you find that's the problem, you better tell the kde maintainer about it, so he can beef up the depends line in the kde makefile. ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@glue.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | 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 Dec 2 21:13:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id VAA09172 for ports-outgoing; Tue, 2 Dec 1997 21:13:06 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from kiri.toba-cmt.ac.jp (kiri.toba-cmt.ac.jp [202.26.248.91]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id VAA09166 for ; Tue, 2 Dec 1997 21:13:00 -0800 (PST) (envelope-from kiri@kiri.toba-cmt.ac.jp) Received: from localhost (localhost [127.0.0.1]) by kiri.toba-cmt.ac.jp (8.8.8/8.8.7) with ESMTP id OAA29644 for ; Wed, 3 Dec 1997 14:08:25 +0900 (JST) To: ports@FreeBSD.ORG Subject: Re: Can't compile kdelibs-2.1b In-Reply-To: Your message of "Tue, 2 Dec 1997 22:25:34 -0500 (EST)" References: X-Mailer: Mew version 1.92.4 on Emacs 19.28 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19971203140825Q.kiri@kiri.toba-cmt.ac.jp> Date: Wed, 03 Dec 1997 14:08:25 +0900 From: Kazuhiko Kiriyama(System administrator) X-Dispatcher: imput version 971024 Lines: 76 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Thaks for rapid reply! In Message-ID: Chuck Robey wrote : > notice in the first group of errors above that there was a syntax error > when it tried to get moc. FreeBSD found it, but that configure script > choked at that point. moc is part of qt, and I don't know why kdelibs > had trouble finding it ... but that's your problem. Make sure your build > of qt is up to date, and that moc is installed from it and in root's path. I awared that, but I didn't tried to rewrite configure. Now rewrite configure as --- work/kdelibs/configure~ Sun Nov 23 09:00:28 1997 +++ work/kdelibs/configure Wed Dec 3 13:54:06 1997 @@ -4722,7 +4722,7 @@ s%@qt_includes@%$qt_includes%g s%@QT_INCLUDES@%$QT_INCLUDES%g s%@QT_LDFLAGS@%$QT_LDFLAGS%g -s%@MOC@%$MOC%g +s%@MOC@%/usr/X11R6/bin/moc%g s%@kde_libraries@%$kde_libraries%g s%@kde_includes@%$kde_includes%g s%@KDE_LDFLAGS@%$KDE_LDFLAGS%g and force moc path to /usr/X11R6/bin, but then build stoped ;-< ===> Building for kdelibs-2.1b make all-recursive Making all in kdecore /usr/X11R6/bin/moc kconfig.h -o kconfig.moc /bin/sh ../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/X11R6/include/X11/qt -O2 -Wall -c kconfig.cpp g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/X11R6/include/X11/qt -O2 -Wall -c -fPIC -DPIC kconfig.cpp mv -f kconfig.o kconfig.lo /usr/X11R6/bin/moc kconfigbase.h -o kconfigbase.moc /bin/sh ../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/X11R6/include/X11/qt -O2 -Wall -c kconfigbase.cpp g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/X11R6/include/X11/qt -O2 -Wall -c -fPIC -DPIC kconfigbase.cpp In file included from kapp.h:108, from kconfigbase.cpp:72: drag.h:87: X11/X.h: No such file or directory *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. > Maybe you want to make sure you're running the newest ports version of qt? qt-1.31 is instaled from port qt-1.31(x11/qt)($Id: Makefile,v 1.14 1997/10/30 05:15:19 jkh Exp $). > If you find that's the problem, you better tell the kde maintainer about > it, so he can beef up the depends line in the kde makefile. Maybe problems would be lied in my local environment, I think ^^; Now I uses on "FreeBSD 2.2.5-STABLE #0: Sat Nov 29 04:55:16 JST 1997" + XFree86-3.3.1. ------------------------------------------------------------------------ KIRIYAMA Kazuhiko Toba National College of Maritime Technology Department of Electronic Mechanical Engineering From owner-freebsd-ports Tue Dec 2 21:27:37 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id VAA09984 for ports-outgoing; Tue, 2 Dec 1997 21:27:37 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from misery.sdf.com (misery.sdf.com [204.244.210.193]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id VAA09978 for ; Tue, 2 Dec 1997 21:27:32 -0800 (PST) (envelope-from tom@sdf.com) Received: from tom by misery.sdf.com with smtp (Exim 1.73 #1) id 0xd7Bn-0000BE-00; Tue, 2 Dec 1997 21:17:36 -0800 Date: Tue, 2 Dec 1997 21:17:33 -0800 (PST) From: Tom To: Chuck Robey cc: Kazuhiko Kiriyama , ports@freebsd.org Subject: Re: Can't compile kdelibs-2.1b In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Tue, 2 Dec 1997, Chuck Robey wrote: > > checking for moc... test: syntax error ... > notice in the first group of errors above that there was a syntax error > when it tried to get moc. FreeBSD found it, but that configure script > choked at that point. moc is part of qt, and I don't know why kdelibs I've seen configure choke looking for stuff before (in 2.2.5-stable). I think it is /bin/sh bug, actually. You will probably find something like the following in configure: for ac_dir in $PATH:/usr/bin:/usr/local/bin; do sh handles this in an interesting way. Basically, it iterates over the elements of $PATH, then glues the last element of $PATH to the remaining string, and returns it as the last element. So if $PATH is "/usr/bin:/bin:/home/tom/bin", the for will loop with "/usr/bin", "/bin", and "/home/tom/bin:/usr/local/bin". The last entry causes "test" to freak, and so configure defaults to some default directory. Tom From owner-freebsd-ports Tue Dec 2 21:52:02 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id VAA11855 for ports-outgoing; Tue, 2 Dec 1997 21:52:02 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from kiri.toba-cmt.ac.jp (kiri.toba-cmt.ac.jp [202.26.248.91]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id VAA11787 for ; Tue, 2 Dec 1997 21:51:48 -0800 (PST) (envelope-from kiri@kiri.toba-cmt.ac.jp) Received: from localhost (localhost [127.0.0.1]) by kiri.toba-cmt.ac.jp (8.8.8/8.8.7) with ESMTP id OAA29745 for ; Wed, 3 Dec 1997 14:47:55 +0900 (JST) To: ports@FreeBSD.ORG Subject: Re: Can't compile kdelibs-2.1b In-Reply-To: Your message of "Tue, 2 Dec 1997 21:17:33 -0800 (PST)" References: X-Mailer: Mew version 1.92.4 on Emacs 19.28 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19971203144744S.kiri@kiri.toba-cmt.ac.jp> Date: Wed, 03 Dec 1997 14:47:44 +0900 From: Kazuhiko Kiriyama(System administrator) X-Dispatcher: imput version 971024 Lines: 21 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk In Message-ID: Tom wrote : > I've seen configure choke looking for stuff before (in 2.2.5-stable). I > think it is /bin/sh bug, actually. Oh is that true? So people who works on 2.2.5-stable would be shut away from kde! > You will probably find something like the following in configure: : > "/usr/bin", "/bin", and "/home/tom/bin:/usr/local/bin". The last entry > causes "test" to freak, and so configure defaults to some default > directory. I see. For the time bing, people who want to use kde will be installed from packages? ------------------------------------------------------------------------ KIRIYAMA Kazuhiko Toba National College of Maritime Technology Department of Electronic Mechanical Engineering From owner-freebsd-ports Tue Dec 2 22:30:13 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA14252 for ports-outgoing; Tue, 2 Dec 1997 22:30:13 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-35.ix.netcom.com [207.93.143.163]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id WAA14202 for ; Tue, 2 Dec 1997 22:29:59 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id WAA05059; Tue, 2 Dec 1997 22:29:12 -0800 (PST) Date: Tue, 2 Dec 1997 22:29:12 -0800 (PST) Message-Id: <199712030629.WAA05059@silvia.HIP.Berkeley.EDU> To: kiri@kiri.toba-cmt.ac.jp CC: ports@freebsd.org In-reply-to: <19971203144744S.kiri@kiri.toba-cmt.ac.jp> Subject: Re: Can't compile kdelibs-2.1b From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * Oh is that true? So people who works on 2.2.5-stable would be shut away * from kde! * I see. For the time bing, people who want to use kde will be * installed from packages? You are contradicting yourself here. :) Satoshi (Yes, it works for me, and the package building machine runs -stable) From owner-freebsd-ports Tue Dec 2 23:05:49 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id XAA15848 for ports-outgoing; Tue, 2 Dec 1997 23:05:49 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from misery.sdf.com (misery.sdf.com [204.244.210.193]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id XAA15838 for ; Tue, 2 Dec 1997 23:05:43 -0800 (PST) (envelope-from tom@sdf.com) Received: from tom by misery.sdf.com with smtp (Exim 1.73 #1) id 0xd8j3-0000DK-00; Tue, 2 Dec 1997 22:56:01 -0800 Date: Tue, 2 Dec 1997 22:55:59 -0800 (PST) From: Tom To: Kazuhiko Kiriyama cc: ports@freebsd.org Subject: Re: Can't compile kdelibs-2.1b In-Reply-To: <19971203144744S.kiri@kiri.toba-cmt.ac.jp> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Wed, 3 Dec 1997, Kazuhiko Kiriyama wrote: > In Message-ID: > Tom wrote : > > > I've seen configure choke looking for stuff before (in 2.2.5-stable). I > > think it is /bin/sh bug, actually. > > Oh is that true? So people who works on 2.2.5-stable would be shut away > from kde! No, it is simple problem in /bin/sh. If your /bin/sh is bash, it will probably work fine. > > You will probably find something like the following in configure: > : > > "/usr/bin", "/bin", and "/home/tom/bin:/usr/local/bin". The last entry > > causes "test" to freak, and so configure defaults to some default > > directory. > > I see. For the time bing, people who want to use kde will be > installed from packages? Either run configure with bash, or patch the configure script to do something a little different. I find that changing: for ac_path in $PATH:/usr/local/bin:/otherstuff; do to: SEARCH=$PATH:/usr/local/bin:/otherstuff for ac_path in $SEARCH; do is an effective work around to this particular problem. > ------------------------------------------------------------------------ > KIRIYAMA Kazuhiko Toba National College of > Maritime Technology > Department of Electronic Mechanical Engineering Tom From owner-freebsd-ports Tue Dec 2 23:39:44 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id XAA17937 for ports-outgoing; Tue, 2 Dec 1997 23:39:44 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from misery.sdf.com (misery.sdf.com [204.244.210.193]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id XAA17924 for ; Tue, 2 Dec 1997 23:39:40 -0800 (PST) (envelope-from tom@sdf.com) Received: from tom by misery.sdf.com with smtp (Exim 1.73 #1) id 0xd9Fo-0000KP-00; Tue, 2 Dec 1997 23:29:52 -0800 Date: Tue, 2 Dec 1997 23:29:50 -0800 (PST) From: Tom To: Satoshi Asami cc: kiri@kiri.toba-cmt.ac.jp, ports@freebsd.org Subject: Re: Can't compile kdelibs-2.1b In-Reply-To: <199712030629.WAA05059@silvia.HIP.Berkeley.EDU> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Tue, 2 Dec 1997, Satoshi Asami wrote: > * Oh is that true? So people who works on 2.2.5-stable would be shut away > * from kde! > > * I see. For the time bing, people who want to use kde will be > * installed from packages? > > You are contradicting yourself here. :) > > Satoshi (Yes, it works for me, and the package building machine runs -stable) Is your /bin/sh actually bash? Either that, has some one committed some sh fixes in the last month? For example, the following script demonstrates a problem that I see with some configure scripts that scan for the location of some binary via a for loop and "test": #! /bin/sh PATH=/bin:/usr/bin:/sbin IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in $PATH:/usr/local/bin$ac_dummy; do echo "ac_dir is $ac_dir" done produces the following output with /bin/sh: ac_dir is /bin ac_dir is /usr/bin ac_dir is /sbin:/usr/local/bin but with bash: ac_dir is /bin ac_dir is /usr/bin ac_dir is /sbin ac_dir is /usr/local/bin In fact, I eventually broke down and dl'ed the kdelibs to look at the configure script. Sure enough, line 3705 is very similar to my snippet above. Tom From owner-freebsd-ports Wed Dec 3 01:15:58 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA23312 for ports-outgoing; Wed, 3 Dec 1997 01:15:58 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-35.ix.netcom.com [207.93.143.163]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA23307 for ; Wed, 3 Dec 1997 01:15:55 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id AAA05796; Wed, 3 Dec 1997 00:45:37 -0800 (PST) Date: Wed, 3 Dec 1997 00:45:37 -0800 (PST) Message-Id: <199712030845.AAA05796@silvia.HIP.Berkeley.EDU> To: tom@sdf.com CC: kiri@kiri.toba-cmt.ac.jp, ports@FreeBSD.ORG In-reply-to: (message from Tom on Tue, 2 Dec 1997 23:29:50 -0800 (PST)) Subject: Re: Can't compile kdelibs-2.1b From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * Is your /bin/sh actually bash? Either that, has some one committed some * sh fixes in the last month? This is the official package building machine, Tom. There is nothing not standard on this machine. (It may be a little messed up now due to the hundreds of "make world" updates it went through, though.) * produces the following output with /bin/sh: It appears to have the bug, alright. I wonder why kdelibs compilation works for me. Satoshi From owner-freebsd-ports Wed Dec 3 06:50:07 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id GAA13127 for ports-outgoing; Wed, 3 Dec 1997 06:50:07 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id GAA13118; Wed, 3 Dec 1997 06:50:02 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 3 Dec 1997 06:50:02 -0800 (PST) Resent-Message-Id: <199712031450.GAA13118@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, yssu@CCCA.NCTU.edu.tw Received: from netflow.nctu.edu.tw (NetFlow.NCTU.edu.tw [140.113.85.1]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id GAA12694 for ; Wed, 3 Dec 1997 06:44:54 -0800 (PST) (envelope-from yssu@NetFlow.NCTU.edu.tw) Received: (from root@localhost) by netflow.nctu.edu.tw (8.8.5/8.8.5) id WAA25261; Wed, 3 Dec 1997 22:47:19 +0800 (CST) Message-Id: <199712031447.WAA25261@netflow.nctu.edu.tw> Date: Wed, 3 Dec 1997 22:47:19 +0800 (CST) From: yssu@CCCA.NCTU.edu.tw (Yen-Shuo Su.) Reply-To: yssu@CCCA.NCTU.edu.tw To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5198: zh-samba-des: sync with samba-des Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5198 >Category: ports >Synopsis: sync patches >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 3 06:50:01 PST 1997 >Last-Modified: >Originator: Yen-Shuo Su >Organization: Campus Computer Communication Association >Release: FreeBSD 2.2-970625-RELENG i386 >Environment: >Description: Sync chinese/zh-samba-des/patches/patch-ab with net/samba-des/patches/patch-ab >How-To-Repeat: >Fix: The following is the patch: diff -ruN ../chinese/samba-des/patches/patch-ab samba-des/patches/patch-ab --- ../chinese/samba-des/patches/patch-ab Sat Nov 29 13:28:24 1997 +++ samba-des/patches/patch-ab Wed Dec 3 22:42:31 1997 @@ -1,14 +1,23 @@ ---- Makefile.orig Fri Apr 12 09:18:51 1996 -+++ Makefile Thu Aug 14 00:49:39 1997 +--- Makefile.orig Fri Apr 12 02:18:51 1996 ++++ Makefile Tue Dec 2 12:05:41 1997 @@ -10,7 +10,7 @@ # If you are on a DEC Alpha, edit des.h and change the DES_LONG # define to 'unsigned int'. I have seen this give a %20 speedup. -OPTS0= -DRAND -DTERMIO #-DNOCONST -+OPTS0= -DRAND -DSGTTY #-DNOCONST ++OPTS0= -DTERMIOS -DPERL5 # Don't use crypt() from libdes! # Version 1.94 has changed the strings_to_key function so that it is # now compatible with MITs when the string is longer than 8 characters. +@@ -39,7 +39,7 @@ + #CFLAGS= -O $(OPTS) $(CFLAG) + + CC=gcc +-CFLAGS= -O3 -fomit-frame-pointer $(OPTS) $(CFLAG) ++CFLAGS= -O3 $(OPTS) $(CFLAG) + + LIBDIR=/usr/local/lib + BINDIR=/usr/local/bin @@ -72,7 +72,12 @@ DLIB= libdes.a @@ -23,6 +32,27 @@ test: all ./destest +@@ -85,16 +90,16 @@ + else exit 0; fi; fi + + destest: destest.o libdes.a +- $(CC) $(CFLAGS) -o destest destest.o libdes.a ++ $(CC) $(CFLAGS) -o destest destest.o libdes.a -lcrypt + + rpw: rpw.o libdes.a +- $(CC) $(CFLAGS) -o rpw rpw.o libdes.a ++ $(CC) $(CFLAGS) -o rpw rpw.o libdes.a -lcrypt + + speed: speed.o libdes.a +- $(CC) $(CFLAGS) -o speed speed.o libdes.a ++ $(CC) $(CFLAGS) -o speed speed.o libdes.a -lcrypt + + des: des.o libdes.a +- $(CC) $(CFLAGS) -o des des.o libdes.a ++ $(CC) $(CFLAGS) -o des des.o libdes.a -lcrypt + + tags: + ctags $(DES) $(TESTING) $(LIBDES) @@ -152,4 +157,3 @@ cp des.h $(INCDIR)/des.h; \ chmod 644 $(INCDIR)/des.h; \ >Audit-Trail: >Unformatted: From owner-freebsd-ports Wed Dec 3 09:30:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA26966 for ports-outgoing; Wed, 3 Dec 1997 09:30:05 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA26938; Wed, 3 Dec 1997 09:30:02 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 3 Dec 1997 09:30:02 -0800 (PST) Resent-Message-Id: <199712031730.JAA26938@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, dirk.meyer@dinoex.sub.org Received: from mail.dinoex.sub.de (root@mail.dinoex.sub.de [193.203.172.14]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id JAA26507 for ; Wed, 3 Dec 1997 09:25:08 -0800 (PST) (envelope-from dinoex@net2.dinoex.sub.org) Received: from net2.dinoex.sub.org (uucp@localhost) by mail.dinoex.sub.de (8.8.5/8.8.7) with UUCP id SAA20624 for freebsd.org!FreeBSD-gnats-submit; Wed, 3 Dec 1997 18:19:20 +0100 (CET) Received: by net2.dinoex.sub.org (Smail3.1.29.1 #1) id m0xdC8a-000k7VC; Wed, 3 Dec 97 11:34 CET Message-Id: Date: Wed, 3 Dec 97 11:34 CET From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5200: new port-package for pgpmoose Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5200 >Category: ports >Synopsis: new port-package for pgpmoose >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 3 09:30:01 PST 1997 >Last-Modified: >Originator: Dirk Meyer >Organization: privat >Release: FreeBSD 2.2.5-RELEASE i386 >Environment: submitting moderated posting in newsgroups pgp installed >Description: Handling signatures for posting in moderated groups keywords: news, pgp, moderation >How-To-Repeat: port does not exists in the distribution >Fix: the following archive create a directory pgpmoose-1 this can be installed in the directory "/usr/ports/news". ftp://ftp.dinoex.sub.de/pub/appoved/ports-pgpmoose-1.tar.gz >Audit-Trail: >Unformatted: From owner-freebsd-ports Wed Dec 3 09:30:08 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA26984 for ports-outgoing; Wed, 3 Dec 1997 09:30:08 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA26952; Wed, 3 Dec 1997 09:30:04 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 3 Dec 1997 09:30:04 -0800 (PST) Resent-Message-Id: <199712031730.JAA26952@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, dirk.meyer@dinoex.sub.org Received: from mail.dinoex.sub.de (root@mail.dinoex.sub.de [193.203.172.14]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id JAA26523 for ; Wed, 3 Dec 1997 09:25:17 -0800 (PST) (envelope-from dinoex@net2.dinoex.sub.org) Received: from net2.dinoex.sub.org (uucp@localhost) by mail.dinoex.sub.de (8.8.5/8.8.7) with UUCP id SAA20626 for freebsd.org!FreeBSD-gnats-submit; Wed, 3 Dec 1997 18:19:21 +0100 (CET) Received: by net2.dinoex.sub.org (Smail3.1.29.1 #1) id m0xdC9T-000k7VC; Wed, 3 Dec 97 11:35 CET Message-Id: Date: Wed, 3 Dec 97 11:35 CET From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5201: new port-package for fidogate Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5201 >Category: ports >Synopsis: new port-package for fidogate >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 3 09:30:03 PST 1997 >Last-Modified: >Originator: Dirk Meyer >Organization: privat >Release: FreeBSD 2.2.5-RELEASE i386 >Environment: running news and mail Modem or external ISDN adapter via serial line ifmail installed >Description: FidoNet(tm) support package for UN*X platform using the "Gatebau" ruleset keywords: news, mail, gateway >How-To-Repeat: port does not exists in the distribution >Fix: the following archive create a directory fidogate-4.2.9 this can be installed in the directory "/usr/ports/news". ftp://ftp.dinoex.sub.de/pub/appoved/ports-fidogate-4.2.9.tar.gz >Audit-Trail: >Unformatted: From owner-freebsd-ports Wed Dec 3 09:30:09 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA26993 for ports-outgoing; Wed, 3 Dec 1997 09:30:09 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA26965; Wed, 3 Dec 1997 09:30:05 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 3 Dec 1997 09:30:05 -0800 (PST) Resent-Message-Id: <199712031730.JAA26965@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, dirk.meyer@dinoex.sub.org Received: from mail.dinoex.sub.de (root@mail.dinoex.sub.de [193.203.172.14]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id JAA26559 for ; Wed, 3 Dec 1997 09:25:55 -0800 (PST) (envelope-from dinoex@net2.dinoex.sub.org) Received: from net2.dinoex.sub.org (uucp@localhost) by mail.dinoex.sub.de (8.8.5/8.8.7) with UUCP id SAA20625 for freebsd.org!FreeBSD-gnats-submit; Wed, 3 Dec 1997 18:19:21 +0100 (CET) Received: by net2.dinoex.sub.org (Smail3.1.29.1 #1) id m0xdC98-000k7VC; Wed, 3 Dec 97 11:35 CET Message-Id: Date: Wed, 3 Dec 97 11:35 CET From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5202: new port-package for pathalias Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5202 >Category: ports >Synopsis: new port-package for pathalias >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 3 09:30:04 PST 1997 >Last-Modified: >Originator: Dirk Meyer >Organization: privat >Release: FreeBSD 2.2.5-RELEASE i386 >Environment: mailrouting via maps >Description: Pathalias computes the shortest paths and corresponding routes from one host (computer system) to all other known, reachable hosts. Pathalias reads host-to-host connectiv- ity information on standard input or in the named files, and writes a list of host-route pairs on the standard out- put. >How-To-Repeat: if pathalias calculate routing links, an overflow can occur >Fix: the following archive create a directory pathalias-9.7 this can be installed in the directory "/usr/ports/mail". ftp://ftp.dinoex.sub.de/pub/appoved/ports-pathalias-9.7.tar.gz >Audit-Trail: >Unformatted: From owner-freebsd-ports Wed Dec 3 10:06:02 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA29767 for ports-outgoing; Wed, 3 Dec 1997 10:06:02 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from DonaldBurr.dyn.ml.org (root@206-18-115-187.la.inreach.net [206.18.115.187]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id KAA29757; Wed, 3 Dec 1997 10:05:54 -0800 (PST) (envelope-from dburr@POBoxes.com) Received: from DonaldBurr.dyn.ml.org (dburr@DonaldBurr.DonaldBurr.dyn.ml.org [192.160.60.1]) by DonaldBurr.dyn.ml.org (8.8.7/8.8.7) with SMTP id KAA14877; Wed, 3 Dec 1997 10:08:58 -0800 (PST) (envelope-from dburr@POBoxes.com) Message-ID: X-Mailer: XFMail 1.1 [p0] on FreeBSD Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Date: Wed, 03 Dec 1997 10:05:21 -0800 (PST) Organization: Starfleet Command From: Donald Burr To: FreeBSD Questions To: FreeBSD Questions , FreeBSD Ports Subject: C=64 emulators for FreeBSD? Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk -----BEGIN PGP SIGNED MESSAGE----- Are there any C=64 (Commodore-64) emulators for FreeBSD, or will any of the existing emulators (CCS64, C64S, etc.) run under FreeBSD's RUNDOS? (probably not, but it doesn't hurt to ask) I'd obviously prefer a freeware/shareware solution, but if there is a commercial/licensed C=64 emulator for FreeBSD, and "the price is right", I wouldn't mind having a look at it. Pointers (FTP, HTTP, etc.) greatly appreciated. Thanks! PS: I checked the ports collection (ports-current) but could not find anything appropriate. Perhaps someone is working on a port of one, though? - --- Donald Burr - Ask me for my PGP key | PGP: Your WWW HomePage: http://DonaldBurr.base.org/ ICQ #1347455 | right to Address: P.O. Box 91212, Santa Barbara, CA 93190-1212 | 'Net privacy. Phone: (805) 957-9666 FAX: (800) 492-5954 | USE IT. -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQCVAwUBNIWgN/jpixuAwagxAQEKVQP+JBcVvsMY4CeIhuW1gZTwYmrsUuu7/Ah8 2qc5yZduEX57kKaP2PtoxUr9HjfVsBH9GAeVK+utOIzfEbFGvvEc0avY+QhNB9u2 0zbiee5HSkHoVmxtwgJGEF6hS1Z5yrag5fIptra4aBNVpaVuDNcF3T+X0aRNlgYl Jt7ESBeBZPo= =hGS/ -----END PGP SIGNATURE----- From owner-freebsd-ports Wed Dec 3 13:35:16 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id NAA15345 for ports-outgoing; Wed, 3 Dec 1997 13:35:16 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id NAA15161; Wed, 3 Dec 1997 13:33:55 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id NAA04220; Wed, 3 Dec 1997 13:33:01 -0800 (PST) Date: Wed, 3 Dec 1997 13:33:01 -0800 (PST) Message-Id: <199712032133.NAA04220@freefall.freebsd.org> To: yssu@CCCA.NCTU.edu.tw, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5198 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: sync patches State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Wed Dec 3 13:31:17 PST 1997 State-Changed-Why: Committed, Thanks. From owner-freebsd-ports Wed Dec 3 15:00:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id PAA21015 for ports-outgoing; Wed, 3 Dec 1997 15:00:04 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id PAA20994; Wed, 3 Dec 1997 15:00:01 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 3 Dec 1997 15:00:01 -0800 (PST) Resent-Message-Id: <199712032300.PAA20994@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, watanabe@edu5.phys.nagoya-u.ac.jp Received: (from nobody@localhost) by hub.freebsd.org (8.8.7/8.8.7) id OAA20523; Wed, 3 Dec 1997 14:53:26 -0800 (PST) (envelope-from nobody) Message-Id: <199712032253.OAA20523@hub.freebsd.org> Date: Wed, 3 Dec 1997 14:53:26 -0800 (PST) From: watanabe@edu5.phys.nagoya-u.ac.jp To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5209: New port ja-mendexk-{euc,sjis}-2.4b (japanese/mendexk-{euc,sjis}) Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5209 >Category: ports >Synopsis: New port ja-mendexk-{euc,sjis}-2.4b (japanese/mendexk-{euc,sjis}) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Class: support >Submitter-Id: current-users >Arrival-Date: Wed Dec 3 15:00:00 PST 1997 >Last-Modified: >Originator: Makoto WATANABE >Organization: Z lab. Division of Particle and Astrophysical Science, Nagaoya University >Release: FreeBSD 2.2.2-RELEASE i386 >Environment: >Description: I made a new port 'ja-mendexk-2.4b'. Mendex is a index formatter for Japanese. This port includes EUC and SJIS version for Kanji code. (JIS code version is not supported.) I put the port packed with 'tar czf' and uuencode below "Fix:" Packed tarball is 1486 Dec 4 07:26 ja-mendexk-2.4b-971204.tar.gz Packed list is 0 Dec 2 02:54 1997 mendexk-euc/ 0 Dec 2 02:54 1997 mendexk-euc/files/ 118 Dec 2 02:54 1997 mendexk-euc/files/md5 0 Dec 2 02:54 1997 mendexk-euc/pkg/ 36 Dec 2 02:54 1997 mendexk-euc/pkg/COMMENT 205 Dec 2 02:54 1997 mendexk-euc/pkg/DESCR 90 Dec 2 02:54 1997 mendexk-euc/pkg/PLIST 1292 Dec 2 02:54 1997 mendexk-euc/Makefile 0 Dec 2 02:56 1997 mendexk-sjis/ 0 Dec 2 02:56 1997 mendexk-sjis/files/ 118 Dec 2 02:56 1997 mendexk-sjis/files/md5 0 Dec 2 02:56 1997 mendexk-sjis/pkg/ 37 Dec 2 02:56 1997 mendexk-sjis/pkg/COMMENT 206 Dec 2 02:56 1997 mendexk-sjis/pkg/DESCR 90 Dec 2 02:56 1997 mendexk-sjis/pkg/PLIST 1499 Dec 4 07:20 1997 mendexk-sjis/Makefile - Makoto WATANABE watanabe@zlab.phys.nagoya-u.ac.jp >How-To-Repeat: >Fix: begin 644 ja-mendexk-2.4b-971204.tar.gz M'XL(`(S\-%5=<'(D@2";M)'N3FAM M+^``ML\VRJ41__UV#20$TE!.X+MK]I'`V./=G=G9F5G[88A#'__5+^.1)^QL M":"*AJ;!#H!D:!(]$HC3X_0$=%45-4/5#8G<)HN2N`/:MA2:QRC-4`*P,T3] M*(N^?]]=#^-!$0H5B^&<_SO!`*=;6`7K^U^1))GYOP@L^W_H;WK>)5$DWOV^ M_R5=G_._3/VOB\H.B!O6XT6\!S*LN3V:#[W[;AQ,P1-T715_1 M#DD\(A6K2#SP_<,#S9!4UW5E+F][AUW9*QN\.-?2[RBR:$BNA&7_`,FZJVBN MJX@JE@^PZKLN]V];S3##?/S'_>Y6]@#KY']#R>N_INLL_Q>!1?]7KNIUJ]': MZ!BK\C\0X:/_93'/_ZK*\G\1J%'W0R=*ABC+<$)_P3F*48A3#'O6=66?9]GZ M)\9B_%(Q5\:](VD+^5U198_%?!%H]#'$2=1,TA,E:@"`%!,$K>>$7 MZ*&4RTA++QK&*`O<8!!D]W`79#T@\XCSQCS'TI&]Z@\XI''W\8L4:V/Q?AO7M:]*I@6V:U;G&?_"!)AK`H9L'X MO\!\_).$B^D[H$V/L2+^9552%]__::K.XK\(O(<&OH-)]?4B4J"]+(C"O(K3 MI4#K_A%UTMPZX=[#%YRD]+8$_SD*$NP?31S)JRX15E%&=@8))H>I($_R4,4> M2(>'!KGE:R\:/HEF6"CX\&%EQ?_(O2>]E6I^B?S@JJ1T-HO*<%>5<6#%;UMF57;,<*I\^]L1)$&9G!NFG99J75=JY/;\90>KAHFJU?'6&=3#QRCU/:1^/2;)S1"9H6!WI).MG=G94'CEM0A`PV>RW(<7&" MRUX4=H+N*,%'W.ZG/?!\HOQ7^Z):L\?"LAE"G^PJ>RE&<`R\\-@6]CG.C\KN M*!CX:_=3>L@-&Y-.YELZ=F6<2R?"68-V3*I9F)WP_`O=3O68;FFI)J6'6L-I MF9>7[:9]=6:;]?%3[]-Z2"XT;>NT=C,62,VE.I`%`A!TX#=X!V5_3DX+,54H MG_;\5((_B))DQQU"W@JHPKG5*YH=0R>@3?:?*4GN65:0EU[OB^.)KN]\DA9" M[.\UKII7=JMZ57'V7[5E<5OP(X8LM7G9BBK)$_-F3/8CK_3#\>00=#AB2>@- M1CZ&#V[J\S3Y\Y8YEEQ/0VV`;UEV.-][^:).OT_:\L,OZW$#SS_Y8( MX+7\+^7[/]E0F?^+P`O^WS@!O`;_2_R?\[^&SI[_"P'C?]\VGL7_E@C@?U#_ M#5UB^;\(+/E_"P3P:OY76_"_*JHRR_]%X'7^USFO.8P`_IFQ%/];((!7\[_Z M0OPKNBRQ^"\"_RW^E^8;1@`7B:7XWP(!O`;_^QC_FLCBOP@P_O=MXUG\;XD` M7L7_&HJ2Q[^D:)HZ^?^_H;+__Q>"=?E?NDY^`@*8FL$8X!<8X,_7ME!TKU.3G'.ILA@0BV1!=?F(WS6GMJ>Y_HR_>@GR%W@/G>9LGD M&6^YP`7GU^A^-R"[5CK%3PJ-C\&/YIC++\0%I8!^^"@)NK/&`&1ZH)P^"3[F M]TW%?A3B"9W)Z&Q&9S,ZFX&!@8&!@8&!@8&!@8&!@8&!@6$[^!MFJ+T>`%`` !`$W% ` end >Audit-Trail: >Unformatted: From owner-freebsd-ports Wed Dec 3 17:20:07 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA01444 for ports-outgoing; Wed, 3 Dec 1997 17:20:07 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA01395; Wed, 3 Dec 1997 17:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 3 Dec 1997 17:20:02 -0800 (PST) Resent-Message-Id: <199712040120.RAA01395@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, dirk.meyer@dinoex.sub.org Received: from mail.dinoex.sub.de (root@mail.dinoex.sub.de [193.203.172.14]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id RAA00872 for ; Wed, 3 Dec 1997 17:15:26 -0800 (PST) (envelope-from dinoex@net2.dinoex.sub.org) Received: from net2.dinoex.sub.org (uucp@localhost) by mail.dinoex.sub.de (8.8.5/8.8.7) with UUCP id CAA22120 for freebsd.org!FreeBSD-gnats-submit; Thu, 4 Dec 1997 02:16:19 +0100 (CET) Received: by net2.dinoex.sub.org (Smail3.1.29.1 #1) id m0xdOrk-000k7VC; Thu, 4 Dec 97 01:10 CET Message-Id: Date: Thu, 4 Dec 97 01:10 CET From: dirk.meyer@dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5210: new port-package for frodo Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5210 >Category: ports >Synopsis: new port-package for frodo >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 3 17:20:01 PST 1997 >Last-Modified: >Originator: Dirk Meyer >Organization: privat >Release: FreeBSD 2.2.5-RELEASE i386 >Environment: X11, tcl/tk >4.1 >Description: emulates a Commodore 64 >How-To-Repeat: port does not exists in the distribution >Fix: the following archive create a directory frodo-4.1 this can be installed in the directory "/usr/ports/emulators". ftp://ftp.dinoex.sub.de/pub/appoved/ports-frodo-4.1.tar.gz >Audit-Trail: >Unformatted: From owner-freebsd-ports Wed Dec 3 18:08:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id SAA05271 for ports-outgoing; Wed, 3 Dec 1997 18:08:04 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id SAA05129; Wed, 3 Dec 1997 18:07:26 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id SAA07079; Wed, 3 Dec 1997 18:06:30 -0800 (PST) Date: Wed, 3 Dec 1997 18:06:30 -0800 (PST) Message-Id: <199712040206.SAA07079@freefall.freebsd.org> To: frankch@waru.life.nthu.edu.tw, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5066 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: New port rxvt for Chinese category State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Wed Dec 3 18:05:28 PST 1997 State-Changed-Why: Committed, thanks. From owner-freebsd-ports Wed Dec 3 18:09:20 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id SAA05441 for ports-outgoing; Wed, 3 Dec 1997 18:09:20 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id SAA05428; Wed, 3 Dec 1997 18:09:12 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id SAA07163; Wed, 3 Dec 1997 18:08:16 -0800 (PST) Date: Wed, 3 Dec 1997 18:08:16 -0800 (PST) Message-Id: <199712040208.SAA07163@freefall.freebsd.org> To: vanilla@MinJe.com.TW, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/4330 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: new ports for rxvt with big5 support State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Wed Dec 3 18:06:40 PST 1997 State-Changed-Why: the latest version has committed. From owner-freebsd-ports Wed Dec 3 18:15:18 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id SAA06100 for ports-outgoing; Wed, 3 Dec 1997 18:15:18 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id SAA05571; Wed, 3 Dec 1997 18:10:26 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id SAA07243; Wed, 3 Dec 1997 18:09:30 -0800 (PST) Date: Wed, 3 Dec 1997 18:09:30 -0800 (PST) Message-Id: <199712040209.SAA07243@freefall.freebsd.org> To: frankch@waru.life.nthu.edu.tw, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/4362 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: submit new port chinese/rxvt State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Wed Dec 3 18:08:29 PST 1997 State-Changed-Why: the latest version has committed. From owner-freebsd-ports Wed Dec 3 18:22:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id SAA06652 for ports-outgoing; Wed, 3 Dec 1997 18:22:03 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from fallout.campusview.indiana.edu (fallout.campusview.indiana.edu [149.159.1.1]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id SAA06630 for ; Wed, 3 Dec 1997 18:21:38 -0800 (PST) (envelope-from jfieber@indiana.edu) Received: from localhost (jfieber@localhost) by fallout.campusview.indiana.edu (8.8.7/8.8.7) with SMTP id VAA27324; Wed, 3 Dec 1997 21:21:34 -0500 (EST) Date: Wed, 3 Dec 1997 21:21:34 -0500 (EST) From: John Fieber Reply-To: John Fieber To: Satoshi Asami cc: max@wide.ad.jp, ports@FreeBSD.ORG Subject: Re: the location of the Handbook and the FAQ In-Reply-To: <199712040130.RAA09247@silvia.HIP.Berkeley.EDU> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk [moved from committers to ports] On Wed, 3 Dec 1997, Satoshi Asami wrote: > I thought I heard you say that a few months ago. :) Hm... from the timestamps it looks like it has been collecting dust since August 4... :) (Unfortunately, my time for charitable contributions to FreeBSD that are not *direct* spinoffs of my own personal projects have been in a steady decline since I returned to graduate school for that elusive Phd. For the record, the decline will probably continue.) > By the way, are you aware that there is a japanese/handbook port? Yup, but see below. > By the way, whether there exist ports for them or not doesn't change > anything about my original proposal. The problem is not having a > "standard" place to check them out. Got that and understand, but my proposal is that the handbook/faq should be considered separate entities from FreeBSD--third party ventures if you will. The fact that they live in the same cvs repository as the FreeBSD core, or a cvs repository at all, is just coincidence and convenience. Just like any other port, the handbook/faq ports should fetch a tarball of the source, unpack it in the "standard" work subdirectory and install in ${PREFIX}/share/doc. Giving these special treatment because they live in the FreeBSD cvs repository is more trouble than it is worth, in my humble opinin. The problem I ran into was dealing with versions. I setup the port to just grab the current version from ftp.freebsd.org and stamp it with the date of the build. You suggested that discrete snapshots should be made instead (I've got the email somewhere...). The idea of rolling a new handbook release every week or month and updating the port was somewhat unapealing to me, but that was around August 4th and something else must have demanded my attention, so there it sits. :) Oh, and the other problem was that the PLIST needed to be generated at build time if the "handbook-current" was to be used. Taking snapshots as you suggested would solve that, but there is the hassle of rolling periodic handbook releases. The "rolling" is actually easy, but how would you feel about cron jobs doing commits to update the version, PLIST and md5? For your entertainment, my sample handbook port is below, although I think it will break now that wcarchive doesn't to on-the-fly gzipping. (trivial to fix) -john begin 644 handbook.tar.gz M'XL(`)\.AC0``^V8>V_:,!#`^3?^%%=*I4T;Y$$>*AU5*4EIU/)08.NF;9J` M&,@@A)F@/5J^^^PTH="U8I4*557_)+!S]OD.G\]V&+3';B<(AF)J^,OJQJ+?]Z0-4F5-(5*\KJ:3X&T`5_^ MX87'?Q=J^"=,`A).H1N,1K@;>L$8_'@U0"\@!2%9)&@7/F`R91T(_C'S"'8+ M0G=&"!Z'M,ULAQBZ!-."RH72K$\G%]2W(._O&[3]8A#X5"[$4XEVJ2QCNQE: M0:;=;-5*5:MX8ZQQ5F&2G:+@LH&S,TB_R5PF'>?9O4][_IZ;1N52RZK4'=MJ M%@7?FW91M=1L6@&71'14>Q:BWXLIYAX?!3WS-6="D)VI59WK!/[G%FY=BQZF*,+YZSIE(L" ME=*J:3OSM?:6?AAJG-/JBG8D0>CXO7UN?C.MAE4S(YL-9O_C7.QX8W':]T<] M/RQ0:=UI-2.]$/\*)X0.'S4&Q&^'=*KK9=H8C9_H3P=M@ID?"$T(SGICFA2C M40$)1Y\AZP)U+M*9+[L)7^'JBC95(Q+.L8\'T//&+BP\77'ERPYDP]\3#"X<,A4V750_7P;#\K_:/_/:[+!\W\;\/Q_V2SRG[WM33=S`WS` M_4^5E.C]7Y'Y_6\KW(J_[VY@TM?N_WGC=OQUC>__6Z%J:O`J600Y.A6Y_I_7 A4(3K/S?X2<#A<#@<#H?#X7`X'`Z'\]SY"P-[&)T`*``` ` end From owner-freebsd-ports Wed Dec 3 18:24:46 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id SAA06880 for ports-outgoing; Wed, 3 Dec 1997 18:24:46 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id SAA06864; Wed, 3 Dec 1997 18:24:31 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id SAA07707; Wed, 3 Dec 1997 18:23:35 -0800 (PST) Date: Wed, 3 Dec 1997 18:23:35 -0800 (PST) Message-Id: <199712040223.SAA07707@freefall.freebsd.org> To: vanilla@MinJe.com.TW, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5094 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: change fvwm95's ftp directory State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Wed Dec 3 18:22:55 PST 1997 State-Changed-Why: Committed. From owner-freebsd-ports Wed Dec 3 18:38:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id SAA07946 for ports-outgoing; Wed, 3 Dec 1997 18:38:03 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id SAA07926; Wed, 3 Dec 1997 18:37:54 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id SAA08049; Wed, 3 Dec 1997 18:36:57 -0800 (PST) Date: Wed, 3 Dec 1997 18:36:57 -0800 (PST) Message-Id: <199712040236.SAA08049@freefall.freebsd.org> To: vanilla@MinJe.com.TW, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5115 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Update xbuffy to 3.3 State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Wed Dec 3 18:36:10 PST 1997 State-Changed-Why: Committed. From owner-freebsd-ports Wed Dec 3 19:27:37 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA11815 for ports-outgoing; Wed, 3 Dec 1997 19:27:37 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-49.ix.netcom.com [207.93.143.177]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id TAA11781 for ; Wed, 3 Dec 1997 19:27:16 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id TAA10024; Wed, 3 Dec 1997 19:25:52 -0800 (PST) Date: Wed, 3 Dec 1997 19:25:52 -0800 (PST) Message-Id: <199712040325.TAA10024@silvia.HIP.Berkeley.EDU> To: jfieber@indiana.edu CC: max@wide.ad.jp, ports@FreeBSD.ORG In-reply-to: (message from John Fieber on Wed, 3 Dec 1997 21:21:34 -0500 (EST)) Subject: Re: the location of the Handbook and the FAQ From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * Got that and understand, but my proposal is that the handbook/faq * should be considered separate entities from FreeBSD--third party * ventures if you will. The fact that they live in the same cvs * repository as the FreeBSD core, or a cvs repository at all, is * just coincidence and convenience. Just like any other port, the * handbook/faq ports should fetch a tarball of the source, unpack * it in the "standard" work subdirectory and install in * ${PREFIX}/share/doc. Giving these special treatment because they * live in the FreeBSD cvs repository is more trouble than it is * worth, in my humble opinin. I think you are contradicting yourself here. You just lined out the "worth" of having stuff from the local tree. :) Also, we have quite different views on what these "ports" are. My take is that these are just for building packages, and the current Japanese handbook port works just fine for that. I only need to go check to see if PLIST is up to date once in a while. People who like to build stuff from sources can cvsup doc-all and do a "make all install" in there. It's really not any harder than building the port. Those who don't want to build from sources use the package, of course. :) Satoshi From owner-freebsd-ports Wed Dec 3 19:45:36 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA13292 for ports-outgoing; Wed, 3 Dec 1997 19:45:36 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id TAA13244; Wed, 3 Dec 1997 19:44:54 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id TAA08639; Wed, 3 Dec 1997 19:43:57 -0800 (PST) Date: Wed, 3 Dec 1997 19:43:57 -0800 (PST) Message-Id: <199712040343.TAA08639@freefall.freebsd.org> To: vanilla@MinJe.com.TW, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/4620 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: update xinetd to 2.2.1 State-Changed-From-To: analyzed-closed State-Changed-By: vanilla State-Changed-When: Wed Dec 3 19:41:18 PST 1997 State-Changed-Why: Fix some proglem, committed. From owner-freebsd-ports Wed Dec 3 19:46:44 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA13535 for ports-outgoing; Wed, 3 Dec 1997 19:46:44 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-49.ix.netcom.com [207.93.143.177]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id TAA13525 for ; Wed, 3 Dec 1997 19:46:40 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id TAA14807; Wed, 3 Dec 1997 19:46:10 -0800 (PST) Date: Wed, 3 Dec 1997 19:46:10 -0800 (PST) Message-Id: <199712040346.TAA14807@silvia.HIP.Berkeley.EDU> To: bde@zeta.org.au CC: Studded@dal.net, bde@zeta.org.au, ports@freebsd.org In-reply-to: <199712011646.DAA28955@godzilla.zeta.org.au> (message from Bruce Evans on Tue, 2 Dec 1997 03:46:49 +1100) Subject: Re: Question/suggestion re pine port From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * The reasonable default is in sys.mk. Ah, ok. Satoshi From owner-freebsd-ports Thu Dec 4 01:55:08 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA07898 for ports-outgoing; Thu, 4 Dec 1997 01:55:08 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from home.gtcs.com (home.gtcs.com [206.54.69.238]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA07893 for ; Thu, 4 Dec 1997 01:55:04 -0800 (PST) (envelope-from bruce@gtcs.com) Received: from home.gtcs.com (localhost.gtcs.com [127.0.0.1]) by home.gtcs.com (8.8.5/8.8.5) with SMTP id CAA15177 for ; Thu, 4 Dec 1997 02:52:54 -0700 (MST) Date: Thu, 4 Dec 1997 02:52:53 -0700 (MST) From: Bruce Gingery To: freebsd-ports@freebsd.org Subject: Q: When one dist makes several useful ports? Message-ID: Disposition-Notification-To: bgingery@gtcs.com MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I've done a Quick-and-Dirty port of bochs v971118 - a PC Emulator that reportedly can run: DOS 5.0 and up (perhaps back to 3.2 or 3.3?) Windows 3.1 Windows95 Minix and in the future, most likely Linux BeOS - PC and FreeBSD each under it. It uses its own embedded user-level vn device to emulate DOS Diskette and FAT supporting HDD -in-a-file- similar to other products like SoftPC. It was an easy port to do, with GNU-configure already in place, but the varied options *do* raise a question. It can be compiled to support 1. an 8088/8086 2. an i286 OR 3. an i386 (with 8086 mode too) Now, because the "installed memory" needs to both be compiled and user-level configured, it would appear at this point that at least TWO distinct ports would be advisable from this package. 1. Minimal 8086 (for old DOS apps, including games) 2. 16M full-AT class machine able to run Windows95 or Minix and better support Windows3.1 Yet as one might guess, MOST of the files are shared between the two optional compiles - including a VGA BIOS image, a PC BIOS image, and all of the documentation. Would it therefore be best to make *three* portballs out of this? 1. Common components 2. top-end support 3. minimal-impact .. with #2 and #3 both dependent on #1? I don't have time for this, so if anyone would like to take what I've started and run with it -- WONDERFUL. I'm just hitting some constraints where "wine" just won't cut it, for my minimal need for DOS/Doze compat. At the moment, I have (what seems to be) a fully functional port of the full-blown version. portlint returns ONE fatal error, as I did the same as the Wine port in specifying the DATE in the DIST block - no warnings. Bruce Gingery From owner-freebsd-ports Thu Dec 4 02:49:16 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA10910 for ports-outgoing; Thu, 4 Dec 1997 02:49:16 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-49.ix.netcom.com [207.93.143.177]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id CAA10888 for ; Thu, 4 Dec 1997 02:49:11 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id CAA16348; Thu, 4 Dec 1997 02:49:05 -0800 (PST) Date: Thu, 4 Dec 1997 02:49:05 -0800 (PST) Message-Id: <199712041049.CAA16348@silvia.HIP.Berkeley.EDU> To: bruce@gtcs.com CC: freebsd-ports@freebsd.org In-reply-to: (message from Bruce Gingery on Thu, 4 Dec 1997 02:52:53 -0700 (MST)) Subject: Re: Q: When one dist makes several useful ports? From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * and in the future, most likely * Linux * BeOS - PC * and FreeBSD Wow! Run FreeBSD under FreeBSD emulation? Can I run my 1.1 CD again? :) * Would it therefore be best to make *three* portballs out of this? * * 1. Common components * 2. top-end support * 3. minimal-impact * * .. with #2 and #3 both dependent on #1? That sounds cool. Look at editors/mule-common and various mule ports. Basically mule-common is the "common components" part, mule is the "minimal impact" part with hooks to build others, and {chinese,japanese,korean}/mule-* are ones with various options for specific languages and input formats. These are overly complicated because they attempt to share the work/ subdirectory for mule-common and one of the others, but if you are willing to extract and build the ports twice, it should be much easier. Satoshi From owner-freebsd-ports Thu Dec 4 03:20:07 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id DAA12666 for ports-outgoing; Thu, 4 Dec 1997 03:20:07 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id DAA12642; Thu, 4 Dec 1997 03:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 4 Dec 1997 03:20:02 -0800 (PST) Resent-Message-Id: <199712041120.DAA12642@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, frankch@waru.life.nthu.edu.tw Received: from waru.life.nthu.edu.tw (frankch@waru.life.nthu.edu.tw [140.114.98.13]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id DAA12376 for ; Thu, 4 Dec 1997 03:13:57 -0800 (PST) (envelope-from frankch@waru.life.nthu.edu.tw) Received: (from frankch@localhost) by waru.life.nthu.edu.tw (8.8.8/8.8.7) id TAA17133; Thu, 4 Dec 1997 19:15:16 +0800 (CST) Message-Id: <199712041115.TAA17133@waru.life.nthu.edu.tw> Date: Thu, 4 Dec 1997 19:15:16 +0800 (CST) From: frankch@waru.life.nthu.eud.tw Reply-To: frankch@waru.life.nthu.edu.tw To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5214: New port rasmol Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5214 >Category: ports >Synopsis: New port rasmol, a molecular visualization program >Confidential: yes >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 4 03:20:01 PST 1997 >Last-Modified: >Originator: Frank Chen Hsiung Chan >Organization: Department of Life Science, National Tsing Hua University, Hsinchu, Taiwan >Release: FreeBSD 2.2.5-STABLE i386 >Environment: FreeBSD 2.2.5 STABLE >Description: This is a new port biology/rasmol which is a biological molecule visualization program. There is no category biology yet, but I think it would be nice to have one. >How-To-Repeat: >Fix: The port directory tarball is in ftp.freebsd.org/pub/FreeBSD/incoming, the file name is rasmol-port.tgz. >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Dec 4 03:49:30 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id DAA14676 for ports-outgoing; Thu, 4 Dec 1997 03:49:30 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-49.ix.netcom.com [207.93.143.177]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id DAA14665 for ; Thu, 4 Dec 1997 03:49:24 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id DAA16531; Thu, 4 Dec 1997 03:49:22 -0800 (PST) Date: Thu, 4 Dec 1997 03:49:22 -0800 (PST) Message-Id: <199712041149.DAA16531@silvia.HIP.Berkeley.EDU> To: ports@freebsd.org CC: frankch@waru.life.nthu.edu.tw In-reply-to: <199712041120.DAA12642@hub.freebsd.org> (frankch@waru.life.nthu.eud.tw) Subject: Re: ports/5214: New port rasmol From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * This is a new port biology/rasmol which is a biological * molecule visualization program. There is no category * biology yet, but I think it would be nice to have one. I agree. Are there any objections? Satoshi From owner-freebsd-ports Thu Dec 4 04:56:36 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id EAA18788 for ports-outgoing; Thu, 4 Dec 1997 04:56:36 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from schubert.promo.de (schubert.Promo.DE [194.45.188.65]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id EAA18775 for ; Thu, 4 Dec 1997 04:56:28 -0800 (PST) (envelope-from stefan@promo.de) Received: from [194.45.188.81] (stefan.Promo.DE [194.45.188.81]) by schubert.promo.de (8.8.5/8.8.5) with ESMTP id NAA21994; Thu, 4 Dec 1997 13:51:51 +0100 (MET) X-Sender: stefan@mail.promo.de Message-Id: In-Reply-To: <199712041149.DAA16531@silvia.HIP.Berkeley.EDU> References: <199712041120.DAA12642@hub.freebsd.org> (frankch@waru.life.nthu.eud.tw) Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Date: Thu, 4 Dec 1997 13:55:20 +0100 To: asami@cs.berkeley.edu (Satoshi Asami) From: Stefan Bethke Subject: Re: ports/5214: New port rasmol Cc: ports@FreeBSD.ORG, frankch@waru.life.nthu.edu.tw Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk At 12:49 Uhr +0100 04.12.1997, Satoshi Asami wrote: > * This is a new port biology/rasmol which is a biological > * molecule visualization program. There is no category > * biology yet, but I think it would be nice to have one. > >I agree. Are there any objections? How about 'visualization' or, even more generic, 'scientific'? I'm not sure, but I feel that there might not be that many bio programs; however, there are probably a lot of visualization tools, and even more scientific ones. The more categories we have, the harder it gets to look for software one might use to solve a particular problem. Also, introducing many highly specialized categories ('physics', 'chemistry', ...) will make the list of categories even longer, and I think it is fairly long already. Stefan -- Stefan Bethke Promo Datentechnik | Tel. +49-40-851744-18 + Systemberatung GmbH | Fax. +49-40-851744-44 Eduardstrasse 46-48 | e-mail: stefan@Promo.DE D-20257 Hamburg | http://www.Promo.DE/ From owner-freebsd-ports Thu Dec 4 05:11:12 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id FAA19528 for ports-outgoing; Thu, 4 Dec 1997 05:11:12 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from messiah.cableinet.net (messiah.cableinet.net [194.117.157.68]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id FAA19510 for ; Thu, 4 Dec 1997 05:11:02 -0800 (PST) (envelope-from i.vaudrey@cableinet.co.uk) Received: (qmail 14446 invoked from network); 4 Dec 1997 14:13:34 -0000 Received: from lions.cableinet.net (193.38.113.5) by messiah with SMTP; 4 Dec 1997 14:13:34 -0000 Received: from nemkoltd.nildram.co.uk (usr47-cro.cableinet.co.uk [194.117.149.57]) by lions.cableinet.net (950413.SGI.8.6.12/951211.SGI) via SMTP id BAA01023; Thu, 4 Dec 1997 01:09:57 GMT Received: by nemkoltd.nildram.co.uk with Microsoft Mail id <01BD0051.9A47F540@nemkoltd.nildram.co.uk>; Thu, 4 Dec 1997 01:11:51 -0000 Message-ID: <01BD0051.9A47F540@nemkoltd.nildram.co.uk> From: Ian Vaudrey To: "'Donald Burr'" Cc: FreeBSD Ports Subject: RE: C=64 emulators for FreeBSD? Date: Thu, 4 Dec 1997 01:11:35 -0000 Encoding: 39 TEXT Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Perhaps either Frodo or VICE could be ported? - Ian On 03 December 1997 10:05, Donald Burr wrote: > -----BEGIN PGP SIGNED MESSAGE----- > > Are there any C=64 (Commodore-64) emulators for FreeBSD, or will any of > the existing emulators (CCS64, C64S, etc.) run under FreeBSD's RUNDOS? > (probably not, but it doesn't hurt to ask) I'd obviously prefer a > freeware/shareware solution, but if there is a commercial/licensed C=64 > emulator for FreeBSD, and "the price is right", I wouldn't mind having a > look at it. Pointers (FTP, HTTP, etc.) greatly appreciated. Thanks! > > PS: I checked the ports collection (ports-current) but could not find > anything appropriate. Perhaps someone is working on a port of one, though? > > - --- > Donald Burr - Ask me for my PGP key | PGP: Your > WWW HomePage: http://DonaldBurr.base.org/ ICQ #1347455 | right to > Address: P.O. Box 91212, Santa Barbara, CA 93190-1212 | 'Net privacy. > Phone: (805) 957-9666 FAX: (800) 492-5954 | USE IT. > > -----BEGIN PGP SIGNATURE----- > Version: 2.6.2 > > iQCVAwUBNIWgN/jpixuAwagxAQEKVQP+JBcVvsMY4CeIhuW1gZTwYmrsUuu7/Ah8 > 2qc5yZduEX57kKaP2PtoxUr9HjfVsBH9GAeVK+utOIzfEbFGvvEc0avY+QhNB9u2 > 0zbiee5HSkHoVmxtwgJGEF6hS1Z5yrag5fIptra4aBNVpaVuDNcF3T+X0aRNlgYl > Jt7ESBeBZPo= > =hGS/ > -----END PGP SIGNATURE----- > > From owner-freebsd-ports Thu Dec 4 05:12:14 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id FAA19623 for ports-outgoing; Thu, 4 Dec 1997 05:12:14 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-49.ix.netcom.com [207.93.143.177]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id FAA19611 for ; Thu, 4 Dec 1997 05:12:06 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id FAA17225; Thu, 4 Dec 1997 05:08:31 -0800 (PST) Date: Thu, 4 Dec 1997 05:08:31 -0800 (PST) Message-Id: <199712041308.FAA17225@silvia.HIP.Berkeley.EDU> To: stefan@promo.de CC: ports@FreeBSD.ORG, frankch@waru.life.nthu.edu.tw In-reply-to: (message from Stefan Bethke on Thu, 4 Dec 1997 13:55:20 +0100) Subject: Re: ports/5214: New port rasmol From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * How about 'visualization' or, even more generic, 'scientific'? I'm not * sure, but I feel that there might not be that many bio programs; however, * there are probably a lot of visualization tools, and even more scientific * ones. "scientific" is way too generic. We already have "astro" and "math", which I think are two of the best categories in terms of easy separation with others. As for "visualization", I'm sorry but I can't tell what that means. Also, the porter (in private mail) mentioned that he has a lot more biology-related ports waiting in the wings. * The more categories we have, the harder it gets to look for software one * might use to solve a particular problem. Also, introducing many highly * specialized categories ('physics', 'chemistry', ...) will make the list of * categories even longer, and I think it is fairly long already. I disagree. The more highly specialized categories we have, the easier for people to find a port for a specific interest. Having generic categories that overlap each other too much is counter-productive. When's the last time people complained that they can't find xephem in astro or linpack in math? Yet people are always confused about xdvi being in print and xpdf being in graphics. Satoshi From owner-freebsd-ports Thu Dec 4 05:20:12 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id FAA20501 for ports-outgoing; Thu, 4 Dec 1997 05:20:12 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id FAA20457; Thu, 4 Dec 1997 05:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 4 Dec 1997 05:20:02 -0800 (PST) Resent-Message-Id: <199712041320.FAA20457@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, frankch@waru.life.nthu.edu.tw Received: from waru.life.nthu.edu.tw (frankch@waru.life.nthu.edu.tw [140.114.98.13]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id FAA19511 for ; Thu, 4 Dec 1997 05:11:06 -0800 (PST) (envelope-from frankch@waru.life.nthu.edu.tw) Received: (from frankch@localhost) by waru.life.nthu.edu.tw (8.8.8/8.8.7) id VAA24840; Thu, 4 Dec 1997 21:12:26 +0800 (CST) Message-Id: <199712041312.VAA24840@waru.life.nthu.edu.tw> Date: Thu, 4 Dec 1997 21:12:26 +0800 (CST) From: frankch@waru.life.nthu.edu.tw Reply-To: frankch@waru.life.nthu.edu.tw To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5215: New port biology/babel Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5215 >Category: ports >Synopsis: New port biology/babel >Confidential: yes >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 4 05:20:01 PST 1997 >Last-Modified: >Originator: Frank Chen Hsiung Chan >Organization: Department of Life Science, National Tsing Hua University, Hsinchu, Taiwan >Release: FreeBSD 2.2.5-STABLE i386 >Environment: FreeBSD 2.2.5 STABLE >Description: This is a port of a molecular file format converter, babel. Babel is developed by Dolata Group, Department of Chemistry, University of Arizona and Ohio State University. >How-To-Repeat: >Fix: The port tarball is now in ftp://ftp.freebsd.org/pub/FreeBSD/incoming and the filename is babel-port.tgz >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Dec 4 05:51:30 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id FAA22521 for ports-outgoing; Thu, 4 Dec 1997 05:51:30 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-49.ix.netcom.com [207.93.143.177]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id FAA22510 for ; Thu, 4 Dec 1997 05:51:26 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id FAA01480; Thu, 4 Dec 1997 05:51:24 -0800 (PST) Date: Thu, 4 Dec 1997 05:51:24 -0800 (PST) Message-Id: <199712041351.FAA01480@silvia.HIP.Berkeley.EDU> To: ports@freebsd.org Subject: FWF From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Has anyone seen this port fail unreliably? I just got this: === gcc -o ../../bin/TextMenuT -O -L/usr/X11R6/lib TextMenu.o TextMenuT.o ../../lib/libfwf.a -lXpm ../../lib/libDir.a -lXpm -lXaw -lXmu -L/usr/X11R6/lib -lXt -lX11 -lXt -lSM -lICE -lXext -lX11 TextMenuT.o: Undefined symbol `_xfwfButtonWidgetClass' referenced from text segment TextMenuT.o: Undefined symbol `_xfwfButtonWidgetClass' referenced from text segment TextMenuT.o: Undefined symbol `_xfwfButtonWidgetClass' referenced from text segment TextMenuT.o: Undefined symbol `_xfwfButtonWidgetClass' referenced from text segment TextMenuT.o: Undefined symbol `_xfwfButtonWidgetClass' referenced from text segment *** Error code 1 === Looking back in the log, the relevant parts are: === : ar qc ../../lib/libfwf.a Label.o ranlib ../../lib/libfwf.a cp ./Label.man ../../man/Label.man cp ./LabelT.man ../../man/LabelT.man building objects in src/Button... rm -f Button.o gcc -c -I../../include -I/usr/X11R6/include -O -I/usr/X11R6/include -I/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO Button.c rm -f ButtonT.o gcc -c -I../../include -I/usr/X11R6/include -O -I/usr/X11R6/include -I/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO ButtonT.c cp ./Button.man ../../man/Button.man cp ./ButtonT.man ../../man/ButtonT.man building objects in src/RowCol... rm -f RowCol.o gcc -c -I../../include -I/usr/X11R6/include -O -I/usr/X11R6/include -I/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO RowCol.c rm -f RowColT.o gcc -c -I../../include -I/usr/X11R6/include -O -I/usr/X11R6/include -I/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO RowColT.c Adding RowCol.o To Library ../../lib/libfwf.a ar qc ../../lib/libfwf.a RowCol.o ranlib ../../lib/libfwf.a : === Note that the "ar/ranlib" commands are missing for the button widget class. The Makefile doesn't look exactly suspicious: === : WIDGET = Button : LIB_OBJS = $(WIDGET).o : $(FWF_LIBDIR)/$(FWF_LIBNAME):: $(LIB_OBJS) -@(if [ ! -f $(FWF_LIBDIR)/$(FWF_LIBNAME) ]; then \ $(MKDIRHIER) $(FWF_LIBDIR) ; \ fi; exit 0) @echo Adding $(LIB_OBJS) To Library $(FWF_LIBDIR)/$(FWF_LIBNAME) $(ARMERGE) $(FWF_LIBDIR)/$(FWF_LIBNAME) $(LIB_OBJS) $(RANLIB) $(FWF_LIBDIR)/$(FWF_LIBNAME) : === The problem is that this error is not reproducible, and it fails in all sorts of different places. Also, sometimes it fails, sometimes it doesn't. It usually works better with a close to empty /usr/X11R6. Any ideas? ;< Satoshi From owner-freebsd-ports Thu Dec 4 06:02:59 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id GAA23372 for ports-outgoing; Thu, 4 Dec 1997 06:02:59 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from fallout.campusview.indiana.edu (fallout.campusview.indiana.edu [149.159.1.1]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id GAA23335 for ; Thu, 4 Dec 1997 06:02:47 -0800 (PST) (envelope-from jfieber@indiana.edu) Received: from localhost (jfieber@localhost) by fallout.campusview.indiana.edu (8.8.7/8.8.7) with SMTP id JAA28783; Thu, 4 Dec 1997 09:02:33 -0500 (EST) Date: Thu, 4 Dec 1997 09:02:32 -0500 (EST) From: John Fieber Reply-To: John Fieber To: Satoshi Asami cc: max@wide.ad.jp, ports@FreeBSD.ORG Subject: Re: the location of the Handbook and the FAQ In-Reply-To: <199712040325.TAA10024@silvia.HIP.Berkeley.EDU> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Wed, 3 Dec 1997, Satoshi Asami wrote: > * Got that and understand, but my proposal is that the handbook/faq > * should be considered separate entities from FreeBSD--third party > * ventures if you will. The fact that they live in the same cvs > * repository as the FreeBSD core, or a cvs repository at all, is > * just coincidence and convenience. Just like any other port, the > * handbook/faq ports should fetch a tarball of the source, unpack > * it in the "standard" work subdirectory and install in > * ${PREFIX}/share/doc. Giving these special treatment because they > * live in the FreeBSD cvs repository is more trouble than it is > * worth, in my humble opinin. > > I think you are contradicting yourself here. You just lined out the > "worth" of having stuff from the local tree. :) Whoops, you lost me there! Explain? What is the "local" tree we are talking about? > Also, we have quite different views on what these "ports" are. My > take is that these are just for building packages, and the current > Japanese handbook port works just fine for that. The difference, as far as how the port is constructed, is small. The japanese handbook port has a dependency that you have to step outside the standard ports mechanism to satisfy--getting the handbook source. What is needed is not a standard place to have the source installed on your system, but a standard place you can ftp it from. Alternately, it could be cvsupped directly into the work directory by the port makefile. > People who like to build stuff from sources can cvsup doc-all and do a > "make all install" in there. It's really not any harder than building > the port. Although it isn't any harder to DO once you know WHAT to do, you do have to figure out what to do (cvsupping the doc-all collection) and I get a fair amount of email from puzzled users about that point. Eliminating the external depenedency would remove that apparently not-completely-obvious step. -john From owner-freebsd-ports Thu Dec 4 06:03:00 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id GAA23384 for ports-outgoing; Thu, 4 Dec 1997 06:03:00 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id GAA23354 for ; Thu, 4 Dec 1997 06:02:52 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.7/8.6.9) with ESMTP id GAA22718; Thu, 4 Dec 1997 06:01:42 -0800 (PST) To: asami@cs.berkeley.edu (Satoshi Asami) cc: stefan@promo.de, ports@FreeBSD.ORG, frankch@waru.life.nthu.edu.tw Subject: Re: ports/5214: New port rasmol In-reply-to: Your message of "Thu, 04 Dec 1997 05:08:31 PST." <199712041308.FAA17225@silvia.HIP.Berkeley.EDU> Date: Thu, 04 Dec 1997 06:01:42 -0800 Message-ID: <22713.881244102@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > "scientific" is way too generic. We already have "astro" and "math", > which I think are two of the best categories in terms of easy > separation with others. I agree and think that a "biology" category is an inevitable step anyway. I will not be at all surprised to see physics, chemistry and statistics join as additional categories in the coming year, either. Jordan From owner-freebsd-ports Thu Dec 4 06:10:13 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id GAA23879 for ports-outgoing; Thu, 4 Dec 1997 06:10:13 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-49.ix.netcom.com [207.93.143.177]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id GAA23874 for ; Thu, 4 Dec 1997 06:10:10 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id GAA01546; Thu, 4 Dec 1997 06:09:39 -0800 (PST) Date: Thu, 4 Dec 1997 06:09:39 -0800 (PST) Message-Id: <199712041409.GAA01546@silvia.HIP.Berkeley.EDU> To: jfieber@indiana.edu CC: max@wide.ad.jp, ports@FreeBSD.ORG In-reply-to: (message from John Fieber on Thu, 4 Dec 1997 09:02:32 -0500 (EST)) Subject: Re: the location of the Handbook and the FAQ From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * Whoops, you lost me there! Explain? What is the "local" tree we * are talking about? The local doc source tree. * The difference, as far as how the port is constructed, is small. * The japanese handbook port has a dependency that you have to step * outside the standard ports mechanism to satisfy--getting the * handbook source. What is needed is not a standard place to have * the source installed on your system, but a standard place you can * ftp it from. Alternately, it could be cvsupped directly into the * work directory by the port makefile. And didn't you already line out all the sticky parts of how to do that? Sure, we can move all the nastiness out of the ports mechanism to whatever script you are going to write to build the tarball on the ftp site and commit the date/checksum changes to the ports, but I think the current japanese/handbook method is MUCH simpler. * Although it isn't any harder to DO once you know WHAT to do, you * do have to figure out what to do (cvsupping the doc-all * collection) and I get a fair amount of email from puzzled users * about that point. Eliminating the external depenedency would * remove that apparently not-completely-obvious step. Totally clueless people can use packages. As for clueful users, I don't think cvsupping doc-all is that much harder than cvsupping ports-all. Satoshi From owner-freebsd-ports Thu Dec 4 07:20:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA28406 for ports-outgoing; Thu, 4 Dec 1997 07:20:05 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA28396; Thu, 4 Dec 1997 07:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 4 Dec 1997 07:20:01 -0800 (PST) Resent-Message-Id: <199712041520.HAA28396@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, frankch@waru.life.nthu.edu.tw Received: from waru.life.nthu.edu.tw (frankch@waru.life.nthu.edu.tw [140.114.98.13]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id HAA28003 for ; Thu, 4 Dec 1997 07:15:10 -0800 (PST) (envelope-from frankch@waru.life.nthu.edu.tw) Received: (from frankch@localhost) by waru.life.nthu.edu.tw (8.8.8/8.8.7) id XAA27894; Thu, 4 Dec 1997 23:12:17 +0800 (CST) Message-Id: <199712041512.XAA27894@waru.life.nthu.edu.tw> Date: Thu, 4 Dec 1997 23:12:17 +0800 (CST) From: frankch@waru.life.nthu.edu.tw Reply-To: frankch@waru.life.nthu.edu.tw To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5217: New port biology/kinemage Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5217 >Category: ports >Synopsis: New port biology/kinemage >Confidential: yes >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 4 07:20:01 PST 1997 >Last-Modified: >Originator: Frank Chen Hsiung Chan >Organization: Department of Life Science, National Tsing Hua University, Hsinchu, Taiwan >Release: FreeBSD 2.2.5-STABLE i386 >Environment: FreeBSD 2.2.5 STABLE >Description: This is kinemage, a molecular visualization program which is suitable for educational usage. This program only available in binary form, and we could only use the linux binary. Though not a native program, it runs fast, and produce high quality images. >How-To-Repeat: >Fix: The port tarball kinemage-port.tgz is in ftp://ftp.freebsd.org/pub/FreeBSD/incoming/ >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Dec 4 08:43:59 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id IAA05068 for ports-outgoing; Thu, 4 Dec 1997 08:43:59 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-49.ix.netcom.com [207.93.143.177]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id IAA05053 for ; Thu, 4 Dec 1997 08:43:55 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id IAA02145; Thu, 4 Dec 1997 08:36:05 -0800 (PST) Date: Thu, 4 Dec 1997 08:36:05 -0800 (PST) Message-Id: <199712041636.IAA02145@silvia.HIP.Berkeley.EDU> To: pfgiffun@bachue.usc.unal.edu.co CC: stefan@promo.de, ports@FreeBSD.ORG, frankch@waru.life.nthu.edu.tw In-reply-to: (pfgiffun@bachue.usc.unal.edu.co) Subject: Re: ports/5214: New port rasmol From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * I think a "chemistry" category, would be more appropiate...I was also * thinking of porting VMD, but I have had no time...there are lots of tools * like rasmol and biology is not the only place where this utilities apply. chemistry? That's fine for me too. I guess the line between biology and chemistry is somewhat hazy. Uumph. (Maybe we can make a new category "biochem" to engulf both. :> ) Satoshi From owner-freebsd-ports Thu Dec 4 09:21:39 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA08022 for ports-outgoing; Thu, 4 Dec 1997 09:21:39 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-49.ix.netcom.com [207.93.143.177]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id JAA07987; Thu, 4 Dec 1997 09:21:21 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id JAA02770; Thu, 4 Dec 1997 09:21:19 -0800 (PST) Date: Thu, 4 Dec 1997 09:21:19 -0800 (PST) Message-Id: <199712041721.JAA02770@silvia.HIP.Berkeley.EDU> To: cracauer@freebsd.org CC: ports@freebsd.org Subject: devel/ilu From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk It seems devel/ilu calls the compiler without optimization. Please enable optimization (usually changing "CFLAGS=" to "CFLAGS+=" will do) or disable packaging. Satoshi From owner-freebsd-ports Thu Dec 4 10:25:00 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA13237 for ports-outgoing; Thu, 4 Dec 1997 10:25:00 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id KAA13229 for ; Thu, 4 Dec 1997 10:24:58 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.7/8.6.9) with ESMTP id KAA26255; Thu, 4 Dec 1997 10:22:58 -0800 (PST) To: asami@cs.berkeley.edu (Satoshi Asami) cc: pfgiffun@bachue.usc.unal.edu.co, stefan@promo.de, ports@FreeBSD.ORG, frankch@waru.life.nthu.edu.tw Subject: Re: ports/5214: New port rasmol In-reply-to: Your message of "Thu, 04 Dec 1997 08:36:05 PST." <199712041636.IAA02145@silvia.HIP.Berkeley.EDU> Date: Thu, 04 Dec 1997 10:22:58 -0800 Message-ID: <26252.881259778@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > and chemistry is somewhat hazy. Uumph. (Maybe we can make a new > category "biochem" to engulf both. :> ) No, that'd be biochemistry and the inorganic chemists would scream at being lumped into that category. :-) Jordan From owner-freebsd-ports Thu Dec 4 10:26:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA13325 for ports-outgoing; Thu, 4 Dec 1997 10:26:05 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from florence.pavilion.net (florence.pavilion.net [194.242.128.25]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id KAA13310 for ; Thu, 4 Dec 1997 10:25:58 -0800 (PST) (envelope-from joe@florence.pavilion.net) Received: (from joe@localhost) by florence.pavilion.net (8.8.7/8.8.7) id SAA19565; Thu, 4 Dec 1997 18:25:52 GMT Message-ID: <19971204182551.23329@pavilion.net> Date: Thu, 4 Dec 1997 18:25:51 +0000 From: Josef Karthauser To: ports@freebsd.org Cc: Sam Eaton Subject: Re: A change in the way we port perl anyone? References: <199711231601.IAA22224@baloon.mimi.com> <19971201175341.20837@pavilion.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81 In-Reply-To: <19971201175341.20837@pavilion.net>; from Josef Karthauser on Mon, Dec 01, 1997 at 05:53:41PM +0000 X-NCC-RegID: uk.pavilion Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Mon, Dec 01, 1997 at 05:53:41PM +0000, Josef Karthauser wrote: > > On Sun, Nov 23, 1997 at 08:01:47AM -0800, Satoshi Asami wrote: > > * I _WISH_ that there had been a p5 category made, because without that, > > * it's really hard not to do duplicates on Perl stuff. There too darn many! > > > > There is a "perl5" virtual category. It shows up in the ports index > > page and ports/INDEX. :) > > > > Satoshi > > Why don't we integrate the p5 stuff with mod-CPAN. The perl code > changes so often and they've already got an update mechanism for their stuff. > Seems like we're reinventing the wheel, badly, here. Let me clarify, to stimulate a reply. Perl5 contains a module that allows it to integrate to the CPAN archive. If it's setup it can perform updates of perl modules automagically. Here's an example of the interactive shell, although it can be invoked via code as well: ================ Fire up CPAN ================ # /usr/local/bin/perl -MCPAN -eshell cpan shell -- CPAN exploration and modules installation (v1.3101) ReadLine support enabled ================ Ask it to check to see what should be upgraded ============ cpan> r Going to read /root/.cpan/sources/01mailrc.gz Going to read /root/.cpan/sources/02packag.gz There's a new CPAN.pm version (v1.3102) available! You might want to try install CPAN reload cpan without quitting the current session. It should be a seamless upgrade while we are running... Going to read /root/.cpan/sources/03mlist.gz Package namespace installed latest in CPAN file Apache 1.16 1.20 DOUGM/mod_perl-1.07.tar.gz CGI 2.37b5 2.37010 LDS/CGI.pm-2.37b10.tar.gz CPAN 1.3101 1.3102 TIMB/perl5.004_04.tar.gz DBD::mysql 2.004 2.006 JWIED/Msql-Mysql-modules-1.1820.tar.gz DB_File 1.54 1.55 PMQS/DB_File-1.55.tar.gz HTML::Element 1.35 1.37 GAAS/libwww-perl-5.17.tar.gz IO 1.17 1.18 GBARR/IO-1.1802.tar.gz MIME::Base64 2.03 2.04 GAAS/MIME-Base64-2.04.tar.gz Net::Cmd 2.0801 2.10 GBARR/libnet-1.0603.tar.gz 131 installed modules have no parseable version number ================ I want to to upgrade the IO module to the current one ====== cpan> install IO Running make for GBARR/IO-1.1802.tar.gz CPAN: LWP loaded ok Fetching with LWP: ftp://ftp.flirble.org/pub/languages/perl/CPAN/authors/id/GBARR/IO-1.1802.tar.gz CPAN: MD5 loaded ok Fetching with LWP: ftp://ftp.flirble.org/pub/languages/perl/CPAN/authors/id/GBARR/CHECKSUMS Checksum for /root/.cpan/sources/authors/id/GBARR/IO-1.1802.tar.gz ok IO-1.1802/ IO-1.1802/t/ IO-1.1802/t/io_sel.t IO-1.1802/t/io_const.t IO-1.1802/t/io_udp.t IO-1.1802/t/io_dup.t IO-1.1802/t/io_xs.t IO-1.1802/t/io_pipe.t IO-1.1802/t/io_sock.t IO-1.1802/t/io_tell.t IO-1.1802/t/io_poll.t IO-1.1802/t/io_dir.t IO-1.1802/IO/ IO-1.1802/IO/Pipe.pm IO-1.1802/IO/Poll.pm IO-1.1802/IO/Seekable.pm IO-1.1802/IO/Socket/ IO-1.1802/IO/Socket/UNIX.pm IO-1.1802/IO/Socket/INET.pm IO-1.1802/IO/Dir.pm IO-1.1802/IO/File.pm IO-1.1802/IO/Select.pm IO-1.1802/IO/Socket.pm IO-1.1802/IO/Handle.pm IO-1.1802/IO.pm IO-1.1802/poll.c IO-1.1802/Makefile.PL IO-1.1802/ChangeLog IO-1.1802/poll.h IO-1.1802/README IO-1.1802/IO.xs IO-1.1802/MANIFEST CPAN.pm: Going to build GBARR/IO-1.1802.tar.gz Checking for Socket...ok Checking if your kit is complete... Looks good Writing Makefile for IO mkdir ./blib mkdir ./blib/lib cp IO/Pipe.pm ./blib/lib/IO/Pipe.pm cp IO/Dir.pm ./blib/lib/IO/Dir.pm cp IO/File.pm ./blib/lib/IO/File.pm cp IO/Select.pm ./blib/lib/IO/Select.pm cp IO.pm ./blib/lib/IO.pm cp IO/Poll.pm ./blib/lib/IO/Poll.pm cp IO/Socket/INET.pm ./blib/lib/IO/Socket/INET.pm cp IO/Socket.pm ./blib/lib/IO/Socket.pm cp IO/Seekable.pm ./blib/lib/IO/Seekable.pm cp IO/Socket/UNIX.pm ./blib/lib/IO/Socket/UNIX.pm cp IO/Handle.pm ./blib/lib/IO/Handle.pm /usr/local/bin/perl -I/usr/local/lib/perl5/i386-freebsd/5.00403 -I/usr/local/lib/perl5 /usr/local/lib/perl5/ExtUtils/xsubpp -typemap /usr/local/lib/perl5/ExtUtils/typemap IO.xs >IO.tc && mv IO.tc IO.c cc -c -I/usr/local/include -O -DVERSION=\"1.18\" -DXS_VERSION=\"1.18\" -DPIC -fpic -I/usr/local/lib/perl5/i386-freebsd/5.00403/CORE -DI_POLL IO.c cc -c -I/usr/local/include -O -DVERSION=\"1.18\" -DXS_VERSION=\"1.18\" -DPIC -fpic -I/usr/local/lib/perl5/i386-freebsd/5.00403/CORE -DI_POLL poll.c mkdir ./blib/arch mkdir ./blib/arch/auto mkdir ./blib/arch/auto/IO Running Mkbootstrap for IO () chmod 644 IO.bs LD_RUN_PATH="" ld -o ./blib/arch/auto/IO/IO.so -Bshareable -L/usr/local/lib IO.o poll.o chmod 755 ./blib/arch/auto/IO/IO.so cp IO.bs ./blib/arch/auto/IO/IO.bs chmod 644 ./blib/arch/auto/IO/IO.bs mkdir ./blib/lib/auto/IO mkdir ./blib/man3 Manifying ./blib/man3/IO::Pipe.3 Manifying ./blib/man3/IO::Dir.3 Manifying ./blib/man3/IO::Select.3 Manifying ./blib/man3/IO::File.3 Manifying ./blib/man3/IO.3 Manifying ./blib/man3/IO::Poll.3 Manifying ./blib/man3/IO::Socket::INET.3 Manifying ./blib/man3/IO::Socket.3 Manifying ./blib/man3/IO::Handle.3 Manifying ./blib/man3/IO::Socket::UNIX.3 Manifying ./blib/man3/IO::Seekable.3 /usr/bin/make -- OK Running make test PERL_DL_NONLAZY=1 /usr/local/bin/perl -I./blib/arch -I./blib/lib -I/usr/local/lib/perl5/i386-freebsd/5.00403 -I/usr/local/lib/perl5 -e 'use Test::Harness qw(&runtests $verbose); $verbose=0; runtests @ARGV;' t/*.t t/io_const..........ok t/io_dir............ok t/io_dup............ok t/io_pipe...........ok t/io_poll...........ok t/io_sel............ok t/io_sock...........ok t/io_tell...........ok t/io_udp............ok t/io_xs.............ok All tests successful. Files=10, Tests=85, 4 secs ( 2.41 cusr 0.64 csys = 3.05 cpu) /usr/bin/make test -- OK Running make install Installing /usr/local/lib/perl5/i386-freebsd/5.00403/./auto/IO/IO.so Skipping /usr/local/lib/perl5/i386-freebsd/5.00403/./auto/IO/IO.bs (unchanged) Installing /usr/local/lib/perl5/./IO/Pipe.pm Skipping /usr/local/lib/perl5/./IO/Dir.pm (unchanged) Skipping /usr/local/lib/perl5/./IO/File.pm (unchanged) Installing /usr/local/lib/perl5/./IO/Select.pm Skipping /usr/local/lib/perl5/./IO/Poll.pm (unchanged) Skipping /usr/local/lib/perl5/./IO/Socket/INET.pm (unchanged) Skipping /usr/local/lib/perl5/./IO/Socket/UNIX.pm (unchanged) Installing /usr/local/lib/perl5/./IO/Socket.pm Skipping /usr/local/lib/perl5/./IO/Seekable.pm (unchanged) Installing /usr/local/lib/perl5/./IO/Handle.pm Installing /usr/local/lib/perl5/./IO.pm Installing /usr/local/lib/perl5/man/man3/./IO::Pipe.3 Installing /usr/local/lib/perl5/man/man3/./IO::Dir.3 Installing /usr/local/lib/perl5/man/man3/./IO::Select.3 Skipping /usr/local/lib/perl5/man/man3/./IO::File.3 (unchanged) Installing /usr/local/lib/perl5/man/man3/./IO.3 Skipping /usr/local/lib/perl5/man/man3/./IO::Poll.3 (unchanged) Skipping /usr/local/lib/perl5/man/man3/./IO::Socket::INET.3 (unchanged) Installing /usr/local/lib/perl5/man/man3/./IO::Socket.3 Installing /usr/local/lib/perl5/man/man3/./IO::Handle.3 Skipping /usr/local/lib/perl5/man/man3/./IO::Socket::UNIX.3 (unchanged) Skipping /usr/local/lib/perl5/man/man3/./IO::Seekable.3 (unchanged) Writing /usr/local/lib/perl5/i386-freebsd/5.00403/auto/IO/.packlist Appending installation info to /usr/local/lib/perl5/i386-freebsd/5.00403/perllocal.pod /usr/bin/make install -- OK ================ Check to see that it's done it ================ cpan> r Package namespace installed latest in CPAN file Apache 1.16 1.20 DOUGM/mod_perl-1.07.tar.gz CGI 2.37b5 2.37010 LDS/CGI.pm-2.37b10.tar.gz CPAN 1.3101 1.3102 TIMB/perl5.004_04.tar.gz DBD::mysql 2.004 2.006 JWIED/Msql-Mysql-modules-1.1820.tar.gz DB_File 1.54 1.55 PMQS/DB_File-1.55.tar.gz HTML::Element 1.35 1.37 GAAS/libwww-perl-5.17.tar.gz MIME::Base64 2.03 2.04 GAAS/MIME-Base64-2.04.tar.gz Net::Cmd 2.0801 2.10 GBARR/libnet-1.0603.tar.gz 131 installed modules have no parseable version number cpan> quit # Cool uh? Because it does all this, including updating the CPAN module itself and the core perl5 code this it seems a waste of labout making individual packages of p5 stuff that do anything other than invoke the CPAN module. With the current way that perl modules are handled in the ports one of two things happen: 1. A port/package that depends upon a perl module fails even though the module is installed because there's not a relevent pkg entry for it. 2. Existing pkg entries get out of date easily when a new version is installed using CPAN. What it seems to me is that the ports handling needs to be expanded to integrate with CPAN, which can even hot update the core perl5 code. Is anyone interested in working on this development. I'd love to do it myself but unfortunately I haven't got the resources to do so currently. Joe -- Josef Karthauser Technical Manager Email: joe@pavilion.net Pavilion Internet plc. [Tel: +44 1273 607072 Fax: +44 1273 607073] From owner-freebsd-ports Thu Dec 4 10:30:19 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id KAA13784 for ports-outgoing; Thu, 4 Dec 1997 10:30:19 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-49.ix.netcom.com [207.93.143.177]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id KAA13763 for ; Thu, 4 Dec 1997 10:30:12 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id KAA03068; Thu, 4 Dec 1997 10:26:39 -0800 (PST) Date: Thu, 4 Dec 1997 10:26:39 -0800 (PST) Message-Id: <199712041826.KAA03068@silvia.HIP.Berkeley.EDU> To: jkh@time.cdrom.com CC: pfgiffun@bachue.usc.unal.edu.co, stefan@promo.de, ports@FreeBSD.ORG, frankch@waru.life.nthu.edu.tw In-reply-to: <26252.881259778@time.cdrom.com> (jkh@time.cdrom.com) Subject: Re: ports/5214: New port rasmol From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * No, that'd be biochemistry and the inorganic chemists would scream at * being lumped into that category. :-) What about "chembio" then? Or will physical biologists scream? :) Satoshi (scicomp) From owner-freebsd-ports Thu Dec 4 11:20:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA18250 for ports-outgoing; Thu, 4 Dec 1997 11:20:05 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA18204; Thu, 4 Dec 1997 11:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 4 Dec 1997 11:20:01 -0800 (PST) Resent-Message-Id: <199712041920.LAA18204@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, yssu@CCCA.NCTU.edu.tw (Yen-Shuo Su.) Received: from netflow.nctu.edu.tw (NetFlow.NCTU.edu.tw [140.113.85.1]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id LAA17868 for ; Thu, 4 Dec 1997 11:15:38 -0800 (PST) (envelope-from yssu@NetFlow.NCTU.edu.tw) Received: (from root@localhost) by netflow.nctu.edu.tw (8.8.5/8.8.5) id DAA01437; Fri, 5 Dec 1997 03:17:54 +0800 (CST) Message-Id: <199712041917.DAA01437@netflow.nctu.edu.tw> Date: Fri, 5 Dec 1997 03:17:54 +0800 (CST) From: yssu@CCCA.NCTU.edu.tw (Yen-Shuo Su.) Reply-To: yssu@CCCA.NCTU.edu.tw (Yen-Shuo Su.) To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5221: Upgrade to tinpre-1.4-971127 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5221 >Category: ports >Synopsis: Upgrade to tinpre-1.4-971127 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 4 11:20:01 PST 1997 >Last-Modified: >Originator: Yen-Shuo Su >Organization: Campus Computer Commincation Association >Release: FreeBSD 2.2-970625-RELENG i386 >Environment: >Description: Upgrade to tinpre-1.4-971127 >How-To-Repeat: >Fix: diff -ruN tin.orig/Makefile tin/Makefile --- tin.orig/Makefile Fri Dec 5 03:10:40 1997 +++ tin/Makefile Fri Dec 5 03:10:50 1997 @@ -7,8 +7,8 @@ # $Id: Makefile,v 1.49 1997/12/02 04:24:14 asami Exp $ # -DISTNAME= tinpre-1.4-971123 -PKGNAME= tinpre-1.4-971123 +DISTNAME= tinpre-1.4-971127 +PKGNAME= tinpre-1.4-971127 CATEGORIES= news MASTER_SITES= ftp://nuxi.ucdavis.edu/pub/tin/ \ ftp://ftp.akk.uni-karlsruhe.de/pub/tin/ \ diff -ruN tin.orig/files/md5 tin/files/md5 --- tin.orig/files/md5 Fri Dec 5 03:10:40 1997 +++ tin/files/md5 Fri Dec 5 03:10:54 1997 @@ -1 +1 @@ -MD5 (tinpre-1.4-971123.tgz) = 222b7bab7a9f107b67943234cbf50af4 +MD5 (tinpre-1.4-971127.tgz) = 9a8b16259d83cc3d53e819c44292ac05 >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Dec 4 11:30:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA19422 for ports-outgoing; Thu, 4 Dec 1997 11:30:03 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id LAA19416; Thu, 4 Dec 1997 11:30:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 4 Dec 1997 11:30:01 -0800 (PST) Resent-Message-Id: <199712041930.LAA19416@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, Yen-Shuo Su Received: from netflow.nctu.edu.tw (NetFlow.NCTU.edu.tw [140.113.85.1]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id LAA18460 for ; Thu, 4 Dec 1997 11:21:27 -0800 (PST) (envelope-from yssu@NetFlow.NCTU.edu.tw) Received: (from root@localhost) by netflow.nctu.edu.tw (8.8.5/8.8.5) id DAA05721; Fri, 5 Dec 1997 03:26:12 +0800 (CST) Message-Id: <199712041926.DAA05721@netflow.nctu.edu.tw> Date: Fri, 5 Dec 1997 03:26:12 +0800 (CST) From: Yen-Shuo Su Reply-To: Yen-Shuo Su To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5222: Upgrade chinese/tin to 971127 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5222 >Category: ports >Synopsis: Upgrade chinese/tin to 971127 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 4 11:30:00 PST 1997 >Last-Modified: >Originator: Yen-Shuo Su >Organization: Campus Computer Communication Association >Release: FreeBSD 2.2-970625-RELENG i386 >Environment: >Description: Upgrade chinese/tin to tinpre-1.4-971127 >How-To-Repeat: >Fix: diff -ruN ../chinese/tin/Makefile tin/Makefile --- ../chinese/tin/Makefile Wed Dec 3 22:37:19 1997 +++ tin/Makefile Fri Dec 5 03:20:06 1997 @@ -6,8 +6,8 @@ # $Id: Makefile,v 1.2 1997/12/02 04:23:49 asami Exp $ # -DISTNAME= tinpre-1.4-971123 -PKGNAME= zh-tin-1.4.971123 +DISTNAME= tinpre-1.4-971127 +PKGNAME= zh-tin-1.4.971127 CATEGORIES= chinese news MASTER_SITES= ftp://nuxi.ucdavis.edu/pub/tin/ \ ftp://ftp.akk.uni-karlsruhe.de/pub/tin/ \ diff -ruN ../chinese/tin/files/md5 tin/files/md5 --- ../chinese/tin/files/md5 Wed Dec 3 22:37:09 1997 +++ tin/files/md5 Fri Dec 5 03:20:10 1997 @@ -1 +1 @@ -MD5 (tinpre-1.4-971123.tgz) = 222b7bab7a9f107b67943234cbf50af4 +MD5 (tinpre-1.4-971127.tgz) = 9a8b16259d83cc3d53e819c44292ac05 >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Dec 4 14:46:33 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id OAA11831 for ports-outgoing; Thu, 4 Dec 1997 14:46:33 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id OAA11698; Thu, 4 Dec 1997 14:45:23 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id OAA02594; Thu, 4 Dec 1997 14:44:20 -0800 (PST) Date: Thu, 4 Dec 1997 14:44:20 -0800 (PST) Message-Id: <199712042244.OAA02594@freefall.freebsd.org> To: yssu@CCCA.NCTU.edu.tw, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5222 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Upgrade chinese/tin to 971127 State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Thu Dec 4 14:43:32 PST 1997 State-Changed-Why: Committed. thanks. From owner-freebsd-ports Thu Dec 4 14:54:02 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id OAA12580 for ports-outgoing; Thu, 4 Dec 1997 14:54:02 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id OAA11924; Thu, 4 Dec 1997 14:47:05 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id OAA02679; Thu, 4 Dec 1997 14:46:02 -0800 (PST) Date: Thu, 4 Dec 1997 14:46:02 -0800 (PST) Message-Id: <199712042246.OAA02679@freefall.freebsd.org> To: yssu@CCCA.NCTU.edu.tw, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5221 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Upgrade to tinpre-1.4-971127 State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Thu Dec 4 14:44:28 PST 1997 State-Changed-Why: ache has committed. From owner-freebsd-ports Thu Dec 4 15:47:55 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id PAA16001 for ports-outgoing; Thu, 4 Dec 1997 15:47:55 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freebsd.scds.com (jseger.shore.net [204.167.102.1]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id PAA15976 for ; Thu, 4 Dec 1997 15:47:42 -0800 (PST) (envelope-from jseger@freebsd.scds.com) Received: (from jseger@localhost) by freebsd.scds.com (8.8.7/8.8.5) id TAA01742; Thu, 4 Dec 1997 19:00:38 -0500 (EST) Date: Thu, 4 Dec 1997 19:00:38 -0500 (EST) From: "Justin M. Seger" Message-Id: <199712050000.TAA01742@freebsd.scds.com> To: asami@cs.berkeley.edu, ports@FreeBSD.ORG Subject: Re: FWF Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk I haven't seen this happen at all building packages on current Satoshi. If I do I'll let you know. -Justin Seger- From owner-freebsd-ports Thu Dec 4 16:10:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA17227 for ports-outgoing; Thu, 4 Dec 1997 16:10:06 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA17215; Thu, 4 Dec 1997 16:10:03 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 4 Dec 1997 16:10:03 -0800 (PST) Resent-Message-Id: <199712050010.QAA17215@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, brett@peloton.physics.montana.edu Received: from peloton.physics.montana.edu (peloton.physics.montana.edu [153.90.192.177]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id QAA16795 for ; Thu, 4 Dec 1997 16:02:42 -0800 (PST) (envelope-from brett@peloton.physics.montana.edu) Received: (from brett@localhost) by peloton.physics.montana.edu (8.8.8/8.7.3) id RAA12173; Thu, 4 Dec 1997 17:04:22 -0700 (MST) Message-Id: <199712050004.RAA12173@peloton.physics.montana.edu> Date: Thu, 4 Dec 1997 17:04:22 -0700 (MST) From: brett@peloton.physics.montana.edu Reply-To: brett@peloton.physics.montana.edu To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5224: correction of freefont DESCR Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5224 >Category: ports >Synopsis: fix the DESCR for freefont so that it has right path >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 4 16:10:01 PST 1997 >Last-Modified: >Originator: Brett Taylor >Organization: Montana State University, Bozeman >Release: FreeBSD 2.2.5-STABLE i386 >Environment: >Description: The description file tells you how to add the freefonts to your X11 font path, but the command has the wrong path. >How-To-Repeat: Just TRY to do: $ xset fp+ /usr/X11R6/lib/fonts/freefont :-) >Fix: change that line in the description to read: $ xset fp+ /usr/X11R6/lib/X11/fonts/freefont >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Dec 4 18:05:13 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id SAA26980 for ports-outgoing; Thu, 4 Dec 1997 18:05:13 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id SAA26967; Thu, 4 Dec 1997 18:05:06 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.7/8.6.9) with ESMTP id SAA28078; Thu, 4 Dec 1997 18:04:50 -0800 (PST) To: asami@cs.berkeley.edu (Satoshi Asami) cc: toasty@home.dragondata.com, nate@mt.sri.com, jak@cetlink.net, current@FreeBSD.ORG, ports@FreeBSD.ORG Reply-to: ports@FreeBSD.ORG Subject: Re: 3.0 -release ? In-reply-to: Your message of "Thu, 04 Dec 1997 10:40:18 PST." <199712041840.KAA03126@silvia.HIP.Berkeley.EDU> Date: Thu, 04 Dec 1997 18:04:49 -0800 Message-ID: <28074.881287489@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Well, at least we are closer to having a full package set available > for 3.0-snaps now. (4-CD snap? :> ) It's no joke, I may have to do that soon! :-( I'm not sure if it could stay the same price if moved to a 4 CD set though since the margins are a lot lower on the snapshot, given its $14.95 subscription price and much lower wholesaler price. I figured the SNAP fans would want the CD to be the cheapest possible resource, overall, and am kind of loath to bloat it into a "real product" like this unless people really want that to happen (comments?). Regarding ports and packages in general, I think that we also need to start looking *really seriously* at the idea of a "multi-volume" ports/packages collection, since a need to split them across at least 2 locations has already been the case since 2.2.5. Even if you prune and chop and tweak like mad for 3.0, I can guarantee you that the packages won't all fit in 650MB [see note]. :-) This means to me that the INDEX file needs to grow at least one more field for the volume name (or maybe we can just tuck it into the keywords field, does anyone even use that? :-) and somebody needs to modify portlint so that a port's volume is checked against its dependencies, it being an error to put your package outside the same volume as all the things it depends on. This would allow me to modify sysinstall to request in turn that the appropriate media be mounted when asking for a specific package that isn't on the current media. To think about: Should we also implement a volume-to-media mapping file which allows the installation to build a menu of valid choices based on the media types the user has available and the "map" of where the packages are available, be that anything from "CD:WC/3" to "ftp://ftp.jp.freebsd.org/pub/FreeBSD/packages/japan-latest"? Thinking ahead to where we've got potentially 4000-5000 packages, with an average size of 500K for packages the whole collection is going to be easily 2GB or more. I could see where it might become distributed more geographically, or from a more limited number of servers than supply the distribution bits, and we're going to need to account for that somehow. The second thing I think we need to consider is that in the longer term, I can easily see a day where the ports and packages collection have grown to the point where decoupling them from the primary FreeBSD releases becomes essential in order that the "base system" remain reasonably priced. This would also allow the ports collection to move at its own release schedule, perhaps doing only 2 - 3 releases a year and published in a format closer to Rich Morin's well known Prime Time Freeware for UNIX CDs (http://www.ptf.com/ptf/products/UNIX). They come with a nifty printed book containing alphabetized short descriptions so you can look something up quickly before wasting your time mounting the wrong CD, and I think the ports & packages collection should do exactly the same thing. Doing this would also allow Walnut Creek CDROM to see just how much revenue the ports collection alone generated, and as a new product I'm pretty confident that I could negotiate in advance that a slice of the pie from every ports collection CD sale go into a special "support the ports collection project fund" (over and above money already given to FreeBSD.org) from which we could buy Satoshi and crew a package building machine from hell, among other periodic goodies. :-) [and I've been thinking of some nice 10 drive CCD array configurations which would really do the job nicely when mated with a dual-processor PII-300. ;)] What do folks think of all this? Jordan From owner-freebsd-ports Thu Dec 4 18:14:52 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id SAA27933 for ports-outgoing; Thu, 4 Dec 1997 18:14:52 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id SAA27928 for ; Thu, 4 Dec 1997 18:14:48 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.7/8.6.9) with ESMTP id SAA28210; Thu, 4 Dec 1997 18:14:20 -0800 (PST) To: asami@cs.berkeley.edu (Satoshi Asami) cc: pfgiffun@bachue.usc.unal.edu.co, stefan@promo.de, ports@FreeBSD.ORG, frankch@waru.life.nthu.edu.tw Subject: Re: ports/5214: New port rasmol In-reply-to: Your message of "Thu, 04 Dec 1997 10:26:39 PST." <199712041826.KAA03068@silvia.HIP.Berkeley.EDU> Date: Thu, 04 Dec 1997 18:14:20 -0800 Message-ID: <28207.881288060@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > * No, that'd be biochemistry and the inorganic chemists would scream at > * being lumped into that category. :-) > > What about "chembio" then? Or will physical biologists scream? :) Why not just keep them separate and avoid all contraversy, eh? :-) Jordan From owner-freebsd-ports Thu Dec 4 19:10:29 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA03534 for ports-outgoing; Thu, 4 Dec 1997 19:10:29 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from megaweapon.zigg.com (tcgr-210.dialup.alliance.net [207.74.43.210]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id TAA03518; Thu, 4 Dec 1997 19:10:22 -0800 (PST) (envelope-from matt@megaweapon.zigg.com) Received: from localhost (matt@localhost) by megaweapon.zigg.com (8.8.8/8.8.7) with SMTP id WAA23891; Thu, 4 Dec 1997 22:11:05 -0500 (EST) (envelope-from matt@megaweapon.zigg.com) Date: Thu, 4 Dec 1997 22:11:04 -0500 (EST) From: Matt Behrens To: jfitz@freebsd.org, ports@freebsd.org Subject: majordomo on 2.2.5-STABLE Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk sendmail whines if you try to use aliases.majordomo because of its ownership and /usr/local/majordomo's ownership. Changing both of their ownerships to root.wheel allows newaliases to work correctly. Matt Behrens | Support the anti-spam amendment! http://www.zigg.com/ | Visit http://www.cauce.org/ From owner-freebsd-ports Thu Dec 4 19:45:54 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA06814 for ports-outgoing; Thu, 4 Dec 1997 19:45:54 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from ns2.cetlink.net (root@ns2.cetlink.net [209.54.54.20]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id TAA06804 for ; Thu, 4 Dec 1997 19:45:51 -0800 (PST) (envelope-from jak@cetlink.net) Received: from hot1.auctionfever.com (ts1-cltnc-22.cetlink.net [209.54.58.22]) by ns2.cetlink.net (8.8.5/8.8.5) with SMTP id WAA01714; Thu, 4 Dec 1997 22:45:43 -0500 (EST) From: jak@cetlink.net (John Kelly) To: ports@FreeBSD.ORG Cc: jkh@time.cdrom.com Subject: Re: 3.0 -release ? Date: Fri, 05 Dec 1997 04:46:45 GMT Message-ID: <3489863d.1062743@mail.cetlink.net> References: <28074.881287489@time.cdrom.com> In-Reply-To: <28074.881287489@time.cdrom.com> X-Mailer: Forte Agent 1.01/16.397 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id TAA06808 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Thu, 04 Dec 1997 18:04:49 -0800, "Jordan K. Hubbard" wrote: >at its own release schedule, perhaps doing only 2 - 3 releases a year >and published in a format closer to Rich Morin's well known Prime Time >Freeware for UNIX CDs (http://www.ptf.com/ptf/products/UNIX). Might as well copy a good idea when you see one. Ideas can be copied freely. >What do folks think of all this? Yo! From owner-freebsd-ports Thu Dec 4 21:27:18 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id VAA15907 for ports-outgoing; Thu, 4 Dec 1997 21:27:18 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from picnic.mat.net (picnic.mat.net [206.246.122.117]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id VAA15850; Thu, 4 Dec 1997 21:26:35 -0800 (PST) (envelope-from chuckr@glue.umd.edu) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.8.8/8.8.5) with SMTP id AAA21786; Fri, 5 Dec 1997 00:24:39 -0500 (EST) X-Authentication-Warning: picnic.mat.net: chuckr owned process doing -bs Date: Fri, 5 Dec 1997 00:24:37 -0500 (EST) From: Chuck Robey X-Sender: chuckr@picnic.mat.net To: ports@FreeBSD.ORG cc: Satoshi Asami , toasty@home.dragondata.com, nate@mt.sri.com, jak@cetlink.net, current@FreeBSD.ORG Subject: Re: 3.0 -release ? In-Reply-To: <28074.881287489@time.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Thu, 4 Dec 1997, Jordan K. Hubbard wrote: > > Well, at least we are closer to having a full package set available > > for 3.0-snaps now. (4-CD snap? :> ) > > It's no joke, I may have to do that soon! :-( [lots deleted] > The second thing I think we need to consider is that in the longer > term, I can easily see a day where the ports and packages collection > have grown to the point where decoupling them from the primary FreeBSD > releases becomes essential in order that the "base system" remain > reasonably priced. I know I proposed this specifically myself a good while back (I don't know if I was first, tho) but considering the *value* involved in the ports product, along with it's massive size, it seems very easily supportable. Along with that, it's now becoming a resource for NetBSD and OpenBSD fans, and I'll bet those folks would appreciate not having to pay for FreeBSD parts they don't want. Having it's own product advertisements and separate billing can only increase FreeBSD's total visibility, and considering Walnut Creek's massive support of FreeBSD over the long term, I admit it doesn't bother me in the least if they manage to make money from it. > Doing this would also allow Walnut Creek CDROM to see just how much > revenue the ports collection alone generated, and as a new product I'm > pretty confident that I could negotiate in advance that a slice of the > pie from every ports collection CD sale go into a special "support the > ports collection project fund" (over and above money already given to > FreeBSD.org) from which we could buy Satoshi and crew a package :-) [and > I've been thinking of some nice 10 drive CCD array configurations > which would really do the job nicely when mated with a dual-processor > PII-300. ;)] Huh ... Jordan's getting power mad. I want a pic of you, dolled up with a lab coat and a fright wig, in the green glow of an oversized monitor! > > What do folks think of all this? > > Jordan > > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@glue.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | 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 Dec 4 22:09:58 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA19386 for ports-outgoing; Thu, 4 Dec 1997 22:09:58 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id WAA19374 for ; Thu, 4 Dec 1997 22:09:54 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.7/8.6.9) with ESMTP id WAA01005 for ; Thu, 4 Dec 1997 22:10:00 -0800 (PST) To: ports@freebsd.org Subject: Anyone build the latest KDE port under 2.2.5-stable lately? Date: Thu, 04 Dec 1997 22:09:59 -0800 Message-ID: <1001.881302199@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Problems: 1. x11/kdebase/patches/patch-ad is empty 2. It blows up here: ===> Building for kdebase-2.1b make all-recursive Making all in kfm Making all in kfmwarn g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include -I/usr/X11R6/include/X11/qt -I/usr/X11R6/include -I/usr/local/include -I/usr/local/include/giflib -O -pipe -c main.cpp main.cpp:1: kapp.h: No such file or directory main.cpp:4: klocale.h: No such file or directory main.cpp: In function `int main(int, char **)': main.cpp:12: `KApplication' undeclared (first use this function) Blah? Jordan From owner-freebsd-ports Thu Dec 4 22:28:19 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA21334 for ports-outgoing; Thu, 4 Dec 1997 22:28:19 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id WAA21318; Thu, 4 Dec 1997 22:28:12 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id WAA05480; Thu, 4 Dec 1997 22:27:06 -0800 (PST) Date: Thu, 4 Dec 1997 22:27:06 -0800 (PST) Message-Id: <199712050627.WAA05480@freefall.freebsd.org> To: brett@peloton.physics.montana.edu, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5224 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: fix the DESCR for freefont so that it has right path State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Thu Dec 4 22:25:28 PST 1997 State-Changed-Why: Committed, thanks. From owner-freebsd-ports Thu Dec 4 22:30:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA21560 for ports-outgoing; Thu, 4 Dec 1997 22:30:04 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA21552; Thu, 4 Dec 1997 22:30:02 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 4 Dec 1997 22:30:02 -0800 (PST) Resent-Message-Id: <199712050630.WAA21552@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, Nakai@elelab.nsc.co.jp Received: (from nobody@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA20896; Thu, 4 Dec 1997 22:24:57 -0800 (PST) (envelope-from nobody) Message-Id: <199712050624.WAA20896@hub.freebsd.org> Date: Thu, 4 Dec 1997 22:24:57 -0800 (PST) From: Nakai@elelab.nsc.co.jp To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5227: Fixed port: mlvwm Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5227 >Category: ports >Synopsis: Fixed port: mlvwm >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 4 22:30:01 PST 1997 >Last-Modified: >Originator: Yukihiro Nakai >Organization: Apricot computer >Release: 3.0-current >Environment: >Description: I have fixed the mlvwm port to follow the latest version. Please enjoy. Yukihiro Nakai -------------- begin 644 mlvwm.diff.gz M'XL("'&=AS0 VUL=G=M+F1I9F8 S5E+_<>]P]L M5E4WXM$@:32.,(%$5U=F5N:76?E5P\@>CT$*YEUPG7<7KNP']KG2(5,ZMATJ M[BV&64F2TL0R@SF%%W,/P "M7%.KM:(*6K5:SN;S^34;F:/ AB:U $S0C9JI MU\RJD#TX $DK&"KD\7\1#@ZR\ 2Z] )F?A"%8/F.0ZW(]CUP$_?&?E #$"MD MI2?P%QJ$3""@W\SM@([8)*AR6=:R^:VS%=ED*S5)1,$**'Z(&?;2JO"">/-@ M3H(KX25*OI[X[D(B>7T]G]H3._"A2Z;$AB_XQT''(4,YDN=2Y$^O?)E8\MO9 MEVB#F7G:QG426 KO0),-OH2BEA35 +42 TE"XMK0NIS!4ZZ9E9KM_J!;[[3V M,SQR*8YP\S8/K5$?M)Z?]-JM_G[F4M.RT*GW!ZW>6;\]8+).%S,.5A?-'[6.V])+WV%\1X2UIH!Q;5< %F&[.\"_5F\_LST13/*X?7C6;+UJ=9MH M_G3FOGDC%_&O]O3;5R>]0;_9[ETKYP&936PK5"YG+M/YJM\Z:W?J+Q'H*QIF MI=;IH%=O#,Y.NL=?IP65S:=+W$:1S6?SG7I7V\^(2*XX]5$XU+<[)S+YTR8Q+MKO]0?WX^*Q9']29PNO> MRWZO<1V+*'LRQO(8.UB3,X>>!9;282I[VVQQ([W.-4CCKB=>3*2T8F.]%=\*K_9B?&O%Y5ZLLU:LLTXL=9HF M/-LL[<]A'\HCLVB2L:H3HV)0O4S+XZI&RF-=)R-S1 PL[67EVZIGRI5QM30: M5K515:?#HCFN4,.DUM RJ&&8([6*>YDKKZ>*Z1JX,$5W:6E8&I'26"V7RT:) M6JI>,2Q2,=,QG9'(FF#\_%,B) 9E_?8ZPNOS]P%Z0V<5;\.LZ>H*WAKGO@I' M?&]O#SG/&]OG\X#*$^Y%IH\+=L@5Z"9H%98PTQ0&).;NDOBZI%E3R[%[S/#: M]@TL87[-/ZUFEF(E9GY#:5T>WY68)?=67R(%%4"\52/ 9H^"X" M90_QG(%\FI4 3ALGG0X,)A1&R-=6Y",)>\2EX(]A:'MX$X@W MRC>"DS&T^@ M3R-@A0(A)8$U 30YD:$=@4?I*(0AQ3,#A5P_NG)H#G4^@S9*OT(I4.9AH#B^ M11PEWJ-\ZXM-']84I'VJ] +B!#O7F[!.09ZBCL_;*IH1/A]C ?9R; M4&?&'(QL[SP4F H(6/;6(%@H/S8@#*%72NUC#X^(Y^4S>#+",XM'@9?!H>TU M,1'<5F**"8GDK8@>V\.%Z.VRHC&@@RSEB[3?YK]!/,^/P/5Q.U_A:0A/?0CG M15@312^*BB,H?5392#N"N@4PCBHUGBTP[TS^^@;A&Z)4*93-Q89@&8#Z#/=< M 6XSH;%,%* ?V=:42>7J0W\>032Q0WCM!U,\+K!#LBS+.>CZ7I^R4W,!G@?D MJ@!U<8#F*EQY28:53FY ^RUQ,EE^(J\[X[L<.:0*[%N;*%UB=L^-XU0/ >4 M#?@U2$[([;1&-N*>@U5Y=XXU*L3991P67X2B0K)KJ%*76&$LSZ__6%SA@;OT/BP\ M3&?,X1TL//P(%AYNLK!16GD"K3 6QB>_A(6WD.5@PNHH $UE9G#UY*%72B?+ M94:NUC2M9NB[&%EZF\K)Q1J>$G9PLO1V4\,L[F)E72WH,0MC-IO^'.FGX> ^ M&-C8,PU5%0X:U4+1W$'6#V<'S2J!^W/A=I%6 E;),*UAV,+W!, M8?R/Q5'Z%(Q__TP\X(#Q!^8BM9*+Q8*I+2KY'HU>>DRCE]8:O?2)Z%-Z%'U* MCV[SDFCS_%C$CZ@(^;&FE,YMU!UM:'\&6 M%J>Y%P1U-$ %5<4WZI35F"V1)_-J0=U.E@F/K3Z0%BLUU=Q%E\AC&QH)8:;O M?LU@SNSB,2EI+O?M=1NM]:&L(VWO=-)*I_OY/[_\_DQT-W9Y\[<;]./#CQ_^ M]^&W#_^-N4<$N(M['A_@PYOYIPHQO?"GY\JKXW9_D%1G,MXH]63B7C6^$%[[ M,4*K%(Q9-J%E;1B>MURVWI)>M V?R.2>GM-MTNC4*+S.BV M^0W%^-O=#K&=ECN+>'<4H6AXKL5@-+T@?EE)U6/]2K#PCFGF\EU"[^T 2T$\ 4-"3??29?B[*ON_\/How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: From owner-freebsd-ports Thu Dec 4 22:40:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA22523 for ports-outgoing; Thu, 4 Dec 1997 22:40:04 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA22495; Thu, 4 Dec 1997 22:40:02 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 4 Dec 1997 22:40:02 -0800 (PST) Resent-Message-Id: <199712050640.WAA22495@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, Lars.Koeller@Uni-Bielefele.DE Received: (from nobody@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA21960; Thu, 4 Dec 1997 22:34:03 -0800 (PST) (envelope-from nobody) Message-Id: <199712050634.WAA21960@hub.freebsd.org> Date: Thu, 4 Dec 1997 22:34:03 -0800 (PST) From: Lars.Koeller@Uni-Bielefele.DE To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5228: Several ports changes Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5228 >Category: ports >Synopsis: Several ports changes >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 4 22:40:01 PST 1997 >Last-Modified: >Originator: Lars Köller >Organization: University of Bielefeld, Germany >Release: FreeBSD-2.2.5 >Environment: >Description: Several updates, and new Ports especially xmgr-4! Changed ports: Xtuner faces New ports: HDF Xbae libhelp xmgr (Version 4!!) >How-To-Repeat: >Fix: Get the new ports from ftp://ftp.Uni-Bielefeld.DE/pub/systems/FreeBSD/lkoeller >Audit-Trail: >Unformatted: From owner-freebsd-ports Fri Dec 5 00:15:23 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA00636 for ports-outgoing; Fri, 5 Dec 1997 00:15:23 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from serge.jbj.org (serge.JBJ.ORG [198.49.244.129]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id AAA00624 for ; Fri, 5 Dec 1997 00:15:18 -0800 (PST) (envelope-from serge@jbj.org) Received: (from serge@localhost) by serge.jbj.org (8.8.7/8.6.12) id DAA06190; Fri, 5 Dec 1997 03:15:08 -0500 (EST) Date: Fri, 5 Dec 1997 03:15:08 -0500 (EST) Message-Id: <199712050815.DAA06190@serge.jbj.org> From: Serge Pashenkov To: jkh@time.cdrom.com CC: ports@freebsd.org In-reply-to: <1001.881302199@time.cdrom.com> (jkh@time.cdrom.com) Subject: Re: Anyone build the latest KDE port under 2.2.5-stable lately? Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Just built kde on my 2.2.5-STABLE machine circa 3 weeks ago or so, ports cvsup'ed last weekend. Problems: 1. x11/kdebase/patches/patch-ad is empty That's right, but does not seem to cause any problem but message: ... ===> Patching for kdebase-2.1b ===> Applying FreeBSD patches for kdebase-2.1b I can't seem to find a patch in there anywhere. ===> Configuring for kdebase-2.1b creating cache ./config.cache checking host system type... i386-unknown-freebsd2.2.5 ... 2. It blows up here: ===> Building for kdebase-2.1b make all-recursive Making all in kfm Making all in kfmwarn g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include -I/usr/X11R6/include/X11/qt -I/usr/X11R6/include -I/usr/local/include -I/usr/local/include/giflib -O -pipe -c main.cpp main.cpp:1: kapp.h: No such file or directory main.cpp:4: klocale.h: No such file or directory main.cpp: In function `int main(int, char **)': main.cpp:12: `KApplication' undeclared (first use this function) Blah? Jordan Well, in my case: ... ===> Building for kdebase-2.1b make all-recursive Making all in kfm Making all in kfmwarn g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include -I/usr/X11R6/include/X11/qt -I/usr/X11R6/include -I/usr/local/include -I/usr/local/include/giflib -O2 -pipe -m486 -c main.cpp /bin/sh ../../libtool --mode=link g++ -O2 -pipe -m486 -s -o kfmwarn main.o -L/usr/local/lib -L/usr/X11R6/lib -L/usr/X11R6/lib -L/usr/local/lib -lkdecore -lqt -lXext -lX11 -rpath /usr/local/lib -rpath /usr/X11R6/lib g++ -O2 -pipe -m486 -s -o kfmwarn main.o -L/usr/local/lib -L/usr/X11R6/lib -L/usr/X11R6/lib -L/usr/local/lib -lkdecore -lqt -lXext -lX11 Making all in client g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include -I/usr/X11R6/include/X1 ... and so on to completion. Did you build kdelibs before kdebase? I just built everything in /usr/ports/x11/kde -- it ensures the right sequence of kde pieces. serge From owner-freebsd-ports Fri Dec 5 00:40:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA02781 for ports-outgoing; Fri, 5 Dec 1997 00:40:06 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA02737; Fri, 5 Dec 1997 00:40:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 5 Dec 1997 00:40:02 -0800 (PST) Resent-Message-Id: <199712050840.AAA02737@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, frankch@waru.life.nthu.edu.tw Received: from waru.life.nthu.edu.tw (root@waru.life.nthu.edu.tw [140.114.98.13]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id AAA01991 for ; Fri, 5 Dec 1997 00:30:25 -0800 (PST) (envelope-from frankch@waru.life.nthu.edu.tw) Received: (from frankch@localhost) by waru.life.nthu.edu.tw (8.8.8/8.8.7) id QAA02367; Fri, 5 Dec 1997 16:08:53 +0800 (CST) Message-Id: <199712050808.QAA02367@waru.life.nthu.edu.tw> Date: Fri, 5 Dec 1997 16:08:53 +0800 (CST) From: frankch@waru.life.nthu.edu.tw Reply-To: frankch@waru.life.nthu.edu.tw To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5229: New port biology/seaview Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5229 >Category: ports >Synopsis: New port biology/seaview >Confidential: yes >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 5 00:40:01 PST 1997 >Last-Modified: >Originator: Frank Chen Hsiung Chan >Organization: Department of Life Science, National Tsing Hua University Hsinchu, Taiwan >Release: FreeBSD 2.2.5-STABLE i386 >Environment: FreeBSD 2.2.5 STABLE >Description: Seaview is a multiple DNA sequence alignment editor. It is capable of align DNA sequences from various organisms and assign their position in the phylogenic tree. This is definitely of biology category. Perhaps we should have a molecular biology category? :) >How-To-Repeat: >Fix: The seaview port tarball is in ftp://ftp.freebsd.org/pub/FreeBSD/incoming/ >Audit-Trail: >Unformatted: From owner-freebsd-ports Fri Dec 5 01:27:16 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA06150 for ports-outgoing; Fri, 5 Dec 1997 01:27:16 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA06110; Fri, 5 Dec 1997 01:27:01 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.7/8.6.9) with ESMTP id BAA21878; Fri, 5 Dec 1997 01:27:07 -0800 (PST) To: Stefan Esser cc: ports@freebsd.org Subject: Re: Anyone build the latest KDE port under 2.2.5-stable lately? In-reply-to: Your message of "Fri, 05 Dec 1997 08:49:16 +0100." <19971205084916.47972@mi.uni-koeln.de> Date: Fri, 05 Dec 1997 01:27:07 -0800 Message-ID: <21874.881314027@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > You must have lost the includes installed by the > kdelibs port ... > Rebuild and install that, and test again. I figured it out - the kdecore library was still in my ld cache even though I'd purged /usr/local/kde from the system (blah!) and it was false-detecting the kdelibs port as having been already built. This isn't the first time that ld cache poisoning has bit me before. You install a port, it ldconfigs the new libraries in, then you pkg_delete it and try doing another make - it sees the libs still in the ldconfig cache and your build falls over. Technically, of course, since the libraries were added by the install / pkg_add process they should be deleted by the pkg_delete. I suppose you could make this work fairly easily by hacking ``ldconfig -m'' to do a two-way merge: If you merge from a directory and there are entries in your cache which aren't still found there, they get deleted. Just add an `@unexec ldconfig -m %D' for each @exec ldconfig already there and you're in business. Hmmm. Sounds like work. :) Jordan From owner-freebsd-ports Fri Dec 5 01:54:33 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA08643 for ports-outgoing; Fri, 5 Dec 1997 01:54:33 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-49.ix.netcom.com [207.93.143.177]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA08638 for ; Fri, 5 Dec 1997 01:54:30 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id BAA05000; Fri, 5 Dec 1997 01:53:59 -0800 (PST) Date: Fri, 5 Dec 1997 01:53:59 -0800 (PST) Message-Id: <199712050953.BAA05000@silvia.HIP.Berkeley.EDU> To: jkh@time.cdrom.com CC: ports@freebsd.org In-reply-to: <1001.881302199@time.cdrom.com> (jkh@time.cdrom.com) Subject: Re: Anyone build the latest KDE port under 2.2.5-stable lately? From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * 2. It blows up here: This port is still very young and the dependencies appear to be a little messed up. Try cd /var/db/pkg for i in kde*; do pkg_delete -f $i; done cd /usr/ports/x11/kde make install clean clean-depends At least that worked for me. (As well as the regular "empty /usr/local build" I do all the time.) Satoshi From owner-freebsd-ports Fri Dec 5 02:07:48 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA09749 for ports-outgoing; Fri, 5 Dec 1997 02:07:48 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-49.ix.netcom.com [207.93.143.177]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id CAA09732; Fri, 5 Dec 1997 02:07:41 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id CAA05066; Fri, 5 Dec 1997 02:07:33 -0800 (PST) Date: Fri, 5 Dec 1997 02:07:33 -0800 (PST) Message-Id: <199712051007.CAA05066@silvia.HIP.Berkeley.EDU> To: jkh@time.cdrom.com CC: se@freebsd.org, ports@freebsd.org In-reply-to: <21874.881314027@time.cdrom.com> (jkh@time.cdrom.com) Subject: Re: Anyone build the latest KDE port under 2.2.5-stable lately? From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * should be deleted by the pkg_delete. I suppose you could make this * work fairly easily by hacking ``ldconfig -m'' to do a two-way merge: Thanks Jordan, did I just hear you volunteer to merge the "-R" flag from -current to 2.2-stable? :) Satoshi From owner-freebsd-ports Fri Dec 5 02:23:57 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA10857 for ports-outgoing; Fri, 5 Dec 1997 02:23:57 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id CAA10834; Fri, 5 Dec 1997 02:23:50 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.7/8.6.9) with ESMTP id CAA28116; Fri, 5 Dec 1997 02:23:54 -0800 (PST) To: asami@cs.berkeley.edu (Satoshi Asami) cc: se@freebsd.org, ports@freebsd.org Subject: Re: Anyone build the latest KDE port under 2.2.5-stable lately? In-reply-to: Your message of "Fri, 05 Dec 1997 02:07:33 PST." <199712051007.CAA05066@silvia.HIP.Berkeley.EDU> Date: Fri, 05 Dec 1997 02:23:54 -0800 Message-ID: <28113.881317434@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Erm. I suppose I could, uh, at least look at it. > * should be deleted by the pkg_delete. I suppose you could make this > * work fairly easily by hacking ``ldconfig -m'' to do a two-way merge: > > Thanks Jordan, did I just hear you volunteer to merge the "-R" flag > from -current to 2.2-stable? :) > > Satoshi From owner-freebsd-ports Fri Dec 5 02:37:01 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id CAA12198 for ports-outgoing; Fri, 5 Dec 1997 02:37:01 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from bb-prg.eunet.cz (bb-prg.eunet.cz [193.85.1.10]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id CAA12193 for ; Fri, 5 Dec 1997 02:36:59 -0800 (PST) (envelope-from Martin.Machacek@eunet.cz) Received: from kamna.eunet.cz (kamna.eunet.cz [193.85.255.30]) by bb-prg.eunet.cz (8.8.6.EUnet/EUnet-CZ) with SMTP id LAA29610 for ; Fri, 5 Dec 1997 11:36:56 +0100 (MET) Message-Id: <199712051036.LAA29610@bb-prg.eunet.cz> Received: (qmail 13222 invoked from network); 5 Dec 1997 10:36:54 -0000 Received: from woody.eunet.cz (HELO eunet.cz) (@193.85.255.60) by kamna.eunet.cz with SMTP; 5 Dec 1997 10:36:54 -0000 X-Mailer: exmh version 2.0zeta 7/24/97 To: ports@freebsd.org Subject: upgrading installed packages Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 05 Dec 1997 11:36:54 +0100 From: Martin Machacek Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Is there any easy way how to upgrade already installed packages to current versions? I know how to CVSup ports, how to install ports but I dont' know how to upgrade a package to newer version (e.g. to something-1.1) without first deleting the old old version (e.g. something 1.0). The version numbers seem to be part of the name of the package. I agree that it might be in some situation usefull to keep the old version and install new version next to it. Actually the pkg_add command does not handle this situation well for many packages either (particalarly if the newer version uses same names for executables as the old version). Am I missing something? BTW, are there any plans to move to RedHat package manager? It appears to me as a good idea since rpm seems to work just fine and IMHO offers better functionality than native FreeBSD pkg commands. Cheers, -- Martin Machacek [Internet CZ, Zirovnicka 6/3133, 106 00 Prague 10, Czech Republic] [phone: +420 2 24245624 fax: +420 2 24316598] [PGP KeyID 00F9E4BD] From owner-freebsd-ports Fri Dec 5 03:22:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id DAA15332 for ports-outgoing; Fri, 5 Dec 1997 03:22:05 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from lists01.iafrica.com (lists01.iafrica.com [196.7.0.141]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id DAA15320 for ; Fri, 5 Dec 1997 03:21:59 -0800 (PST) (envelope-from sheldonh@axl.iafrica.com) Received: from axl.iafrica.com [196.31.1.167] (root) by lists01.iafrica.com with esmtp (Exim 1.73 #1) id 0xdvpL-00075I-00; Fri, 5 Dec 1997 13:21:47 +0200 Received: from axl.iafrica.com (sheldonh@localhost [127.0.0.1]) by axl.iafrica.com (8.8.8/8.8.7) with ESMTP id NAA24088; Fri, 5 Dec 1997 13:21:49 +0200 (SAT) (envelope-from sheldonh@axl.iafrica.com) From: Sheldon Hearn To: asami@cs.berkeley.edu (Satoshi Asami) cc: jkh@time.cdrom.com, ports@freebsd.org Subject: Re: Anyone build the latest KDE port under 2.2.5-stable lately? In-reply-to: Your message of "Fri, 05 Dec 1997 01:53:59 PST." <199712050953.BAA05000@silvia.HIP.Berkeley.EDU> Date: Fri, 05 Dec 1997 13:21:49 +0200 Message-ID: <24085.881320909@axl.iafrica.com> Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Fri, 05 Dec 1997 01:53:59 PST, Satoshi Asami wrote: > This port is still very young and the dependencies appear to be a > little messed up. My box had never heard of kde until today. Build went through hitchless. I suspect, from the postings of those having hassles, that problems only arise on attempting to re-build, re-install, re-whatever. If that's correct, it's most likely the way the pkg_delete's are (not)working, right? Sheldon. From owner-freebsd-ports Fri Dec 5 03:38:32 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id DAA16634 for ports-outgoing; Fri, 5 Dec 1997 03:38:32 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-49.ix.netcom.com [207.93.143.177]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id DAA16613; Fri, 5 Dec 1997 03:38:25 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id DAA05244; Fri, 5 Dec 1997 03:38:15 -0800 (PST) Date: Fri, 5 Dec 1997 03:38:15 -0800 (PST) Message-Id: <199712051138.DAA05244@silvia.HIP.Berkeley.EDU> To: ports@FreeBSD.ORG CC: toasty@home.dragondata.com, nate@mt.sri.com, jak@cetlink.net, current@FreeBSD.ORG, ports@FreeBSD.ORG In-reply-to: <28074.881287489@time.cdrom.com> (jkh@time.cdrom.com) Subject: Re: 3.0 -release ? From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * What do folks think of all this? I think the Dual PII-300 + 10-disk CCD array (Seagate Cheetah's, right?) is a great idea. :) For the rest, let me think about it. (Actually, I've been thinking about it since the last release, but haven't came up with anything usable yet.) Satoshi From owner-freebsd-ports Fri Dec 5 03:42:42 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id DAA16942 for ports-outgoing; Fri, 5 Dec 1997 03:42:42 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-49.ix.netcom.com [207.93.143.177]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id DAA16936 for ; Fri, 5 Dec 1997 03:42:38 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id DAA05254; Fri, 5 Dec 1997 03:40:23 -0800 (PST) Date: Fri, 5 Dec 1997 03:40:23 -0800 (PST) Message-Id: <199712051140.DAA05254@silvia.HIP.Berkeley.EDU> To: jkh@time.cdrom.com CC: pfgiffun@bachue.usc.unal.edu.co, stefan@promo.de, ports@FreeBSD.ORG, frankch@waru.life.nthu.edu.tw In-reply-to: <28207.881288060@time.cdrom.com> (jkh@time.cdrom.com) Subject: Re: ports/5214: New port rasmol From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * Why not just keep them separate and avoid all contraversy, eh? :-) Because someone raised the point that there is a fair amount of overlap between those two. We know that will create a lot of controversy too. :) Oh well. I guess ports being in two categories is better than getting some neuro-bioligist's or bio-chemist's hair stand on end. This port will go to a new category "biology" if nobody else objects. Satoshi From owner-freebsd-ports Fri Dec 5 03:50:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id DAA17722 for ports-outgoing; Fri, 5 Dec 1997 03:50:05 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id DAA17712; Fri, 5 Dec 1997 03:50:01 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 5 Dec 1997 03:50:01 -0800 (PST) Resent-Message-Id: <199712051150.DAA17712@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, andy@icc.surw.chel.su Received: from rich.chel.su (mobil.surnet.ru [195.54.2.7]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id DAA17004 for ; Fri, 5 Dec 1997 03:43:10 -0800 (PST) (envelope-from andy@icc.surw.chel.su) Received: from icc.surw.chel.su (surw.chel.su [195.54.2.162]) by rich.chel.su (8.7.2/Murphy) with ESMTP id OAA15176 for ; Fri, 5 Dec 1997 14:08:50 +0500 (UST) Received: (from andy@localhost) by icc.surw.chel.su (8.8.5/8.8.4) id MAA16800; Fri, 5 Dec 1997 12:09:03 +0300 (MSK) Message-Id: <199712050909.MAA16800@icc.surw.chel.su> Date: Fri, 5 Dec 1997 12:09:03 +0300 (MSK) From: Andrey Zakhvatov Reply-To: andy@icc.surw.chel.su To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5232: Update port: net/lftp Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5232 >Category: ports >Synopsis: Update port: net/lftp >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 5 03:50:00 PST 1997 >Last-Modified: >Originator: Andrey Zakhvatov >Organization: South Ural Railway ICC >Release: FreeBSD 2.2.2-RELEASE i386 >Environment: >Description: This a patch to update port net/lftp. diff -Nru lftp/Makefile lftp-0.13.2/Makefile --- lftp/Makefile Sun Nov 30 11:25:06 1997 +++ lftp-0.13.2/Makefile Fri Dec 5 11:26:37 1997 @@ -1,20 +1,20 @@ # New ports collection makefile for: lftp -# Version required: 0.12.2 +# Version required: 0.13.2 # Date created: 11 September 1997 # Whom: Andrey Zakhvatov # # $Id: Makefile,v 1.2 1997/11/30 00:24:02 jseger Exp $ # -DISTNAME= lftp-0.12.2 +DISTNAME= lftp-0.13.2 CATEGORIES= net -MASTER_SITES= ${MASTER_SITE_SUNSITE} -MASTER_SITE_SUBDIR= system/network/file-transfer +MASTER_SITES= ftp://ftp.yars.free.net/pub/software/unix/net/ftp/client/ \ + ${MASTER_SITE_SUNSITE}/system/network/file-transfer/ MAINTAINER= andy@icc.surw.chel.su GNU_CONFIGURE= yes -MAN1= lftp.1 ftpget.1 parallelftp.1 +MAN1= lftp.1 ftpget.1 OSVERSION!= sysctl -n kern.osreldate .if ${OSVERSION} >= 300000 @@ -22,13 +22,13 @@ .endif do-install: -.for file in lftp ftpget parallelftp +.for file in lftp ftpget @ ${INSTALL_PROGRAM} ${WRKSRC}/src/${file} ${PREFIX}/bin @ ${INSTALL_MAN} ${WRKSRC}/doc/${file}.1 ${PREFIX}/man/man1 .endfor @ ${INSTALL_DATA} ${WRKSRC}/lftp.conf ${PREFIX}/etc/lftp.conf @ ${MKDIR} ${PREFIX}/share/doc/lftp -.for file in NEWS README TODO +.for file in COPYING NEWS README THANKS TODO @ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/lftp .endfor diff -Nru lftp/files/md5 lftp-0.13.2/files/md5 --- lftp/files/md5 Mon Nov 17 13:18:37 1997 +++ lftp-0.13.2/files/md5 Fri Dec 5 08:50:59 1997 @@ -1 +1 @@ -MD5 (lftp-0.12.2.tar.gz) = fb3cdfd81458e36130401e9ad63b020e +MD5 (lftp-0.13.2.tar.gz) = b9cfc758dd39c45f4e15f4595c3e6c24 diff -Nru lftp/pkg/PLIST lftp-0.13.2/pkg/PLIST --- lftp/pkg/PLIST Mon Nov 17 13:18:37 1997 +++ lftp-0.13.2/pkg/PLIST Fri Dec 5 11:30:38 1997 @@ -1,11 +1,11 @@ bin/lftp bin/ftpget -bin/parallelftp etc/lftp.conf man/man1/lftp.1.gz man/man1/ftpget.1.gz -man/man1/parallelftp.1.gz +share/doc/lftp/COPYING share/doc/lftp/NEWS share/doc/lftp/README +share/doc/lftp/THANKS share/doc/lftp/TODO @dirrm share/doc/lftp >How-To-Repeat: >Fix: Please, check and commit this patch. I can't test compiling ability under 3.0-CURRENT, please, check this. >Audit-Trail: >Unformatted: From owner-freebsd-ports Fri Dec 5 04:48:11 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id EAA22010 for ports-outgoing; Fri, 5 Dec 1997 04:48:11 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-49.ix.netcom.com [207.93.143.177]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id EAA21951 for ; Fri, 5 Dec 1997 04:47:59 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id EAA07091; Fri, 5 Dec 1997 04:47:55 -0800 (PST) Date: Fri, 5 Dec 1997 04:47:55 -0800 (PST) Message-Id: <199712051247.EAA07091@silvia.HIP.Berkeley.EDU> To: ports@freebsd.org CC: tlambert@primenet.com Subject: "Latest" links for ports From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Before I venture into the multi-CD land, here's a couple of tiny changes I plan to make to bsd.port.mk soon. (1) Support for multiple md5 lines of the same file Submitted by: hoek (2) Be very picky about old tcl/tk installations Annoyed by: several bogus commits by pst :> (3) Create a "packages/Latest" directory that contains version-less symlinks so you can "pkg_add emacs.tgz" and be happy Suggested by: Terry Yes that's Mr. Lambert. I wanted to show that I don't reject a good idea just because it has a, um, somewhat controversial origin. :) Satoshi ------- Index: bsd.port.mk =================================================================== RCS file: /usr/cvs/src/share/mk/bsd.port.mk,v retrieving revision 1.227.2.29 diff -u -r1.227.2.29 bsd.port.mk --- bsd.port.mk 1997/11/20 05:34:32 1.227.2.29 +++ bsd.port.mk 1997/12/05 12:35:31 @@ -521,6 +521,7 @@ GZIP?= -9 GZIP_CMD?= /usr/bin/gzip -nf ${GZIP} LDCONFIG?= /sbin/ldconfig +LN?= /bin/ln MKDIR?= /bin/mkdir -p MV?= /bin/mv RM?= /bin/rm @@ -655,11 +656,12 @@ # shouldn't match "[a-z]*"), see the target "delete-package-links" below. PKGREPOSITORYSUBDIR?= All PKGREPOSITORY?= ${PACKAGES}/${PKGREPOSITORYSUBDIR} -.if exists(${PACKAGES}) PKGFILE?= ${PKGREPOSITORY}/${PKGNAME}${PKG_SUFX} -.else -PKGFILE?= ${PKGNAME}${PKG_SUFX} -.endif + +# The "latest version" link -- ${PKGNAME} minus everthing after the last '-' +PKGLATESTREPOSITORY?= ${PACKAGES}/Latest +PKGBASE!= ${ECHO} ${PKGNAME} | ${SED} -e 's/-[^-]*$$//' +PKGLATESTFILE?= ${PKGLATESTREPOSITORY}/${PKGBASE}${PKG_SUFX} CONFIGURE_SCRIPT?= configure @@ -749,6 +751,12 @@ IGNORE= "is restricted: ${RESTRICTED}" .elif ((defined(USE_IMAKE) || defined(USE_X11)) && !exists(${X11BASE})) IGNORE= "uses X11, but ${X11BASE} not found" +.elif exists(/usr/include/tcl.h) +IGNORE= ": You have an old tcl installation on your machine. Remove everything that matches '/usr/*/*tcl*' first" +.elif exists(${LOCALBASE}/include/tcl.h) || exists(${LOCALBASE}/lib/tclConfig.sh) +IGNORE= ": You have an old tcl installation on your machine. Remove everything that matches '${PREFIX}/*/*tcl*' first" +.elif exists(${LOCALBASE}/include/tk.h) || exists(${LOCALBASE}/lib/tkConfig.sh) +IGNORE= ": You have an old tk installation on your machine. Remove everything that matches '${PREFIX}/*/*tk*' first" .elif defined(BROKEN) IGNORE= "is marked as broken: ${BROKEN}" .endif @@ -1079,13 +1087,20 @@ exit 1; \ fi; \ fi; \ - ln -s ../${PKGREPOSITORYSUBDIR}/${PKGNAME}${PKG_SUFX} ${PACKAGES}/$$cat; \ - done; + ${LN} -s ../${PKGREPOSITORYSUBDIR}/${PKGNAME}${PKG_SUFX} ${PACKAGES}/$$cat; \ + done + @if [ ! -d ${PKGLATESTREPOSITORY} ]; then \ + if ! ${MKDIR} ${PKGLATESTREPOSITORY}; then \ + ${ECHO_MSG} ">> Can't create directory ${PKGLATESTREPOSITORY}."; \ + exit 1; \ + fi; \ + fi + @${LN} -s ../${PKGREPOSITORYSUBDIR}/${PKGNAME}${PKG_SUFX} ${PKGLATESTFILE} .endif .if !target(delete-package-links) delete-package-links: - @${RM} -f ${PACKAGES}/[a-z]*/${PKGNAME}${PKG_SUFX}; + @${RM} -f ${PACKAGES}/[a-z]*/${PKGNAME}${PKG_SUFX} ${PKGLATESTFILE} .endif .if !target(delete-package) @@ -1383,7 +1398,7 @@ ${ECHO_MSG} ">> Checksum for $$file is set to IGNORE in md5 file even though"; \ ${ECHO_MSG} " the file is not in the "'$$'"{IGNOREFILES} list."; \ OK="false"; \ - elif [ "$$CKSUM" = "$$CKSUM2" ]; then \ + elif expr "$$CKSUM2" : ".*$$CKSUM" > /dev/null; then \ ${ECHO_MSG} ">> Checksum OK for $$file."; \ else \ ${ECHO_MSG} ">> Checksum mismatch for $$file."; \ From owner-freebsd-ports Fri Dec 5 04:54:17 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id EAA22578 for ports-outgoing; Fri, 5 Dec 1997 04:54:17 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id EAA22550; Fri, 5 Dec 1997 04:54:10 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id EAA08621; Fri, 5 Dec 1997 04:53:02 -0800 (PST) Date: Fri, 5 Dec 1997 04:53:02 -0800 (PST) Message-Id: <199712051253.EAA08621@freefall.freebsd.org> To: Nakai@elelab.nsc.co.jp, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5227 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Fixed port: mlvwm State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Fri Dec 5 04:51:22 PST 1997 State-Changed-Why: Committed. thanks. From owner-freebsd-ports Fri Dec 5 07:00:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA02393 for ports-outgoing; Fri, 5 Dec 1997 07:00:04 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA02359; Fri, 5 Dec 1997 07:00:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 5 Dec 1997 07:00:02 -0800 (PST) Resent-Message-Id: <199712051500.HAA02359@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, kiri@kiri.toba-cmt.ac.jp Received: from kiri.toba-cmt.ac.jp (kiri.toba-cmt.ac.jp [202.26.248.91]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id GAA01627 for ; Fri, 5 Dec 1997 06:53:55 -0800 (PST) (envelope-from kiri@kiri.toba-cmt.ac.jp) Received: (from kiri@localhost) by kiri.toba-cmt.ac.jp (8.8.8/8.8.7) id XAA16086; Fri, 5 Dec 1997 23:50:17 +0900 (JST) Message-Id: <199712051450.XAA16086@kiri.toba-cmt.ac.jp> Date: Fri, 5 Dec 1997 23:50:17 +0900 (JST) From: Kazuhiko Kiriyama(System administrator) Reply-To: kiri@kiri.toba-cmt.ac.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5235: Update port ja-man-doc-2.2.2g(japanese/man-doc). Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5235 >Category: ports >Synopsis: Update port ja-man-doc-2.2.2g(japanese/man-doc). >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Class: support >Submitter-Id: current-users >Arrival-Date: Fri Dec 5 07:00:01 PST 1997 >Last-Modified: >Originator: Kazuhiko Kiriyama >Organization: Toba National College of Maritime Technology. Department of Electronic Mechanical Engineering >Release: FreeBSD 2.2.5-STABLE i386 >Environment: >Description: I've updated the port ja-man-doc-2.2.2g(japanese/man-doc). Current modifications is (1) Update the distfile. I put the diff from ports-current(japanese/man-doc) in "Fix:". >How-To-Repeat: >Fix: diff -aurN ../../current/japanese/man-doc/Makefile ./Makefile --- ../../current/japanese/man-doc/Makefile Thu Sep 25 11:08:58 1997 +++ ./Makefile Fri Dec 5 23:36:59 1997 @@ -1,13 +1,13 @@ # New ports collection makefile for: Japanese man documents -# Version required: 2.2.2f +# Version required: 2.2.2g # Date created: 6 January 1997 # Whom: Kiriyama Kazuhiko # # $Id: Makefile,v 1.13 1997/09/24 03:20:10 max Exp $ # -DISTNAME= jpman-${VERSION}f -PKGNAME= ja-man-doc-${VERSION}f +DISTNAME= jpman-${VERSION}g +PKGNAME= ja-man-doc-${VERSION}g CATEGORIES= japanese MASTER_SITES= ftp://jaz.jp.freebsd.org/pub/FreeBSD-jp/man-jp/ diff -aurN ../../current/japanese/man-doc/files/md5 ./files/md5 --- ../../current/japanese/man-doc/files/md5 Thu Sep 25 11:08:58 1997 +++ ./files/md5 Fri Dec 5 23:39:21 1997 @@ -1 +1 @@ -MD5 (jpman-2.2.2f.tar.gz) = c37442b59a7a4f7dd1c363acae079e96 +MD5 (jpman-2.2.2g.tar.gz) = 89b3a53e83cf68e78f61a208171e9ec6 >Audit-Trail: >Unformatted: From owner-freebsd-ports Fri Dec 5 09:01:46 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA13650 for ports-outgoing; Fri, 5 Dec 1997 09:01:46 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id JAA13641 for ; Fri, 5 Dec 1997 09:01:41 -0800 (PST) (envelope-from imp@village.org) Received: from harmony [10.0.0.6] by rover.village.org with esmtp (Exim 1.71 #1) id 0xe18A-0000zZ-00; Fri, 5 Dec 1997 10:01:34 -0700 Received: from harmony.village.org (localhost [127.0.0.1]) by harmony.village.org (8.8.8/8.8.3) with ESMTP id KAA10759 for ; Fri, 5 Dec 1997 10:00:25 -0700 (MST) Message-Id: <199712051700.KAA10759@harmony.village.org> To: ports@freebsd.org Subject: 2.2-stable from 3.0-current machine? Date: Fri, 05 Dec 1997 10:00:25 -0700 From: Warner Losh Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk My fast machine is running 3.0-current. I'd love to be able to make 2.2-stable ports on that machine from the make world tree I keep on it. Any ideas how I might go about doing this easily so I don't have to build everything on the 386 boxes I'm putting -stable onto... Warner From owner-freebsd-ports Fri Dec 5 12:05:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA02091 for ports-outgoing; Fri, 5 Dec 1997 12:05:03 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from smtp02.primenet.com (smtp02.primenet.com [206.165.6.132]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id MAA02072; Fri, 5 Dec 1997 12:04:58 -0800 (PST) (envelope-from tlambert@usr08.primenet.com) Received: (from daemon@localhost) by smtp02.primenet.com (8.8.8/8.8.8) id NAA09030; Fri, 5 Dec 1997 13:14:36 -0700 (MST) Received: from usr08.primenet.com(206.165.6.208) via SMTP by smtp02.primenet.com, id smtpd008988; Fri Dec 5 13:14:25 1997 Received: (from tlambert@localhost) by usr08.primenet.com (8.8.5/8.8.5) id NAA16482; Fri, 5 Dec 1997 13:04:13 -0700 (MST) From: Terry Lambert Message-Id: <199712052004.NAA16482@usr08.primenet.com> Subject: Re: 3.0 -release ? To: ports@freebsd.org Date: Fri, 5 Dec 1997 20:04:13 +0000 (GMT) Cc: asami@cs.berkeley.edu, toasty@home.dragondata.com, nate@mt.sri.com, jak@cetlink.net, current@freebsd.org In-Reply-To: <28074.881287489@time.cdrom.com> from "Jordan K. Hubbard" at Dec 4, 97 06:04:49 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > The second thing I think we need to consider is that in the longer > term, I can easily see a day where the ports and packages collection > have grown to the point where decoupling them from the primary FreeBSD > releases becomes essential in order that the "base system" remain > reasonably priced. This would also allow the ports collection to move > at its own release schedule, perhaps doing only 2 - 3 releases a year > and published in a format closer to Rich Morin's well known Prime Time > Freeware for UNIX CDs (http://www.ptf.com/ptf/products/UNIX). They > come with a nifty printed book containing alphabetized short > descriptions so you can look something up quickly before wasting your > time mounting the wrong CD, and I think the ports & packages > collection should do exactly the same thing. I like this. I think that there should be coordination with the OpenBSD and NetBSD folks to make sure they are usable "out of the box" for them as well. It could become simply "The BSD ports collection". You may want to coordinate with BSDI, if at all possible... This should probably wait for ELF, though, since all the other BSD's are ELF now... Terry Lambert terry@lambert.org --- Any opinions in this posting are my own and not those of my present or previous employers. From owner-freebsd-ports Fri Dec 5 12:21:29 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA03813 for ports-outgoing; Fri, 5 Dec 1997 12:21:29 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from tera.com (tera.tera.com [207.108.223.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id MAA03751; Fri, 5 Dec 1997 12:21:04 -0800 (PST) (envelope-from kline@tao.thought.org) Received: (from uucp@localhost) by tera.com (8.8.7/8.8.7) with UUCP id MAA03154; Fri, 5 Dec 1997 12:19:41 -0800 (PST) Received: (from kline@localhost) by tao.thought.org (8.8.5/8.7.3) id MAA11678; Fri, 5 Dec 1997 12:06:00 -0800 (PST) From: Gary Kline Message-Id: <199712052006.MAA11678@tao.thought.org> Subject: Re: 3.0 -release ? In-Reply-To: <28074.881287489@time.cdrom.com> from "Jordan K. Hubbard" at "Dec 4, 97 06:04:49 pm" To: ports@freebsd.org Date: Fri, 5 Dec 1997 12:06:00 -0800 (PST) Cc: asami@cs.berkeley.edu, toasty@home.dragondata.com, nate@mt.sri.com, jak@cetlink.net, current@freebsd.org, ports@freebsd.org Organization: <> thought.org: public access uNix in service... <> X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk According to Jordan K. Hubbard: > > > Regarding ports and packages in general, I think that we also need to > start looking *really seriously* at the idea of a "multi-volume" > ports/packages collection, since a need to split them across at least > 2 locations has already been the case since 2.2.5. Even if you prune > and chop and tweak like mad for 3.0, I can guarantee you that the > packages won't all fit in 650MB [see note]. :-) Let me run some thoughts and questions up the flagpole, Jordan. We could try these for a year or so since there really isn't any easy way of market-researching this. Two types of FreeBSD RELEASE: one would be a 4- to N-CD release at cost+margin. $50 or 50+. This no more than twice a year; these releases would be as before with everything available. The second type of RELEASE would probably fit onto one CD, the kernel, compilers, source, X11R6 bins. The ports would be in a separate CD package, but source-only. What's the reason for having binary distfiles when--given the proper *.mk files-- everything can be built from the source? > > This means to me that the INDEX file needs to grow at least one more > field for the volume name (or maybe we can just tuck it into the > keywords field, does anyone even use that? :-) and somebody needs to > modify portlint so that a port's volume is checked against its > dependencies, it being an error to put your package outside the same > volume as all the things it depends on. This would allow me to modify > sysinstall to request in turn that the appropriate media be mounted > when asking for a specific package that isn't on the current media. Yes! This is why I pull things off the net _only_. > > To think about: Should we also implement a volume-to-media mapping > file which allows the installation to build a menu of valid choices > based on the media types the user has available and the "map" of where > the packages are available, be that anything from "CD:WC/3" to > "ftp://ftp.jp.freebsd.org/pub/FreeBSD/packages/japan-latest"? > Thinking ahead to where we've got potentially 4000-5000 packages, with > an average size of 500K for packages the whole collection is going to > be easily 2GB or more. I could see where it might become distributed > more geographically, or from a more limited number of servers than > supply the distribution bits, and we're going to need to account > for that somehow. It's time to consider this point in some depth. It is fantastic to see us growing internationally. As time passes, most of the programs will probably originate in the non-English, non-Latinate corners of the globe and have to be ported from, say, Chinese to English. The non-English sites would carry packages in their language. With links to other geographic sites. By the time we are this diverse, hopefully the DVD drives will solve the space|packing problem so that a RELEASE will again fit onto 1 or 2 platters. > > Doing this would also allow Walnut Creek CDROM to see just how much > revenue the ports collection alone generated, and as a new product I'm > pretty confident that I could negotiate in advance that a slice of the > pie from every ports collection CD sale go into a special "support the > ports collection project fund" (over and above money already given to > FreeBSD.org) from which we could buy Satoshi and crew a package > building machine from hell, among other periodic goodies. :-) [and > I've been thinking of some nice 10 drive CCD array configurations > which would really do the job nicely when mated with a dual-processor > PII-300. ;)] What would it take to get a ports platform up. With a T1 line? Could we do build+test on that box as well as our own? I've run into unfathomable built problems with several ports retrieved from freefall/ports and have given up? Having one unified site to work with would give us the opportunity to do a port right. Obviate lots of head-banging and digging into build problems. These last two paragraphs are off-topic. Feedback on the above, people?? gary > > What do folks think of all this? > > Jordan > > -- Gary D. Kline kline@tao.thought.org Public service uNix From owner-freebsd-ports Fri Dec 5 14:39:31 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id OAA18332 for ports-outgoing; Fri, 5 Dec 1997 14:39:31 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from firewall.ftf.dk (root@mail.ftf.dk [129.142.64.2]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id OAA18326; Fri, 5 Dec 1997 14:39:27 -0800 (PST) (envelope-from regnauld@deepo.prosa.dk) Received: from mail.prosa.dk ([192.168.100.2]) by firewall.ftf.dk (8.7.6/8.7.3) with ESMTP id BAA17434; Sat, 6 Dec 1997 01:16:39 +0100 Received: from deepo.prosa.dk (deepo.prosa.dk [192.168.100.10]) by mail.prosa.dk (8.8.5/8.8.5/prosa-1.1) with ESMTP id AAA10044; Sat, 6 Dec 1997 00:03:32 +0100 (CET) Received: (from regnauld@localhost) by deepo.prosa.dk (8.8.7/8.8.5/prosa-1.1) id XAA02195; Fri, 5 Dec 1997 23:38:16 +0100 (CET) Message-ID: <19971205233816.15333@deepo.prosa.dk> Date: Fri, 5 Dec 1997 23:38:16 +0100 From: Philippe Regnauld To: Terry Lambert Cc: ports@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: 3.0 -release ? References: <28074.881287489@time.cdrom.com> <199712052004.NAA16482@usr08.primenet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88e In-Reply-To: <199712052004.NAA16482@usr08.primenet.com>; from Terry Lambert on Fri, Dec 05, 1997 at 08:04:13PM +0000 X-Operating-System: FreeBSD 2.2.5-RELEASE i386 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk [maintaining post to both -ports and -current -- IMHO it is relevant] Terry Lambert writes: > > I like this. I think that there should be coordination with the > OpenBSD and NetBSD folks to make sure they are usable "out of the box" > for them as well. It could become simply "The BSD ports collection". YES! I definitely agree with this idea -- since OpenBSD already uses the ports... Having a common set of CD's / archives that any *BSD user could pull buy / pull down from the net would certainly increase the "presence" as marketdroids like to call it. > You may want to coordinate with BSDI, if at all possible... Hmmm. It does seem that there hasn't been so much cooperation with BSDI since doscmd was donated... > This should probably wait for ELF, though, since all the other BSD's > are ELF now... Argh. Now my question :-) -- apart from our ports/package system, there also exists at least 2 other package systems out there (all Linux): - debian package (with hard/soft dependencies scheme) - RedHat And I know we have the "rpm" tool in /usr/port/misc. How difficult/sick/twisted would it be to have some kind of skeleton like "ports" which would be a superset of wrappers for RPM/Debian _packages_ (not so many, only the binary stuff we can't get in source), and then go into the "/usr/ports/blah/foo" and do make, just like we did when BSDI Netscape was in ports ? (or even better: pkg_add ApplixWare-x.x.rpm) ? I'll go and take my pills now. -- -[ Philippe Regnauld / sysadmin / regnauld@deepo.prosa.dk / +55.4N +11.3E ]- "Pluto placed his bad dog at the entrance of Hades to keep the dead IN and the living OUT! The archetypical corporate firewall?" - S. Kelly Bootle, about Cerberus ["MYTHOLOGY", in Marutukku distrib] - From owner-freebsd-ports Fri Dec 5 16:31:24 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA27726 for ports-outgoing; Fri, 5 Dec 1997 16:31:24 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from hydrogen.nike.efn.org (resnet.uoregon.edu [128.223.170.28]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id QAA27714 for ; Fri, 5 Dec 1997 16:31:16 -0800 (PST) (envelope-from gurney_j@efn.org) Received: (from jmg@localhost) by hydrogen.nike.efn.org (8.8.7/8.8.7) id QAA15578; Fri, 5 Dec 1997 16:31:02 -0800 (PST) Message-ID: <19971205163102.62094@hydrogen.nike.efn.org> Date: Fri, 5 Dec 1997 16:31:02 -0800 From: John-Mark Gurney To: Warner Losh Cc: ports@FreeBSD.ORG Subject: Re: 2.2-stable from 3.0-current machine? References: <199712051700.KAA10759@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.69 In-Reply-To: <199712051700.KAA10759@harmony.village.org>; from Warner Losh on Fri, Dec 05, 1997 at 10:00:25AM -0700 Reply-To: John-Mark Gurney Organization: Cu Networking X-Operating-System: FreeBSD 2.2.1-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Warner Losh scribbled this message on Dec 5: > My fast machine is running 3.0-current. I'd love to be able to make > 2.2-stable ports on that machine from the make world tree I keep on > it. > > Any ideas how I might go about doing this easily so I don't have to > build everything on the 386 boxes I'm putting -stable onto... this shouldn't be hard... first, make sure that /usr/src/ points to your 2.2-stable tree... -stable doesn't have the fixes that allow you to do tree independant builds (unless Bruce's sneaked the changes in without me looking)... then you need to do something to prep your build environment to be the 2.2-stable tree... I use the command: eval `make build-env` along with the following change to src's Makefile (this is realitive to -current, so it might not work): .endfor + + build-env: + @echo export PATH=${STRICTTMPPATH} + @echo export COMPILER_PATH=${WORLDTMP}/usr/libexec:${WORLDTMP}/usr/bin + @echo export GCC_EXEC_PREFIX=${WORLDTMP}/usr/lib/ + @echo export LD_LIBRARY_PATH=${WORLDTMP}${SHLIBDIR} + @echo export LIBRARY_PATH=${WORLDTMP}${SHLIBDIR}:${WORLDTMP}/usr/lib .include this allows me to do kernel builds and other useful things in my -current tree on my 2.2.1-R box... be careful though.. many of the normal binaries that you use aren't built, you will probably need to modify the Makefile to build more binaries if you want it to be useful... another thing to watch out for is the mk files path... you still end up using the ones in /usr/share/mk/* instead of the buildworld's set... I haven't figured out how to fix this... but they are modular enough that you can just upgrade 'em... (becareful of bsd.prog.mk.. it contains fixes for ELF that aren't compatible with 2.2, at least my version of 2.2) hope this info helps you get it running.. -- John-Mark Gurney Modem/FAX: +1 541 683 6954 Cu Networking Live in Peace, destroy Micro$oft, support free software, run FreeBSD From owner-freebsd-ports Fri Dec 5 17:30:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA02625 for ports-outgoing; Fri, 5 Dec 1997 17:30:06 -0800 (PST) (envelope-from owner-freebsd-ports) Received: (from gnats@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA02603; Fri, 5 Dec 1997 17:30:01 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 5 Dec 1997 17:30:01 -0800 (PST) Resent-Message-Id: <199712060130.RAA02603@hub.freebsd.org> Resent-From: gnats (GNATS Management) Resent-To: freebsd-ports Resent-Reply-To: FreeBSD-gnats@FreeBSD.ORG, dirk@mail.dinoex.sub.de Received: from mail.dinoex.sub.de (root@mail.dinoex.sub.de [193.203.172.14]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id RAA02421 for ; Fri, 5 Dec 1997 17:28:25 -0800 (PST) (envelope-from dinoex@net2.dinoex.sub.org) Received: from net2.dinoex.sub.org (uucp@localhost) by mail.dinoex.sub.de (8.8.5/8.8.7) with UUCP id CAA07877 for freebsd.org!FreeBSD-gnats-submit; Sat, 6 Dec 1997 02:22:43 +0100 (CET) Received: by net2.dinoex.sub.org (Smail3.1.29.1 #1) id m0xe8xk-000k7VC; Sat, 6 Dec 97 02:23 CET Message-Id: Date: Sat, 6 Dec 97 02:23 CET From: dirk@net2.dinoex.sub.org Reply-To: dirk@mail.dinoex.sub.de To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5238: new version news/ifmail Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >Number: 5238 >Category: ports >Synopsis: new version news/ifmail >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 5 17:30:00 PST 1997 >Last-Modified: >Originator: Dirk Meyer >Organization: privat >Release: FreeBSD 2.2.5-RELEASE i386 >Environment: running news and mail Modem or external ISDN adapter via serial line >Description: FidoNet(tm) support package for UN*X platform keywords: news, mail, gateway, transfer-protcol >How-To-Repeat: existing Port uses version 2.10 also fixes report ports/5192 >Fix: the following archive create a directory ifmail this can be intstalled directory "/usr/ports/news". ftp://ftp.dinoex.sub.de/pub/appoved/ports-ifmail-2.12.tar.gz also included in this mail begin 644 ports-ifmail-2.12.tar.gz M'XL(""#_AS0"`W!O]9K;"'$\-V*^?U2"9X!??(WON,;*!>+VGY)T_8U`"U?+.2? M0>G9(WPB'AH!P+/`\\+[X*9CQIQG_[B/+>7O7XYR7UO^A7*YF"_I>*UINO8D M_\>6?ZUS>MIH]__Z.;1\OE@LWB/_4EG(OU`L[Q>U(LI?U_?WGT'^2?Y?_'-L M6UZ;A;OA9`]XY/M>$()OF)?&B,'0"^"\_?('\!TCQ)N)\NSI\\^U_[-6L]?_ M$G/<;__HZPN%F_:O%9_L_U$^CCU@U\S,Q7I@#TW;])1;K;9KL>O;S?1UN]5E M4WZ[E;S*[=;`BT)VNQF%$MYN#3U^Q\"1>]?0KN,;H3E6WEIV$$Q@M5>9&&X. M_Q5ROA%P9ADA4POJZ/>D_74,I[Z^T4@4R$8^-@*6L[SYA-U&M7[:6->NQIQ= MWSU"(N[IQ@4D:[D)%&.Q:V/B.XPGJ-6`&7Q-7[UQ='ZRIN^X^J]U/F M;V7Y-SO[G7IG39=)VI(;D*Q0%A-^+QB?K>WWW*$]6M\9!O;@?AH3($.W!I-- M,,C:H7V=S:LE-5_,O4/'V>E^>AC2=L2LXL2WJN\\'.^WB$5,-1^&N!5;;^", MF>,_#,,W.)]Z@<4?AA8PCLUFR*P->$)YLA,^LC=.@;[`L8U-4$.+2,ZU._UF MK;$=K/S:R/\8FC/.;<]5QYO`,7U3+6R9;0`D%S[T-@*AF]L(XWN.LQ$H8+]M MA`F9X[+0RIT:EVQH.VQKA*U,9P$^O]K(_24<"8_JOS4*9\&5;;)-NN-L=B^. M4-4-0).)-=R6=0)V*ZX)2&GU&Y5/P)(&XO(WLG8%>*N116JPW;@QZ'"T#?`5 M"[:R+0%\?7V]`8Q\R\65;5QL#H-WH]`?G9I4/GX0(MWI(DTQII<;,'DT<;Q- M[`EM,U<;&^Z(;0>[U6()T!PS\Y(%F^.6`);:YSOVUL#WYCIW@->V"6M+\&W/ M8@\8_LSCH>V.'H(1>.@YN!=LC]+O-FM'1SUU&$P>@!38HQ%[P"PCQQL8CCJV M'H*#YNA?M+9%"LR"OM',"7*$7I8R]>TTP[%YN*W*3="-SM5N"WC?VWYL7XKV M`J_YEAA1,&(78Z3?"V;;H:#Z6_A]N25O.,-LT#7%$M;!([==5'MBXQJ(N$8: MV>MBI.VZPDD-&5N;>!$,9ZZ5O;>6L5WT\*$QX"*$3'2;>]M!&K][Z"\WPMJ# MB6]F'0/-5ML,S#U=#+X14@Z8%:-O!,9OPPDO/?OU-J`$A^!K0(FCRS*:%+,# MCZ_/[NZ"CT)GK:>X`YZCJHPV@2<7&*NSVD.`]77`XN\P=+':'_-[@422$-P/ M$P:&RVD3=!U8:/J;"*A5C8+[K"Z M^P%P"?<#"'YM`(GE=S]43/?]0**"VP"RE+9M![D(65O#;P>XDJ9MAR+KONU@ MYR7'=N"K5?-6.)N4)_9#]X(]/2SXF^W_UQN]6O?Q]_^AK.FW]O_S^^6G_?_' M^"A';&2[!>5_^S:&^THJ)14"LO"P)X,?9%%=2>GJOM)P,=`R*TO9>B65+[<[ M'PZ*2IUQ,[#]4(`MCSX/NF"X%M`^^-28W9Y#55*I.B895+\+ZM`%@B"6R&(A M!P^[`'TC\\?8"0X&:HY(-&J_=I9KG@'Z-Y>91`)_0S>($"X&PW]9H@%QF#GV MQ-BA!]WC6O:UKN?H6\L7RHB(CLXVW'AZ&E_$)SD5A7T@(@T5H.DBM.>SP*!) M86J'8SCM5V.<,$:+^QZ3EK6^* M*W7"+U4>P6XC&C%D9DUV[RFG!E*`_U"^@UEE:[2SP)X8P2S+;=*)D%]G-4V= MV*&*F0U@R3/`@LV-KG/$P>N72A1JZY&+0E!YUAO3;)G:ZD>+<&&(:^:K&)QVD!N/0.]R.WT\*O6R4"S5\L`]R8,O'!,&6?-\V>V.\KZGF.; MR+/C@#$T$DL1/5B2CT/8-?=`.S@H9.AO$08SB#EXHB9,5)0^%H6`_QL@MUZ` M]OZ$I:C!01BA*LY@ M.C9"F&'/U.9CJ;TAT<"]83C%H)\!@X/CN2/ZQGD5=HV68=HA!&R(/@!K3%)F MFXP3UVF[!IJ+T#A:1L"D(E44Y=9BX;N[->O[#.B54E[/Y_1"_FV\..3,NV8/ M>IWC_L=JMX$2@+-NYT.SWJA#M4>WU78=:AWDV,=F_QVT.X!PW6J[_PDZQ]CY M"=XWV_6,TL#>1A<:/YQU&[T>8G>ZT#P]:S4;=3+F-F$V/C3:?1RGU0($QE'/ M/G6;)^_Z\*[3JB/R44-I-:M'K08<(S:-7:^>5D\:/11:[[S5;[9/X+C;.178 MY[T&4;!"OKH0]!`UA?B,DS>N3>:'0MC(:)AX5!$@TXU+YB*<-Q'-4OB)/\DH MN].Q;8Z%8`<,_?C@5W1_)!++'@H!A7A%CU&PW$,5!:FB>QDA=,**.%-61"XH M,-P9^%'@>QQ5`-WAA`6FC;+%+M=S%PT9L%W3B2P<6F%72"A6B0[-8X<9H4Z8 M22*U9!TT)D[DCG"M?6P?C1%Y*.B@6:>V1`RQ\(^CT60&;#BD8DV0&T"TL)M8DQ]XH\"8(*<-U&UO1$B)Q85"?W,B.@7(4O+Y\C$P["[% M/%3\D#IC="5!EW41XC%T\,A':453EZ2(>3?*D;:'`+H>B0Y5@=B."T?AHA*@ MV!+:!/\0G_1#/$B^.4)3]H6>GW502LY*OX+8E<3?[`I5(*^#=-4Z[>/F">P* MWDL7"[*>BN)P9[&A[=ITN:?0ZABJ.,E`(1DL^=^,]'4QWR?"/B8>+BG$L.O:)IJ%18[.X:1H MZ`Q=3#E1-\.%SJ&,+?29U!(S53CVD)0O1*H3[5XL6;"3T4,$TBY,V8`@436C$ M++A*;'2/-#TD<.%`.)(44GC#A0E?81H!:CO1BO1'/B6OG,S&L"RAPM)KSM=` M2C?WDB(\ABM+PCMDI2=-:^`P1DX0Y3PBG>_Y3/A+),"]%/G>.Q7.&(9LJ+I7 M."GR3YG$F99P>[126I'ZD%CY9CE6QDFA\L'#!+4"K_8A?U`"7=.AI.\7W\"I MQTUOFH$N+=!0E"S4[>`23MD,9]@5IVF0(=\">:T]!N<;Z! MZ@6CI[K_;UK_-]N]?K75>O3ZOXC:)^K_$L(5RJ+^+Q3UI_K_,3X[W^2PRLKQ ML:*@DP\.X[T[\0CO,(I,7XELZW`_KR@&O]S=@S\4$IGC4503SCD.\T;D4/G. MIU2F$$C2>?A<$_TR/+X[.FZTZ)L>?T_#S M&_*:6/S1C&F M;#Q<#+*,294RS!&5SXHR8]SU;JS<&N)JY\N_=]G#Q9HQ%<>@7GF#)=:"BEWD MZ\KRTG1':)_3>TK*-##TIN<$I8%*XA\_S7Y^N9="[H11X$+^S1ML:[O+;1JU M,6Z8BMC*@/29PV@H.0[,*(NB7%U-2S(Q,M!BQ73/=9I%P1(H&_N$/25AJRPG MLAS\:<+/BF2<@QDGDAO"=]\U.L=Q"1-GA8[G75+XPCS$P'#,L(S7(3Z'(3)F M+'.PC*8`C14"$W%9L46LQOR+RP"(?/"G:CK0&JQ0;< MHA@GMA9BHI/OK"G3JAP/3+%[P;LMDN*X'B"/A(!DK*P MJ%B\:"PO)/->"%+3BX$2XQ*%IC0Z60=*:Y.0L1#G4DQ)?13W\T[9(0;M7&:@ M^2)6XE5.+RM"S#A2FEB%<;UX*2(97D<)E[*HS9"U(.KX M2EO61-8LM"0-__XW+*N@)*^.&$2+7,6B?95IMUU/3'XR8.P/\$M\H_=6=I0= M6-Z7B'UIA#5!\$+LML7;?W;`<7C?(ZIMH<0#-A0%Z)CA&#Y4U5]P0GPG`(3XRZ9U0 ME8;V=>RI?54YZ_3ZB]A""T:>854=3[!NYMS+A#DBLCUE[W_Q\[\O5`%LR/^U M0FE?Y/_%_4*QG*?W/_52J?B4_W_%_/\IV___D.W'C-/A&V39W/SGO$OBDT)1 M:9'4U.6VUU0\_Q2^/6`3[XK=RB`7&`D M_"NW8C1"/SG\N_V_"/M?ZA<`MGW_OUC&_V@O2--*Q=+3^_^/+O^)]458CO&_ M?._[_W+_KZCM%TMZ7A?O_SZ=_WFO+_C_')9K/RL$-N2>@JG=5*]8P0 MVMX52@.THVSFUP+09_^Q:RKS-E>/4ZLP]OWV)>_A(^ M!G88,I>.N?$0"S/W+?<-DZD\Z]CNI4J''7NB'3XR>M5JR!R+-HI>YA107NW( M0T4,ON,SG@MG/N/J^'L%%NU$F!N*1FH>8O$']4Z[?_&N^J%Q46]V&^W^4_Q: M9__R#,J7S/\T3/.2WW\I%`K+_I]^_PT#1OZ_S/[I6>@_4/XO7[Z,CQP)`^XQ M'P6"-EPI:A64F3!@\A$21G59E#H.;*@S$P`-7:ODM8I^(.%>KG[H'EYG=`W$ M'<`.H@VB$4P8Y^*T,^U=,(O.R*`?R%[#)9O)LWZQ=Z"S1:I`[-'Y+A8$=+0J MP:9S-YYIBB<,8M?;\'V&LA0GDD+/DYARDUL>?S3%N\U6JO* M-R!^%85^Y`35\A#2N2LCR#G>:/&^HT7TTQZ*&#I^:9:R.61DQ@N5[.Y M&$2>8Y-;5H9)AW]I22-Q4I.+_2*XL@UZ!('-NWM@XD+YPQF,Q,?L7<-@O)FS M]YRSQ81#PQ0/>,&D5['E&3MZ5""/[=&)=G&Y=,92C36.6`79^A+[=ND1\X`Y MWG1/Z+;04;S(_EUUE/N>YSQIZ9?4TALL?G0]O0!,UX M<='JU*JM?$)D?7&45NC>^7GMC+:W+^,G?@&C$Y^T^AU$?(\9TAW+IQB8%@RZ M#4%CI6_/)@0LSQ"(AY7QD4YY)ADG]9PK9JT7T5P_;@EIY^S\**%!$#%&\Z-S M&G0V@XB\V;^Z#`1R;'-.<)L$(WIA<>AXE\XTT"]7@$A.A0Y3$KK3;GSL]%4I'!BK_*7"6>S;';^&X2S238[7U$X=UF25M(S],O#\T1% M/FNG@\_26::S]6:[7]`/Q;LNXD8K'_*Q%X1S,N6K1M>ORQ6`73J'((WYJ%>_ MZ#5/VM56+WF?03P3'V$!9>I@7-))Y8%95J_WD#.=LWXOJ8L/$W?0K_:/>W@C M+RZ:[8L/^/4NZ6[T>\UZ?-.N'YUBST\X5"J5K2]JGO[IQ.4NW5FDW2R??B%][FV`1WW/O4KL4XS4ZMWYK/VVV<-'Z8W_5191.\XTZW MUD`6M5;]6;;>;C3J%Z3=XOV7^/ZH]VF.V6L1K;U&NXY+J;Z_Z'V<$ZLV\'0G8=,6V8, M79]4^TW!O<;["TP25F?#42\:W2[]QN<=BCD'W<38WH=ND0[\K67K!\'7]7IW M-V?)8R9&.,_$OIH1[OR%5KCSY\QPYS^UPYW_W!!WMK7$G8>9XE]JB7_>$/^$ M'3[8#+>WPJ]HA'?FF-I^1M<+\\AX8^5W:XFDWZ8S='>1+Y/BQ3M)F3CMP8CN M8WDPL%U#O)5%.;)X`=6;NO+]*LY"9-%1LTW)PR&(V.[$/UQH.SAXYV.[03WS MAI-NY_P,&\11=H#33KU!C[;V->W_VKO6W\2-(/X9_Q7;"Q^@(38VS_C.:2AP M*3T.4DR;?JB$")@<"J\"B9!2_O?.[,-KB$ETO5P45?.+`G@?LSM>S[YF9RQF M:9(]U>>\*?8.'8/[2CYCFS4'?.?#9NU6D!@>5!8\5#\V*Q<^/E+P!%X!#RCL M3!H\"X&6)L_X&.K4;48UU/!AA@N^"EI[&RDF2(,+8$)RVDYP5P.K'6PG-JV8PTF8]Q[[N^.23AY M;_S,"Y_!S-4>_ M")B/G31Y/>\&UVC8>#*!'X),M2W:@[-=U(/OR[%]]&)\'T,JV>HN7.A4L[ME M'Y86,XKR]B?Q-JDCB;I'ENMEWC6 M"[[,.5[,\&HP78@K?;$,9OUI`#^FM[#T,?%$]B0(,.8OT5UQOA<0HP4$(E0Y M.S`CISE)ICRN)%1&8I>E8'$#&HQDJ@WL]V:?T M>C&TFSAY%Z0GJR"XC:.,T_,P%BD'L^%X%$/L-[_=Z0IB?Z]@GGBHFBHRAH3? MK-749(?`_Y5^]4,`>O(O_Y8O&1_&?I_-\KRC^J)"S=ZHGNESOV:W_& MF,//@(C3&GH%SL,B!SY0 MBX4'.Y3$':LL49D^CN0)ELO9'+-$A#2,?0>]PWRQ-K^\VPG=H$'I?N!$!?[O MQG_ECN6[E/&,_,,R,"?/?Y1*XOP'+,MI_'\5<.T*=^F!_H,F$^$X!L-1TPZ^N.ZHO$R&+JB#4W;@<@:JC:E@:$;GNZ$+D'T#-`;X/)B/M5Q M"H?=B:`99+(!Y-0SFKEGMLG_.$G+MBV[R+)YMU!RG3P;!3/<3JEO%BP)F8U: MP^^V*I_KGBPIN>_WL+ MO[?<8E38AN_ZLCOLRLZ*Y(FZFCO@:6X_>1\U]34#EFY>(]8IG&9"VT>K"?[WC/=,VD+25\]!_8?@6)0PJ>\J/I%EF MZJ5)AH&&_W)/S#42YV)SRPMWN5CRP?\%/R\_74#]MLHAB0C!)MRRB$\"`UL& M-9W;PQME!CIJUV6:W"L1ZOVQ45OE+=*0Y'H0@)2N.I_\3G5KR5$N^3".TE>O M@C),&$C01\\>R=S3)''F'$\QIRF.1^P'>78BU6I?PN2QUJ[ZZ5A^'[T**E)Z MK=*M1(N7+JN>R*R9D6[*I+X\XA&XS8"3/9/RS%$SQ)1>380(ZT`7=Audit-Trail: >Unformatted: From owner-freebsd-ports Fri Dec 5 19:04:27 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id TAA09553 for ports-outgoing; Fri, 5 Dec 1997 19:04:27 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id TAA09535; Fri, 5 Dec 1997 19:04:21 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.7/8.6.9) with ESMTP id TAA16952; Fri, 5 Dec 1997 19:04:21 -0800 (PST) To: Philippe Regnauld cc: Terry Lambert , ports@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: 3.0 -release ? In-reply-to: Your message of "Fri, 05 Dec 1997 23:38:16 +0100." <19971205233816.15333@deepo.prosa.dk> Date: Fri, 05 Dec 1997 19:04:20 -0800 Message-ID: <16948.881377460@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > > I like this. I think that there should be coordination with the > > OpenBSD and NetBSD folks to make sure they are usable "out of the box" > > for them as well. It could become simply "The BSD ports collection". > > YES! I definitely agree with this idea -- since OpenBSD already > uses the ports... Having a common set of CD's / archives that This would be nice, but I'd also have to *test* these packages on those platforms or at least cooperate closely with someone from each camp to do so, and frankly that's a lot more extra work than I feel comfortable signing up for. Again, it "would be nice", I'm not disputing that, I'm simply saying that if we don't keep our goalset small, at least for the first couple of iterations of this, then we won't get it done for any of the *BSDs (including FreeBSD). Jordan From owner-freebsd-ports Fri Dec 5 22:40:34 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA24289 for ports-outgoing; Fri, 5 Dec 1997 22:40:34 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id WAA24257; Fri, 5 Dec 1997 22:40:28 -0800 (PST) (envelope-from imp@village.org) Received: from harmony [10.0.0.6] by rover.village.org with esmtp (Exim 1.71 #1) id 0xeDuV-0001LO-00; Fri, 5 Dec 1997 23:40:19 -0700 Received: from harmony.village.org (localhost [127.0.0.1]) by harmony.village.org (8.8.8/8.8.3) with ESMTP id XAA14244; Fri, 5 Dec 1997 23:39:15 -0700 (MST) Message-Id: <199712060639.XAA14244@harmony.village.org> To: "Jordan K. Hubbard" Subject: Re: 3.0 -release ? Cc: Philippe Regnauld , Terry Lambert , ports@freebsd.org, current@freebsd.org In-reply-to: Your message of "Fri, 05 Dec 1997 19:04:20 PST." <16948.881377460@time.cdrom.com> References: <16948.881377460@time.cdrom.com> Date: Fri, 05 Dec 1997 23:39:14 -0700 From: Warner Losh Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk In message <16948.881377460@time.cdrom.com> "Jordan K. Hubbard" writes: : Again, it "would be nice", I'm not disputing that, I'm simply saying : that if we don't keep our goalset small, at least for the first couple : of iterations of this, then we won't get it done for any of the *BSDs : (including FreeBSD). And the number of niggling, little problems that are in the ports when you try to use them quickly convince you that having one ports tree is a logistical nightmare. the openbsd folks sent me a bunch of patches back when 2.2.5 was jelling, so i couldn't commit them to the freebsd tree. to make matters worse, freebsd has libcrypt, while openbsd doesn't. and then there was libgmp. freebsd compresses man pages, while openbsd does. the list is very long and adds up to make most ports not work w/o tweaking on openbsd. in the end, to get working ports they had to get their own ports tree. lots of little things added up to a huge problem. i guess this is a long way of saying that i agree with jordan. expanding the scope of ports from just current/stable freebsd does come at a huge price that isn't obvious at first blush. the devil is in the details for sure. it is much harder than you'd otherwise think. Warner From owner-freebsd-ports Sat Dec 6 00:52:21 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA01702 for ports-outgoing; Sat, 6 Dec 1997 00:52:21 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from tera.com (tera.tera.com [207.108.223.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id AAA01678; Sat, 6 Dec 1997 00:52:10 -0800 (PST) (envelope-from kline@tao.thought.org) Received: (from uucp@localhost) by tera.com (8.8.7/8.8.7) with UUCP id AAA02847; Sat, 6 Dec 1997 00:50:01 -0800 (PST) Received: (from kline@localhost) by tao.thought.org (8.8.5/8.7.3) id XAA20919; Fri, 5 Dec 1997 23:52:38 -0800 (PST) From: Gary Kline Message-Id: <199712060752.XAA20919@tao.thought.org> Subject: Re: 3.0 -release ? In-Reply-To: <16948.881377460@time.cdrom.com> from "Jordan K. Hubbard" at "Dec 5, 97 07:04:20 pm" To: jkh@time.cdrom.com (Jordan K. Hubbard) Date: Fri, 5 Dec 1997 23:52:38 -0800 (PST) Cc: regnauld@deepo.prosa.dk, tlambert@primenet.com, ports@FreeBSD.ORG, current@FreeBSD.ORG Organization: <> thought.org: public access uNix in service... <> X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk According to Jordan K. Hubbard: > > > I like this. I think that there should be coordination with the > > > OpenBSD and NetBSD folks to make sure they are usable "out of the box" > > > for them as well. It could become simply "The BSD ports collection". > > > > YES! I definitely agree with this idea -- since OpenBSD already > > uses the ports... Having a common set of CD's / archives that > > This would be nice, but I'd also have to *test* these packages on > those platforms or at least cooperate closely with someone from each > camp to do so, and frankly that's a lot more extra work than I feel > comfortable signing up for. > > Again, it "would be nice", I'm not disputing that, I'm simply saying > that if we don't keep our goalset small, at least for the first couple > of iterations of this, then we won't get it done for any of the *BSDs > (including FreeBSD). > > Hm. Closely linking the 3 BSD's would be such a major win that we need to put in the effort, I think. If the proposed ``port-server'' is realized, why not put Net|Open disks on the platform and co-ordinate the ports effort. The NetBSD and OpenBSD teams could share and repicrocate. Have you talked to the Net|Open folks, Jordan? At the very least, we ought to keep this idea in focus; it's solid. We can only gain. gary -- Gary D. Kline kline@tao.thought.org Public service uNix From owner-freebsd-ports Sat Dec 6 00:52:56 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id AAA01769 for ports-outgoing; Sat, 6 Dec 1997 00:52:56 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from tera.com (tera.tera.com [207.108.223.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id AAA01733; Sat, 6 Dec 1997 00:52:40 -0800 (PST) (envelope-from kline@tao.thought.org) Received: (from uucp@localhost) by tera.com (8.8.7/8.8.7) with UUCP id AAA02920; Sat, 6 Dec 1997 00:50:08 -0800 (PST) Received: (from kline@localhost) by tao.thought.org (8.8.5/8.7.3) id AAA20945; Sat, 6 Dec 1997 00:10:14 -0800 (PST) From: Gary Kline Message-Id: <199712060810.AAA20945@tao.thought.org> Subject: Re: 3.0 -release ? In-Reply-To: <199712060639.XAA14244@harmony.village.org> from Warner Losh at "Dec 5, 97 11:39:14 pm" To: imp@village.org (Warner Losh) Date: Sat, 6 Dec 1997 00:10:14 -0800 (PST) Cc: jkh@time.cdrom.com, regnauld@deepo.prosa.dk, tlambert@primenet.com, ports@FreeBSD.ORG, current@FreeBSD.ORG Organization: <> thought.org: public access uNix in service... <> X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk According to Warner Losh: > In message <16948.881377460@time.cdrom.com> "Jordan K. Hubbard" writes: > : Again, it "would be nice", I'm not disputing that, I'm simply saying > : that if we don't keep our goalset small, at least for the first couple > : of iterations of this, then we won't get it done for any of the *BSDs > : (including FreeBSD). > > And the number of niggling, little problems that are in the ports when > you try to use them quickly convince you that having one ports tree is > a logistical nightmare. the openbsd folks sent me a bunch of patches > back when 2.2.5 was jelling, so i couldn't commit them to the freebsd > tree. to make matters worse, freebsd has libcrypt, while openbsd > doesn't. and then there was libgmp. freebsd compresses man pages, > while openbsd does. the list is very long and adds up to make most > ports not work w/o tweaking on openbsd. in the end, to get working > ports they had to get their own ports tree. lots of little things > added up to a huge problem. > > i guess this is a long way of saying that i agree with jordan. > expanding the scope of ports from just current/stable freebsd does > come at a huge price that isn't obvious at first blush. the devil is > in the details for sure. it is much harder than you'd otherwise > think. > > Warner > If there are fewer than 10 gotchas, a merger still makes sense to me. If OpenBSD is too different from FreeBSD, NetBSD shouldn't be. Looking at this from the perspective of 20 years of porting code, it is certainly possible. Whether it's reasonable or not is altogether another matter... . gary > -- Gary D. Kline kline@tao.thought.org Public service uNix From owner-freebsd-ports Sat Dec 6 01:59:56 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id BAA05090 for ports-outgoing; Sat, 6 Dec 1997 01:59:56 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from critter.freebsd.dk (critter.freebsd.dk [195.8.129.26]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id BAA05067; Sat, 6 Dec 1997 01:59:48 -0800 (PST) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost.cybercity.dk [127.0.0.1]) by critter.freebsd.dk (8.8.7/8.8.7) with ESMTP id KAA17650; Sat, 6 Dec 1997 10:55:13 +0100 (CET) (envelope-from phk@critter.freebsd.dk) To: Gary Kline cc: imp@village.org (Warner Losh), jkh@time.cdrom.com, regnauld@deepo.prosa.dk, tlambert@primenet.com, ports@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: 3.0 -release ? In-reply-to: Your message of "Sat, 06 Dec 1997 00:10:14 PST." <199712060810.AAA20945@tao.thought.org> Date: Sat, 06 Dec 1997 10:55:13 +0100 Message-ID: <17648.881402113@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk In message <199712060810.AAA20945@tao.thought.org>, Gary Kline writes: >According to Warner Losh: > > If there are fewer than 10 gotchas, a merger still makes > sense to me. If OpenBSD is too different from FreeBSD, > NetBSD shouldn't be. There are about 125 gotchas as of my last count. -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." From owner-freebsd-ports Sat Dec 6 04:34:00 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id EAA14411 for ports-outgoing; Sat, 6 Dec 1997 04:34:00 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from eve.umiacs.umd.edu (eve.umiacs.umd.edu [128.8.120.38]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id EAA14398; Sat, 6 Dec 1997 04:33:52 -0800 (PST) (envelope-from dbader@umiacs.umd.edu) Received: by eve.umiacs.umd.edu (8.8.5/UMIACS-0.9/04-05-88) id HAA07145; Sat, 6 Dec 1997 07:33:50 -0500 (EST) Date: Sat, 6 Dec 1997 07:33:50 -0500 (EST) Message-Id: <199712061233.HAA07145@eve.umiacs.umd.edu> From: "David A. Bader" To: jmz@freebsd.org cc: freebsd-ports@freebsd.org, dbader@umiacs.umd.edu Subject: Problem with current latex/tex port WWW: http://www.umiacs.umd.edu/~dbader Reply-to: dbader@umiacs.umd.edu Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Jean-Marc, I'm trying to install the FreeBSD port for latex (and tex) in /usr/ports/print/latex /usr/ports/print/tex on my FreeBSD 2.2.5-RELEASE machine. (I had just cvsup'ed the current ports area.) Previously, I was running old version (tex 3.1415 and latex 96.07) and wanted to update to the new versions in the port area (tex 3.14159 and latex 97.07). While doing "make" in the "tex" port, many symlinks/files were missing and the make crashed out. (I added links for the locations of .mf and .tmf and base files, and was able to finish the make, but it didn't install properly.) Has anyone tried this new port (since it was updated on 11/10/97) to verify that it's working properly? Please reply to me at , as I'm not subscribed to the mailing list. Thanks for any help, david From owner-freebsd-ports Sat Dec 6 07:21:35 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA24694 for ports-outgoing; Sat, 6 Dec 1997 07:21:35 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id HAA24678; Sat, 6 Dec 1997 07:21:13 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id HAA04817; Sat, 6 Dec 1997 07:19:57 -0800 (PST) Date: Sat, 6 Dec 1997 07:19:57 -0800 (PST) Message-Id: <199712061519.HAA04817@freefall.freebsd.org> To: dirk@mail.dinoex.sub.de, jseger@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5238 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: new version news/ifmail State-Changed-From-To: open-closed State-Changed-By: jseger State-Changed-When: Sat Dec 6 07:19:43 PST 1997 State-Changed-Why: Commited with minor changes, thanks. From owner-freebsd-ports Sat Dec 6 07:22:09 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA24738 for ports-outgoing; Sat, 6 Dec 1997 07:22:09 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id HAA24712; Sat, 6 Dec 1997 07:21:59 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id HAA04933; Sat, 6 Dec 1997 07:20:42 -0800 (PST) Date: Sat, 6 Dec 1997 07:20:42 -0800 (PST) Message-Id: <199712061520.HAA04933@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, jseger@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5192 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: URL is not vaild any more State-Changed-From-To: open-closed State-Changed-By: jseger State-Changed-When: Sat Dec 6 07:20:12 PST 1997 State-Changed-Why: Fixed by commiting ports/5238 From owner-freebsd-ports Sat Dec 6 07:48:10 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA26225 for ports-outgoing; Sat, 6 Dec 1997 07:48:10 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id HAA26166; Sat, 6 Dec 1997 07:47:37 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id HAA23432; Sat, 6 Dec 1997 07:46:20 -0800 (PST) Date: Sat, 6 Dec 1997 07:46:20 -0800 (PST) Message-Id: <199712061546.HAA23432@freefall.freebsd.org> To: andy@icc.surw.chel.su, jseger@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5232 Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Synopsis: Update port: net/lftp State-Changed-From-To: open-closed State-Changed-By: jseger State-Changed-When: Sat Dec 6 07:45:24 PST 1997 State-Changed-Why: Committed, thanks. From owner-freebsd-ports Sat Dec 6 09:25:10 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA01485 for ports-outgoing; Sat, 6 Dec 1997 09:25:10 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id JAA01466 for ; Sat, 6 Dec 1997 09:24:59 -0800 (PST) (envelope-from imp@village.org) Received: from harmony [10.0.0.6] by rover.village.org with esmtp (Exim 1.71 #1) id 0xeNxz-00029s-00; Sat, 6 Dec 1997 10:24:35 -0700 Received: from harmony.village.org (localhost [127.0.0.1]) by harmony.village.org (8.8.8/8.8.3) with ESMTP id KAA18629; Sat, 6 Dec 1997 10:23:35 -0700 (MST) Message-Id: <199712061723.KAA18629@harmony.village.org> To: Gary Kline Subject: Re: 3.0 -release ? Cc: ports@freebsd.org In-reply-to: Your message of "Sat, 06 Dec 1997 00:10:14 PST." <199712060810.AAA20945@tao.thought.org> References: <199712060810.AAA20945@tao.thought.org> Date: Sat, 06 Dec 1997 10:23:34 -0700 From: Warner Losh Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk In message <199712060810.AAA20945@tao.thought.org> Gary Kline writes: : If there are fewer than 10 gotchas, a merger still makes : sense to me. If OpenBSD is too different from FreeBSD, : NetBSD shouldn't be. shouldn't be a big deal. however, in practice it turns out to be a big deal. there are at least 100 gotchas. everything from some ports assuming i386, to missing libraries, to differences in how man pages are stored, to ... well you get the idea. there is more hair here than meets the eye. Warner From owner-freebsd-ports Sat Dec 6 09:28:22 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA01645 for ports-outgoing; Sat, 6 Dec 1997 09:28:22 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id JAA01637 for ; Sat, 6 Dec 1997 09:28:18 -0800 (PST) (envelope-from imp@village.org) Received: from harmony [10.0.0.6] by rover.village.org with esmtp (Exim 1.71 #1) id 0xeO1Y-00029x-00; Sat, 6 Dec 1997 10:28:16 -0700 Received: from harmony.village.org (localhost [127.0.0.1]) by harmony.village.org (8.8.8/8.8.3) with ESMTP id KAA18660; Sat, 6 Dec 1997 10:27:15 -0700 (MST) Message-Id: <199712061727.KAA18660@harmony.village.org> To: John-Mark Gurney Subject: Re: 2.2-stable from 3.0-current machine? Cc: ports@freebsd.org In-reply-to: Your message of "Fri, 05 Dec 1997 16:31:02 PST." <19971205163102.62094@hydrogen.nike.efn.org> References: <19971205163102.62094@hydrogen.nike.efn.org> <199712051700.KAA10759@harmony.village.org> Date: Sat, 06 Dec 1997 10:27:15 -0700 From: Warner Losh Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk In message <19971205163102.62094@hydrogen.nike.efn.org> John-Mark Gurney writes: : this shouldn't be hard... first, make sure that /usr/src/ points to your : 2.2-stable tree... -stable doesn't have the fixes that allow you to do : tree independant builds (unless Bruce's sneaked the changes in without : me looking)... nope. I was finally able to build -stable on my -current box. : be careful though.. many of the normal binaries that you use aren't built, : you will probably need to modify the Makefile to build more binaries if : you want it to be useful... hmmmm. I have enough disk space that doing a make install DESTDIR=/xyzzy is an option for me. I'll have to investigate that more closely. : another thing to watch out for is the mk files path... you still end up : using the ones in /usr/share/mk/* instead of the buildworld's set... I : haven't figured out how to fix this... but they are modular enough that : you can just upgrade 'em... (becareful of bsd.prog.mk.. it contains : fixes for ELF that aren't compatible with 2.2, at least my version of 2.2) hmmm. make -m doesn't do this for you? : hope this info helps you get it running.. I'll let you know. I think that it would be a big win if there were some way to add support of this to the base system. I'm not sure I like the eval approach, since you use ksh, and I use tcsh :-). it is a good start, however, at cracking this problem. Warner From owner-freebsd-ports Sat Dec 6 12:14:26 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA10091 for ports-outgoing; Sat, 6 Dec 1997 12:14:26 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from haldjas.folklore.ee (Haldjas.folklore.ee [193.40.6.121]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id MAA10086 for ; Sat, 6 Dec 1997 12:14:17 -0800 (PST) (envelope-from narvi@Haldjas.folklore.ee) Received: from haldjas.folklore.ee (haldjas.folklore.ee [172.17.2.1] (may be forged)) by haldjas.folklore.ee (8.8.7/8.8.4) with SMTP id WAA20967; Sat, 6 Dec 1997 22:12:29 +0200 (EET) Date: Sat, 6 Dec 1997 22:12:29 +0200 (EET) From: Narvi To: Warner Losh cc: Gary Kline , ports@FreeBSD.ORG Subject: Re: 3.0 -release ? In-Reply-To: <199712061723.KAA18629@harmony.village.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk [phk sent a similar mail, but it had a much too long cc: list I hope everyone relevant sees it anyway] On Sat, 6 Dec 1997, Warner Losh wrote: > In message <199712060810.AAA20945@tao.thought.org> Gary Kline writes: > : If there are fewer than 10 gotchas, a merger still makes > : sense to me. If OpenBSD is too different from FreeBSD, > : NetBSD shouldn't be. > > shouldn't be a big deal. however, in practice it turns out to be a > big deal. there are at least 100 gotchas. everything from some ports Some of which should be corrected anyway. > assuming i386, to missing libraries, to differences in how man pages The target processor should be encoded somewehere, assuming something about it is no good . Missing libraries? They just need #ifdefs around the depenency lines (+ some {Open, Net}BSD specific ports). Installing man pages should be done using a script lie install-man (which can be plaform specific so it always get's done right). I haven't seen the list, but I would bet that half of them are of this type. > are stored, to ... well you get the idea. there is more hair here > than meets the eye. > Sure. Having a unified ports collection is that big a task that it certainly requires co-operation from all the parties. The conversion would have to be done port at a time anyways. > Warner > Sander There is no love, no good, no happiness and no future - all these are just illusions. From owner-freebsd-ports Sat Dec 6 14:02:28 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id OAA18065 for ports-outgoing; Sat, 6 Dec 1997 14:02:28 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from smtp04.primenet.com (smtp04.primenet.com [206.165.6.134]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id OAA18052; Sat, 6 Dec 1997 14:02:23 -0800 (PST) (envelope-from tlambert@usr02.primenet.com) Received: (from daemon@localhost) by smtp04.primenet.com (8.8.8/8.8.8) id PAA11042; Sat, 6 Dec 1997 15:02:50 -0700 (MST) Received: from usr02.primenet.com(206.165.6.202) via SMTP by smtp04.primenet.com, id smtpd011021; Sat Dec 6 15:02:43 1997 Received: (from tlambert@localhost) by usr02.primenet.com (8.8.5/8.8.5) id PAA09641; Sat, 6 Dec 1997 15:01:41 -0700 (MST) From: Terry Lambert Message-Id: <199712062201.PAA09641@usr02.primenet.com> Subject: Re: 3.0 -release ? To: regnauld@deepo.prosa.dk (Philippe Regnauld) Date: Sat, 6 Dec 1997 22:01:41 +0000 (GMT) Cc: tlambert@primenet.com, ports@FreeBSD.ORG, current@FreeBSD.ORG In-Reply-To: <19971205233816.15333@deepo.prosa.dk> from "Philippe Regnauld" at Dec 5, 97 11:38:16 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > > This should probably wait for ELF, though, since all the other BSD's > > are ELF now... > > Argh. Now my question :-) -- apart from our ports/package system, > there also exists at least 2 other package systems out there (all > Linux): > > - debian package (with hard/soft dependencies scheme) > - RedHat > > And I know we have the "rpm" tool in /usr/port/misc. > > How difficult/sick/twisted would it be to have some kind > of skeleton like "ports" which would be a superset of > wrappers for RPM/Debian _packages_ (not so many, only > the binary stuff we can't get in source), and then > go into the "/usr/ports/blah/foo" and do make, just > like we did when BSDI Netscape was in ports ? > > (or even better: pkg_add ApplixWare-x.x.rpm) ? I think you will want the ports/packages framework. The FreeBSD framework is less system dependent in that it can rely on source instead of binary without having to build a per package script specifically for each thing to be compiled. I would discourage rpm. I actually see this as an opportunity to get a set of tools that is the same across all BSD platforms. The problem with doing Linux at the same time (by adopting the Linux tools) is threefold: 1) BSDI is unlikely to be willing to have to become a GPL code distribution site (more than they already have to by virtue of GCC). 2) None of the BSD's are likely to want to include GPL'ed code as a critical system component. RPM can never be more than an "also-ran", IMO. 3) Linux, of course, should adopt the FreeBSD tools so it can use the packages disks out of the box. ;-). Terry Lambert terry@lambert.org --- Any opinions in this posting are my own and not those of my present or previous employers. From owner-freebsd-ports Sat Dec 6 14:32:45 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id OAA19893 for ports-outgoing; Sat, 6 Dec 1997 14:32:45 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from smtp01.primenet.com (smtp01.primenet.com [206.165.6.131]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id OAA19883; Sat, 6 Dec 1997 14:32:32 -0800 (PST) (envelope-from tlambert@usr02.primenet.com) Received: (from daemon@localhost) by smtp01.primenet.com (8.8.8/8.8.8) id IAA26887; Sat, 6 Dec 1997 08:53:31 -0700 (MST) Received: from usr02.primenet.com(206.165.6.202) via SMTP by smtp01.primenet.com, id smtpd026865; Sat Dec 6 08:53:22 1997 Received: (from tlambert@localhost) by usr02.primenet.com (8.8.5/8.8.5) id PAA10526; Sat, 6 Dec 1997 15:22:27 -0700 (MST) From: Terry Lambert Message-Id: <199712062222.PAA10526@usr02.primenet.com> Subject: Re: 3.0 -release ? To: phk@critter.freebsd.dk (Poul-Henning Kamp) Date: Sat, 6 Dec 1997 22:22:27 +0000 (GMT) Cc: kline@thought.org, imp@village.org, jkh@time.cdrom.com, regnauld@deepo.prosa.dk, tlambert@primenet.com, ports@FreeBSD.ORG, current@FreeBSD.ORG In-Reply-To: <17648.881402113@critter.freebsd.dk> from "Poul-Henning Kamp" at Dec 6, 97 10:55:13 am X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > >According to Warner Losh: > > > > If there are fewer than 10 gotchas, a merger still makes > > sense to me. If OpenBSD is too different from FreeBSD, > > NetBSD shouldn't be. > > There are about 125 gotchas as of my last count. Any chance that these can make it to a FreeBSD WWW page somewhere? I left my Doctor Emmett Lanthrop Brown mindreading helmet in my other suit... ;-). Terry Lambert terry@lambert.org --- Any opinions in this posting are my own and not those of my present or previous employers. From owner-freebsd-ports Sat Dec 6 15:23:10 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id PAA23520 for ports-outgoing; Sat, 6 Dec 1997 15:23:10 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from tera.com (tera.tera.com [207.108.223.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id PAA23482; Sat, 6 Dec 1997 15:22:56 -0800 (PST) (envelope-from kline@tao.thought.org) Received: (from uucp@localhost) by tera.com (8.8.7/8.8.7) with UUCP id PAA02572; Sat, 6 Dec 1997 15:19:40 -0800 (PST) Received: (from kline@localhost) by tao.thought.org (8.8.5/8.7.3) id OAA15949; Sat, 6 Dec 1997 14:55:30 -0800 (PST) From: Gary Kline Message-Id: <199712062255.OAA15949@tao.thought.org> Subject: Re: 3.0 -release ? In-Reply-To: <199712062222.PAA10526@usr02.primenet.com> from Terry Lambert at "Dec 6, 97 10:22:27 pm" To: tlambert@primenet.com (Terry Lambert) Date: Sat, 6 Dec 1997 14:55:30 -0800 (PST) Cc: phk@critter.freebsd.dk, kline@thought.org, imp@village.org, jkh@time.cdrom.com, regnauld@deepo.prosa.dk, tlambert@primenet.com, ports@FreeBSD.ORG, current@FreeBSD.ORG Organization: <> thought.org: public access uNix in service... <> X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk According to Terry Lambert: > > >According to Warner Losh: > > > > > > If there are fewer than 10 gotchas, a merger still makes > > > sense to me. If OpenBSD is too different from FreeBSD, > > > NetBSD shouldn't be. > > > > There are about 125 gotchas as of my last count. > > Any chance that these can make it to a FreeBSD WWW page somewhere? > I left my Doctor Emmett Lanthrop Brown mindreading helmet in my > other suit... ;-). > > > Terry Lambert > terry@lambert.org > I've like to see just 10 major|minor tweaks. Seriously. As will soon be known, the Tera MTA machine uses BSD. Our devel environment was a maze that suported 4 or 5 separate build environments and GNU make rather than pmake|BSD make. With hacks to the Free|Net /usr/share/mk files, and some to the port makefiles, a single release set could support all flavors of BSD. Joining 3 teams multiplies the ports and the usefulness of any BSD. If we could wrap in Linux ports, WC could sell billions and billions of sets....but I'd be happy to take the simpler tack. gary -- Gary D. Kline kline@tao.thought.org Public service uNix From owner-freebsd-ports Sat Dec 6 16:23:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA27837 for ports-outgoing; Sat, 6 Dec 1997 16:23:05 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from post.mail.demon.net (post-20.mail.demon.net [194.217.242.27]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id QAA27814 for ; Sat, 6 Dec 1997 16:22:57 -0800 (PST) (envelope-from fports@jraynard.demon.co.uk) Received: from jraynard.demon.co.uk ([158.152.42.77]) by post.mail.demon.net id aa2025380; 7 Dec 97 0:08 GMT Received: (from fports@localhost) by jraynard.demon.co.uk (8.8.8/8.8.7) id PAA03337; Sat, 6 Dec 1997 15:27:38 GMT (envelope-from fports) Message-ID: <19971206152734.36326@jraynard.demon.co.uk> Date: Sat, 6 Dec 1997 15:27:36 +0000 From: James Raynard To: Satoshi Asami Cc: freebsd-ports@freebsd.org Subject: Re: ports/5214: New port rasmol References: <26252.881259778@time.cdrom.com> <199712041826.KAA03068@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81e In-Reply-To: <199712041826.KAA03068@silvia.HIP.Berkeley.EDU>; from Satoshi Asami on Thu, Dec 04, 1997 at 10:26:39AM -0800 Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Thu, Dec 04, 1997 at 10:26:39AM -0800, Satoshi Asami wrote: > * No, that'd be biochemistry and the inorganic chemists would scream at > * being lumped into that category. :-) > > What about "chembio" then? Or will physical biologists scream? :) "molecular"? -- In theory, theory is better than practice. In practice, it isn't. James Raynard, Edinburgh, Scotland. http://www.freebsd.org/~jraynard/ From owner-freebsd-ports Sat Dec 6 21:56:02 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id VAA17666 for ports-outgoing; Sat, 6 Dec 1997 21:56:02 -0800 (PST) (envelope-from owner-freebsd-ports) Received: from w2xo.pgh.pa.us (w2xo.pgh.pa.us [206.210.70.5]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id VAA17643; Sat, 6 Dec 1997 21:55:47 -0800 (PST) (envelope-from durham@w2xo.pgh.pa.us) Received: (from durham@localhost) by w2xo.pgh.pa.us (8.8.5/8.8.4) id AAA23456; Sun, 7 Dec 1997 00:56:12 -0500 (EST) Message-ID: X-Mailer: XFMail 1.1 [p0] on FreeBSD Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Sun, 07 Dec 1997 00:49:44 -0500 (EST) Organization: Dis- From: Jim Durham To: freebsd-ports@freebsd.org Subject: ssh port Cc: torstenb@freebsd.org Sender: owner-freebsd-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I just compiled the ssh port for 3.0-971022-SNAP. It aborted because of a missing tcpd.h include file. tcpd.h is part of tcpwrappers. Compiling tcpwrappers fixed the problem. Shouldn't this be a dependency? regards, Jim Durham Jim Durham