From owner-freebsd-ports Sun Aug 4 00:33:13 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA18866 for ports-outgoing; Sun, 4 Aug 1996 00:33:13 -0700 (PDT) Received: from seagull.rtd.com (root@seagull.rtd.com [198.102.68.2]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id AAA18861 for ; Sun, 4 Aug 1996 00:33:11 -0700 (PDT) Received: (from dgy@localhost) by seagull.rtd.com (8.7.5/8.7.3) id AAA07337 for freebsd-ports@freefall.cdrom.com; Sun, 4 Aug 1996 00:33:09 -0700 (MST) From: Don Yuniskis Message-Id: <199608040733.AAA07337@seagull.rtd.com> Subject: fudgit patch To: freebsd-ports@freefall.FreeBSD.org (FreeBSD ports) Date: Sun, 4 Aug 1996 00:33:08 -0700 (MST) X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Greetings! The following patch applies to Fudgit_2.41 in the 2.1R ports collection. It adds support for the set function none set method none commands, causes the default extension of ".ft" to be tried on all loaded fudgit files and adds support for C-style escape sequences in fudgit commands (which was *implied* in the fudgitrc file distributed in the sources but apparently never implemented). I've forwarded these to the author also for inclusion in any future release (?) --don ----------------8<----------------8<-------------------8<------------ diff -r --context work/Fudgit_2.41/src/command.c WORK.NEW/Fudgit_2.41/src/command.c *** work/Fudgit_2.41/src/command.c Mon Nov 7 16:23:31 1994 --- WORK.NEW/Fudgit_2.41/src/command.c Sat Aug 3 02:25:27 1996 *************** *** 244,249 **** --- 244,251 ---- "legendre series: n = 1,...N { Pn(X) }"}, {"lo!rentzian", do_stfunc, "set function lorentzian", "", "Lorentzian series: n = 3, 6...N { A[n-1]*((X*A[n])^2/((X^2-A[n-2]^2)^2+(X*A[n])^2) }"}, + {"n!one", do_stfunc, "set function none", "", + "none"}, {"p!olynomial", do_stfunc, "set function polynomial", "", "power series: n = 1,...N { A[n]*X^(n-1) }"}, {"u!ser", do_stfunc, "set function user", "definition", *************** *** 268,273 **** --- 270,277 ---- "least square linear regression"}, {"m!l_fit", do_stmeth, "set method ml_fit", "", "Marquardt-Levenberg iterative nonlinear fit"}, + {"n!one", do_stmeth, "set method none", "", + "none"}, {"s!vd_fit", do_stmeth, "set method svd_fit", "", "singular value decomposition linear fit"}, { 0, 0, 0, 0, 0 } diff -r --context work/Fudgit_2.41/src/fudgit.h WORK.NEW/Fudgit_2.41/src/fudgit.h *** work/Fudgit_2.41/src/fudgit.h Thu Sep 8 16:02:47 1994 --- WORK.NEW/Fudgit_2.41/src/fudgit.h Sat Aug 3 04:10:11 1996 *************** *** 97,103 **** * name. * Ideally, this exception is left for .fudgitrc. */ ! /* #define EXTENSION ".ft" */ /* The following are required when defining argument prototypes of * loaded routines. */ --- 97,103 ---- * name. * Ideally, this exception is left for .fudgitrc. */ ! #define EXTENSION ".ft" /* The following are required when defining argument prototypes of * loaded routines. */ diff -r --context work/Fudgit_2.41/src/setshow.c WORK.NEW/Fudgit_2.41/src/setshow.c *** work/Fudgit_2.41/src/setshow.c Mon Nov 7 08:57:49 1994 --- WORK.NEW/Fudgit_2.41/src/setshow.c Sat Aug 3 03:11:14 1996 *************** *** 67,73 **** int Ft_Funci; Meth Ft_Method[METHNUM] = { ! {"none", "none"}, {"ls_r!eg", "least square linear regression"}, {"lad!_reg", "least absolute deviation linear regression"}, {"ls_f!it", "least square linear fit"}, --- 67,73 ---- int Ft_Funci; Meth Ft_Method[METHNUM] = { ! {"n!one", "none"}, {"ls_r!eg", "least square linear regression"}, {"lad!_reg", "least absolute deviation linear regression"}, {"ls_f!it", "least square linear fit"}, *************** *** 76,82 **** }; Func Ft_Function[FUNCNUM] = { ! {"none", "none"}, {"str!aight", "straight line"}, {"po!lynomial", "polynomial"}, {"leg!endre", "Legendre polynomial"}, --- 76,82 ---- }; Func Ft_Function[FUNCNUM] = { ! {"n!one", "none"}, {"str!aight", "straight line"}, {"po!lynomial", "polynomial"}, {"leg!endre", "Legendre polynomial"}, diff -r --context work/Fudgit_2.41/src/vgetargp.c WORK.NEW/Fudgit_2.41/src/vgetargp.c *** work/Fudgit_2.41/src/vgetargp.c Fri Sep 2 23:02:47 1994 --- WORK.NEW/Fudgit_2.41/src/vgetargp.c Sat Aug 3 15:51:51 1996 *************** *** 75,93 **** /* go along the string */ while (*b != '\0' && argno < MAXTOKEN) { ! switch (*b) { #ifdef BACKSLASH ! case '\\': /* only recognize \$ in non fmodes */ ! if (leavequotes == ERRR) { ! leavequotes = ( Ft_almost(p[0], "pm!ode") || ! Ft_almost(p[0], "cm!ode") || ! Ft_almost(p[0], "le!t") ); ! } ! if (expansion && b[1] != '\n' && (!leavequotes || b[1] == '$')) { ! b++; ! } ! COPY(b); ! break; #endif case SQUOTE: /* take following as one string, + turn off exp */ if (leavequotes == 1 || indquotes || inpar) { --- 75,187 ---- /* go along the string */ while (*b != '\0' && argno < MAXTOKEN) { ! switch (*b) ! { #ifdef BACKSLASH ! /* add support for C-style escape sequences */ ! case '\\': ! { ! if (leavequotes == ERRR) { ! leavequotes = ( ! Ft_almost(p[0], "pm!ode") || ! Ft_almost(p[0], "cm!ode") || ! Ft_almost(p[0], "le!t") ); ! } ! ! /* only recognize escape sequences in non fmodes */ ! if (expansion && b[1] != '\n' && (!leavequotes || b[1] == '$')) { ! int dummy = -1; ! int * dptr = &dummy; ! b++; /* skip over '\\' */ ! ! switch (*b) ! { ! case '\0': ! break; ! case '\'': ! dummy = '\''; ! break; ! case '\"': ! dummy = '\"'; ! break; ! case '$': ! dummy = '$'; ! break; ! case '?': ! dummy = '\?'; ! break; ! case 'a': ! dummy = '\a'; ! break; ! case 'b': ! dummy = '\b'; ! break; ! case 'f': ! dummy = '\f'; ! break; ! case 'n': ! dummy = '\n'; ! break; ! case 'r': ! dummy = '\r'; ! break; ! case 't': ! dummy = '\t'; ! break; ! case 'x': ! if (!isxdigit(b[1])) ! break; ! b++; ! dummy = tolower(*b) - ! (isdigit(*b) ? '0' : ('a' - 10)); ! if (!isxdigit(b[1])) ! break; ! b++; ! dummy *= 16; ! dummy += tolower(*b) - ! (isdigit(*b) ? '0' : ('a' - 10)); ! break; ! case 'v': ! dummy = '\v'; ! break; ! case '0': ! case '1': ! case '2': ! case '3': ! case '4': ! case '5': ! case '6': ! case '7': ! dummy = *b - '0'; ! if ((b[1] < '0') || (b[1] > '7')) ! break; ! b++; ! dummy *= 8; ! dummy += *b - '0'; ! if ((b[1] < '0') || (b[1] > '7')) ! break; ! b++; ! dummy *= 8; ! dummy += *b - '0'; ! break; ! case '\\': ! dummy = '\\'; ! break; ! default: ! break; ! } ! if (dummy < 0) { ! dummy = '\\'; ! } else { ! b++; ! } ! COPY(dptr); ! break; ! } else { ! COPY(b); ! break; ! } ! } #endif case SQUOTE: /* take following as one string, + turn off exp */ if (leavequotes == 1 || indquotes || inpar) { From owner-freebsd-ports Sun Aug 4 01:42:55 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id BAA22283 for ports-outgoing; Sun, 4 Aug 1996 01:42:55 -0700 (PDT) Received: from seagull.rtd.com (root@seagull.rtd.com [198.102.68.2]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id BAA22274 for ; Sun, 4 Aug 1996 01:42:51 -0700 (PDT) Received: (from dgy@localhost) by seagull.rtd.com (8.7.5/8.7.3) id BAA10249 for freebsd-ports@freefall.cdrom.com; Sun, 4 Aug 1996 01:42:49 -0700 (MST) From: Don Yuniskis Message-Id: <199608040842.BAA10249@seagull.rtd.com> Subject: fudgit patch, part deux To: freebsd-ports@freefall.FreeBSD.org (FreeBSD ports) Date: Sun, 4 Aug 1996 01:42:48 -0700 (MST) X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Greetings! The following patch unfortunately was omitted from my previous fudgit patches. This corrects some minor typos in the on-line help. My apologies for leaving it out of the earlier submission... <:-) --don ---------------8<--------------8<-----------------8<-------------- diff -r --context work/Fudgit_2.41/docs/reference.tmpl WORK.NEW/Fudgit_2.41/docs/reference.tmpl *** work/Fudgit_2.41/docs/reference.tmpl Mon Nov 7 16:50:52 1994 --- WORK.NEW/Fudgit_2.41/docs/reference.tmpl Sun Aug 4 00:54:30 1996 *************** *** 988,994 **** let String = "new.file" let x = (String == "new.file") let y = ("file1" == "file2") ! let Bing = "\a\a\a" let Here = Cwd # Store the value of the current working directory let Input = Read() # Read from stdin let Test = FileName(ReadFile) - ".data" --- 988,994 ---- let String = "new.file" let x = (String == "new.file") let y = ("file1" == "file2") ! let Bing = "\verb+\a+\verb+\a+\verb+\a+" let Here = Cwd # Store the value of the current working directory let Input = Read() # Read from stdin let Test = FileName(ReadFile) - ".data" *************** *** 996,1002 **** let y = scan(Read(), "%lf") let File = "STRING_23.4" let number = scan("%*[_A-Z]%lf", File) ! let Message = "A tab \t and a newline\n" \end{verbatim} @ifhelp --- 996,1002 ---- let y = scan(Read(), "%lf") let File = "STRING_23.4" let number = scan("%*[_A-Z]%lf", File) ! let Message = "A tab \verb+\t+ and a newline\verb+\n+" \end{verbatim} @ifhelp *************** *** 1800,1806 **** /* You have full use of math and stdio libraries too!!! */ fprintf(stderr, ! "BTW, Did you know that %lf is the sqrt(pi)?\n", sqrt(M_PI)); half_n = n >>1; /* half of n */ for (i=0;i>1; /* half of n */ for (i=0;i; Sun, 4 Aug 1996 05:45:28 -0700 (PDT) Received: (from hugh@localhost) by road.toad.com (8.7.5/8.7.3) id FAA03982; Sun, 4 Aug 1996 05:45:13 -0700 (PDT) Date: Sun, 4 Aug 1996 05:45:13 -0700 (PDT) Message-Id: <199608041245.FAA03982@road.toad.com> From: Hugh Daniel To: root@crl.dec.com Cc: ports@FreeBSD.ORG Subject: FYI: Bogus FTP file on your host Reply-to: hugh@toad.com Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The file: ftp://crl.dec.com/pub/X11/contrib/applications/xli.1.16.tar.gz is truncated and does not uncompress correctly. It should be removed untill a valid copy of the file can be found installed. Note that the FreeBSD Ports collection lists this as the only site to get this file from, so untill this is fix no FreeBSD Ports user can get xli built. Thanks for your time and effort in keeping the net a free and fun community. ||ugh Daniel General Systems Consultat hugh@toad.com From owner-freebsd-ports Sun Aug 4 08:21:49 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id IAA09512 for ports-outgoing; Sun, 4 Aug 1996 08:21:49 -0700 (PDT) Received: from po1.glue.umd.edu (po1.glue.umd.edu [129.2.128.44]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id IAA09507 for ; Sun, 4 Aug 1996 08:21:46 -0700 (PDT) Received: from ginger.eng.umd.edu (ginger.eng.umd.edu [129.2.103.20]) by po1.glue.umd.edu (8.7.5/8.7.3) with ESMTP id LAA19930 for ; Sun, 4 Aug 1996 11:21:44 -0400 (EDT) Received: from localhost (chuckr@localhost) by ginger.eng.umd.edu (8.7.5/8.7.3) with SMTP id LAA09269 for ; Sun, 4 Aug 1996 11:21:42 -0400 (EDT) X-Authentication-Warning: ginger.eng.umd.edu: chuckr owned process doing -bs Date: Sun, 4 Aug 1996 11:21:40 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@ginger.eng.umd.edu To: FreeBSD Ports Subject: mail Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk I need to do something about getting my mail via pop, and I noticed that there's two pop ports in ports/mail, popclient and popper. Could I get a recommendation on this, I don't want to have to become a mail expert to get my mail from the university to my home machine. Thanks. ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Sun Aug 4 08:57:43 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id IAA11221 for ports-outgoing; Sun, 4 Aug 1996 08:57:43 -0700 (PDT) Received: from bdd.net (bdd.net [207.61.119.1]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id IAA11216 for ; Sun, 4 Aug 1996 08:57:37 -0700 (PDT) Received: from localhost (james@localhost) by bdd.net (8.7.5/8.7.3) with SMTP id LAA08934; Sun, 4 Aug 1996 11:57:29 -0400 (EDT) Date: Sun, 4 Aug 1996 11:57:29 -0400 (EDT) From: James FitzGibbon To: Chuck Robey cc: FreeBSD Ports Subject: Re: mail In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sun, 4 Aug 1996, Chuck Robey wrote: > I need to do something about getting my mail via pop, and I noticed that > there's two pop ports in ports/mail, popclient and popper. Could I get a > recommendation on this, I don't want to have to become a mail expert to > get my mail from the university to my home machine. Use popclient. 'popper' is the qualcomm pop3 daemon. -- j. ---------------------------------------------------------------------------- | James FitzGibbon james@nexis.net | | Integrator, The Nexis Group Voice/Fax : 416 410-0100 | ---------------------------------------------------------------------------- From owner-freebsd-ports Sun Aug 4 09:04:56 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA11582 for ports-outgoing; Sun, 4 Aug 1996 09:04:56 -0700 (PDT) Received: from grumble.grondar.za (root@grumble.grondar.za [196.7.18.130]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id JAA11577 for ; Sun, 4 Aug 1996 09:04:50 -0700 (PDT) Received: from grumble.grondar.za (mark@localhost.grondar.za [127.0.0.1]) by grumble.grondar.za (8.7.5/8.7.3) with ESMTP id SAA02605; Sun, 4 Aug 1996 18:04:28 +0200 (SAT) Message-Id: <199608041604.SAA02605@grumble.grondar.za> To: Chuck Robey cc: FreeBSD Ports Subject: Re: mail Date: Sun, 04 Aug 1996 18:04:24 +0200 From: Mark Murray Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Chuck Robey wrote: > I need to do something about getting my mail via pop, and I noticed that > there's two pop ports in ports/mail, popclient and popper. Could I get a > recommendation on this, I don't want to have to become a mail expert to > get my mail from the university to my home machine. We use both at work. popper is the program (actually its a daemon) that is run on the machine that has your mailbox. It is lauched by inetd when a tcp connection on port 110 is made, and serves mail from youyr mailbox to you. It has authentication and other necessary features. This should run on the work machine. popclient is the "other half". It connects to a popper (or other pop daemon) and fetches your mail, which it then delivers to "this" machine using /bin/mail. This should run on your home machine. You also need a mechanism to send mail. I recommend you use sendmail in a batching mode, and force a queue delivery when your connection is live. M -- Mark Murray 46 Harvey Rd, Claremont, Cape Town 7700, South Africa +27 21 61-3768 GMT+0200 Finger mark@grondar.za for PGP key From owner-freebsd-ports Sun Aug 4 09:06:26 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA11629 for ports-outgoing; Sun, 4 Aug 1996 09:06:26 -0700 (PDT) Received: from Kryten.nina.com (dyn051-gnv.51.fdt.net [205.229.51.52]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id JAA11612 for ; Sun, 4 Aug 1996 09:06:16 -0700 (PDT) Received: from localhost (frankd@localhost) by Kryten.nina.com (8.7.5/8.6.12) with SMTP id MAA14955; Sun, 4 Aug 1996 12:02:45 -0400 (EDT) X-Authentication-Warning: Kryten.nina.com: frankd owned process doing -bs Date: Sun, 4 Aug 1996 12:02:44 -0400 (EDT) From: Frank Seltzer X-Sender: frankd@Kryten.nina.com To: Chuck Robey cc: FreeBSD Ports Subject: Re: mail In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sun, 4 Aug 1996, Chuck Robey wrote: > I need to do something about getting my mail via pop, and I noticed that > there's two pop ports in ports/mail, popclient and popper. Could I get a > recommendation on this, I don't want to have to become a mail expert to > get my mail from the university to my home machine. > I use popclient here with no problems. The command line looks something like this: popclient It will prompt you for your password, query the mail server and drop all your mail in your system mail folder. You can also run it from cron but you must use -p which will show up in a ps listing. You might not want to do this for security reasons. I do it on my home machine so I don't have to worry about someone seeing my password. Hope this helps. > Thanks. > > ----------------------------+----------------------------------------------- > Chuck Robey | Interests include any kind of voice or data > chuckr@eng.umd.edu | communications topic, C programming, and Unix. > 9120 Edmonston Ct #302 | > Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD > (301) 220-2114 | version 2.2 current -- and great FUN! > ----------------------------+----------------------------------------------- > Frank -- Only in America can a homeless veteran sleep in a cardboard box while a draft dodger sleeps in the White House. From owner-freebsd-ports Sun Aug 4 09:49:56 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA13659 for ports-outgoing; Sun, 4 Aug 1996 09:49:56 -0700 (PDT) Received: from po1.glue.umd.edu (po1.glue.umd.edu [129.2.128.44]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id JAA13654 for ; Sun, 4 Aug 1996 09:49:54 -0700 (PDT) Received: from ginger.eng.umd.edu (ginger.eng.umd.edu [129.2.103.20]) by po1.glue.umd.edu (8.7.5/8.7.3) with ESMTP id MAA20428; Sun, 4 Aug 1996 12:49:49 -0400 (EDT) Received: from localhost (chuckr@localhost) by ginger.eng.umd.edu (8.7.5/8.7.3) with SMTP id MAA09581; Sun, 4 Aug 1996 12:49:48 -0400 (EDT) X-Authentication-Warning: ginger.eng.umd.edu: chuckr owned process doing -bs Date: Sun, 4 Aug 1996 12:49:48 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@ginger.eng.umd.edu To: hugh@toad.com cc: root@crl.dec.com, ports@FreeBSD.ORG Subject: Re: FYI: Bogus FTP file on your host In-Reply-To: <199608041245.FAA03982@road.toad.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sun, 4 Aug 1996, Hugh Daniel wrote: > The file: > > ftp://crl.dec.com/pub/X11/contrib/applications/xli.1.16.tar.gz > > is truncated and does not uncompress correctly. It should be removed > untill a valid copy of the file can be found installed. > Note that the FreeBSD Ports collection lists this as the only site > to get this file from, so untill this is fix no FreeBSD Ports user can > get xli built. > Thanks for your time and effort in keeping the net a free and fun > community. Got it, I added near everything that archie could find (and removed the bad one). Just committed, thanks, Hugh! > > ||ugh Daniel > General Systems Consultat > hugh@toad.com > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Sun Aug 4 13:44:02 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA22719 for ports-outgoing; Sun, 4 Aug 1996 13:44:02 -0700 (PDT) Received: from ime.net (ime.net [204.97.248.4]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id NAA22708 for ; Sun, 4 Aug 1996 13:43:55 -0700 (PDT) Received: from kimiko.tcguy.net (buxton-2.ime.net [206.231.148.131]) by ime.net (8.7.4/8.6.12) with SMTP id QAA25097; Sun, 4 Aug 1996 16:43:46 -0400 (EDT) Message-ID: <32050B8C.309E@ime.net> Date: Sun, 04 Aug 1996 16:43:57 -0400 From: Gary Chrysler Reply-To: tcg@ime.net Organization: The Computer Guy X-Mailer: Mozilla 3.0b6 (Win95; I) MIME-Version: 1.0 To: Frank Seltzer CC: Chuck Robey , FreeBSD Ports Subject: Re: mail References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Frank Seltzer wrote: > > On Sun, 4 Aug 1996, Chuck Robey wrote: > > > I need to do something about getting my mail via pop, and I noticed that > > there's two pop ports in ports/mail, popclient and popper. Could I get a > > recommendation on this, I don't want to have to become a mail expert to > > get my mail from the university to my home machine. > > > > I use popclient here with no problems. The command line looks something > like this: > > popclient > > It will prompt you for your password, query the mail server and drop all > your mail in your system mail folder. You can also run it from cron but > you must use -p which will show up in a ps listing. You might > not want to do this for security reasons. I do it on my home machine so I > don't have to worry about someone seeing my password. Hope this helps. > How does outgoing mail get addressed, I tried this (not very hard) and my outgoing mail gave my address from my internal net, I need it to match my account with my ISP, As if I had sent it from my ISP. -Enjoy Gary ~~~~~~~~~~~~~~~~ Improve America's Knowledge... Share yours The Borg... Where minds meet (207) 929-3848 From owner-freebsd-ports Sun Aug 4 13:51:35 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA23072 for ports-outgoing; Sun, 4 Aug 1996 13:51:35 -0700 (PDT) Received: from Kryten.nina.com (dyn051-gnv.51.fdt.net [205.229.51.52]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id NAA23053 for ; Sun, 4 Aug 1996 13:51:21 -0700 (PDT) Received: from localhost (frankd@localhost) by Kryten.nina.com (8.7.5/8.6.12) with SMTP id QAA17753; Sun, 4 Aug 1996 16:46:54 -0400 (EDT) X-Authentication-Warning: Kryten.nina.com: frankd owned process doing -bs Date: Sun, 4 Aug 1996 16:46:54 -0400 (EDT) From: Frank Seltzer X-Sender: frankd@Kryten.nina.com Reply-To: Frank Seltzer To: Gary Chrysler cc: Chuck Robey , FreeBSD Ports Subject: Re: mail In-Reply-To: <32050B8C.309E@ime.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sun, 4 Aug 1996, Gary Chrysler wrote: > How does outgoing mail get addressed, I tried this (not very hard) > and my outgoing mail gave my address from my internal net, I need > it to match my account with my ISP, As if I had sent it from my ISP. I use pine as my mail program and one of the options in the config section is user-domain. I have this set to my ISPs domain. I don't know how you would set it for your mailer if it is different. > -Enjoy > Gary > ~~~~~~~~~~~~~~~~ > Improve America's Knowledge... Share yours > The Borg... Where minds meet > (207) 929-3848 > Frank -- Only in America can a homeless veteran sleep in a cardboard box while a draft dodger sleeps in the White House. From owner-freebsd-ports Sun Aug 4 13:59:13 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA23389 for ports-outgoing; Sun, 4 Aug 1996 13:59:13 -0700 (PDT) Received: from grumble.grondar.za (root@grumble.grondar.za [196.7.18.130]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id NAA23380 for ; Sun, 4 Aug 1996 13:58:58 -0700 (PDT) Received: from grumble.grondar.za (mark@localhost.grondar.za [127.0.0.1]) by grumble.grondar.za (8.7.5/8.7.3) with ESMTP id WAA14874; Sun, 4 Aug 1996 22:55:57 +0200 (SAT) Message-Id: <199608042055.WAA14874@grumble.grondar.za> To: tcg@ime.net cc: Frank Seltzer , Chuck Robey , FreeBSD Ports Subject: Re: mail Date: Sun, 04 Aug 1996 22:55:56 +0200 From: Mark Murray Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Gary Chrysler wrote: > > It will prompt you for your password, query the mail server and drop all > > your mail in your system mail folder. You can also run it from cron but > > you must use -p which will show up in a ps listing. You might > > not want to do this for security reasons. I do it on my home machine so I > > don't have to worry about someone seeing my password. Hope this helps. > > > > How does outgoing mail get addressed, I tried this (not very hard) > and my outgoing mail gave my address from my internal net, I need > it to match my account with my ISP, As if I had sent it from my ISP. The easiest way is to cheat with your mailer (PINE/ELM/MH/Whatever), and just set your from address there. Harder work would be to convice sendmail to do it for you. Look at the M4 macros in its source directort for some clues. M -- Mark Murray 46 Harvey Rd, Claremont, Cape Town 7700, South Africa +27 21 61-3768 GMT+0200 Finger mark@grondar.za for PGP key From owner-freebsd-ports Sun Aug 4 14:28:47 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA24850 for ports-outgoing; Sun, 4 Aug 1996 14:28:47 -0700 (PDT) Received: from ime.net (ime.net [204.97.248.4]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id OAA24839 for ; Sun, 4 Aug 1996 14:28:43 -0700 (PDT) Received: from kimiko.tcguy.net (buxton-4.ime.net [206.231.148.133]) by ime.net (8.7.4/8.6.12) with SMTP id RAA27441; Sun, 4 Aug 1996 17:28:37 -0400 (EDT) Message-ID: <32051612.59CC@ime.net> Date: Sun, 04 Aug 1996 17:28:50 -0400 From: Gary Chrysler Reply-To: tcg@ime.net Organization: The Computer Guy X-Mailer: Mozilla 3.0b6 (Win95; I) MIME-Version: 1.0 To: Frank Seltzer CC: Chuck Robey , FreeBSD Ports Subject: Re: mail References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Frank Seltzer wrote: > > On Sun, 4 Aug 1996, Gary Chrysler wrote: > > > How does outgoing mail get addressed, I tried this (not very hard) > > and my outgoing mail gave my address from my internal net, I need > > it to match my account with my ISP, As if I had sent it from my ISP. > > I use pine as my mail program and one of the options in the config section > is user-domain. I have this set to my ISPs domain. I don't know how you > would set it for your mailer if it is different. And what happens to mail thats belongs internal?? -Enjoy Gary ~~~~~~~~~~~~~~~~ Improve America's Knowledge... Share yours The Borg... Where minds meet (207) 929-3848 From owner-freebsd-ports Sun Aug 4 14:32:06 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA25156 for ports-outgoing; Sun, 4 Aug 1996 14:32:06 -0700 (PDT) Received: from ime.net (ime.net [204.97.248.4]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id OAA25126 for ; Sun, 4 Aug 1996 14:32:01 -0700 (PDT) Received: from kimiko.tcguy.net (buxton-4.ime.net [206.231.148.133]) by ime.net (8.7.4/8.6.12) with SMTP id RAA27628; Sun, 4 Aug 1996 17:31:29 -0400 (EDT) Message-ID: <320516BD.283F@ime.net> Date: Sun, 04 Aug 1996 17:31:41 -0400 From: Gary Chrysler Reply-To: tcg@ime.net Organization: The Computer Guy X-Mailer: Mozilla 3.0b6 (Win95; I) MIME-Version: 1.0 To: Mark Murray CC: Frank Seltzer , Chuck Robey , FreeBSD Ports Subject: Re: mail References: <199608042055.WAA14874@grumble.grondar.za> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Mark Murray wrote: > > Gary Chrysler wrote: > > > It will prompt you for your password, query the mail server and drop all > > > your mail in your system mail folder. You can also run it from cron but > > > you must use -p which will show up in a ps listing. You might > > > not want to do this for security reasons. I do it on my home machine so I > > > don't have to worry about someone seeing my password. Hope this helps. > > > > > > > How does outgoing mail get addressed, I tried this (not very hard) > > and my outgoing mail gave my address from my internal net, I need > > it to match my account with my ISP, As if I had sent it from my ISP. > > The easiest way is to cheat with your mailer (PINE/ELM/MH/Whatever), > and just set your from address there. > > Harder work would be to convice sendmail to do it for you. Look at > the M4 macros in its source directort for some clues. I belive this will be my method, As stated in another I need to be able to keep internal mail internal, external mail external. I just havn't looked into it yet.. -Enjoy Gary ~~~~~~~~~~~~~~~~ Improve America's Knowledge... Share yours The Borg... Where minds meet (207) 929-3848 From owner-freebsd-ports Sun Aug 4 15:02:31 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id PAA26879 for ports-outgoing; Sun, 4 Aug 1996 15:02:31 -0700 (PDT) Received: (from jmb@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id PAA26873; Sun, 4 Aug 1996 15:02:29 -0700 (PDT) From: "Jonathan M. Bresler" Message-Id: <199608042202.PAA26873@freefall.freebsd.org> Subject: Re: mail To: mark@grondar.za (Mark Murray) Date: Sun, 4 Aug 1996 15:02:28 -0700 (PDT) Cc: tcg@ime.net, frankd@yoda.fdt.net, chuckr@Glue.umd.edu, FreeBSD-Ports@FreeBSD.ORG In-Reply-To: <199608042055.WAA14874@grumble.grondar.za> from "Mark Murray" at Aug 4, 96 10:55:56 pm X-Mailer: ELM [version 2.4 PL24] Content-Type: text Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Mark Murray wrote: > > Gary Chrysler wrote: > > > It will prompt you for your password, query the mail server and drop all > > > your mail in your system mail folder. You can also run it from cron but > > > you must use -p which will show up in a ps listing. You might > > > not want to do this for security reasons. I do it on my home machine so I > > > don't have to worry about someone seeing my password. Hope this helps. > > > > > > > How does outgoing mail get addressed, I tried this (not very hard) > > and my outgoing mail gave my address from my internal net, I need > > it to match my account with my ISP, As if I had sent it from my ISP. > > The easiest way is to cheat with your mailer (PINE/ELM/MH/Whatever), > and just set your from address there. > > Harder work would be to convice sendmail to do it for you. Look at > the M4 macros in its source directort for some clues. the "harder way" (??) is to set "DMdomain.my.mail.comes.from" in /etc/sendmail.cf on each machine that sends mail its the masquerade option that i s described in the bat book (oreilly senmdail) p. 747 jmb -- Jonathan M. Bresler FreeBSD Postmaster jmb@FreeBSD.ORG FreeBSD--4.4BSD Unix for PC clones, source included. http://www.freebsd.org/ PGP 2.6.2 Fingerprint: 31 57 41 56 06 C1 40 13 C5 1C E3 E5 DC 62 0E FB From owner-freebsd-ports Sun Aug 4 15:10:36 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id PAA27235 for ports-outgoing; Sun, 4 Aug 1996 15:10:36 -0700 (PDT) Received: from Kryten.nina.com (dyn051-gnv.51.fdt.net [205.229.51.52]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id PAA27220 for ; Sun, 4 Aug 1996 15:10:17 -0700 (PDT) Received: from localhost (frankd@localhost) by Kryten.nina.com (8.7.5/8.6.12) with SMTP id SAA18514; Sun, 4 Aug 1996 18:06:17 -0400 (EDT) X-Authentication-Warning: Kryten.nina.com: frankd owned process doing -bs Date: Sun, 4 Aug 1996 18:06:16 -0400 (EDT) From: Frank Seltzer X-Sender: frankd@Kryten.nina.com To: Gary Chrysler cc: Chuck Robey , FreeBSD Ports Subject: Re: mail In-Reply-To: <32051612.59CC@ime.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sun, 4 Aug 1996, Gary Chrysler wrote: > And what happens to mail thats belongs internal?? It stays internal. > -Enjoy > Gary > ~~~~~~~~~~~~~~~~ > Improve America's Knowledge... Share yours > The Borg... Where minds meet > (207) 929-3848 > Frank -- Only in America can a homeless veteran sleep in a cardboard box while a draft dodger sleeps in the White House. From owner-freebsd-ports Sun Aug 4 16:04:53 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id QAA00885 for ports-outgoing; Sun, 4 Aug 1996 16:04:53 -0700 (PDT) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id QAA00877 for ; Sun, 4 Aug 1996 16:04:50 -0700 (PDT) Received: (from obrien@localhost) by relay.nuxi.com (8.7.5/8.6.12) id QAA24059 for freebsd-ports@freebsd.org; Sun, 4 Aug 1996 16:05:03 -0700 (PDT) From: "David E. O'Brien" Message-Id: <199608042305.QAA24059@relay.nuxi.com> Subject: Re: lsof port survey To: freebsd-ports@freebsd.org (FreeBSD ports list) Date: Sun, 4 Aug 1996 16:05:02 -0700 (PDT) In-Reply-To: <199608032328.BAA16800@keltia.freenix.fr> from Ollivier Robert at "Aug 4, 96 01:28:25 am" X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > According to David E. O'Brien: > > all the open files, or such that a user can only see their own open files > > (for privacy and security purposes). > > > > I'm leaning on using the security option as a default. Opinions? > > Security option of course. I've gotten two for secure and zero for not, so I will leave it the way I had it. I just wanted to make sure I wouldn't get a lot of mail say "you should have left it with the default setting of unsecure -- AGGG!!!" :-) -- David (obrien@cs.ucdavis.edu) From owner-freebsd-ports Sun Aug 4 16:13:49 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id QAA01284 for ports-outgoing; Sun, 4 Aug 1996 16:13:49 -0700 (PDT) Received: from vader.pmr.com (vader.pmr.com [206.224.65.138]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id QAA01275 for ; Sun, 4 Aug 1996 16:13:47 -0700 (PDT) Received: (from bob@localhost) by vader.pmr.com (8.7.5/8.7.3) id SAA02267 for freebsd-ports@freefall.cdrom.com; Sun, 4 Aug 1996 18:13:43 -0500 (CDT) From: Bob Willcox Message-Id: <199608042313.SAA02267@vader.pmr.com> Subject: xmcd unable to write file To: freebsd-ports@freefall.FreeBSD.org (FreeBSD Ports) Date: Sun, 4 Aug 1996 18:13:43 -0500 (CDT) X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk I am having a problem with xmcd not being able to write to the cddb database. The Track Program Editor fails with the message: File not saved: Cannot open file for writing I have verified the I have write permission in the directory that it is attempting to save to (I have even tried several different directories) and have tried it with and without a pre-existing file. This is xmcd-2.0 from packages-curent on a -current system. Is anyone else seeing this? Any suggestions or help is greatly appreciated. Thanks, -- Bob Willcox politics, n: bob@luke.pmr.com A strife of interests masquerading as a contest of Austin, TX principles. The conduct of public affairs for private advantage. -- Ambrose Bierce From owner-freebsd-ports Sun Aug 4 19:11:44 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id TAA10727 for ports-outgoing; Sun, 4 Aug 1996 19:11:44 -0700 (PDT) Received: from paris.CS.Berkeley.EDU (paris.CS.Berkeley.EDU [128.32.34.47]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id TAA10721 for ; Sun, 4 Aug 1996 19:11:40 -0700 (PDT) Received: from paris.CS.Berkeley.EDU (localhost.Berkeley.EDU [127.0.0.1]) by paris.CS.Berkeley.EDU (8.6.11/8.6.9) with ESMTP id TAA27414; Sun, 4 Aug 1996 19:11:33 -0700 From: Josh MacDonald Message-Id: <199608050211.TAA27414@paris.CS.Berkeley.EDU> To: Chuck Robey cc: ports@freebsd.org Subject: Re: gimp v0.54 In-reply-to: Your message of "Thu, 01 Aug 1996 17:34:09 EDT." Date: Sun, 04 Aug 1996 19:11:32 -0700 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > On Thu, 1 Aug 1996, Eric L. Hernes wrote: > > > > > Has anyone else looked at this port? It worked > > fine for me, if no one has any comments, I'll > > commit it. > > > > There's also a gimp developers release gimp960725.tgz, > > or similar. This version doesn't require motif, but > > by the trail of gimpXXXXXX.tgz tarballs on the ftp > > site, it looks high-maintenence. Should this be > > a separate port, along the lines of netscape[2|3]? > > (or just ignored 'til its mainstream). > > Michael Searle was telling me that gimp compiled under lesstif. He sent > me a lesstif port, I'm working on it. Give me a day or two. > I would not put any work into version 0.54 of the gimp. The recent developers versions compile fine. I've been helping Pete and Spencer with gtk a little and will make sure it continues to compile under FreeBSD. -josh From owner-freebsd-ports Sun Aug 4 20:29:27 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id UAA14422 for ports-outgoing; Sun, 4 Aug 1996 20:29:27 -0700 (PDT) Received: from pahtoh.cwu.edu (root@pahtoh.cwu.edu [198.104.65.27]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id UAA14417 for ; Sun, 4 Aug 1996 20:29:23 -0700 (PDT) Received: from opus.cts.cwu.edu (root@opus.cts.cwu.edu [198.104.65.210]) by pahtoh.cwu.edu (8.6.13/8.6.9) with ESMTP id UAA05550 for ; Sun, 4 Aug 1996 20:29:22 -0700 Received: from localhost (skynyrd@localhost) by opus.cts.cwu.edu (8.6.13/8.6.12) with SMTP id UAA13047 for ; Sun, 4 Aug 1996 20:29:21 -0700 Date: Sun, 4 Aug 1996 20:29:21 -0700 (PDT) From: Chris Timmons To: freebsd-ports@freebsd.org Subject: make package dependencies thrash Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I've got my first attempt at a port working correctly with the exception of the 'make package' and have tried to resolve this by searching the mail archives and reading the handbook. If it is there I am not seeing it :) (yes, I know we have an earlier port of BLT; I am doing this purely to punish myself :) I have the following dependencies, which are correctly searched for and found when the port is doing 'make install': LIB_DEPENDS= tcl74\\.1\\.:${PORTSDIR}/lang/tcl \ tk40\\.1\\.:${PORTSDIR}/x11/tk Indeed, on the build machine tcl-7.4.2 and tk-4.0.2 are registered and appear under in /var/db/pkg. When I go to make package, something is not happy during 'registering depends' and records the error message into the resulting +CONTENTS: gremlin:/usr/local/system/utils/net/blt/port#> make package Checksums OK. ===> Building package for blt-1.9.0 cd: can't cd to /usr/ports/lang/tcl Creating package blt-1.9.0.tgz Registering depends: *** Error code 2 Stop.. Creating gzip'd tar ball in '/usr/local/system/utils/net/blt/port/blt-1.9.0.tgz' gremlin:/usr/local/system/utils/net/blt/port/temp#> head +CONTENTS @name blt-1.9.0 @cwd /usr/local @pkgdep *** @pkgdep Error @pkgdep code @pkgdep 2 @pkgdep Stop. So, I am wondering why the tcl/tk dependencies are not a problem during build, only during make package? I guess I could put the actual tcl and tk build directories out under /usr/ports but should I have to do that? -Chris From owner-freebsd-ports Sun Aug 4 21:21:29 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id VAA17254 for ports-outgoing; Sun, 4 Aug 1996 21:21:29 -0700 (PDT) Received: from bdd.net (bdd.net [207.61.119.1]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id VAA17247 for ; Sun, 4 Aug 1996 21:21:26 -0700 (PDT) Received: from localhost (james@localhost) by bdd.net (8.7.5/8.7.3) with SMTP id AAA13855 for ; Mon, 5 Aug 1996 00:21:14 -0400 (EDT) Date: Mon, 5 Aug 1996 00:21:14 -0400 (EDT) From: James FitzGibbon To: ports@freebsd.org Subject: Opinions of port vs package please Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I have a question with regards to building a PLIST for a port which is interactive. Let's say the port allows you to choose which binaries it will build. When making the package, I plan to build all the binaries rather than second guess the people using it. So, I put all the installed binaries into the PLIST. Now, if the program is installed as a port rather than a package, the list of installed files might be incorrect, depending on which binaries that person chose to install. What's the best course of action here ? Let it be, and deal with the possible "File doesn't really exist" messages during a pkg_delete ? Or use an interactive de-install script in the uninstall ? -- j. ---------------------------------------------------------------------------- | James FitzGibbon james@nexis.net | | Integrator, The Nexis Group Voice/Fax : 416 410-0100 | ---------------------------------------------------------------------------- From owner-freebsd-ports Sun Aug 4 21:42:54 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id VAA18272 for ports-outgoing; Sun, 4 Aug 1996 21:42:54 -0700 (PDT) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id VAA18266 for ; Sun, 4 Aug 1996 21:42:52 -0700 (PDT) Received: from time.cdrom.com (localhost [127.0.0.1]) by time.cdrom.com (8.7.5/8.6.9) with ESMTP id VAA07467; Sun, 4 Aug 1996 21:41:44 -0700 (PDT) To: James FitzGibbon cc: ports@freebsd.org Subject: Re: Opinions of port vs package please In-reply-to: Your message of "Mon, 05 Aug 1996 00:21:14 EDT." Date: Sun, 04 Aug 1996 21:41:44 -0700 Message-ID: <7465.839220104@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > Let's say the port allows you to choose which binaries it will build. > When making the package, I plan to build all the binaries rather than > second guess the people using it. So, I put all the installed binaries > into the PLIST. Now, if the program is installed as a port rather than a > package, the list of installed files might be incorrect, depending on > which binaries that person chose to install. There's one easy solution, though you probably won't like it. :-) Override the fake-pkg target in your ports Makefile and have it synthesize a PLIST rather than using the pkg/PLIST file. You could even make it an easier task to use just _part_ of the pkg/PLIST file (for all the invariant pieces) by surrounding those parts with `@comment ' lines. Then you just append entries for each binary you've selected to install and whap the results into ${PKG_DBDIR}/${PKGNAME}/PLIST directly. Voila. Problem solved. Jordan From owner-freebsd-ports Sun Aug 4 21:46:36 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id VAA18368 for ports-outgoing; Sun, 4 Aug 1996 21:46:36 -0700 (PDT) Received: from bdd.net (bdd.net [207.61.119.1]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id VAA18363 for ; Sun, 4 Aug 1996 21:46:27 -0700 (PDT) Received: from localhost (james@localhost) by bdd.net (8.7.5/8.7.3) with SMTP id AAA26212; Mon, 5 Aug 1996 00:46:19 -0400 (EDT) Date: Mon, 5 Aug 1996 00:46:19 -0400 (EDT) From: James FitzGibbon To: "Jordan K. Hubbard" cc: ports@freebsd.org Subject: Re: Opinions of port vs package please In-Reply-To: <7465.839220104@time.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Sun, 4 Aug 1996, Jordan K. Hubbard wrote: > There's one easy solution, though you probably won't like it. :-) Hmm. Evidently some usage of the work 'easy' that I wasn't previously aware of. 8-) > > Override the fake-pkg target in your ports Makefile and have it > synthesize a PLIST rather than using the pkg/PLIST file. You could > even make it an easier task to use just _part_ of the pkg/PLIST file > (for all the invariant pieces) by surrounding those parts with > `@comment ' lines. Then you just append entries for each > binary you've selected to install and whap the results into > ${PKG_DBDIR}/${PKGNAME}/PLIST directly. Voila. Problem solved. Thanks. I'll give it a shot. -- j. ---------------------------------------------------------------------------- | James FitzGibbon james@nexis.net | | Integrator, The Nexis Group Voice/Fax : 416 410-0100 | ---------------------------------------------------------------------------- From owner-freebsd-ports Mon Aug 5 03:02:40 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id DAA05969 for ports-outgoing; Mon, 5 Aug 1996 03:02:40 -0700 (PDT) Received: from haldjas.folklore.ee (Haldjas.folklore.ee [193.40.6.121]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id DAA05957 for ; Mon, 5 Aug 1996 03:02:32 -0700 (PDT) Received: (from narvi@localhost) by haldjas.folklore.ee (8.6.12/8.6.12) id NAA11587; Mon, 5 Aug 1996 13:07:36 +0300 Date: Mon, 5 Aug 1996 13:07:35 +0300 (EET DST) From: Narvi To: Chris Timmons cc: freebsd-ports@freebsd.org Subject: Re: make package dependencies thrash In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Someone updating blt! COOL! BTW, blt-2.1 is out... On Sun, 4 Aug 1996, Chris Timmons wrote: > > I've got my first attempt at a port working correctly with the exception > of the 'make package' and have tried to resolve this by searching the mail > archives and reading the handbook. If it is there I am not seeing it :) > (yes, I know we have an earlier port of BLT; I am doing this purely to > punish myself :) > > I have the following dependencies, which are correctly searched for and > found when the port is doing 'make install': > > > LIB_DEPENDS= tcl74\\.1\\.:${PORTSDIR}/lang/tcl \ > tk40\\.1\\.:${PORTSDIR}/x11/tk > So it depends on tcl7.4 and tk4.0? Your dependency lines are incorrect - make them to be: LIB_DEPENDS= tcl74\\.1\\.:${PORTSDIR}/lang/tcl74 \ tk40.\\1.\\.:${PORTSDIR}/x11/tk4 And you have got to have these directories with the makefiles... It should help. Sander > > Indeed, on the build machine tcl-7.4.2 and tk-4.0.2 are registered and > appear under in /var/db/pkg. > > When I go to make package, something is not happy during 'registering > depends' and records the error message into the resulting +CONTENTS: > > gremlin:/usr/local/system/utils/net/blt/port#> make package > > Checksums OK. > ===> Building package for blt-1.9.0 > cd: can't cd to /usr/ports/lang/tcl > Creating package blt-1.9.0.tgz > Registering depends: *** Error code 2 Stop.. > Creating gzip'd tar ball in > '/usr/local/system/utils/net/blt/port/blt-1.9.0.tgz' > > gremlin:/usr/local/system/utils/net/blt/port/temp#> head +CONTENTS > @name blt-1.9.0 > @cwd /usr/local > @pkgdep *** > @pkgdep Error > @pkgdep code > @pkgdep 2 > @pkgdep Stop. > > > So, I am wondering why the tcl/tk dependencies are not a problem during > build, only during make package? I guess I could put the actual tcl and > tk build directories out under /usr/ports but should I have to do that? > > -Chris > > From owner-freebsd-ports Mon Aug 5 04:40:08 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id EAA12182 for ports-outgoing; Mon, 5 Aug 1996 04:40:08 -0700 (PDT) Received: from po1.glue.umd.edu (po1.glue.umd.edu [129.2.128.44]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id EAA12177 for ; Mon, 5 Aug 1996 04:40:06 -0700 (PDT) Received: from maryann.eng.umd.edu (maryann.eng.umd.edu [129.2.103.22]) by po1.glue.umd.edu (8.7.5/8.7.3) with ESMTP id HAA26725; Mon, 5 Aug 1996 07:40:00 -0400 (EDT) Received: from localhost (chuckr@localhost) by maryann.eng.umd.edu (8.7.5/8.7.3) with SMTP id HAA20260; Mon, 5 Aug 1996 07:39:59 -0400 (EDT) X-Authentication-Warning: maryann.eng.umd.edu: chuckr owned process doing -bs Date: Mon, 5 Aug 1996 07:39:59 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@maryann.eng.umd.edu To: Josh MacDonald cc: ports@freebsd.org Subject: Re: gimp v0.54 In-Reply-To: <199608050211.TAA27414@paris.CS.Berkeley.EDU> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Sun, 4 Aug 1996, Josh MacDonald wrote: > > On Thu, 1 Aug 1996, Eric L. Hernes wrote: > > > > > > > > Has anyone else looked at this port? It worked > > > fine for me, if no one has any comments, I'll > > > commit it. > > > > > > There's also a gimp developers release gimp960725.tgz, > > > or similar. This version doesn't require motif, but > > > by the trail of gimpXXXXXX.tgz tarballs on the ftp > > > site, it looks high-maintenence. Should this be > > > a separate port, along the lines of netscape[2|3]? > > > (or just ignored 'til its mainstream). > > > > Michael Searle was telling me that gimp compiled under lesstif. He sent > > me a lesstif port, I'm working on it. Give me a day or two. > > > > I would not put any work into version 0.54 of the gimp. The > recent developers versions compile fine. I've been helping Pete and > Spencer with gtk a little and will make sure it continues to > compile under FreeBSD. I won't. Lesstif disappeared from ftp.hungry.com completely late last week. I have no idea why, I have no idea where else to look for it. ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Mon Aug 5 05:35:51 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id FAA15377 for ports-outgoing; Mon, 5 Aug 1996 05:35:51 -0700 (PDT) Received: from ime.net (ime.net [204.97.248.4]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id FAA15372 for ; Mon, 5 Aug 1996 05:35:48 -0700 (PDT) Received: from kimiko.tcguy.net (buxton-19.ime.net [206.231.148.148]) by ime.net (8.7.4/8.6.12) with SMTP id IAA10431; Mon, 5 Aug 1996 08:35:21 -0400 (EDT) Message-ID: <3205EAA4.510E@ime.net> Date: Mon, 05 Aug 1996 08:35:48 -0400 From: Gary Chrysler Reply-To: tcg@ime.net Organization: The Computer Guy X-Mailer: Mozilla 3.0b6 (Win95; I) MIME-Version: 1.0 To: "Jonathan M. Bresler" CC: Mark Murray , frankd@yoda.fdt.net, chuckr@Glue.umd.edu, FreeBSD-Ports@freebsd.org Subject: Re: mail References: <199608042202.PAA26873@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Jonathan M. Bresler wrote: > > Mark Murray wrote: > > > > Gary Chrysler wrote: > > > > It will prompt you for your password, query the mail server and drop all > > > > your mail in your system mail folder. You can also run it from cron but > > > > you must use -p which will show up in a ps listing. You might > > > > not want to do this for security reasons. I do it on my home machine so I > > > > don't have to worry about someone seeing my password. Hope this helps. > > > > > > > > > > How does outgoing mail get addressed, I tried this (not very hard) > > > and my outgoing mail gave my address from my internal net, I need > > > it to match my account with my ISP, As if I had sent it from my ISP. > > > > The easiest way is to cheat with your mailer (PINE/ELM/MH/Whatever), > > and just set your from address there. > > > > Harder work would be to convice sendmail to do it for you. Look at > > the M4 macros in its source directort for some clues. > > the "harder way" (??) is to set "DMdomain.my.mail.comes.from" > in /etc/sendmail.cf on each machine that sends mail > > its the masquerade option that i s described in the bat book > (oreilly senmdail) p. 747 > Thanks for the info. -Enjoy Gary ~~~~~~~~~~~~~~~~ Improve America's Knowledge... Share yours The Borg... Where minds meet (207) 929-3848 From owner-freebsd-ports Mon Aug 5 05:49:25 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id FAA15823 for ports-outgoing; Mon, 5 Aug 1996 05:49:25 -0700 (PDT) Received: from ime.net (ime.net [204.97.248.4]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id FAA15818 for ; Mon, 5 Aug 1996 05:49:23 -0700 (PDT) Received: from kimiko.tcguy.net (buxton-19.ime.net [206.231.148.148]) by ime.net (8.7.4/8.6.12) with SMTP id IAA11083; Mon, 5 Aug 1996 08:49:17 -0400 (EDT) Message-ID: <3205EDE8.20E6@ime.net> Date: Mon, 05 Aug 1996 08:49:44 -0400 From: Gary Chrysler Reply-To: tcg@ime.net Organization: The Computer Guy X-Mailer: Mozilla 3.0b6 (Win95; I) MIME-Version: 1.0 To: Frank Seltzer CC: Chuck Robey , FreeBSD Ports Subject: Re: mail References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Frank Seltzer wrote: > > On Sun, 4 Aug 1996, Gary Chrysler wrote: > > > And what happens to mail thats belongs internal?? > > It stays internal. > I don't see how this can be done, I geuss I'll have to go read all the relevant info on pine. I am just not ready to devote myself to this, One thing at a time. But the way I saw it was, if you alias your From field, That aliased From field will show up in *all* mail! I need to have only my Internet mail aliased, Not the mail from my internal net! Anyways, Thanks for the info, I saw the thread and thought I would ask. -Enjoy Gary ~~~~~~~~~~~~~~~~ Improve America's Knowledge... Share yours The Borg... Where minds meet (207) 929-3848 From owner-freebsd-ports Mon Aug 5 07:14:01 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id HAA19897 for ports-outgoing; Mon, 5 Aug 1996 07:14:01 -0700 (PDT) Received: from seagull.rtd.com (root@seagull.rtd.com [198.102.68.2]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id HAA19883 for ; Mon, 5 Aug 1996 07:13:58 -0700 (PDT) Received: (from dgy@localhost) by seagull.rtd.com (8.7.5/8.7.3) id HAA26175 for freebsd-ports@freefall.cdrom.com; Mon, 5 Aug 1996 07:13:57 -0700 (MST) From: Don Yuniskis Message-Id: <199608051413.HAA26175@seagull.rtd.com> Subject: ecu man page To: freebsd-ports@freefall.FreeBSD.org (FreeBSD ports) Date: Mon, 5 Aug 1996 07:13:57 -0700 (MST) X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Greetings! I've just completed a new man page for ecu and was wondering if there are any guidelines (other than mdoc.samples) for formating and layout of "bulkier" man pages (i.e. those that don't fit the nice 2 or 3 page NAME/SYNOPSIS/DESCRIPTION/etc. format)? Thanx! --don From owner-freebsd-ports Mon Aug 5 09:33:00 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA29012 for ports-outgoing; Mon, 5 Aug 1996 09:33:00 -0700 (PDT) Received: from mexico.brainstorm.eu.org (root@mexico.brainstorm.eu.org [193.56.58.253]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id JAA29006 for ; Mon, 5 Aug 1996 09:32:57 -0700 (PDT) Received: from brasil.brainstorm.eu.org (brasil.brainstorm.eu.org [193.56.58.33]) by mexico.brainstorm.eu.org (8.7.5/8.7.3) with ESMTP id SAA28150; Mon, 5 Aug 1996 18:32:50 +0200 Received: (from uucp@localhost) by brasil.brainstorm.eu.org (8.6.12/8.6.12) with UUCP id SAA08483; Mon, 5 Aug 1996 18:32:24 +0200 Received: (from roberto@localhost) by keltia.freenix.fr (8.8.Alpha.7/keltia-uucp-2.9) id GAA08524; Mon, 5 Aug 1996 06:49:54 +0200 (MET DST) Message-Id: <199608050449.GAA08524@keltia.freenix.fr> Date: Mon, 5 Aug 1996 06:49:54 +0200 From: roberto@keltia.freenix.fr (Ollivier Robert) To: obrien@Nuxi.cs.ucdavis.edu (David E. O'Brien) Cc: freebsd-ports@freebsd.org (FreeBSD ports list) Subject: Re: lsof port survey In-Reply-To: <199608042305.QAA24059@relay.nuxi.com>; from David E. O'Brien on Aug 4, 1996 16:05:02 -0700 References: <199608042305.QAA24059@relay.nuxi.com> X-Mailer: Mutt 0.38 Mime-Version: 1.0 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk According to David E. O'Brien: > I've gotten two for secure and zero for not, so I will leave it the way > I had it. I just wanted to make sure I wouldn't get a lot of mail say > "you should have left it with the default setting of > unsecure -- AGGG!!!" :-) As a trade-off, you can modify the Makefile to create an unsecure version if some environment variable is set like USE_YES_I_WANT_IT_KICK_ME_HARDER or the equivalent :-) -- Ollivier ROBERT -=- The daemon is FREE! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 2.2-CURRENT #17: Fri Aug 2 20:40:17 MET DST 1996 From owner-freebsd-ports Mon Aug 5 10:19:14 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id KAA03304 for ports-outgoing; Mon, 5 Aug 1996 10:19:14 -0700 (PDT) Received: from po1.glue.umd.edu (po1.glue.umd.edu [129.2.128.44]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id KAA03297 for ; Mon, 5 Aug 1996 10:19:09 -0700 (PDT) Received: from ginger.eng.umd.edu (ginger.eng.umd.edu [129.2.103.20]) by po1.glue.umd.edu (8.7.5/8.7.3) with ESMTP id NAA01729; Mon, 5 Aug 1996 13:19:07 -0400 (EDT) Received: from localhost (chuckr@localhost) by ginger.eng.umd.edu (8.7.5/8.7.3) with SMTP id NAA11087; Mon, 5 Aug 1996 13:19:06 -0400 (EDT) X-Authentication-Warning: ginger.eng.umd.edu: chuckr owned process doing -bs Date: Mon, 5 Aug 1996 13:19:04 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@ginger.eng.umd.edu To: Don Yuniskis cc: FreeBSD ports Subject: Re: ecu man page In-Reply-To: <199608051413.HAA26175@seagull.rtd.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Mon, 5 Aug 1996, Don Yuniskis wrote: > Greetings! > I've just completed a new man page for ecu and was wondering > if there are any guidelines (other than mdoc.samples) for formating > and layout of "bulkier" man pages (i.e. those that don't fit the nice > 2 or 3 page NAME/SYNOPSIS/DESCRIPTION/etc. format)? > Thanx! Nope, longer man pages just mean more work, that's all. > --don > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Mon Aug 5 11:27:06 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id LAA09073 for ports-outgoing; Mon, 5 Aug 1996 11:27:06 -0700 (PDT) Received: from bdd.net (bdd.net [207.61.119.1]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id LAA09067 for ; Mon, 5 Aug 1996 11:27:01 -0700 (PDT) Received: from localhost (james@localhost) by bdd.net (8.7.5/8.7.3) with SMTP id OAA09797 for ; Mon, 5 Aug 1996 14:26:52 -0400 (EDT) Date: Mon, 5 Aug 1996 14:26:51 -0400 (EDT) From: James FitzGibbon To: ports@freebsd.org Subject: Writing man pages Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Question: if the author of a program provides no manpage-style documentation, is it customary for the porter to create one ? If so, can someone point be to a resource on writing man pages ? -- j. ---------------------------------------------------------------------------- | James FitzGibbon james@nexis.net | | Integrator, The Nexis Group Voice/Fax : 416 410-0100 | ---------------------------------------------------------------------------- From owner-freebsd-ports Mon Aug 5 11:44:02 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id LAA10469 for ports-outgoing; Mon, 5 Aug 1996 11:44:02 -0700 (PDT) Received: from mail.crl.com (mail.crl.com [165.113.1.22]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id LAA10453 for ; Mon, 5 Aug 1996 11:43:59 -0700 (PDT) Received: from bdd.net by mail.crl.com with SMTP id AA04694 (5.65c/IDA-1.5 for ); Mon, 5 Aug 1996 11:42:51 -0700 Received: from localhost (james@localhost) by bdd.net (8.7.5/8.7.3) with SMTP id OAA09838 for ; Mon, 5 Aug 1996 14:32:29 -0400 (EDT) Date: Mon, 5 Aug 1996 14:32:29 -0400 (EDT) From: James FitzGibbon To: ports@freebsd.org Subject: Web server plug in port - where to install ? Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I'm porting w3-msql, which is an extension for HTML pages to allow mSQL queries. It builds just fine, but I'm confused as to where I should install it. It would usually go in the web server's cgi-bin directory, but since I can't assume where that is, I'm thinking I should put it in /usr/local/bin and then explain how to copy it over and configure your web server in the man page (which I have to write; see last question). Comments ? -- j. ---------------------------------------------------------------------------- | James FitzGibbon james@nexis.net | | Integrator, The Nexis Group Voice/Fax : 416 410-0100 | ---------------------------------------------------------------------------- From owner-freebsd-ports Mon Aug 5 11:59:20 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id LAA11350 for ports-outgoing; Mon, 5 Aug 1996 11:59:20 -0700 (PDT) Received: from seagull.rtd.com (root@seagull.rtd.com [198.102.68.2]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id LAA11343 for ; Mon, 5 Aug 1996 11:59:14 -0700 (PDT) Received: (from dgy@localhost) by seagull.rtd.com (8.7.5/8.7.3) id LAA18283; Mon, 5 Aug 1996 11:58:48 -0700 (MST) From: Don Yuniskis Message-Id: <199608051858.LAA18283@seagull.rtd.com> Subject: Re: Writing man pages To: james@nexis.net (James FitzGibbon) Date: Mon, 5 Aug 1996 11:58:48 -0700 (MST) Cc: ports@freebsd.org In-Reply-To: from "James FitzGibbon" at Aug 5, 96 02:26:51 pm X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > Question: if the author of a program provides no manpage-style > documentation, is it customary for the porter to create one ? If so, can > someone point be to a resource on writing man pages ? [Wow... what a great opportunity to mislead this guy, eh???] Seriously, though, it would be *great* if you (the porter) would write a man page!! And, send it back to the author of the original software, too -- I'm sure it would be appreciated. But, to answer your question, no, it isn't "customary". Writing a man page is usually a thankless job. Often, you can piece one together from sections of the READMEs and code fragments (e.g., usage()) Or, there may be a "manual" (in TeX format, etc.) that you can bend into shape (I've done this twice in the past week). It's not ideal but is better than nothing! Look at 'man mdoc.samples' for some hints... --don From owner-freebsd-ports Mon Aug 5 12:00:15 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA11430 for ports-outgoing; Mon, 5 Aug 1996 12:00:15 -0700 (PDT) Received: from po1.glue.umd.edu (po1.glue.umd.edu [129.2.128.44]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id MAA11425 for ; Mon, 5 Aug 1996 12:00:13 -0700 (PDT) Received: from ginger.eng.umd.edu (ginger.eng.umd.edu [129.2.103.20]) by po1.glue.umd.edu (8.7.5/8.7.3) with ESMTP id PAA03515; Mon, 5 Aug 1996 15:00:11 -0400 (EDT) Received: from localhost (chuckr@localhost) by ginger.eng.umd.edu (8.7.5/8.7.3) with SMTP id PAA11465; Mon, 5 Aug 1996 15:00:10 -0400 (EDT) X-Authentication-Warning: ginger.eng.umd.edu: chuckr owned process doing -bs Date: Mon, 5 Aug 1996 15:00:10 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@ginger.eng.umd.edu To: James FitzGibbon cc: ports@freebsd.org Subject: Re: Writing man pages In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Mon, 5 Aug 1996, James FitzGibbon wrote: > > Question: if the author of a program provides no manpage-style > documentation, is it customary for the porter to create one ? If so, can > someone point be to a resource on writing man pages ? Well, it'd be kinda unusual, yes, but appreciated! The only stuff I know is in the mdoc and mdoc.sample man pages, and perusing other man pages to see how it's done. > > -- > j. > > ---------------------------------------------------------------------------- > | James FitzGibbon james@nexis.net | > | Integrator, The Nexis Group Voice/Fax : 416 410-0100 | > ---------------------------------------------------------------------------- > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Mon Aug 5 12:20:57 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA12682 for ports-outgoing; Mon, 5 Aug 1996 12:20:57 -0700 (PDT) Received: from inga.augusta.de (root@inga.augusta.de [193.175.23.65]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id MAA12674 for ; Mon, 5 Aug 1996 12:20:50 -0700 (PDT) Received: from rabbit by inga.augusta.de with uucp (Smail3.1.29.1 #1) id m0unVAd-004dXIC; Mon, 5 Aug 96 21:18 MET DST Received: by rabbit.augusta.de (Smail3.1.29.1 #1) id m0unTRs-000A8sC; Mon, 5 Aug 96 19:28 MET DST Message-Id: X-Mailer: exmh version 1.6.7 5/3/96 To: ports@freebsd.org Subject: New port: gimp X-url: http://www.augusta.de/~shanee/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 05 Aug 1996 19:28:12 +0200 From: Andreas Kohout Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hello, this is my port of gimp, it requires Motif. begin 644 gimp-0.54.1-port.tgz M'XL(`);%^S$``^U:>V_CN!'/O]:GF.XN#LGN698LR=JXS6'3Q!NX=TY2VVFW MP`(&+5$6&TG449(3I^AW+RD_\EB:N07.+M#R!\2Q.`\..1QJAO2,I'GK8+<` MU_(]#PY`P'KQ?_4`'=OO^([3:?/OMF6W_0/P=FQ7C:HH$0,X8)26*KZ[&.-D M'P;M%S/A__QVMLLU\)O]W_&M=ML5_O=M2_M_']CX_^QJ,.A=CG?1AVU9'==5 M^+]CK_W?MEV'^]_V??L`K%T8\Q+_Y_X?QQ@N^H/K+I3B&\XP0PGT4S3#,$`9 MR:L$E81F<,WHC*'4^&\;K/&[8A/_Y[W1V7`W?;P6_X[=V<1_V_)%_'N>H^-_ M'_CN^&]^)PQCW060`D)0Q";@-O`VS M"`58\")CCAC!Y0)H!*2V#H=<(IL!S;G)PL3"U)O3=V,3_]>_]$<[>?N_&O^N M[[OK_+_MVIZ(_XYKZ?C?!SX%=R&TJH*U$LJCSDC(M%6OB2FKBA@7+=L."`L2 M;,ZF3$:-7B''"+A>2*,(,9X&46.4)3^*D2G$X MDS9G,9(KBQ*23V+*'K;1YIB5$MH,I2F2ME=%(6NOW20CD$C6RM""1`L)A61; M+$JKI"1Y(I/)<)E/4PF!1E&!9MO$*)6`D%P7%2Y+XD+69<9DF4D*)[XF,,"EI()6JS9=2 M$CJC4D*.>*7$%=*DF/#&EV3*ZSK&HYPFDUM>$X6>'=D?(^0A%'7:TW#JMGTK\#_:ECYM^1]`'?\# M=(O%'K"C/EZ)_[;#7P[K^U_/79[_^+Z._WW@+5SB.\@I*PO@"5>"@_JT-UVM M"(@HZPHGU0G#6_@;9H6@,_QK11@.NTM?\JVC:7/R.<\N(>"I8;DFU0[^"'^I M$K"/CSN,L9WO6Y['I)_C@'V^P(6:]EN2V[`Y;===VN MY0`*8@R]^QS><;'S_FA\>3KHG:STU?;VOHR'IV?CR>CF\Y>3QO,=SKC^^:(6 M:&QV/^/L=-R[N!KV>Z,/O'EY$ET8@]/1N#>O9H?_==_]Z_IJ.!Z= M]X?_;JW[:`D&^&HT&GDF&*VMC)Q>\SUP#OLE5XCG.&GQU/>AYBEYB<99G*W* M!$/-^25/.9.[E5'DSL;-J#>Y&)S^S*=L@0O#&/;^>M,?]D:3P=6X_WG5.#CM M7X[Y7V]X\L2OGQB:3DEIHFHFXLT,L6%<7-Y,SJXN/_IB2#!:T8\+6%(>0K,R@I6Y@PCDG! MB7.:S''QJ":E'?<\O78*`LQ M$Z2$HI`_08'FXN)DL;P+*4SX!ZUXT"Z>*$L*6G8(R5$_.X5+[:FP%Q!C-2;(04YWBC&\<1V*`?%HA0&*CB3![ MU,;'LO$#+W$J(5%?_IAOGJP6PR19D%0AAC]-B]`4NYN9WOZD$Y9OL2HARR#> M707XVW__U>8U0%W_>;ZN__:"9_ZO_S<1^IW[>"7_LVW7WMS_65Z;MSAM5^=_ M>\'[]^\WN1;?-4W*R*PQKC!-3(7'`]V@= M?TT^L^SY^:"J\V\X^2P'"4995WB#I=",^%L[B\C,#$0R_DUK0F?ZG:NAH:&A IH:&AH:&AH:&AH:&AH:&AH:&AH:&AH:&AH:&AH:&Q._P'^]'ZGP!0``"A ` end -- Greeting, Andy running FreeBSD-current --------------------------------------------------------------------------- From owner-freebsd-ports Mon Aug 5 12:21:22 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA12716 for ports-outgoing; Mon, 5 Aug 1996 12:21:22 -0700 (PDT) Received: from inga.augusta.de (root@inga.augusta.de [193.175.23.65]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id MAA12710 for ; Mon, 5 Aug 1996 12:21:13 -0700 (PDT) Received: from rabbit by inga.augusta.de with uucp (Smail3.1.29.1 #1) id m0unVAf-004dXPC; Mon, 5 Aug 96 21:18 MET DST Received: by rabbit.augusta.de (Smail3.1.29.1 #1) id m0unTgm-000A8sC; Mon, 5 Aug 96 19:43 MET DST Message-Id: X-Mailer: exmh version 1.6.7 5/3/96 To: ports@freebsd.org Subject: Sorry about so much new ports ... X-url: http://www.augusta.de/~shanee/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 05 Aug 1996 19:43:36 +0200 From: Andreas Kohout Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hello, I sent my ports to Chuck, but he is to busy ... So I resent it to this mailinglist. I hope it is ok to sent uuencoded ports, but I have trouble to connect to ftp.freebsd.com, my network is sometimes soooo slow ... -- Greeting, Andy running FreeBSD-current --------------------------------------------------------------------------- From owner-freebsd-ports Mon Aug 5 12:21:42 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA12769 for ports-outgoing; Mon, 5 Aug 1996 12:21:42 -0700 (PDT) Received: from inga.augusta.de (root@inga.augusta.de [193.175.23.65]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id MAA12732 for ; Mon, 5 Aug 1996 12:21:30 -0700 (PDT) Received: from rabbit by inga.augusta.de with uucp (Smail3.1.29.1 #1) id m0unVAe-004dXLC; Mon, 5 Aug 96 21:18 MET DST Received: by rabbit.augusta.de (Smail3.1.29.1 #1) id m0unTZn-000A8sC; Mon, 5 Aug 96 19:36 MET DST Message-Id: X-Mailer: exmh version 1.6.7 5/3/96 To: ports@freebsd.org Subject: New port: xtem X-url: http://www.augusta.de/~shanee/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 05 Aug 1996 19:36:23 +0200 From: Andreas Kohout Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hello, this is my port of xtem, a great TeX Shell. begin 644 xtem-5.18beta-port.tgz M'XL(`./1`S(``^V=:W/;1I:&_57\%1U:-6MG)8JD1,FR5U-19,511;Z4I<29 M6D_1(-`D$8$`!VA*I&;GO^]I7,@&B#[G4#7V3NT(%=M2X^GNMZ]H-(`WT^^[B$.VD>]GG@BNOM'^QWX5XC.P6'Z;WZTA3CLMH%J'QX>PN^'$..)Z'UE M7>DQ2Y03"_$MLOI7/.:Z_8=^().OUPN6[9\U-=[^1STXV^X>];YQ^\=1I+Y% M?O]BA]'^$^\K57BGW3X\.+"W?Z=]E+?_P<%A=S\-Z!T\$>VO(Z=\_)NW_]O7 M/?%,=X*^DO.)#&>M7JOS8G<@E=."BFF-[I^+$^$>>^WA/C3.P&L?]@8=Y\5^ M5PZ<%\>]WM&+XXYL_%\7X_%XX&&,?_VC'\)P"()_;AZ==&1;QW]/G\S'_V&[ M#=>"3O>P=_0X_K_%\?2[O8$?[B7CQM/&4S&-(U=ZLU@*%8F\+PC=+W9$(J5H M7F1!CO*C\$]O'3]4,G1"5XHW,]^330%)4, MB\[Q,2PDW[3$I3.9`C=6.^(3_!:I^QWQL24^27\@[YUQ^$ID,8-RER6=E;6S!(2!. M5F@X!2WA1E-?>J_$!'JJ&$A(SPUFGO3@!R."=&)W+*:.&HM;)_9URF);BVHT MWIZNJYLXH?[3L4O4)05B=^J,Y"H?0`!-5:0-*+V&;M3&IXNKG\].+R^K5;!W MYR?C^5&KEV7D1I.)+BZDD;9S>G:5^K.TC'ZHRR>NW6!'7&>U#S___KS1^/WZ M_./;+!OHE-`/=I,!_`GT@O%`[%ZG757LANF_S66R9JZQ=)2$-$66`#2C%]VM M!(30NT#80F09-'>@#A90W*;C9P$KL6(6>C(6IQ>_"ZG<%LB[/'WWYM?3-^=7 M)\V_CP"&7#PY4XD[_H?XNPQ'`93V'RM9\*L2T5`$3CB:02UG/6$:)8D_``7) M(HS"Q21YM8R@FR2<30:0:RD:-$H8*4AOXBOI[2QYZ4"7*#!-2>@Z49)UG4'L MN'F6KF/TI$'1P0$;+.#\PLBST-1HO#[_Z?37R^NBR"?-O'Q9.R=3Z?I#']+7 MFCTY=&:!*I0T&F=G)\V1ZS8A2TV?[4(+36%:B/7H%BIVPB2;8W2>9^)#'(UB M1^=Z=M9__^$:ZG?W?;>('4TUF:115RE!9_'?.O,?H_DGWU/CDTZWG>$39^Y/ M9A,QB.;0^G!*/'/'#E0&-&_R?%4/.KEG@1./Y',870&,"AU%@HBG_^1#3S1> M%/Z'0B:91L,?BO\6WXG=(73-WUK*#9KBKPT@0P&36R2:,HZC^*5(9]?/.?*Y M"0G+1"=?)G> M>5]>"=<3K1;,O.^NKM.I:16\K;$LZ6S2VBZ@='VRNVWDVC3F:*B>M.@:TO*R M`B?B3V+L)#`#Q+JDRT)D/7I'7Z]6,]Y=#,-'3&'@^DF2=JGWK5]:<&U)J_:D MO6P"3S2WEPKKFV&5ZF>#K;8'U+H^LO0[NO*++.[H+,)H37'::/&\"9GJ;V*-!7(P6\$:GEPN4Y MKV-#*,RJ)M,$:/OL3/])IU>Q&YD95Y)+Q>^:*8B_OA*9;'<,4YAP_C.>&Z>A MI:"-X+^\1M?:*;L(ZT*XZ9+BEE++'E6D"?KEPLTQCFU:GYS[^HF-<7;/V?WO]-;T9?C=OVP!#DO$W\6G;`*^6B2`/&[P_3\]EN/_]?G5V<>O MDP@\LO1?0][WIIHJ`=2#R/*M"+>TY&PUBBA7BU`YN)FG9:4K_D`J6:0@YXX.2)ZGNW50[`1NK:4GO%F<%B.KD%6.UY`#U%VL M=Y9T9?IZKR?;8$AW`IU;*?16'*0TE'";KG=IQ+-DYHZ+%."&5J<:QO@QEB,MW++U'>@+^DFS MWOPF:#7N%[<\9%67:5J)25,57J89=9Y&2!:3=H?4#;4W\%U>\;(4667+4%;! M,G234NWSY>[SY>[SY>YO)/>`+_>`+_>`+_=@([F'?+F'?+F'?+F'&\D]XLL] MXLL]XLL]VDCN"[[<%WRY+_AR7VPD]Y@O]Y@O]Y@O]W@3N9TV6RZ@7+F`GHV4+9<_KS;V6C>'40!?66[TMN+L,I:O4-$EK$FR@-RHMQZ.9>C]-]0!SZ^K@>A[Y(KMQZ'EV M+0YC]EB/\X`V[3R@33MTFSJ#1.E!0`_-M<0?T/B=!S1^YR&-0E^!UN)T']"0 MW0%X15.1& M,_UHC:-_!3/$KV"&\A7,E1W(<*3&/-4YRQ*=LRS-.8J5&%R3%.,<90#D[&S`'O1>YL`KF3!5Z"[!2I0B]!1K$+U@VT5SI&Q&(%&BPI$R#)<4:+$.R/]0OV,L@H?N' M@5*"#932:Z`8(7=$@T))Z(DLE'?%VT=400QT@U2I0ADHHVA`#R/&[6K!,82F'$-E MRO$DLC8*@=/O?W`X_6HXYW)@H!NDRBA[@?**#PO&*&8LH@R4(;=`&7(+E"$W M?06'=;,]]5W%N1TN.&YZ5'D*CE.8&&[F&!OK?YM%BG<7M"+Y:5(%6I&,(B7I M-Q:DSARC1.88I3##NMQL&2]\+4%NUGW6$^LEW=V(9KW6D]&;Z-A$!5-#^GE, MX1]"-T<9)QNEC)--4\8WEM\/HA$KEC:BHGUNY+H)E0YPL3Q M0WV6'T&;\<"-ES;-84>ZZP\<]V83W%<3AR^JB-#'!FLUBD3O\:HTM!F_5@&/ M,/6#F5+9(E+9OG48W/:=\%[Z,'D'4SLSBF>Z&!@RQD]'4R4]'V?TU]*)WG.U M0MZD__X7_#Q<.^*9BZG1T$C"*%1Z0D,QJFHT,TL\R/!&ACA'*`IG$U*3]5KHL:A^G/#^&HDV)M'**3@OJB8:@)@E(\F3IST(WP(A, M]3474"*QG&*D!<5DI$571DK-AD.<&A-YC8E<]%)%5Q)"^8SQ[]/CP,?'@<\8 MD3[GHAG<%A6,0Y3>`-<+IXM/>NW0Y*;O3K!,IHRZ!68X47AYIG1YIGAYIHSZ MG^KZE\3D',O^310.`_\&NZC$C.4&,&E+X@A5[AA?C,!IXOH'1/YE+L(PVC&F MVRC&VRAFM%',&2-)E-\[8(0VM<1R`D2[)^($/10!PLH,IV^RISP129$9,3HF M4+JUB:08S9W0S9W@S9TPFCOA-+>29&.J@%,Y*NFG-]H8`NNWX!X'R.E,T76G M\+I3Z?3LA,&"T#)QYJE=,DY%MS(>S@)"G*# M=[Y[O5MR1[33/70MF;ACJ;"5_GVZ53:4`:;X?EE]'9RRW_+G[B'Y=BK+%*0< MQ>H*4HH-868[D2_VWW1VD"N/V(!8:\P5+KK4,L;(;2:XU#;&R?,FUMB%6 M=B/)M<8A5I8ON=8ZQ,IN)+G6/,3*\B77VH=8V4TDUQN(6%FVY'H+$2N[D63& M[(V[B%A9ON3-YF6;D4B9YCF)D'$>D@]9<+:92"4:QTV$B%)O)T)%8C0\TU"$ MBL2XCC(M1:A(M;825"3&!8CI*D)%8DS"3%\1*M)#&K?>682*Q&A782*]*#&85RCF`8C5*2'M&B]Q8BEXC8899LJ_5D+4>+M=J-U'(\B1;#D3J,(=!B M.5*'<>11IB,(38JE;$<0FB,=,1ZI@%;GD5J.FQY9(M1\I(+:W4,6)5:6)=EN4E(%+2XE=1@S-;HPB%%) MA53U']G64+0X5?]I;0W%D69U*ZG#2'%6OY(ZC"7/XEA20]'B+)XE-117&NI: M@N$LL:AO"89SY"/.)?4@*1GQ+JD'N3*M[B4VE"75ZE]B0S>2R]@#QRU,+&RM MAXF5Y:?+>#")VYA86,;30]S(Q,+6.IE864:ZB)>)#65T,\3-Q(;RNAEG8\5F M:%)#,?0Q]U`(3Y,RC)N:6-E-TB5+1OJ:K.$V8Y-ZD"/69FU2#S)E\K8R$7>3 M-1"Q-[&RFZ3+J0'#A63F7>_O4$]:[48L MN,UQQ(+SWE$BG$]JX4V$<&60YB2*L12IE%G%#J05(FXH52#S)EH-TJQ MQ;$XI=AP9;%*L?+U7BD%CIFE+!GL*T<#LGY)8S"UG](8Y^T?.AH0\J5C05DM M4PP`^23.I##3%),CJXBT33%`2I7=.,6`;,XI)F*U3C$@Q#MEC:K].FR-JOW2 M;$DA]BD&@U<1:J!2IFP.*F7*9J%B4(P/JE`3%0/"7%1*F,U&I039/M4W(+K& MB<&+6JD4$.JE8D"D&IN;BG$>M5,I.,)/91VK_2+1P##KDG6,D9K-;:1,V7Q$ M#`IU52ES=EN5&H[*%S-66<'S6+%.$\/5=QD9;F:1%U6#(H4;?-9,NF*CMRA+B-"IFO&(P MN&!.>^'>*P6%F*\8B-6PPV!L]BL&PABD-@,6XSSFP%+&Z+PX?14W85E2G,;' M;%@,!J\!3N/C3BP%A5FQ+!G;(8F-V4Q8`P5Y8"HVQ9#,[JRU(PN#&+0=F=60P(L68Q*;LWBT'9S5E, MR.[.8E",N0?S9S$8JT&+P:`.+09GM6@Q&,2CQ:"L)BUE!AW$F$V+P2`^+2:% M&+68F-6IQ8#H7H=ZM1B?_C+Q;LW1LA5VAU^UKF-5?6=APL0Y@1! MW0/KTJF/K!$>N3*JRIS%<$V[]/^2T_D3P1WWX="VAJN9L8BR'Q=58 M<356$E4#IC`MP#!;2RM9BYK-:.5`M=8H*J@&5$6I:LJSJLG-3/F!KQ:5T/EO MU0"_&J!GP4I0-3/X[4+WI9J@UE&K;03#12Q_1:P^M%,;VJT-W:\-/:@-[=6& M'M:&'M6&'M>%'AT,ARW'>F90J<>^`PWN5@/UZKL25OG5SV8L(]0=.^%(NI$G M6]7TH`Z?/!XUAZZ"'VTTW\[!X?Y[_KG3EN(PVZ[ M?=1K[Q]V(*1]U#EX(MI?24_IF$$OBH5X$D>1^A;Y_8L=3\4[>2>F4:P2X4:! M?D\'KN9BDO<(,8SBEUOIZ'LJ?LLN]2*6<$V(I?=R2X^O@50.G'P-]U(BOZ5Z MN;75WA>GLY'H'!\?PLE/XV@"@5L)C%`I?XCU>R&JY7`DLD3$^7PJMB%BX_7%U?6[T[?G)ZE. MO4[36_PMK6TW%??AES>K\^F_>=#;0EZ1L;KGM[34:EQ<_]E^? M?SA_]QJBPD1_U/O\N=6!/R^W__[A_]5[J3[\[OAUE@VMY[GI^H]+9NK[[B6A!)OUG0F$:),I.> MBMU8;#_[Z>+R7.M];L['9JZK.3@5EQ.0P@]PEQ2)YO???]\T?Q$_^7&B=D0V MD8M$*KW^27:$_JY+%!GH5+]K5A(I%W>5\2O1*ETM&JW\LR_Q7X/$:^F*:$UN =_OQX=7@\'H_'X_%X/!Z/Q^/?YOA?9&INSP#(```M ` end -- Greeting, Andy running FreeBSD-current --------------------------------------------------------------------------- From owner-freebsd-ports Mon Aug 5 12:22:11 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA12801 for ports-outgoing; Mon, 5 Aug 1996 12:22:11 -0700 (PDT) Received: from who.cdrom.com (who.cdrom.com [204.216.27.3]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id MAA12796 for ; Mon, 5 Aug 1996 12:22:10 -0700 (PDT) Received: from inga.augusta.de (root@inga.augusta.de [193.175.23.65]) by who.cdrom.com (8.7.5/8.6.11) with SMTP id MAA01243 for ; Mon, 5 Aug 1996 12:22:01 -0700 (PDT) Received: from rabbit by inga.augusta.de with uucp (Smail3.1.29.1 #1) id m0unVAe-004dXKC; Mon, 5 Aug 96 21:18 MET DST Received: by rabbit.augusta.de (Smail3.1.29.1 #1) id m0unTU3-000A8sC; Mon, 5 Aug 96 19:30 MET DST Message-Id: X-Mailer: exmh version 1.6.7 5/3/96 To: ports@freebsd.org Subject: New port: xtar X-url: http://www.augusta.de/~shanee/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 05 Aug 1996 19:30:27 +0200 From: Andreas Kohout Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hello, this is my port of xtar, it requires Motif. begin 644 xtar-1.4-port.tgz M'XL(``.*_S$``^U9;6_32!#NU_A7S`D^M*&QO7Y-4WJBH@;E((5+PH&$4+6Q MUXF%8YO===."[K_?K/-63QC7TG*C;WM"CBF[[JP M!TK,C?WB!#SB^[[I^*X-0$SB^GO@;MFO2DJ!$0#8XWDNOZ0WFS"6[L*AW^"_YM_S;=PZ*O^^0^K\[T)6^7_XK-<+SH?;N`8Q3<]QOI!_QU_A M'S4Q_Y9)O#TPM^',IM3YYT!T!UIPF;`9A'DF628%Y#%04)-QDC+M>[M9RY9D MA?^S8/"POYUKW(9_Q[36^'<)XI^XGEWC?Q>R2,&KH0I"(@!!W\ME$D/!\S&G M4XAS7C%#DHV!9A%,:98494JE&L#0:0L+E(>3Y)()V)]-DG"">MV%?Z?/^T. MMO+TOQW_Q';6^">6PK]'W!K_NY`'X2P"HQ3<>$5(W]-&26:H>T)+DY$:JDZJ MC1[EX6J4%D4K8C$M4RD,11X:\H*!O_D"G>CC][\XLOX?4J57E7AB>QW@U_=_ MQ/*LNO_;A=S(_S3:4L!O[?]\LN)_U_-4_GVK[O]V(KTS%_;53=#")E!7U#U^ M?P`G8%FQ:6$5[C'W*/:IZ=CM*+0<)QY9;<^/W)KV15_]F^:5;UG^?4^-^%W(%S-L.&B&-#%N9IRD+50F&G-;\C5/O7:50%X1WX MBW&A)CE[5R:<19T&<@:.GU&);1UGN,.QADW@CS(%3+23[%P8:8T(RQ M!YR.1HG4:3E6@=\%)8TEAVO,GCS=&>J>#8="_&'2'P>"D$#>26.:B!"N"-'03O=\B+^@?_+Y M?Z/U@S]?=/O!X*+W;-A]=-*X9D)[,0@NNKW3)\'\5-.3+$S+B,']D8AT%7Q] M^O;W[T*I\_Z/RG"RO0KP:[[_$+>J_SRS?O^_$_DH_]6^1>DWOL9M_.^ZZ_J/ MV.K]GVVY]?N_G4BSV53OZ*9Y9@C)]1`Y,1DW7K*HXG!,!FEW3*=#K#F?MUJM MC]3_K:G86FDV/Q9U#E;;/K3:1U`-`(03C'P3[5PPSG.^GV02\"@KIP$"SJHBS.B4W:0$M98S>4E3[%3-8^VW!;YY&4K`0FZ*Z%[NC]?@18!WX^I+ M0E7:RNN"J4\>62Z!0H05;2AS?JT4,I!XH#X5"":K%30,F1!K%B@8Q\I0E<-" MAY<,*6A>T2W-8"$)(Q;24C!%&#.>8(V\7E2%; Mon, 5 Aug 1996 12:22:56 -0700 (PDT) Received: from inga.augusta.de by mail.crl.com with SMTP id AA13851 (5.65c/IDA-1.5 for ); Mon, 5 Aug 1996 12:21:51 -0700 Received: from rabbit by inga.augusta.de with uucp (Smail3.1.29.1 #1) id m0unVAd-004dXJC; Mon, 5 Aug 96 21:18 MET DST Received: by rabbit.augusta.de (Smail3.1.29.1 #1) id m0unTSo-000A8sC; Mon, 5 Aug 96 19:29 MET DST Message-Id: X-Mailer: exmh version 1.6.7 5/3/96 To: ports@freebsd.org Subject: New port: xmaddressbook X-Url: http://www.augusta.de/~shanee/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 05 Aug 1996 19:29:10 +0200 From: Andreas Kohout Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hello, this is my port of xmaddressbook, it requires Motif. begin 644 xmaddressbook-1.5.3-port.tgz M'XL(`)J"_S$``^U96W/:.!3.*_X59Z9]:--B6[[@ABD[I<3MT(8D"W2;V9>, MD`5X8ENN;#?)_OH]PD!P>DFSI73:]3>@F^5S/GPNEL153(-`\BR;"'%A[/T0 M@&-ZK@M[H&#>JI<=:!'/\TQB$1N`6*9M[8'[8^A4460YE0![4HC\:_,NYYQ' MNR"T6UQ5[)]>S'Z`#WRK_5N>C:6C[-^RS=K^N\"G]N^=#`;^\7B+.HAIMASG M*_;WUO%OMM!1@-B>:>^!N44.7\3_W/YG=?8#CZ-_T-_U!MN5<==\>]X]CK^/4)4_#LM4L?_+K`TP;>G M`8#%E)M,L)30SP%H%(G+#/(YAR+C$G(!/,FQL9E"\NN40YA,A8QI'HID4T)& M/_(,PCR#@.849Z%,@)Q?H?!I&'&]U,,H7A!%GA;806TK"9MJU,VG(LLS)L,T MU]5]-,H$S*GZ<;U"9DJ38C>E;"T!64'&J63S,)D!30+X&/)+U58_:O4(E(+? M)`5^&O^G1_W1-M_^=\>_I6)^N?XWK<7[WS7K^-\)7K#+`(PBDP;&^["E3<+$ MJ/B$%H43=I5I,$P._MR;J1)_]\WM$ MTZ^'JLE4CLVVO@.\__[/)BZI]W^[P.?L'P?;??)WY7]BWJS_G'+_U[*L.O_O M`H-#%QY5G*!)=%>W=7PJ^M^/H0.!%SQK33EE`64'!YQR1JP#9^HZ9N#1J4OK MS/TKHQK_`WK!50[8KHZ[XA_#?AW_+K$6ZS_'K>-_%W@`Q_P24B%QS\5$%'&F M]F00+QU!;8C:C>J"\`'\Q66F9DG^H0@E#]J-1<[`*X<.T!3GK8#]JP\L.G'X'HEKD0 M8)BN87E`K+9MMYUGD'*UL_2O4GB(-VJ'N&LY[@[\SBVV_MEXV.V-ST?O7IUU M&IO)33M]^_HS=Y13M$%W-/:'YZ/^V!]U&M,\;1L&ECICJ=!%4.@\*(RTF!@3 M<1T86J\[]E^?#/O^Z$FG$8<9@RM"-)32/Q[CUQ]VOORSM:'_Y[O^T!^=#T[& M_5>=QC7/M'GSQQW%#&>-]SQ89&U,WL1INUX;;;?(X,UF\V9N99K;-MVV'"LM0(,YYP22-LS7F48A6%68Y53,-$53PIL$IEF*A1?.&H MJCRCPP:74LCS.)MA.RC2*&3XZL%V0F.^%#03.69L8%0&JEJ<_)7RE5*4S*=< M\H2I460W&O;6[-B:'2O9L9(=*]FQDAU;LF,E.[9BQS;8L0UV[(8=*]FQDAU; ML6,E.U8AQY`MVC\Z/^RV%7O6Z0ZL-'B_<&#CV&9G06JR)7!2'J!JT) MQCX4"1,QTLTAGX<9A%.X%@50J8YJU?EF>?QS7_%8]7N^ZH18C`98B"@X4P/J MT!95[QLE;?ST1)Q&_.JT/#D>4SGC>77O\7CA8Z6S8*M9.\MW.>I2^LNUV?>8^[O*STV>-&C5J_++X%S2=8GD`*``` ` end -- Greeting, Andy running FreeBSD-current --------------------------------------------------------------------------- From owner-freebsd-ports Mon Aug 5 12:24:05 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA13044 for ports-outgoing; Mon, 5 Aug 1996 12:24:05 -0700 (PDT) Received: from mail.crl.com (mail.crl.com [165.113.1.22]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id MAA13039 for ; Mon, 5 Aug 1996 12:24:03 -0700 (PDT) Received: from inga.augusta.de by mail.crl.com with SMTP id AA14008 (5.65c/IDA-1.5 for ); Mon, 5 Aug 1996 12:22:49 -0700 Received: from rabbit by inga.augusta.de with uucp (Smail3.1.29.1 #1) id m0unVAf-004dXOC; Mon, 5 Aug 96 21:18 MET DST Received: by rabbit.augusta.de (Smail3.1.29.1 #1) id m0unTek-000A8sC; Mon, 5 Aug 96 19:41 MET DST Message-Id: X-Mailer: exmh version 1.6.7 5/3/96 To: ports@freebsd.org Subject: New port: xvnews X-Url: http://www.augusta.de/~shanee/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 05 Aug 1996 19:41:30 +0200 From: Andreas Kohout Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hello, this is my last port :-), a newsreader for Open Look. begin 644 xvnews-2.3.2-port.tgz M'XL(`'%^_S$``^U:>W/:2!+WO^A3=.+L+CB2D)`$-CYO+;%U/LX\7(`37^U> M44(:L,I"TDG"X&SENU_/2`*9X$>V#*ELZ5?%:WJFNZ>GIZ=[T.+.)?.PO+=- M@"K5-`WV@$):^TQ^0%6NU:JUFJS*`+*D*:%O5*L$LC(P`8"_PO.BI?O,; M0IQ=*+1;+.+U]V\GV_.!EZY_M:;@NXKK+RNREJ__+I!9_]-NNZUW!J\O0Y:D MJJH^L?YJ)=G_5;5647#]*TI-W0/I]57Y&OGZX_J#`(8+W4N]`ZUN]P)86T`, MBP3<]]8PQS:1V?]G>O^TMPT9S^U_39&6^Q]3`+K_Y6J^_W>"9`F2,%`1%;$" M=LBB@4_QO MX?1_?O_+E67^7]58_E^I2$J^_W>!W\RY!>59&)2O9;E7Y4:V6XY]@G/L41E? MDQEN--%X\'-QAPU3PRWC2T[ZB[(X^?S#^'V.&,G^']L8MK95`?Z%^J^J5//Z M;Q=XL/Y3:RLF?[;^JVG+_$^3*JS^D^0\_N\"[3,-BK$3""S[$]$<&,A+<`+$ MTDA-JXV/:I71H6HJX\-*S30/QV-U5#454\Z#_8^/9/^WC5M"8\!69#RS_V6I MMKK_E516_U5J>?ZW$^Q#A\S!]X(H!--S',(***RJ8G^@55.]D"2$^_"1!"$E M!^1_,SL@5KW`8@92SHR(@(DE741;"XH,_YXY(!\=59'XZ<:;8F,AO#%<0GX+ MC-'(CD1C-J'&%RW"[6.G=TVK#JD?\G<@BU@64`9E22M7:N@4=46IJX?@$ZQ' M05_X\`X'TV]__ZDP*K'A2QSR*K9&>!+[YT\ M/C'N3+_4.VH'_6['TIXWA,FFTR%S"AYKBKOCYLMAL7J.P]";GK M]D7[GR>%PF)Z.QV#8'"=[K#9Z0\:K=:PW>A<-LZI[K0GYWMA)-@N"G.<.E

9FR_^\$:^O//@7#>%49SYW_ MBKS,_Q5\HRW56I[_[P0'!P<@EMFESO)VISRQ/='$$]&>%#X1BYWD>*#+6ETZ MJBO5^%07!.&1@6MC9*FN'<9C#AZ"_@:MQE<58#\!]HD3$OJY/'3NC,`()J%X M\RLCNY8]YMYDZ%-Z1VLFY+3U;7QG=?/V82,JQYJ8[K%<_";\);EA9.&LOU'N MIOD?JOR1E,X?#J!_'T9D"B0(O`"F)`R-"0$+DR+79OF(R+J5\9TL,`]RZ?5\ M,BB8T\X;Z-O:G-"0Y=AC]_M]CJ@M`.9'8I/?[KN$LK\]1G.G@ M_!-YU%JQEHFU7DW+\L'3>C(&WZ#I]]Y,/R`VQ__1J\IX+OYK575U_E=D%O^K M4A[_=P$:@IIIM; MK(;Q?.+.;9<>1S$+6DWV9R/+#L+BNV(BME1*CX!8J22H;4NIN+!ZB4J;[%:I M\)7#I=W^TQ^B[%Z#UJ+(?Q_+1S=R8L;[T+`LH"TN_9S.8&QB*L4VL-;4`M5YJK\1\S=-NA_)DQ:6-Y7:Z%/$\TZ7X@>>)/4QOBF'TB0E_[SV? MQ>;X;[ZJC&?BORI7Y;7Z+X__NP(-,HN[84`F9+$YYZ]4ZXJR.@!6G=?ZJ4=U M37K\!%`D7M'B2$;9T)^U9?J]3*LQ6I:OO7`MKZ;9-DVBUQKOJ;\&QI02WJ\1 MHGN?A.N$6/$U-BR*Q]=QZ^E\<@OV>/*N*CS6JVGROGH`):PG3]0,:3!@3XDD MOS%M]OELPS@@1(Q'Q^FN@`J,XUR:6,7^QYXZ[.GG^G6)4N)F:'::@T(!IX-Y M,@GB]/D@]#'0T,M`^A3-<:;WN3XX+98*A2)V>?\^R^=2UR^6I"SAJL,&F:5" M41`>DGKZX*K7H:2`1#.:O&=EZ;U>MT>)8Q_5B,9%7#I,Z/G4F'706!,*DWXYDQ\G`T&__>;EQ?-@;_:NF=N(@1TM), M6+?;9;??O,X8[FL?$)*J[RNBGU)3SM0EQL@8SO0/5^>L'H'!C1W"Q/%&6(U@ MK6BSYX9N7?K4$$8*/)4",)(9XBY!I@$623:+_P@<>VV!CPB,>G.&#I;3A'*]-/ENC'63- MN:%4Y>55ED.?,&-^58P9ECI7K=8CLUKM#FRC`\.90ZV0&'ZE(;]R(AY^WNA0 M//SRA_1+Z9AQ0D\JOHG9E>@LXM(U<>EX.%L;'DD%2GO;(Y,9EJ*9I48M9HX% MKA?!B"Q]H0X_A=33TX$K(QZOYA4[6BQU?2-EI)<>+%7&=)D^\7R^)/;98%@A M8]@WJ0(?^F>)7=]DN:ZO.RWBX]$LV_D2)SV9DC]Q%[(@9C$LQ5<)A_R1MKQ* M>'ZQF5I/:/`"L1N]3I5X6:MDO2YQGC>,.X[\^>&^X"'DH1C:G\DP*DD\4%5Y MD$K?Z)OT!"B&&8*^O'!L@L%.T;FX85.E*-E[&*RQC]5>:: M+,T&Q1[7YWLG/#ERY,B1(T>.'#ERY,B1(T>.'#ERY,B1(T>.'#ER_(WQ?TAY &P)8`4``` ` end -- Greeting, Andy running FreeBSD-current --------------------------------------------------------------------------- From owner-freebsd-ports Mon Aug 5 12:49:41 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA14701 for ports-outgoing; Mon, 5 Aug 1996 12:49:41 -0700 (PDT) Received: from inga.augusta.de (root@inga.augusta.de [193.175.23.65]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id MAA14674 for ; Mon, 5 Aug 1996 12:48:44 -0700 (PDT) Received: from rabbit by inga.augusta.de with uucp (Smail3.1.29.1 #1) id m0unVAd-004dXHC; Mon, 5 Aug 96 21:18 MET DST Received: by rabbit.augusta.de (Smail3.1.29.1 #1) id m0unTQI-000A8sC; Mon, 5 Aug 96 19:26 MET DST Message-Id: X-Mailer: exmh version 1.6.7 5/3/96 To: ports@freebsd.org Subject: New port: asedit X-url: http://www.augusta.de/~shanee/ Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Date: Mon, 05 Aug 1996 19:26:34 +0200 From: Andreas Kohout Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hello, this is my port of asedit, it requires Motif. begin 644 asedit-1.3.2-port.tgz M'XL(`.[;^S$``^U96W.C-A3.*_R*TTD?VDP,B(N=>-8[Z\;LUDU(4MO;^"TC M@XR9R.!%L$[RZWL$.)NXTV0R79QIRS?&(.F3=:2CJ`&W2:2-+$H$8=IOL@5.K5!5RD=$48"]-DNPYWGK!&-^%0+L%+?4_ MCS@3=>V"5^C?M$R"^B>.[33ZWP6>Z'\9U++DQ##:MOV,_CO.1O^6:9JH?],D MJ'^C#F&V\3_7OS=PX*=R$[2(9FFFALNAA?<_0P\"QSRR9W/"`HOX#O7IK&T' MP9%%CHC=9L>&^M;"-_C'J.Q_13-_45<$>(7_MVRG(^V?&(W_WPFV]%_<6Y1^ MUS%>\O]M3XN*VV6JUOW&V:W;5(23MX"ED&\_C0S/]M\N#_#;.(_Y;1Y/\[0:E_]$H9N\U`/B1XPE"%;,!R,\V0=Q2%P&H<6J.,USD8L-(`^ MY^`G2^0'0C;!D@F!XV`A9<`3G_+HG@7%M!GU%^I&$`TF*&`2MW@4,U@POI(K M1[_2B-,9ERW\#F<#E92:JDX62%BA))"R+WF4XACE6N$JRQ4,M#=UL8_L__)L M.*XA^K]L_Y:,^57^U^G8Q?G?:N+_3O#!7P>@YR+5IX2,VNHLBO5R3ZAH'3I> MI"IK1`OO51[-)%.GJU4K8'.:\TSH_;+#,VTM$4;/M5^C/WF^^>DOE!(M^&JK M"HE%[5LOZ[\&E?U[U:F^EC%>CO_FQOYM0YX%T/Z=3F/_N\`^G+-U$9\$1D3. MF2]#-&S>\L@(V%4JA[#_$-*K4!9T%44I_C7`M@'-&/@IPUM1KYA'Q?NAXIW0 M/A*N%LFRJ_3C`#D"3I-%DF?P3BQHS-B'E,YF:-$4XS4J1`O8^Z+/C\.@BP\# MC$SG?<_M*8__JE!/^A/WT\5HZ(Y[2IFH"+@E1/7ZXXD[NAX/)[)EGJVZNH[? MVJV6I*'N)W&6HM>H>N@J\H?G$[S<44_Y.WE4=7_D_OYY.'+'U][%9/BQI]PQ MH7X>N]?H?KX5AE[_U"V+4^_40YIRN[Q9SE55J[(<>#<3@2:77%O>O&]<58,& 1#1HT:-!@Q_@3'5<0; Mon, 5 Aug 1996 12:50:51 -0700 (PDT) Received: from rabbit by inga.augusta.de with uucp (Smail3.1.29.1 #1) id m0unVAe-004dXMC; Mon, 5 Aug 96 21:18 MET DST Received: by rabbit.augusta.de (Smail3.1.29.1 #1) id m0unTay-000A8sC; Mon, 5 Aug 96 19:37 MET DST Message-Id: X-Mailer: exmh version 1.6.7 5/3/96 To: ports@freebsd.org Subject: New port: bricons X-url: http://www.augusta.de/~shanee/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 05 Aug 1996 19:37:36 +0200 From: Andreas Kohout Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hello, This is my port of bricons, a thing like GoodStuff from fvwm. begin 644 bricons-3.0-port.tgz M'XL(`)Q2`S(``^U;>W/:2!+/O^A3=.QD8[-&2(B'0VWV@FV2L#&V#\C&=;55 MU$@:0&5)H],CP%[=??;K&3UX&,[9BL%)G;IL(S3=/8^>Z?[-3%OW+8.Y0?G9 M#@FJ2J-6@V=0T1J:BI\`:K4N/A-2`.H51:G7U$JECM\;2EU]!K5=-BJE*`B) M#["/JKY'TA/[CRR;[FH69/:/3?V_[*_4E`:6(K^R9_O[C(7[J.\[HU7[.^8N MQEQ%RU:KV^VO*A6TO]IH-*JU:@/7OZI6:[5GH.R@+??H_]S^W8L:'"63H$3" M"75)29,5&0=%_L:9BJG#;U>-Q35T)4Z):>*24A-TVE5>NH>Y/0M MM+K^+ZX'R0O?>+PZ'EC_Z.W7_;^F5=1\_>^##N&74@D(V)9+@0]%:+ECF%KA M!%^^.GP%5H`/!G,Z(\T\8,45C"C/^F%3WLZBOC\-A\TIF.``.E-SX#?PD MO<1F#[,F)FWX^:%&"#6B$;'"G[Y:,NYO+,J?4?2IYVU.CT.I__=(:$QVM`/X M>OQ?K==K58[_-*66X_]]T+K]Q6>)D,>LXX'XC[:N9?%?JVI86L&M0![_]T'% M8A$Z#KFC'`#*S+?&A<$D@M\P,%=4_&E6&DU-!?7U:TTJ(5+(>`M]$D(K&J/] MT)I-36G6-,Y6EXJKQ+]#XZ1R"N(;0+E8+!_"!^K35P%,)Z@&X8$Q(>Z8BB>T M"'.L/_'+!-&"B_:Q;1):S)5E.1/_/$%Y,!G,6013@M@DG"">",)H-((CQ!A< MV*0C$MDAP@R?NJ]"8'=D?OPWU"$]A[/.U46GAQN<\H0YM&Q$?AG70EFWW+*# M?X+RBW]U_XT/R'K9.=O$:ELZ%G9;&_5T$SL4\<<"DU%[*Q@$5Q]'P+T9$+^AQ:ODLB$RXI?&`( MES(]&*T--*9.@>DA0;QFCAJ#>!SCSFA[)M!+)CA3(UHTP% M;^3(9PX@*IL#PV;X$%@A%;7@$-S>=(?Q&*S2ZHC<"MN4;[!+03EU.QQ2@%#0 MN3J__'317E'TXBA1?9S4@I:X5].+H]@^Q\OC+48/?TIC&"$.-:D>C<<*7 MTK5XQ[S0PFDF9A8X8LQTFOSB_:9Y_>O[MLO>]C?:7QLOJKF'5IXNK4 M9E/@5N9\?*6(*8\/I>]PRB_@WOH,7Y2L3^]%"4X#_JOF$WPC;/[6";UF@YW. MZNO*7YG63QVLLXP'\5U%K]07^JZLQ_JOG^&\?Q,'9F+KR9!OV MTQ;83_"MX+Y:DT._QG;?+K/0YQ MW+&I@(N>$]^T7&('G.$Y.K`EGB`TT7-B`4"QC(6+$@<#*S/6=1KAW*/K+R/7 M0CUK;P\0L,B3`S$<<=^2"+_+OFWHV'J/LWZ)'G];WS;94:N<:`L[(LC@!W]7 MU\/K=\/SZ\L^+MG30@%;E,`/<"-'QR#*1F`P.W+<(&[60KC0ON@,KGN%PD%R MNH7UTM*OEAP`%R1.+;# MB.@0?GXH8B,_7A1ZDC%*U'QH7]X,?^^T/W-%V`HN_<6BT\U22X+=UNU-[_J\ M7Z@H8D+$@Y1.B.]XD!#F/,TH/;6WRVF=ML3_1[S]>?C^1ZLLQ7]-B>-_?O^S M%^+._3:9!-L@0&4!`5+6^R@`,=QV%'#R.HT=SZ'E>3:_">(;%)\&+/(-W.@) MU\$=25)!NC,4(F=R3X:.*W:*K\,)]*D7\MKX5JOHLB$;#=&#!DTH%`IJ'9U? MD>L8I!A)Q=<7).[KABSGN,7=SGID/#+Z2>@QS?`;U#]AL23E!$;-8P M]!)[Y>8DY@N:97'44;ZQ#+[Q+>K,QTWQ.;.9SZN;(P9@4U[@,2_RAC;!K7U8 ME%?8=)L8=T(8/\<^BUR3RQZ.1F;EE,9(Y"0+.WL:WY512U3R]UL&Z/[54C)` M.QJ4IUY5/PYE_O]NO+,S/^J:5G^)_+R^[^:FN__]T)_CRSC+D[\@,B#*+1L*YR+2$$6@23`O88X M&,3MPHG8:@0G?-."P06D.)[P,U1TV"54PK,2`L#P@RCB%DPK\-"'R[E3_AYI M>?U?M/OGO1W4\=#Z;XC\SQC_-QKB_K^2W__NAQ(3G*VB0N#'2=/X0B8*<(L? M,O@G]Q3V?.$KA'_@F%-0ZBATY*`V-40>&9='-I]YOL5SOY+$+W'7PLNX<\@T M<"\!L1]!W!JD\C8=A4 M"`7I)5'BCJB):MK$F(!@334L20@!FT0N\N#3DC?DURV)JR,01+J0RL:!N?P6 MBK?>87[:YD"&P82NM\6GO*?4#:D))$@UD"33["0^G>&>./6UXI#GR)(IW(C4 MK&-9^D:WNKS^;RX[_<>/_@^O_UIE:?V+_;^JJ8U\_>^#WAI3<^G&4>+Y#^E^ M+KWGS3;!JCS^4[(M7>S@<$&4TMOF+[Z=@;BY?RG'/N/IP#<"S>R`YQ!^QS48 M'RPA'/"IV2QHLA*GBR^%*,YYP>.]X5/\X$L3'5>Q3*(QMX9L\ASS0WC1,9N0SLN3+Z#*<8)96:F7U08HITU-:VI5C)S$ ML:`]\^`%STV_P"!VU>JVWV3-;M\.>JWSP;#_Z=WMF\*]_W*1;CZ^7Q'@1=)Y M:]!^?]WKM/MO"C-5E;JM_J#=&_8[`_Y&DC[UV\-.M_41Q>8TD"2/!6$I2=UI M2@4#6W/TN?>1YWIDV4ZIEUQ+\;CO3K?(IZZNN"UA.V78(E_D#NJA9&^I\)8: M$P8'!]G3)\1>\H9_$<&AY\E(/OQGZ5#U8$F!)&=7CGI@RB(!Q[G[]0?SD3GE CE%-..>644TXYY9133CGEE%-..>644TX_(OT7"O;;G0!0```! ` end -- Greeting, Andy running FreeBSD-current --------------------------------------------------------------------------- From owner-freebsd-ports Mon Aug 5 12:54:54 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA14981 for ports-outgoing; Mon, 5 Aug 1996 12:54:54 -0700 (PDT) Received: from inga.augusta.de (root@inga.augusta.de [193.175.23.65]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id MAA14904 for ; Mon, 5 Aug 1996 12:53:58 -0700 (PDT) Received: from rabbit by inga.augusta.de with uucp (Smail3.1.29.1 #1) id m0unVAf-004dXNC; Mon, 5 Aug 96 21:18 MET DST Received: by rabbit.augusta.de (Smail3.1.29.1 #1) id m0unTd4-000A8sC; Mon, 5 Aug 96 19:39 MET DST Message-Id: X-Mailer: exmh version 1.6.7 5/3/96 To: ports@freebsd.org Subject: New port: unclutter X-url: http://www.augusta.de/~shanee/ Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Date: Mon, 05 Aug 1996 19:39:46 +0200 From: Andreas Kohout Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hello, this is my port of unclutter, it removes idle cursor image from screen. begin 644 unclutter-8-port.tgz M'XL(`*N#`S(``^U7;6_:2!#.5_PK1DH_M&IC>PTV!!VGHL2M4(ZT`GJ7#R=% MB[V&+;:7KG=#FE]_LPX)291>HHIPU6D?R8"'>?.\K4>72:Z58M+;>S%`RV^' M(>R!@?_@>WT#4>#[;9^$K18`(8'?VH/PY5S:0%>*2H`]*83Z-[[5G+%\%P[M M%OHV_\O%[(5JX'GY)^VHW<1/D__`)[[-_RYP/_]'GX;#^'2R91O$]R-LZQ_G M/R(W_8^%8O+?]%O1'OA;]N-1V/Q?YQ\.0+)"7##@:'XVV;N.I_@\W_4_\(#+S/PH"V_^[P#H%FS%P/00J M4//'AH"A7@\"J`3>4>6L-7`%J4"Y4B@0TTI)G:B:G4I&X;O0Y@?D0BQX.0.J M@&;&',K=:)C3"FIQ,!ZD`!G:IC#C%VA-\8*Y`(,[5E+C`*^`9S<:[OJ,]+(F MF,3"BI>I6$&M<(H/*DK#@:02E:+66PV2HW90`AV;E0(]_LKKL+RN"IKGM6<% M*Q7*:F;82L$K]N:.#^9)YQ3'*$5F7;$Z2*!67"5S5KF_VOR\W_^?_QB,MWWZ M/^?\CS;G?[-^_XM:MO]W@O?)*@5/5]([(V04.5->>K?_+C`\#N'U;1$<=%R,!D[X-]"#,/`9BUI)\S!-,W^:1AD-.ZP=I9V@%:1A M8$^!_P$V_3^D"V9FP/9M/-'_)"";_2\D0=W_0=OV_RZP#Z=L!4LA<:5)1)ZS M1'%(U/+KN?AIYM4KBY*EZ7:6])D@3MP95Z2 MO424N"9./:UXSI79%_]V&FNYI)JY>H5!D+CIN@GUEGKJY?/,*YFZPV;4ZY)? M'-!RAO%T,VD8@R?5&[FY_LI=FK@\]PHNI9#/DI)7QN#!2C-Y-=5RAE&O?7M4 MUG&.^I/XXZ?1(!Z_[34*7B5P28B#H1J<3O"*1[T?)]/Y,H[/!\/^"<;Y.RH[ M&YX,/_0:C@1K$@`*``` ` end -- Greeting, Andy running FreeBSD-current --------------------------------------------------------------------------- From owner-freebsd-ports Mon Aug 5 13:48:57 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA18846 for ports-outgoing; Mon, 5 Aug 1996 13:48:57 -0700 (PDT) Received: from spooky.eis.net.au (root@spooky.eis.net.au [203.12.171.2]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id NAA18834 for ; Mon, 5 Aug 1996 13:48:49 -0700 (PDT) Received: (from ernie@localhost) by spooky.eis.net.au (8.7.5/8.6.12) id GAA05335 for ports@freebsd.org; Tue, 6 Aug 1996 06:48:06 +1000 (EST) From: Ernie Elu Message-Id: <199608052048.GAA05335@spooky.eis.net.au> Subject: Re: Web server plug in port - where to install ? To: ports@freebsd.org Date: Tue, 6 Aug 1996 06:48:06 +1000 (EST) In-Reply-To: from James FitzGibbon at "Aug 5, 96 02:32:29 pm" X-Mailer: ELM [version 2.4ME+ PL15 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > > I'm porting w3-msql, which is an extension for HTML pages to allow mSQL > queries. It builds just fine, but I'm confused as to where I should > install it. It would usually go in the web server's cgi-bin directory, > but since I can't assume where that is, I'm thinking I should put it in > /usr/local/bin and then explain how to copy it over and configure your web > server in the man page (which I have to write; see last question). > > Comments ? > It's got to go in the cgi dir otherwise how do you call it from a web page? You can't call from /usr/local/bin it could be a security hole depending on what else you have in there, and a pain to reconfigure the web server to look there for it. The standard cgi dir would most likely be /usr/local/www/cgi-bin as it appears that most FreeBSD users use Apache and thats where it's cgi's live. - Ernie. From owner-freebsd-ports Mon Aug 5 14:57:58 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA24711 for ports-outgoing; Mon, 5 Aug 1996 14:57:58 -0700 (PDT) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id OAA24689 for ; Mon, 5 Aug 1996 14:57:53 -0700 (PDT) Received: (from obrien@localhost) by relay.nuxi.com (8.7.5/8.6.12) id OAA26349 for freebsd-ports@freebsd.org; Mon, 5 Aug 1996 14:58:04 -0700 (PDT) From: "David E. O'Brien" Message-Id: <199608052158.OAA26349@relay.nuxi.com> Subject: Re: mail To: freebsd-ports@freebsd.org (FreeBSD ports list) Date: Mon, 5 Aug 1996 14:58:03 -0700 (PDT) In-Reply-To: <3205EDE8.20E6@ime.net> from Gary Chrysler at "Aug 5, 96 08:49:44 am" X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > > > And what happens to mail thats belongs internal?? > > > > It stays internal. > > I don't see how this can be done, I geuss I'll have to go read > all the relevant info on pine. You won't find it there. It is a sendmail issue. Add to /etc/sendmail.cf: DMmydomain.com # class L: names that should be delivered locally, even if we have a relay # class E: names that should be exposed as from this host, even if we masquerade CLroot CEroot Then kill sendmail and restart it (/usr/sbin/sendmail -bd -q1h). The M macro will be the machine part of your email address, and the L and E classes will determine what is "internal". -- David (obrien@cs.ucdavis.edu) From owner-freebsd-ports Mon Aug 5 18:36:21 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id SAA03518 for ports-outgoing; Mon, 5 Aug 1996 18:36:21 -0700 (PDT) Received: from mail.crl.com (mail.crl.com [165.113.1.22]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id SAA03504 for ; Mon, 5 Aug 1996 18:36:17 -0700 (PDT) Received: from bdd.net by mail.crl.com with SMTP id AA14200 (5.65c/IDA-1.5 for ); Mon, 5 Aug 1996 17:10:48 -0700 Received: from localhost (james@localhost) by bdd.net (8.7.5/8.7.3) with SMTP id UAA00793; Mon, 5 Aug 1996 20:06:35 -0400 (EDT) Date: Mon, 5 Aug 1996 20:06:35 -0400 (EDT) From: James FitzGibbon To: Ernie Elu Cc: ports@freebsd.org Subject: Re: Web server plug in port - where to install ? In-Reply-To: <199608052048.GAA05335@spooky.eis.net.au> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Tue, 6 Aug 1996, Ernie Elu wrote: > > I'm porting w3-msql, which is an extension for HTML pages to allow mSQL > > queries. It builds just fine, but I'm confused as to where I should > > install it. It would usually go in the web server's cgi-bin directory, > > but since I can't assume where that is, I'm thinking I should put it in > > /usr/local/bin and then explain how to copy it over and configure your web > > server in the man page (which I have to write; see last question). > > > > Comments ? > > > It's got to go in the cgi dir otherwise how do you call it from a web page? > You can't call from /usr/local/bin it could be a security hole depending on > what else you have in there, and a pain to reconfigure the web server to look > there for it. > > The standard cgi dir would most likely be /usr/local/www/cgi-bin as it > appears that most FreeBSD users use Apache and thats where it's cgi's live. The standard dir for most web servers is /usr/local/etc/httpd (including Apache and NCSA.) It doesn't matter though - I personally use /usr/local/www, as did the person who ported apache and many other people I know. The point is that I don't want my opinions (or lack thereof) to shape how people run their systems. That's against (IMHO) the ideas behind the ports collection. My proposal (see above) was to install into /usr/local/bin, knowing full well that the program couldn't be used until it was put into the specific cgi-bin directory (hence until the man page had been read). -- j. ---------------------------------------------------------------------------- | James FitzGibbon james@nexis.net | | Integrator, The Nexis Group Voice/Fax : 416 410-0100 | ---------------------------------------------------------------------------- From owner-freebsd-ports Mon Aug 5 19:18:27 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id TAA09307 for ports-outgoing; Mon, 5 Aug 1996 19:18:27 -0700 (PDT) Received: from silvia.HIP.Berkeley.EDU (ala-ca11-21.ix.netcom.com [199.35.209.181]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id TAA09177 for ; Mon, 5 Aug 1996 19:18:03 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.7.5/8.6.9) id TAA15668; Mon, 5 Aug 1996 19:12:42 -0700 (PDT) Date: Mon, 5 Aug 1996 19:12:42 -0700 (PDT) Message-Id: <199608060212.TAA15668@silvia.HIP.Berkeley.EDU> To: james@nexis.net CC: ports@freebsd.org In-reply-to: (message from James FitzGibbon on Mon, 5 Aug 1996 00:21:14 -0400 (EDT)) Subject: Re: Opinions of port vs package please From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * What's the best course of action here ? Let it be, and deal with the * possible "File doesn't really exist" messages during a pkg_delete ? Or * use an interactive de-install script in the uninstall ? Create pkg/PLIST on the fly. It has been done in, for instance, print/pkfonts. In short, don't import pkg/PLIST as part of the port, but instead write a script to create it when you ask the user what s/he wants. Make sure you don't forget a pre-clean target to remove pkg/PLIST. Satoshi From owner-freebsd-ports Tue Aug 6 00:36:14 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA26640 for ports-outgoing; Tue, 6 Aug 1996 00:36:14 -0700 (PDT) Received: from silvia.HIP.Berkeley.EDU (wck-ca7-03.ix.netcom.com [204.31.231.35]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id AAA26623 for ; Tue, 6 Aug 1996 00:36:11 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.7.5/8.6.9) id AAA10089; Tue, 6 Aug 1996 00:35:54 -0700 (PDT) Date: Tue, 6 Aug 1996 00:35:54 -0700 (PDT) Message-Id: <199608060735.AAA10089@silvia.HIP.Berkeley.EDU> To: skynyrd@opus.cts.cwu.edu CC: freebsd-ports@FreeBSD.org In-reply-to: (message from Chris Timmons on Sun, 4 Aug 1996 20:29:21 -0700 (PDT)) Subject: Re: make package dependencies thrash From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk * LIB_DEPENDS= tcl74\\.1\\.:${PORTSDIR}/lang/tcl \ * tk40\\.1\\.:${PORTSDIR}/x11/tk * So, I am wondering why the tcl/tk dependencies are not a problem during * build, only during make package? I guess I could put the actual tcl and * tk build directories out under /usr/ports but should I have to do that? They don't cause a problem during build because they're LIB_DEPENDS, which checks the existence of the indicated shared libraries using "ldconfig -r" and attempts to build them only if they don't exist. In your case those libraries do exist, so the build dirs never get checked. However, to build a package, we need the ${PKGNAME} of the depended port, as package dependencies are based entirely on package names. bsd.port.mk obtains this by going into the depended port's directory and do a "make package-name" (which is actually just a "echo ${PKGNAME}"). So if you don't have /usr/ports/lang/tcl (should be tcl74, as someone else pointed out), it fails. Satoshi From owner-freebsd-ports Tue Aug 6 02:16:33 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id CAA07348 for ports-outgoing; Tue, 6 Aug 1996 02:16:33 -0700 (PDT) Received: from soda.CSUA.Berkeley.EDU (soda.CSUA.Berkeley.EDU [128.32.43.52]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id CAA07342 for ; Tue, 6 Aug 1996 02:16:30 -0700 (PDT) Received: from localhost (richardc@localhost) by soda.CSUA.Berkeley.EDU (8.6.12/8.6.12) with SMTP id CAA05075 for ; Tue, 6 Aug 1996 02:17:09 -0700 Date: Tue, 6 Aug 1996 02:17:07 -0700 (PDT) From: Veggy Vinny To: ports@freebsd.org Subject: tcpwrapper Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi everyone, I just installed tcpwrapper and was wondering what is the corrent format in hosts.access to get the banners working since I have all of them in /usr/local/etc/banners. Also, is there a way to have the tcpd log go to a separate file other than /var/log/messages? Thanks. Vince From owner-freebsd-ports Tue Aug 6 04:04:19 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id EAA12481 for ports-outgoing; Tue, 6 Aug 1996 04:04:19 -0700 (PDT) Received: from who.cdrom.com (who.cdrom.com [204.216.27.3]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id EAA12475 for ; Tue, 6 Aug 1996 04:04:17 -0700 (PDT) Received: from Campino.Informatik.RWTH-Aachen.DE (campino.Informatik.RWTH-Aachen.DE [137.226.225.2]) by who.cdrom.com (8.7.5/8.6.11) with SMTP id EAA02909 for ; Tue, 6 Aug 1996 04:04:13 -0700 (PDT) Received: from gilberto.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de [137.226.31.2]) by Campino.Informatik.RWTH-Aachen.DE (RBI-Z-5/8.6.12) with ESMTP id MAA25725 for ; Tue, 6 Aug 1996 12:54:11 +0200 Received: (from kuku@localhost) by gilberto.physik.rwth-aachen.de (8.6.11/8.6.9) id NAA09467 for freebsd-ports@freefall.cdrom.com; Tue, 6 Aug 1996 13:07:21 +0200 Date: Tue, 6 Aug 1996 13:07:21 +0200 From: "Christoph P. Kukulies" Message-Id: <199608061107.NAA09467@gilberto.physik.rwth-aachen.de> To: freebsd-ports@freefall.FreeBSD.org Subject: syserrlist (how to define out) Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The porting section in the handbook says to use __FreeBSD__ sparsely. So what would be the correct method to outcondition a extern char *sys_errlist[]; bogon? I was tempted to use #ifndef __FreeBSD__ but after reading the porting recommendations I'm in doubt. The configure script of the package I'm trying to port doesn't seem to detect and BSDism so I don't have another symbol I can rely on unless I add one one the Makefile or configure script. Comments? --Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de From owner-freebsd-ports Tue Aug 6 04:47:14 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id EAA15327 for ports-outgoing; Tue, 6 Aug 1996 04:47:14 -0700 (PDT) Received: from mail.barrnet.net (mail.barrnet.net [131.119.246.7]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id EAA15321 for ; Tue, 6 Aug 1996 04:47:07 -0700 (PDT) Received: from haldjas.folklore.ee (Haldjas.folklore.ee [193.40.6.121]) by mail.barrnet.net (8.7.5/MAIL-RELAY-LEN) with SMTP id EAA20582 for ; Tue, 6 Aug 1996 04:47:03 -0700 (PDT) Received: (from narvi@localhost) by haldjas.folklore.ee (8.6.12/8.6.12) id OAA20706; Tue, 6 Aug 1996 14:50:50 +0300 Date: Tue, 6 Aug 1996 14:50:49 +0300 (EET DST) From: Narvi To: "Christoph P. Kukulies" cc: freebsd-ports@freefall.freebsd.org Subject: Re: syserrlist (how to define out) In-Reply-To: <199608061107.NAA09467@gilberto.physik.rwth-aachen.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Tue, 6 Aug 1996, Christoph P. Kukulies wrote: > The porting section in the handbook says to use __FreeBSD__ sparsely. > So what would be the correct method to outcondition a > > extern char *sys_errlist[]; > > bogon? > > I was tempted to use #ifndef __FreeBSD__ but after reading the > porting recommendations I'm in doubt. The configure script of > the package I'm trying to port doesn't seem to detect and BSDism > so I don't have another symbol I can rely on unless I add one > one the Makefile or configure script. > > Comments? > The portying section also talks about sys/params.h and BSD. Basicly - you use something like #ifdef USE_PARAM_H #include #endif and then check if BSD is defined... Sander > > --Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de > From owner-freebsd-ports Tue Aug 6 07:09:06 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id HAA20202 for ports-outgoing; Tue, 6 Aug 1996 07:09:06 -0700 (PDT) Received: from grumble.grondar.za (grumble.grondar.za [196.7.18.130]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id HAA20175 for ; Tue, 6 Aug 1996 07:08:20 -0700 (PDT) Received: from grumble.grondar.za (mark@localhost.grondar.za [127.0.0.1]) by grumble.grondar.za (8.7.5/8.7.3) with ESMTP id PAA14488; Tue, 6 Aug 1996 15:46:36 +0200 (SAT) Message-Id: <199608061346.PAA14488@grumble.grondar.za> To: "Christoph P. Kukulies" cc: freebsd-ports@freefall.freebsd.org Subject: Re: syserrlist (how to define out) Date: Tue, 06 Aug 1996 15:46:35 +0200 From: Mark Murray Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk "Christoph P. Kukulies" wrote: > The porting section in the handbook says to use __FreeBSD__ sparsely. > So what would be the correct method to outcondition a > > extern char *sys_errlist[]; > > bogon? > > I was tempted to use #ifndef __FreeBSD__ but after reading the > porting recommendations I'm in doubt. The configure script of > the package I'm trying to port doesn't seem to detect and BSDism > so I don't have another symbol I can rely on unless I add one > one the Makefile or configure script. Take a look at how I did it in the patches of games/xboard. M -- Mark Murray 46 Harvey Rd, Claremont, Cape Town 7700, South Africa +27 21 61-3768 GMT+0200 Finger mark@grondar.za for PGP key From owner-freebsd-ports Tue Aug 6 09:42:22 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA29023 for ports-outgoing; Tue, 6 Aug 1996 09:42:22 -0700 (PDT) Received: from al.imforei.apana.org.au (root@al.imforei.apana.org.au [202.12.89.41]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id JAA29008; Tue, 6 Aug 1996 09:42:16 -0700 (PDT) Received: (from pjchilds@localhost) by al.imforei.apana.org.au (8.7.5/8.7.3) id CAA12778; Wed, 7 Aug 1996 02:12:12 +0930 (CST) From: Peter Childs Message-Id: <199608061642.CAA12778@al.imforei.apana.org.au> Subject: SSLeay port fail To: freebsd-ports@freebsd.org Date: Wed, 7 Aug 1996 02:12:11 +0930 (CST) Cc: markm@freebsd.org X-Mailer: ELM [version 2.4ME+ PL13 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Gday. I've got a 2.1.5 system here without the DES libraries and the SSLeay port fails for me. It does a bit, then fails with ./crypto/cryptlib.c:59: des.h: No such file or directory Now there is a des.h in the SSLeay crypto/des directory that i can symlink into the "tmp" directory and the build continues.. but the Makefile.FreeBSD that is executing includes libraries = -lmd -ldes which means that i'll need the DES libs?? That seems a little strange to me since SSLeay was developed outside the US. Someone wanna set me straight. Ta. Regards, Peter -- Peter Childs --- http://www.imforei.apana.org.au/~pjchilds Finger pjchilds@al.imforei.apana.org.au for public PGP key From owner-freebsd-ports Tue Aug 6 09:43:04 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA29063 for ports-outgoing; Tue, 6 Aug 1996 09:43:04 -0700 (PDT) Received: from bacall.lodgenet.com (bacall.lodgenet.com [205.138.147.242]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id JAA29053 for ; Tue, 6 Aug 1996 09:42:56 -0700 (PDT) Received: (from mail@localhost) by bacall.lodgenet.com (8.6.12/8.6.12) id LAA31225 for ; Tue, 6 Aug 1996 11:42:40 -0500 Received: from garbo.lodgenet.com(204.124.123.250) by bacall via smap (V1.3) id sma031210; Tue Aug 6 11:42:27 1996 Received: from jake.lodgenet.com (jake.lodgenet.com [204.124.120.30]) by garbo.lodgenet.com (8.6.12/8.6.9) with ESMTP id LAA01986 for ; Tue, 6 Aug 1996 11:42:31 -0500 Received: from localhost (localhost [127.0.0.1]) by jake.lodgenet.com (8.7.5/8.6.12) with SMTP id LAA09289 for ; Tue, 6 Aug 1996 11:42:45 -0500 (CDT) Message-Id: <199608061642.LAA09289@jake.lodgenet.com> X-Authentication-Warning: jake.lodgenet.com: Host localhost [127.0.0.1] didn't use HELO protocol X-Mailer: exmh version 1.6.2 7/18/95 To: ports@freebsd.org Subject: tk4.1 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 06 Aug 1996 11:42:44 -0500 From: "Eric L. Hernes" Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk has anybody looked at fixing the tk4.1 port to use /usr/src/contrib/tcl in -current? eric. -- erich@lodgenet.com http://rrnet.com/~erich erich@rrnet.com From owner-freebsd-ports Tue Aug 6 10:28:02 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id KAA01700 for ports-outgoing; Tue, 6 Aug 1996 10:28:02 -0700 (PDT) Received: from grumble.grondar.za (grumble.grondar.za [196.7.18.130]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id KAA01653 for ; Tue, 6 Aug 1996 10:27:54 -0700 (PDT) Received: from grumble.grondar.za (mark@localhost.grondar.za [127.0.0.1]) by grumble.grondar.za (8.7.5/8.7.3) with ESMTP id TAA14865; Tue, 6 Aug 1996 19:19:14 +0200 (SAT) Message-Id: <199608061719.TAA14865@grumble.grondar.za> To: Peter Childs cc: freebsd-ports@freebsd.org Subject: Re: SSLeay port fail Date: Tue, 06 Aug 1996 19:19:14 +0200 From: Mark Murray Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Peter Childs wrote: > I've got a 2.1.5 system here without the DES libraries and > the SSLeay port fails for me. > > It does a bit, then fails with > > ./crypto/cryptlib.c:59: des.h: No such file or directory > > Now there is a des.h in the SSLeay crypto/des directory that > i can symlink into the "tmp" directory and the build continues.. > but the > > Makefile.FreeBSD > > that is executing includes libraries > > = -lmd -ldes > > which means that i'll need the DES libs?? That seems a little > strange to me since SSLeay was developed outside the US. FreeBSD's DES is SSLeay's DES. I know, because I negotiated this with Eric Young, and I installed this DES into FreeBSD, and I created this port. > Someone wanna set me straight. Install DES :-). You can get it (Legally) from ftp.internat.freebsd.org. M -- Mark Murray 46 Harvey Rd, Claremont, Cape Town 7700, South Africa +27 21 61-3768 GMT+0200 Finger mark@grondar.za for PGP key From owner-freebsd-ports Tue Aug 6 14:03:03 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA23677 for ports-outgoing; Tue, 6 Aug 1996 14:03:03 -0700 (PDT) Received: from bdd.net (bdd.net [207.61.119.1]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id OAA23490 for ; Tue, 6 Aug 1996 14:02:18 -0700 (PDT) Received: from localhost (james@localhost) by bdd.net (8.7.5/8.7.3) with SMTP id RAA06508 for ; Tue, 6 Aug 1996 17:02:09 -0400 (EDT) Date: Tue, 6 Aug 1996 17:02:09 -0400 (EDT) From: James FitzGibbon To: ports@freebsd.org Subject: Maintenance of msql Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk The msql port doesn't currently have a maintainer. Any objections to me taking it over ? I have the patches for the upgrade to 1.0.16 ready to go, and being an avid user, I'll be sure to keep it current. -- j. ---------------------------------------------------------------------------- | James FitzGibbon james@nexis.net | | Integrator, The Nexis Group Voice/Fax : 416 410-0100 | ---------------------------------------------------------------------------- From owner-freebsd-ports Tue Aug 6 16:20:25 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id QAA12285 for ports-outgoing; Tue, 6 Aug 1996 16:20:25 -0700 (PDT) Received: from sunrise.cs.berkeley.edu (root@sunrise.CS.Berkeley.EDU [128.32.38.121]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id QAA12167 for ; Tue, 6 Aug 1996 16:19:54 -0700 (PDT) Received: (from asami@localhost) by sunrise.cs.berkeley.edu (8.7.5/8.6.12) id QAA02582; Tue, 6 Aug 1996 16:19:30 -0700 (PDT) Date: Tue, 6 Aug 1996 16:19:30 -0700 (PDT) Message-Id: <199608062319.QAA02582@sunrise.cs.berkeley.edu> To: narvi@haldjas.folklore.ee CC: FreeBSD-Ports@FreeBSD.org In-reply-to: (message from Narvi on Sat, 3 Aug 1996 21:27:14 +0300 (EET DST)) Subject: Re: Proposal for a new bsd.port.mk variable. From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk * I would like to make a proposal for a new bsd.port.mk dependency * variable, EXTRACT_DEPENDS. >From the latest handbook: === BUILD_DEPENDS This variable specifies executables this port requires to build. Like RUN_DEPENDS, it is a list of `exec:dir' pairs. For example, BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip will check for an executable called `unzip', and descend into the archivers/unzip subdirectory of your ports tree to build and install it if it is not found. Note that `build' here means everything from extracting to compilation. The dependency is checked from within the extract target. === So it's there. :) Satoshi From owner-freebsd-ports Tue Aug 6 19:27:41 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id TAA23630 for ports-outgoing; Tue, 6 Aug 1996 19:27:41 -0700 (PDT) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id TAA23625 for ; Tue, 6 Aug 1996 19:27:36 -0700 (PDT) Received: (from obrien@localhost) by relay.nuxi.com (8.7.5/8.6.12) id TAA02633 for freebsd-ports@freebsd.org; Tue, 6 Aug 1996 19:27:52 -0700 (PDT) From: "David E. O'Brien" Message-Id: <199608070227.TAA02633@relay.nuxi.com> Subject: Re: Writing man pages To: freebsd-ports@freebsd.org (FreeBSD ports list) Date: Tue, 6 Aug 1996 19:27:51 -0700 (PDT) In-Reply-To: from Chuck Robey at "Aug 5, 96 03:00:10 pm" X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > On Mon, 5 Aug 1996, James FitzGibbon wrote: > > > Question: if the author of a program provides no manpage-style > > documentation, is it customary for the porter to create one ? If so, can > > someone point be to a resource on writing man pages ? > > Well, it'd be kinda unusual, yes, but appreciated! The only stuff I know > is in the mdoc and mdoc.sample man pages, and perusing other man pages to > see how it's done. You also can look at /usr/share/misc{mdoc.template,man.template} Filling in the blanks of /usr/share/misc/mdoc.template would probably be the place to start. -- David (obrien@cs.ucdavis.edu) From owner-freebsd-ports Wed Aug 7 00:45:51 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA22761 for ports-outgoing; Wed, 7 Aug 1996 00:45:51 -0700 (PDT) Received: from silvia.HIP.Berkeley.EDU (wck-ca14-58.ix.netcom.com [207.92.174.122]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id AAA22743 for ; Wed, 7 Aug 1996 00:45:16 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.7.5/8.6.9) id AAA01614; Wed, 7 Aug 1996 00:44:52 -0700 (PDT) Date: Wed, 7 Aug 1996 00:44:52 -0700 (PDT) Message-Id: <199608070744.AAA01614@silvia.HIP.Berkeley.EDU> To: narvi@haldjas.folklore.ee CC: FreeBSD-Ports@FreeBSD.org In-reply-to: (message from Narvi on Wed, 7 Aug 1996 10:33:29 +0300 (EET DST)) Subject: Re: Proposal for a new bsd.port.mk variable. From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk * Understood. OOPS! It is even in my oldish handbook. So it happens if you * only look at bsd.port.mk... Well, if you want to look at bsd.port.mk: === # BUILD_DEPENDS - A list of "prog:dir" pairs of other ports this # package depends to build (somewhere between the # "extract" to "build" stage). "prog" is the name === Maybe I should have added "inclusive" after "stage"? :) Satoshi From owner-freebsd-ports Wed Aug 7 01:32:42 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id BAA24961 for ports-outgoing; Wed, 7 Aug 1996 01:32:42 -0700 (PDT) Received: from silvia.HIP.Berkeley.EDU (wck-ca14-58.ix.netcom.com [207.92.174.122]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id BAA24936 for ; Wed, 7 Aug 1996 01:32:12 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.7.5/8.6.9) id BAA01874; Wed, 7 Aug 1996 01:31:12 -0700 (PDT) Date: Wed, 7 Aug 1996 01:31:12 -0700 (PDT) Message-Id: <199608070831.BAA01874@silvia.HIP.Berkeley.EDU> To: narvi@haldjas.folklore.ee CC: FreeBSD-Ports@FreeBSD.org In-reply-to: (message from Narvi on Wed, 7 Aug 1996 11:19:04 +0300 (EET DST)) Subject: Re: Proposal for a new bsd.port.mk variable. From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk * Yes, that would have made it less confusing - in the use of between the * extract and build stage doesn't make clear that the extract is included * in the dependency. I can't claim to be too good in English but I'm afraid * it may also confuse others. Ok, fixed. Satoshi * PS. It seems that I am again absolutely unable to reach freebsd.org * either by mail or ftp. Is it OK if I send my ports directly to you or * upload them to some alternative place and notify you? Try using a mail bouncer, e.g., ports%freebsd.org@sunrise.cs.berkeley.edu, if you can reach me. (I can't guarantee that whatever you send to my mailbox will get looked at in a timely fashion. ;) From owner-freebsd-ports Wed Aug 7 01:42:06 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id BAA25568 for ports-outgoing; Wed, 7 Aug 1996 01:42:06 -0700 (PDT) Received: from silvia.HIP.Berkeley.EDU (wck-ca14-58.ix.netcom.com [207.92.174.122]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id BAA25562 for ; Wed, 7 Aug 1996 01:41:58 -0700 (PDT) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.7.5/8.6.9) id BAA01936; Wed, 7 Aug 1996 01:41:03 -0700 (PDT) Date: Wed, 7 Aug 1996 01:41:03 -0700 (PDT) Message-Id: <199608070841.BAA01936@silvia.HIP.Berkeley.EDU> To: james@nexis.net CC: ports@FreeBSD.org In-reply-to: (message from James FitzGibbon on Tue, 6 Aug 1996 17:02:09 -0400 (EDT)) Subject: Re: Maintenance of msql From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk * The msql port doesn't currently have a maintainer. Any objections to me * taking it over ? I have the patches for the upgrade to 1.0.16 ready to Absolutely not. It's all yours. :) Satoshi From owner-freebsd-ports Wed Aug 7 01:59:57 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id BAA26732 for ports-outgoing; Wed, 7 Aug 1996 01:59:57 -0700 (PDT) Received: from sunrise.cs.berkeley.edu (root@sunrise.CS.Berkeley.EDU [128.32.38.121]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id BAA26717 for ; Wed, 7 Aug 1996 01:59:26 -0700 (PDT) Received: from haldjas.folklore.ee (Haldjas.folklore.ee [193.40.6.121]) by sunrise.cs.berkeley.edu (8.7.5/8.6.12) with SMTP id BAA03461 for ; Wed, 7 Aug 1996 01:59:12 -0700 (PDT) Received: (from narvi@localhost) by haldjas.folklore.ee (8.6.12/8.6.12) id MAA27027; Wed, 7 Aug 1996 12:06:18 +0300 Date: Wed, 7 Aug 1996 12:06:17 +0300 (EET DST) From: Narvi To: ports%freebsd.org@sunrise.cs.berkeley.edu Subject: Port of setter) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk HI! This is port of setter, tcl/tk frontend to xset. Sander -----------------Cut here------------------------------------ begin 664 setter-port.tgz M'XL(`````````^U9;5/;.!#FJ_4K=@HS=T?KV$YL!]+2*R5NFZ$)C)TK_="9 MCF(KB2]^R5DRH67X[[>R38!.::8S))VA?B"1=R5+&Z]6VD?F3`B6:5OK!)AZ MNVW!%H#1MG19(J[+2@"[J1NV;9AZ$YOI;:.]!=9:K:J0N M\Z;W\4H;A0DA-(HZ4,X60LJR0Q3.`D5E\.13!U7P\=U)WP$MYYGVT3#D?7C+ M\^W=^(^#M2RYJ^(?[-8W\=\TVZTZ_C>!?M>" M/ZM(FGS]"PY@I%/;:K(]R]XSS?&^WPKHOFW[OF'OV>:>93R^&/B=4<7_G`I_ MNJX,\.?R/T/&?\NTZOQO$_C&_T6I4OJ@8ZS,__1E_H=_TO^FWFK7Z_\FL+N[ M"S>)E#+,&1SF$W0'.J%CMCHZ7NSOVT15U1^TLSLMLVRW>Q=2AM:S/2@$V4GK MV3Y@J1*`[Z>,547&HI"-81Q146E8(K(OE9KGR8PEY&E1,>;2.<1.V<1-(JJ47KQ^^YI5?ROB?F56!'_ MAMZTENL_K@%%_F?K=?QO`MO*:9H)7@2*G``P3K-K#K2M?&`9#],$@_&_/,Q8 MT%&,AH[Z+A4,_(QA@3K%EFL!/LAR"=A6SJ9IC&J%TR1@&7Q@/)S!BU)Z-:51 M\"_EC7$:S:(T8PW&7I)M0KH];S@X[#L'RC4%DYHWO?>.=ZW"#)60_J$W=-S/ M7F\H*\9BWM$T_&XD+.7I6#3\--8BFDQR.L$-3?B11B,?#8TT'Q<)0HX.A\[; M$[?G>$\/E`O#@%R$42B^$.+^,_C<=4Z=01<[+@CQIX;101Y\X@Z]@H)B.X!\K]/XR0,_?89\#A9;HW[<)W_S2;K>P?P\^?_AJ7K=?Z_"=SR_]%)O^\, MA@\_QLKS'[.Y//^QR_,?JUWO_QN!5_@?0@YRIQ0S&&=I(E@28)8,%S@[ZLW@ M4>-6_'<=[\A=QQBKW__H2_YO(^&4YS^64A\*?R@J7<=D' M!&Q,\T@@E4D$S*FH*E7D*T%AM%=_^U:;4J%%CP_@?L.4. %3@`H``#_ ` end From owner-freebsd-ports Wed Aug 7 02:03:40 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id CAA27052 for ports-outgoing; Wed, 7 Aug 1996 02:03:40 -0700 (PDT) Received: from sunrise.cs.berkeley.edu (root@sunrise.CS.Berkeley.EDU [128.32.38.121]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id CAA27019 for ; Wed, 7 Aug 1996 02:03:09 -0700 (PDT) Received: from haldjas.folklore.ee (Haldjas.folklore.ee [193.40.6.121]) by sunrise.cs.berkeley.edu (8.7.5/8.6.12) with SMTP id CAA03473 for ; Wed, 7 Aug 1996 02:02:46 -0700 (PDT) Received: (from narvi@localhost) by haldjas.folklore.ee (8.6.12/8.6.12) id MAA27058; Wed, 7 Aug 1996 12:09:22 +0300 Date: Wed, 7 Aug 1996 12:09:22 +0300 (EET DST) From: Narvi To: ports%freebsd.org@sunrise.cs.berkeley.edu Subject: Safe-tcl Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk HI! Is safe tcl also included in the -current just as tcl is? If not is someone working on porting it to FreeBSD? If you are pkease respond - otherwise I will undertake it. Sander From owner-freebsd-ports Wed Aug 7 02:05:38 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id CAA27218 for ports-outgoing; Wed, 7 Aug 1996 02:05:38 -0700 (PDT) Received: from sunrise.cs.berkeley.edu (root@sunrise.CS.Berkeley.EDU [128.32.38.121]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id CAA27181 for ; Wed, 7 Aug 1996 02:04:57 -0700 (PDT) Received: from haldjas.folklore.ee (Haldjas.folklore.ee [193.40.6.121]) by sunrise.cs.berkeley.edu (8.7.5/8.6.12) with SMTP id CAA03479 for ; Wed, 7 Aug 1996 02:04:25 -0700 (PDT) Received: (from narvi@localhost) by haldjas.folklore.ee (8.6.12/8.6.12) id MAA27084; Wed, 7 Aug 1996 12:11:25 +0300 Date: Wed, 7 Aug 1996 12:11:25 +0300 (EET DST) From: Narvi To: ports%freebsd.org@sunrise.cs.berkeley.edu Subject: Port of printop Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk HI! This is my fith port (first of which is gone), printop. Printop is tcl/tk frontend to the printing system - lpd, lpc and lpq. Enjoy! Sander PS. As with all of my ports - the mail address in the Makefile is correct instaed of being different from this one. -------------------- Cut here ------------------------------------------ begin 664 printop-port.tgz M'XL(`````````^U9>W/:.!#/O]:GV$DR]Y@+Q@8_VK2TI<%-/`V/L6G3SF2F M8[``%V,3RR37Z_#=;^57($TOS230N3O_!FQI)>U*6JVD7<\C+XC#>75G@P!% MTG45=@!D797X&Y&_LPQH-4G6-4G1:E@-4=L!=9.=RK%@L1,![`1.=.G]0[VK M":7^-CJT7MQNW([_N?Y?FYV6:34$8?]KSS+>F!^6U8$7D%/S M]4VR[PVJV6HA]DG3,I(*U^5LXD2TJ$'VR)Y@QC!SOL"`PCQDS!OX%.*)$\.7 M<`%7GN_#Q+E$4HBUIA2&$R<84\;S\83"K9(A6:?(G/>PW6T9#4%3E$S:B#.. MD#.;@,<@".,DK8@R.(%;#2/P8G!#RH)?8_`]%.T%L#;N`P@O:11Y+D5^9Z9] M@F/,V_(L%TPR^LO&C3GC="0*F4Q">E;W^(UY:M@-(9\6[/4Z11R.QE"D9VXZ MM5F=HV[OHV4>G_3!^-!L]Y`&9L?N-T]/FWVSVP'+:+;:!IR8=K]K?4S*K'=' MO,@FQ/']PT(N\0)4:+5'U87+.(*KG+%'@)[]FS_:[8&EM4T MN7PVWCTG0M:`T3A7Z:>Y$T_@?#?AX8=#QU]=S>>[";M;ZA>#/=_-6*]T#E[D MU=J_& M^[(#\="OQE,816$0T\#E-W%_[A[@8PB_X/-"+/?\_QA6[;]EV$?6!F3<9?]U M==7^96[_:ETM[7\;N*?]`WJU60MTP,(KEKCJ"T:CQ&^G@<.=?/28P?58DDX6 MF!>,#^#2HU=8(XX\=/+1\^8M4^<++A9T0;,:21I0*_&")9RX]#1[`!#1&;KH M*5?X'`Z82$A_@KW'7QXC0!>>>6$`>)TEQ$86-"KWK>]@U?Y[IZ;]^*?_#]B_ MK'QC_[I4VO\VP.,:>3!A)3)170E/W4Z?N60MXEVO\VL"?TPBAF MD.L?1F%41!?WA/?941K1BX474?=0X(?JGM!R8@K#B.(+:8(&S<489Q+DIT\U M'CJ?A#,D"^GA"^\I\Z;PG"6Y5Q/'=S\[3!R%_M0/(RI2^H('UEMHX9UFV[B. MC7-9O;?':\1*8NGL\CI;?-;XAI($H8GH!4-_X5)X @/F"N.$=-B;/IBW*C*U&B1(D2)4H\!'\##$3!L``H``#X ` end From owner-freebsd-ports Wed Aug 7 02:39:25 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id CAA29517 for ports-outgoing; Wed, 7 Aug 1996 02:39:25 -0700 (PDT) Received: from mail.cs.tu-berlin.de (mail.cs.tu-berlin.de [130.149.17.13]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id CAA29479 for ; Wed, 7 Aug 1996 02:38:33 -0700 (PDT) Received: from caramba.cs.tu-berlin.de (wosch@caramba.cs.tu-berlin.de [130.149.17.12]) by mail.cs.tu-berlin.de (8.6.12/8.6.12) with ESMTP id LAA10551 for ; Wed, 7 Aug 1996 11:34:18 +0200 From: Wolfram Schneider Received: (from wosch@localhost) by caramba.cs.tu-berlin.de (8.7.5/8.7.2) id LAA25145; Wed, 7 Aug 1996 11:34:11 +0200 (MET DST) Date: Wed, 7 Aug 1996 11:34:11 +0200 (MET DST) Message-Id: <199608070934.LAA25145@caramba.cs.tu-berlin.de> To: ports@freebsd.org Subject: fyi: www benchmark MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk http://www.zeus.co.uk/products/server/intro/bench Of course the zeus server is the fastest WWW server. A FreeBSD port is available ;-) See also http://www.sun.com/sun-on-net/web-server-perf.html http://www.software.hp.com/internet/perf/performance.html Wolfram From owner-freebsd-ports Wed Aug 7 02:59:46 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id CAA00688 for ports-outgoing; Wed, 7 Aug 1996 02:59:46 -0700 (PDT) Received: from al.imforei.apana.org.au (root@[202.12.89.41]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id CAA00670 for ; Wed, 7 Aug 1996 02:59:25 -0700 (PDT) Received: (from pjchilds@localhost) by al.imforei.apana.org.au (8.7.5/8.7.3) id TAA03260; Wed, 7 Aug 1996 19:26:37 +0930 (CST) From: Peter Childs Message-Id: <199608070956.TAA03260@al.imforei.apana.org.au> Subject: Re: SSLeay port fail To: mark@grondar.za Date: Wed, 7 Aug 1996 19:26:37 +0930 (CST) Cc: freebsd-ports@freebsd.org In-Reply-To: <199608061719.TAA14865@grumble.grondar.za> from Mark Murray at "Aug 6, 96 07:19:14 pm" X-Mailer: ELM [version 2.4ME+ PL13 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > Peter Childs wrote: > > I've got a 2.1.5 system here without the DES libraries and > > the SSLeay port fails for me. > > > > It does a bit, then fails with > > > > ./crypto/cryptlib.c:59: des.h: No such file or directory [cut] > > Someone wanna set me straight. > > Install DES :-). > > You can get it (Legally) from ftp.internat.freebsd.org. Great stuff... just to follow up on this for the mailing list, this works great. With a 2.1.5 system like mine you'll need to get the 2.2-current /secure dist and compile the libdes library and install to get it to work. The 2.1.5 secure dist doesn't have one of the des functions (des_xcbc_encrpyt) that the 2.2 secure dist does... Now onto building a SSL capable apache server :) Regards, Peter -- Peter Childs --- http://www.imforei.apana.org.au/~pjchilds Finger pjchilds@al.imforei.apana.org.au for public PGP key From owner-freebsd-ports Wed Aug 7 03:33:52 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id DAA02887 for ports-outgoing; Wed, 7 Aug 1996 03:33:52 -0700 (PDT) Received: from falcon.tioga.com (root@falcon.tioga.com [205.146.65.5]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id DAA02882 for ; Wed, 7 Aug 1996 03:33:49 -0700 (PDT) Received: (from tbalfe@localhost) by falcon.tioga.com (8.7.5/8.6.12) id GAA01541; Wed, 7 Aug 1996 06:33:41 -0400 (EDT) Date: Wed, 7 Aug 1996 06:33:41 -0400 (EDT) From: Thomas J Balfe To: freebsd-ports@freebsd.org Subject: netmaze-0.81.tar.gz Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I made a port of netmaze 0.81 and stuck it in ~incoming on wcarchive. It's a multiplayer maze situation where you get to blow your friends up and stuff. ======================================================================== Thomas J Balfe tbalfe@tioga.com President http://www.tioga.com/ Tioga Communications, Inc 814-867-4770 ======================================================================== "Humanity has been compared...to a sleeper who handles matches in his sleep and wakes to find himself in flames." - H.G. Wells The World Set Free 1914 From owner-freebsd-ports Wed Aug 7 04:36:17 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id EAA06886 for ports-outgoing; Wed, 7 Aug 1996 04:36:17 -0700 (PDT) Received: from grumble.grondar.za (grumble.grondar.za [196.7.18.130]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id EAA06854 for ; Wed, 7 Aug 1996 04:36:06 -0700 (PDT) Received: from grumble.grondar.za (mark@localhost.grondar.za [127.0.0.1]) by grumble.grondar.za (8.7.5/8.7.3) with ESMTP id NAA01972; Wed, 7 Aug 1996 13:24:17 +0200 (SAT) Message-Id: <199608071124.NAA01972@grumble.grondar.za> To: Peter Childs cc: freebsd-ports@freebsd.org Subject: Re: SSLeay port fail Date: Wed, 07 Aug 1996 13:24:16 +0200 From: Mark Murray Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Peter Childs wrote: > > Install DES :-). > > > > You can get it (Legally) from ftp.internat.freebsd.org. > > Great stuff... just to follow up on this for the mailing list, this > works great. Magic! > With a 2.1.5 system like mine you'll need to get the 2.2-current > /secure dist and compile the libdes library and install to get it > to work. > > The 2.1.5 secure dist doesn't have one of the des functions > (des_xcbc_encrpyt) that the 2.2 secure dist does... True... > Now onto building a SSL capable apache server :) Wait a day or three and get the one that I am building now. :-) M -- Mark Murray 46 Harvey Rd, Claremont, Cape Town 7700, South Africa +27 21 61-3768 GMT+0200 Finger mark@grondar.za for PGP key From owner-freebsd-ports Wed Aug 7 07:53:02 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id HAA00733 for ports-outgoing; Wed, 7 Aug 1996 07:53:02 -0700 (PDT) Received: from seagull.rtd.com (root@seagull.rtd.com [198.102.68.2]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id HAA00711 for ; Wed, 7 Aug 1996 07:52:59 -0700 (PDT) Received: (from dgy@localhost) by seagull.rtd.com (8.7.5/8.7.3) id HAA27249 for freebsd-ports@freefall.cdrom.com; Wed, 7 Aug 1996 07:52:49 -0700 (MST) From: Don Yuniskis Message-Id: <199608071452.HAA27249@seagull.rtd.com> Subject: acs patch To: freebsd-ports@freefall.FreeBSD.org (FreeBSD ports) Date: Wed, 7 Aug 1996 07:52:49 -0700 (MST) X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Greetings! The following patch applies to the 2.1R port of acs. All it does is move acs specific stuff into ${PREFIX}/lib/acs, copy the supplied examples into the ./examples subdirectory thereof and create a nominal acs.rc file in a *predefined* location (instead of somewhere in $PATH). I figured the examples were worth saving since there's no man page and the online help is a little skimpy... Note PLIST needs to reflect these additions (and the new location for acs.hlp). Thx! --don ---------------8<---------------8<--------------8<-------------- diff -ruN work.old/acs016/Makefile work/acs016/Makefile --- work.old/acs016/Makefile Wed Aug 7 06:13:06 1996 +++ work/acs016/Makefile Wed Aug 7 07:32:55 1996 @@ -3,5 +3,9 @@ install: (cd src/FreeBSD; install -c -s -m 755 -g bin -o bin acs ${PREFIX}/bin) - (cd doc; install -c -m 644 -g bin -o bin acs.hlp ${PREFIX}/lib) + mkdir -p ${PREFIX}/lib/acs + (cd doc; install -c -m 644 -g bin -o bin acs.hlp ${PREFIX}/lib/acs) + install -c -m 644 -g bin -o bin acs.rc ${PREFIX}/lib/acs + mkdir -p ${PREFIX}/lib/acs/examples + (cd examples; install -c -m 644 -g bin -o bin *.ckt *.doc ${PREFIX}/lib/acs/examples) diff -ruN work.old/acs016/acs.rc work/acs016/acs.rc --- work.old/acs016/acs.rc Wed Dec 31 17:00:00 1969 +++ work/acs016/acs.rc Wed Aug 7 07:25:57 1996 @@ -0,0 +1,92 @@ +Initializing system-wide startup configuration... + +' This is the system-wide acs(1) startup configuration file. +' It should be installed as /usr/local/lib/acs/acs.rc + +' Blank lines are ignored. +' Comments are introduced with '\''. +' The first line is echoed to the display. + +' The order in which acs(1) parses the configuration files is: +' /usr/local/lib/acs/acs.rc +' $HOME/.acsrc + + +' Error levels (least to most tolerant): +' NAG, TRACE, LOG, DEBUG, PICKY, WARNING, ERROR, DISASTER +' +' BYPASS, NOBYPASS, VBYPASS +' Integration methods: +' GEAR, TRAPEZOID +' N.B. 300K = 26.85C + + +.set noacct +.set bypass +.set cstray +.set nodupcheck +.set incmode +.set nolist +.set lubypass +.set mod +.set nonode +.set noopts +.set nopage +.set picky +.set norstray +.set noshowall + +.set abstol 1e-12 +.set chgtol 1e-14 +.set cptime 30000 +.set damp 0.99 +.set defad 0. +.set defas 0. +.set defl 100e-6 +.set defw 100e-6 +.set diodeflags 0 +.set dtmin 1e-12 +.set dtratio 1e9 +.set floor 1e-20 +.set foooo 0 +.set gmin 1e-12 +.set harmonics 9 +.set inwidth 80 +.set itl1 100 +.set itl2 50 +.set itl3 4 +.set itl4 10 +.set itl5 5000 +.set itl6 0 +.set itl7 1 +.set itl8 99 +.set limit 1e10 +.set limpts 201 +.set limtim 2 +.set lvlcod 2 +.set lvltim 2 +.set maxord 2 +.set method TRAPEZOID +.set mode MIXED +.set mosflags 0 +.set numdgt 4 +.set order AUTO +.set outwidth 80 +.set pivrel 1e-3 +.set pivtol 1e-13 +.set reltol .001 +.set seed 1 +.set short 10e-6 +.set tempamb 26.85 +.set tnom 26.85 +.set transits 2 +.set trreject .5 +.set trstepgrow 2. +.set trstepshrink 8. +.set trtol 7.0 +.set vmax 1e10 +.set vmin -1e10 +.set vntol 1e-6 +.set wczero 1e-9 +.set xdivisions 4. +.set ydivisions 4. diff -ruN work.old/acs016/src/_unix.h work/acs016/src/_unix.h --- work.old/acs016/src/_unix.h Wed Aug 7 06:13:06 1996 +++ work/acs016/src/_unix.h Sun Aug 4 03:24:15 1996 @@ -22,14 +22,14 @@ #define ENDDIR "/" #define PATHSEP ':' #define SYSTEMSTARTFILE "acs.rc" -#define SYSTEMSTARTPATH getenv("PATH") +#define SYSTEMSTARTPATH "/usr/local/lib/acs" #define USERSTARTFILE ".acsrc" #define USERSTARTPATH getenv("HOME") #define EDITFILE "/tmp/EXXXXXX" #define STEPFILE "/tmp/SXXXXXX" #define PLOTFILE "acs.plot" #define HELPFILE "acs.hlp" -#define HELPPATH "/usr/local/lib" +#define HELPPATH "/usr/local/lib/acs" /* standard collection of includes */ #include From owner-freebsd-ports Wed Aug 7 08:17:51 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id IAA05171 for ports-outgoing; Wed, 7 Aug 1996 08:17:51 -0700 (PDT) Received: from atena.eurocontrol.fr ([147.196.69.10]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id IAA05135 for ; Wed, 7 Aug 1996 08:17:32 -0700 (PDT) Received: by atena.eurocontrol.fr; (5.65v3.2/1.3/10May95) id AA00025; Wed, 7 Aug 1996 16:50:39 +0200 Received: from mozart.eurocontrol.fr by eurocontrol.fr with ESMTP (1.37.109.16/16.2) id AA221909278; Wed, 7 Aug 1996 16:47:59 +0200 Message-Id: <199608071447.AA221909278@euro.eurocontrol.fr> Received: by mozart.eurocontrol.fr (1.37.109.16/16.2) id AA037549277; Wed, 7 Aug 1996 16:47:57 +0200 Date: Wed, 7 Aug 1996 16:47:57 +0200 From: ollivier.robert@eurocontrol.fr (Ollivier Robert) To: ports@freebsd.org Subject: FYI> GNU Java (Guave) 0.2.5 release X-Mailer: Mutt 0.38 Mime-Version: 1.0 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk It may be a useful to have this along with Kaffe. ------- start of forwarded message ------- From: jh@Germany.EU.net (Joerg Heitkoetter) Newsgroups: de.comp.gnu,de.comp.lang.java,comp.lang.java.misc,gnu.misc.discuss Subject: FYI> GNU Java (Guave) 0.2.5 release Date: 4 Aug 1996 13:42:53 +0200 -- From: David Engberg To: guavac@eecs.com Subject: guavac release, version 0.2.5 Organization: Effective Edge Technologies I have placed a new version of guavac up for public ftp. It mostly concentrates on improving compatibility with Sun's compiler, and also adds a few cosmetic changes. I am including the release note from this release at the end of this message, although it is basically unchanged from previous releases. David Engberg Effective Edge ------------------------------------------------------------------------------- Announcing: guavac 0.2.5 A free compiler for the Java language ------------------------------------------------------------------------------- This is the eleventh public release of guavac, a portable compiler for Java. This release fixes bugs from 0.2.4 and improves compatibility with Sun's JDK compiler. Guavac can be freely used and distributed under the terms of the Gnu Public License. This is an early release and may be difficult for non-programmers to compile and use. All materials needed to compile a HotJava/Netscape compliant applet are included in the guavac distribution. NO proprietary code from Sun is needed, so other tool writers should feel free to include guavac in their systems. Guavac was written in C++ to compile on any Unix system. This has been tested under Solaris 2.x, SunOS 4.x, Iris 5.3, HP/UX 9, and Linux 1.x using gcc-2.7.2 and libg++-2.7.1 and binutils-2.6, but other operating systems should work without any major changes. ***************************************************************************** * You absolutely need these, or later, versions, of gcc, libg++ and binutils * ****************************************************************************** A sparse little blurb about guavac as well as links to a few JDK demo applets compiled by guavac can be found here: http://http.cs.berkeley.edu/~engberg/guavac Guavac sources are available here: ftp://summit.stanford.edu/pub/guavac Guavac sources are mirrored at these locations: ftp://ftp.Germany.EU.net/pub/programming/languages/java/guavac ftp://sunsite.mff.cuni.cz/Languages/Java/guavac ftp://sunsite.auc.dk/pub/languages/java/guavac A mailing list has been established at Effective Edge for guavac users and developers to exchange ideas and solutions. To join the list, send mail to: majordomo@eecs.com With this in the body (not the subject) of the message: subscribe guavac We are developing guavac as part of a much larger project to implement a distributed collaborative space using Java bytecode within a MUD-like system. For this, we have a much greater interest in a robust, publicly used Java compiler than proprietary code that only one company can support, so we are offering guavac under the terms of the Gnu Public License. For (non- exclusive) alternate licensing terms, Java-related consulting/support, or technology parterships, contact Effective Edge at: info@eecs.com ------------------------------------------------------------------------------- -- Have fun, -joke #!/usr/local/bin/perl -s-- -export-a-crypto-system-sig -RSA-in-3-lines-PERL ($k,$n)=@ARGV;$m=unpack(H.$w,$m."\0"x$w),$_=`echo "16do$w 2+4Oi0$d*-^1[d2% Sa2/d0; Wed, 7 Aug 1996 08:31:37 -0700 (PDT) Received: from atena.eurocontrol.fr (atena.uneec.eurocontrol.fr [147.196.69.10]) by who.cdrom.com (8.7.5/8.6.11) with SMTP id IAA01086 for ; Wed, 7 Aug 1996 08:31:33 -0700 (PDT) Received: by atena.eurocontrol.fr; (5.65v3.2/1.3/10May95) id AA02108; Wed, 7 Aug 1996 17:29:47 +0200 Received: from mozart.eurocontrol.fr by eurocontrol.fr with ESMTP (1.37.109.16/16.2) id AA228501689; Wed, 7 Aug 1996 17:28:09 +0200 Message-Id: <199608071528.AA228501689@euro.eurocontrol.fr> Received: by mozart.eurocontrol.fr (1.37.109.16/16.2) id AA069471688; Wed, 7 Aug 1996 17:28:08 +0200 Date: Wed, 7 Aug 1996 17:28:08 +0200 From: ollivier.robert@eurocontrol.fr (Ollivier Robert) To: ports@FreeBSD.ORG (FreeBSD's ports list) Subject: xemacs and shared library "libXm.so.2.0" X-Mailer: Mutt 0.38 Mime-Version: 1.0 Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Is it possible that the xemacs package for 2.1.5 was compiled with Motif ?? ------- start of forwarded message ------- From: jin@gracie.lbl.gov (Jin Guojun[ITG]) Newsgroups: comp.unix.bsd.freebsd.misc Subject: xemacs and shared library "libXm.so.2.0" Date: 6 Aug 1996 19:12:25 GMT xemacs works for 2.1.0-RELEASE, but complains under 2.1.5-RELEASE: % xemacs ld.so failed: Can't find shared library "libXm.so.2.0" Would any one please point me where I can get libXm.so.2.0? Thanks in advance, -- /-------------- Jin Guojun ------------ v ---- Internet: g_jin@lbl.gov ----\ | Imaging & Distributed Computing | Usenet: ucbvax!g_jin@lbl.gov | | Lawrence Berkeley Laboratory | Bitnet: -- | | 50B-2239, Berkeley, CA 94720 - jin%george.lbl.gov@Csa3.LBL.Gov | ------- end of forwarded message ------- -- Ollivier ROBERT -=- Eurocontrol EEC/TIS -=- Ollivier.Robert@eurocontrol.fr From owner-freebsd-ports Wed Aug 7 09:08:14 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA11019 for ports-outgoing; Wed, 7 Aug 1996 09:08:14 -0700 (PDT) Received: from sunrise.cs.berkeley.edu (root@sunrise.CS.Berkeley.EDU [128.32.38.121]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id JAA11000 for ; Wed, 7 Aug 1996 09:08:07 -0700 (PDT) Received: from haldjas.folklore.ee (Haldjas.folklore.ee [193.40.6.121]) by sunrise.cs.berkeley.edu (8.7.5/8.6.12) with SMTP id JAA04038 for ; Wed, 7 Aug 1996 09:07:40 -0700 (PDT) Received: (from narvi@localhost) by haldjas.folklore.ee (8.6.12/8.6.12) id TAA00569; Wed, 7 Aug 1996 19:14:42 +0300 Date: Wed, 7 Aug 1996 19:14:42 +0300 (EET DST) From: Narvi To: Ollivier Robert cc: "FreeBSD's ports list" Subject: Re: xemacs and shared library "libXm.so.2.0" In-Reply-To: <199608071528.AA228501689@euro.eurocontrol.fr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Wed, 7 Aug 1996, Ollivier Robert wrote: > Is it possible that the xemacs package for 2.1.5 was compiled with Motif ?? > Yes, it was, and apparently with shared libs - for the priviledged ones only. > > ------- start of forwarded message ------- > From: jin@gracie.lbl.gov (Jin Guojun[ITG]) > Newsgroups: comp.unix.bsd.freebsd.misc > Subject: xemacs and shared library "libXm.so.2.0" > Date: 6 Aug 1996 19:12:25 GMT > > xemacs works for 2.1.0-RELEASE, but complains under 2.1.5-RELEASE: > > % xemacs > ld.so failed: Can't find shared library "libXm.so.2.0" > > Would any one please point me where I can get libXm.so.2.0? > By buying Motif :-( Or using the package from 2.1.0-RELEASE. Sander > Thanks in advance, > > -- > /-------------- Jin Guojun ------------ v ---- Internet: g_jin@lbl.gov ----\ > | Imaging & Distributed Computing | Usenet: ucbvax!g_jin@lbl.gov | > | Lawrence Berkeley Laboratory | Bitnet: -- | > | 50B-2239, Berkeley, CA 94720 - jin%george.lbl.gov@Csa3.LBL.Gov | > ------- end of forwarded message ------- > > -- > Ollivier ROBERT -=- Eurocontrol EEC/TIS -=- Ollivier.Robert@eurocontrol.fr > From owner-freebsd-ports Wed Aug 7 09:51:00 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA17090 for ports-outgoing; Wed, 7 Aug 1996 09:51:00 -0700 (PDT) Received: from sovcom.kiae.su (sovcom.kiae.su [193.125.152.1]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id JAA17077 for ; Wed, 7 Aug 1996 09:50:56 -0700 (PDT) Received: by sovcom.kiae.su id AA09984 (5.65.kiae-1 ); Wed, 7 Aug 1996 19:43:12 +0300 Received: by sovcom.KIAE.su (UUMAIL/2.0); Wed, 7 Aug 96 19:43:12 +0300 Received: (from ache@localhost) by nagual.ru (8.7.5/8.7.3) id UAA00487; Wed, 7 Aug 1996 20:42:56 +0400 (MSD) Message-Id: <199608071642.UAA00487@nagual.ru> Subject: Apache conf -> etc To: asami@cs.berkeley.edu (Satoshi Asami), ports@freebsd.org Date: Wed, 7 Aug 1996 20:42:56 +0400 (MSD) From: =?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?= (Andrey A. Chernov) Organization: self X-Class: Fast X-Mailer: ELM [version 2.4ME+ PL22 (25)] Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk There is yet one reason against: I doubt, that this change can be made without major retouching of apache internals at least config files and command line arguments must be heavily rewritten. They have so-called WWW server root and keep config, error, and log files under it. All efforts to move config files from server root to etc can only cause more confusion. Apache itself search config files under /conf/httpd.conf by default. Of course it can be tuned by command line arguments f.e. but it leads down to more complexity and confusion, and disallow easy migration from another OSes Apache-handled servers to FreeBSD. All peoples restart their httpds just by killing them and entering 'httpd' again at command prompt. With change you want they must to enter additional long command line arguments and it is completely unwanted thing. -- Andrey A. Chernov http://www.nagual.ru/~ache/ From owner-freebsd-ports Wed Aug 7 09:59:18 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA18322 for ports-outgoing; Wed, 7 Aug 1996 09:59:18 -0700 (PDT) Received: from orion.webspan.net (root@orion.webspan.net [206.154.70.41]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id JAA18313 for ; Wed, 7 Aug 1996 09:59:16 -0700 (PDT) Received: from localhost (gpalmer@localhost [127.0.0.1]) by orion.webspan.net (8.7.5/8.6.12) with SMTP id MAA28226; Wed, 7 Aug 1996 12:59:02 -0400 (EDT) X-Authentication-Warning: orion.webspan.net: Host gpalmer@localhost [127.0.0.1] didn't use HELO protocol To: ollivier.robert@eurocontrol.fr (Ollivier Robert) cc: ports@FreeBSD.ORG (FreeBSD's ports list) From: "Gary Palmer" Subject: Re: xemacs and shared library "libXm.so.2.0" In-reply-to: Your message of "Wed, 07 Aug 1996 17:28:08 +0200." <199608071528.AA228501689@euro.eurocontrol.fr> Date: Wed, 07 Aug 1996 12:59:02 -0400 Message-ID: <28222.839437142@orion.webspan.net> Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Ollivier Robert wrote in message ID <199608071528.AA228501689@euro.eurocontrol.fr>: > Is it possible that the xemacs package for 2.1.5 was compiled with Motif ?? It's already been commented on, and the port of xemacs picked up (wrongly, IMHO) on the fact that our compile machine had Motif installed so we could do Motif packages. I believe this is being addressed. Gary -- Gary Palmer FreeBSD Core Team Member FreeBSD: Turning PC's into workstations. See http://www.FreeBSD.ORG/ for info From owner-freebsd-ports Wed Aug 7 10:22:45 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id KAA21945 for ports-outgoing; Wed, 7 Aug 1996 10:22:45 -0700 (PDT) Received: from sunrise.cs.berkeley.edu (root@sunrise.CS.Berkeley.EDU [128.32.38.121]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id KAA21934 for ; Wed, 7 Aug 1996 10:22:41 -0700 (PDT) Received: from haldjas.folklore.ee (Haldjas.folklore.ee [193.40.6.121]) by sunrise.cs.berkeley.edu (8.7.5/8.6.12) with SMTP id KAA04105 for ; Wed, 7 Aug 1996 10:22:27 -0700 (PDT) Received: (from narvi@localhost) by haldjas.folklore.ee (8.6.12/8.6.12) id UAA01040; Wed, 7 Aug 1996 20:29:35 +0300 Date: Wed, 7 Aug 1996 20:29:35 +0300 (EET DST) From: Narvi To: =?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?= cc: Satoshi Asami , ports%freebsd.org@sunrise.cs.berkeley.edu Subject: Re: Apache conf -> etc In-Reply-To: <199608071642.UAA00487@nagual.ru> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Wed, 7 Aug 1996, =?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?= wrote: > There is yet one reason against: I doubt, that this change can be made > without major retouching of apache internals at least config > files and command line arguments must be heavily rewritten. > They have so-called WWW server root and keep config, error, and log > files under it. All efforts to move config files from server > root to etc can only cause more confusion. Apache itself search > config files under /conf/httpd.conf by default. Couldn't it be changed by running the files through a sed script substituting /conf/httpd.conf with ${PREFIX}/etc/httpd.conf? Yes, it would make the location incompatible with the other OS's, but would keep the like files (at least by default) in a certain and known place. Sander > Of course it can be tuned by command line arguments f.e. > but it leads down to more complexity and confusion, and disallow > easy migration from another OSes Apache-handled servers to > FreeBSD. All peoples restart their httpds just by killing them > and entering 'httpd' again at command prompt. With change you want > they must to enter additional long command line arguments and > it is completely unwanted thing. > -- > Andrey A. Chernov > > http://www.nagual.ru/~ache/ > From owner-freebsd-ports Wed Aug 7 11:46:46 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id LAA28350 for ports-outgoing; Wed, 7 Aug 1996 11:46:46 -0700 (PDT) Received: from seine.cs.UMD.EDU (seine.cs.umd.edu [128.8.128.59]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id LAA28343 for ; Wed, 7 Aug 1996 11:46:44 -0700 (PDT) Received: by seine.cs.UMD.EDU (8.7.5/UMIACS-0.9/04-05-88) id OAA15086; Wed, 7 Aug 1996 14:46:42 -0400 (EDT) Date: Wed, 7 Aug 1996 14:46:42 -0400 (EDT) From: rohit@cs.UMD.EDU (Rohit Dube) Message-Id: <199608071846.OAA15086@seine.cs.UMD.EDU> To: freebsd-ports@freebsd.org Subject: Port of UCD SNMP (3.1) to FreeBSD 2.1 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi, I was wondering if anybody had gotten UCD SNMP 3.1 to work on FreeBSD 2.1. I have FreeBSD 2.1 installed on a couple of machines here. They only have the older CMU code. The ports web page lists some patches but I am confused about what code these patches need to be applied to (and how : I must admit I am not very FreeBSD ports savy). The UCD-SNMP-3.1 code? Would somebody have the complete distribution known to work on FreeBSD 2.1? Thanks in advance. --rohit. PS: I tried contacting Gray Palmer who maintains this code but he seems to be off-line. From owner-freebsd-ports Wed Aug 7 12:11:44 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA00321 for ports-outgoing; Wed, 7 Aug 1996 12:11:44 -0700 (PDT) Received: from orion.webspan.net (root@orion.webspan.net [206.154.70.41]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id MAA00316 for ; Wed, 7 Aug 1996 12:11:43 -0700 (PDT) Received: from localhost (gpalmer@localhost [127.0.0.1]) by orion.webspan.net (8.7.5/8.6.12) with SMTP id PAA09281; Wed, 7 Aug 1996 15:11:34 -0400 (EDT) X-Authentication-Warning: orion.webspan.net: Host gpalmer@localhost [127.0.0.1] didn't use HELO protocol To: rohit@cs.UMD.EDU (Rohit Dube) cc: freebsd-ports@freebsd.org From: "Gary Palmer" Subject: Re: Port of UCD SNMP (3.1) to FreeBSD 2.1 In-reply-to: Your message of "Wed, 07 Aug 1996 14:46:42 EDT." <199608071846.OAA15086@seine.cs.UMD.EDU> Date: Wed, 07 Aug 1996 15:11:34 -0400 Message-ID: <9277.839445094@orion.webspan.net> Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Rohit Dube wrote in message ID <199608071846.OAA15086@seine.cs.UMD.EDU>: > PS: I tried contacting Gray Palmer who maintains this code > but he seems to be off-line. No, but your mail didn't make much sense, and I'm a bit busy... Gary -- Gary Palmer FreeBSD Core Team Member FreeBSD: Turning PC's into workstations. See http://www.FreeBSD.ORG/ for info From owner-freebsd-ports Wed Aug 7 12:16:02 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA00625 for ports-outgoing; Wed, 7 Aug 1996 12:16:02 -0700 (PDT) Received: from seine.cs.UMD.EDU (seine.cs.umd.edu [128.8.128.59]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id MAA00604; Wed, 7 Aug 1996 12:16:00 -0700 (PDT) Received: by seine.cs.UMD.EDU (8.7.5/UMIACS-0.9/04-05-88) id PAA15332; Wed, 7 Aug 1996 15:15:58 -0400 (EDT) Message-Id: <199608071915.PAA15332@seine.cs.UMD.EDU> To: "Gary Palmer" cc: freebsd-ports@freebsd.org Subject: Re: Port of UCD SNMP (3.1) to FreeBSD 2.1 In-reply-to: Your message of "Wed, 07 Aug 1996 15:11:34 EDT." <9277.839445094@orion.webspan.net> Date: Wed, 07 Aug 1996 15:15:58 -0400 From: Rohit Dube Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Wed, 07 Aug 1996 15:11:34 -0400 gpalmer@freebsd.org writes: =>No, but your mail didn't make much sense, and I'm a bit busy... => =>Gary Hi, Exactly what didn't make sense? I would be happy to clarify .... [I am looking for a working UCD SNMP 3.1 port to FreeBSD 2.1] Thanks for your help. --rohit. From owner-freebsd-ports Wed Aug 7 12:24:51 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA01119 for ports-outgoing; Wed, 7 Aug 1996 12:24:51 -0700 (PDT) Received: from orion.webspan.net (root@orion.webspan.net [206.154.70.41]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id MAA01110 for ; Wed, 7 Aug 1996 12:24:47 -0700 (PDT) Received: from localhost (gpalmer@localhost [127.0.0.1]) by orion.webspan.net (8.7.5/8.6.12) with SMTP id PAA10595; Wed, 7 Aug 1996 15:24:36 -0400 (EDT) X-Authentication-Warning: orion.webspan.net: Host gpalmer@localhost [127.0.0.1] didn't use HELO protocol To: Rohit Dube cc: freebsd-ports@freebsd.org From: "Gary Palmer" Subject: Re: Port of UCD SNMP (3.1) to FreeBSD 2.1 In-reply-to: Your message of "Wed, 07 Aug 1996 15:15:58 EDT." <199608071915.PAA15332@seine.cs.UMD.EDU> Date: Wed, 07 Aug 1996 15:24:36 -0400 Message-ID: <10592.839445876@orion.webspan.net> Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Rohit Dube wrote in message ID <199608071915.PAA15332@seine.cs.UMD.EDU>: > Exactly what didn't make sense? I would be happy to clarify .... To quote you: -- SNIP -- Hi, I have the 2.1.0 CD and I have been looking at the SNMP stuff there. Can you update me on the latest state of the SNMP code (The FreeBSD code points to some UC Davis code and I am not sure how that is different from what came with the CD). Is there more documentation available on setting up the SNMP agent daemon along with SNMP Manager module? For starters I just wanted to get the UDP MIB going to see if the code worked on my FreeBSD machine. Any help will be greatly appreciated. I am looking to implement some of the MIBs (Verion II) and would like to use any work that has already been done. -- SNIP -- I just read that first paragraph and looked confued and skipped it. It doesn't really matter what the code base we use is, as the ports system patches it up to work on FreeBSD (hence the patches directory). I haven't had a chance to work on UCD SNMP for a while, but I hope to get in there and get some stuff tidied up soon. > [I am looking for a working UCD SNMP 3.1 port to FreeBSD 2.1] What isn't working about the existing one? Gary -- Gary Palmer FreeBSD Core Team Member FreeBSD: Turning PC's into workstations. See http://www.FreeBSD.ORG/ for info From owner-freebsd-ports Wed Aug 7 12:36:30 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA02066 for ports-outgoing; Wed, 7 Aug 1996 12:36:30 -0700 (PDT) Received: from sunrise.cs.berkeley.edu (root@sunrise.CS.Berkeley.EDU [128.32.38.121]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id MAA02061 for ; Wed, 7 Aug 1996 12:36:28 -0700 (PDT) Received: from haldjas.folklore.ee (Haldjas.folklore.ee [193.40.6.121]) by sunrise.cs.berkeley.edu (8.7.5/8.6.12) with SMTP id MAA04219 for ; Wed, 7 Aug 1996 12:36:03 -0700 (PDT) Received: (from narvi@localhost) by haldjas.folklore.ee (8.6.12/8.6.12) id WAA01834; Wed, 7 Aug 1996 22:43:18 +0300 Date: Wed, 7 Aug 1996 22:43:17 +0300 (EET DST) From: Narvi To: ports%freebsd.org@sunrise.cs.berkeley.edu Subject: Port of ted Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk HI! This is port of ted, a text editor for X windows >From the DESCR file: o Fully configurable key bindings (supports any combinations of the control, alt and shift modifiers) o Support for multiple windows and files o Simple IDE environment o Parenthesis matching o Sytax highlighting o Autoindent, adjustable tab o Support for ctags o Undo and redo of upto 100 steps (configurable) o Auto saving (backup) o Powerful rectangular block & line block operations o History of typed commands o Very small size ( > 100 KB) Sander --------------- Cut here ------------------------------------------- begin 664 ted-port.tgz M'XL(`````````^U9>W/;-A+WO^2GV(X]C>U:%"E*5*Q6F<@2G>ABV1Y)K3US M=Y.A2$A"Q(>.C]A*QOWL78`/T8XOOK26.M?B-XF%QV*QV,4N%T!,G.K.A@%U MM=ELP`Z`UFRH[!>1_V85,&IJK:;IC!`T56O6=Z"Q:<$8DBBV0H`=WPH_TJ_0 MWFJH91_XK]C49J M?PW=OJ$Q^S=U8P?4#3AMUP]+IF MUR=HO-I4>TG(L::_5.O&<5W^LX46>#8P_U]:L3W?X!?@V^)_G?F_4:N)^+\- ME.W/?RN6]=QS/!'_=WM*:K;J&Y6-#KE0J!:ET11SH)#.`)M1J+`V@^[9_;H[,MBI_!V.SU^L/V]4D"JMN8%MNU:63ZI@X2+=;`-YTNZ7J[B[C MTFW/;)L7`F_91@ID=]8[/>N\&;6Q>-T_[Z9\KS5M:%2I;[N)0QC?G*IR5NK' M>>_-^06*7GA[6?GY^D4$EA]1L&W>S'6#J]0!"Y7'5RGM?;XQ]1CV==$8F%SY7<*EUTPI^;%O5]"-=S_>5 M9-]07PD8&^([=(H%%--RW1;3!81D"G9LS2)LQWI+VMN_./G'Z("-W-OO=@\@ M:X!*`'NOL98M`QM<7`*CB^*0+K$3^4K$G@?P@DEQ2GT:S9D8+Y`(YVF5>78S M)MBNV"GO>ZS8QJD91[J1[YROK(.M(>;.\1PK>/U<2WC,-'KCJ&X4IGG(B1OB M45X`U,>`C*ME(MI\^ZYM!Z5(,:$^(Z%3^"=\!Q4'V:>.=@#__A'B.?'!6S@T M7+?_"%.ZYAK:4/A(08+SVRY]?VLS$W`EN#Y4(E"4ZBVMKKM`X93$\CE1Z$%E M6JB?B6P'(8'#7^'P/2><-$ITMS@>8RUX[-=QF;'9+M!?'C7JQ2[XO2K+RE!) M23^?],\OKL[OH#)+*V^&EUCQTLK@HF?>%2I>1Z#_6;>5Y9?J+8_*P]NCXXK. M8N0#V0>=DNQ8R64WZG5LR&/='993$>Z^A0FOI`K8^[P.LT4MX_=G[8@?`/\I M652%GR:1HP0WON(M7CWOZ8OE?_E'_5D9E_#4^=]H-+/\3VWH&`G9^5_31?ZW M#>Q*ET$81T5B!],@9/NUPBX$Y%WI%Q)&-/`Q0/PGH2'[[&0=/2LF8(?$XM\B MJ4Z'ZQ(F0;NPD6_4`AY M)>_*'[47_,NJ;QLE6MXE\%72F< M5>T`=*1%AB\I!01LDOPV!B3=P5?G,C=,D`UQ1@ MZ`K!HV&(RHEH3"((N->&,UF^&KX;#;MM"3,X++*PP7,WN=L9FV\NAGUS]$-; M*O@/.OWS,?XW,>7[[]J0Y?NNOT0;/;_O,_#SWV*VT3>`WW'_WVPTQ/E_&\CM MW[T8#,SS\4;F>/K^-S__JYK!XS^6FR+^;P-XV`:*9RV88B1/,`U,7%B1&"*/ M)5$QN8TAC5W\PX`A4Q&WOW\EY/[?,T?=X8;F>,+_-4VMY_Y?,]3T_E<3[S]; M0>'_J)BTD4)EA3.DM"S*@(+,@*\&SI4!_/\OM1LESRW-/R&9V'/5:,N29/KMAT MF+7Q_"QPCS`9BY'.@6A.IS%F90Z=4DQ-#]A,HY01%]-+W)@N<:X;+FG$!_$' M3DY)/=;7[YE`_(\T#'R/^#'KN;1"+,TQ38W`8_?@*",?L8JM6YC3V=QE5VU9 M:R>)`^2/(XX`+.<#VT1L@?CWH4#II1,V_HSR<&DPBP[8$I-E'&"JHP+J)$O>?AGV MRL?L.,`/`7*:W(L/PO\Q\OA_>88'K0W-\53^IQEJ*?XW>/S7Q?E_*\"@RX^K MV9-$-7TN*-7X#:E' To: "Gary Palmer" cc: freebsd-ports@freebsd.org Subject: Re: Port of UCD SNMP (3.1) to FreeBSD 2.1 In-reply-to: Your message of "Wed, 07 Aug 1996 15:24:36 EDT." <10592.839445876@orion.webspan.net> Date: Wed, 07 Aug 1996 15:44:42 -0400 From: Rohit Dube Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Wed, 07 Aug 1996 15:24:36 -0400 gpalmer@freebsd.org writes: =>> [I am looking for a working UCD SNMP 3.1 port to FreeBSD 2.1] => =>What isn't working about the existing one? => =>Gary I looked at the documentation at the UC Davis SNMP site. The UCD code claims that they cleaned up a lot of bugs in the original CMU implementation. This is why I was hoping to use the UCD code rather than the original. A specific question : are the patches at ftp://ftp.freebsd.org/pub/FreeBSD/FreeBSD-current/ports/net/ucd-snmp/ applicable to ucd-snmp-3.1? (I guess yes but just to make sure). When applied, is UCD snmp known to work on FreeBSD 2.1 (your previous mail suggested the negative). Thanks again. --rohit. From owner-freebsd-ports Wed Aug 7 12:45:51 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA02786 for ports-outgoing; Wed, 7 Aug 1996 12:45:51 -0700 (PDT) Received: from grumble.grondar.za (root@grumble.grondar.za [196.7.18.130]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id MAA02749 for ; Wed, 7 Aug 1996 12:45:29 -0700 (PDT) Received: from grumble.grondar.za (mark@localhost.grondar.za [127.0.0.1]) by grumble.grondar.za (8.7.5/8.7.3) with ESMTP id VAA03536; Wed, 7 Aug 1996 21:44:17 +0200 (SAT) Message-Id: <199608071944.VAA03536@grumble.grondar.za> To: =?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?= (Andrey A. Chernov) cc: asami@cs.berkeley.edu (Satoshi Asami), ports@freebsd.org Subject: Re: Apache conf -> etc Date: Wed, 07 Aug 1996 21:44:15 +0200 From: Mark Murray Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk =?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?= wrote: > There is yet one reason against: I doubt, that this change can be made > without major retouching of apache internals at least config > files and command line arguments must be heavily rewritten. Rubbish. Look at the patches. There is a macro that can be defined to specify where SERVERROOT (HTTPD_ROOT) and DOCUMENTROOT (DOCUMENT_LOCATION) are. > They have so-called WWW server root and keep config, error, and log > files under it. All efforts to move config files from server > root to etc can only cause more confusion. Apache itself search > config files under /conf/httpd.conf by default. Yes, and this can be placed anywhere. I am choosing to place it in ${PREFIX}/etc/apache. > Of course it can be tuned by command line arguments f.e. > but it leads down to more complexity and confusion, and disallow > easy migration from another OSes Apache-handled servers to > FreeBSD. All peoples restart their httpds just by killing them > and entering 'httpd' again at command prompt. With change you want > they must to enter additional long command line arguments and > it is completely unwanted thing. Rubbish(2). I am running this at home and at work and there are no long command lines. "httpd" or "httpsd" work just fine. The only place where folks are likely to get confused is those who are heavily used to the original philosophy of "everything under www". I believe that this is a weak argument, and the philoshophy/religion of "all configs in etc" is 1) easier to remember 2) easier/better control 3) more consistent. M -- Mark Murray 46 Harvey Rd, Claremont, Cape Town 7700, South Africa +27 21 61-3768 GMT+0200 Finger mark@grondar.za for PGP key From owner-freebsd-ports Wed Aug 7 12:48:13 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA02960 for ports-outgoing; Wed, 7 Aug 1996 12:48:13 -0700 (PDT) Received: from orion.webspan.net (root@orion.webspan.net [206.154.70.41]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id MAA02955 for ; Wed, 7 Aug 1996 12:48:09 -0700 (PDT) Received: from localhost (gpalmer@localhost [127.0.0.1]) by orion.webspan.net (8.7.5/8.6.12) with SMTP id PAA12480; Wed, 7 Aug 1996 15:47:58 -0400 (EDT) X-Authentication-Warning: orion.webspan.net: Host gpalmer@localhost [127.0.0.1] didn't use HELO protocol To: Rohit Dube cc: freebsd-ports@freebsd.org From: "Gary Palmer" Subject: Re: Port of UCD SNMP (3.1) to FreeBSD 2.1 In-reply-to: Your message of "Wed, 07 Aug 1996 15:44:42 EDT." <199608071944.PAA15548@seine.cs.UMD.EDU> Date: Wed, 07 Aug 1996 15:47:58 -0400 Message-ID: <12477.839447278@orion.webspan.net> Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Rohit Dube wrote in message ID <199608071944.PAA15548@seine.cs.UMD.EDU>: > I looked at the documentation at the UC Davis SNMP site. > The UCD code claims that they cleaned up a lot of bugs > in the original CMU implementation. This is why I was > hoping to use the UCD code rather than the original. > A specific question : are the patches at > ftp://ftp.freebsd.org/pub/FreeBSD/FreeBSD-current/ports/net/ucd-snmp/ > applicable to ucd-snmp-3.1? (I guess yes but just to make sure). > When applied, is UCD snmp known to work on FreeBSD 2.1 (your previous mail > suggested the negative). Do: ncftp ftp://ftp.freebsd.org/pub/FreeBSD/FreeBSD-current/ports/net/ get ucd-snmp.tar.gz quit tar -zxf ucd-snmp.tar.gz cd ucd-snmp make su make install exit Gary -- Gary Palmer FreeBSD Core Team Member FreeBSD: Turning PC's into workstations. See http://www.FreeBSD.ORG/ for info From owner-freebsd-ports Wed Aug 7 13:45:51 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA07216 for ports-outgoing; Wed, 7 Aug 1996 13:45:51 -0700 (PDT) Received: from mexico.brainstorm.eu.org (root@mexico.brainstorm.eu.org [193.56.58.253]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id NAA07201 for ; Wed, 7 Aug 1996 13:45:45 -0700 (PDT) Received: from brasil.brainstorm.eu.org (brasil.brainstorm.eu.org [193.56.58.33]) by mexico.brainstorm.eu.org (8.7.5/8.7.3) with ESMTP id WAA30611 for ; Wed, 7 Aug 1996 22:45:17 +0200 Received: (from uucp@localhost) by brasil.brainstorm.eu.org (8.6.12/8.6.12) with UUCP id WAA16964 for ports@freebsd.org; Wed, 7 Aug 1996 22:45:02 +0200 Received: (from roberto@localhost) by keltia.freenix.fr (8.8.Alpha.7/keltia-uucp-2.9) id WAA21613; Wed, 7 Aug 1996 22:34:43 +0200 (MET DST) Message-Id: <199608072034.WAA21613@keltia.freenix.fr> Date: Wed, 7 Aug 1996 22:34:43 +0200 From: roberto@keltia.freenix.fr (Ollivier Robert) To: ports@freebsd.org Subject: Re: tcpwrapper In-Reply-To: ; from Veggy Vinny on Aug 6, 1996 2:17:07 -0700 References: X-Mailer: Mutt 0.38 Mime-Version: 1.0 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk According to Veggy Vinny: > I just installed tcpwrapper and was wondering what is the corrent > format in hosts.access to get the banners working since I have all of them > in /usr/local/etc/banners. Also, is there a way to have the tcpd log go > to a separate file other than /var/log/messages? Thanks. Modify Makefile and change the log level from LOG_DAEMON to LOG_LOCALn (where n is 0..7) and put localn.* /var/log/tcpwrapper.log in /etc/syslog.conf. -- Ollivier ROBERT -=- The daemon is FREE! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 2.2-CURRENT #17: Fri Aug 2 20:40:17 MET DST 1996 From owner-freebsd-ports Wed Aug 7 13:45:57 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA07238 for ports-outgoing; Wed, 7 Aug 1996 13:45:57 -0700 (PDT) Received: from mexico.brainstorm.eu.org (root@mexico.brainstorm.eu.org [193.56.58.253]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id NAA07210 for ; Wed, 7 Aug 1996 13:45:48 -0700 (PDT) Received: from brasil.brainstorm.eu.org (brasil.brainstorm.eu.org [193.56.58.33]) by mexico.brainstorm.eu.org (8.7.5/8.7.3) with ESMTP id WAA30628 for ; Wed, 7 Aug 1996 22:45:45 +0200 Received: (from uucp@localhost) by brasil.brainstorm.eu.org (8.6.12/8.6.12) with UUCP id WAA16966 for FreeBSD-Ports@FreeBSD.org; Wed, 7 Aug 1996 22:45:02 +0200 Received: (from roberto@localhost) by keltia.freenix.fr (8.8.Alpha.7/keltia-uucp-2.9) id WAA21631; Wed, 7 Aug 1996 22:37:15 +0200 (MET DST) Message-Id: <199608072037.WAA21631@keltia.freenix.fr> Date: Wed, 7 Aug 1996 22:37:15 +0200 From: roberto@keltia.freenix.fr (Ollivier Robert) To: FreeBSD-Ports@FreeBSD.org Subject: Re: Proposal for a new bsd.port.mk variable. In-Reply-To: <199608070831.BAA01874@silvia.HIP.Berkeley.EDU>; from Satoshi Asami on Aug 7, 1996 1:31:12 -0700 References: <199608070831.BAA01874@silvia.HIP.Berkeley.EDU> X-Mailer: Mutt 0.38 Mime-Version: 1.0 Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk According to Satoshi Asami: > Try using a mail bouncer, e.g., ports%freebsd.org@sunrise.cs.berkeley.edu, Better to use <@sunrise.cs.berkeley.edu:ports@freebsd.org> as recent sendmails have a tendency to ignore the '%' syntax... -- Ollivier ROBERT -=- The daemon is FREE! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 2.2-CURRENT #17: Fri Aug 2 20:40:17 MET DST 1996 From owner-freebsd-ports Wed Aug 7 15:53:38 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id PAA15824 for ports-outgoing; Wed, 7 Aug 1996 15:53:38 -0700 (PDT) Received: from soda.CSUA.Berkeley.EDU (soda.CSUA.Berkeley.EDU [128.32.43.52]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id PAA15807 for ; Wed, 7 Aug 1996 15:53:31 -0700 (PDT) Received: from localhost (richardc@localhost) by soda.CSUA.Berkeley.EDU (8.6.12/8.6.12) with SMTP id PAA27313; Wed, 7 Aug 1996 15:54:01 -0700 Date: Wed, 7 Aug 1996 15:54:00 -0700 (PDT) From: Veggy Vinny To: Ollivier Robert cc: ports@FreeBSD.ORG Subject: Re: tcpwrapper In-Reply-To: <199608072034.WAA21613@keltia.freenix.fr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Wed, 7 Aug 1996, Ollivier Robert wrote: > According to Veggy Vinny: > > I just installed tcpwrapper and was wondering what is the corrent > > format in hosts.access to get the banners working since I have all of them > > in /usr/local/etc/banners. Also, is there a way to have the tcpd log go > > to a separate file other than /var/log/messages? Thanks. > > Modify Makefile and change the log level from LOG_DAEMON to LOG_LOCALn I looked in Makefile, and the log level is actually LOG_AUTH. > localn.* /var/log/tcpwrapper.log > > in /etc/syslog.conf. Oh okay, what does the * do anyways? Just log anything having to do with localn? Vince From owner-freebsd-ports Wed Aug 7 22:00:47 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id WAA07369 for ports-outgoing; Wed, 7 Aug 1996 22:00:47 -0700 (PDT) Received: from mexico.brainstorm.eu.org (root@mexico.brainstorm.eu.org [193.56.58.253]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id WAA07363 for ; Wed, 7 Aug 1996 22:00:44 -0700 (PDT) Received: from brasil.brainstorm.eu.org (brasil.brainstorm.eu.org [193.56.58.33]) by mexico.brainstorm.eu.org (8.7.5/8.7.3) with ESMTP id GAA30857; Thu, 8 Aug 1996 06:59:47 +0200 Received: (from uucp@localhost) by brasil.brainstorm.eu.org (8.6.12/8.6.12) with UUCP id GAA20877; Thu, 8 Aug 1996 06:59:22 +0200 Received: (from roberto@localhost) by keltia.freenix.fr (8.8.Alpha.7/keltia-uucp-2.9) id GAA23020; Thu, 8 Aug 1996 06:37:44 +0200 (MET DST) Message-Id: <199608080437.GAA23020@keltia.freenix.fr> Date: Thu, 8 Aug 1996 06:37:44 +0200 From: roberto@keltia.freenix.fr (Ollivier Robert) To: richardc@CSUA.Berkeley.EDU (Veggy Vinny) Cc: ports@freebsd.org Subject: Re: tcpwrapper In-Reply-To: ; from Veggy Vinny on Aug 7, 1996 15:54:00 -0700 References: X-Mailer: Mutt 0.38 Mime-Version: 1.0 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk According to Veggy Vinny: > I looked in Makefile, and the log level is actually LOG_AUTH. You're right, it is named who logs at LOG_DAEMON. > > in /etc/syslog.conf. > > Oh okay, what does the * do anyways? Just log anything having to > do with localn? Yep. All levels go in the same file. -- Ollivier ROBERT -=- The daemon is FREE! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 2.2-CURRENT #17: Fri Aug 2 20:40:17 MET DST 1996 From owner-freebsd-ports Wed Aug 7 23:14:13 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA13540 for ports-outgoing; Wed, 7 Aug 1996 23:14:13 -0700 (PDT) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.RWTH-Aachen.DE [134.130.90.6]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id XAA13533 for ; Wed, 7 Aug 1996 23:14:10 -0700 (PDT) Received: (from thomas@localhost) by ghpc6.ihf.rwth-aachen.de (8.6.12/8.6.9) id IAA13189; Thu, 8 Aug 1996 08:13:35 +0200 From: Thomas Gellekum Message-Id: <199608080613.IAA13189@ghpc6.ihf.rwth-aachen.de> Subject: Re: acs patch To: dgy@rtd.com (Don Yuniskis) Date: Thu, 8 Aug 1996 08:13:34 +0200 (MET DST) Cc: freebsd-ports@freefall.freebsd.org In-Reply-To: <199608071452.HAA27249@seagull.rtd.com> from Don Yuniskis at "Aug 7, 96 07:52:49 am" Organization: Institut f. Hochfrequenztechnik, RWTH Aachen X-Mailer: ELM [version 2.4ME+ PL11 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Don Yuniskis wrote: > Greetings! > The following patch applies to the 2.1R port of acs. All it > does is move acs specific stuff into ${PREFIX}/lib/acs, copy the > supplied examples into the ./examples subdirectory thereof and > create a nominal acs.rc file in a *predefined* location (instead of > somewhere in $PATH). > I figured the examples were worth saving since there's no man > page and the online help is a little skimpy... > Note PLIST needs to reflect these additions (and the > new location for acs.hlp). The current port is at version 0.21. The help file is already moved into ${PREFIX}/share/misc; acs looks for acs.rc in the same directory. However, installing the examples sounds quite reasonable. I'd prefer a path like ${PREFIX}/share/acs, though. Thanks. tg From owner-freebsd-ports Thu Aug 8 01:57:58 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id BAA23724 for ports-outgoing; Thu, 8 Aug 1996 01:57:58 -0700 (PDT) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id BAA23718 for ; Thu, 8 Aug 1996 01:57:56 -0700 (PDT) Received: (from obrien@localhost) by relay.nuxi.com (8.7.5/8.6.12) id BAA11646 for freebsd-ports@freebsd.org; Thu, 8 Aug 1996 01:58:09 -0700 (PDT) From: "David E. O'Brien" Message-Id: <199608080858.BAA11646@relay.nuxi.com> Subject: Maintenance of tin newsreader To: freebsd-ports@freebsd.org (FreeBSD ports list) Date: Thu, 8 Aug 1996 01:58:08 -0700 (PDT) In-Reply-To: <199608070841.BAA01936@silvia.HIP.Berkeley.EDU> from Satoshi Asami at "Aug 7, 96 01:41:03 am" X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * The tin port doesn't currently have a maintainer. Any objections to me * taking it over ? I have been working on a port of 1.3-UNOFF. -- David (obrien@cs.ucdavis.edu) From owner-freebsd-ports Thu Aug 8 04:18:32 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id EAA00996 for ports-outgoing; Thu, 8 Aug 1996 04:18:32 -0700 (PDT) Received: from seagull.rtd.com (root@seagull.rtd.com [198.102.68.2]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id EAA00990 for ; Thu, 8 Aug 1996 04:18:30 -0700 (PDT) Received: (from dgy@localhost) by seagull.rtd.com (8.7.5/8.7.3) id EAA29157; Thu, 8 Aug 1996 04:17:14 -0700 (MST) From: Don Yuniskis Message-Id: <199608081117.EAA29157@seagull.rtd.com> Subject: Re: acs patch To: thomas@ghpc8.ihf.rwth-aachen.de (Thomas Gellekum) Date: Thu, 8 Aug 1996 04:17:14 -0700 (MST) Cc: dgy@rtd.com, freebsd-ports@freefall.freebsd.org In-Reply-To: <199608080613.IAA13189@ghpc6.ihf.rwth-aachen.de> from "Thomas Gellekum" at Aug 8, 96 08:13:34 am X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk It seems that Thomas Gellekum said: > Don Yuniskis wrote: > > The following patch applies to the 2.1R port of acs. All it > > does is move acs specific stuff into ${PREFIX}/lib/acs, copy the > > supplied examples into the ./examples subdirectory thereof and > > create a nominal acs.rc file in a *predefined* location (instead of > > somewhere in $PATH). > > The current port is at version 0.21. The help file is already moved > into ${PREFIX}/share/misc; acs looks for acs.rc in the same directory. > However, installing the examples sounds quite reasonable. I'd prefer a > path like ${PREFIX}/share/acs, though. Fine. I won't argue! :> The changes for locating acs.rc (in a *fixed* place instead of anywhere along your PATH) will pretty much drop into 0.21 -- though support for this feature (?) could become a religious issue and it's not that important to me (I just like "SYSTEMWIDE" files -- acs.rc -- to be in a fixed location and let "USERSPECIFIC" files -- ~/.acsrc -- allow for user specific customization). I also removed the ``cmdproc("clear")'' from the startup initialization code in MY version (though didn't include this in the diff). This allows acs.rc and ~/.acsrc to define models that can be "inherited" by users (seemed like a reasonable capability to have in an rc file!) I thought the sample acs.rc was also worthwhile (even though all of the entries I used merely reflect the existing defaults!) since it shows the format, etc. (I damn near pulled my hair out trying to figure out how to get "set foo ...." type commands to work in the rc files!) --don From owner-freebsd-ports Thu Aug 8 05:29:58 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id FAA04162 for ports-outgoing; Thu, 8 Aug 1996 05:29:58 -0700 (PDT) Received: from guava.blueberry.co.uk ([194.70.52.51]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id FAA04157 for ; Thu, 8 Aug 1996 05:29:55 -0700 (PDT) Received: (from nik@localhost) by guava.blueberry.co.uk (8.7.5/8.7.3) id NAA24232 Thu, 8 Aug 1996 13:25:00 +0100 (BST) From: Nik Clayton Message-Id: <199608081225.NAA24232@guava.blueberry.co.uk> Subject: Re: Apache conf -> etc To: mark@grondar.za (Mark Murray) Date: Thu, 8 Aug 1996 13:25:00 +0100 (BST) Cc: ports@freebsd.org In-Reply-To: <199608071944.VAA03536@grumble.grondar.za> from "Mark Murray" at Aug 7, 96 09:44:15 pm X-Mailer: ELM [version 2.4 PL24 ME8a] Content-Type: text Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > The only place where folks are likely to get confused is those who > are heavily used to the original philosophy of "everything under > www". I believe that this is a weak argument, and the philoshophy/religion > of "all configs in etc" is 1) easier to remember 2) easier/better > control 3) more consistent. Horses for courses. As a webmaster responsible for several sites, I find it simpler to use something like /path/site_name/conf /html /log /cgi-bin /src and so on, keeping everything related to one site under one banner (as it were). Then again, experienced admins are probably going to download the source and build it themselves anyway, so it fits into their own scheme of things. Me, I have an almost pathological hatred of programs cluttering up /etc (or subdirectories thereof) with their configuration programs. But if it absolutely had to go in /etc (or similar), wouldn't /usr/local/etc be a better choice? N -- --+=[ Blueberry Hill Blueberry Design ]=+-- --+=[ http://www.blueberry.co.uk/ 1/9 Chelsea Harbour Design Centre, ]=+-- --+=[ WebMaster@blueberry.co.uk London, England, SW10 0XE ]=+-- --+=[ Have a banana. . . ]=+-- From owner-freebsd-ports Thu Aug 8 06:37:08 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id GAA06500 for ports-outgoing; Thu, 8 Aug 1996 06:37:08 -0700 (PDT) Received: from chizuru.yy.cs.keio.ac.jp (chizuru.yy.cs.keio.ac.jp [131.113.47.2]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id GAA06494 for ; Thu, 8 Aug 1996 06:37:05 -0700 (PDT) Received: from lavender.yy.cs.keio.ac.jp (lavender.yy.cs.keio.ac.jp [131.113.47.22]) by chizuru.yy.cs.keio.ac.jp (8.6.12+2.5W/3.1W-2.8compat) with ESMTP id WAA03874; Thu, 8 Aug 1996 22:36:54 +0900 Received: (from sanpei@localhost) by lavender.yy.cs.keio.ac.jp (8.7.5/3.4Wbeta5) id WAA11106; Thu, 8 Aug 1996 22:36:44 +0900 (JST) Message-Id: <199608081336.WAA11106@lavender.yy.cs.keio.ac.jp> To: ports@FreeBSD.org Subject: [wide-dhcp] Please someone test new patch for wide-dhcp under 2.2-0801-SNAP or later X-Mailer: Mew version 1.05 on Emacs 19.28.1, Mule 2.3 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Date: Thu, 08 Aug 1996 22:36:43 +0900 From: MIHIRA Yoshiro Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Hi. I'm wide-dhcp port maintainer. I asked about ``how to get miner version''. Thank you for response. So I make new pors files for wide-dhcp and put as below: ftp://freefall.freebsd.org/incoming/wide-dhcp-960808.tar.gz Please someone test this patch under 2.2-960801-SNAP or later FreeBSD-current machine. Because I don't have 2.2-960801-SNAP machine. This ports was already tested under...... 2.1.0R 2.1.5R 2.2-960612-SNAP Thank you. Yoshiro MIHIRA Keio Univ. Japan From owner-freebsd-ports Thu Aug 8 08:30:43 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id IAA14057 for ports-outgoing; Thu, 8 Aug 1996 08:30:43 -0700 (PDT) Received: from moonpie.w8hd.org (moonpie.w8hd.org [198.252.159.14]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id IAA14052 for ; Thu, 8 Aug 1996 08:30:41 -0700 (PDT) Received: from localhost (kimc@localhost) by moonpie.w8hd.org (8.7.5/8.6.12) with SMTP id LAA04187 for ; Thu, 8 Aug 1996 11:30:40 -0400 (EDT) X-Authentication-Warning: moonpie.w8hd.org: kimc owned process doing -bs Date: Thu, 8 Aug 1996 11:30:39 -0400 (EDT) From: Kim Culhan To: ports@freebsd.org Subject: XFree86 build fail on 2.2-960801-SNAP Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Now this: rm -f Wrap.h ln -s ../../lib/Xdmcp/Wrap.h Wrap.h rm -f Wrap.c ln -s ../../lib/Xdmcp/Wrap.c Wrap.c make: don't know how to make ../../lib/Xdmcp/Wraphelp.c. Stop *** Error code 2 This using the port from FreeBSD-current Hope this is the place to post this, XF86 had been built here ~8 weeks ago on -current with no problems. regards kim -- kimc@w8hd.org From owner-freebsd-ports Thu Aug 8 15:08:46 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id PAA18973 for ports-outgoing; Thu, 8 Aug 1996 15:08:46 -0700 (PDT) Received: from rover.village.org (rover.village.org [204.144.255.49]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id PAA18963 for ; Thu, 8 Aug 1996 15:08:43 -0700 (PDT) Received: from rover.village.org (localhost [127.0.0.1]) by rover.village.org (8.7.5/8.6.6) with ESMTP id QAA05667 for ; Thu, 8 Aug 1996 16:08:28 -0600 (MDT) Message-Id: <199608082208.QAA05667@rover.village.org> To: ports@freebsd.org Subject: inews??? Date: Thu, 08 Aug 1996 16:08:27 -0600 From: Warner Losh Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Just installed trn, and it wants inews to post news. There is no inews package listed in INDEX, and there isn't a dependency on it inside of trn. Do I need to install all of inn/cnews to get this tiny peice? Warner From owner-freebsd-ports Thu Aug 8 19:33:39 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id TAA02238 for ports-outgoing; Thu, 8 Aug 1996 19:33:39 -0700 (PDT) Received: from who.cdrom.com (who.cdrom.com [204.216.27.3]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id TAA02225 for ; Thu, 8 Aug 1996 19:33:32 -0700 (PDT) Received: from mail.crl.com (mail.crl.com [165.113.1.22]) by who.cdrom.com (8.7.5/8.6.11) with SMTP id TAA02443 for ; Thu, 8 Aug 1996 19:11:47 -0700 (PDT) Received: from al.imforei.apana.org.au by mail.crl.com with SMTP id AA03482 (5.65c/IDA-1.5 for ); Thu, 8 Aug 1996 19:10:38 -0700 Received: (from pjchilds@localhost) by al.imforei.apana.org.au (8.7.5/8.7.3) id LAA21092; Fri, 9 Aug 1996 11:39:54 +0930 (CST) Date: Fri, 9 Aug 1996 11:39:54 +0930 (CST) From: Peter Childs Message-Id: <199608090209.LAA21092@al.imforei.apana.org.au> To: mark@grondar.za, freebsd-ports@freebsd.org Subject: Re: Apache conf -> etc X-Newsreader: TIN [version 1.2 PL2] Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk In article <199608071944.VAA03536@grumble.grondar.za> you wrote: : Rubbish(2). I am running this at home and at work and there are : no long command lines. "httpd" or "httpsd" work just fine. ^^^^^^ Waiting, waiting :) Peter -- Peter Childs --- http://www.imforei.apana.org.au/~pjchilds Finger pjchilds@al.imforei.apana.org.au for public PGP key From owner-freebsd-ports Thu Aug 8 19:33:44 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id TAA02276 for ports-outgoing; Thu, 8 Aug 1996 19:33:44 -0700 (PDT) Received: from who.cdrom.com (who.cdrom.com [204.216.27.3]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id TAA02243 for ; Thu, 8 Aug 1996 19:33:39 -0700 (PDT) Received: from bdd.net (bdd.net [207.61.119.1]) by who.cdrom.com (8.7.5/8.6.11) with ESMTP id TAA02492 for ; Thu, 8 Aug 1996 19:21:47 -0700 (PDT) Received: from localhost (james@localhost) by bdd.net (8.7.5/8.7.3) with SMTP id WAA01717 for ; Thu, 8 Aug 1996 22:21:13 -0400 (EDT) Date: Thu, 8 Aug 1996 22:21:13 -0400 (EDT) From: James FitzGibbon To: ports@freebsd.org Subject: Creating a user/group ? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Is there a preferred or recommended way of creating a user and/or group when a ported progra requires one? I currently use 'chpass -a' to create a user and just append a line to the group file (if one doesn't already exist) in the majordomo port. It works, but seems very backward and ugly. I haven't played with gnu configure yet, but does it allow such function in a standardized way ? If not, are there any other packages to make the process foolproof ? Also, if a port needs to create a user, is there any way to make it a package, or am I out of luck due to the level of system (if not user) interaction ? -- j. ---------------------------------------------------------------------------- | James FitzGibbon james@nexis.net | | Integrator, The Nexis Group Voice/Fax : 416 410-0100 | ---------------------------------------------------------------------------- From owner-freebsd-ports Thu Aug 8 22:06:56 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id WAA08253 for ports-outgoing; Thu, 8 Aug 1996 22:06:56 -0700 (PDT) Received: from mexico.brainstorm.eu.org (root@mexico.brainstorm.eu.org [193.56.58.253]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id WAA08241 for ; Thu, 8 Aug 1996 22:06:52 -0700 (PDT) Received: from brasil.brainstorm.eu.org (brasil.brainstorm.eu.org [193.56.58.33]) by mexico.brainstorm.eu.org (8.7.5/8.7.3) with ESMTP id HAA32290 for ; Fri, 9 Aug 1996 07:06:23 +0200 Received: (from uucp@localhost) by brasil.brainstorm.eu.org (8.6.12/8.6.12) with UUCP id HAA01897 for ports@FreeBSD.org; Fri, 9 Aug 1996 07:05:57 +0200 Received: (from roberto@localhost) by keltia.freenix.fr (8.8.Alpha.7/keltia-uucp-2.9) id HAA00973; Fri, 9 Aug 1996 07:04:55 +0200 (MET DST) Message-Id: <199608090504.HAA00973@keltia.freenix.fr> Date: Fri, 9 Aug 1996 07:04:55 +0200 From: roberto@keltia.freenix.fr (Ollivier Robert) To: ports@freebsd.org Subject: Re: inews??? In-Reply-To: <199608082208.QAA05667@rover.village.org>; from Warner Losh on Aug 8, 1996 16:08:27 -0600 References: <199608082208.QAA05667@rover.village.org> X-Mailer: Mutt 0.38 Mime-Version: 1.0 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk According to Warner Losh: > Just installed trn, and it wants inews to post news. There is no > inews package listed in INDEX, and there isn't a dependency on it > inside of trn. Do I need to install all of inn/cnews to get this tiny No, there is one implementation of inews shipped with trn. Maybe the package or the port doesn't install it ? [look into trn 3.6] Damn, trn 3.6 has no inews, it is only the 4.0 (still in development) which has it... You'll need to compile inn to get one or look on the Web or with ftpsearch for a inews replacement. (http://ftpsearch.ntnu.no/) -- Ollivier ROBERT -=- The daemon is FREE! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 2.2-CURRENT #17: Fri Aug 2 20:40:17 MET DST 1996 From owner-freebsd-ports Thu Aug 8 23:24:18 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA14762 for ports-outgoing; Thu, 8 Aug 1996 23:24:18 -0700 (PDT) Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id XAA14757 for ; Thu, 8 Aug 1996 23:24:15 -0700 (PDT) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id IAA29227; Fri, 9 Aug 1996 08:23:46 +0200 Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id IAA16369; Fri, 9 Aug 1996 08:23:42 +0200 Received: (from j@localhost) by uriah.heep.sax.de (8.7.5/8.6.9) id IAA02494; Fri, 9 Aug 1996 08:02:39 +0200 (MET DST) From: J Wunsch Message-Id: <199608090602.IAA02494@uriah.heep.sax.de> Subject: Re: inews??? To: imp@village.org (Warner Losh) Date: Fri, 9 Aug 1996 08:02:39 +0200 (MET DST) Cc: ports@FreeBSD.org Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199608082208.QAA05667@rover.village.org> from Warner Losh at "Aug 8, 96 04:08:27 pm" X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E X-Mailer: ELM [version 2.4ME+ PL17 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk As Warner Losh wrote: > Just installed trn, and it wants inews to post news. There is no > inews package listed in INDEX, and there isn't a dependency on it > inside of trn. Do I need to install all of inn/cnews to get this tiny > peice? This ``tiny piece'' is the hook into your news server (and it's news server dependent). You need a package that can talk via NNRP if you don't have a local newsserver. I don't think trn can do this. Knews will do, but requires X11. I believe nn was also able to do it. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-ports Fri Aug 9 03:23:58 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id DAA29601 for ports-outgoing; Fri, 9 Aug 1996 03:23:58 -0700 (PDT) Received: from btp1da.phy.uni-bayreuth.de (btp1da.phy.uni-bayreuth.de [132.180.20.32]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id DAA29570 for ; Fri, 9 Aug 1996 03:22:55 -0700 (PDT) Received: (from werner@localhost) by btp1da.phy.uni-bayreuth.de (8.7.5/8.6.12) id MAA00542; Fri, 9 Aug 1996 12:17:24 GMT From: Werner Griessl Message-Id: <199608091217.MAA00542@btp1da.phy.uni-bayreuth.de> Subject: Re: Hitachi CD-ROM ATAPI problem To: Coi_Giovanni@prometeo.it Date: Fri, 9 Aug 1996 12:17:22 +0000 () Cc: ports@freebsd.org In-Reply-To: <199608081634.SAA03945@prometeo.prometeo.it> from COI Giovanni at "Aug 8, 96 06:29:11 pm" X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > Hello. > > I have to install a FreeBSD system on a PCI Pentium/133, 32 Mbyte RAM, > HD 1.2 Gbyte and a Hitachi CD-ROM ATAPI. > > The release that I have installad is 2.1.5-stable (from mirror > www.se.FreeBSD.org at August 6 1996). > > The problem is the CD-ROM. It is set as Master into the second IDE > controller with the hard drive set as Master into the first IDE > controller. > > When start (with a CD into the unit) the initial hardware test > show: > > > FreeBSD 2.1.5-RELEASE #0: Thu Aug 8 17:01:59 MET DST 1996 > root@prometeo.it:/usr/src/sys/compile/PROM586b > CPU: 133-MHz Pentium 735\\90 or 815\\100 (Pentium-class CPU) > Origin = "GenuineIntel" Id = 0x52c Stepping=12 > Features=0x1bf > real memory = 33554432 (32768K bytes) > avail memory = 30699520 (29980K bytes) > Probing for devices on PCI bus 0: > chip0 rev 1 on pci0:0 > chip1 rev 0 on pci0:7:0 > chip2 rev 0 on pci0:7:1 > vga0 rev 72 int a irq 11 on pci0:9 > Probing for devices on the ISA bus: > sc0 at 0x60-0x6f irq 1 on motherboard > sc0: VGA color <4 virtual consoles, flags=0x0> > ed0 at 0x340-0x35f irq 5 on isa > ed0: address 00:00:1b:3a:8f:3f, type NE2000 (16 bit) > lpt0 at 0x378-0x37f irq 7 on isa > lpt0: Interrupt-driven port > lp0: TCP/IP capable interface > sio0 at 0x3f8-0x3ff irq 4 on isa > sio0: type 16550A > sio1 at 0x2f8-0x2ff irq 3 on isa > sio1: type 16550A > > wdc0 at 0x1f0-0x1f7 irq 14 on isa > wdc0: unit 0 (wd0): > wd0: 1222MB (2503872 sectors), 2484 cyls, 16 heads, 63 S/T, 512 B/S > wdc1 at 0x170-0x177 irq 15 on isa > wdc1: unit 0 (atapi): , removable, iordy > wcd0: 689Kb/sec, 128Kb cache, audio play, 128 volume levels, ejectable tray > wcd0: medium type unknown, unlocked > Hardware test seems to be ok (I have the same drive) > fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa > fdc0: NEC 72065B > fd0: 1.44MB 3.5in > npx0 on motherboard > npx0: INT 16 interface > --------------------------------------------------- > > So it find correctly two units. > (NB. > If CD-ROM do not set as Master in second IDE it missing from > the probe log. > If it is set as Salve in first IDE the system do not boot at all. > It don't find any bootable units.) > > When from root's shell I type: > > mount -t cd9660 /dev/wcd0c /mnt Try:"mount -r -t cd9660 /dev/wcd0c /mnt" ^^ > > the system relply: > > cd9660: /dev/wcd0c: Device not configured Do you have the /dev/wcd0c ? If not make one with: cd /dev sh MAKEDEV wcd0 and at least look into your kernel-config-file for lkm-support or compile the cd9660-filesys directly into your kernel. Hope this helps, Werner > > Do you have any brilliant suggestions that may aid me in my > search for the perfectly functional FreeBSD system? > > I would appreciate any comments that you could email to me. > > ---------------------------------------------------------- > Prometeo srl - Progetti e Metodologie Informatiche > Internet Services Provider > > Coi Giovanni > Voice : +39(0)41 5701366 Via Taglio Sinistro 61/B > Fax : +39(0)41 5701005 30035 MIRANO (VE) - ITALY > e-mail: coi@prometeo.it http://www.prometeo.it > > From owner-freebsd-ports Fri Aug 9 05:47:03 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id FAA05926 for ports-outgoing; Fri, 9 Aug 1996 05:47:03 -0700 (PDT) Received: from moonpie.w8hd.org (moonpie.w8hd.org [198.252.159.14]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id FAA05917 for ; Fri, 9 Aug 1996 05:47:01 -0700 (PDT) Received: from localhost (kimc@localhost) by moonpie.w8hd.org (8.7.5/8.6.12) with SMTP id IAA06790; Fri, 9 Aug 1996 08:46:53 -0400 (EDT) X-Authentication-Warning: moonpie.w8hd.org: kimc owned process doing -bs Date: Fri, 9 Aug 1996 08:46:52 -0400 (EDT) From: Kim Culhan To: Ollivier Robert cc: ports@freebsd.org Subject: Re: inews??? In-Reply-To: <199608090504.HAA00973@keltia.freenix.fr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Fri, 9 Aug 1996, Ollivier Robert wrote: > Damn, trn 3.6 has no inews, it is only the 4.0 (still in development) which > has it... You'll need to compile inn to get one or look on the Web or with > ftpsearch for a inews replacement. (http://ftpsearch.ntnu.no/) There is a 'mini inews' shipped with nn which is in ports. kim -- kimc@w8hd.org From owner-freebsd-ports Fri Aug 9 06:41:32 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id GAA12288 for ports-outgoing; Fri, 9 Aug 1996 06:41:32 -0700 (PDT) Received: from bdd.net (bdd.net [207.61.119.1]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id GAA12280 for ; Fri, 9 Aug 1996 06:41:28 -0700 (PDT) Received: from localhost (james@localhost) by bdd.net (8.7.5/8.7.3) with SMTP id JAA04626 for ; Fri, 9 Aug 1996 09:41:19 -0400 (EDT) Date: Fri, 9 Aug 1996 09:41:19 -0400 (EDT) From: James FitzGibbon To: ports@freebsd.org Subject: dumpb question about make Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Can anyone provide some help on overriding makefile variables with environment variables ? I have a port I'm working on that has RESTRICTED set to yes, but the machineI'm building it on (for various reason) has NO_RESTRICTED set to "yes". I've tried setting NO_RESTRICTED to "no" in my environment and then using make -e, but the way the ports makefile works, it just checks for the definition of NO_RESTRUCTED, not if it equals "yes": .if (defined(RESTRICTED) && defined(NO_RESTRICTED)) IGNORE=YES .endif Is there some way to remove a variable from the make envronment based upon a trigger in my shell environment. The only other way I can think of handling this is to have bsd.port.mk check agains NO_RESUTRCTED equalling "yes", but this seems to go against the way that the makefile is written. -- j. ---------------------------------------------------------------------------- | James FitzGibbon james@nexis.net | | Integrator, The Nexis Group Voice/Fax : 416 410-0100 | ---------------------------------------------------------------------------- From owner-freebsd-ports Fri Aug 9 10:49:15 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id KAA26878 for ports-outgoing; Fri, 9 Aug 1996 10:49:15 -0700 (PDT) Received: from po1.glue.umd.edu (po1.glue.umd.edu [129.2.128.44]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id KAA26860 for ; Fri, 9 Aug 1996 10:49:12 -0700 (PDT) Received: from gilligan.eng.umd.edu (gilligan.eng.umd.edu [129.2.103.21]) by po1.glue.umd.edu (8.7.5/8.7.3) with ESMTP id NAA03875; Fri, 9 Aug 1996 13:49:10 -0400 (EDT) Received: from localhost (chuckr@localhost) by gilligan.eng.umd.edu (8.7.5/8.7.3) with SMTP id NAA09833; Fri, 9 Aug 1996 13:49:09 -0400 (EDT) X-Authentication-Warning: gilligan.eng.umd.edu: chuckr owned process doing -bs Date: Fri, 9 Aug 1996 13:49:09 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@gilligan.eng.umd.edu To: James FitzGibbon cc: ports@freebsd.org Subject: Re: dumpb question about make In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Fri, 9 Aug 1996, James FitzGibbon wrote: > > Can anyone provide some help on overriding makefile variables with > environment variables ? > > I have a port I'm working on that has RESTRICTED set to yes, but the > machineI'm building it on (for various reason) has NO_RESTRICTED set to > "yes". I've tried setting NO_RESTRICTED to "no" in my environment and > then using make -e, but the way the ports makefile works, it just checks > for the definition of NO_RESTRUCTED, not if it equals "yes": > > .if (defined(RESTRICTED) && defined(NO_RESTRICTED)) > IGNORE=YES > .endif > > Is there some way to remove a variable from the make envronment based upon > a trigger in my shell environment. The highest priority is always anything entered on the command line, so do make var=VALUE, and it will override anything. > > The only other way I can think of handling this is to have bsd.port.mk > check agains NO_RESUTRCTED equalling "yes", but this seems to go against > the way that the makefile is written. > > -- > j. > > ---------------------------------------------------------------------------- > | James FitzGibbon james@nexis.net | > | Integrator, The Nexis Group Voice/Fax : 416 410-0100 | > ---------------------------------------------------------------------------- > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Fri Aug 9 13:24:20 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA01695 for ports-outgoing; Fri, 9 Aug 1996 13:24:20 -0700 (PDT) Received: from who.cdrom.com (who.cdrom.com [204.216.27.3]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id NAA01677 for ; Fri, 9 Aug 1996 13:24:11 -0700 (PDT) Received: from sunrise.cs.berkeley.edu (root@sunrise.CS.Berkeley.EDU [128.32.38.121]) by who.cdrom.com (8.7.5/8.6.11) with ESMTP id MAA00895 for ; Fri, 9 Aug 1996 12:25:54 -0700 (PDT) Received: from haldjas.folklore.ee (Haldjas.folklore.ee [193.40.6.121]) by sunrise.cs.berkeley.edu (8.7.5/8.6.12) with SMTP id MAA21837 for ; Fri, 9 Aug 1996 12:23:51 -0700 (PDT) Received: (from narvi@localhost) by haldjas.folklore.ee (8.6.12/8.6.12) id WAA18720; Fri, 9 Aug 1996 22:31:44 +0300 Date: Fri, 9 Aug 1996 22:31:44 +0300 (EET DST) From: Narvi To: ports%freebsd.org@sunrise.cs.berkeley.edu Subject: Orphaned files Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Hi! In the new, updated to full version 6.0 of tkcvs there are 5 files that are no more needed by the port. They all are located in the files subdirectory. They all are of the form Makefile.* and they are no more needed or used by the new Makefile by ? shanee@rabbit.augusta.de ? (sorry, there was no name). Could someone please remove them? Sander From owner-freebsd-ports Fri Aug 9 13:26:13 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id NAA02187 for ports-outgoing; Fri, 9 Aug 1996 13:26:13 -0700 (PDT) Received: from who.cdrom.com (who.cdrom.com [204.216.27.3]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id NAA02168 for ; Fri, 9 Aug 1996 13:26:09 -0700 (PDT) Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by who.cdrom.com (8.7.5/8.6.11) with SMTP id MAA00759 for ; Fri, 9 Aug 1996 12:13:10 -0700 (PDT) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id VAA23636; Fri, 9 Aug 1996 21:11:48 +0200 Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id VAA26768; Fri, 9 Aug 1996 21:11:47 +0200 Received: (from j@localhost) by uriah.heep.sax.de (8.7.5/8.6.9) id UAA04186; Fri, 9 Aug 1996 20:37:47 +0200 (MET DST) From: J Wunsch Message-Id: <199608091837.UAA04186@uriah.heep.sax.de> Subject: Re: dumpb question about make To: james@nexis.net (James FitzGibbon) Date: Fri, 9 Aug 1996 20:37:47 +0200 (MET DST) Cc: ports@freebsd.org Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: from James FitzGibbon at "Aug 9, 96 09:41:19 am" X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E X-Mailer: ELM [version 2.4ME+ PL17 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk As James FitzGibbon wrote: > > Can anyone provide some help on overriding makefile variables with > environment variables ? BSD make only: RESTRICTED?=yes If it imports a ``RESTRICTED='' from the environment, the ?= does have no effect. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-ports Fri Aug 9 14:57:17 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA11169 for ports-outgoing; Fri, 9 Aug 1996 14:57:17 -0700 (PDT) Received: from sunrise.cs.berkeley.edu (root@sunrise.CS.Berkeley.EDU [128.32.38.121]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id OAA11158 for ; Fri, 9 Aug 1996 14:57:13 -0700 (PDT) Received: from po1.glue.umd.edu (po1.glue.umd.edu [129.2.128.44]) by sunrise.cs.berkeley.edu (8.7.5/8.6.12) with ESMTP id OAA22277 for ; Fri, 9 Aug 1996 14:57:06 -0700 (PDT) Received: from modem.eng.umd.edu (modem.eng.umd.edu [129.2.98.187]) by po1.glue.umd.edu (8.7.5/8.7.3) with ESMTP id RAA07563; Fri, 9 Aug 1996 17:57:08 -0400 (EDT) Received: from localhost (chuckr@localhost) by modem.eng.umd.edu (8.7.5/8.7.3) with SMTP id RAA00662; Fri, 9 Aug 1996 17:57:07 -0400 (EDT) X-Authentication-Warning: modem.eng.umd.edu: chuckr owned process doing -bs Date: Fri, 9 Aug 1996 17:57:07 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@modem.eng.umd.edu To: Narvi cc: ports%freebsd.org@sunrise.cs.berkeley.edu Subject: Re: Orphaned files In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Fri, 9 Aug 1996, Narvi wrote: > > Hi! > > In the new, updated to full version 6.0 of tkcvs there are 5 files that > are no more needed by the port. They all are located in the files > subdirectory. They all are of the form Makefile.* and they are no more > needed or used by the new Makefile by ? shanee@rabbit.augusta.de ? > (sorry, there was no name). Something wrong with your archive? chuckr 96/08/02 10:31:27 ports/devel/tkcvs/patches - New directory chuckr 96/08/02 10:34:00 Modified: devel/tkcvs Makefile devel/tkcvs/files md5 devel/tkcvs/pkg DESCR PLIST Added: devel/tkcvs/patches patch-aa Removed: devel/tkcvs/files Makefile.bitmaps Makefile.inc Makefile.tkcvs Makefile.tkcvs-6.0a1 Makefile.tkdiff Log: Updating tkcvs port, from 6.0a1 (alpha) to 6.0 (release). Submitted by: Andreas Kohout Revision Changes Path 1.3 +25 -14 ports/devel/tkcvs/Makefile 1.2 +1 -1 ports/devel/tkcvs/files/md5 1.2 +2 -5 ports/devel/tkcvs/pkg/DESCR 1.2 +4 -3 ports/devel/tkcvs/pkg/PLIST > > Could someone please remove them? > > Sander > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Fri Aug 9 19:48:26 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id TAA26555 for ports-outgoing; Fri, 9 Aug 1996 19:48:26 -0700 (PDT) Received: from nevis.oss.uswest.net (nevis.oss.uswest.net [204.147.85.3]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id TAA26531; Fri, 9 Aug 1996 19:48:15 -0700 (PDT) Received: (from greg@localhost) by nevis.oss.uswest.net (8.6.12/8.6.12) id VAA29255; Fri, 9 Aug 1996 21:47:45 -0500 From: "Greg Rowe" Message-Id: <9608092147.ZM29253@nevis.oss.uswest.net> Date: Fri, 9 Aug 1996 21:47:44 -0500 X-Mailer: Z-Mail (3.2.1 10oct95) To: freebsd-ports@@freebsd.org, freebsd-hackers@@freebsd.org Subject: Qpopper 2.2 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Greetings, I'm trying to get the bulletin database(BULLDB) feature in qpopper-2.2 working. I'm using the 2.1.5 ports version and adding the -DBULLDB entry in the Makefile. The pop_bull.c file seems to be missing an include ( ), but other than that it compiles without error. The instructions call for you to create two empty files (bulldb.pag & bulldb.dir) in the bulletin directory which I did. The first attempt to retrieve a mail bulletin works fine but creates a zero length 'bulldb.db' file. Further attempts to check mail fail with the error "Unable to open Bulletin database". Permissions don't seem to be the problem. Has anyone used this feature on FreeBSD or does anyone have any ideas ? Thanks. Greg -- Greg Rowe | U S West - Interact Services | INTERNET greg@uswest.net 111 Washington Ave. South | Fax: (612) 672-8537 Minneapolis, MN USA 55401 | Voice: (612) 672-8535 Never trust an operating system you don't have source for.... From owner-freebsd-ports Fri Aug 9 21:53:27 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id VAA03333 for ports-outgoing; Fri, 9 Aug 1996 21:53:27 -0700 (PDT) Received: from po2.glue.umd.edu (po2.glue.umd.edu [129.2.128.45]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id VAA03327 for ; Fri, 9 Aug 1996 21:53:25 -0700 (PDT) Received: from modem.eng.umd.edu (modem.eng.umd.edu [129.2.98.187]) by po2.glue.umd.edu (8.7.5/8.7.3) with ESMTP id AAA04990 for ; Sat, 10 Aug 1996 00:52:41 -0400 (EDT) Received: from localhost (chuckr@localhost) by modem.eng.umd.edu (8.7.5/8.7.3) with SMTP id AAA00776 for ; Sat, 10 Aug 1996 00:52:40 -0400 (EDT) X-Authentication-Warning: modem.eng.umd.edu: chuckr owned process doing -bs Date: Sat, 10 Aug 1996 00:52:39 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@modem.eng.umd.edu To: FreeBSD Ports Subject: using tar Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk I want to use tar to move a directory hierarchy, but I want to do it without using a temp directory, and I don't know the syntax to make tar create an archive to stdout, then read from stdout to extract the acrchive elsewhere. Anyone else know it? I want to use it to transport something from usr/local (not /usr/local, thank goodness) to $(PREFIX). Thanks. ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Fri Aug 9 22:19:22 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id WAA04801 for ports-outgoing; Fri, 9 Aug 1996 22:19:22 -0700 (PDT) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id WAA04796 for ; Fri, 9 Aug 1996 22:19:20 -0700 (PDT) Received: from time.cdrom.com (localhost [127.0.0.1]) by time.cdrom.com (8.7.5/8.6.9) with ESMTP id WAA11837; Fri, 9 Aug 1996 22:18:38 -0700 (PDT) To: Chuck Robey cc: FreeBSD Ports Subject: Re: using tar In-reply-to: Your message of "Sat, 10 Aug 1996 00:52:39 EDT." Date: Fri, 09 Aug 1996 22:18:37 -0700 Message-ID: <11835.839654317@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > I want to use tar to move a directory hierarchy, but I want to do it > without using a temp directory, and I don't know the syntax to make tar > create an archive to stdout, then read from stdout to extract the acrchive I was all prepared to flame you for not RTFM'ing first when I noticed that both the tar man page and `tar --help' don't document this in their descriptions of the -f flag. For Shame. tar -cf - -C $SRCDIR . | tar xpf - -C $DESTDIR Will do the trick. Jordan From owner-freebsd-ports Sat Aug 10 00:07:44 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA15750 for ports-outgoing; Sat, 10 Aug 1996 00:07:44 -0700 (PDT) Received: from grumble.grondar.za (root@grumble.grondar.za [196.7.18.130]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id AAA15744 for ; Sat, 10 Aug 1996 00:07:37 -0700 (PDT) Received: from grumble.grondar.za (mark@localhost.grondar.za [127.0.0.1]) by grumble.grondar.za (8.7.5/8.7.3) with ESMTP id JAA08037; Sat, 10 Aug 1996 09:07:03 +0200 (SAT) Message-Id: <199608100707.JAA08037@grumble.grondar.za> To: Chuck Robey cc: FreeBSD Ports Subject: Re: using tar Date: Sat, 10 Aug 1996 09:07:03 +0200 From: Mark Murray Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Chuck Robey wrote: > I want to use tar to move a directory hierarchy, but I want to do it > without using a temp directory, and I don't know the syntax to make tar > create an archive to stdout, then read from stdout to extract the acrchive > elsewhere. Anyone else know it? I want to use it to transport something > from usr/local (not /usr/local, thank goodness) to $(PREFIX). I do it like this: $ (cd /from/dir; tar cf -) | (cd /to/dir; tar xf -) M -- Mark Murray 46 Harvey Rd, Claremont, Cape Town 7700, South Africa +27 21 61-3768 GMT+0200 Finger mark@grondar.za for PGP key From owner-freebsd-ports Sat Aug 10 01:25:34 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id BAA21446 for ports-outgoing; Sat, 10 Aug 1996 01:25:34 -0700 (PDT) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id BAA21439 for ; Sat, 10 Aug 1996 01:25:29 -0700 (PDT) Received: (from obrien@localhost) by relay.nuxi.com (8.7.5/8.6.12) id BAA00973 for freebsd-ports@freebsd.org; Sat, 10 Aug 1996 01:25:35 -0700 (PDT) From: "David E. O'Brien" Message-Id: <199608100825.BAA00973@relay.nuxi.com> Subject: PLIST files To: freebsd-ports@freebsd.org (FreeBSD ports list) Date: Sat, 10 Aug 1996 01:25:34 -0700 (PDT) X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Correct me if I am wrong, but pkg/PLIST should definately NOT have things like ``@cwd /usr/local'' or ``@cd /usr/local'' in them. -- David (obrien@cs.ucdavis.edu) From owner-freebsd-ports Sat Aug 10 01:33:59 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id BAA21803 for ports-outgoing; Sat, 10 Aug 1996 01:33:59 -0700 (PDT) Received: from sunrise.cs.berkeley.edu (root@sunrise.CS.Berkeley.EDU [128.32.38.121]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id BAA21797 for ; Sat, 10 Aug 1996 01:33:56 -0700 (PDT) Received: from haldjas.folklore.ee (Haldjas.folklore.ee [193.40.6.121]) by sunrise.cs.berkeley.edu (8.7.5/8.6.12) with SMTP id BAA22957 for ; Sat, 10 Aug 1996 01:33:47 -0700 (PDT) Received: (from narvi@localhost) by haldjas.folklore.ee (8.6.12/8.6.12) id LAA23509; Sat, 10 Aug 1996 11:42:10 +0300 Date: Sat, 10 Aug 1996 11:42:09 +0300 (EET DST) From: Narvi To: Chuck Robey cc: ports%freebsd.org@sunrise.cs.berkeley.edu Subject: Re: Orphaned files In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Fri, 9 Aug 1996, Chuck Robey wrote: > On Fri, 9 Aug 1996, Narvi wrote: > > > > > Hi! > > > > In the new, updated to full version 6.0 of tkcvs there are 5 files that > > are no more needed by the port. They all are located in the files > > subdirectory. They all are of the form Makefile.* and they are no more > > needed or used by the new Makefile by ? shanee@rabbit.augusta.de ? > > (sorry, there was no name). > > Something wrong with your archive? > > chuckr 96/08/02 10:31:27 > > ports/devel/tkcvs/patches - New directory > > chuckr 96/08/02 10:34:00 > > Modified: devel/tkcvs Makefile > devel/tkcvs/files md5 > devel/tkcvs/pkg DESCR PLIST > Added: devel/tkcvs/patches patch-aa > Removed: devel/tkcvs/files Makefile.bitmaps Makefile.inc > Makefile.tkcvs Makefile.tkcvs-6.0a1 > Makefile.tkdiff > Log: > Updating tkcvs port, from 6.0a1 (alpha) to 6.0 (release). > Submitted by: Andreas Kohout > > Revision Changes Path > 1.3 +25 -14 ports/devel/tkcvs/Makefile > 1.2 +1 -1 ports/devel/tkcvs/files/md5 > 1.2 +2 -5 ports/devel/tkcvs/pkg/DESCR > 1.2 +4 -3 ports/devel/tkcvs/pkg/PLIST It seems there is something with the CVS ports repository on ftp2.de.freebsd.org. I ftped it from there, did a checkout and they appeared there. It seems to be a bit outdated then... Sorry for the confusion. Sander From owner-freebsd-ports Sat Aug 10 01:54:05 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id BAA23486 for ports-outgoing; Sat, 10 Aug 1996 01:54:05 -0700 (PDT) Received: from who.cdrom.com (who.cdrom.com [204.216.27.3]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id BAA23469 for ; Sat, 10 Aug 1996 01:54:03 -0700 (PDT) Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by who.cdrom.com (8.7.5/8.6.11) with SMTP id BAA02357 for ; Sat, 10 Aug 1996 01:54:01 -0700 (PDT) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id KAA23641; Sat, 10 Aug 1996 10:50:54 +0200 Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id KAA07281; Sat, 10 Aug 1996 10:50:54 +0200 Received: (from j@localhost) by uriah.heep.sax.de (8.7.5/8.6.9) id KAA07481; Sat, 10 Aug 1996 10:28:16 +0200 (MET DST) From: J Wunsch Message-Id: <199608100828.KAA07481@uriah.heep.sax.de> Subject: Re: using tar To: chuckr@glue.umd.edu (Chuck Robey) Date: Sat, 10 Aug 1996 10:28:16 +0200 (MET DST) Cc: FreeBSD-Ports@freebsd.org Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: from Chuck Robey at "Aug 10, 96 00:52:39 am" X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E X-Mailer: ELM [version 2.4ME+ PL17 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk As Chuck Robey wrote: > I want to use tar to move a directory hierarchy, but I want to do it > without using a temp directory, ... Aside from the responses you've got regarding tar, here's the same with cpio: cd /from/dir find . -print | cpio -dump /to/dir (The ``-dump'' is actually a combination of separate options, but easy to memorize this way. :) -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-freebsd-ports Sat Aug 10 02:03:58 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id CAA24483 for ports-outgoing; Sat, 10 Aug 1996 02:03:58 -0700 (PDT) Received: from baloon.mimi.com (sjx-ca54-05.ix.netcom.com [206.214.106.69]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id CAA24476 for ; Sat, 10 Aug 1996 02:03:36 -0700 (PDT) Received: (from asami@localhost) by baloon.mimi.com (8.7.5/8.6.12) id CAA01070; Sat, 10 Aug 1996 02:01:22 -0700 (PDT) Date: Sat, 10 Aug 1996 02:01:22 -0700 (PDT) Message-Id: <199608100901.CAA01070@baloon.mimi.com> To: obrien@Nuxi.cs.ucdavis.edu CC: freebsd-ports@freebsd.org In-reply-to: <199608100825.BAA00973@relay.nuxi.com> (obrien@Nuxi.cs.ucdavis.edu) Subject: Re: PLIST files From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk * Correct me if I am wrong, but pkg/PLIST should definately NOT have things * like ``@cwd /usr/local'' or ``@cd /usr/local'' in them. You are almost correct, the only case you need it is when you have two trees, i.e., some files install to /usr/local and others install to /var/log (or something like that). I make it a point to go over submitted PLIST and delete any unnecessary @ directives. Most of them can be safely deleted. Some even seem to trigger weird bugs in chroot(), Jordan used to complain about them when he was making the "live filesystem" CD (I already cleaned up the packages that breaks this). If someone can go over the existing ports, I will be eternally grateful (so we won't have any bad examples for people to follow). Satoshi From owner-freebsd-ports Sat Aug 10 02:04:02 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id CAA24513 for ports-outgoing; Sat, 10 Aug 1996 02:04:02 -0700 (PDT) Received: from sunrise.cs.berkeley.edu (root@sunrise.CS.Berkeley.EDU [128.32.38.121]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id CAA24484 for ; Sat, 10 Aug 1996 02:03:57 -0700 (PDT) Received: from haldjas.folklore.ee (Haldjas.folklore.ee [193.40.6.121]) by sunrise.cs.berkeley.edu (8.7.5/8.6.12) with SMTP id CAA23083 for ; Sat, 10 Aug 1996 02:03:50 -0700 (PDT) Received: (from narvi@localhost) by haldjas.folklore.ee (8.6.12/8.6.12) id MAA23705; Sat, 10 Aug 1996 12:08:35 +0300 Date: Sat, 10 Aug 1996 12:08:35 +0300 (EET DST) From: Narvi To: "Jordan K. Hubbard" cc: Chuck Robey , FreeBSD Ports Subject: Re: using tar In-Reply-To: <11835.839654317@time.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Fri, 9 Aug 1996, Jordan K. Hubbard wrote: > > I want to use tar to move a directory hierarchy, but I want to do it > > without using a temp directory, and I don't know the syntax to make tar > > create an archive to stdout, then read from stdout to extract the acrchive > > I was all prepared to flame you for not RTFM'ing first when I noticed > that both the tar man page and `tar --help' don't document this in > their descriptions of the -f flag. For Shame. > > tar -cf - -C $SRCDIR . | tar xpf - -C $DESTDIR > > Will do the trick. > Why not just mv $SRCDIR $DESTDIR? Yes, if $DESTDIR exist you will have to write a for $i in ...; do mv $i $DESTDIR; done? Sander > Jordan > From owner-freebsd-ports Sat Aug 10 02:29:15 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id CAA27057 for ports-outgoing; Sat, 10 Aug 1996 02:29:15 -0700 (PDT) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id CAA27048 for ; Sat, 10 Aug 1996 02:29:13 -0700 (PDT) Received: (from obrien@localhost) by relay.nuxi.com (8.7.5/8.6.12) id CAA01408; Sat, 10 Aug 1996 02:29:01 -0700 (PDT) From: "David E. O'Brien" Message-Id: <199608100929.CAA01408@relay.nuxi.com> Subject: Re: using tar To: narvi@haldjas.folklore.ee (Narvi) Date: Sat, 10 Aug 1996 02:29:00 -0700 (PDT) Cc: freebsd-ports@freebsd.org (FreeBSD ports list) In-Reply-To: from Narvi at "Aug 10, 96 12:08:35 pm" X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > > > I want to use tar to move a directory hierarchy, but I want to do it > > > without using a temp directory, and I don't know the syntax to make tar > > > create an archive to stdout, then read from stdout to extract the acrchive > > > > tar -cf - -C $SRCDIR . | tar xpf - -C $DESTDIR > > > > Will do the trick. > > Why not just mv $SRCDIR $DESTDIR? Yes, if $DESTDIR exist you will have to > write a for $i in ...; do mv $i $DESTDIR; done? Many mv's can't move a directory structure across devices (read disk partitions) because of the limitations of rename(2). Thus you can only use mv if $SRCDIR and $DESTDIR are on the same partition. For instance, GNU's mv gives: mv: cannot move `foo' across filesystems: Not a regular file -- David (obrien@cs.ucdavis.edu) From owner-freebsd-ports Sat Aug 10 02:36:39 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id CAA27954 for ports-outgoing; Sat, 10 Aug 1996 02:36:39 -0700 (PDT) Received: from sunrise.cs.berkeley.edu (root@sunrise.CS.Berkeley.EDU [128.32.38.121]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id CAA27947 for ; Sat, 10 Aug 1996 02:36:37 -0700 (PDT) Received: from haldjas.folklore.ee (Haldjas.folklore.ee [193.40.6.121]) by sunrise.cs.berkeley.edu (8.7.5/8.6.12) with SMTP id CAA23168 for ; Sat, 10 Aug 1996 02:36:28 -0700 (PDT) Received: (from narvi@localhost) by haldjas.folklore.ee (8.6.12/8.6.12) id MAA23944; Sat, 10 Aug 1996 12:44:53 +0300 Date: Sat, 10 Aug 1996 12:44:52 +0300 (EET DST) From: Narvi To: "David E. O'Brien" cc: FreeBSD ports list Subject: Re: using tar In-Reply-To: <199608100929.CAA01408@relay.nuxi.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sat, 10 Aug 1996, David E. O'Brien wrote: > > > > I want to use tar to move a directory hierarchy, but I want to do it > > > > without using a temp directory, and I don't know the syntax to make tar > > > > create an archive to stdout, then read from stdout to extract the acrchive > > > > > > tar -cf - -C $SRCDIR . | tar xpf - -C $DESTDIR > > > > > > Will do the trick. > > > > Why not just mv $SRCDIR $DESTDIR? Yes, if $DESTDIR exist you will have to > > write a for $i in ...; do mv $i $DESTDIR; done? > > Many mv's can't move a directory structure across devices (read disk > partitions) because of the limitations of rename(2). Thus you can only > use mv if $SRCDIR and $DESTDIR are on the same partition. > > For instance, GNU's mv gives: > mv: cannot move `foo' across filesystems: Not a regular file > GNU mv may have problems moving directories between file systems or disks or whatever, but the one in -stable certainly does not. Just to check I move a directory from my home directory (on /usr/home partion on sd0) to /usr/src which is not only on another file system but entirely on another disk (sd1). If this is a bug, not a feature, then *ANYBODY PLEASE DO NOT REMOVE IT*! It is quite handy to have it this way. Sander > > -- David (obrien@cs.ucdavis.edu) > From owner-freebsd-ports Sat Aug 10 04:25:41 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id EAA09669 for ports-outgoing; Sat, 10 Aug 1996 04:25:41 -0700 (PDT) Received: from sunrise.cs.berkeley.edu (root@sunrise.CS.Berkeley.EDU [128.32.38.121]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id EAA09662 for ; Sat, 10 Aug 1996 04:25:39 -0700 (PDT) Received: from haldjas.folklore.ee (Haldjas.folklore.ee [193.40.6.121]) by sunrise.cs.berkeley.edu (8.7.5/8.6.12) with SMTP id EAA23270 for ; Sat, 10 Aug 1996 04:25:30 -0700 (PDT) Received: (from narvi@localhost) by haldjas.folklore.ee (8.6.12/8.6.12) id OAA24450; Sat, 10 Aug 1996 14:34:03 +0300 Date: Sat, 10 Aug 1996 14:34:02 +0300 (EET DST) From: Narvi To: ports%freebsd.org@sunrise.cs.berkeley.edu Subject: Port of tkmail-2.0 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk HI! This is port of tkmail-2.0, a mime-capable mail program written in perl & tcl/tk. This is tkmail version 2.0p8. Hope it gets commited some day. Sander -------------------- Cut here ------------------------------------ begin 664 tkmail-port.tgz M'XL(`````````^T::W/:2#)?X5?,E7.5VQ1(B*?MVVP=&^0-%6-S@)UR"F6WX/]=_K],@?TN,H%PU*N&A`>(PIG_\ M1%Z0HT;=I?3(K;JM\5&U[C3!C^O-ZM'AY+#>G%1KQ6_-?`Y?#:G_AU0YLUWM M`)^W_VO_KUG-//[O`[;TK[_+E#XJC4_'?ZO6K%J9_NN@>&BJ5^I6'O_W`<^? M/R<].F>8`!@BXM/":!:3#G-`":12.6Y4CRLU8AT=-8KE9[&0D@8"8>Y<<20GB/"):'!DK!K M+A4/IC!Q'`&OQ%UGZ^F'T^ZOG>[@HR$\-\73U0LDK@B>*;*@@0):7):`)X\I MI@E3H!5&G,(C\B/)F'EB`6)(L($@S%A&I@ M2V4$&'_MGMW".-:2TZC.J,]0)"<3EF@]#"D759$A&@K$H;-01YVC?N`L):T2V/?5(6[A@^.)``:@EC-QJ$#0C4+9=2,1\PCL4U MT(Z8Y"XSR(5DT3-)/#$%0F*,>HP!$+,!2:&_QJ.[%[&@PR%\,QU MA06IF&/`""L$,E`?P,(PZD/X!U9IK(0/W@+.[BV)+ZZ`CX`M2(KE().!1)73 MB6(1L$G=S)#75_"3049@;PE1+K7G)\I)/?^;*4>BAW]+[5S1Z/O1RUU.U&R4 M6HV;31WI:5E!9$.Y81C"2"J9-X%0EHD>2*-B(#Z"N##TZ)@';"9(]#H"ET1Q M$""&%=8%5[,D,FN3UVH##Y6_`\*UY\W-U\S0980AQ@>,:]KK2Q/1!EJ*YLM`(%', M2BB0((NR:*O:,Q.-K_;D_U6-5[Y#C>]?X7>Y_-%A"4KT&Y^WKT#<,88;S%Y\ M/IVI1+M]S)ZXTI8P`W7`2ET0-II(B8PQ"\#XAS0-P\C8=H2/B1"*2P]F9$PE M@\*1!?@$'>Q:D4DD?-@(8""-,'9!3H&I0WMH-^L=^^5MZ?A^,I^48XCC]Q-[ M'PL%1"#5"9*4XD^0_>?%^:@_>)CL^SO(IMV?NT;[[)/$[EI@VO?E"WR`YFIU M7R*4^$!_DD6(9&`=L>1^8P8TZ\ M_S^FD=AEY&A?UJ$HM<15+/H^+7&S7MB3(7Z"Z*.;X7VT=FB%]Y'>JM1F$=E^'0"T210[$*NZ/>=9^E.,KTF4&& M3.^9%N%9K5@B%7P(A#*26CU==^J-7[_NC8+R^UKOG7IO6B6K=9CIO3_HGHU> M]CJP$"^,R%]/BK>JA=0T6'&8(Q5SX-U_!`_J(H MUWG3Q*-35RR"DOX5AR6=!D$5K[!>2&9*762/>NUU_.EY@_G6LLQL6$IO"(D% M2,-E$UWX:^?\&>H$4^H.8_:+'C::, MB]/1`$>=#T],"\LF2&K>#4<#N]U+;:Y]\N[BK/LV?4K0`[H(#S>Z,)LHC6LH. MK>3I!S`-C/H?5[;RH]K)P1<;RM[,9,_G_^G]3W:NOQ,:#]W_MZS5_5^E6;?T M_7\EO__9"QP4^B)2R6G9JB)-CTX/"I?I!AJQ]S&$$_>XH-\1@)XW,^$?%PJ% M(<0/V)0OF>1S,'3]](\9]=S?J30@JYI[(F(&8[_`G`Y5#.<O!MV1_;P16&BPF/3A$\#JW$# M4T=8@6LP-X;H,U%8GINC.1Z0F3@7`B[\V8,7A?MY+18'%V?O.G;?/NL`B=NG M_L?0=#X8#?$PW?0@,NG6QK^+A0)>*FQT7\.VJN;8Y3-%<1D;W=K[LAX?39Z?!H/Q7^K4EW%_T:KCO&_46_E\7\?,$J._+C$$UNHE"$'"759 MKIO#2$PCZI-%Q"%#Q,(JN1C5);WC06`S\I?`?FA8\_^./7PYV`6-A_R_UFQL M^W^M6LG]?Q_PY_Q_DE9H;\L+'D#]*+/;PKL"0S&-#(1T%2+.,(H)UG6AD/J: M!VFM+B1U$4KQ1M*%/,>C2QP"92L+\%!G0F3LS$@1AM-D?*QQL&N8$>`Y#V<+ MR%2-8E'?6L+_]"8C.P!*WFPM%I-L-0]9-[#F__U3R,)W0>,!_[8RY6AYNNM4Z;2WFM)W/;:GZRBSC30IH+8:4P35K69WC-', M@$"VWHKWK+=8D$SA*U=R8SJ7OPL>;,L//[::@$(70M+U>AN[IG[HL=6%PS8* M=[PE[%AQ;UL&$^'$VVWXH6[K*HF>>K%Y9,PAAQQRR"&'''+((8<<; Sat, 10 Aug 1996 05:03:08 -0700 (PDT) Received: from channel.eng.umd.edu (channel.eng.umd.edu [129.2.98.186]) by po2.glue.umd.edu (8.7.5/8.7.3) with ESMTP id IAA06172; Sat, 10 Aug 1996 08:03:06 -0400 (EDT) Received: from localhost (chuckr@localhost) by channel.eng.umd.edu (8.7.5/8.7.3) with SMTP id IAA02316; Sat, 10 Aug 1996 08:03:05 -0400 (EDT) X-Authentication-Warning: channel.eng.umd.edu: chuckr owned process doing -bs Date: Sat, 10 Aug 1996 08:03:05 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@channel.eng.umd.edu To: "Jordan K. Hubbard" cc: FreeBSD Ports Subject: Re: using tar In-Reply-To: <11835.839654317@time.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Fri, 9 Aug 1996, Jordan K. Hubbard wrote: > > I want to use tar to move a directory hierarchy, but I want to do it > > without using a temp directory, and I don't know the syntax to make tar > > create an archive to stdout, then read from stdout to extract the acrchive > > I was all prepared to flame you for not RTFM'ing first when I noticed > that both the tar man page and `tar --help' don't document this in > their descriptions of the -f flag. For Shame. > > tar -cf - -C $SRCDIR . | tar xpf - -C $DESTDIR I know, I did rtfm. Now I'll add this to tar man page, ok? > > Will do the trick. > > Jordan > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Sat Aug 10 05:24:05 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id FAA14931 for ports-outgoing; Sat, 10 Aug 1996 05:24:05 -0700 (PDT) Received: from sunrise.cs.berkeley.edu (root@sunrise.CS.Berkeley.EDU [128.32.38.121]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id FAA14926 for ; Sat, 10 Aug 1996 05:24:03 -0700 (PDT) Received: from po2.glue.umd.edu (po2.glue.umd.edu [129.2.128.45]) by sunrise.cs.berkeley.edu (8.7.5/8.6.12) with ESMTP id FAA23314 for ; Sat, 10 Aug 1996 05:23:56 -0700 (PDT) Received: from channel.eng.umd.edu (channel.eng.umd.edu [129.2.98.186]) by po2.glue.umd.edu (8.7.5/8.7.3) with ESMTP id IAA06202; Sat, 10 Aug 1996 08:24:00 -0400 (EDT) Received: from localhost (chuckr@localhost) by channel.eng.umd.edu (8.7.5/8.7.3) with SMTP id IAA02324; Sat, 10 Aug 1996 08:23:54 -0400 (EDT) X-Authentication-Warning: channel.eng.umd.edu: chuckr owned process doing -bs Date: Sat, 10 Aug 1996 08:23:37 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@channel.eng.umd.edu To: Narvi cc: "Jordan K. Hubbard" , FreeBSD Ports Subject: Re: using tar In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sat, 10 Aug 1996, Narvi wrote: > > > On Fri, 9 Aug 1996, Jordan K. Hubbard wrote: > > > > I want to use tar to move a directory hierarchy, but I want to do it > > > without using a temp directory, and I don't know the syntax to make tar > > > create an archive to stdout, then read from stdout to extract the acrchive > > > > I was all prepared to flame you for not RTFM'ing first when I noticed > > that both the tar man page and `tar --help' don't document this in > > their descriptions of the -f flag. For Shame. > > > > tar -cf - -C $SRCDIR . | tar xpf - -C $DESTDIR > > > > Will do the trick. > > > > Why not just mv $SRCDIR $DESTDIR? Yes, if $DESTDIR exist you will have to > write a for $i in ...; do mv $i $DESTDIR; done? Because that removes the possibility of doing a reinstall, same reason we use install -c and not just install. > > Sander > > > Jordan > > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Sat Aug 10 05:30:51 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id FAA15419 for ports-outgoing; Sat, 10 Aug 1996 05:30:51 -0700 (PDT) Received: from sunrise.cs.berkeley.edu (root@sunrise.CS.Berkeley.EDU [128.32.38.121]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id FAA15412 for ; Sat, 10 Aug 1996 05:30:49 -0700 (PDT) Received: from po1.glue.umd.edu (po1.glue.umd.edu [129.2.128.44]) by sunrise.cs.berkeley.edu (8.7.5/8.6.12) with ESMTP id FAA23326 for ; Sat, 10 Aug 1996 05:30:41 -0700 (PDT) Received: from channel.eng.umd.edu (channel.eng.umd.edu [129.2.98.186]) by po1.glue.umd.edu (8.7.5/8.7.3) with ESMTP id IAA12035; Sat, 10 Aug 1996 08:30:47 -0400 (EDT) Received: from localhost (chuckr@localhost) by channel.eng.umd.edu (8.7.5/8.7.3) with SMTP id IAA02328; Sat, 10 Aug 1996 08:30:46 -0400 (EDT) X-Authentication-Warning: channel.eng.umd.edu: chuckr owned process doing -bs Date: Sat, 10 Aug 1996 08:30:45 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@channel.eng.umd.edu To: Narvi cc: ports%freebsd.org@sunrise.cs.berkeley.edu Subject: Re: Port of tkmail-2.0 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sat, 10 Aug 1996, Narvi wrote: > > HI! > > This is port of tkmail-2.0, a mime-capable mail program written in > perl & tcl/tk. This is tkmail version 2.0p8. Hope it gets commited > some day. Have you guys been reading ports when you post? Between you, Michael Searle, and Andy Kohout, you guys have been turning in new ports at an incredible rate. None have been without errors, so it takes time to do it. Please, I want to see all this stuff put in ports, but give me a little time, under the circumstances. > > Sander > > -------------------- Cut here ------------------------------------ > begin 664 tkmail-port.tgz > M'XL(`````````^T::W/:2#)?X5?,E7.5VQ1(B*?MVVP=&^0-%6-S@)U M!FF`622-HAD9LZG<;[_ND80!V_$F,22Y4R<&-(_NGGY-]XS4W*?<,Y_L$DB] > MTFHUR!-"K%:C@M\`V7?Z0)K52LVR:K6F!<,JS5;E"6GLE*L48JEH1,B3@$97 > M_!/C%C/&O'TPM%]0B?XGW&-R5U;P6?IOM&"8U6JU M]4_H'XPCU7^E505;L*KU6N,)J>R"F6WX/]=_K],@?TN,H%PU*N&A`>(PIG_\ > M1%Z0HT;=I?3(K;JM\5&U[C3!C^O-ZM'AY+#>G%1KQ6_-?`Y?#:G_AU0YLUWM > M`)^W_VO_KUG-//[O`[;TK[_+E#XJC4_'?ZO6K%J9_NN@>&BJ5^I6'O_W`<^? > M/R<].F>8`!@BXM/":!:3#G-`":12.6Y4CRLU8AT=-8KE MD6KMV&H=6X M5'$1$#$A2Q%'9,'EC(PY:&AI%/]"WG2'KV!WPM9[IX0L\M(I,*-O#TYA!C9F > M,SH\8HX2T9(H0<)8$1F'H8C@VXEXJ"3A@1[WICTX`Q:/R7A)0A'&'AB+RWP: > MN"72)3-ZQ6"DX\4N9[&0D@8"8>Y<<20GB/"):'!DK!K > M+A4/IC!Q'`&OQ%UGZ^F'T^ZOG>[@HR$\-\73U0LDK@B>*;*@@0):7):`)X\I > MI@E3H!5&G,(C\B/)F'EB`6)(L($@S%A&I@ > M2V4$&'_MGMW".-:2TZC.J,]0) M_L`^Z;[]B$R:GV]`F_-S M2K4$;/HGR(!?,>"<3EF@]#"D759$A&@K$H;-01Y M/)@(6%_'/NU>VC?N`L):T2V/?5(6[A@^.)``:@EC-QJ$#0C4+9=2,1\PCL4U > MT(Z8Y"XSR(5DT3-)/#$%0F*,>HP!$+,!2:&_QJ.[%[&@PR%\,QU > MA06IF&/`""L$,E`?P,(PZD/X!U9IK(0/W@+.[BV)+ZZ`CX`M2(KE().!1)73 > MB6(1L$G=S)#75_"3049@;PE1+K7G)\I)/?^;*4>BAW]+[5S1Z/O1RUU.U&R4 > M6HV;31WI:5E!9$.Y81C"2"J9-X%0EHD>2*-B(#Z"N##TZ)@';"9(]#H"ET1Q > M$""&%=8%5[,D,FN3U M0B8$AEJE12&3]3-'!*B#BZ'=.[^TTS!B` MZLP7-&)E")/QM9FQGBGPS8P!F0@I@@Y)'R(X=FN[<.::+[1+22=Z#Q`1[!]Z > M3TI8.CU_^?JD>VH##Y6_`\*UY\W-U\S0980AQ@>,:]KK2Q/1!EJ*YLM`(%', > M2BB0((NR:*O:,Q.-K_;D_U6-5[Y#C>]?X7>Y_-%A"4KT&Y^WKT#<,88;S%Y\ > M/IVI1+M]S)ZXTI8P`W7`2ET0-II(B8PQ"\#XAS0-P\C8=H2/B1"*2P]F9$PE > M@\*1!?@$'>Q:D4DD?-@(8""-,'9!3H&I0WMH-^L=^^5MZ?A^,I^48XCC]Q-[ > M'PL%1"#5"9*4XD^0_>?%^:@_>)CL^SO(IMV?NT;[[)/$[EI@VO?E"WR`YFIU > M7R*4^$!_DD6(9&`=L>1^8P8TZ\ > M_S^FD=AEY&A?UJ$HM<15+/H^+7&S7MB3(7Z"Z*.;X7VT=FB%]Y'> M:Y6L^BH^OFI?VMUAWS[-THA;E2:7(0.69A2*57T#`VM-9D!M=;M.3X9GB!;I > M[J+Y@TQ6;B(%R4DB8MP-815<<>JM1F$=E^'0"T210[$*NZ/>=9^E.,KTF4&& > M3.^9%N%9K5@B%7P(A#*26CU==^J-7[_NC8+R^UKOG7IO6B6K=9CIO3_HGHU> > M]CJP$"^,R%]/BK>JA=0T6'&8(Q5SX-U_!`_J(H > MUWG3Q*-35RR"DOX5AR6=!D$5K[!>2&9*762/>NUU_.EY@_G6LLQL6$IO"(D% > M2,-E$UWX:^?\&>H$4^H.8_:+'C::, M#GAJ"3Y=8DQ.?`[L:!@'Y\,2:7??EDA/P`*%1\O#I;RLE\@I9E@E\JI?OH#> > MB]/1`$>=#T],"\LF2&K>#4<#N]U+;:Y]\N[BK/LV?4K0`[H(#S>Z,) M/-B:6M6#-RLHC6LH. > MK>3I!S`-C/H?5[;RH]K)P1<;RM[,9,_G_^G]3W:NOQ,:#]W_MZS5_5^E6;?T > M_7\EO__9"QP4^B)2R6G9JB)-CTX/"I?I!AJQ]S&$$_>XH-\1@)XW,^$?%PJ% > M(<0/V)0OF>1S,'3]](\9]=S?J30@JYI[(F(&8[_`G`Y5#.< M%(N=[G!TUN[9+PKKKR(4^Z]_VVXM%GOMX<@>O!MV1_;P16&BPF/3A$\#JW$# > M4T=8@6LP-X;H,U%8GINC.1Z0F3@7`B[\V8,7A?MY+18'%V?O.G;?/NL`B=NG > M_L?0=#X8#?$PW?0@,NG6QK^+A0)>*FQT7\.VJN;8Y3-%<1D;W=K[LAX MFV.X=++DKVBD,9C\/):N@7<,AC__Y8O#1G;_.Y_N[AW`SW__SZHWK/S^?Q^P > MIO^7Y[V>?39Z?!H/Q7^K4EW%_T:KCO&_46_E\7\?,$J._+C$$UNHE"$'"759 > MKIO#2$PCZI-%Q"%#Q,(JN1C5);WC06`S\I?`?FA8\_^./7PYV`6-A_R_UFQL > M^W^M6LG]?Q_PY_Q_DE9H;\L+'D#]*+/;PKL"0S&-#(1T%2+.,(H)UG6AD/J: > M!VFM+B1U$4KQ1M*%/,>C2QP"92L+\%!G0F3LS$@1AM-D?*QQL&N8$>`Y#V<+ > MR%2-8E'?6L+_]"8C.P!*WFPM%I-L-0]9-[#F__U3R,)W0>,!_[ M_YOY_K\7P)(F+?=N7MXQJ:>8RY6AYNNM4Z;2 M&?-"0UVK6[,WASDS[KF&8G)C(!>WFM)W/;:GZRBSC30IH+8:4P35K69WC-', > M@$"VWHKWK+=8D$SA*U=R8SJ7OPL>;,L//[::@$(70M+U>AN[IG[HL=6%PS8* > M=[PE[%AQ;UL&$^'$VVWXH6[K*HF>>K%Y9,PAAQQRR"&'''+((8<< 6R"&'''+((8<< ` > end > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Sat Aug 10 05:50:42 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id FAA17054 for ports-outgoing; Sat, 10 Aug 1996 05:50:42 -0700 (PDT) Received: from mail (mail.bcpl.lib.md.us [204.255.212.10]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id FAA17047 for ; Sat, 10 Aug 1996 05:50:40 -0700 (PDT) Received: by mail (5.0/SMI-SVR4) id AA04430; Sat, 10 Aug 1996 08:51:25 +0500 Message-Id: <9608101251.AA04430@mail> From: jspath@mail.bcpl.lib.md.us (Webmaster Jim) Date: Sat, 10 Aug 1996 08:51:24 -0400 In-Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) "Re: using tar" (Aug 10, 10:28am) X-Hack: cough, cough X-Mailusersshell-Patchlevel: a srb@cuci.nl (Stephen R. van den Berg) X-Mailer: X-Organization: planet earth X-Signature: /jes X-Url: jim's url X-Face: $[):DI3,{Z,[[9Gb^H.yPU[6-J}^Co2e-J!p*jQ>Q8++K~?Ejg~3#,vmYi;O8E55~r~#wa2 WdUS{+X2e6mt${6._[/U%N~y"Br4L6Lm%S0XI8RRTs"'Dpz]#@hD@I`i@G[Q+'" cKd3Acq&}J;,FhT"6d1[H=*<;o2?Z_RK&He4+Td%v3:47/5;A>0mBqsG-KB8l:\43FGDe;U To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch), chuckr@glue.umd.edu (Chuck Robey) Subject: Re: using tar Cc: FreeBSD-Ports@FreeBSD.ORG Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Aug 10, 10:28am, Joerg Wunsch wrote: } As Chuck Robey wrote: } > I want to use tar to move a directory hierarchy, but I want to do it } Aside from the responses you've got regarding tar, here's the same } with cpio: } cd /from/dir } find . -print | cpio -dump /to/dir } (The ``-dump'' is actually a combination of separate options, but easy } to memorize this way. :) I've memorized a similar set of cpio flags as -pdlmuv (poodle move ;-) -- I don't speak (or work) for the Baltimore County Public Library. They keep telling me, "Shhhhh!" From owner-freebsd-ports Sat Aug 10 07:54:00 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id HAA29330 for ports-outgoing; Sat, 10 Aug 1996 07:54:00 -0700 (PDT) Received: from bdd.net (bdd.net [207.61.119.1]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id HAA29325 for ; Sat, 10 Aug 1996 07:53:55 -0700 (PDT) Received: from localhost (james@localhost) by bdd.net (8.7.5/8.7.3) with SMTP id KAA12593; Sat, 10 Aug 1996 10:53:42 -0400 (EDT) Date: Sat, 10 Aug 1996 10:53:42 -0400 (EDT) From: James FitzGibbon To: "David E. O'Brien" cc: FreeBSD ports list Subject: Re: PLIST files In-Reply-To: <199608100825.BAA00973@relay.nuxi.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Sat, 10 Aug 1996, David E. O'Brien wrote: > Correct me if I am wrong, but pkg/PLIST should definately NOT have things > like ``@cwd /usr/local'' or ``@cd /usr/local'' in them. see pkg_create(1). There's a number of extra commands you can put in PLIST files, mostly for providing a similar interface between ports and packages. -- j. ---------------------------------------------------------------------------- | James FitzGibbon james@nexis.net | | Integrator, The Nexis Group Voice/Fax : 416 410-0100 | ---------------------------------------------------------------------------- From owner-freebsd-ports Sat Aug 10 08:04:05 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id IAA03365 for ports-outgoing; Sat, 10 Aug 1996 08:04:05 -0700 (PDT) Received: from sunrise.cs.berkeley.edu (root@sunrise.CS.Berkeley.EDU [128.32.38.121]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id IAA03360 for ; Sat, 10 Aug 1996 08:04:02 -0700 (PDT) Received: from haldjas.folklore.ee (Haldjas.folklore.ee [193.40.6.121]) by sunrise.cs.berkeley.edu (8.7.5/8.6.12) with SMTP id IAA23514 for ; Sat, 10 Aug 1996 08:02:59 -0700 (PDT) Received: (from narvi@localhost) by haldjas.folklore.ee (8.6.12/8.6.12) id SAA25655; Sat, 10 Aug 1996 18:11:14 +0300 Date: Sat, 10 Aug 1996 18:11:13 +0300 (EET DST) From: Narvi To: Chuck Robey cc: ports%freebsd.org@sunrise.cs.berkeley.edu Subject: Re: Port of tkmail-2.0 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sat, 10 Aug 1996, Chuck Robey wrote: > On Sat, 10 Aug 1996, Narvi wrote: > > > > > HI! > > > > This is port of tkmail-2.0, a mime-capable mail program written in > > perl & tcl/tk. This is tkmail version 2.0p8. Hope it gets commited > > some day. This was not meant as critique of anybody... > > Have you guys been reading ports when you post? Between you, Michael > Searle, and Andy Kohout, you guys have been turning in new ports at an Is it not meant to be so? I must be in deep misunderstanding :-( And I will have the less time the closer it is to the winter. > incredible rate. None have been without errors, so it takes time to do Ooops! I thought I tested them throughoutly... Seems I've got to post them before submitting with a note that it is only for testing for more efficient use of time... Sander > it. Please, I want to see all this stuff put in ports, but give me a > little time, under the circumstances. [port snipped] > > ----------------------------+----------------------------------------------- > Chuck Robey | Interests include any kind of voice or data > chuckr@eng.umd.edu | communications topic, C programming, and Unix. > 9120 Edmonston Ct #302 | > Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD > (301) 220-2114 | version 2.2 current -- and great FUN! > ----------------------------+----------------------------------------------- > > From owner-freebsd-ports Sat Aug 10 09:56:35 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA08098 for ports-outgoing; Sat, 10 Aug 1996 09:56:35 -0700 (PDT) Received: from biblioteca.campus.unal.edu.co ([200.21.26.198]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id JAA08087 for ; Sat, 10 Aug 1996 09:56:06 -0700 (PDT) From: pgiffuni@biblioteca.campus.unal.edu.co Received: from localhost by biblioteca.campus.unal.edu.co (AIX 4.1/UCB 5.64/4.03) id AA17382; Sat, 10 Aug 1996 12:03:07 -0500 Date: Sat, 10 Aug 1996 12:03:07 -0500 (CDT) To: ports@freebsd.org Subject: Links to FEM and math. Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hello: The following URL contains many links to sites about the Finite Element Method: http://www.engr.usask.ca/%7Emacphed/finite/fe_resources/fe_resources.html also follow their link to public domain mathematical software. Pedro. From owner-freebsd-ports Sat Aug 10 11:04:00 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id LAA12280 for ports-outgoing; Sat, 10 Aug 1996 11:04:00 -0700 (PDT) Received: from bsd.darkelf.org ([205.133.97.127]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id LAA12275 for ; Sat, 10 Aug 1996 11:03:54 -0700 (PDT) Received: (from root@localhost) by bsd.darkelf.org (8.7.5/8.6.12) id OAA17252 for ports@freebsd.org; Sat, 10 Aug 1996 14:04:51 -0400 (EDT) From: "Steven M. Ratliff" Message-Id: <199608101804.OAA17252@bsd.darkelf.org> Subject: transfig build error To: ports@freebsd.org Date: Sat, 10 Aug 1996 14:04:51 -0400 (EDT) Reply-To: StevenR362@aol.com X-Mailer: ELM [version 2.4ME+ PL17 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk transfig fails to build with the following error. This is with a current ports tree as of 8/10/96 2:00am EDT. Send any replies to StevenR362@aol.com cd dev; make JPEGINCDIR=/usr/local/include libtransfig.a cc -m486 -O2 -I.. -I/usr/local/include -I/usr/X11R6/include/X11 -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -DDVIPS -DNFSS -DNDBM -DEPSF -DUSE_XPM -c readjpg.c *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. From owner-freebsd-ports Sat Aug 10 12:17:00 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA15212 for ports-outgoing; Sat, 10 Aug 1996 12:17:00 -0700 (PDT) Received: from po2.glue.umd.edu (po2.glue.umd.edu [129.2.128.45]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id MAA15207 for ; Sat, 10 Aug 1996 12:16:57 -0700 (PDT) Received: from channel.eng.umd.edu (channel.eng.umd.edu [129.2.98.186]) by po2.glue.umd.edu (8.7.5/8.7.3) with ESMTP id PAA07572; Sat, 10 Aug 1996 15:16:56 -0400 (EDT) Received: from localhost (chuckr@localhost) by channel.eng.umd.edu (8.7.5/8.7.3) with SMTP id PAA02566; Sat, 10 Aug 1996 15:16:55 -0400 (EDT) X-Authentication-Warning: channel.eng.umd.edu: chuckr owned process doing -bs Date: Sat, 10 Aug 1996 15:16:54 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@channel.eng.umd.edu To: StevenR362@aol.com cc: ports@freebsd.org Subject: Re: transfig build error In-Reply-To: <199608101804.OAA17252@bsd.darkelf.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Sat, 10 Aug 1996, Steven M. Ratliff wrote: > transfig fails to build with the following error. This is with a > current ports tree as of 8/10/96 2:00am EDT. > Send any replies to StevenR362@aol.com > > > cd dev; make JPEGINCDIR=/usr/local/include libtransfig.a > cc -m486 -O2 -I.. -I/usr/local/include -I/usr/X11R6/include/X11 -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -DDVIPS -DNFSS -DNDBM -DEPSF -DUSE_XPM -c readjpg.c > *** Error code 1 > I just updated it from 3.1.1 to 3.1.2, but I just finished rechecking this, and it compiles fine. I compiled it before committing on thud, too, and it went fine. Can you-fetch the latest port, and try again, verifying it's for version 3.1.2? Maybe something's wrong with archives lately, I just got the same kind of complaint on another recently updated port, from Narvi. In neither case have I found anything wrong... I will fix immediately anything that I can find wrong, of course. Thanks. Let me know, I'm concerned .... ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Sat Aug 10 12:27:35 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA15696 for ports-outgoing; Sat, 10 Aug 1996 12:27:35 -0700 (PDT) Received: from po1.glue.umd.edu (po1.glue.umd.edu [129.2.128.44]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id MAA15690 for ; Sat, 10 Aug 1996 12:27:33 -0700 (PDT) Received: from channel.eng.umd.edu (channel.eng.umd.edu [129.2.98.186]) by po1.glue.umd.edu (8.7.5/8.7.3) with ESMTP id PAA13958; Sat, 10 Aug 1996 15:27:27 -0400 (EDT) Received: from localhost (chuckr@localhost) by channel.eng.umd.edu (8.7.5/8.7.3) with SMTP id PAA02620; Sat, 10 Aug 1996 15:27:26 -0400 (EDT) X-Authentication-Warning: channel.eng.umd.edu: chuckr owned process doing -bs Date: Sat, 10 Aug 1996 15:27:26 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@channel.eng.umd.edu To: pgiffuni@biblioteca.campus.unal.edu.co cc: ports@freebsd.org Subject: Re: Links to FEM and math. In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Sat, 10 Aug 1996 pgiffuni@biblioteca.campus.unal.edu.co wrote: > Hello: > The following URL contains many links to sites about the Finite Element > Method: > http://www.engr.usask.ca/%7Emacphed/finite/fe_resources/fe_resources.html > > also follow their link to public domain mathematical software. I found the links to rlab interesting. Maybe port material, if it's for what amounts to a suite of rlab tools correctly linked to gnuplot. > > Pedro. > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Sat Aug 10 14:24:44 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA20835 for ports-outgoing; Sat, 10 Aug 1996 14:24:44 -0700 (PDT) From: owner-ports Received: from alpha1.phoenix.net (grendal@alpha1.phoenix.net [199.3.232.17]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id OAA20830 for ; Sat, 10 Aug 1996 14:24:36 -0700 (PDT) Received: by alpha1.phoenix.net; (5.65v3.2/1.1.8.2/26Jan96-1253PM) id AA23776; Sat, 10 Aug 1996 16:24:34 -0500 Date: Sat, 10 Aug 1996 16:24:34 -0500 Message-Id: <9608102124.AA23776@alpha1.phoenix.net> To: ports@FreeBSD.ORG X-Url: mailto:ports@FreeBSD.ORG X-Mailer: Lynx, Version 2-4-2 Subject: mailto:ports@FreeBSD.ORG Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk From owner-freebsd-ports Sat Aug 10 15:25:28 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id PAA29591 for ports-outgoing; Sat, 10 Aug 1996 15:25:28 -0700 (PDT) Received: from bsd.darkelf.org ([205.133.97.127]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id PAA29557 for ; Sat, 10 Aug 1996 15:24:31 -0700 (PDT) Received: (from root@localhost) by bsd.darkelf.org (8.7.5/8.6.12) id SAA01810; Sat, 10 Aug 1996 18:20:22 -0400 (EDT) From: "Steven M. Ratliff" Message-Id: <199608102220.SAA01810@bsd.darkelf.org> Subject: transfig patch To: ports@freebsd.org Date: Sat, 10 Aug 1996 18:20:21 -0400 (EDT) Cc: chuckr@glue.umd.edu Reply-To: StevenR362@aol.com X-Mailer: ELM [version 2.4ME+ PL17 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Here is a patch to get transfig to bootstrap properly. It needs to access jpeglib.h from the cjpeg package. Steve replies to StevenR362@aol.com *** Makefile.old Sat Aug 10 17:47:05 1996 --- Makefile Sat Aug 10 18:06:32 1996 *************** *** 14,20 **** MAINTAINER= chuckr@freebsd.org ! LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm USE_IMAKE= yes --- 14,21 ---- MAINTAINER= chuckr@freebsd.org ! LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm \ ! cjpeg:${PORTSDIR}/graphics/jpeg USE_IMAKE= yes From owner-freebsd-ports Sat Aug 10 16:22:46 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id QAA01634 for ports-outgoing; Sat, 10 Aug 1996 16:22:46 -0700 (PDT) Received: from po1.glue.umd.edu (po1.glue.umd.edu [129.2.128.44]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id QAA01626 for ; Sat, 10 Aug 1996 16:22:30 -0700 (PDT) Received: from gilligan.eng.umd.edu (gilligan.eng.umd.edu [129.2.103.21]) by po1.glue.umd.edu (8.7.5/8.7.3) with ESMTP id TAA15088; Sat, 10 Aug 1996 19:22:13 -0400 (EDT) Received: from localhost (chuckr@localhost) by gilligan.eng.umd.edu (8.7.5/8.7.3) with SMTP id TAA10269; Sat, 10 Aug 1996 19:22:12 -0400 (EDT) X-Authentication-Warning: gilligan.eng.umd.edu: chuckr owned process doing -bs Date: Sat, 10 Aug 1996 19:22:12 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@gilligan.eng.umd.edu To: StevenR362@aol.com cc: ports@freebsd.org Subject: Re: transfig patch In-Reply-To: <199608102220.SAA01810@bsd.darkelf.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Sat, 10 Aug 1996, Steven M. Ratliff wrote: > Here is a patch to get transfig to bootstrap properly. > It needs to access jpeglib.h from the cjpeg package. > > Steve > > replies to StevenR362@aol.com > > *** Makefile.old Sat Aug 10 17:47:05 1996 > --- Makefile Sat Aug 10 18:06:32 1996 > *************** > *** 14,20 **** > > MAINTAINER= chuckr@freebsd.org > > ! LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm > > USE_IMAKE= yes > > --- 14,21 ---- > > MAINTAINER= chuckr@freebsd.org > > ! LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm \ > ! cjpeg:${PORTSDIR}/graphics/jpeg Damn I should have thought of that, I had jpeg installed and didn't think about it. Since the earlier port had jpeg in it also, this must have been a long standing bogon. I'll fix it quickly, thanks. > > USE_IMAKE= yes > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Sat Aug 10 19:12:04 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id QAA01634 for ports-outgoing; Sat, 10 Aug 1996 16:22:46 -0700 (PDT) Received: from po1.glue.umd.edu (po1.glue.umd.edu [129.2.128.44]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id QAA01626 for ; Sat, 10 Aug 1996 16:22:30 -0700 (PDT) Received: from gilligan.eng.umd.edu (gilligan.eng.umd.edu [129.2.103.21]) by po1.glue.umd.edu (8.7.5/8.7.3) with ESMTP id TAA15088; Sat, 10 Aug 1996 19:22:13 -0400 (EDT) Received: from localhost (chuckr@localhost) by gilligan.eng.umd.edu (8.7.5/8.7.3) with SMTP id TAA10269; Sat, 10 Aug 1996 19:22:12 -0400 (EDT) X-Authentication-Warning: gilligan.eng.umd.edu: chuckr owned process doing -bs Date: Sat, 10 Aug 1996 19:22:12 -0400 (EDT) From: Chuck Robey X-Sender: chuckr@gilligan.eng.umd.edu To: StevenR362@aol.com cc: ports@freebsd.org Subject: Re: transfig patch In-Reply-To: <199608102220.SAA01810@bsd.darkelf.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Sat, 10 Aug 1996, Steven M. Ratliff wrote: > Here is a patch to get transfig to bootstrap properly. > It needs to access jpeglib.h from the cjpeg package. > > Steve > > replies to StevenR362@aol.com > > *** Makefile.old Sat Aug 10 17:47:05 1996 > --- Makefile Sat Aug 10 18:06:32 1996 > *************** > *** 14,20 **** > > MAINTAINER= chuckr@freebsd.org > > ! LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm > > USE_IMAKE= yes > > --- 14,21 ---- > > MAINTAINER= chuckr@freebsd.org > > ! LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm \ > ! cjpeg:${PORTSDIR}/graphics/jpeg Damn I should have thought of that, I had jpeg installed and didn't think about it. Since the earlier port had jpeg in it also, this must have been a long standing bogon. I'll fix it quickly, thanks. > > USE_IMAKE= yes > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@eng.umd.edu | communications topic, C programming, and Unix. 9120 Edmonston Ct #302 | Greenbelt, MD 20770 | I run Journey2 and n3lxx, both FreeBSD (301) 220-2114 | version 2.2 current -- and great FUN! ----------------------------+----------------------------------------------- From owner-freebsd-ports Sat Aug 10 19:46:52 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id TAA02757 for ports-outgoing; Sat, 10 Aug 1996 19:46:52 -0700 (PDT) Received: from computi.erols.com (computi.erols.com [206.161.77.227]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id TAA02751 for ; Sat, 10 Aug 1996 19:46:46 -0700 (PDT) Received: (from butsch@localhost) by computi.erols.com (8.6.12/8.6.12) id WAA27042; Sat, 10 Aug 1996 22:46:53 -0400 From: Michael Butschky Message-Id: <199608110246.WAA27042@computi.erols.com> Subject: SWI Prolog 2.5.6 port To: ports@freebsd.org Date: Sat, 10 Aug 1996 22:46:53 -0400 (EDT) Cc: butsch@computi.erols.com X-Mailer: ELM [version 2.4 PL24 ME8a] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Dear FreeBSD, I have uploaded a FreeBSD port of SWI Prolog (version 2.5.6) to ftp://ftp.freebsd.org/pub/FreeBSD/incoming/pl.tar.gz. I tested it out on my FreeBSD box and seems to work fine (only a couple of warnings on the compile). Likewise, the download, install, pkg_delete and all that stuff work with out problem. BTW, this is my first FreeBSD port. Please include me in the list of `Additional FreeBSD contributors' in the handbook. Thank you, Michael Butschky P.S. -- WONDERFUL!!!! system you guys have pulled/put together here! From owner-freebsd-ports Sat Aug 10 20:28:51 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id UAA05301 for ports-outgoing; Sat, 10 Aug 1996 20:28:51 -0700 (PDT) Received: from biblioteca.campus.unal.edu.co ([200.21.26.198]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id UAA05295 for ; Sat, 10 Aug 1996 20:28:46 -0700 (PDT) From: pgiffuni@biblioteca.campus.unal.edu.co Received: from localhost by biblioteca.campus.unal.edu.co (AIX 4.1/UCB 5.64/4.03) id AA04708; Sat, 10 Aug 1996 22:36:23 -0500 Date: Sat, 10 Aug 1996 22:36:23 -0500 (CDT) To: ports@freebsd.org Subject: SCO ports. Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Without ideas of what to port? http://www.sco.com/SkunkWare/readme.html can be a good source: Does someone know if SCO's Motif and X apps run under FreeBSD? Pedro.