From owner-freebsd-ports Sun Sep 13 01:58:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA04642 for freebsd-ports-outgoing; Sun, 13 Sep 1998 01:58:05 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from emmi.physik.TU-Berlin.DE (emmi.physik.TU-Berlin.DE [130.149.160.103]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA04635 for ; Sun, 13 Sep 1998 01:58:01 -0700 (PDT) (envelope-from ibex@emmi.physik.TU-Berlin.DE) Received: (from ibex@localhost) by emmi.physik.TU-Berlin.DE (8.8.8/8.8.8) id KAA12447; Sun, 13 Sep 1998 10:57:36 +0200 (CEST) (envelope-from ibex) Message-ID: <19980913105736.A12390@physik.TU-Berlin.DE> Date: Sun, 13 Sep 1998 10:57:36 +0200 From: Dirk Froemberg To: "Vladimir B. Grebenschikov" , andreas@klemm.gtn.com Cc: stefan@asterix.webaffairs.net, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: apache-php3.0.3-1.3.0 References: <19980912094245.A29717@klemm.gtn.com> <199809121644.UAA27281@plugcom.ru> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="pWyiEgJYm5f9v55/" X-Mailer: Mutt 0.93i In-Reply-To: <199809121644.UAA27281@plugcom.ru>; from Vladimir B. Grebenschikov on Sat, Sep 12, 1998 at 08:44:48PM +0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --pWyiEgJYm5f9v55/ Content-Type: text/plain; charset=us-ascii Hello Vladimir! First thanks for pointing out that php3_crypt doesn't work with MD5 crypt properly. Actually it doesn't with DES crypt either, since the generation of the salt is too coarse compared to runtime. I replaced the #ifdef NEWSALT with something checking whether MD5 crypt or DES crypt is called on runtime. The standard salt for the DES crypt is used again (with a finer salt generation of course), because the extented salt returns a strange (perhaps only to me 8-) result which has nothing to do with a standard DES string. And it lasts up to _10 minutes_ to calculate an extented crypt on my Pentium 90 which is much too long for something like PHP3. Please have a look at the attached diffs. If you agree Andreas could commit them soon. Perhaps you also want to contact the original PHP3 authors to include this patch in the PHP3 distribution. Best regards Dirk On Sat, Sep 12, 1998 at 08:44:48PM +0400, Vladimir B. Grebenschikov wrote: > > Dirk Froemberg is the new port maintainer. > > I didn't look closely into this ... if we add this patch, does > > it still work if installing FreeBSD with DES ? > > Will at this stage, BUT when called with one argument > crypt("password") - identical salt will be used ('$1') > > for fix this need to compile crypt.c with -DNEWSALT, but it is not best > solution for FreeBSD with DES, I know -- e-mail: ibex@physik.tu-berlin.de --pWyiEgJYm5f9v55/ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch-an *** ../php-3.0.3/functions/crypt.c.orig Fri May 15 12:57:19 1998 --- ../php-3.0.3/functions/crypt.c Sun Sep 13 09:27:06 1998 *************** *** 66,74 **** --- 66,96 ---- "Crypt", crypt_functions, NULL, NULL, NULL, NULL, NULL, STANDARD_MODULE_PROPERTIES }; + #ifdef __FreeBSD__ + static unsigned char itoa64[] = /* 0 ... 63 => ascii - 64 */ + "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; + + void + to64(s, v, n) + char *s; + long v; + int n; + { + while (--n >= 0) { + *s++ = itoa64[v&0x3f]; + v >>= 6; + } + } + #endif + void php3_crypt(INTERNAL_FUNCTION_PARAMETERS) { + #ifdef __FreeBSD__ + char salt[10]; + struct timeval tv; + #else char salt[4]; + #endif int arg_count = ARG_COUNT(ht); pval *arg1, *arg2; static char seedchars[] = *************** *** 83,96 **** --- 105,141 ---- salt[0] = '\0'; if (arg_count == 2) { convert_to_string(arg2); + #ifdef __FreeBSD__ + strncpy(salt, arg2->value.str.val, 9); + #else strncpy(salt, arg2->value.str.val, 2); + #endif } if (!salt[0]) { + #ifdef __FreeBSD__ + gettimeofday(&tv,0); + if (!strncmp(crypt("test", "xx"), "$1$", 3)) { + /* MD5 salt */ + strncpy(&salt[0], "$1$", 3); + (void)srandom((int)time((time_t *)NULL)); + to64(&salt[3], random(), 3); + to64(&salt[6], tv.tv_usec, 3); + salt[9] = '\0'; + } else { + /* DES salt */ + srandom(getpid() * tv.tv_usec); + to64(&salt[0], random(), 2); + salt[2] = '\0'; + } + #else srand(time(0) * getpid()); salt[0] = seedchars[rand() % 64]; salt[1] = seedchars[rand() % 64]; + #endif } + #ifndef __FreeBSD__ salt[2] = '\0'; + #endif return_value->value.str.val = (char *) crypt(arg1->value.str.val, salt); return_value->value.str.len = strlen(return_value->value.str.val); /* can be optimized away to 13? */ --pWyiEgJYm5f9v55/-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 13 02:30:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA06975 for freebsd-ports-outgoing; Sun, 13 Sep 1998 02:30:08 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA06959 for ; Sun, 13 Sep 1998 02:30:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA02263; Sun, 13 Sep 1998 02:30:04 -0700 (PDT) Received: from punky.snu.ac.kr (punky.snu.ac.kr [147.46.59.58]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA06358 for ; Sun, 13 Sep 1998 02:20:34 -0700 (PDT) (envelope-from pwd@punky.snu.ac.kr) Received: (from pwd@localhost) by punky.snu.ac.kr (8.8.8/8.8.8) id SAA05819; Sun, 13 Sep 1998 18:20:14 +0900 (KST) (envelope-from pwd) Message-Id: <199809130920.SAA05819@punky.snu.ac.kr> Date: Sun, 13 Sep 1998 18:20:14 +0900 (KST) From: junker@jazz.snu.ac.kr Reply-To: junker@jazz.snu.ac.kr To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7913: port upgrade: korean/h2ps Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7913 >Category: ports >Synopsis: port upgrade: korean/h2ps >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Sep 13 02:30:02 PDT 1998 >Last-Modified: >Originator: CHOI Junho >Organization: NARAE, CS Dept., Seoul National Univ., ROK >Release: FreeBSD 2.2.7-STABLE i386 >Environment: FreeBSD punky.snu.ac.kr 2.2.7-STABLE FreeBSD 2.2.7-STABLE #0: Tue Sep 8 12:10:01 KST 1998 pwd@punky.snu.ac.kr:/allegro/2.2-src/sys/compile/PUNKY i386 >Description: Regular Port upgrade(korean/h2ps) >How-To-Repeat: >Fix: Apply the following diffs: diff -uNr --exclude=CVS --exclude=README.html /usr/ports/korean/h2ps/Makefile ./Makefile --- /usr/ports/korean/h2ps/Makefile Thu Aug 13 16:18:01 1998 +++ ./Makefile Sun Sep 13 18:13:27 1998 @@ -1,19 +1,19 @@ -# New ports collection makefile for: h2ps-2.0 -# Version required: 2.0 +# New ports collection makefile for: h2ps-2.06 +# Version required: 2.06 # Date created: 20 May 1997 # Whom: CHOI Junho # # $Id: Makefile,v 1.5 1998/08/13 07:18:01 asami Exp $ # +# Thanks to SungGon Yi for advising 2.06 ports +# -DISTNAME= h2ps-2.00 -PKGNAME= ko-h2ps-a4-2.0 +DISTNAME= h2ps-2.06 +PKGNAME= ko-h2ps-2.06 CATEGORIES= korean print MASTER_SITES= ftp://cglab.snu.ac.kr/pub/hangul/n3f/tar/ MAINTAINER= junker@jazz.snu.ac.kr - -BROKEN= fetch pre-build: @(cd ${WRKSRC}; make clean) diff -uNr --exclude=CVS --exclude=README.html /usr/ports/korean/h2ps/files/md5 ./files/md5 --- /usr/ports/korean/h2ps/files/md5 Sun Aug 9 09:54:34 1998 +++ ./files/md5 Sat Sep 12 02:31:11 1998 @@ -1 +1 @@ -MD5 (h2ps-2.00.tar.gz) = 529c4243512f04984762d32584f513a8 +MD5 (h2ps-2.06.tar.gz) = 726fea63114f453dcf41b74966bdc3b8 diff -uNr --exclude=CVS --exclude=README.html /usr/ports/korean/h2ps/patches/patch-aa ./patches/patch-aa --- /usr/ports/korean/h2ps/patches/patch-aa Sun Aug 9 09:54:34 1998 +++ ./patches/patch-aa Sun Sep 13 18:03:51 1998 @@ -1,20 +1,15 @@ ---- h2ps.c.orig Fri Aug 7 01:41:12 1998 -+++ h2ps.c Sat Aug 8 09:54:44 1998 -@@ -9,6 +9,7 @@ - #include - #include - #include -+#include - - #include "ncode.h" - #include "npsr.h" -@@ -177,6 +178,9 @@ +--- h2ps.c.bak Sun Sep 13 17:59:29 1998 ++++ h2ps.c Sun Sep 13 18:02:18 1998 +@@ -233,6 +233,12 @@ fputs("%%Creator: h2ps\n", out); fprintf(out, "%%%%CreationDate: %s\n", date_str); fputs("%%Pages: (atend)\n", out); + fputs("%%PageOrder: Ascend\n", out); -+ fputs("%%DocumentData: Clean8Bit\n", out); -+ fputs("%%DocumentPaperSizes: A4\n", out); ++ fputs("%%DocumentData: Clean7Bit\n", out); ++ if (page_width==595) /* A4-sized */ ++ fputs("%%DocumentPaperSizes: A4\n", out); ++ if (page_width==612) /* Letter-sized */ ++ fputs("%%DocumentPaperSizes: Letter\n", out); fputs("%%EndComments\n", out); npsr_insert_resource(out, NPSR_FONT, "n3f-5"); diff -uNr --exclude=CVS --exclude=README.html /usr/ports/korean/h2ps/patches/patch-ab ./patches/patch-ab --- /usr/ports/korean/h2ps/patches/patch-ab Tue Mar 25 19:47:27 1997 +++ ./patches/patch-ab Thu Jan 1 09:00:00 1970 @@ -1,167 +0,0 @@ -*** h2ps.c.ori Tue Mar 25 19:04:43 1997 ---- h2ps.c Tue Mar 25 19:04:49 1997 -*************** -*** 219,230 **** - /* - * Default page dimensions - */ - #ifndef WIDTH -! #define WIDTH 8.27 - #endif - - #ifndef HEIGHT -! #define HEIGHT 11.64 - #endif - - #ifndef MARGIN ---- 219,235 ---- - /* - * Default page dimensions - */ -+ #define USA_WIDTH 8.5 -+ #define USA_HEIGHT 11.0 -+ #define A4_WIDTH 8.27 -+ #define A4_HEIGHT 11.64 -+ - #ifndef WIDTH -! #define WIDTH A4_WIDTH - #endif - - #ifndef HEIGHT -! #define HEIGHT A4_HEIGHT - #endif - - #ifndef MARGIN -*************** -*** 426,431 **** ---- 431,439 ---- - /* - * Sheet dimensions - */ -+ double paper_height = HEIGHT; /* Paper height */ -+ double paper_width = WIDTH; /* Paper width */ -+ - double page_height = HEIGHT; /* Paper height */ - double page_width = WIDTH; /* Paper width */ - -*************** -*** 446,451 **** ---- 454,464 ---- - fprintf(stderr,"pos. = -#num\t\tnumber of copies to print\n"); - fprintf(stderr," -1\t\tone page per sheet\n"); - fprintf(stderr," -2\t\tTWIN PAGES per sheet\n"); -+ #if A4_PAPERSIZE == 1 -+ fprintf(stderr," -a\t\tUse USA paper size (8.5\" x 11\")\n"); -+ #else -+ fprintf(stderr," -a\t\tUse A4 paper size (21cm x 29.56cm (8.27\" 11.64\"))\n"); -+ #endif - fprintf(stderr," -d\t-nd\tprint (DON'T PRINT) current date at the bottom\n"); - fprintf(stderr," -Fnum\t\tfont size, num is a float number\n"); - fprintf(stderr," -Hstr\t\tuse str like header title for subsequent files\n"); -*************** -*** 528,533 **** ---- 541,552 ---- - usage(EXIT_FAILURE); - interpret = TRUE; - break; -+ case 'a': /* American paper sizes */ -+ #if defined(USA_HEIGHT) && defined(USA_WIDTH) -+ paper_height = USA_HEIGHT; -+ paper_width = USA_WIDTH; -+ #endif -+ break; - case 'n': - if (arg[2] == NUL) - return; -*************** -*** 778,785 **** - /* - * This routine buffers a line of input, release one character at a time - * or a whole sequence of characters with some meaning like bold sequences -! * produced by nroff (no others sequences are recognized by the moment): -! * <\b><\b><\b> - */ - int - mygetc(statusp) ---- 797,805 ---- - /* - * This routine buffers a line of input, release one character at a time - * or a whole sequence of characters with some meaning like bold sequences -! * or underlining produced by nroff. -! * <\b> -! * <_><\b> - */ - int - mygetc(statusp) -*************** -*** 807,822 **** - if (buffer[curr+1] != '\b') /* this is not a special sequence */ - return buffer[curr++]; - -! /* Check if it is a bold sequence */ -! c = buffer[curr++]; -! if (c == buffer[curr+1] && -! buffer[curr] == buffer[curr+2] && -! c == buffer[curr+3] && -! buffer[curr] == buffer[curr+4] && -! c == buffer[curr+5]) - { - *statusp = IS_BOLD; -! curr += 6; - } - - /* Return the first character of the sequence */ ---- 827,841 ---- - if (buffer[curr+1] != '\b') /* this is not a special sequence */ - return buffer[curr++]; - -! /* check if we're underlining */ -! if (buffer[curr] == '_') -! return buffer[curr++]; -! -! /* Check if it is a bold sequence */ -! if ((c = buffer[curr]) == buffer[curr+2]) - { - *statusp = IS_BOLD; -! curr += 3; - } - - /* Return the first character of the sequence */ -*************** -*** 1590,1597 **** - printf("\n%% Initialize page description variables.\n"); - printf("/x0 0 def\n"); - printf("/y0 0 def\n"); -! printf("/sh %g inch def\n", (double)HEIGHT); -! printf("/sw %g inch def\n", (double)WIDTH); - printf("/margin %g inch def\n", (double)MARGIN); - printf("/rm margin 3 div def\n"); - printf("/lm margin 2 mul 3 div def\n"); ---- 1609,1616 ---- - printf("\n%% Initialize page description variables.\n"); - printf("/x0 0 def\n"); - printf("/y0 0 def\n"); -! printf("/sh %g inch def\n", (double)paper_height); -! printf("/sw %g inch def\n", (double)paper_width); - printf("/margin %g inch def\n", (double)MARGIN); - printf("/rm margin 3 div def\n"); - printf("/lm margin 2 mul 3 div def\n"); -*************** -*** 1884,1891 **** - /* Initialize variables not depending of positional options */ - landscape = twinpages = -1; /* To force format switching */ - fontsize = -1.0; /* To force fontsize switching */ -! page_height = (double)(HEIGHT - MARGIN) * PIXELS_INCH; -! page_width = (double)(WIDTH - MARGIN) * PIXELS_INCH; - - /* Postcript prologue printing */ - print_prologue(); ---- 1903,1910 ---- - /* Initialize variables not depending of positional options */ - landscape = twinpages = -1; /* To force format switching */ - fontsize = -1.0; /* To force fontsize switching */ -! page_height = (double)(paper_height - MARGIN) * PIXELS_INCH; -! page_width = (double)(paper_width - MARGIN) * PIXELS_INCH; - - /* Postcript prologue printing */ - print_prologue(); diff -uNr --exclude=CVS --exclude=README.html /usr/ports/korean/h2ps/patches/patch-ac ./patches/patch-ac --- /usr/ports/korean/h2ps/patches/patch-ac Tue Mar 25 19:47:28 1997 +++ ./patches/patch-ac Thu Jan 1 09:00:00 1970 @@ -1,43 +0,0 @@ -*** ../h2ps-1.0-orig/Makefile Wed Mar 19 21:29:14 1997 ---- Makefile Wed Mar 19 21:53:13 1997 -*************** -*** 63,79 **** - # stupid a**holes who add non-compatible "features" - SHELL =/bin/sh - -! CC =gcc - - D =. - O =. - -! BINDIR =/usr/local/bin - -! MANDIR =/usr/man/mann -! MANEXT =n - -! CFLAGS = -O # -DBSD -DLPR_PRINT - # Default values for HEIGHT, WIDTH, MARGIN and DIR_SEP (11.64, 8.27, 1.2, '/'). - # Default values for LPR_COMMAND and LPR_OPT ("lpr", "-l") - # No values for TWOSIDED_DFLT, ONESIDED and TWOSIDED ---- 63,83 ---- - # stupid a**holes who add non-compatible "features" - SHELL =/bin/sh - -! CC = gcc - - D =. - O =. - -! ##BINDIR =/usr/local/bin -! BINDIR = $(PREFIX)/bin - -! ##MANDIR =/usr/man/mann -! ##MANEXT =n -! MANEXT = 1 -! MANDIR = $(PREFIX)/man/man$(MANEXT) - -! #CFLAGS = -O # -DBSD -DLPR_PRINT -! CFLAGS = -O -DBSD -DWIDTH=$(WIDTH) -DHEIGHT=$(HEIGHT) -DA4_PAPERSIZE=$(A4_PAPERSIZE) - # Default values for HEIGHT, WIDTH, MARGIN and DIR_SEP (11.64, 8.27, 1.2, '/'). - # Default values for LPR_COMMAND and LPR_OPT ("lpr", "-l") - # No values for TWOSIDED_DFLT, ONESIDED and TWOSIDED >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 13 04:20:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA20317 for freebsd-ports-outgoing; Sun, 13 Sep 1998 04:20:11 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA20245 for ; Sun, 13 Sep 1998 04:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA05192; Sun, 13 Sep 1998 04:20:01 -0700 (PDT) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA20041 for ; Sun, 13 Sep 1998 04:18:04 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id NAA09767 for FreeBSD-gnats-submit@freebsd.org; Sun, 13 Sep 1998 13:15:59 +0200 (MET DST) Received: (from seggers@localhost) by semyam.dinoco.de (8.9.1/8.8.8) id NAA21927; Sun, 13 Sep 1998 13:06:11 +0200 (CEST) (envelope-from seggers) Message-Id: <199809131106.NAA21927@semyam.dinoco.de> Date: Sun, 13 Sep 1998 13:06:11 +0200 (CEST) From: Stefan Eggers Reply-To: seggers@semyam.dinoco.de To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: seggers@semyam.dinoco.de X-Send-Pr-Version: 3.2 Subject: ports/7916: ELF for tcp_wrappers 7.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7916 >Category: ports >Synopsis: ELF for tcp_wrappers 7.6 >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Sep 13 04:20:00 PDT 1998 >Last-Modified: >Originator: Stefan Eggers >Organization: none >Release: FreeBSD 3.0-CURRENT i386 >Environment: >Description: I made changes to tcp_wrappers 7.6 (security in the ports collection) according to the description sent in freebsd-current by Satoshi Asami to make it conform to the new ELF rules. The major version number has to be 8 now as the old version used a non-zero minor version number. Lacking a separate a.out system I didn't test that separately. >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /usr2/FreeBSD/CVSROOT/ports/security/tcp_wrapper/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- Makefile 1998/01/10 18:31:17 1.18 +++ Makefile 1998/09/13 10:44:32 @@ -19,7 +19,7 @@ MAN8= tcpd.8 tcpdchk.8 tcpdmatch.8 post-install: - ${LDCONFIG} -m ${PREFIX}/lib + ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib @${INSTALL_DATA} ${FILESDIR}/inetd.conf.wrapped.sample ${PREFIX}/etc update: Index: patches/patch-aa =================================================================== RCS file: /usr2/FreeBSD/CVSROOT/ports/security/tcp_wrapper/patches/patch-aa,v retrieving revision 1.15 diff -u -r1.15 patch-aa --- patch-aa 1997/07/21 14:21:25 1.15 +++ patch-aa 1998/09/13 09:58:51 @@ -196,7 +196,7 @@ scaffold.h tcpdmatch.8 README.NIS ! LIB = libwrap.a -! SLIB = libwrap.so.7.6 +! SLIB = libwrap.so.8 ! ! all other: config-check $(LIB) $(SLIB) tcpd tcpdmatch try-from safe_finger tcpdchk ! Index: pkg/PLIST =================================================================== RCS file: /usr2/FreeBSD/CVSROOT/ports/security/tcp_wrapper/pkg/PLIST,v retrieving revision 1.12 diff -u -r1.12 PLIST --- PLIST 1998/08/19 19:54:36 1.12 +++ PLIST 1998/09/13 10:01:18 @@ -6,7 +6,7 @@ bin/try-from lib/libwrap.a @exec ranlib %D/%F -lib/libwrap.so.7.6 -@exec /sbin/ldconfig -m %B -@unexec /sbin/ldconfig -R +lib/libwrap.so.8 +@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B +@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R etc/inetd.conf.wrapped.sample >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 13 05:40:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA27599 for freebsd-ports-outgoing; Sun, 13 Sep 1998 05:40:09 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA27533 for ; Sun, 13 Sep 1998 05:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA06343; Sun, 13 Sep 1998 05:40:01 -0700 (PDT) Received: from tim.xenologics.com (tim.xenologics.com [194.77.5.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA26849 for ; Sun, 13 Sep 1998 05:32:17 -0700 (PDT) (envelope-from seggers@semyam.dinoco.de) Received: (from uucp@localhost) by tim.xenologics.com (8.8.5/8.8.8) with UUCP id OAA16431 for FreeBSD-gnats-submit@freebsd.org; Sun, 13 Sep 1998 14:27:14 +0200 (MET DST) Received: (from seggers@localhost) by semyam.dinoco.de (8.9.1/8.8.8) id OAA04932; Sun, 13 Sep 1998 14:00:59 +0200 (CEST) (envelope-from seggers) Message-Id: <199809131200.OAA04932@semyam.dinoco.de> Date: Sun, 13 Sep 1998 14:00:59 +0200 (CEST) From: Stefan Eggers Reply-To: seggers@semyam.dinoco.de To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: seggers@semyam.dinoco.de X-Send-Pr-Version: 3.2 Subject: ports/7917: problem with ELF tcp_wrappers 7.6 deinstallation Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7917 >Category: ports >Synopsis: problem with ELF tcp_wrappers 7.6 deinstallation >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Sep 13 05:40:00 PDT 1998 >Last-Modified: >Originator: Stefan Eggers >Organization: none >Release: FreeBSD 3.0-CURRENT i386 >Environment: An ELF -current system. >Description: I changed the port to conform to the ELF guidelines and then made a package. Testing it I noticed that libwrap.a doesn't get un- installed on pkg_delete. The problem I traced back to an unnecessary ranlib in PLIST which causes the md5 pkg_install records in +CONTENTS and the md5 of the installed file to differ. >How-To-Repeat: Make a tcp_wrappers 7.6 package, deinstall it, install it, deinstall it with "pkg_delete -v tcp_wrappers-7.6" and look at the errors reported. >Fix: The propper fix is to remove the unnecessary ranlib call. The tcp_wrapper Makefile itself does it already after installing the library. Doing it again on installation of the package is thus not necessary. This patch removes the ranlib execution from PLIST: [Please note that the library version is from my ELF patch which I send in another PR. If you want to apply it w/o ELF patch change the .so.8 to .so.7.6 and remove everything between @exec/@unexec and /sbin/ldconfig from the last two lines.] diff -r -u ../tcp_old/pkg/PLIST ./pkg/PLIST --- ../tcp_old/pkg/PLIST Sun Sep 13 13:26:18 1998 +++ ./pkg/PLIST Sun Sep 13 13:27:30 1998 @@ -5,7 +5,6 @@ bin/safe_finger bin/try-from lib/libwrap.a -@exec ranlib %D/%F lib/libwrap.so.8 @exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B @unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 13 06:00:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA00221 for freebsd-ports-outgoing; Sun, 13 Sep 1998 06:00:05 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA00170 for ; Sun, 13 Sep 1998 06:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA06874; Sun, 13 Sep 1998 06:00:01 -0700 (PDT) Received: from punky.snu.ac.kr (punky.snu.ac.kr [147.46.59.58]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA28605 for ; Sun, 13 Sep 1998 05:51:50 -0700 (PDT) (envelope-from pwd@punky.snu.ac.kr) Received: (from pwd@localhost) by punky.snu.ac.kr (8.8.8/8.8.8) id VAA20842; Sun, 13 Sep 1998 21:51:31 +0900 (KST) (envelope-from pwd) Message-Id: <199809131251.VAA20842@punky.snu.ac.kr> Date: Sun, 13 Sep 1998 21:51:31 +0900 (KST) From: junker@jazz.snu.ac.kr Reply-To: junker@jazz.snu.ac.kr To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7918: port upgrade: korean/pinetreefonts Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7918 >Category: ports >Synopsis: port upgrade: korean/pinetreefonts >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Sep 13 06:00:00 PDT 1998 >Last-Modified: >Originator: CHOI Junho >Organization: NARAE, CS Dept., Seoul National Univ., ROK >Release: FreeBSD 2.2.7-STABLE i386 >Environment: FreeBSD punky.snu.ac.kr 2.2.7-STABLE FreeBSD 2.2.7-STABLE #0: Tue Sep 8 12:10:01 KST 1998 pwd@punky.snu.ac.kr:/allegro/2.2-src/sys/compile/PUNKY i386 >Description: Port upgrade(korean/pinetreefonts). >How-To-Repeat: >Fix: Apply diffs: diff -uNr /usr/ports/korean/pinetreefonts/Makefile ./Makefile --- /usr/ports/korean/pinetreefonts/Makefile Sat Aug 8 07:43:11 1998 +++ ./Makefile Sun Sep 13 21:42:01 1998 @@ -6,20 +6,22 @@ # $Id: Makefile,v 1.6 1998/08/07 22:43:11 asami Exp $ # -DISTNAME= pinetree.precomposed-1.0 -PKGNAME= ko-pinetreefonts-1.0 +DISTNAME= pinetree.precomposed-1.01-bdf +PKGNAME= ko-pinetreefonts-1.01 CATEGORIES= korean x11-fonts -MASTER_SITES= ftp://ftp.kaist.ac.kr/pub/hangul/fonts/ \ - ftp://cglab.snu.ac.kr/pub/hangul/n3f/fonts/ \ +MASTER_SITES= ftp://cglab.snu.ac.kr/pub/hangul/n3f/tar/ \ + ftp://ftp.kaist.ac.kr/pub/hangul/fonts/ \ ftp://ftp.kreonet.re.kr/pub/hangul/cair-archive/fonts/ -EXTRACT_SUFX= .bdf.tar.gz MAINTAINER= junker@jazz.snu.ac.kr USE_X_PREFIX= yes +WRKSRC= ${WRKDIR}/pinetree.precomposed/bdf + FONTS= ptpR08 ptpR10 ptpR12 ptpR14 ptpR18 ptpR24 \ - ptpB08 ptpB10 ptpB12 ptpB14 ptpB18 ptpB24 + ptpB08 ptpB10 ptpB12 ptpB14 ptpB18 ptpB24 \ + ptptB14 pttpB14 do-build: @cd ${WRKSRC}/; \ diff -uNr /usr/ports/korean/pinetreefonts/files/md5 ./files/md5 --- /usr/ports/korean/pinetreefonts/files/md5 Sat Mar 29 21:58:32 1997 +++ ./files/md5 Sun Sep 13 21:33:02 1998 @@ -1 +1 @@ -MD5 (pinetree.precomposed-1.0.bdf.tar.gz) = 887e9992806f2def2268d8ad62279cf6 +MD5 (pinetree.precomposed-1.01-bdf.tar.gz) = fa6686dfb9dcf8101be5df4cf3f84bcb diff -uNr /usr/ports/korean/pinetreefonts/pkg/PLIST ./pkg/PLIST --- /usr/ports/korean/pinetreefonts/pkg/PLIST Thu Apr 30 23:39:11 1998 +++ ./pkg/PLIST Sun Sep 13 21:44:16 1998 @@ -10,5 +10,7 @@ lib/X11/fonts/misc/ptpR14.pcf.gz lib/X11/fonts/misc/ptpR18.pcf.gz lib/X11/fonts/misc/ptpR24.pcf.gz +lib/X11/fonts/misc/ptptB14.pcf.gz +lib/X11/fonts/misc/pttpB14.pcf.gz @exec cd %D/lib/X11/fonts/misc ; mkfontdir @unexec cd %D/lib/X11/fonts/misc ; mkfontdir >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 13 09:21:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA16403 for freebsd-ports-outgoing; Sun, 13 Sep 1998 09:21:19 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from echonyc.com (echonyc.com [198.67.15.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA16397; Sun, 13 Sep 1998 09:21:17 -0700 (PDT) (envelope-from benedict@echonyc.com) Received: from localhost by echonyc.com (8.9.1/8.9.1) with SMTP id MAA12650; Sun, 13 Sep 1998 12:21:02 -0400 (EDT) Date: Sun, 13 Sep 1998 12:21:02 -0400 (EDT) From: Snob Art Genre Reply-To: ben@rosengart.com To: jseger@FreeBSD.ORG cc: ports@FreeBSD.ORG Subject: xscreensaver Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Xscreensaver won't build; it says it's broken w/r/t libkrb. But I found that I could get it to build and run successfully with: cd /usr/ports/x11/xscreensaver make extract cd work/xscreensaver-2.24 ./configure --without-kerberos cd ../.. make install Why isn't this done by default? I see no reason why people not using kerberos should be deprived of xscreensaver just because it doesn't work with kerberos. Ben "You have your mind on computers, it seems." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 13 12:30:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA18295 for freebsd-ports-outgoing; Sun, 13 Sep 1998 12:30:08 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA18284 for ; Sun, 13 Sep 1998 12:30:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA20953; Sun, 13 Sep 1998 12:30:01 -0700 (PDT) Received: from asp.kwangwoon.ac.kr ([128.134.52.105]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA17722 for ; Sun, 13 Sep 1998 12:22:04 -0700 (PDT) (envelope-from jhpark@asp.kwangwoon.ac.kr) Received: (from jhpark@localhost) by asp.kwangwoon.ac.kr (8.8.8/8.8.8) id EAA02725; Mon, 14 Sep 1998 04:21:47 +0900 (KST) (envelope-from jhpark) Message-Id: <199809131921.EAA02725@asp.kwangwoon.ac.kr> Date: Mon, 14 Sep 1998 04:21:47 +0900 (KST) From: Park Jong-Hwan Reply-To: jhpark@asp.kwangwoon.ac.kr To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7920: New port request: korean/tin Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7920 >Category: ports >Synopsis: new tin ports for korean >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Sep 13 12:30:00 PDT 1998 >Last-Modified: >Originator: Park Jong-Hwan >Organization: Hangul IRC Network >Release: FreeBSD 2.2.7-STABLE i386 >Environment: FreeBSD asp.kwangwoon.ac.kr 2.2.7-STABLE FreeBSD 2.2.7-STABLE #0: Fri Jul 24 15:39:18 KST 1998 jhpark@safety.kwangwoon.ac.kr:/usr/src/sys/compile/jhpark i386 >Description: new port(korean/tin). tin news reader which configured for Korean users. # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # tin # tin/files # tin/files/md5 # tin/patches # tin/patches/patch-aa # tin/patches/patch-ab # tin/pkg # tin/pkg/PLIST # tin/pkg/DESCR # tin/pkg/COMMENT # tin/Makefile # echo c - tin mkdir -p tin > /dev/null 2>&1 echo c - tin/files mkdir -p tin/files > /dev/null 2>&1 echo x - tin/files/md5 sed 's/^X//' >tin/files/md5 << 'END-of-tin/files/md5' XMD5 (tinpre-1.4-980818.tgz) = 93f20163834b3a15772b4f128441004f END-of-tin/files/md5 echo c - tin/patches mkdir -p tin/patches > /dev/null 2>&1 echo x - tin/patches/patch-aa sed 's/^X//' >tin/patches/patch-aa << 'END-of-tin/patches/patch-aa' X--- src/Makefile.in.orig Sat Nov 22 06:03:52 1997 X+++ src/Makefile.in Wed Nov 26 03:12:30 1997 X@@ -20,7 +20,7 @@ X LDFLAGS = @LDFLAGS@ X YACC = @YACC@ X X-LIBS = -L../pcre -lpcre @LIBS@ @INN_NNTPLIB@ X+LIBS = ../pcre/libpcre.a @LIBS@ @INN_NNTPLIB@ ../pcre/libpcre.a X X # Where do you want the binary & manual page installed? X INSTALL_PREFIX = @INSTALL_PREFIX@ END-of-tin/patches/patch-aa echo x - tin/patches/patch-ab sed 's/^X//' >tin/patches/patch-ab << 'END-of-tin/patches/patch-ab' X--- src/init.c.orig Mon Aug 10 10:08:16 1998 X+++ src/init.c Mon Sep 14 02:14:10 1998 X@@ -144,7 +144,7 @@ X int hist_last[HIST_MAXNUM+1]; X int hist_pos[HIST_MAXNUM+1]; X int iso2asc_supported; /* Convert ISO-Latin1 to Ascii */ X-int mail_mime_encoding = MIME_ENCODING_7BIT; X+int mail_mime_encoding = MIME_ENCODING_8BIT; X int max_from = 0; X int max_subj = 0; X int num_headers_to_display; /* num headers to display -- swp */ X@@ -152,7 +152,7 @@ X int num_of_killed_arts; X int num_of_selected_arts; /* num articles marked 'hot' */ X int num_of_tagged_arts; X-int post_mime_encoding = MIME_ENCODING_7BIT; X+int post_mime_encoding = MIME_ENCODING_8BIT; X pid_t process_id; X gid_t real_gid; X uid_t real_uid; X@@ -238,14 +238,14 @@ X t_bool keep_posted_articles; X t_bool local_filtered_articles; /* locally killed / auto-selected articles */ X t_bool local_index; /* do private indexing? */ X-t_bool mail_8bit_header = FALSE; /* allow 8bit chars. in header of mail message */ X+t_bool mail_8bit_header = TRUE; /* allow 8bit chars. in header of mail message */ X t_bool mail_news; /* mail all arts to specified user */ X t_bool mark_saved_read; /* mark saved article/thread as read */ X t_bool list_active; X t_bool newsrc_active; X t_bool advertising = TRUE; X t_bool pos_first_unread; /* position cursor at first/last unread article */ X-t_bool post_8bit_header = FALSE; /* allow 8bit chars. in header when posting to newsgroup */ X+t_bool post_8bit_header = TRUE; /* allow 8bit chars. in header when posting to newsgroup */ X t_bool post_article_and_exit; /* quick post of an article then exit (elm like) */ X t_bool post_postponed_and_exit; /* post postponed articles and exit */ X t_bool print_header; /* print all of mail header or just Subject: & From lines */ END-of-tin/patches/patch-ab echo c - tin/pkg mkdir -p tin/pkg > /dev/null 2>&1 echo x - tin/pkg/PLIST sed 's/^X//' >tin/pkg/PLIST << 'END-of-tin/pkg/PLIST' Xbin/tin X@exec ln -fs %f %B/rtin X@unexec rm -f %B/rtin END-of-tin/pkg/PLIST echo x - tin/pkg/DESCR sed 's/^X//' >tin/pkg/DESCR << 'END-of-tin/pkg/DESCR' XTIN: Easy to use threaded newsreader with NOV/NNTP support. X XPark JongHwan Xjhpark@HanIRC.org END-of-tin/pkg/DESCR echo x - tin/pkg/COMMENT sed 's/^X//' >tin/pkg/COMMENT << 'END-of-tin/pkg/COMMENT' XTIN newsreader (termcap based) END-of-tin/pkg/COMMENT echo x - tin/Makefile sed 's/^X//' >tin/Makefile << 'END-of-tin/Makefile' X# New ports collection makefile for: tin-ko X# Version required: tinpre-1.4 X# Date created: 14 Sep 1998 X# Whom: Park JongHwan X# X# $Id$ X# X XDISTNAME= tinpre-1.4-980818 XPKGNAME= ko-${DISTNAME} XCATEGORIES= korean news XMASTER_SITES= ftp://ftp.tin.org/pub/news/clients/tin/current/ \ X ftp://nuxi.ucdavis.edu/pub/tin/ \ X ftp://ftp.nuxi.com/pub/tin/ XEXTRACT_SUFX= .tgz X XMAINTAINER= jhpark@HanIRC.org X XRUN_DEPENDS= ${PREFIX}/bin/metamail:${PORTSDIR}/mail/metamail X XWRKSRC= ${WRKDIR}/${DISTNAME:S/pre-1.4//} XGNU_CONFIGURE= yes X XCONFIGURE_ARGS= --with-nntp-default-server=usenet \ X --with-spooldir=/var/news \ X --with-libdir=${PREFIX}/news/lib \ X --enable-forgery \ X --enable-break-long-lines \ X --with-pgp=${PREFIX}/bin/pgp \ X --with-ispell=${PREFIX}/bin/ispell \ X --with-metamail=${PREFIX}/bin/metamail \ X --with-mime-default-charset=EUC-KR \ X --disable-mime-strict-charset X XMAKEFILE= makefile XALL_TARGET= build XMAN1= tin.1 X X.if defined(NNTP_ONLY) XCONFIGURE_ARGS+= --enable-nntp-only X.endif X Xpre-fetch: X.if !defined(NNTP_ONLY) X @${ECHO_MSG} "To build the tin to read news via NNTP only, type:" X @${ECHO_MSG} " make NNTP_ONLY=yes" X.else X @${ECHO_MSG} "Building tin without local news spool support." X.endif X X Xpost-patch: X @${MV} ${WRKSRC}/doc/tin.1 ${WRKSRC}/doc/tin.1.dist X @${SED} -e 's:/var/spool/news:/var/news:' \ X -e 's:/etc/nntpserver:${PREFIX}/etc/nntpserver:' \ X -e 's:/usr/lib/news:${PREFIX}/news/lib:' \ X <${WRKSRC}/doc/tin.1.dist >${WRKSRC}/doc/tin.1 X @${SED} -e 's:/etc/nntpserver:${PREFIX}/etc/nntpserver:' \ X <${WRKSRC}/include/nntplib.h >${WRKSRC}/include/nntplib.h.patched X @${MV} ${WRKSRC}/include/nntplib.h ${WRKSRC}/include/nntplib.h.orig X @${MV} ${WRKSRC}/include/nntplib.h.patched ${WRKSRC}/include/nntplib.h X X X.include END-of-tin/Makefile exit >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 13 12:40:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA19573 for freebsd-ports-outgoing; Sun, 13 Sep 1998 12:40:07 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA19538 for ; Sun, 13 Sep 1998 12:40:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA21187; Sun, 13 Sep 1998 12:40:01 -0700 (PDT) Received: from Bespin.worldnet.net (bespin.worldnet.net [195.3.3.4]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA18424 for ; Sun, 13 Sep 1998 12:31:48 -0700 (PDT) (envelope-from deraison@worldnet.fr) Received: from prof.nain.org (wn16-097.paris.worldnet.fr [195.3.16.97]) by Bespin.worldnet.net (8.8.8/8.8.8) with ESMTP id VAA06831 for ; Sun, 13 Sep 1998 21:31:57 +0200 (CEST) Message-Id: Date: Sun, 13 Sep 1998 21:33:05 +0200 (CEST) From: Renaud Deraison To: FreeBSD-gnats-submit@FreeBSD.ORG Subject: ports/7921: New port : Nessus Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7921 >Category: ports >Synopsis: new port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Sep 13 12:40:01 PDT 1998 >Last-Modified: >Originator: Renaud Deraison >Organization: The Nessus Project >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: >Description: I uploaded the port of the Nessus security scanner in ftp.freebsd.org/pub/FreeBSD/incoming/nessus.ports.980914.tgz >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: X-send-pr-version: 3.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 13 12:50:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA20540 for freebsd-ports-outgoing; Sun, 13 Sep 1998 12:50:38 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.cybcon.com (mail.cybcon.com [205.147.64.46]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA20529; Sun, 13 Sep 1998 12:50:34 -0700 (PDT) (envelope-from wwoods@cybcon.com) Received: from cybcon.com (william@support1.cybcon.com [205.147.76.99]) by mail.cybcon.com (8.9.0/8.9.0) with ESMTP id MAA07439; Sun, 13 Sep 1998 12:50:18 -0700 (PDT) Message-ID: <35FC21EC.1E9CF945@cybcon.com> Date: Sun, 13 Sep 1998 12:50:04 -0700 From: William Woods X-Mailer: Mozilla 4.5b1 [en] (X11; I; FreeBSD 3.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: torstenb@FreeBSD.ORG CC: ports@FreeBSD.ORG Subject: FreeBSD Port: ssh-1.2.26 - Compile probl Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I get this when doing a make OBJFORMAT=aout with this port....please advise. ---------------------------------------------------------------- cc -pipe -c -I. -I.//usr/include -I.//usr/include -DHAVE_CONFIG_H -DHOST_KEY_FILE=\"/usr/local/etc/ssh_host_key\" -DHOST_CONFIG_FILE=\"/usr/loc cc -pipe -c -I. -I.//usr/include -I.//usr/include -DHAVE_CONFIG_H -DHOST_KEY_FILE=\"/usr/local/etc/ssh_host_key\" -DHOST_CONFIG_FILE=\"/usr/loc cc -pipe -c -I. -I.//usr/include -I.//usr/include -DHAVE_CONFIG_H -DHOST_KEY_FILE=\"/usr/local/etc/ssh_host_key\" -DHOST_CONFIG_FILE=\"/usr/loc cc -pipe -c -I. -I.//usr/include -I.//usr/include -DHAVE_CONFIG_H -DHOST_KEY_FILE=\"/usr/local/etc/ssh_host_key\" -DHOST_CONFIG_FILE=\"/usr/loc cc -pipe -c -I. -I.//usr/include -I.//usr/include -DHAVE_CONFIG_H -DHOST_KEY_FILE=\"/usr/local/etc/ssh_host_key\" -DHOST_CONFIG_FILE=\"/usr/loc cc -pipe -c -I. -I.//usr/include -I.//usr/include -DHAVE_CONFIG_H -DHOST_KEY_FILE=\"/usr/local/etc/ssh_host_key\" -DHOST_CONFIG_FILE=\"/usr/loc cc -pipe -c -I. -I.//usr/include -I.//usr/include -DHAVE_CONFIG_H -DHOST_KEY_FILE=\"/usr/local/etc/ssh_host_key\" -DHOST_CONFIG_FILE=\"/usr/loc cc -pipe -c -I. -I.//usr/include -I.//usr/include -DHAVE_CONFIG_H -DHOST_KEY_FILE=\"/usr/local/etc/ssh_host_key\" -DHOST_CONFIG_FILE=\"/usr/loc cc -pipe -c -I. -I.//usr/include -I.//usr/include -DHAVE_CONFIG_H -DHOST_KEY_FILE=\"/usr/local/etc/ssh_host_key\" -DHOST_CONFIG_FILE=\"/usr/loc cc -pipe -c -I. -I.//usr/include -I.//usr/include -DHAVE_CONFIG_H -DHOST_KEY_FILE=\"/usr/local/etc/ssh_host_key\" -DHOST_CONFIG_FILE=\"/usr/loc cc -pipe -c -I. -I.//usr/include -I.//usr/include -DHAVE_CONFIG_H -DHOST_KEY_FILE=\"/usr/local/etc/ssh_host_key\" -DHOST_CONFIG_FILE=\"/usr/loc cc -pipe -c -I. -I.//usr/include -I.//usr/include -DHAVE_CONFIG_H -DHOST_KEY_FILE=\"/usr/local/etc/ssh_host_key\" -DHOST_CONFIG_FILE=\"/usr/loc cc -pipe -c -I. -I.//usr/include -I.//usr/include -DHAVE_CONFIG_H -DHOST_KEY_FILE=\"/usr/local/etc/ssh_host_key\" -DHOST_CONFIG_FILE=\"/usr/loc cc -pipe -c -I. -I.//usr/include -I.//usr/include -DHAVE_CONFIG_H -DHOST_KEY_FILE=\"/usr/local/etc/ssh_host_key\" -DHOST_CONFIG_FILE=\"/usr/loc cc -pipe -c -I. -I.//usr/include -I.//usr/include -DHAVE_CONFIG_H -DHOST_KEY_FILE=\"/usr/local/etc/ssh_host_key\" -DHOST_CONFIG_FILE=\"/usr/loc cc -pipe -c -I. -I.//usr/include -I.//usr/include -DHAVE_CONFIG_H -DHOST_KEY_FILE=\"/usr/local/etc/ssh_host_key\" -DHOST_CONFIG_FILE=\"/usr/loc cc -pipe -c -I. -I.//usr/include -I.//usr/include -DHAVE_CONFIG_H -DHOST_KEY_FILE=\"/usr/local/etc/ssh_host_key\" -DHOST_CONFIG_FILE=\"/usr/loc cc -pipe -c -I. -I.//usr/include -I.//usr/include -DHAVE_CONFIG_H -DHOST_KEY_FILE=\"/usr/local/etc/ssh_host_key\" -DHOST_CONFIG_FILE=\"/usr/loc rm -f ssh cc -pipe -Lrsaref2/source -L/usr/local/lib -o ssh ssh.o sshconnect.o log-client.o readconf.o hostfile.o readpass.o tildexpand.o clientloop.o ca sshconnect.o: Undefined symbol `___inet_addr' referenced from text segment sshconnect.o: Undefined symbol `___inet_ntoa' referenced from text segment sshconnect.o: Undefined symbol `___inet_ntoa' referenced from text segment canohost.o: Undefined symbol `___inet_ntoa' referenced from text segment canohost.o: Undefined symbol `___inet_ntoa' referenced from text segment canohost.o: Undefined symbol `___inet_ntoa' referenced from text segment canohost.o: Undefined symbol `___inet_ntoa' referenced from text segment canohost.o: Undefined symbol `___inet_ntoa' referenced from text segment canohost.o: Undefined symbol `___inet_ntoa' referenced from text segment canohost.o: Undefined symbol `___inet_ntoa' referenced from text segment newchannels.o: Undefined symbol `___inet_addr' referenced from text segment newchannels.o: Undefined symbol `___inet_addr' referenced from text segment newchannels.o: Undefined symbol `___inet_addr' referenced from text segment *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. ------------------------------------------------------------------------------ This is a -curent elf system. --------------------- William Woods - wwoods@cybcon.com goto to: http//www.freebsd.org. --> FreeBSD 3.0 CURRENT ELF <-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 13 15:35:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA13840 for freebsd-ports-outgoing; Sun, 13 Sep 1998 15:35:08 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ha1.rdc1.sdca.home.com (ha1.rdc1.sdca.home.com [24.0.3.66]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA13817 for ; Sun, 13 Sep 1998 15:35:03 -0700 (PDT) (envelope-from craig-burgess@home.com) Received: from home.com ([24.0.178.21]) by ha1.rdc1.sdca.home.com (Post.Office MTA v3.5 release 217 ID# 1-1U40000L0S0V35) with ESMTP id com for ; Sun, 13 Sep 1998 15:34:45 -0700 Message-ID: <35FC47D4.BFE4EE71@home.com> Date: Sun, 13 Sep 1998 15:31:48 -0700 From: Craig Burgess X-Mailer: Mozilla 4.05 [en] (X11; I; FreeBSD 2.2.7-RELEASE i386) MIME-Version: 1.0 To: freebsd-ports@FreeBSD.ORG Subject: modula 3 "make install" Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org churned and whirred for an hour or so, then failed, so I tried again (because my first attempt at copying the error(s) failed and I'd already closed the connection to the machine which was running it...) Hopefully the first line will provide an indication of how much was already done (and skipped on the second try -- I've tried to add line breaks in the appropriate places.) execution environment (from dmesg): FreeBSD 2.2.6-RELEASE #0: Sun May 31 10:05:11 PDT 1998 root@cx73477-a.vista1.sdca.home.com:/usr/src/sys/compile/MYKERNEL CPU: Pentium (119.75-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x525 Stepping=5 Features=0x1bf real memory = 134217728 (131072K bytes) avail memory = 129519616 (126484K bytes) The point of this exercise is to install CVSup so that I can upgrade the kernel and ports tree. Am I sol? I should install instead the "static list?" and go from there? I also (on a different day) tried to "simply" install cvsup which also failed (maybe at the same place?)... Any carefully explained clues would be appreciated. I would be considered, at best, a "novice" user. Thanks, Craig Burgess // start copy of telnet screen here ==============> -- vbtkit done -- ---------------------- building showheap ---------------------- --- building in FreeBSD2 --- m3 -w1 -why -O -o showheap -F/var/tmp/qkzp2775 -> linking showheap ld: -lXaw: no match Fatal Error: program "ld" failed, exit status = 256 *** error code 1 (ignored) --- shipping from FreeBSD2 --- m3mkdir /usr/ports/lang/modula-3-lib/work/installed/lib/m3/pkg/showheap/FreeBSD2 /usr/ports/lang/modula-3-lib/work/installed/lib/m3/pkg/showheap/FreeBSD2 .M3EXPORTS .M3IMPTAB .M3WEB m3mkdir /usr/ports/lang/modula-3-lib/work/installed/bin /usr/ports/lang/modula-3-lib/work/installed/bin showheap install: showheap: No such file or directory *** error code 71 "/usr/ports/lang/modula-3-lib/work/m3/showheap/FreeBSD2/.M3SHIP", line 322: comm and execute failed *** call stack *** "/usr/ports/lang/modula-3-lib/work/m3/showheap/FreeBSD2/.M3SHIP", line 322: call to built-in exec "/usr/ports/lang/modula-3-lib/work/m3/showheap/FreeBSD2/.M3SHIP", line 7: call t o procedure install_file m3ship: /usr/ports/lang/modula-3-lib/work/installed/bin/quake failed (status = 2 56) *** error code 255 "/usr/ports/lang/modula-3-lib/work/m3/src/m3makefile", line 61: command execute failed *** call stack *** "/usr/ports/lang/modula-3-lib/work/m3/src/m3makefile", line 61: call to built-in exec "/usr/ports/lang/modula-3-lib/work/m3/src/m3makefile", line 1: call to procedure BuildChunk m3build: /usr/ports/lang/modula-3-lib/work/installed/bin/quake failed (status = 256) *** Error code 255 Stop. *** Error code 1 =============== end of copy-paste and of message, too =============< To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 13 16:23:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA19961 for freebsd-ports-outgoing; Sun, 13 Sep 1998 16:23:32 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from picnic.mat.net (picnic.mat.net [206.246.122.117]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA19950 for ; Sun, 13 Sep 1998 16:23:27 -0700 (PDT) (envelope-from chuckr@mat.net) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.9.1/8.8.5) with SMTP id SAA08668; Sun, 13 Sep 1998 18:21:42 -0400 (EDT) Date: Sun, 13 Sep 1998 18:21:42 -0400 (EDT) From: Chuck Robey To: Craig Burgess cc: freebsd-ports@FreeBSD.ORG Subject: Re: modula 3 "make install" In-Reply-To: <35FC47D4.BFE4EE71@home.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 13 Sep 1998, Craig Burgess wrote: > The point of this exercise is to install CVSup so that I can upgrade the > kernel and ports tree. > > Am I sol? I should install instead the "static list?" and go from > there? I also (on a different day) tried to "simply" install cvsup > which also failed (maybe at the same place?)... > > Any carefully explained clues would be appreciated. I would be > considered, at best, a "novice" user. > ---------------------- building showheap ---------------------- > > --- building in FreeBSD2 --- > m3 -w1 -why -O -o > showheap -F/var/tmp/qkzp2775 > -> linking showheap > ld: -lXaw: no match This shows that it wanted libXaw.[a or so] from /usr/X11R6/lib, but couldn't find it. cvsup was trying to build itself in GUI mode, because it _did_ find /usr/X11R6/lib/libX11.a. You have a choice, either wipe out your X11R6 installation (because it's missing files) or complete the installation. Having half says you only have a broken one, and that won't do. Hint? See /usr/ports/net/cvsup/Makefile. Maybe read from the man page on make(1). We're not unfriendly (if you make an attempt to figure it out yourself), so post again if you still have problems. ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@glue.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic (FreeBSD-current) (301) 220-2114 | and jaunt (NetBSD). ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 13 18:50:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA06882 for freebsd-ports-outgoing; Sun, 13 Sep 1998 18:50:47 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from neutron.neutron.org (neutron.neutron.org [207.167.86.239]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA06873 for ; Sun, 13 Sep 1998 18:50:45 -0700 (PDT) (envelope-from kde@neutron.neutron.org) Received: (from kde@localhost) by neutron.neutron.org (8.8.8/8.8.8) id SAA00502 for freebsd-ports@freebsd.org; Sun, 13 Sep 1998 18:49:51 -0700 (PDT) (envelope-from kde) Date: Sun, 13 Sep 1998 18:49:51 -0700 (PDT) From: neutron kde project Message-Id: <199809140149.SAA00502@neutron.neutron.org> To: freebsd-ports@FreeBSD.ORG Subject: kdehelp fix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org apparently kdehelp needs a __ftok symbol. can anyone tell me how to link the kdebase sources against libcompat? do i have to change all the Makefiles? if so, how? thanks bill clarke To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 13 18:52:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA07076 for freebsd-ports-outgoing; Sun, 13 Sep 1998 18:52:34 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from trooper.velocet.ca (host-034.canadiantire.ca [209.146.201.34]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA07055; Sun, 13 Sep 1998 18:52:31 -0700 (PDT) (envelope-from dgilbert@trooper.velocet.ca) Received: (from dgilbert@localhost) by trooper.velocet.ca (8.8.7/8.8.7) id VAA28566; Sun, 13 Sep 1998 21:52:10 -0400 (EDT) Date: Sun, 13 Sep 1998 21:52:10 -0400 (EDT) Message-Id: <199809140152.VAA28566@trooper.velocet.ca> From: David Gilbert MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: John Fieber Cc: Roger Marquis , freebsd-security@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: sshd In-Reply-To: References: X-Mailer: VM 6.34 under Emacs 20.2.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "John" == John Fieber writes: John> [topic drift from security to ports; CC: added] On Sat, 12 Sep John> 1998, Roger Marquis wrote: John> A more frustrating problem for me are ports that are not John> ${PREFIX} != /usr/local compatible which makes it a hassle to John> install multiple version of a port or separate ports that have John> common files. Also, I occasionaly go through phases of liking John> SysV way of installing things in /opt/, John> /etc/opt/ and /var/opt/ which a simple 'make John> PREFIX=/opt/' doesn't really accomplish. The NetBSD ports collection seems happy to consistently use /usr/pkg as its root. I'm certainly not positive that this can easily be made a changeable option without some difficulty, but one of the often heard complaints in our shop is that we can't really use /usr/local for local things anymore because ports live there --- and we desire the ability to blow away easily recreated ports while retaining hand built extras. Dave. -- ============================================================================ |David Gilbert, Velocet Communications. | Two things can only be | |Mail: dgilbert@velocet.net | equal if and only if they | |http://www.velocet.net/~dgilbert | are precisely opposite. | =========================================================GLO================ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 13 19:35:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA11047 for freebsd-ports-outgoing; Sun, 13 Sep 1998 19:35:25 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from neutron.neutron.org (neutron.neutron.org [207.167.86.239]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA11042 for ; Sun, 13 Sep 1998 19:35:24 -0700 (PDT) (envelope-from kde@neutron.neutron.org) Received: (from kde@localhost) by neutron.neutron.org (8.8.8/8.8.8) id TAA01965 for freebsd-ports@freebsd.org; Sun, 13 Sep 1998 19:34:45 -0700 (PDT) (envelope-from kde) Date: Sun, 13 Sep 1998 19:34:45 -0700 (PDT) From: neutron kde project Message-Id: <199809140234.TAA01965@neutron.neutron.org> To: freebsd-ports@FreeBSD.ORG Subject: kdehelp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org dear bsd folks i compiled options SYSVSHM options SYSVSEM options SYSVMSG into my kernel. now kdehelp works. thanks bill clarke To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 13 20:09:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA14122 for freebsd-ports-outgoing; Sun, 13 Sep 1998 20:09:53 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA14116; Sun, 13 Sep 1998 20:09:51 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA02989; Sun, 13 Sep 1998 20:09:49 -0700 (PDT) Date: Sun, 13 Sep 1998 20:09:49 -0700 (PDT) Message-Id: <199809140309.UAA02989@freefall.freebsd.org> To: nodog@mail.utexas.edu, jkoshy@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7844 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: rm -f /var/run in /etc/rc causes error in boot with sudo State-Changed-From-To: open-closed State-Changed-By: jkoshy State-Changed-When: Sun Sep 13 20:08:48 PDT 1998 State-Changed-Why: Rev 1.148 of "src/etc/rc" has a fix in -current and rev 1.104.2.34 has it for -stable. Related PRs: 4138 5619 6793 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 13 22:00:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA24871 for freebsd-ports-outgoing; Sun, 13 Sep 1998 22:00:06 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA24818 for ; Sun, 13 Sep 1998 22:00:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA05318; Sun, 13 Sep 1998 22:00:01 -0700 (PDT) Received: from asp.kwangwoon.ac.kr ([128.134.52.105]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA24502 for ; Sun, 13 Sep 1998 21:58:34 -0700 (PDT) (envelope-from jhpark@asp.kwangwoon.ac.kr) Received: (from jhpark@localhost) by asp.kwangwoon.ac.kr (8.8.8/8.8.8) id NAA24066; Mon, 14 Sep 1998 13:54:32 +0900 (KST) (envelope-from jhpark) Message-Id: <199809140454.NAA24066@asp.kwangwoon.ac.kr> Date: Mon, 14 Sep 1998 13:54:32 +0900 (KST) From: Park Jong-Hwan Reply-To: jhpark@asp.kwangwoon.ac.kr To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7924: update ports: korean/tin Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7924 >Category: ports >Synopsis: tin news reader for Korean >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Sep 13 22:00:00 PDT 1998 >Last-Modified: >Originator: Park Jong-Hwan >Organization: Hangul IRC Network >Release: FreeBSD 2.2.7-STABLE i386 >Environment: FreeBSD asp.kwangwoon.ac.kr 2.2.7-STABLE FreeBSD 2.2.7-STABLE #0: Fri Jul 24 15:39:18 KST 1998 jhpark@safety.kwangwoon.ac.kr:/usr/src/sys/compile/jhpark i386 >Description: tin news reader for Korean. previous ko-tin port can't display Hangul on most machines. it occured because my machines compiled with xpg4 library. >How-To-Repeat: >Fix: added --disable-locale to CONFIGURE_ARGS >Audit-Trail: >Unformatted: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # tin # tin/files # tin/files/md5 # tin/patches # tin/patches/patch-aa # tin/patches/patch-ab # tin/patches/patch-ac # tin/pkg # tin/pkg/PLIST # tin/pkg/DESCR # tin/pkg/COMMENT # tin/Makefile # echo c - tin mkdir -p tin > /dev/null 2>&1 echo c - tin/files mkdir -p tin/files > /dev/null 2>&1 echo x - tin/files/md5 sed 's/^X//' >tin/files/md5 << 'END-of-tin/files/md5' XMD5 (tinpre-1.4-980818.tgz) = 93f20163834b3a15772b4f128441004f END-of-tin/files/md5 echo c - tin/patches mkdir -p tin/patches > /dev/null 2>&1 echo x - tin/patches/patch-aa sed 's/^X//' >tin/patches/patch-aa << 'END-of-tin/patches/patch-aa' X--- src/Makefile.in.orig Sat Nov 22 06:03:52 1997 X+++ src/Makefile.in Wed Nov 26 03:12:30 1997 X@@ -20,7 +20,7 @@ X LDFLAGS = @LDFLAGS@ X YACC = @YACC@ X X-LIBS = -L../pcre -lpcre @LIBS@ @INN_NNTPLIB@ X+LIBS = ../pcre/libpcre.a @LIBS@ @INN_NNTPLIB@ ../pcre/libpcre.a X X # Where do you want the binary & manual page installed? X INSTALL_PREFIX = @INSTALL_PREFIX@ END-of-tin/patches/patch-aa echo x - tin/patches/patch-ab sed 's/^X//' >tin/patches/patch-ab << 'END-of-tin/patches/patch-ab' X--- src/init.c.orig Mon Aug 10 10:08:16 1998 X+++ src/init.c Mon Sep 14 13:07:14 1998 X@@ -144,7 +144,7 @@ X int hist_last[HIST_MAXNUM+1]; X int hist_pos[HIST_MAXNUM+1]; X int iso2asc_supported; /* Convert ISO-Latin1 to Ascii */ X-int mail_mime_encoding = MIME_ENCODING_7BIT; X+int mail_mime_encoding = MIME_ENCODING_8BIT; X int max_from = 0; X int max_subj = 0; X int num_headers_to_display; /* num headers to display -- swp */ X@@ -152,7 +152,7 @@ X int num_of_killed_arts; X int num_of_selected_arts; /* num articles marked 'hot' */ X int num_of_tagged_arts; X-int post_mime_encoding = MIME_ENCODING_7BIT; X+int post_mime_encoding = MIME_ENCODING_8BIT; X pid_t process_id; X gid_t real_gid; X uid_t real_uid; X@@ -245,7 +245,7 @@ X t_bool newsrc_active; X t_bool advertising = TRUE; X t_bool pos_first_unread; /* position cursor at first/last unread article */ X-t_bool post_8bit_header = FALSE; /* allow 8bit chars. in header when posting to newsgroup */ X+t_bool post_8bit_header = TRUE; /* allow 8bit chars. in header when posting to newsgroup */ X t_bool post_article_and_exit; /* quick post of an article then exit (elm like) */ X t_bool post_postponed_and_exit; /* post postponed articles and exit */ X t_bool print_header; /* print all of mail header or just Subject: & From lines */ X@@ -569,6 +569,7 @@ X iso2asc_supported = 0; X keep_dead_articles = TRUE; X keep_posted_articles = TRUE; X+ mail_8bit_header = FALSE; X mark_saved_read = TRUE; X list_active = FALSE; X newsrc_active = FALSE; X@@ -580,7 +581,7 @@ X pos_first_unread = TRUE; X post_article_and_exit = FALSE; X post_postponed_and_exit = FALSE; X- post_8bit_header = FALSE; X+ post_8bit_header = TRUE; X print_header = FALSE; X process_only_unread = TRUE; X prompt_followupto = FALSE; END-of-tin/patches/patch-ab echo x - tin/patches/patch-ac sed 's/^X//' >tin/patches/patch-ac << 'END-of-tin/patches/patch-ac' X--- include/nntplib.h.orig Mon Aug 3 00:24:12 1998 X+++ include/nntplib.h Mon Sep 14 13:23:23 1998 X@@ -18,7 +18,7 @@ X # ifdef M_AMIGA X # define NNTP_SERVER_FILE "uulib:nntpserver" X # else X-# define NNTP_SERVER_FILE "/etc/nntpserver" X+# define NNTP_SERVER_FILE __PREFIX__"/etc/nntpserver" X # endif /* M_AMIGA */ X #endif /* !NNTP_SERVER_FILE */ X END-of-tin/patches/patch-ac echo c - tin/pkg mkdir -p tin/pkg > /dev/null 2>&1 echo x - tin/pkg/PLIST sed 's/^X//' >tin/pkg/PLIST << 'END-of-tin/pkg/PLIST' Xbin/tin X@exec ln -fs %f %B/rtin X@unexec rm -f %B/rtin END-of-tin/pkg/PLIST echo x - tin/pkg/DESCR sed 's/^X//' >tin/pkg/DESCR << 'END-of-tin/pkg/DESCR' XTIN: Easy to use threaded newsreader with NOV/NNTP support. XThis version of tin is configured for Korean users. X XPark JongHwan Xjhpark@HanIRC.org END-of-tin/pkg/DESCR echo x - tin/pkg/COMMENT sed 's/^X//' >tin/pkg/COMMENT << 'END-of-tin/pkg/COMMENT' XTIN newsreader (termcap based) END-of-tin/pkg/COMMENT echo x - tin/Makefile sed 's/^X//' >tin/Makefile << 'END-of-tin/Makefile' X# New ports collection makefile for: tin-ko X# Version required: tinpre-1.4 X# Date created: 14 Sep 1998 X# Whom: Park JongHwan X# X# $Id$ X# X XDISTNAME= tinpre-1.4-980818 XPKGNAME= ko-${DISTNAME} XCATEGORIES= korean news XMASTER_SITES= ftp://ftp.hpcnet.ne.kr/pub/packages/news/tin/current/ \ X ftp://ftp.kaist.ac.kr/hangul/news/tin/current/ \ X ftp://ftp.tin.org/pub/news/clients/tin/current/ \ X ftp://nuxi.ucdavis.edu/pub/tin/ \ X ftp://ftp.nuxi.com/pub/tin/ X XEXTRACT_SUFX= .tgz X XMAINTAINER= jhpark@HanIRC.org X XWRKSRC= ${WRKDIR}/${DISTNAME:S/pre-1.4//} XGNU_CONFIGURE= yes X XCONFIGURE_ARGS= --with-nntp-default-server=news \ X --with-spooldir=/var/news \ X --with-libdir=${PREFIX}/news/lib \ X --enable-forgery \ X --enable-break-long-lines \ X --with-pgp=${PREFIX}/bin/pgp \ X --with-ispell=${PREFIX}/bin/ispell \ X --with-metamail=${PREFIX}/bin/metamail \ X --with-mime-default-charset=EUC-KR \ X --disable-mime-strict-charset \ X --disable-locale X XMAKEFILE= makefile XALL_TARGET= build XMAN1= tin.1 X X.if defined(NNTP_ONLY) XCONFIGURE_ARGS+= --enable-nntp-only X.endif X Xpre-fetch: X.if !defined(NNTP_ONLY) X @${ECHO_MSG} "To build the tin to read news via NNTP only, type:" X @${ECHO_MSG} " make NNTP_ONLY=yes" X.else X @${ECHO_MSG} "Building tin without local news spool support." X.endif X X Xpost-patch: X @${MV} ${WRKSRC}/doc/tin.1 ${WRKSRC}/doc/tin.1.dist X @${SED} -e 's:/var/spool/news:/var/news:' \ X -e 's:/etc/nntpserver:${PREFIX}/etc/nntpserver:' \ X -e 's:/usr/lib/news:${PREFIX}/news/lib:' \ X <${WRKSRC}/doc/tin.1.dist >${WRKSRC}/doc/tin.1 X Xpost-configure: X @${ECHO} '#define __PREFIX__ "${PREFIX}"' >>${WRKSRC}/include/autoconf.h X X.include END-of-tin/Makefile exit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 13 23:17:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA09993 for freebsd-ports-outgoing; Sun, 13 Sep 1998 23:17:50 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ha1.rdc1.sdca.home.com (ha1.rdc1.sdca.home.com [24.0.3.66]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA09988 for ; Sun, 13 Sep 1998 23:17:47 -0700 (PDT) (envelope-from craig-burgess@home.com) Received: from home.com ([24.0.178.21]) by ha1.rdc1.sdca.home.com (Post.Office MTA v3.5 release 217 ID# 1-1U40000L0S0V35) with ESMTP id com for ; Sun, 13 Sep 1998 23:17:31 -0700 Message-ID: <35FCB44A.FA49EA3F@home.com> Date: Sun, 13 Sep 1998 23:14:34 -0700 From: Craig Burgess X-Mailer: Mozilla 4.05 [en]C-AtHome0404 (WinNT; U) MIME-Version: 1.0 To: freebsd-ports@FreeBSD.ORG Subject: Re: modula 3 "make install" References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Chuck Robey wrote: > > On Sun, 13 Sep 1998, Craig Burgess wrote: > > > The point of this exercise is to install CVSup so that I can upgrade the > > kernel and ports tree. > > > > Am I sol? I should install instead the "static list?" and go from > > there? I also (on a different day) tried to "simply" install cvsup > > which also failed (maybe at the same place?)... > > > > Any carefully explained clues would be appreciated. I would be > > considered, at best, a "novice" user. > > > ---------------------- building showheap ---------------------- > > > > --- building in FreeBSD2 --- > > m3 -w1 -why -O -o > > showheap -F/var/tmp/qkzp2775 > > -> linking showheap > > ld: -lXaw: no match > > This shows that it wanted libXaw.[a or so] from /usr/X11R6/lib, but > couldn't find it. cvsup was trying to build itself in GUI mode, because > it _did_ find /usr/X11R6/lib/libX11.a. You have a choice, either wipe > out your X11R6 installation (because it's missing files) or complete the > installation. Having half says you only have a broken one, and that > won't do. > > Hint? See /usr/ports/net/cvsup/Makefile. Maybe read from the man page > on make(1). We're not unfriendly (if you make an attempt to figure it > out yourself), so post again if you still have problems. > > ----------------------------+----------------------------------------------- > Chuck Robey | (sig trimmed) > ----------------------------+----------------------------------------------- Um. The man page for 'make' is written in an obscure dialect of Martian, however I uncommented the /usr/ports/net/cvsup/Makefile as -- '# To build the client without GUI support: MAKE_ENV= M3FLAGS=-DNOGUI' and tried 'make install' in /usr/ports/net/cvsup once again -- with the same results -- failed in the same place -- and that presents a conundrum... I didn't install XFree because the machine is a "server" (complete with a 13" mono monitor). Something else must have installed some X11R6 files as dependancies? One of the reasons I installed FreeBSD was because I could omit the superfluous XFree installation. (The other reason: it would install over the Internet.) On my desktop machine I've installed FreeBSD 2.2.7 **with** X11R6 (and support for Linux binaries, and KDE...) But I've got a 17" monitor there -- and a decent display adapter. If I must install X11R6 so that Modula-3/cvsup can be installed, I will; it just seems silly because I can't realistically use it and have no reason to try? cheerfully, craig burgess To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Sep 13 23:47:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA15369 for freebsd-ports-outgoing; Sun, 13 Sep 1998 23:47:48 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from plugcom.ru (radiance.plugcom.ru [195.2.73.7]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA15360 for ; Sun, 13 Sep 1998 23:47:45 -0700 (PDT) (envelope-from vova@plugcom.ru) Received: (from vova@localhost) by plugcom.ru (8.8.7/8.8.6) id KAA11952; Mon, 14 Sep 1998 10:46:41 +0400 (MSD) Date: Mon, 14 Sep 1998 10:46:41 +0400 (MSD) Message-Id: <199809140646.KAA11952@plugcom.ru> From: "Vladimir B. Grebenschikov" To: ibex@physik.TU-Berlin.DE CC: andreas@klemm.gtn.com, stefan@asterix.webaffairs.net, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: apache-php3.0.3-1.3.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Date: Sun, 13 Sep 1998 10:57:36 +0200 > From: Dirk Froemberg > Please have a look at the attached diffs. If you agree Andreas could > commit them soon. I am agree, thank you for correct DES-solution > Perhaps you also want to contact the original PHP3 authors to include > this patch in the PHP3 distribution. OK I'll forward them this patch > Best regards Dirk -- Plug Communication ISP, Moscow Vladimir B. Grebenschikov, vova@plugcom.ru, 2:5020/302@fidonet.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 00:06:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA17812 for freebsd-ports-outgoing; Mon, 14 Sep 1998 00:06:45 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from whistle.com (s205m131.whistle.com [207.76.205.131]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA17793; Mon, 14 Sep 1998 00:06:39 -0700 (PDT) (envelope-from archie@whistle.com) Received: (from smap@localhost) by whistle.com (8.7.5/8.6.12) id AAA17980; Mon, 14 Sep 1998 00:06:23 -0700 (PDT) Received: from bubba.whistle.com(207.76.205.7) by whistle.com via smap (V1.3) id sma017978; Mon Sep 14 00:06:05 1998 Received: (from archie@localhost) by bubba.whistle.com (8.8.7/8.6.12) id AAA16521; Mon, 14 Sep 1998 00:06:05 -0700 (PDT) From: Archie Cobbs Message-Id: <199809140706.AAA16521@bubba.whistle.com> Subject: Re: sshd In-Reply-To: from John Fieber at "Sep 12, 98 11:35:54 pm" To: jfieber@indiana.edu (John Fieber) Date: Mon, 14 Sep 1998 00:06:05 -0700 (PDT) Cc: marquis@roble.com, freebsd-security@FreeBSD.ORG, ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL38 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org John Fieber writes: > > For one thing 'make -n install' typically doesn't yield readable > > information unless you first 'cd work/*'. > > 'more pkg/PLIST' is generally more efficient......if the PLIST is > accurate. > > > Secondly, while port A installs under /usr/, port B > > installs to /usr/local/etc and port C in /usr/libexec, ... > > You can never be sure what is going where and it's a rare > > port that can be uninstalled with 'make uninstall'. > > ... > > A more frustrating problem for me are ports that are not > ${PREFIX} != /usr/local compatible which makes it a hassle to > install multiple version of a port or separate ports that have > common files. Also, I occasionaly go through phases of liking > SysV way of installing things in /opt/, > /etc/opt/ and /var/opt/ which a simple 'make > PREFIX=/opt/' doesn't really accomplish. If someone was interested, it would be easy to write a script that checks all the ports: - mount / and /usr read-only - mount /usr/local and /usr/local2 read-write, initially empty except for the directory structure - save mtree dumps of every file in /usr/local and /usr/local2 - cycle through every port and: - build the port with PREFIX=/usr/local - install the port, then uninstall the port - compare the contents of /usr/local with the mtree file - build the port with PREFIX=/usr/local2 - install the port, then uninstall the port - compare the contents of /usr/local2 AND /usr/local with the mtree files If any port exhibited bad behavior, it could also automatically generate a send-pr report :-) -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 00:50:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA24527 for freebsd-ports-outgoing; Mon, 14 Sep 1998 00:50:35 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from k6n1.znh.org (dialup2.gaffaneys.com [208.155.161.52]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA24507 for ; Mon, 14 Sep 1998 00:50:30 -0700 (PDT) (envelope-from zach@gaffaneys.com) Received: (from zach@localhost) by k6n1.znh.org (8.9.1/8.9.1) id HAA01434; Mon, 14 Sep 1998 07:50:57 GMT (envelope-from zach) Message-ID: <19980914025057.B1205@znh.org> Date: Mon, 14 Sep 1998 02:50:57 -0500 From: Zach Heilig To: Craig Burgess , freebsd-ports@FreeBSD.ORG Subject: Re: modula 3 "make install" References: <35FCB44A.FA49EA3F@home.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <35FCB44A.FA49EA3F@home.com>; from Craig Burgess on Sun, Sep 13, 1998 at 11:14:34PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Sep 13, 1998 at 11:14:34PM -0700, Craig Burgess wrote: > Um. The man page for 'make' is written in an obscure dialect of > Martian, however I uncommented the /usr/ports/net/cvsup/Makefile as -- > '# To build the client without GUI support: > MAKE_ENV= M3FLAGS=-DNOGUI' > > and tried 'make install' in /usr/ports/net/cvsup once again -- with the > same results -- failed in the same place -- and that presents a > conundrum... You should probably 'make clean' before trying 'make install' again. If your only goal is to get a working cvsup (as opposed to learning to deal with the ports system), you could pick up: ftp://ftp.freebsd.org/pub/FreeBSD/CVSup/cvsup.nogui-bin-15.4.2.tar.gz (it's not a package that pkg_add can deal with, but it does include a cvsup binary that does not use X) On the other hand, you may want to install (only) the X libraries and headers so you can compile/run X programs on that server, and display them on your desktop machine. -- Zach Heilig -- zach@gaffaneys.com A horse without a nose... never wins. (unknown) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 00:52:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA24938 for freebsd-ports-outgoing; Mon, 14 Sep 1998 00:52:08 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.40.131]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA24835; Mon, 14 Sep 1998 00:52:03 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.1/8.8.5) with ESMTP id JAA22466; Mon, 14 Sep 1998 09:45:21 +0200 (CEST) To: Archie Cobbs cc: jfieber@indiana.edu (John Fieber), marquis@roble.com, freebsd-security@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: sshd In-reply-to: Your message of "Mon, 14 Sep 1998 00:06:05 PDT." <199809140706.AAA16521@bubba.whistle.com> Date: Mon, 14 Sep 1998 09:45:21 +0200 Message-ID: <22464.905759121@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <199809140706.AAA16521@bubba.whistle.com>, Archie Cobbs writes: >If someone was interested, it would be easy to write a script >that checks all the ports: By all means go for it :-) Poul-Henning > > - mount / and /usr read-only > - mount /usr/local and /usr/local2 read-write, initially empty > except for the directory structure > - save mtree dumps of every file in /usr/local and /usr/local2 > - cycle through every port and: > - build the port with PREFIX=/usr/local > - install the port, then uninstall the port > - compare the contents of /usr/local with the mtree file > - build the port with PREFIX=/usr/local2 > - install the port, then uninstall the port > - compare the contents of /usr/local2 AND /usr/local > with the mtree files > >If any port exhibited bad behavior, it could also automatically >generate a send-pr report :-) > >-Archie > >___________________________________________________________________________ >Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-security" in the body of the message > -- Poul-Henning Kamp FreeBSD coreteam member phk@FreeBSD.ORG "Real hackers run -current on their laptop." "ttyv0" -- What UNIX calls a $20K state-of-the-art, 3D, hi-res color terminal To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 01:52:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA03456 for freebsd-ports-outgoing; Mon, 14 Sep 1998 01:52:58 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from cisco.cisco.it ([195.103.235.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA03438 for ; Mon, 14 Sep 1998 01:52:52 -0700 (PDT) (envelope-from A.Nati@cisco.it) Received: from tonino.cisco.priv (portone.cisco.it [195.103.235.22]) by cisco.cisco.it (8.8.7/8.8.7) with SMTP id KAA07038; Mon, 14 Sep 1998 10:51:18 +0200 (MET DST) (envelope-from A.Nati@cisco.it) Message-ID: <35FCDAA0.41C67EA6@cisco.it> Date: Mon, 14 Sep 1998 10:58:08 +0200 From: Antonio Nati Organization: Cisco Consulting S.r.l. - Divisione Reti e Telematica X-Mailer: Mozilla 3.04 (X11; I; FreeBSD 2.2.5-RELEASE i386) MIME-Version: 1.0 To: rse@engelschall.com CC: ports@FreeBSD.ORG Subject: FreeBSD Port: apache-1.3.1+mod_ssl-2.0.6 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've tried to compile apache 1.3.1 with SS extension on my Freebsd 2.2.5, but I have a compilation error. Following is the error I've got from compilation. I have posted the question ay ports@freebsd.org, with no answers. May you provide me with more informations? Thanks, Antonio Nati ------------------------------------------------------------- ! ! Command executed again after the first installation completely made (and stopped here) ! # pwd /usr/ports/www/apache-ssl-1.3.1/work/apache_1.3.1 # # make ===> src ===> src/os/unix <=== src/os/unix ===> src/ap <=== src/ap ===> src/main <=== src/main ===> src/modules ===> src/modules/standard cc -c -I../../os/unix -I../../include -DHARD_SERVER_LIMIT=512 -DDOCUMENT_LOCATION=\"/usr/local/www/data/\" -DDEFAULT_PATH=\"/bin:/usr/bin:/usr/local/bin\" -funsigned-char -DSTATUS -DMOD_SSL=200107 -I/usr/local/include -O `../../apaci` -fpic -DSHARED_MODULE mod_auth_db.c && mv mod_auth_db.o mod_auth_db.lo mod_auth_db.c: In function `get_db_pw': mod_auth_db.c:157: warning: assignment makes pointer from integer without a cast mod_auth_db.c:163: warning: passing arg 2 from incompatible pointer type mod_auth_db.c:163: too few arguments to function mod_auth_db.c:169: too few arguments to function *** Error code 1 Stop. ------------------------------------------------------------- ----------------------------------------------------------------------- Antonio Nati Cisco Consulting S.r.l. A.Nati@cisco.it Divisione reti e telematica tel. 06 72990.419 Via G. Carmignani, 2 - 00173 Roma fax. 06 7230660 http://www.cisco.it ----------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 02:17:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA06111 for freebsd-ports-outgoing; Mon, 14 Sep 1998 02:17:23 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA06100 for ; Mon, 14 Sep 1998 02:17:20 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-24.ix.netcom.com [209.109.234.24]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id CAA02513; Mon, 14 Sep 1998 02:17:03 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id CAA22551; Mon, 14 Sep 1998 02:17:00 -0700 (PDT) Date: Mon, 14 Sep 1998 02:17:00 -0700 (PDT) Message-Id: <199809140917.CAA22551@silvia.hip.berkeley.edu> To: Studded@dal.net CC: FreeBSD-Ports@FreeBSD.ORG In-reply-to: <35FB23C7.368AA145@dal.net> (message from Studded on Sat, 12 Sep 1998 18:45:43 -0700) Subject: Re: NO_CONFIGURE and NO_PATCH From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * However, when I run 'make' in my very simple port (just the script and * the man file, no sub-dir, no makefile, no configure, no patches * directory) the "patch" and "configure" targets are still called. My * reading of bsd.port.mk seems to say that if there is no patches * directory the patch target shouldn't be called at all. I'm not sure * about the configure target, but it would be nice if it weren't called * when not needed as well. That will move the knowledge of what "configure" and "patch" does outside the respective targets. Our macros are modular by design, and maybe it takes a couple milliseconds too long calling the targets and not doing anything afterwards but it saves a lot of time maintaining bsd.port.mk. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 04:32:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA22156 for freebsd-ports-outgoing; Mon, 14 Sep 1998 04:32:43 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from slarti.muc.de (slarti.muc.de [193.174.4.10]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id EAA22130 for ; Mon, 14 Sep 1998 04:32:34 -0700 (PDT) (envelope-from rse@en1.engelschall.com) Received: (qmail 12665 invoked by uid 66); 14 Sep 1998 11:28:57 -0000 Received: by en1.engelschall.com (Sendmail 8.9.1) id NAA26635; Mon, 14 Sep 1998 13:12:36 +0200 (CEST) Message-ID: <19980914131236.B26303@engelschall.com> Date: Mon, 14 Sep 1998 13:12:36 +0200 From: "Ralf S. Engelschall" To: Antonio Nati Cc: ports@FreeBSD.ORG Subject: Re: FreeBSD Port: apache-1.3.1+mod_ssl-2.0.6 Reply-To: rse@engelschall.com References: <35FCDAA0.41C67EA6@cisco.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <35FCDAA0.41C67EA6@cisco.it>; from Antonio Nati on Mon, Sep 14, 1998 at 10:58:08AM +0200 Organization: Engelschall, Germany. X-Web-Homepage: http://www.engelschall.com/ X-PGP-Public-Key: http://www.engelschall.com/ho/rse/pgprse.asc X-PGP-Fingerprint: 00 C9 21 8E D1 AB 70 37 DD 67 A2 3A 0A 6F 8D A5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Sep 14, 1998, Antonio Nati wrote: > I've tried to compile apache 1.3.1 with SS extension on my Freebsd > 2.2.5, but I have a compilation error. Following is the error I've got > from compilation. > # pwd >[...] > /usr/ports/www/apache-ssl-1.3.1/work/apache_1.3.1 > # > # make > ===> src > ===> src/os/unix > <=== src/os/unix > ===> src/ap > <=== src/ap > ===> src/main > <=== src/main > ===> src/modules > ===> src/modules/standard > cc -c -I../../os/unix -I../../include -DHARD_SERVER_LIMIT=512 > -DDOCUMENT_LOCATION=\"/usr/local/www/data/\" > -DDEFAULT_PATH=\"/bin:/usr/bin:/usr/local/bin\" -funsigned-char -DSTATUS > -DMOD_SSL=200107 -I/usr/local/include -O `../../apaci` -fpic > -DSHARED_MODULE mod_auth_db.c && mv mod_auth_db.o mod_auth_db.lo > mod_auth_db.c: In function `get_db_pw': > mod_auth_db.c:157: warning: assignment makes pointer from integer > without a cast > mod_auth_db.c:163: warning: passing arg 2 from incompatible pointer type > mod_auth_db.c:163: too few arguments to function > mod_auth_db.c:169: too few arguments to function > *** Error code 1 Seems like there is a lot of confusion on your system. First you said that you tried Apache 1.3.1 + mod_ssl 2.0.6, but that's mod_ssl 2.0.7 what you try. Second there is no port named "apache-ssl-1.3.1", it's named "apache13-modssl". Your /usr/ports/www/apache-ssl-1.3.1 has to be a local variant. And third when Apache's mod_auth_db.c fails this way it indicates that your db library is the false one. It needs the old db 1.85 which is part of the system. Perhaps there is a db 2.x (which doesn't work) under /usr/local on your system. I recommend you to first check from where the db 2.x stuff comes and then retry with the current and original "apache13-modssl" port. Greetings, Ralf S. Engelschall rse@engelschall.com www.engelschall.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 05:10:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA25636 for freebsd-ports-outgoing; Mon, 14 Sep 1998 05:10:00 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from cisco.cisco.it ([195.103.235.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA25628 for ; Mon, 14 Sep 1998 05:09:58 -0700 (PDT) (envelope-from A.Nati@cisco.it) Received: from cisco.cisco.it.cisco.it (portone.cisco.it [195.103.235.22]) by cisco.cisco.it (8.8.7/8.8.7) with SMTP id OAA07454; Mon, 14 Sep 1998 14:08:26 +0200 (MET DST) (envelope-from A.Nati@cisco.it) Message-Id: <3.0.1.32.19980914140943.006fa9e8@posta.cisco.it> X-Sender: cp011@posta.cisco.it X-Mailer: Windows Eudora Pro Version 3.0.1 (32) [I] Date: Mon, 14 Sep 1998 14:09:43 +0200 To: rse@engelschall.com From: Antonio Nati Subject: Re: FreeBSD Port: apache-1.3.1+mod_ssl-2.0.6 Cc: ports@FreeBSD.ORG In-Reply-To: <19980914131236.B26303@engelschall.com> References: <35FCDAA0.41C67EA6@cisco.it> <35FCDAA0.41C67EA6@cisco.it> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thanks for your help, now I'm compiling good. Following are some short answers to your comments. Thanks, Tonino In 13.12 14/09/98 +0200, hai scritto: >> /usr/ports/www/apache-ssl-1.3.1/work/apache_1.3.1 >> # >Seems like there is a lot of confusion on your system. First you said that >you tried Apache 1.3.1 + mod_ssl 2.0.6, but that's mod_ssl 2.0.7 what you try. Sorry, that's written in FreeBSD ports: apache-1.3.1+mod_ssl-2.0.6 I downloaded and installed automatically from that version; now I see that's mod_ssl-2.0.7, but's not my fault. >Second there is no port named "apache-ssl-1.3.1", it's named >"apache13-modssl". Your /usr/ports/www/apache-ssl-1.3.1 has to be a local >variant. You're right, I used this name instead of the standard in order to have more versions on the system. >And third when Apache's mod_auth_db.c fails this way it indicates >that your db library is the false one. It needs the old db 1.85 which is part >of the system. Perhaps there is a db 2.x (which doesn't work) under /usr/local >on your system. That's true. The requested db.h is in /usr/include, but this ports looks at /usr/local/include > >I recommend you to first check from where the db 2.x stuff comes >and then retry with the current and original "apache13-modssl" port. > Simply recompiling after copying the right db.h to /usr/local/include works fine. Thanks you again, Tonino ------------------------------------------------------------------------ Antonio Nati Cisco Consulting S.r.l. A.Nati@cisco.it Divisione reti e telematica tel. +39 06 72990.419 Via G. Carmignani, 2 - 00173 Roma fax. +39 06 7230660 http://www.cisco.it ------------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 09:17:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA27275 for freebsd-ports-outgoing; Mon, 14 Sep 1998 09:17:44 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from sicily.odyssey.cs.cmu.edu (SICILY.ODYSSEY.CS.CMU.EDU [128.2.185.138]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id JAA27268; Mon, 14 Sep 1998 09:17:39 -0700 (PDT) (envelope-from rvb@sicily.odyssey.cs.cmu.edu) From: rvb@sicily.odyssey.cs.cmu.edu To: ports@FreeBSD.ORG cc: Satoshi Asami , jkh@time.cdrom.com Subject: Re: /usr/ports/filesystems Date: 14 Sep 1998 12:16:48 -0400 In-Reply-To: Satoshi Asami's message of Mon, 14 Sep 1998 05:23:37 -0700 (PDT) Message-ID: Lines: 11 X-Mailer: Gnus v5.4.46/Emacs 19.34 Source-Info: Sender is really rvb@sicily.odyssey.cs.cmu.edu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I wanted to propose that we introduce a new directory under ports to place file systems related ports. My main reason for suggesting this was to create a logical place to put the CODA pieces: coda_client, coda_server and some coda_doc related pieces. But I thought other ports could go there as well, afs -- when it exists. Also /net/ is a rather overused place, so perhaps samba belongs in filesystems and perhaps the crypto fs (cfs -- currently in security). Lastly, I prefer the longer name, filesystems, to something like fs which I think is too cryptic. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 09:28:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA29828 for freebsd-ports-outgoing; Mon, 14 Sep 1998 09:28:40 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mailhost.fastechsfa.com ([208.229.60.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA29804 for ; Mon, 14 Sep 1998 09:28:18 -0700 (PDT) (envelope-from gibby@fastechsfa.com) Received: from Gibby ([192.11.13.56]) by mailhost.fastechsfa.com (8.8.5/8.8.5) with SMTP id MAA21436 for ; Mon, 14 Sep 1998 12:38:16 -0400 (EDT) Reply-To: From: "John Gibbons" To: Date: Mon, 14 Sep 1998 12:32:42 -0400 Message-ID: <000901bddffd$4dcad3e0$380d0bc0@Gibby.fastechsfa.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2232.26 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am getting weird results when trying to run an ldap search. It seems that I need to upgrade ld.so or libc.so. Is this correct? Is it in a port? If so, is there anything I should watch for when I install it? Sorry for all the questions, but I am new to this. /usr/libexec/ld.so: warning: /usr/lib/libc.so.3.0: minor version 0 older than ex pected 1, using it anyway ldap_search: No such object ldap_search: matched: c=US Thanks in advance, John Gibbons Fastech Inc. Email: jgibbons@fastechsfa.com URL: www.fastechsfa.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 09:40:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA02076 for freebsd-ports-outgoing; Mon, 14 Sep 1998 09:40:16 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from fallout.campusview.indiana.edu (fallout.campusview.indiana.edu [149.159.1.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA02008 for ; Mon, 14 Sep 1998 09:40:12 -0700 (PDT) (envelope-from jfieber@indiana.edu) Received: from localhost (jfieber@localhost) by fallout.campusview.indiana.edu (8.8.8/8.8.7) with SMTP id LAA21224; Mon, 14 Sep 1998 11:36:54 -0500 (EST) Date: Mon, 14 Sep 1998 11:36:54 -0500 (EST) From: John Fieber To: Archie Cobbs cc: marquis@roble.com, ports@FreeBSD.ORG Subject: Re: sshd In-Reply-To: <199809140706.AAA16521@bubba.whistle.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 14 Sep 1998, Archie Cobbs wrote: > If someone was interested, it would be easy to write a script > that checks all the ports: > > - mount / and /usr read-only > - mount /usr/local and /usr/local2 read-write, initially empty > except for the directory structure > - save mtree dumps of every file in /usr/local and /usr/local2 > - cycle through every port and: > - build the port with PREFIX=/usr/local > - install the port, then uninstall the port > - compare the contents of /usr/local with the mtree file The presence of build and runtime dependencies between ports complicates this picture a fair bit, but it should still be possible. -john To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 11:18:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA18496 for freebsd-ports-outgoing; Mon, 14 Sep 1998 11:18:10 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA18392 for ; Mon, 14 Sep 1998 11:18:02 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA01164 for freebsd-ports; Mon, 14 Sep 1998 11:00:04 -0700 (PDT) Date: Mon, 14 Sep 1998 11:00:04 -0700 (PDT) Message-Id: <199809141800.LAA01164@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Subject: Current unassigned ports problem reports Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1998/09/02] ports/7804 ports cfengine (as installed by /stand/sysinsta o [1998/09/05] ports/7836 ports Update port: japanese/p5-jcode.pl for Per o [1998/09/07] ports/7849 ports Update ports: japanese/perl5 for perl5.00 3 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1998/03/06] ports/5933 ports emacsserver (19.34b) hostname in /tmp/ese o [1998/03/10] ports/5970 ports psmisc ports uploaded to freebsd.org:/pub o [1998/06/12] ports/6929 ports fxtv-0.47 fails to build on AccelX server o [1998/06/18] ports/6986 ports LaTeX vs. teTeX ; xdvi, xdvik vs. teTeX o [1998/07/23] ports/7382 ports Pine4 does not co-exist with older instal o [1998/08/01] ports/7463 ports Perl scripts in automake port require per o [1998/08/23] ports/7731 ports Mysql package and port core-dumps on 2.2. o [1998/08/25] ports/7745 ports nicetext-0.9 port submission o [1998/08/26] ports/7750 ports BIND 8.1.2 port does not install document o [1998/09/02] ports/7805 ports Port bytebench-3.1 is broken! ("shell" pa o [1998/09/02] ports/7813 ports make reports nn as BROKEN= checksum o [1998/09/03] ports/7825 ports missing app-default from xmascot-2.5p2.tg o [1998/09/07] ports/7854 ports Replacement of ports/7773 o [1998/09/08] ports/7865 ports new port: Library of Routines for Cumulat o [1998/09/11] ports/7894 ports japanese/handbook: building on-demand PLI o [1998/09/11] ports/7897 ports japanese/man-doc: building on-demand PLIS o [1998/09/11] ports/7900 ports Minor fix for display port o [1998/09/13] ports/7917 ports problem with ELF tcp_wrappers 7.6 deinsta 18 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1997/04/17] ports/3318 ports New port: jigsaw (Java-based HTTP server) o [1997/08/10] ports/4264 ports mftp get a Segmentation fault o [1997/08/26] ports/4391 ports New port: VPCE a [1997/10/23] ports/4839 ports New port - spin - Verification system for o [1997/11/07] ports/4967 ports I have ported Carl DeClerck's mserver-0.2 f [1997/11/14] ports/5045 ports freebsd.ftp.markers for xearth is out of o [1997/11/26] ports/5158 ports thot editor port doesn't install template o [1997/12/03] ports/5201 ports new port-package for fidogate o [1997/12/06] ports/5240 ports Incorrect path in pkfonts (fix) o [1997/12/15] ports/5312 ports New math port xwpl o [1997/12/28] ports/5393 ports DOOMSRC port & package o [1997/12/30] ports/5397 ports upload of new port (fly) o [1998/01/10] ports/5475 ports abacus sentry o [1998/01/15] ports/5509 ports submit new port xruskb-1.5.1 o [1998/01/26] ports/5570 ports new port, rise 0.3.3 o [1998/02/02] ports/5626 ports 'ldap' port eats all available CPU time o [1998/02/04] ports/5653 ports New port of ICI language a [1998/02/05] ports/5660 ports New port type1inst o [1998/02/07] ports/5675 ports New port in category devel: DOC++ o [1998/02/10] ports/5706 ports New port: ja-dvi2dvi-1.0 (japanese/dvi2dv o [1998/02/17] ports/5771 ports New port: Stuttgart Neural Network Simula o [1998/02/17] ports/5776 ports New compression port: lzo a [1998/02/22] ports/5814 ports New package XShodou o [1998/02/22] ports/5821 ports Port of Swish-E, a Web site indexer o [1998/02/26] ports/5859 ports xxgdb port doesn't recognize the -k optio o [1998/03/01] ports/5885 ports New port: dc20ctrl-0.4 (graphics/dc20ctrl o [1998/03/08] ports/5946 ports New port biology/molmol o [1998/03/15] ports/6017 ports new port: yacl o [1998/03/15] ports/6018 ports new port: ml-3.3 a [1998/03/15] ports/6020 ports new port: Xfstt-0.9.7 o [1998/03/18] ports/6057 ports xperfmon++-1.40 package fails XtRealloc() o [1998/03/21] ports/6085 ports New port: pavuk-0.8 o [1998/03/23] ports/6113 ports new port: rinfo-1.2 o [1998/03/23] ports/6120 ports New port: xtetris-2.6 o [1998/03/27] ports/6151 ports New port: xrus-1.5.2 o [1998/03/28] ports/6153 ports New port: flick o [1998/03/29] ports/6170 ports another squid ports o [1998/03/29] ports/6171 ports New port: xtron-1.1a o [1998/04/01] ports/6194 ports New port: mirrormagic-1.3 o [1998/04/06] ports/6230 ports gfont_mkgdf calls wrong interpreter o [1998/04/07] ports/6235 ports New port: scwm-icon o [1998/04/07] ports/6236 ports New port: scwm o [1998/04/15] ports/6311 ports New port: gsfonts o [1998/04/15] ports/6312 ports New port: ghostscript-3.33 o [1998/04/17] ports/6331 ports New port: libshhopt-1.1.3 a [1998/04/19] ports/6355 ports New port o [1998/04/20] ports/6361 ports New ports collection: GNU Pascal Compiler o [1998/04/23] ports/6393 ports patch for multimedia-2.1.tar.gz o [1998/04/24] ports/6405 ports vrweb port does not build; ignores local o [1998/04/28] ports/6445 ports New port for `fhist' o [1998/05/01] ports/6473 ports New port: libshhmsg-1.3.3 o [1998/05/01] ports/6474 ports New port: libxalloc-1.0.2 o [1998/05/03] ports/6504 ports New port of `C Interfaces and Implementat o [1998/05/07] ports/6541 ports New port: math/dc o [1998/05/10] ports/6570 ports port of java CUP parser o [1998/05/11] ports/6598 ports new port for FreeBSD - asmodem o [1998/05/12] ports/6606 ports package add of perl-5.00404 fails w/3.0 S o [1998/05/12] ports/6613 ports ports/lang/perl5 fails to install by addi o [1998/05/16] ports/6657 ports new port for perl/Tk 800.004 o [1998/05/19] ports/6687 ports New port, ktelnet v0.6 o [1998/05/19] ports/6699 ports Generic NQS port (new) o [1998/05/21] ports/6709 ports New port kmessage o [1998/05/23] ports/6728 ports New port ktranslator o [1998/05/28] ports/6776 ports New port - xqf o [1998/05/31] ports/6806 ports /usr/ports/graphics/killustrator doesn't o [1998/06/02] ports/6838 ports Enable lj4dith driver by default o [1998/06/11] ports/6915 ports Apache-FP for apache v1.3.0 o [1998/06/13] ports/6942 ports New port, mrouted-beta o [1998/06/16] ports/6970 ports mule and family build faulure o [1998/06/28] ports/7094 ports New port of xbomber game o [1998/06/30] ports/7128 ports New port: Raster3D-2.4f o [1998/07/02] ports/7150 ports `elftoaout': new port o [1998/07/04] ports/7163 ports new port: p5-Set-IntSpan o [1998/07/04] ports/7164 ports new port: p5-News-Newsrc o [1998/07/12] ports/7261 ports problem of wget-1.5.2 o [1998/07/15] ports/7295 ports Starting programs with bash port causes p o [1998/07/18] ports/7314 ports ncurses port doesn't support TERM=xterm-c o [1998/07/20] ports/7344 ports New port: wmavgload-0.6.1 o [1998/07/21] ports/7347 ports Upgraded port: mysql-3.21.33 a [1998/07/22] ports/7365 ports new port request: korean/pgp.language o [1998/07/27] ports/7409 ports New port: CaribbeanStud-1.0 o [1998/07/29] ports/7428 ports new port of WindowMaker-data o [1998/07/30] ports/7449 ports upgrade of scilab port o [1998/08/03] ports/7480 ports New Port afbackup-3.0.4 o [1998/08/08] ports/7532 ports New port: ipltd-2.01 o [1998/08/09] ports/7537 ports I have made a port for the new PPP client o [1998/08/11] ports/7576 ports NEW port: skkfep-0.85 (Japanese FrontEnd o [1998/08/11] ports/7580 ports new port: devel/global o [1998/08/11] ports/7581 ports new port [net x11]/ethereal o [1998/08/11] ports/7582 ports new port: net/portscanner o [1998/08/14] ports/7615 ports pico appends "UUUUUUUUUU" when saving... o [1998/08/16] ports/7634 ports New port: PPA filter for HP "Windows-only o [1998/08/16] ports/7639 ports UUENCODE/ISH file converter o [1998/08/16] ports/7640 ports Japanese kanji code converter o [1998/08/17] ports/7648 ports Port of GD graphic library which uses Rus o [1998/08/17] ports/7652 ports mirror installation does not point at loc o [1998/08/18] ports/7659 ports submitting request for pfx-0.1.1 o [1998/08/18] ports/7670 ports new port: net/beroftpd o [1998/08/19] ports/7680 ports New port of tn5250 o [1998/08/19] ports/7681 ports [PORTS] TkDesk 1.0 is not Y2K compliant o [1998/08/19] ports/7683 ports exim port builds unoptimized o [1998/08/19] ports/7684 ports ports/textproc/par overides CFLAGS o [1998/08/19] ports/7689 ports New port: binkd-0.9.2 o [1998/08/20] ports/7700 ports Apache 1.3.1 with ssl o [1998/08/21] ports/7701 ports New port: drmario-1.0 o [1998/08/21] ports/7706 ports update for catdoc port o [1998/08/22] ports/7716 ports New ports of elisa font(8x8 dots JIS X 02 o [1998/08/22] ports/7718 ports [new ports] leafnode with Jam patch, ${PO o [1998/08/23] ports/7732 ports new port: graphics/qcread o [1998/08/24] ports/7733 ports Mrtg port doesn't use most recent tarball o [1998/08/24] ports/7734 ports update atari800 - upgrade to the latest v o [1998/08/24] ports/7735 ports new port: mp3encode - mpeg audio file enc o [1998/08/25] ports/7746 ports a patch for a problem on 3.0-CURRENT o [1998/08/25] ports/7747 ports cannot compile japanese/onew-* on 3.0-CUR o [1998/08/29] ports/7775 ports New version: korganizer v0.9.10 o [1998/08/29] ports/7777 ports New port: pkg_version-0.1 o [1998/08/29] ports/7780 ports Adding port: WMnet -- Network Throughput o [1998/09/01] ports/7796 ports new port man2html o [1998/09/02] ports/7806 ports Fixed port: xfce o [1998/09/02] ports/7814 ports postgreqsl docs are broke o [1998/09/03] ports/7818 ports sysutils/cdrecord has an unnecessary run o [1998/09/03] ports/7824 ports [PATCH] asrpages port has bad checksum o [1998/09/03] ports/7827 ports New port: garith-2.1 o [1998/09/04] ports/7832 ports LICQ 1.41 port o [1998/09/04] ports/7834 ports New port: IFM - Interactive Fiction Mappe o [1998/09/06] ports/7842 ports mv ports/korean/vim ports/editors/vim to o [1998/09/07] ports/7845 ports Unbuffered /dev/vx0-output from Python 1. o [1998/09/07] ports/7847 ports Port for webmin 0.62 o [1998/09/07] ports/7848 ports Update ports: lang/perl5 (pkg_delete prob o [1998/09/07] ports/7853 ports new port klyx v0.9.7 o [1998/09/07] ports/7857 ports New Port: xhime o [1998/09/08] ports/7866 ports big brother (net/bb) is outdated o [1998/09/09] ports/7874 ports new port: graphics/qiv o [1998/09/09] ports/7875 ports NEW PORT: lcdproc o [1998/09/09] ports/7878 ports Update port: japanese/kon o [1998/09/10] ports/7879 ports Update pine4 port to 4.03, and other item o [1998/09/10] ports/7883 ports ports submission o [1998/09/10] ports/7887 ports Update: crafty 15.18 o [1998/09/10] ports/7888 ports Ports submission o [1998/09/10] ports/7891 ports New port: editors/leim20 o [1998/09/11] ports/7893 ports ports/sysutils/xbatt change request o [1998/09/12] ports/7909 ports ELF for port games/crafty o [1998/09/12] ports/7910 ports New port submission, mergemaster script o [1998/09/12] ports/7911 ports ELF update for games/xconq o [1998/09/13] ports/7913 ports port upgrade: korean/h2ps o [1998/09/13] ports/7916 ports ELF for tcp_wrappers 7.6 o [1998/09/13] ports/7918 ports port upgrade: korean/pinetreefonts o [1998/09/13] ports/7920 ports new tin ports for korean o [1998/09/13] ports/7921 ports new port o [1998/09/13] ports/7924 ports tin news reader for Korean 150 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 13:03:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA05894 for freebsd-ports-outgoing; Mon, 14 Sep 1998 13:03:33 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from k6n1.znh.org (dialup16.gaffaneys.com [208.155.161.66]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA05886 for ; Mon, 14 Sep 1998 13:03:27 -0700 (PDT) (envelope-from zach@gaffaneys.com) Received: (from zach@localhost) by k6n1.znh.org (8.9.1/8.9.1) id NAA09805 for freebsd-ports@freebsd.org; Mon, 14 Sep 1998 13:59:39 GMT (envelope-from zach) Message-ID: <19980914085939.A9766@znh.org> Date: Mon, 14 Sep 1998 08:59:39 -0500 From: Zach Heilig To: freebsd-ports@FreeBSD.ORG Subject: ELF style (where to test PORTOBJFORMAT) Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Typically, in a port makefile, the very last line is .include Obviously, since sets PORTOBJFORMAT, you cannot test that variable before the .include, so is it good style to have lines after the .include? Or, is PORTOBJFORMAT not for consumption in the top level makefile. For example, this would theoretically be a fix for fetchmail: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/mail/fetchmail/Makefile,v retrieving revision 1.67 diff -u -r1.67 Makefile --- Makefile 1998/09/13 21:31:51 1.67 +++ Makefile 1998/09/14 13:47:02 @@ -48,3 +48,7 @@ ${INSTALL_SCRIPT} ${WRKDIR}/fetchmailconf ${PREFIX}/bin .include + +.if ${PORTOBJFORMAT} == "elf" +CONFIGURE_ENV+= LIBS="-lmd" +.endif -- Zach Heilig -- zach@gaffaneys.com A horse without a nose... never wins. (unknown) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 13:20:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA08700 for freebsd-ports-outgoing; Mon, 14 Sep 1998 13:20:07 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA08647 for ; Mon, 14 Sep 1998 13:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA06976; Mon, 14 Sep 1998 13:20:01 -0700 (PDT) Date: Mon, 14 Sep 1998 13:20:01 -0700 (PDT) Message-Id: <199809142020.NAA06976@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: sada@e-mail.ne.jp Subject: Re: ports/7897: japanese/man-doc: building on-demand PLIST Reply-To: sada@e-mail.ne.jp Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/7897; it has been noted by GNATS. From: sada@e-mail.ne.jp To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/7897: japanese/man-doc: building on-demand PLIST Date: 15 Sep 1998 05:15:54 +0900 The patch of ports/7897 couldn't perform about hard links of man page files. I have updated the patch, which had been reviewed by the maintainer of the port, Mr.Horikawa. Please remove pkg/PLIST from original skeleton > Committer -- diff -urN man-doc.orig/Makefile man-doc/Makefile --- man-doc.orig/Makefile Mon Apr 27 07:05:15 1998 +++ man-doc/Makefile Mon Sep 14 09:17:50 1998 @@ -17,8 +17,8 @@ NO_CHECKSUM= yes NO_MTREE= yes WRKSRC= ${WRKDIR}/man +PLIST= ${WRKDIR}/PLIST -LANGNAME= ja MANSECS= 1 5 8 JAMANDIR?= /usr/opt/doc/ja/man @@ -35,8 +35,31 @@ .for sec in ${MANSECS} @if [ -d ${JAMANDIR}/man${sec} ]; then \ ${CP} -R ${JAMANDIR}/man${sec} ${WRKSRC}/ ; \ + ${ECHO} >>${WRKSRC}/man${sec}/Makefile; \ + ${ECHO} pages-list: >>${WRKSRC}/man${sec}/Makefile; \ + ${ECHO} " @\$${ECHO} \$${MAN${sec}} \$${MLINKS}" \ + >>${WRKSRC}/man${sec}/Makefile; \ fi .endfor + +post-build: + @${RM} -f ${PLIST} + @for sec in ${MANSECS}; do \ + if [ -d ${WRKSRC}/man$${sec} ]; then \ + cd ${WRKSRC}/man$${sec}; \ + list=`${MAKE} pages-list`; \ + set `${ECHO} $$list " "|${SED} 's/\.\([^.]*\) /.\1 \1 /g'`; \ + while : ; do \ + case $$# in \ + 0) break;; \ + [1]) ${ECHO} "can not happen"; break;; \ + esac; \ + ${ECHO} share/man/ja/man$$2/$$1.gz; shift 2; \ + done; \ + fi; \ + done|sort|uniq >>${PLIST} + @${ECHO} "@exec ln -sf %D/share/man/ja %D/share/man/ja_JP.EUC" >>${PLIST} + @${ECHO} "@unexec ${RM} -f %D/share/man/ja_JP.EUC" >>${PLIST} pre-install: .for sec in ${MANSECS} To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 13:21:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA09221 for freebsd-ports-outgoing; Mon, 14 Sep 1998 13:21:55 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from whistle.com (s205m131.whistle.com [207.76.205.131]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA09171; Mon, 14 Sep 1998 13:21:46 -0700 (PDT) (envelope-from archie@whistle.com) Received: (from smap@localhost) by whistle.com (8.7.5/8.6.12) id NAA03427; Mon, 14 Sep 1998 13:21:22 -0700 (PDT) Received: from bubba.whistle.com(207.76.205.7) by whistle.com via smap (V1.3) id sma003422; Mon Sep 14 13:21:17 1998 Received: (from archie@localhost) by bubba.whistle.com (8.8.7/8.6.12) id NAA05491; Mon, 14 Sep 1998 13:21:17 -0700 (PDT) From: Archie Cobbs Message-Id: <199809142021.NAA05491@bubba.whistle.com> Subject: Re: sshd In-Reply-To: <000201bde014$4f3e1b80$ca2aa8c0@ripley.tavari.muc.de> from Lutz Albers at "Sep 14, 98 09:17:26 pm" To: lutz@muc.de (Lutz Albers) Date: Mon, 14 Sep 1998 13:21:17 -0700 (PDT) Cc: freebsd-security@FreeBSD.ORG, ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL38 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Lutz Albers writes: > > > A more frustrating problem for me are ports that are not > > > ${PREFIX} != /usr/local compatible which makes it a hassle to > > > install multiple version of a port or separate ports that have > > > common files. Also, I occasionaly go through phases of liking > > > SysV way of installing things in /opt/, > > > /etc/opt/ and /var/opt/ which a simple 'make > > > PREFIX=/opt/' doesn't really accomplish. > > > > If someone was interested, it would be easy to write a script > > that checks all the ports: > > (receipe for detecting misbehaving ports deleted) > > This will fail for X11 ports IMHO. The last time I checked they were > installed into X11ROOT (/usr/X11R6). OK.. so amend the recipie accordingly to allow for this. We could also add a "make check" target to bsd.port.mk that would check any individual port for problems. -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 13:30:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA11230 for freebsd-ports-outgoing; Mon, 14 Sep 1998 13:30:07 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from world.virtual-earth.de (world.virtual-earth.de [194.231.209.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA10729 for ; Mon, 14 Sep 1998 13:28:19 -0700 (PDT) (envelope-from mathiasp@mp.virtual-earth.de) Received: from mp.virtual-earth.de (mp.virtual-earth.de [194.231.209.35]) by world.virtual-earth.de (8.8.8/8.8.5) with ESMTP id WAA12888 for ; Mon, 14 Sep 1998 22:27:32 +0200 (MET DST) Received: from mp.virtual-earth.de (localhost.virtual-earth.de [127.0.0.1]) by mp.virtual-earth.de (8.8.8/8.8.5) with ESMTP id WAA01601 for ; Mon, 14 Sep 1998 22:27:28 +0200 (MET DST) Message-Id: <199809142027.WAA01601@mp.virtual-earth.de> Date: Mon, 14 Sep 1998 22:27:26 +0200 (MET DST) From: Mathias Picker Subject: -ldl and dlsym autoconf questions To: freebsd-ports@FreeBSD.ORG MIME-Version: 1.0 Content-Type: TEXT/plain; CHARSET=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi all, I'm trying to port dia ( http://www.lysator.liu.se/~alla/dia/dia.html). The only problems I saw where: 1) the Makefile used -ldl where it shouldn't 2) there is a call to dlsym("register_objects"... which needs to be dlsym("_register_objects"... Is there a recommended way to handle both cases via autoconf? This will be my first experience with autoconf, so bear with my clueless question! Or should the last thing be done by testing for BSD in the source? The ports-intro mentions not to test for FreeBSD, but for BSD and version, will this work for dlsym, too? What would be the most general thing to do? Thanks, Mathias Oh, yes, this is all on freebsd-stable about three weeks old... Will something in this area change with the switch to 3.0? -- Mathias Picker Consultant Information Architecture Mathias.Picker@virtual-earth.de +49 172 / 89 19 381 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 14:18:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA23519 for freebsd-ports-outgoing; Mon, 14 Sep 1998 14:18:10 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA23477 for ; Mon, 14 Sep 1998 14:18:01 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-24.ix.netcom.com [209.109.234.24]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id OAA03267; Mon, 14 Sep 1998 14:17:32 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id OAA24203; Mon, 14 Sep 1998 14:16:52 -0700 (PDT) Date: Mon, 14 Sep 1998 14:16:52 -0700 (PDT) Message-Id: <199809142116.OAA24203@silvia.hip.berkeley.edu> To: zach@gaffaneys.com CC: freebsd-ports@FreeBSD.ORG In-reply-to: <19980914085939.A9766@znh.org> (message from Zach Heilig on Mon, 14 Sep 1998 08:59:39 -0500) Subject: Re: ELF style (where to test PORTOBJFORMAT) From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Typically, in a port makefile, the very last line is * * .include * * Obviously, since sets PORTOBJFORMAT, you cannot test that * variable before the .include, so is it good style to have lines after the * .include? Or, is PORTOBJFORMAT not for consumption in the top level makefile. * * For example, this would theoretically be a fix for fetchmail: * .include * + * +.if ${PORTOBJFORMAT} == "elf" * +CONFIGURE_ENV+= LIBS="-lmd" * +.endif Yes, this would be fine. It's generally not recommended to put things after ".include ", but I think in this case it could be the only way to get it to work cleanly. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 14:20:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA24242 for freebsd-ports-outgoing; Mon, 14 Sep 1998 14:20:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from catastrophe.gelemna.ft-wayne.in.us (fw-line-29.fwi.com [209.84.172.34]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA24087 for ; Mon, 14 Sep 1998 14:19:44 -0700 (PDT) (envelope-from croyle@gelemna.ft-wayne.in.us) Received: from emerson.gelemna.ft-wayne.in.us (emerson.gelemna.ft-wayne.in.us [10.23.42.2]) by catastrophe.gelemna.ft-wayne.in.us (8.8.8/8.8.8) with ESMTP id QAA11976 for ; Mon, 14 Sep 1998 16:19:23 -0500 (EST) (envelope-from croyle@gelemna.ft-wayne.in.us) Received: (from croyle@localhost) by emerson.gelemna.ft-wayne.in.us (8.9.1/8.9.1) id QAA09932; Mon, 14 Sep 1998 16:19:22 -0500 (EST) (envelope-from croyle@gelemna.ft-wayne.in.us) To: ports@FreeBSD.ORG Subject: Re: ELF style (where to test PORTOBJFORMAT) References: <19980914085939.A9766@znh.org> Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII From: Don Croyle Date: 14 Sep 1998 16:19:21 -0500 Organization: Minimal at best In-Reply-To: Zach Heilig's message of "Mon, 14 Sep 1998 08:59:39 -0500" Message-ID: <86g1dul7dy.fsf@emerson.gelemna.ft-wayne.in.us> Lines: 26 X-Mailer: Gnus v5.6.36/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Zach Heilig writes: > Typically, in a port makefile, the very last line is > > .include > > Obviously, since sets PORTOBJFORMAT, you cannot test that > variable before the .include, so is it good style to have lines after the > .include? Or, is PORTOBJFORMAT not for consumption in the top level makefile. Within a target, some testing indcates that a shell construct like: test: if [ "${PORTOBJFORMAT}" = "elf" ]; then\ ${ECHO} "elf";\ else\ ${ECHO} "aout";\ fi is safe and will yield the expected results. I don't see any way to use PORTOBJFORMAT in an .if construct other than by putting it below the .include. -- I've always wanted to be a dilettante, but I've never quite been ready to make the commitment. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 15:16:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA03851 for freebsd-ports-outgoing; Mon, 14 Sep 1998 15:16:41 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from picnic.mat.net (picnic.mat.net [206.246.122.117]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA03369 for ; Mon, 14 Sep 1998 15:14:59 -0700 (PDT) (envelope-from chuckr@mat.net) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.9.1/8.8.5) with SMTP id SAA02322; Mon, 14 Sep 1998 18:13:40 -0400 (EDT) Date: Mon, 14 Sep 1998 18:13:40 -0400 (EDT) From: Chuck Robey To: John Gibbons cc: ports@FreeBSD.ORG Subject: Re: your mail In-Reply-To: <000901bddffd$4dcad3e0$380d0bc0@Gibby.fastechsfa.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 14 Sep 1998, John Gibbons wrote: > I am getting weird results when trying to run an ldap search. It seems that > I need to upgrade ld.so or libc.so. Is this correct? Is it in a port? If so, > is there anything I should watch for when I install it? > Sorry for all the questions, but I am new to this. > > /usr/libexec/ld.so: warning: /usr/lib/libc.so.3.0: minor version 0 older > than ex > pected 1, using it anyway > ldap_search: No such object > ldap_search: matched: c=US > It means that when ld.so, the runtime linker, read your executeable, and tried to link the libraries that the executeable was linked with, it couldn't find the libc version that the executeable was originally linked with, and settled for another version. The effects are usually negligible, but _could_ be serious. The solution is to rebuild the executeable on your present machine, so that it's linked with the libraries from whatever FreeBSD version you're running. You neglected to mention the FreeBSD version you're running, but I'm willing to hazard a pretty safe guess that it's not current. In any case, there's absolutely nothing wrong with ld.so. Oh, and DON'T try to upgrade your libc! You either upgrade your entire system, or rebuild the ldap executeable, but _never_ upgrade a libc only! > > Thanks in advance, > John Gibbons > Fastech Inc. > Email: jgibbons@fastechsfa.com > URL: www.fastechsfa.com > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@glue.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic (FreeBSD-current) (301) 220-2114 | and jaunt (NetBSD). ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 15:17:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA04076 for freebsd-ports-outgoing; Mon, 14 Sep 1998 15:17:47 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from roble.com (roble.com [207.5.40.50]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA04070; Mon, 14 Sep 1998 15:17:46 -0700 (PDT) (envelope-from sendmail@roble.com) Received: from localhost (localhost [127.0.0.1]) by roble.com (Roble) with SMTP id PAA28919; Mon, 14 Sep 1998 15:17:28 -0700 (PDT) Date: Mon, 14 Sep 1998 15:17:28 -0700 (PDT) From: Roger Marquis To: freebsd-security@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: sshd In-Reply-To: <199809142021.NAA05491@bubba.whistle.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 14 Sep 1998, Archie Cobbs wrote: > We could also add a "make check" target to bsd.port.mk that would > check any individual port for problems. That would certainly qualify as good Quality Assurance, especially if it were done before each release and the non-compliant ports were fixed or eliminated. Roger Marquis Roble Systems Consulting http://www.roble.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 16:14:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA15428 for freebsd-ports-outgoing; Mon, 14 Sep 1998 16:14:32 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA15398 for ; Mon, 14 Sep 1998 16:14:25 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.7/8.7.3) id QAA03530; Mon, 14 Sep 1998 16:13:21 -0700 (PDT) Date: Mon, 14 Sep 1998 16:13:21 -0700 (PDT) Message-Id: <199809142313.QAA03530@vader.cs.berkeley.edu> To: rvb@sicily.odyssey.cs.cmu.edu CC: ports@FreeBSD.ORG, jkh@time.cdrom.com In-reply-to: (rvb@sicily.odyssey.cs.cmu.edu) Subject: Re: /usr/ports/filesystems From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: rvb@sicily.odyssey.cs.cmu.edu * I wanted to propose that we introduce a new directory under ports to * place file systems related ports. My main reason for suggesting this * was to create a logical place to put the CODA pieces: coda_client, * coda_server and some coda_doc related pieces. But I thought other * ports could go there as well, afs -- when it exists. Also /net/ is * a rather overused place, so perhaps samba belongs in filesystems and * perhaps the crypto fs (cfs -- currently in security). cfs should probably stay in security, but I agree with everything else. (Especially if it encourages someone to make an afs port. :) * Lastly, I prefer the longer name, filesystems, to something like fs * which I think is too cryptic. I think filesystems is fine in this case. I'm all for saving letters but it doesn't have to go all the way down to 2 bytes. ;) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 17:09:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22376 for freebsd-ports-outgoing; Mon, 14 Sep 1998 17:09:42 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from picnic.mat.net (picnic.mat.net [206.246.122.117]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA22359 for ; Mon, 14 Sep 1998 17:09:17 -0700 (PDT) (envelope-from chuckr@mat.net) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.9.1/8.8.5) with SMTP id UAA02581; Mon, 14 Sep 1998 20:05:27 -0400 (EDT) Date: Mon, 14 Sep 1998 20:05:26 -0400 (EDT) From: Chuck Robey To: Craig Burgess cc: freebsd-ports@FreeBSD.ORG Subject: Re: modula 3 "make install" In-Reply-To: <35FCB44A.FA49EA3F@home.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 13 Sep 1998, Craig Burgess wrote: > Um. The man page for 'make' is written in an obscure dialect of > Martian, however I uncommented the /usr/ports/net/cvsup/Makefile as -- > '# To build the client without GUI support: > MAKE_ENV= M3FLAGS=-DNOGUI' Make is one of the most central tools to software. The man page for make is not that bad, but maybe it isn't a good intro to someone starting from absolute zero. There's a really good O'Reilly book on make, I recommend you buy and study it. Anyhow, you can't just do the make install. Do a make clean, then a make, all with that MAKE_ENV line in there (by the way, that's _not_ the line, you left a "+" out). Then the make install would work. Actually, the better fix is what I said. NO port installs libX11.a except the XFree86 port, and it installs a whole lot more. You should either nuke your entire /usr/X11R6 tree, or reinstall your X stuff, because having half a tree is a disaster. If you don't do this, expect stuff to fail, and expect no one to be willing to fix things for you. > > and tried 'make install' in /usr/ports/net/cvsup once again -- with the > same results -- failed in the same place -- and that presents a > conundrum... > > I didn't install XFree because the machine is a "server" (complete with > a 13" mono monitor). Something else must have installed some X11R6 > files as dependancies? There is no port that installs libX11.a, that's absolutely untrue. If it were true, everyone's X11 would fail. The ONLY way to get the libX11.a is either via the XFree86 distribution, or some commercial X, like maybe Xig's. One of the reasons I installed FreeBSD was > because I could omit the superfluous XFree installation. (The other > reason: it would install over the Internet.) On my desktop machine > I've installed FreeBSD 2.2.7 **with** X11R6 (and support for Linux > binaries, and KDE...) But I've got a 17" monitor there -- and a decent > display adapter. > > If I must install X11R6 so that Modula-3/cvsup can be installed, I > will; it just seems silly because I can't realistically use it and have > no reason to try? > > cheerfully, > > craig burgess > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@glue.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic (FreeBSD-current) (301) 220-2114 | and jaunt (NetBSD). ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 18:27:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA04457 for freebsd-ports-outgoing; Mon, 14 Sep 1998 18:27:41 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA04438; Mon, 14 Sep 1998 18:27:39 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: from dragon.nuxi.com (d96-072.orchard2.ucdavis.edu [169.237.96.72]) by relay.nuxi.com (8.8.8/8.6.12) with ESMTP id SAA13038; Mon, 14 Sep 1998 18:27:24 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.8.8/8.8.8) id BAA17760; Tue, 15 Sep 1998 01:27:17 GMT (envelope-from obrien) Message-ID: <19980914182717.A17745@nuxi.com> Date: Mon, 14 Sep 1998 18:27:17 -0700 From: "David O'Brien" To: David Gilbert , John Fieber Cc: Roger Marquis , freebsd-security@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: sshd Reply-To: obrien@NUXI.com References: <199809140152.VAA28566@trooper.velocet.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199809140152.VAA28566@trooper.velocet.ca>; from David Gilbert on Sun, Sep 13, 1998 at 09:52:10PM -0400 X-Operating-System: FreeBSD 3.0-19980804-SNAP Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > heard complaints in our shop is that we can't really use /usr/local > for local things anymore because ports live there --- and we desire > the ability to blow away easily recreated ports while retaining hand > built extras. That's why I had to create /usr/treats on all my machines. :( -- -- David (obrien@NUXI.com -or- obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 18:30:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA04948 for freebsd-ports-outgoing; Mon, 14 Sep 1998 18:30:14 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA04890; Mon, 14 Sep 1998 18:30:06 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: from dragon.nuxi.com (d96-072.orchard2.ucdavis.edu [169.237.96.72]) by relay.nuxi.com (8.8.8/8.6.12) with ESMTP id SAA13055; Mon, 14 Sep 1998 18:29:36 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.8.8/8.8.8) id BAA17772; Tue, 15 Sep 1998 01:29:49 GMT (envelope-from obrien) Message-ID: <19980914182949.B17745@nuxi.com> Date: Mon, 14 Sep 1998 18:29:49 -0700 From: "David O'Brien" To: Satoshi Asami , rvb@sicily.odyssey.cs.cmu.edu Cc: ports@FreeBSD.ORG Subject: Re: /usr/ports/filesystems Reply-To: obrien@NUXI.com References: <199809142313.QAA03530@vader.cs.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199809142313.QAA03530@vader.cs.berkeley.edu>; from Satoshi Asami on Mon, Sep 14, 1998 at 04:13:21PM -0700 X-Operating-System: FreeBSD 3.0-19980804-SNAP Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > * Lastly, I prefer the longer name, filesystems, to something like fs > * which I think is too cryptic. > > I think filesystems is fine in this case. I'm all for saving letters > but it doesn't have to go all the way down to 2 bytes. ;) filesys -- -- David (obrien@NUXI.com -or- obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 18:36:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA05691 for freebsd-ports-outgoing; Mon, 14 Sep 1998 18:36:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from sicily.odyssey.cs.cmu.edu (SICILY.ODYSSEY.CS.CMU.EDU [128.2.185.138]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id SAA05597; Mon, 14 Sep 1998 18:36:00 -0700 (PDT) (envelope-from rvb@sicily.odyssey.cs.cmu.edu) From: rvb@sicily.odyssey.cs.cmu.edu To: obrien@NUXI.com Cc: Satoshi Asami , ports@FreeBSD.ORG Subject: Re: /usr/ports/filesystems References: <199809142313.QAA03530@vader.cs.berkeley.edu> <19980914182949.B17745@nuxi.com> Date: 14 Sep 1998 21:35:28 -0400 In-Reply-To: David O'Brien's message of Mon, 14 Sep 1998 18:29:49 -0700 Message-ID: Lines: 15 X-Mailer: Gnus v5.4.46/Emacs 19.34 Source-Info: Sender is really rvb@sicily.odyssey.cs.cmu.edu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org David O'Brien writes: > > * Lastly, I prefer the longer name, filesystems, to something like fs > > * which I think is too cryptic. > > > > I think filesystems is fine in this case. I'm all for saving letters > > but it doesn't have to go all the way down to 2 bytes. ;) > > filesys I hate abbreviations, especially new ones. It really has to be either fs or filesystems, otherwise its too confusing. > > -- > -- David (obrien@NUXI.com -or- obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 19:00:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA09298 for freebsd-ports-outgoing; Mon, 14 Sep 1998 19:00:30 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from colin.muc.de (colin.muc.de [193.174.4.1]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id TAA09274; Mon, 14 Sep 1998 19:00:21 -0700 (PDT) (envelope-from lutz@muc.de) Received: from tavari.muc.de ([193.174.4.22]) by colin.muc.de with SMTP id <140559-3>; Mon, 14 Sep 1998 22:17:14 +0200 Received: (from daemon@localhost) by tavari.muc.de (8.8.8/8.8.7) id VAA12104; Mon, 14 Sep 1998 21:17:42 +0200 (CEST) Received: from ripley(192.168.42.202) by morranon via smap (V2.1) id xma012102; Mon, 14 Sep 98 21:17:29 +0200 From: "Lutz Albers" To: "Archie Cobbs" , "John Fieber" Cc: , , Subject: RE: sshd Date: Mon, 14 Sep 1998 21:17:26 +0200 Message-ID: <000201bde014$4f3e1b80$ca2aa8c0@ripley.tavari.muc.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4 In-reply-to: <199809140706.AAA16521@bubba.whistle.com> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > A more frustrating problem for me are ports that are not > > ${PREFIX} != /usr/local compatible which makes it a hassle to > > install multiple version of a port or separate ports that have > > common files. Also, I occasionaly go through phases of liking > > SysV way of installing things in /opt/, > > /etc/opt/ and /var/opt/ which a simple 'make > > PREFIX=/opt/' doesn't really accomplish. > > If someone was interested, it would be easy to write a script > that checks all the ports: (receipe for detecting misbehaving ports deleted) This will fail for X11 ports IMHO. The last time I checked they were installed into X11ROOT (/usr/X11R6). -- Lutz Albers, lutz@muc.de, pgp key available from Do not take life too seriously, you will never get out of it alive. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 21:29:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA23144 for freebsd-ports-outgoing; Mon, 14 Sep 1998 21:29:21 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from k6n1.znh.org (dialup11.gaffaneys.com [208.155.161.61]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA23120; Mon, 14 Sep 1998 21:29:18 -0700 (PDT) (envelope-from zach@gaffaneys.com) Received: (from zach@localhost) by k6n1.znh.org (8.9.1/8.9.1) id EAA15384; Tue, 15 Sep 1998 04:29:49 GMT (envelope-from zach) Message-ID: <19980914232949.A11158@znh.org> Date: Mon, 14 Sep 1998 23:29:49 -0500 From: Zach Heilig To: Satoshi Asami , Zach Heilig Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ELF style (where to test PORTOBJFORMAT) References: <19980914085939.A9766@znh.org> <199809142116.OAA24203@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199809142116.OAA24203@silvia.hip.berkeley.edu>; from Satoshi Asami on Mon, Sep 14, 1998 at 02:16:52PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Sep 14, 1998 at 02:16:52PM -0700, Satoshi Asami wrote: > Yes, this would be fine. It's generally not recommended to put things > after ".include ", but I think in this case it could be > the only way to get it to work cleanly. One more question... If you have a choice between patching the port Makefile or adding more to the patches/ directory, which is preferable? -- Zach Heilig -- zach@gaffaneys.com A horse without a nose... never wins. (unknown) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Sep 14 22:42:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA00292 for freebsd-ports-outgoing; Mon, 14 Sep 1998 22:42:00 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA00259; Mon, 14 Sep 1998 22:41:45 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA13416; Mon, 14 Sep 1998 22:41:28 -0700 (PDT) Date: Mon, 14 Sep 1998 22:41:28 -0700 (PDT) Message-Id: <199809150541.WAA13416@freefall.freebsd.org> To: sada@e-mail.ne.jp, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, kuriyama@FreeBSD.ORG Subject: Re: ports/7836 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: japanese/p5-jcode.pl for Perl5.005 State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Mon Sep 14 22:41:06 PDT 1998 State-Changed-Why: Patch applied. Thanks! Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: kuriyama Responsible-Changed-When: Mon Sep 14 22:41:06 PDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 00:07:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA11535 for freebsd-ports-outgoing; Tue, 15 Sep 1998 00:07:49 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA11506 for ; Tue, 15 Sep 1998 00:07:36 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-24.ix.netcom.com [209.109.234.24]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id AAA03996; Tue, 15 Sep 1998 00:07:09 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id AAA26663; Tue, 15 Sep 1998 00:07:06 -0700 (PDT) Date: Tue, 15 Sep 1998 00:07:06 -0700 (PDT) Message-Id: <199809150707.AAA26663@silvia.hip.berkeley.edu> To: zach@gaffaneys.com CC: zach@gaffaneys.com, freebsd-ports@FreeBSD.ORG In-reply-to: <19980914232949.A11158@znh.org> (message from Zach Heilig on Mon, 14 Sep 1998 23:29:49 -0500) Subject: Re: ELF style (where to test PORTOBJFORMAT) From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * One more question... * * If you have a choice between patching the port Makefile or adding more * to the patches/ directory, which is preferable? Whichever's cleaner. If the patch is suitable to be sent back to the author for inclusion for the next release, maybe that's better. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 00:41:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA15651 for freebsd-ports-outgoing; Tue, 15 Sep 1998 00:41:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from silk.telecom.at (silk.telecom.at [194.118.1.130]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA15636 for ; Tue, 15 Sep 1998 00:41:01 -0700 (PDT) (envelope-from Markus.Minihold@telecom.at) Received: from rtrsco.bahq.co.at (fwvi4.sde.telecom.at [194.118.26.74]) by silk.telecom.at (8.8.8/8.8.8) with SMTP id JAA17310 for ; Tue, 15 Sep 1998 09:40:48 +0200 Message-ID: <35FE1813.55F75E95@telecom.at> Date: Tue, 15 Sep 1998 09:32:35 +0200 From: Markus Minihold X-Mailer: Mozilla 3.01Gold (X11; I; Linux 2.0.30 i486) MIME-Version: 1.0 To: ports@FreeBSD.ORG Subject: Kermit package Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I'm missing the kermit package for installation or compilation on both CD (FreeBSD 2.2.7) and FTP. Minicom depends on it, therefore I'm looking for it. Do you know, where I can download it? Bye, Minus -- ----------------------------------------------------------------------- Markus Minihold Tel: +43-1-21717-56108 P.O. Box 50.000 Fax: +43-1-21717-51222 1011 Vienna Email: Markus.Minihold@telecom.at Austria ************************************************************* You can still escape from the GATES of hell ----------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 02:03:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA24498 for freebsd-ports-outgoing; Tue, 15 Sep 1998 02:03:36 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from phoenix.welearn.com.au (suebla.lnk.telstra.net [139.130.44.81]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA24492 for ; Tue, 15 Sep 1998 02:03:29 -0700 (PDT) (envelope-from sue@phoenix.welearn.com.au) Received: (from sue@localhost) by phoenix.welearn.com.au (8.9.1/8.9.0) id TAA25585; Tue, 15 Sep 1998 19:02:52 +1000 (EST) Message-ID: <19980915190247.64491@welearn.com.au> Date: Tue, 15 Sep 1998 19:02:47 +1000 From: Sue Blake To: Markus Minihold Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Kermit package References: <35FE1813.55F75E95@telecom.at> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88e In-Reply-To: <35FE1813.55F75E95@telecom.at>; from Markus Minihold on Tue, Sep 15, 1998 at 09:32:35AM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Sep 15, 1998 at 09:32:35AM +0200, Markus Minihold wrote: > Hi, > > I'm missing the kermit package for installation or compilation on both > CD (FreeBSD 2.2.7) and FTP. Minicom depends on it, therefore I'm looking > for it. It sounds like you might not have a use for kermit itself. Minicom works fine without kermit. I've installed it like that many of times. Either ignore the pkg_add warnings, or if it refuses to install check man pkg_add for how to force it. -- Regards, -*Sue*- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 02:34:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA27432 for freebsd-ports-outgoing; Tue, 15 Sep 1998 02:34:30 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA27420 for ; Tue, 15 Sep 1998 02:34:26 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: from dragon.nuxi.com (d96-072.orchard2.ucdavis.edu [169.237.96.72]) by relay.nuxi.com (8.8.8/8.6.12) with ESMTP id CAA17856; Tue, 15 Sep 1998 02:34:11 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.8.8/8.8.8) id JAA01484; Tue, 15 Sep 1998 09:34:06 GMT (envelope-from obrien) Message-ID: <19980915023406.A1474@nuxi.com> Date: Tue, 15 Sep 1998 02:34:06 -0700 From: "David O'Brien" To: rvb@sicily.odyssey.cs.cmu.edu Cc: ports@FreeBSD.ORG Subject: Re: /usr/ports/filesystems Reply-To: obrien@NUXI.com References: <199809142313.QAA03530@vader.cs.berkeley.edu> <19980914182949.B17745@nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: ; from rvb@sicily.odyssey.cs.cmu.edu on Mon, Sep 14, 1998 at 09:35:28PM -0400 X-Operating-System: FreeBSD 3.0-19980804-SNAP Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > filesys > > I hate abbreviations, especially new ones. It really has to be either > fs or filesystems, otherwise its too confusing. I vote ``fs''. ;) -- -- David (obrien@NUXI.com -or- obrien@FreeBSD.org) [the one who got x11-wm thru] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 02:48:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA29308 for freebsd-ports-outgoing; Tue, 15 Sep 1998 02:48:11 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA29303 for ; Tue, 15 Sep 1998 02:48:10 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: from dragon.nuxi.com (d96-072.orchard2.ucdavis.edu [169.237.96.72]) by relay.nuxi.com (8.8.8/8.6.12) with ESMTP id CAA17877; Tue, 15 Sep 1998 02:47:40 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.8.8/8.8.8) id JAA02119; Tue, 15 Sep 1998 09:47:52 GMT (envelope-from obrien) Message-ID: <19980915024752.B1474@nuxi.com> Date: Tue, 15 Sep 1998 02:47:52 -0700 From: "David O'Brien" To: eps@sirius.com, ports@FreeBSD.ORG Subject: Re: Is sysutils/mkisofs-1.11.1 really mkisofs-1.11.3? ...or not? Reply-To: obrien@NUXI.com References: <199809050436.VAA09290@staff.sirius.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199809050436.VAA09290@staff.sirius.com>; from eps@sirius.com on Fri, Sep 04, 1998 at 09:36:35PM -0700 X-Operating-System: FreeBSD 3.0-19980804-SNAP Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > If I search for "mkisofs" at I get: > > Category sysutils > > mkisofs-1.11.1 Webpage just hasn't been updated yet. The port is at 1.11.3. -- -- David (obrien@NUXI.com -or- obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 02:48:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA29324 for freebsd-ports-outgoing; Tue, 15 Sep 1998 02:48:14 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dt053nb4.san.rr.com (dt053nb4.san.rr.com [204.210.34.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA29319 for ; Tue, 15 Sep 1998 02:48:13 -0700 (PDT) (envelope-from Studded@dal.net) Received: from dal.net (Studded@localhost [127.0.0.1]) by dt053nb4.san.rr.com (8.8.8/8.8.8) with ESMTP id CAA16609 for ; Tue, 15 Sep 1998 02:47:55 -0700 (PDT) (envelope-from Studded@dal.net) Message-ID: <35FE37CB.331D9ADC@dal.net> Date: Tue, 15 Sep 1998 02:47:55 -0700 From: Studded Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.06 [en] (X11; I; FreeBSD 2.2.7-STABLE-0914 i386) MIME-Version: 1.0 To: The fine people at Subject: Before you commit PR 7910 . . . Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I recently submitted a new port of my script to merge configuration files during an upgrade, PR 7910. Since I submitted the port I added two options to the script and added a warning in the man page. If someone could commit this port, I'd really appreciate it. :) However before actually committing it if you could bump the version number in both places to 1.14 (from 1.12) and use the MD5 of "MD5 (mergemaster-1.14.tar.gz) = bf20b138dda9d04265ea7d7ba4da00c5" (or just d/l the 5k archive and do 'make makesum') I'd be very grateful. :) Thank you kindly, Doug -- *** Chief Operations Officer, DALnet IRC network *** "Yes, the president should resign. He has lied to the American people, time and time again, and betrayed their trust. He is no longer an effective leader. Since he has admitted guilt, there is no reason to put the American people through an impeachment. He will serve absolutely no purpose in finishing out his term; the only possible solution is for the president to save some dignity and resign." - William Jefferson Clinton, 1974 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 02:50:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA29883 for freebsd-ports-outgoing; Tue, 15 Sep 1998 02:50:32 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA29855 for ; Tue, 15 Sep 1998 02:50:19 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA24092; Tue, 15 Sep 1998 02:50:01 -0700 (PDT) Received: from ice.42.org (ice.42.org [194.246.250.222]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA29148; Tue, 15 Sep 1998 02:46:07 -0700 (PDT) (envelope-from sec@ice.42.org) Received: (from sec@localhost) by ice.42.org (8.8.8/8.8.8) id LAA07570; Tue, 15 Sep 1998 11:45:47 +0200 (CEST) (envelope-from sec) Message-Id: <199809150945.LAA07570@ice.42.org> Date: Tue, 15 Sep 1998 11:45:47 +0200 (CEST) From: sec@42.org Reply-To: sec@ice.42.org To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: torstenb@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7931: Ssh allows root login with no password Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7931 >Category: ports >Synopsis: Ssh allows root login with no password >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 15 02:50:00 PDT 1998 >Last-Modified: >Originator: Stefan Zehl >Organization: >Release: FreeBSD 2.2.7-STABLE i386 >Environment: FreeBSD ice 2.2.7-STABLE FreeBSD 2.2.7-STABLE #0: Sun Sep 13 20:48:44 CEST 1998 sec@ice:/usr/src/sys/compile/ICE i386 ssh port version: # New ports collection makefile for: ssh # Version required: 1.2.25 # Date created: 30 Jul 1995 # Whom: torstenb@FreeBSD.ORG >Description: If you don't have a root password set (and yes, I've seen quite some machines with that setup, since FreeBSD allows no remote root logins) ssh lets you in without any password. >How-To-Repeat: ssh host -l root >Fix: I thing either PermitEmptyPasswords no or PermitRootLogin no should be set in the default sshd-config >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 03:00:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA01806 for freebsd-ports-outgoing; Tue, 15 Sep 1998 03:00:24 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA01790 for ; Tue, 15 Sep 1998 03:00:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA24463; Tue, 15 Sep 1998 03:00:02 -0700 (PDT) Received: from ice.42.org (ice.42.org [194.246.250.222]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA01260; Tue, 15 Sep 1998 02:56:03 -0700 (PDT) (envelope-from sec@ice.42.org) Received: (from sec@localhost) by ice.42.org (8.8.8/8.8.8) id LAA07887; Tue, 15 Sep 1998 11:55:45 +0200 (CEST) (envelope-from sec) Message-Id: <199809150955.LAA07887@ice.42.org> Date: Tue, 15 Sep 1998 11:55:45 +0200 (CEST) From: sec@42.org Reply-To: sec@42.org To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: torstenb@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7932: man zshall doesn't work Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7932 >Category: ports >Synopsis: man zshall doesn't work >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 15 03:00:01 PDT 1998 >Last-Modified: >Originator: Stefan Zehl >Organization: >Release: FreeBSD 2.2.7-STABLE i386 >Environment: FreeBSD ice 2.2.7-STABLE FreeBSD 2.2.7-STABLE #0: Sun Sep 13 20:48:44 CEST 1998 sec@ice:/usr/src/sys/compile/ICE i386 zsh-port version: # New ports collection makefile for: zsh # Version required: 3.0.5 # Date created: 11 Feb. 1995 # Whom: torstenb >Description: If you install the zsh port without setting NOMANCOMPRESS=true the zsh-meta-manpage 'man zshall' is broken. This is because it sources the other manpages with: .so man1/zshmisc.1 .so man1/zshexpn.1 .so man1/zshbuiltins.1 .so man1/zshcompctl.1 .so man1/zshparam.1 .so man1/zshzle.1 .so man1/zshoptions.1 which unfortunately are gzipped. >How-To-Repeat: cd /usr/ports/shells/zsh make NOMANCOMPRESS=false install man zshall >Fix: Not sure about this ? force NOMANCOMPRESS=true for this ? fix '.so' in nroff to know about .gz'ed files ? >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 03:50:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA08549 for freebsd-ports-outgoing; Tue, 15 Sep 1998 03:50:20 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA08541 for ; Tue, 15 Sep 1998 03:50:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA25901; Tue, 15 Sep 1998 03:50:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA07334; Tue, 15 Sep 1998 03:42:16 -0700 (PDT) (envelope-from nobody) Message-Id: <199809151042.DAA07334@hub.freebsd.org> Date: Tue, 15 Sep 1998 03:42:16 -0700 (PDT) From: pfgiffun@bachue.usc.unal.edu.co To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/7933: Update to the xbl port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7933 >Category: ports >Synopsis: Update to the xbl port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 15 03:50:01 PDT 1998 >Last-Modified: >Originator: Pedro F. Giffuni >Organization: U. Nacional de Colombia >Release: 2.2.7-R >Environment: >Description: A new version is out and the port needs to be updated. >How-To-Repeat: >Fix: diff -rNu xbl.orig/Makefile xbl/Makefile --- xbl.orig/Makefile Wed Aug 5 05:19:54 1998 +++ xbl/Makefile Tue Sep 15 05:36:08 1998 @@ -6,15 +6,15 @@ # $Id: Makefile,v 1.3 1998/08/05 09:30:57 asami Exp $ # -DISTNAME= xbl-1.0h +DISTNAME= xbl-1.0i CATEGORIES= games MASTER_SITES= ftp://ftp710.univ-lyon1.fr/pub/xbl/ EXTRACT_SUFX= .tar.Z -MAINTAINER= giffunip@asme.org +MAINTAINER= ports@FreeBSD.org USE_X_PREFIX= yes HAS_CONFIGURE= yes -MANN= xbl.n +MANn= xbl.n .include diff -rNu xbl.orig/files/md5 xbl/files/md5 --- xbl.orig/files/md5 Tue Jun 3 20:38:15 1997 +++ xbl/files/md5 Sun Sep 13 12:50:58 1998 @@ -1 +1 @@ -MD5 (xbl-1.0h.tar.Z) = 0f4c3db8b202dc2b5d0db9a40c6ad36e +MD5 (xbl-1.0i.tar.Z) = b9ea1555044e7ca80ff781796fd867b1 >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 04:51:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA19741 for freebsd-ports-outgoing; Tue, 15 Sep 1998 04:51:34 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from tag.starnets.ro (tag.starnets.ro [193.226.61.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA19695 for ; Tue, 15 Sep 1998 04:51:24 -0700 (PDT) (envelope-from pine-info@freebsd.ady.ro) Received: from ady.warpnet.ro (ady.warpnet.ro [193.230.201.1]) by tag.starnets.ro (8.8.8/8.8.8) with ESMTP id OAA13095 for ; Tue, 15 Sep 1998 14:48:32 +0300 (EET DST) Received: from localhost (ady@localhost) by ady.warpnet.ro (8.8.8/8.8.8) with SMTP id OAA13458; Tue, 15 Sep 1998 14:45:53 +0300 (EEST) (envelope-from pine-info@freebsd.ady.ro) Date: Tue, 15 Sep 1998 14:45:53 +0300 (EEST) From: Adrian Penisoara X-Sender: ady@ady.warpnet.ro Reply-To: Adrian Penisoara To: Pine Discussion Forum , FreeBSD ports Subject: Re: [FreeBSD port of Pine 4.03] Found the culprit ! In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Sun, 13 Sep 1998, Adrian Penisoara wrote: > On Sat, 12 Sep 1998, Adrian Penisoara wrote: > > > I found what causes this: enabling the "quell-folder-internal-msg" > > feature (F_QUELL_INTERNAL_MSG for the programmers) !! > > Further details (after some tests on 2 machines over here): > > * Under FreeBSD 2.2.7-RELEASE Pine 4.03 fails to check for new mail, no > matter if it was compiled from the plain sources (with "./build bsf") > or it was compiled from the FreeBSD port, if the > "quell-folder-internal-msg" feature is enabled, but it doesn't exhibit > at all if the feature is disabled ! More details: this problem exhibits ONLY when Pine is run under XWindows, and probably ISN'T related to a special version of FreeBSD (and it might not be related only to the FreeBSD OS)! There seems to be a strange interaction between Pine 4.03 and BASH when the XTerm's dimensions are large (i.e. more than 55 lines & more than 170 columns). I have no problems with SH; I checked again 4.02A and haven't had any problems with it... Environment: * FreeBSD 2.2.7-RELEASE * XFree86 Version 3.3.2.3 / X Window System (protocol Version 11, revision 0, vendor release 6300) Release Date: July 15 1998 Operating System: FreeBSD 2.2.5-STABLE i386 * GNU bash, version 2.02.0(1)-release (i386-pc-freebsd2.2.7) * Pine 4.03 built from FreeBSD port * Pine 4.03 built from original sources, "bsf" port I'd like to ask the people on the list to check this observation: please run bash in a xterm as large as possible and launch Pine and perform the "compose yourself a message and check your mail" test (make sure you have a zero-length mailbox and you have enabled the "quell-folder-internal-msg" feature). This might exhibit for any OS, not just FreeBSD (as a matter of fact I saw a similar bug report earlier on the list)! In the mean time I will release to the public the FreeBSD port, hoping we're going to get enough feedback to solve this issue. You can get the lastest version of the port from: ftp://ftp.freebsd.ady.ro/ports/pine/4.03/pine4.tar.gz http://members.xoom.com/adyx/FreeBSD/ports/pine/4.03/pine4.tar.gz Thank you very much, Ady (@freebsd.ady.ro) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 06:09:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA02148 for freebsd-ports-outgoing; Tue, 15 Sep 1998 06:09:46 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from picnic.mat.net (picnic.mat.net [206.246.122.117]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA02143 for ; Tue, 15 Sep 1998 06:09:44 -0700 (PDT) (envelope-from chuckr@mat.net) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.9.1/8.8.5) with SMTP id JAA24801; Tue, 15 Sep 1998 09:09:06 -0400 (EDT) Date: Tue, 15 Sep 1998 09:09:06 -0400 (EDT) From: Chuck Robey To: Markus Minihold cc: ports@FreeBSD.ORG Subject: Re: Kermit package In-Reply-To: <35FE1813.55F75E95@telecom.at> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 15 Sep 1998, Markus Minihold wrote: > Hi, > > I'm missing the kermit package for installation or compilation on both > CD (FreeBSD 2.2.7) and FTP. Minicom depends on it, therefore I'm looking > for it. > > Do you know, where I can download it? Kermit has odd redistribution restrictions, there isn't, and won't be, a package. You have to build it from the port. > > Bye, > Minus > > -- > > ----------------------------------------------------------------------- > Markus Minihold Tel: +43-1-21717-56108 > P.O. Box 50.000 Fax: +43-1-21717-51222 > 1011 Vienna Email: Markus.Minihold@telecom.at > Austria > ************************************************************* > You can still escape from the GATES of hell > ----------------------------------------------------------------------- > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@glue.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic (FreeBSD-current) (301) 220-2114 | and jaunt (NetBSD). ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 07:47:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA21728 for freebsd-ports-outgoing; Tue, 15 Sep 1998 07:47:53 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA21720; Tue, 15 Sep 1998 07:47:48 -0700 (PDT) (envelope-from cracauer@FreeBSD.org) From: Martin Cracauer Received: (from cracauer@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA11896; Tue, 15 Sep 1998 07:47:33 -0700 (PDT) Date: Tue, 15 Sep 1998 07:47:33 -0700 (PDT) Message-Id: <199809151447.HAA11896@freefall.freebsd.org> To: digital@nypop.com, cracauer@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7615 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: pico appends "UUUUUUUUUU" when saving... State-Changed-From-To: open-closed State-Changed-By: cracauer State-Changed-When: Tue Sep 15 16:45:07 MEST 1998 State-Changed-Why: Supposed to be caused by library mixups. Works for other people. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 08:20:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA27638 for freebsd-ports-outgoing; Tue, 15 Sep 1998 08:20:18 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA27630 for ; Tue, 15 Sep 1998 08:20:16 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA13228; Tue, 15 Sep 1998 08:20:01 -0700 (PDT) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA26779; Tue, 15 Sep 1998 08:14:19 -0700 (PDT) (envelope-from nobody) Message-Id: <199809151514.IAA26779@hub.freebsd.org> Date: Tue, 15 Sep 1998 08:14:19 -0700 (PDT) From: rom_glsa@ein-hashofet.co.il To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/7934: Port update - devel/gide Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7934 >Category: ports >Synopsis: Port update - devel/gide >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 15 08:20:00 PDT 1998 >Last-Modified: >Originator: Gilad Rom >Organization: Eh-ELAC >Release: 3.0-CURRENT >Environment: >Description: this is an update for devel/gide. patches/ subdirectory completely removed, so im resubmitting the uuencoded port tarball. UUencoded port tarball: begin 644 gide.tar.gz M'XL("&N@_C4``V=I9&4N=&%R`.U8;6_B.!#F*_X5H[8?[J22V'E=T'$Z%E*4 M*V\"NKN/^'/1-^"MR>T\`*5FR%+X82_/DSM,%8$TUMBC9CHOS9=XE]`R?_T+JBR!OC1^(]-`ULV%OG?LF3\ M/PF._N^.AT-G-*]"Q^OQWQ+^M["A8]TB(O[;AB;C_RDPWX09\)](`9?@07]^ M#4LOHS[P!E@G#/(-A2ZD+`F8M]V&<0`#+PX*+Z"*3`'_>QSYWW-FW6DU.E[C MOZ'IS_EO$D/R_Q00O!?\]R"FGR'([QI[]LXH"2_T/OCHHSH(IT MO,)_HA%M?_ZC8:(_GO_HNN3_*7`.(Y[WTX3E&4^]441YCDYBV.YWA$CRK?+/ M`3J'#Y1EHI/13T7(J-\J_2B.C7AGC]<*L&)4E`RM0V#7FO![$0%I-M]QD3]X MRCYV'<`S,3KGG1FBYD[ M?VS_V\)AV'%'(!#=SWBYXS<4:]6;O.ZRE";F\5<;4N[B?CZ7S6 M#_V+YS1AW:].YE<#3K]6?NL MX5[<#\;=SN!]9^8\J&&\B@J?GI46\<\1$H/O)*)P>2:69$3:]7)]%8)0FF1Y M(Q3%6Q2U4#W+6<@]=/]HYX-Z3#1(V2N`7Y:9KXBMIVSO?I4)2$)"0D)"0D)" /0D)"HE+\!3YONXD`*``` ` end >How-To-Repeat: >Fix: please commit. Thanks. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 08:50:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA01984 for freebsd-ports-outgoing; Tue, 15 Sep 1998 08:50:21 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA01970 for ; Tue, 15 Sep 1998 08:50:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA14517; Tue, 15 Sep 1998 08:50:01 -0700 (PDT) Received: from localhost.my.domain (host43-68.mishkei.org.il [62.0.68.43]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA01384 for ; Tue, 15 Sep 1998 08:46:11 -0700 (PDT) (envelope-from lickyou@localhost.my.domain) Received: (from lickyou@localhost) by localhost.my.domain (8.9.1/8.8.7) id RAA12744; Tue, 15 Sep 1998 17:46:43 GMT (envelope-from lickyou) Message-Id: <199809151746.RAA12744@localhost.my.domain> Date: Tue, 15 Sep 1998 17:46:43 GMT From: rom_glsa@ein-hashofet.co.il Reply-To: rom_glsa@ein-hashofet.co.il To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7935: port update - math/geg Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7935 >Category: ports >Synopsis: port update - math/geg >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 15 08:50:00 PDT 1998 >Last-Modified: >Originator: Gilad Rom >Organization: Eh-ELAC >Release: FreeBSD 3.0-CURRENT i386 >Environment: >Description: updated math/geg. Simply apply these patches from the port's root directory. Patches follow.... *** Makefile.orig Tue Sep 15 17:35:56 1998 --- Makefile Tue Sep 15 17:33:24 1998 *************** *** 1,24 **** # New ports collection makefile for: geg ! # Version required: 0.01 # Date created: 8 Aug 1998 # Whom: rom # ! # $Id$ # ! DISTNAME= geg-0.01.src ! PKGNAME= geg-0.01 CATEGORIES= math ! MASTER_SITES= ${MASTER_SITE_SUNSITE}/Incoming/ MAINTAINER= rom_glsa@ein-hashofet.co.il LIB_DEPENDS= gtk\\.1\\.5:${PORTSDIR}/x11-toolkits/gtk ! USE_X11= yes USE_GMAKE= yes ! GNU_CONFIGURE= yes ! ! WRKSRC= ${WRKDIR}/geg-0.01 .include --- 1,23 ---- # New ports collection makefile for: geg ! # Version required: 0.12 # Date created: 8 Aug 1998 # Whom: rom # ! # $Id: Makefile,v 1.1.1.1 1998/08/10 00:44:15 steve Exp $ # ! DISTNAME= geg-0.12 CATEGORIES= math ! MASTER_SITES= http://www.geocities.com/SiliconValley/Park/2030/ \ ! ${MASTER_SITE_SUNSITE} ! MASTER_SITE_SUBDIR= Incoming MAINTAINER= rom_glsa@ein-hashofet.co.il LIB_DEPENDS= gtk\\.1\\.5:${PORTSDIR}/x11-toolkits/gtk ! USE_X_PREFIX= yes USE_GMAKE= yes ! GNU_CONFIGURE= yes .include _______________________________ And another patch for files/md5. ------------------------------- *** files/md5 Sat Aug 8 03:19:35 1998 --- files/md5 Tue Sep 15 17:27:25 1998 *************** *** 1 **** ! MD5 (geg-0.01.src.tar.gz) = 7492fc03c9dc4bb590da1020f9b2b73b --- 1 ---- ! MD5 (geg-0.12.tar.gz) = 8b37dddcfc5ed17a27c34de74a5993fe >How-To-Repeat: Please commit the patches. Thanks :) Gilad. >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 10:37:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA21735 for freebsd-ports-outgoing; Tue, 15 Sep 1998 10:37:14 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from austin.polstra.com (austin.polstra.com [206.213.73.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA21721 for ; Tue, 15 Sep 1998 10:37:08 -0700 (PDT) (envelope-from jdp@austin.polstra.com) Received: from austin.polstra.com (jdp@localhost) by austin.polstra.com (8.8.8/8.8.8) with ESMTP id KAA21772; Tue, 15 Sep 1998 10:36:33 -0700 (PDT) (envelope-from jdp) Message-Id: <199809151736.KAA21772@austin.polstra.com> To: mathiasp@virtual-earth.de Subject: Re: -ldl and dlsym autoconf questions In-Reply-To: <199809142027.WAA01601@mp.virtual-earth.de> References: <199809142027.WAA01601@mp.virtual-earth.de> Organization: Polstra & Co., Seattle, WA Cc: ports@FreeBSD.ORG Date: Tue, 15 Sep 1998 10:36:33 -0700 From: John Polstra Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In article <199809142027.WAA01601@mp.virtual-earth.de>, Mathias Picker wrote: > 2) there is a call to dlsym("register_objects"... which needs to be > dlsym("_register_objects"... ... > Oh, yes, this is all on freebsd-stable about three weeks old... You should be able to use dlsym("register_objects") then, without the leading underscore. The dynamic linker tries to be intelligent about it. > Will something in this area change with the switch to 3.0? In 3.0, which uses ELF, dlsym("_register_objects") will not work. You should specify the variable name as it appears in a C program. -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Self-knowledge is always bad news." -- John Barth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 12:30:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA13331 for freebsd-ports-outgoing; Tue, 15 Sep 1998 12:30:25 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA13255 for ; Tue, 15 Sep 1998 12:30:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA23867; Tue, 15 Sep 1998 12:30:01 -0700 (PDT) Received: from trumpet.partitur.se (trumpet.partitur.se [193.219.246.210]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA12297 for ; Tue, 15 Sep 1998 12:26:58 -0700 (PDT) (envelope-from girgen@trumpet.partitur.se) Received: (from root@localhost) by trumpet.partitur.se (8.8.8/8.8.8) id VAA08426; Tue, 15 Sep 1998 21:26:38 +0200 (CEST) (envelope-from girgen) Message-Id: <199809151926.VAA08426@trumpet.partitur.se> Date: Tue, 15 Sep 1998 21:26:38 +0200 (CEST) From: girgen@trumpet.partitur.se Reply-To: girgen@trumpet.partitur.se To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7937: port word2x has problems with redefinition of alloca Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7937 >Category: ports >Synopsis: port word2x has problems with redefinition of alloca >Confidential: yes >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 15 12:30:00 PDT 1998 >Last-Modified: >Originator: Palle Girgensohn >Organization: >Release: FreeBSD 2.2.7-STABLE i386 >Environment: uname -a FreeBSD trumpet.partitur.se 2.2.7-STABLE FreeBSD 2.2.7-STABLE #0: Mon Jul 27 16:37:05 CEST 1998 girgen@trumpet.partitur.se:/usr/src/sys/compile/TRUMPET i386 >Description: cd /usr/ports/textproc/word2x make install ... ===> Building for word2x-0.002 c++ -O3 -pipe -DHAVE_CONFIG_H -c -o reader.o reader.cc c++ -O3 -pipe -DHAVE_CONFIG_H -c -o strip.o strip.cc c++ -O3 -pipe -DHAVE_CONFIG_H -c -o word2x.o word2x.cc c++ -O3 -pipe -DHAVE_CONFIG_H -c -o text-fmt.o text-fmt.cc c++ -O3 -pipe -DHAVE_CONFIG_H -c -o text-table.o text-table.cc ./fake_link -r -o fmt-text.o text-fmt.o text-table.o c++ -O3 -pipe -DHAVE_CONFIG_H -c -o latex-fmt.o latex-fmt.cc c++ -O3 -pipe -DHAVE_CONFIG_H -c -o latex-table.o latex-table.cc c++ -O3 -pipe -DHAVE_CONFIG_H -c -o latex-embed.o latex-embed.cc ./fake_link -r -o fmt-latex.o latex-fmt.o latex-table.o latex-embed.o c++ -O3 -pipe -DHAVE_CONFIG_H -c -o html-fmt.o html-fmt.cc c++ -O3 -pipe -DHAVE_CONFIG_H -c -o html-table.o html-table.cc html-table.cc:19: declaration of C function `char * alloca(int)' conflicts with /usr/include/stdlib.h:133: previous declaration `void * alloca(unsigned int)' here gmake: *** [html-table.o] Error 1 *** Error code 2 Stop. *** Error code 1 Stop. *** Error code 1 Stop. >How-To-Repeat: See previous >Fix: Not sure, which way is the cleanest. Suggestions? >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 13:11:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA22115 for freebsd-ports-outgoing; Tue, 15 Sep 1998 13:11:25 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from daal.pl.cp (mcl36-53.nttlabs.com [204.162.36.53]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA22016; Tue, 15 Sep 1998 13:11:10 -0700 (PDT) (envelope-from gene@nttlabs.com) Received: from localhost (gene@localhost) by daal.pl.cp (8.9.1/8.9.1) with SMTP id NAA07988; Tue, 15 Sep 1998 13:10:18 -0700 (PDT) (envelope-from gene@nttlabs.com) X-Authentication-Warning: daal.pl.cp: gene owned process doing -bs Date: Tue, 15 Sep 1998 13:10:15 -0700 (PDT) From: "Eugene M. Kim" X-Sender: gene@daal.pl.cp To: Satoshi Asami cc: ports@FreeBSD.ORG, committers@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: ELF transition for ports In-Reply-To: <199809100657.XAA10293@silvia.hip.berkeley.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, I have some questions about port Elfiziation. On Wed, 9 Sep 1998, Satoshi Asami wrote: | Date: Wed, 9 Sep 1998 23:57:51 -0700 (PDT) | From: Satoshi Asami | Subject: ELF transition for ports | | *snip snip* | | (4) For aout libs, all minor numbers shall be zero. That means many | ports (those with a non-zero minor) will have to have their major | number bumped by one. There seem to be about 80 of them that | need to be fixed: | | ## grep 'lib.*\.so\..*\..*' */*/pkg/PLIST > t | ## cat t | sed -e 's/:.*//' | uniq | wc | 143 143 3622 | ## grep -v '\.0$' t | sed -e 's/:.*//' | uniq | wc | 80 80 2019 | ^^ | (These are the ones that don't end with ".0".) | | All port Makefiles are edited to remove minor numbers from | LIB_DEPENDS, and also to have the regexp support removed. (E.g., | "foo\\.1\\.\\(33|40\\)" -> "foo.2". They will be matched using | "grep -wF". | | *snip snip* *ouch* Does this mean that from now on the version number of such Elf shared libraries will be always be higher by one? For example, if the original library version goes from 6.4 to 7.0 -- say it's X11R7 :-) -- then will the FreeBSD Elf version be 8 since we are using 7 for 6.4? Thanks, Eugene To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 13:50:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA29223 for freebsd-ports-outgoing; Tue, 15 Sep 1998 13:50:19 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA29214 for ; Tue, 15 Sep 1998 13:50:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA27425; Tue, 15 Sep 1998 13:50:00 -0700 (PDT) Received: from ady.warpnet.ro (ady.warpnet.ro [193.230.201.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA28728 for ; Tue, 15 Sep 1998 13:48:30 -0700 (PDT) (envelope-from ady@ady.warpnet.ro) Received: (from ady@localhost) by ady.warpnet.ro (8.8.8/8.8.8) id XAA18184; Tue, 15 Sep 1998 23:48:35 +0300 (EEST) (envelope-from ady) Message-Id: <199809152048.XAA18184@ady.warpnet.ro> Date: Tue, 15 Sep 1998 23:48:35 +0300 (EEST) From: Adrian Penisoara Reply-To: Adrian Penisoara To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7938: Pine Port Upgrade: from 4.02A to 4.03 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7938 >Category: ports >Synopsis: Pine Port Upgrade: from 4.02A to 4.03 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 15 13:50:00 PDT 1998 >Last-Modified: >Originator: Adrian Penisoara >Organization: Warp Net Technologies >Release: FreeBSD 3.0-980520-SNAP i386 >Environment: This port has been tested under: * FreeBSD 2.2.7-RELEASE * FreeBSD 3.0-980520-SNAP i386 This port has been portlinted (0 errors, 2 warnings). >Description: The Pine Team released the 4.03 version of Pine; unfortunately this release seems to introduce a new bug (I have sent mail on the freebsd-ports and pine-info mailing lists about it) that prevented me from releasing the port sooner. After applying the patches please close PR #7879. >How-To-Repeat: N/A >Fix: Attached to this message there is an archived diff file that will patch the current 4.02A port to the 4.03 version. ATTENTION: * REMOVED Files: patches/patch-aa * NEW Files: patches/patch-av --8<-- begin 644 pine-4.03.Sep15.diff.gz M'XL("/W,_C4"`W!I;F4M-"XP,RY397`Q-2YD:69F`-P\^WO:QK(_X[]B0W+J M!TCH@7C(CYK8Q*&QP1=HTW['YR-""-`-2!Q)V''[^?SM=V96;X/CM&F;<]5& MP.[.[,SL[.S,[*X%06!7QD=K:B\LT?7L66$X7[/6>L9D%?[7-5F7JDQN-AL[ MI5(I;EH8K!TVL%;42M&UAJYJO-7I*1/DLJJRDERN:NST=(>]9%WKCJU<+_"9 MZ2X6EAG8KL.6(2XV=3V]L+(="YO.@V"E5RIW=W?BG>'/;6<6N(YH3=85;%'9 M$5ZRGRS/1P2>]>^U[5D3G>%3%26EM5-ZHEI%_.=&8#'3L^!CHA<*4I/]L%[< M<]JA^OW<74)QH37Q;,-AUY9C^Z[A&>S(F-R?3CW+&OL3$;Z+GGL"``CSJ@-] M1)(IWS)95&J$L"(U*B`@J:97FSKT]+\?77]^S]J?5NP5P>X(YYW!L-NZ:A\S M_B"3R,F.&O6".=>?O ML*O68-CNCP:=(506IC0"\!9-P]P\"D#Y=6MX]C8">?5;&L5#6/NF<\DK(WH? M6N+*",QY!(WEH\&PW[D^9L)*WA&0E$YW"/_:_6/2B9S,H6?6[8TN@1<`O>QT MWQVS>\O'XJM65SYF!8(29>#<=.ECX0:B#`U**]F7C/]&W)E`75@S:YP],L%C1UT]/K_OM-YV?3T_U5[_QKP_Z MK,A;%B+($T03@_>O'G(X)RY,L8V,(^&!9]5%JYI+"H+>UQ)F*E8@5GYO1SM`!7">&TO)OH.*YSNF9.$M4.&!`S; M7:0.E/1=>T3?Q0H!,!CD?50>P&`[?F`L%OJ.`'UUNH-AZ_(2@R\[KWOPH\9_W'1OX8?2_[CJG?>?@"RA+3AXH3(9'L%#V/&#'>@0+\D>+KTGE&BO5E+(L MD\D7+6=B3U&P-.DRHKT\/^MUWW0N0LFEA0%#^K@#)ERSK*+0'#-=9\H$>I]D M)QI5$:J(H_/6L/7`-K3:AAB@3U_]UCY[VWM@Q8+`OO"_8A:^,V77R(CUR88E M\,X.P*P4^Y9IV;>@RL885D;FVS/'6-P46>#=Y\`GMF^,%V"#63"W`/+?:VNQ M$*;N8F)Y(-K`\@!26/HS@)["PK;VK.(?9@"&3K0=<[&>6.P([2^NW^+RX\F. M`"X#KG1^93G1MOD,6N(SQ&VI&3H-#)HU]*JDJ[6TTZ"`SX#:(UR=:VPO6@G% MP/#$V:_[[)C5&HUFO3G6:M5FM:[*M>9X,IXJBF7(9D.96O4<9+C8(&2SIM1E M0S$D26FJ6JFFJHJEUI2K+]9JE3B39 MM)K-2:U6;TA3$@?U`TS2IV`8VZ123Z22!RD,UQ;WJ#2F*-BZFA%.MC,`Q7>@P(2C0I3)!U& M15/"]@?9A_<*,[S68/PW`]<'EDJ8Z99CVI:/?AQIZ(^._8G=9>V"DH49P"9Y+A#.$7_]ZAM#>?U6&-@Y9O5%N M)$.&>`'J[.I\G\.W^H@\Y@,*>^2V[4>M^ZTN--O/LHI<98=&AZ:#&/0%@,+J M*KSVYP;XVF/P\H5/2&@6B*5AN"3,A64X.L?@+9DP90=`U4$$<``BP!_LX#_$ M],CUP9^"UYRE98ZD@QM`OARX`'NX\.]SW(<,*D0QZ@]!0?)9KX_K!I=MIG;S&%CJSDT"P,CX.80[%%=5^JZ*J?-H8;Q MI9:RAH\\=][I&\\F>P@1F=34Y::N53/V\!%8QB(J.OPOA1:Q]&1'*3!)TC4) M2`[!MG64X["FJR$$R\]C1O.X6FY(?![ST&YB38WU(@`7:`E.%K@"\XD'ULEC MYMH/W*7]JS7A18'+9E;`H#L[$%D'?#'+@!&>VT&_ MI=O^"6)#\,1Z[T=G;UO=BT[W8O2FW[LJ@Q5EEN';EL?NC'NRK9YU:SD!@KWQ MW&6(RIP;S@S+;.IUM0[(,H?N#BLZK@"6U[T3HH;"%("+&.9`.YP4\*3"CXRW M)T[M3S!\M"CNE*AI$G$]T10;HAX=5/!KY8"])(ZM[?QBHY7GCF%>WS,(I2#^ MMB:`CV.@`5%E=*7AK6C)B/"'LB4@@-`OFX3S]VST?7O<&0\`-Q,.1+D#YS4<`NXZZG15X\2A^%"F.! MD1.@*P')\;^\TM)TD6M26:[5N=JFFE<.!)J``Z)1N+/!RT3QVC/.A/#,!XE( M>!K\,ABVKT;7F#TX2PN.%7.19SR>Q:WP(QC]]OGGX+D^%+.B0,XBSFGY^#LY MWZ;)S^7\Z9E0)+V-_FTP_O86XR]+6XV_G0D4FA`E@".;-OYHL+B]2HR_#VZ; M:#ZRQ0`.YCCJ+#'ZO'FN)6;IJGECGT:,JPDV5QI,JNMR59=J>2,?(LYQ`"WE M+<:=^]6UNEJNU1H:2^9.K:[4RU#>C(U^H3!V)_?"B;\>!_5E M?Y`.M8ITT#NQ;KQZLVCJU6:S7->DM&CJ6@T6+*V6B(9Z\B&T-N=LCU,'3KP[ M`:.USWXK@&6#Y8%9"]\BD^OC9(/`&6T:M[U`IFE`;;M[UGC=&6(.&(`(A\6P M!(PM&,3_^;$W;)\+UWW,4KZ^;",TLE55D"UZA^)%OL8@AX^',7U)%Z\[W5;_ M%SW=Q]AV#.^>]_*Z-6C7JHB;.Z*:A.R"%B>C`MS7H:Q>C4?E[Q:!1B+0$A'\ M7IZWZ('6`-1:%,MP/:A5:^5Z#6+6>(J0/GWW'7NQY[LCM,39-1 M7/5D)G]#XMJP>'SD9A<]Y1_6"R9#P`"6M/Y4Y/`Q;WKKNJ8]L7C82V-5R>Z` MT:*P\IC29)*BJXTX$T."S0`DI,F8;]$:.@`E"\@&Y`B`2PB#)433525>VDJ/ MD3]:!J--MLTS1-&DLE*34_-#T50HJ2:SX]7>L->['.Q77IVR(D2QW?TB\SVS M`EZSYX,G;PKFPH:!#QM#/?NPNIM\J&"CCY8WMCS71SN`7,U8"W!$?[ENZX3UU#+G8!4P2X_:'P&3?PNA]F!?Q%`4A1;QG2AZ MQ'>LYM\&WQLT?/'E[M$BK1<*Q)H`T'A"PVFC@W=SY3H4#6..40)MRCI&U#"7 M$522/&0IARRBF0)=O:I"K)S29(XL1ZFB5ZM/:W`-QJV6UN"Z4E8:2F:=CQY[ MRO[)!#]1C7^Q0XR'',;3'W'Y(2QU:<"%@V`TU^(V6>7<$!338]T:L(2B8F(6 M%48=/PQOYA?A^SN9WDJ1O3+-10#%:5#62E]%5:W:$@#`N-F-:TAS7I9E3.9D1P1X&6D*SC;M+.T M#"P_(!8GZ238!NF)8K+U2Q*DA\0(J-:>GT>#VZ61H@>X\%:_B9,0FDKIESJ%E"F6V^F,P>3^YFG/1[Y M1[JUN_M8W2YMYR.ET:Q/EKD.,,/C,\.S,)\$FL,FMF>9@>O=Z\4PRF4_[NP, MB]'3P*W:XN9I%>]WU[E;WWCN?-XX/L`-37!5DI/I3!,\(CSV7[X*X1O9/BRHZJP MYJIJ(]:N!]:B*&XTB"-^DD@3)=*,-25,N16&K8M1I_M3KUO8O9$D>1?#XL%Z MA=OLP`-O41]NJ/EY.?6"8I(SZ*'1T$-Z9""WQJ]>._8E>8FI? MB?2IQJ0J^IAJ(Q^N;83.JUD.Y8^N3[4,P_OT^98Z@(53LO?`#"#GWYI@7 M*G_GC_?WH[04S]!+LH3H:W&./K0=E+5IG9VU!SQEL_+<(#RY.37L!>ZZ\"T` MZN5Q)[\]@T86,[-:.W@&9@&^Y>(>&Z]`_QW7GD!A0#WAOB;VA*?H1EB[M&!Z M^&ROV[DL7[2'H\O>V3M.<+O?[_7+4+Y/FZ.93:TPJ^6[2XNYL.AZS/(\""E# MB3&V7(X6[HSM!)-E&]<-5.R M)W?7GH+2L='HC6=9KP?GHU':FP*'*/`<<[G:0\[+Q$D@WCK+NW&+5>Y,A5Q/TEM/ M(,^X]D='K36Z_0 MY4N`A%2Q@+JZPV?2>#U+)F34EHJ[\481\99*^8>\93)#7X\W-!*S!)E2&):S$2`CASW34O^$I\5%,`41%R<"F,2UM,-/W M*\M_&7<+)2(5Q3UG2K*'-9*ZZ!`&77L1_)7K+@JP(.)93\/T7-_G1SVG"^/6 M]?PRL\29R+%1VPJ"X3DH6D7IZ@PB@S@-C+6`OY^)#:G"YA4.RJ=J-':QL_-? M,W:YJ?"'QBZ/Z]L?N\T'G]1JK2RK6I)\(E=F83L?P8>YP^0;GA1A!EM:OF_, M+"RQ`_WH=?\$6Q^UV%N0PW'Q9P'3.L*%9Z\L'?V3UN6H=7[>;P\&H^])QXLG M1R\$X24E@X"%XV+8ZLV/EY=XZ6I4%(23HTKKY.B:HX;6)EW?(4=\^';XV)=^T=Q&S267I^$V>K$*B6+4"*,:!GZEH4!JTY2 MRE.YWM9UA_T+04J;0+8M$!QD@W@O:8$)AG=R$!O\+BX MC:ABBJ8K739 M.4D&&2@./+=XTL&/R9H<9QRQC6V1@1&NR<43NF+S%KY28SJ1`KI<8Z4ZGL2+ M\[0Y!"2^D<^%OFT,HNXW2^(13O#=;6RCIB7[C!!U\&.V M=F")^YF,+RJMXMBC0_=9)[&0/E8=)O4"$=V)J\Y5F]%IU:6Q6N$QN1!)>-Y#UNC`AQP= MNH_P!\M51;RY`66[N2%'\N8&_=N;FT_P%*XM+[R(20XVYH3B;(TO1GBVGMK@ M+$5S]*NQ!!-FV^PH\,FVYB;`O,/PO[^>YY;%]@7=<1W%L(RNT)Y42^D)(O0?/U%2MO M*&Z335::;S(>*,/#ZMOOGMYF9B=>>(JM`TX.O'5:H@NH,#.2A%W\UPQR9^Z; MN`=8K<E8#@U:2W/),98TH2R'7^Z MV-VE2Z$&6_LP;O[*,NUI>"TG[/;#ATP$#``B&\)0\![\$.8^GNJ[J08%:/#CH-T?X?70`F-="'US M\(/A.:*(LSHWM#M2*$8Y(3V=Q]'S&1]].W#K]Y[/^!3(!1_-`>^'?%O3K=]"^+? M.DV_3/RT8GR<59\!?[-A?A\$7EZT=^80"=] M+UCNP_C"5+[VW)EG+.EP>8?^HH85X%^M\MEWK,USJ'@W[DL`(B;.VX.S_K93 MWEJ6!6J;_DL0\O\5QK+'F:R961;XC,"4Z-0 M0HN;__WNNP*"H'LAE);KK^OUVKO[9MA*IPW3W)PUU7FEJ++PVRO)<:"+-\\_ MW.<3$05Q0CH',OUW?^K2XTZ0@#RPL5.S]#-EC-]?"N\[>&QKL3I6)EMT--O' M,+:3<.4*!G!KL8N?`:-YE?@(6W7K`!#*2X7,H.O`!-/1?<3@%'DHPB"%/$44 M+\?^M`4*T>(;0=W:#\I6*4=`?*/NA#A"?IN[Q#HT-D+L,/13;<;$LDM;E2G" M\IS*!866]CJ&]1;RG'K-7HFT"_$Q>0,[=6W0)?G>[!Q:1O5V^ZC^[=CH:L=> M8#(.2-&3.QS8T7PZ0A784TTE)8X.#%+4T@9Q!@NH\:=#`N M(I&-+OUQ`;=,=)#=;KSH>&N)/K"Q:@W[KXO/KU,(!:_A&=8PK<\F/%Y=MH7F MPC@L;?B""3NYD?J+-7Q"<&KXPM;P2G8/2I3]"!.NAudit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 14:04:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA02428 for freebsd-ports-outgoing; Tue, 15 Sep 1998 14:04:39 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA02361; Tue, 15 Sep 1998 14:04:20 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-24.ix.netcom.com [209.109.234.24]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id OAA04866; Tue, 15 Sep 1998 14:03:55 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id OAA01755; Tue, 15 Sep 1998 14:03:52 -0700 (PDT) Date: Tue, 15 Sep 1998 14:03:52 -0700 (PDT) Message-Id: <199809152103.OAA01755@silvia.hip.berkeley.edu> To: gene@nttlabs.com CC: ports@FreeBSD.ORG, committers@FreeBSD.ORG, current@FreeBSD.ORG In-reply-to: (gene@nttlabs.com) Subject: Re: ELF transition for ports From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Does this mean that from now on the version number of such Elf shared * libraries will be always be higher by one? For example, if the original * library version goes from 6.4 to 7.0 -- say it's X11R7 :-) -- then will * the FreeBSD Elf version be 8 since we are using 7 for 6.4? It might or might not. Actually, the same thing will happen if the original version goes from 6.4 to 6.5, ours will be at version 8. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 14:10:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA03987 for freebsd-ports-outgoing; Tue, 15 Sep 1998 14:10:46 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA03903 for ; Tue, 15 Sep 1998 14:10:19 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA28031; Tue, 15 Sep 1998 14:10:01 -0700 (PDT) Date: Tue, 15 Sep 1998 14:10:01 -0700 (PDT) Message-Id: <199809152110.OAA28031@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Adrian Penisoara Subject: Re: ports/7879: Update pine4 port to 4.03, and other items Reply-To: Adrian Penisoara Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/7879; it has been noted by GNATS. From: Adrian Penisoara To: Studded@dal.net Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/7879: Update pine4 port to 4.03, and other items Date: Tue, 15 Sep 1998 23:58:28 +0300 (EEST) Hi, Please close this Problem Report as it has been superceded by PR #7938. Thank you, Ady (@freebsd.ady.ro) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 14:29:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA09201 for freebsd-ports-outgoing; Tue, 15 Sep 1998 14:29:56 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ms7.hinet.net (ms7.hinet.net [168.95.4.70]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA08482; Tue, 15 Sep 1998 14:26:14 -0700 (PDT) (envelope-from bw006x@ms22.hinet.net) Received: from sen005644 (h252.s2.ts32.hinet.net [163.32.2.252]) by ms7.hinet.net (8.8.8/8.8.8) with SMTP id FAA18024; Wed, 16 Sep 1998 05:25:40 +0800 (CST) Date: Wed, 16 Sep 1998 05:25:40 +0800 (CST) Message-Id: <199809152125.FAA18024@ms7.hinet.net> From: fbv006394@ms7.hinet.net Subject: ²ú²ï¤Ñ¦a¯S»ù³q³ø¡@ dúPþ©ûBûBþ©úP d X-Mailer: Mozilla 4.01 [tw] (Win95; I) Content-Type: TEXT/PLAIN; charset=BIG5 to: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ²ú²ï¤Ñ¦a ¥þ¦~µL¥ðªº¦bºô¸ô¤W¬°±z´£¨Ñ¶®ªÚ²£«~¥þ°ê°e³f¨ì©²ªºªA°È¡@ dúPþ©ûBûBþ©úP d Åý±z±o¥H§K¨ü¶ë¨®¤§­W »´ÃP¨É¨ü ¨ÉÅA¥þ²y 112¦~ªº¶®ªÚª¾¦W²£«~ ¶®ªÚ ¤ñ¤k¤H§ó¤F¸Ñ¤k¤H ¦æ¾P¥þ²y130­Ó°ê®a «~½è­È±o±zªº«H¿à ­Y¥»«H¥ó¹ï±z³y¦¨§xÂZ §Ú­Ì°£¤F¸ÛÀµªº­Pºp¥~ ¤]½Ð³qª¾§Ú­Ì§R°£ ÁÂÁ mailto:avon0916@geocities.com?subject=DeleteMe_-6423 [¥»¶g¯S»ù«~¡@¥»¶g¦³65ºØºô¤Í¯S»ù«~­ò ¥þ­± 3 ~ 7.5§é ½Ð¤Wºô¿ïÁÊ] http://www.geocities.com/FashionAvenue/Catwalk/3625/net13.htm 1.¨k©Ê¿i¬â¬~­±Á÷(¤é¥»Gravis) ¥«»ù 250 ºô¤Í»ù ¢°¢µ¢¯ ¦Û«H»P¾y¤O±q³oùض}©l ¨k¤HªºÁy ¬~Áy§ó»Ý­n¥h¨¤½è 2.Âù¦â®B»I(ºë«~·mGo ¬ü°ê­ì¸Ë) ¥«»ù 350 ºô¤ÍÀu´f»ù ¢°¢´¢¸ §t·LÅnÂA±m²É¤l ªø«OÂA¼í®B¦â¡@¤@¤ä®B±m¥i¯«©_§e²{ ±K±m ¯]¥ú ²V¦â ¥|ºØ®B®Ä 3.¥h¨¤½è¿i¬âÁ÷(°ò¦«O¾i¥[±j ¬ü°ê­ì¸Ë¶i¤f) ¥«»ù 600 ºô¤ÍÀu´f»ù ¢²¢°¢° ¦³®Ä¸Ñ¨M¦]¦Ñ¤Æ¨¤½è ©Î¦Ã«¯°ï¿n¡A³y¦¨¦Ù½§Åf¨H¡B²ÊÁW¡B¯h­Â°ÝÃD 4.¶W¯Å²H´³²Õ¦X(¤é¥»­ì¸Ë¶i¤f) ¥«»ù 3100 ºô¤ÍÀu´f»ù ¢°¢¸¢±¢¯ ÂùºÞ»ô¤U ±Æ°£¶Â¦â¯À §í¨î¦A¥Í ­é°£¦Ñ¼o¨¤½è ¦A³y¤k©Ê¦Û«H 5.Á¥Á¨¦p¶³¯Ý¸n ¥«»ù 850 ºô¤ÍÀu´f»ù ¢µ¢°¢± ¶W²ÓÅÖºû µ·½v¥ú¿A ªA¶KµÎ¾A ¥ßÅé¯BÀJ¨ë¸Á¢µ· µØÄR®öº© ±j¯P§l¤Þ±zªº¥L µL¥i¨ú¥Nªº¥Ø¥úµJÂI Ä_¨©¦Û¤v¡@´N±q¤µ¤Ñ¶}©l­ò ¢ð¢ü¢ü¢ø¡G¡þ¡þ¢ë¢÷¢õ¢í¡D¢ü¢÷¡þ¢ô£B¢û¢û¢é úPþ©ûBûBþ©úP d To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 15:03:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA18322 for freebsd-ports-outgoing; Tue, 15 Sep 1998 15:03:28 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA18242; Tue, 15 Sep 1998 15:03:08 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA01856; Tue, 15 Sep 1998 15:02:50 -0700 (PDT) Date: Tue, 15 Sep 1998 15:02:50 -0700 (PDT) Message-Id: <199809152202.PAA01856@freefall.freebsd.org> To: taoka@infonets.hiroshima-u.ac.jp, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, kuriyama@FreeBSD.ORG Subject: Re: ports/7747 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: cannot compile japanese/onew-* on 3.0-CURRENT State-Changed-From-To: open-suspended State-Changed-By: kuriyama State-Changed-When: Tue Sep 15 15:01:12 PDT 1998 State-Changed-Why: Originator's request. Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: kuriyama Responsible-Changed-When: Tue Sep 15 15:01:12 PDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 15:08:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA19649 for freebsd-ports-outgoing; Tue, 15 Sep 1998 15:08:09 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA19571; Tue, 15 Sep 1998 15:07:53 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA02379; Tue, 15 Sep 1998 15:07:36 -0700 (PDT) Date: Tue, 15 Sep 1998 15:07:36 -0700 (PDT) Message-Id: <199809152207.PAA02379@freefall.freebsd.org> To: seiken@nbs.co.jp, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, kuriyama@FreeBSD.ORG Subject: Re: ports/7640 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Japanese kanji code converter State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Tue Sep 15 15:07:12 PDT 1998 State-Changed-Why: Committed. Thanks! Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: kuriyama Responsible-Changed-When: Tue Sep 15 15:07:12 PDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 15:14:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA21764 for freebsd-ports-outgoing; Tue, 15 Sep 1998 15:14:50 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from zippy.dyn.ml.org (sf3-24.ppp.wenet.net [206.15.84.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA21410; Tue, 15 Sep 1998 15:14:02 -0700 (PDT) (envelope-from garbanzo@hooked.net) Received: from localhost (garbanzo@localhost) by zippy.dyn.ml.org (8.9.1/8.8.8) with SMTP id PAA01506; Tue, 15 Sep 1998 15:15:32 -0700 (PDT) (envelope-from garbanzo@hooked.net) X-Authentication-Warning: zippy.dyn.ml.org: garbanzo owned process doing -bs Date: Tue, 15 Sep 1998 15:15:32 -0700 (PDT) From: Alex X-Sender: garbanzo@zippy.dyn.ml.org To: Satoshi Asami cc: gene@nttlabs.com, ports@FreeBSD.ORG, committers@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: ELF transition for ports In-Reply-To: <199809152103.OAA01755@silvia.hip.berkeley.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 15 Sep 1998, Satoshi Asami wrote: > * Does this mean that from now on the version number of such Elf shared > * libraries will be always be higher by one? For example, if the original > * library version goes from 6.4 to 7.0 -- say it's X11R7 :-) -- then will > * the FreeBSD Elf version be 8 since we are using 7 for 6.4? > > It might or might not. Actually, the same thing will happen if the > original version goes from 6.4 to 6.5, ours will be at version 8. That seems _really_ bogus. Pray tell, what's wrong with using two version numbers and ELF libs? If the lib is compiled with -Wl,-soname -Wl,libfoo.so.x and installed like libfoo.so -> libfoo.so.x libfoo.so.x -> libfoo.so.x.y This would preserve the a.out functionality no? And then perhaps, ldconfig could scan each directory, look for an ELF or a.out header, and otherwise throw the library out... thus preventing the ability to load junk files into the cache.. hmm. - alex | "Contrary to popular belief, penguins are not the salvation of modern | | technology. Neither do they throw parties for the urban proletariat." | | Powered by FreeBSD http://www.freebsd.org/ | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 15:40:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA27188 for freebsd-ports-outgoing; Tue, 15 Sep 1998 15:40:30 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA27165 for ; Tue, 15 Sep 1998 15:40:19 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA04063; Tue, 15 Sep 1998 15:40:02 -0700 (PDT) Received: from rr.iij4u.or.jp (h035.p060.iij4u.or.jp [210.130.60.35]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id PAA26680 for ; Tue, 15 Sep 1998 15:37:49 -0700 (PDT) (envelope-from sada@rr.iij4u.or.jp) Received: (qmail 7257 invoked by uid 1000); 16 Sep 1998 07:37:11 +0900 Message-Id: <19980915223711.7256.qmail@sada.e-mail.ne.jp> Date: 16 Sep 1998 07:37:11 +0900 From: sada@e-mail.ne.jp Reply-To: sada@e-mail.ne.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7940: make depended packages and index on demand Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7940 >Category: ports >Synopsis: make depend packages and index on demand >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 15 15:40:00 PDT 1998 >Last-Modified: >Originator: SADA Kenji >Organization: Nagoya.Aichi.Japan >Release: FreeBSD 2.2.7-RELEASE i386 >Environment: FreeBSD 2.2.7-RELEASE i386 bsd.port.mk: 1.287 1998/09/10 >Description: Two option flags which would be useful to make your own package-collection. * BUILD_PACKAGE_AT_INSTALL_TIME If defined, `make package' would be automaticaly executed whenever `make install' is done. You can build all depended packages at once. * REGISTER_PACKAGE_INDEX_AT_INSTALL_TIME If defined, build packages would be registered on the file `${PACKAGES}/INDEX'. >How-To-Repeat: >Fix: --- bsd.port.mk.orig Wed Sep 16 04:55:34 1998 +++ bsd.port.mk Wed Sep 16 05:04:25 1998 @@ -1489,6 +1489,9 @@ ${INSTALL_COOKIE}: @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} build @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-install +.if defined(BUILD_PACKAGE_AT_INSTALL_TIME) + @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-package +.endif ${PACKAGE_COOKIE}: @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} install @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-package @@ -1507,6 +1510,12 @@ real-install: _PORT_USE @${ECHO_MSG} "===> Installing for ${PKGNAME}" real-package: _PORT_USE +.if defined(REGISTER_PACKAGE_INDEX_AT_INSTALL_TIME) + @${MAKE} ${.MAKEFLAGS} describe \ + | ${CAT} - ${PACKAGES}/INDEX \ + | sort -t '|' +1|uniq >${PACKAGES}/INDEX.tmp + ${MV} ${PACKAGES}/INDEX.tmp ${PACKAGES}/INDEX +.endif # Empty pre-* and post-* targets, note we can't use .if !target() # in the _PORT_USE macro >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 16:48:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA08544 for freebsd-ports-outgoing; Tue, 15 Sep 1998 16:48:36 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dt053nb4.san.rr.com (dt053nb4.san.rr.com [204.210.34.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA08405; Tue, 15 Sep 1998 16:47:47 -0700 (PDT) (envelope-from Studded@san.rr.com) Received: from san.rr.com (Studded@localhost [127.0.0.1]) by dt053nb4.san.rr.com (8.8.8/8.8.8) with ESMTP id QAA26833; Tue, 15 Sep 1998 16:47:22 -0700 (PDT) (envelope-from Studded@san.rr.com) Message-ID: <35FEFC89.DB12AD0E@san.rr.com> Date: Tue, 15 Sep 1998 16:47:21 -0700 From: Studded Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.06 [en] (X11; I; FreeBSD 2.2.7-STABLE-0914 i386) MIME-Version: 1.0 To: Alex CC: Satoshi Asami , ports@FreeBSD.ORG Subject: Re: ELF transition for ports References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Alex wrote: > > On Tue, 15 Sep 1998, Satoshi Asami wrote: > > > * Does this mean that from now on the version number of such Elf shared > > * libraries will be always be higher by one? For example, if the original > > * library version goes from 6.4 to 7.0 -- say it's X11R7 :-) -- then will > > * the FreeBSD Elf version be 8 since we are using 7 for 6.4? > > > > It might or might not. Actually, the same thing will happen if the > > original version goes from 6.4 to 6.5, ours will be at version 8. > > That seems _really_ bogus. Pray tell, what's wrong with using two version > numbers and ELF libs? > > If the lib is compiled with -Wl,-soname -Wl,libfoo.so.x > > and installed like > > libfoo.so -> libfoo.so.x > libfoo.so.x -> libfoo.so.x.y > > This would preserve the a.out functionality no? It seems to me that renumbering the libraries is a recipe for disaster. I much prefer a smarter ldconfig, and a better tagging system that doesn't involve changing the numbering of the libraries from a source outside the project. Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 17:01:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA10998 for freebsd-ports-outgoing; Tue, 15 Sep 1998 17:01:31 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA10798 for ; Tue, 15 Sep 1998 17:00:27 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA06950; Tue, 15 Sep 1998 17:00:02 -0700 (PDT) Received: from universe.serc.rmit.edu.au (universe.serc.rmit.edu.au [131.170.42.12]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA10558 for ; Tue, 15 Sep 1998 16:59:15 -0700 (PDT) (envelope-from maurice@planetoid.serc.rmit.edu.au) Received: from planetoid.serc.rmit.edu.au (planetoid.serc.rmit.edu.au [131.170.42.70]) by universe.serc.rmit.edu.au (8.8.5/8.8.5) with ESMTP id JAA14753 for ; Wed, 16 Sep 1998 09:58:48 +1000 (EST) Received: (from root@localhost) by planetoid.serc.rmit.edu.au (8.8.7/8.8.5) id JAA16784; Wed, 16 Sep 1998 09:58:47 +1000 (EST) Message-Id: <199809152358.JAA16784@planetoid.serc.rmit.edu.au> Date: Wed, 16 Sep 1998 09:58:47 +1000 (EST) From: Maurice Castro Reply-To: maurice@serc.rmit.edu.au To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7942: New Port: Radiusclient Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7942 >Category: ports >Synopsis: New Port: Radiusclient >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 15 17:00:02 PDT 1998 >Last-Modified: >Originator: Maurice Castro >Organization: Software Engineering Research Centre >Release: FreeBSD 2.2.2-RELEASE i386 >Environment: All versions >Description: Port of radiusclient library and some support programs >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # radiusclient # radiusclient/Makefile # radiusclient/pkg # radiusclient/pkg/PLIST # radiusclient/pkg/COMMENT # radiusclient/pkg/DESCR # radiusclient/files # radiusclient/files/md5 # echo c - radiusclient mkdir -p radiusclient > /dev/null 2>&1 echo x - radiusclient/Makefile sed 's/^X//' >radiusclient/Makefile << 'END-of-radiusclient/Makefile' X# New ports collection makefile for: radiusclient X# Version required: 0.3-alpha-4 X# Date created: Tue Sep 15 20:15:07 EST 1998 X# Whom: maurice X# X# $Id$ X# X XDISTNAME= radiusclient-0.3-alpha-4 XCATEGORIES= net XMASTER_SITES= ftp://ftp.cityline.net/pub/radiusclient/ X XMAINTAINER= maurice@serc.rmit.edu.au X XUSE_GMAKE= yes XGNU_CONFIGURE= yes XCONFIGURE_ARGS= --enable-shared=NO X Xpost-configure: X (cd ${WRKSRC}; ./ltconfig --disable-shared ltmain.sh) X X.include END-of-radiusclient/Makefile echo c - radiusclient/pkg mkdir -p radiusclient/pkg > /dev/null 2>&1 echo x - radiusclient/pkg/PLIST sed 's/^X//' >radiusclient/pkg/PLIST << 'END-of-radiusclient/pkg/PLIST' X@exec mkdir %D/etc/radiusclient Xbin/radlogin Xbin/radstatus Xbin/radacct Xbin/radexample Xetc/radiusclient/issue Xetc/radiusclient/port-id-map Xetc/radiusclient/radiusclient.conf Xetc/radiusclient/dictionary Xetc/radiusclient/dictionary.ascend Xetc/radiusclient/dictionary.compat Xetc/radiusclient/dictionary.merit Xetc/radiusclient/servers Xinclude/radiusclient.h Xlib/libradiusclient.la Xlib/libradiusclient.a X@dirrm etc/radiusclient END-of-radiusclient/pkg/PLIST echo x - radiusclient/pkg/COMMENT sed 's/^X//' >radiusclient/pkg/COMMENT << 'END-of-radiusclient/pkg/COMMENT' XClient library and basic utilities for Radius authenticated login END-of-radiusclient/pkg/COMMENT echo x - radiusclient/pkg/DESCR sed 's/^X//' >radiusclient/pkg/DESCR << 'END-of-radiusclient/pkg/DESCR' XThis is a port of an alpha level client library and basic utilities Xfor performing logins authenticated by a Radiusd server. X XOnly static linking to the library produced is supported. X XDocumentation is scant and is recommended only for expert users. X Xhttp://www.cityline.net/~lf/radius/ X X- Maurice Castro Xmaurice@serc.rmit.edu.au END-of-radiusclient/pkg/DESCR echo c - radiusclient/files mkdir -p radiusclient/files > /dev/null 2>&1 echo x - radiusclient/files/md5 sed 's/^X//' >radiusclient/files/md5 << 'END-of-radiusclient/files/md5' XMD5 (radiusclient-0.3-alpha-4.tar.gz) = 598f9e74b076fc9e305e28c9e96ea3c5 END-of-radiusclient/files/md5 exit >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 17:16:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA14115 for freebsd-ports-outgoing; Tue, 15 Sep 1998 17:16:39 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dt053nb4.san.rr.com (dt053nb4.san.rr.com [204.210.34.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA13851 for ; Tue, 15 Sep 1998 17:15:05 -0700 (PDT) (envelope-from dougdougdougdoug@dt053nb4.san.rr.com) From: dougdougdougdoug@dt053nb4.san.rr.com Received: from localhost (dougdougdougdoug@localhost) by dt053nb4.san.rr.com (8.8.8/8.8.8) with ESMTP id RAA26937; Tue, 15 Sep 1998 17:12:45 -0700 (PDT) (envelope-from dougdougdougdoug@dt053nb4.san.rr.com) Date: Tue, 15 Sep 1998 17:12:45 -0700 (PDT) To: Adrian Penisoara cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/7938: Pine Port Upgrade: from 4.02A to 4.03 In-Reply-To: <199809152048.XAA18184@ady.warpnet.ro> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 15 Sep 1998, Adrian Penisoara wrote: > > >Number: 7938 > >Category: ports > >Synopsis: Pine Port Upgrade: from 4.02A to 4.03 I think that you've addressed most of the issues I raised previously, however before my PR is closed there are one or two nits I'd like to pick with your latest port. Your solution of using sed instead of individual patches is a good one, I considered doing it that way myself but wasn't sure if it would be accepted or not. Looking at it now, it's a better solution than adding a lot of one or two line patch files. However, there are a couple files that you missed. Please add ${WRKSRC}/build ${WRKSRC}/doc/mime.types ${WRKSRC}/pine/init.c to your list of files for the second sed command. Also, in the sources there are two files that refer to /usr/local/pine.conf, pine4.03/doc/tech-notes/background.html and pine4.03/doc/tech-notes.txt. Personally I consider this a "bug" in the source. If you are in contact with the developers you might want to mention this. It would be nice if you included something to the effect of diff -ur pine4/work/pine4.03/doc/pine.1 pine4-old/work/pine4.03/doc/pine.1 --- pine4/work/pine4.03/doc/pine.1 Tue Sep 15 15:57:46 1998 +++ pine4-old/work/pine4.03/doc/pine.1 Tue Sep 15 15:50:57 1998 @@ -271,8 +271,6 @@ .br /etc/mime.types System-wide file ext. to MIME type mapping .br -/usr/local/etc/mime.types Optional system-wide file ext. to MIME type mapping -.br /usr/local/etc/pine.info Local pointer to system administrator. .br /usr/local/etc/pine.conf System-wide configuration file. so that the man page reflects the "proper" location for the mime.types file since the source is now patched to look there. Finally, this part of the post-install target ${PREFIX}/bin/pine -P ${PREFIX}/etc/pine.conf -conf >${WRKSRC}/pine.conf ${INSTALL_DATA} ${WRKSRC}/pine.conf ${PREFIX}/etc/pine.conf indicates to me that you are trying to draw in the existing /usr/local/etc/pine.conf file and combine that with the new conf file. My testing indicates that this is not the case, and will result in overwriting the user's pine.conf file. I still think that my solution to this problem is better, but I'm biased. :) I'm glad to see that you've taken my concerns to heart. I don't want this to appear to be an adversarial undertaking, I think we both have the same goal in mind, to make the best port possible. Thanks, Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 17:25:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA16335 for freebsd-ports-outgoing; Tue, 15 Sep 1998 17:25:32 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA15957; Tue, 15 Sep 1998 17:23:13 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA07803; Tue, 15 Sep 1998 17:22:44 -0700 (PDT) Date: Tue, 15 Sep 1998 17:22:44 -0700 (PDT) Message-Id: <199809160022.RAA07803@freefall.freebsd.org> To: Studded@dal.net, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7879 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update pine4 port to 4.03, and other items State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Tue Sep 15 17:22:10 PDT 1998 State-Changed-Why: Superceded by PR #7938. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 17:45:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA21424 for freebsd-ports-outgoing; Tue, 15 Sep 1998 17:45:56 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA21212 for ; Tue, 15 Sep 1998 17:44:46 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-24.ix.netcom.com [209.109.234.24]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id RAA05040; Tue, 15 Sep 1998 17:44:12 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id RAA02262; Tue, 15 Sep 1998 17:44:09 -0700 (PDT) Date: Tue, 15 Sep 1998 17:44:09 -0700 (PDT) Message-Id: <199809160044.RAA02262@silvia.hip.berkeley.edu> To: Studded@san.rr.com CC: garbanzo@hooked.net, ports@FreeBSD.ORG In-reply-to: <35FEFC89.DB12AD0E@san.rr.com> (message from Studded on Tue, 15 Sep 1998 16:47:21 -0700) Subject: Re: ELF transition for ports From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Listen guys, ELF is here to stay in the current form and I'm not going to ask the ELF team to change it any more to make our lives easier. (In fact, you are making our lives harder by bringing up the same subject over and over again. :<) * From: Studded * Alex wrote: * > That seems _really_ bogus. Pray tell, what's wrong with using two version * > numbers and ELF libs? Because ELF does not have two version numbers. Ask binutils. * It seems to me that renumbering the libraries is a recipe for disaster. No. It's the linking library versions with software release numbers is the recipe for disaster. We've had a lot of experiences with this. ELF just makes it a little more visible because minor numbers don't exist anymore, but it's still the essentially same problem. Look at the handbook and CVS log of shared library numbering policy, and you'll see that now's not the time to bring up the subject again. * I much prefer a smarter ldconfig, and a better tagging system that * doesn't involve changing the numbering of the libraries from a source * outside the project. That has nothing to do with ELF. Shared library versioning is often fundamentally flawed coming out of the developer, it's not our fault that we have to fix it. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 18:02:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA25895 for freebsd-ports-outgoing; Tue, 15 Sep 1998 18:02:49 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from cimlogic.com.au (cimlog.lnk.telstra.net [139.130.51.31]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA25861; Tue, 15 Sep 1998 18:02:37 -0700 (PDT) (envelope-from jb@cimlogic.com.au) Received: (from jb@localhost) by cimlogic.com.au (8.9.1/8.9.1) id LAA02624; Wed, 16 Sep 1998 11:05:58 +1000 (EST) (envelope-from jb) From: John Birrell Message-Id: <199809160105.LAA02624@cimlogic.com.au> Subject: Re: ELF transition for ports In-Reply-To: <35FEFC89.DB12AD0E@san.rr.com> from Studded at "Sep 15, 98 04:47:21 pm" To: Studded@san.rr.com (Studded) Date: Wed, 16 Sep 1998 11:05:58 +1000 (EST) Cc: garbanzo@hooked.net, asami@FreeBSD.ORG, ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL40 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Studded wrote: > > libfoo.so -> libfoo.so.x > > libfoo.so.x -> libfoo.so.x.y > > > > This would preserve the a.out functionality no? > > It seems to me that renumbering the libraries is a recipe for disaster. > I much prefer a smarter ldconfig, and a better tagging system that > doesn't involve changing the numbering of the libraries from a source > outside the project. The point here is that source outside the project that builds as ELF uses the same tools that we do. This means that Linux/ELF and NetBSD/ELF only have a single version number too. We don't need to invent a new wheel here. Just get used to it! -- John Birrell - jb@cimlogic.com.au; jb@freebsd.org http://www.cimlogic.com.au/ CIMlogic Pty Ltd, GPO Box 117A, Melbourne Vic 3001, Australia +61 418 353 137 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 20:16:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA17458 for freebsd-ports-outgoing; Tue, 15 Sep 1998 20:16:07 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA17453 for ; Tue, 15 Sep 1998 20:16:04 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id WAA25341; Tue, 15 Sep 1998 22:14:52 -0500 (CDT) Date: Tue, 15 Sep 1998 22:14:52 -0500 (CDT) From: Steve Price To: John Birrell cc: ports@FreeBSD.ORG Subject: Re: ELF transition for ports In-Reply-To: <199809160105.LAA02624@cimlogic.com.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 16 Sep 1998, John Birrell wrote: # The point here is that source outside the project that builds as ELF # uses the same tools that we do. This means that Linux/ELF and NetBSD/ELF # only have a single version number too. We don't need to invent a new wheel # here. Just get used to it! Ah yes, but looking at the X config files here's what I see for Linux/ELF @SONAME=`echo $@ | sed 's/\.[^\.]*$$//'`; set -x; \ (cd down; $(CC) -o up/$@~ $(SHLIBLDFLAGS) -Wl,-soname,$$SONAME \ solist $(REQUIREDLIBS) BaseShLibReqs); \ $(RM) $$SONAME; $(LN) $@ $$SONAME; \ LinkBuildSonameLibrary($$SONAME) So it appears that they have taken a similar approach to the one we have adopted for our system libraries; lop off the minor number when building the library, installing it as libfoo.so.maj.min, and then creating the symlink from there. That's two symlinks and one lib. Right or wrong it is different. I don't know how NetBSD is doing it since they are using the same bsdLib.rules file that we are and without some patching it ain't up to the task. :) Steve # -- # John Birrell - jb@cimlogic.com.au; jb@freebsd.org http://www.cimlogic.com.au/ # CIMlogic Pty Ltd, GPO Box 117A, Melbourne Vic 3001, Australia +61 418 353 137 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 21:21:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA25836 for freebsd-ports-outgoing; Tue, 15 Sep 1998 21:21:05 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from adelphi.physics.adelaide.edu.au (adelphi.physics.adelaide.edu.au [129.127.36.247]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA25819; Tue, 15 Sep 1998 21:20:56 -0700 (PDT) (envelope-from kkennawa@physics.adelaide.edu.au) Received: from mercury (mercury [129.127.36.44]) by adelphi.physics.adelaide.edu.au (8.8.8/8.8.8/UofA-1.5) with SMTP id NAA21472; Wed, 16 Sep 1998 13:50:35 +0930 (CST) Received: by mercury; (5.65v3.2/1.1.8.2/27Nov97-0404PM) id AA05476; Wed, 16 Sep 1998 13:50:35 +0930 Date: Wed, 16 Sep 1998 13:50:34 +0930 (CST) From: Kris Kennaway X-Sender: kkennawa@mercury To: Satoshi Asami Cc: ports@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: ELF transition for ports In-Reply-To: <199809152103.OAA01755@silvia.hip.berkeley.edu> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 15 Sep 1998, Satoshi Asami wrote: > * Does this mean that from now on the version number of such Elf shared > * libraries will be always be higher by one? For example, if the original > * library version goes from 6.4 to 7.0 -- say it's X11R7 :-) -- then will > * the FreeBSD Elf version be 8 since we are using 7 for 6.4? > > It might or might not. Actually, the same thing will happen if the > original version goes from 6.4 to 6.5, ours will be at version 8. What is wrong with doing as some oports do when they natively detect ELF, namely: lrwxr-xr-x 1 root wheel 13 Sep 16 10:56 libICE.so@ -> libICE.so.6.3 lrwxr-xr-x 1 root wheel 13 Sep 16 10:56 libICE.so.6@ -> libICE.so.6.3 -rwxr-xr-x 1 root wheel 79424 Sep 16 10:56 libICE.so.6.3* It worries me that if there is a rapidly-changing port somewhere which likes to bump its' minor version number, that before long we'll find ourselves using libfoo.so.28 for libfoo.so.1.27. Is there something I've missed about why the above cannot work? Kris > Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 21:57:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA00231 for freebsd-ports-outgoing; Tue, 15 Sep 1998 21:57:52 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ns.mt.sri.com (sri-gw.MT.net [206.127.105.141]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA00223 for ; Tue, 15 Sep 1998 21:57:49 -0700 (PDT) (envelope-from nate@mt.sri.com) Received: from mt.sri.com (rocky.mt.sri.com [206.127.76.100]) by ns.mt.sri.com (8.8.8/8.8.8) with SMTP id WAA00849; Tue, 15 Sep 1998 22:57:13 -0600 (MDT) (envelope-from nate@rocky.mt.sri.com) Received: by mt.sri.com (SMI-8.6/SMI-SVR4) id WAA09306; Tue, 15 Sep 1998 22:57:11 -0600 Date: Tue, 15 Sep 1998 22:57:11 -0600 Message-Id: <199809160457.WAA09306@mt.sri.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: freebsd-ports@FreeBSD.ORG CC: rse@engelschall.com Subject: Apache13-modssl port failures X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dies at startup time with something to the effect of: Missing reference libproxy.so(_SSLv23_client_method()) or somesuch. I'm sorry I don't have a better error message, but I was forced to re-install the stock Apache13 port in the interim. Does anyone know what's going on? The method in question is defined in /usr/local/lib/libssl.a, but is used in modules/proxy/proxy_util.c. I tried statically linking in /usr/local/lib/libssl.a, but it didn't seem to want to bring in the necessary .o's from the static library. (I'm not sure if this would have worked in any case, since the object files were not compiled PIC in libssl.a...) Any ideas on how to get past this? Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 22:58:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA06954 for freebsd-ports-outgoing; Tue, 15 Sep 1998 22:58:33 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from Chuska.ConSys.COM (Chuska.ConSys.COM [209.141.107.5]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA06946 for ; Tue, 15 Sep 1998 22:58:32 -0700 (PDT) (envelope-from rcarter@psf.Pinyon.ORG) Received: from psf.Pinyon.ORG (ip-17-098.prc.primenet.com [207.218.17.98]) by Chuska.ConSys.COM (8.9.1/8.9.1) with ESMTP id WAA22310 for ; Tue, 15 Sep 1998 22:58:05 -0700 (MST) Received: (from rcarter@localhost) by psf.Pinyon.ORG (8.9.1/8.8.7) id WAA28247 for freebsd-ports@freebsd.org; Tue, 15 Sep 1998 22:55:22 -0700 (MST) Date: Tue, 15 Sep 1998 22:55:22 -0700 (MST) From: "Russell L. Carter" Message-Id: <199809160555.WAA28247@psf.Pinyon.ORG> To: freebsd-ports@FreeBSD.ORG Subject: p5 post P-Day put spots... Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ok, I've been sorta following the avalanche of commits by Satoshi and others but still I am not clear on where stuff should go. I would like to fix the p5-DBI dependency tree but the breakage is arbitrary because the location of .pm's is not specified; where should they go? Point me to the message that laid this all out...? Thanks, Russell To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 23:14:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA09432 for freebsd-ports-outgoing; Tue, 15 Sep 1998 23:14:41 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA09426 for ; Tue, 15 Sep 1998 23:14:39 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-24.ix.netcom.com [209.109.234.24]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id XAA05341; Tue, 15 Sep 1998 23:14:19 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id XAA03058; Tue, 15 Sep 1998 23:14:16 -0700 (PDT) Date: Tue, 15 Sep 1998 23:14:16 -0700 (PDT) Message-Id: <199809160614.XAA03058@silvia.hip.berkeley.edu> To: rcarter@pinyon.org CC: freebsd-ports@FreeBSD.ORG In-reply-to: <199809160555.WAA28247@psf.Pinyon.ORG> (rcarter@pinyon.org) Subject: Re: p5 post P-Day put spots... From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Ok, I've been sorta following the avalanche of commits by Satoshi * and others but still I am not clear on where stuff should go. * I would like to fix the p5-DBI dependency tree but the breakage * is arbitrary because the location of .pm's is not specified; * where should they go? Point me to the message that laid this * all out...? I don't think there are any messages that "laid this all out". Just install the port, and see where the stuff goes. Then fix PLIST and Makefiles. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 23:28:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA11078 for freebsd-ports-outgoing; Tue, 15 Sep 1998 23:28:10 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA11026; Tue, 15 Sep 1998 23:28:03 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-24.ix.netcom.com [209.109.234.24]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id XAA05361; Tue, 15 Sep 1998 23:27:42 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id XAA03085; Tue, 15 Sep 1998 23:27:39 -0700 (PDT) Date: Tue, 15 Sep 1998 23:27:39 -0700 (PDT) Message-Id: <199809160627.XAA03085@silvia.hip.berkeley.edu> To: kkennawa@physics.adelaide.edu.au CC: ports@FreeBSD.ORG, current@FreeBSD.ORG In-reply-to: (message from Kris Kennaway on Wed, 16 Sep 1998 13:50:34 +0930 (CST)) Subject: Re: ELF transition for ports From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * What is wrong with doing as some oports do when they natively detect ELF, * namely: * * lrwxr-xr-x 1 root wheel 13 Sep 16 10:56 libICE.so@ -> libICE.so.6.3 * lrwxr-xr-x 1 root wheel 13 Sep 16 10:56 libICE.so.6@ -> libICE.so.6.3 * -rwxr-xr-x 1 root wheel 79424 Sep 16 10:56 libICE.so.6.3* The minor number is useless, since it is ignored by ELF. * It worries me that if there is a rapidly-changing port somewhere which * likes to bump its' minor version number, that before long we'll find * ourselves using libfoo.so.28 for libfoo.so.1.27. Is there something I've * missed about why the above cannot work? Yes. Say libfoo.so.1 is a link to libfoo.so.1.26. If libfoo.so.1.27 is really an upwards compatible (but not downwards compatible) upgrade of libfoo.so.1.26, then the version number *should* be bumped. And since ELF only sees "libfoo.so.1", the only way to bump it is "libfoo.so.2". Otherwise, if someone installs a binary compiled against libfoo.so.1.27 on a system with libfoo.so.1.26, there will be no error detection until the binary crashes during runtime. (Which is exactly the situation we were trying to avoid by using shared library version numbers in the first place.) People, please give us a break here. We've been working with shared libraries for years now, and know exactly what we're doing. We can't get anything done if we have to keep explaining this to everyone! Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 23:37:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA12478 for freebsd-ports-outgoing; Tue, 15 Sep 1998 23:37:50 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dt053nb4.san.rr.com (dt053nb4.san.rr.com [204.210.34.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA12468; Tue, 15 Sep 1998 23:37:48 -0700 (PDT) (envelope-from Studded@dal.net) Received: from dal.net (Studded@localhost [127.0.0.1]) by dt053nb4.san.rr.com (8.8.8/8.8.8) with ESMTP id XAA17757; Tue, 15 Sep 1998 23:37:28 -0700 (PDT) (envelope-from Studded@dal.net) Message-ID: <35FF5CA8.322A8AB1@dal.net> Date: Tue, 15 Sep 1998 23:37:28 -0700 From: Studded Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.06 [en] (X11; I; FreeBSD 2.2.7-STABLE-0914 i386) MIME-Version: 1.0 To: Satoshi Asami CC: The fine people at Subject: Re: cvs commit: ports/net/sirc References: <199809152132.OAA00463@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="------------F1422EC8A1A84D7E5C2F0523" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------F1422EC8A1A84D7E5C2F0523 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Satoshi Asami wrote: > > asami 1998/09/15 14:32:00 PDT > > Modified files: > net/sirc/scripts sirc-proto > Log: > Use ${PERL5} wherever appropriate. Largely untested; hope my eyeball > checks haven't missed anything. I realize that you have a lot going on with both the elf and perl conversions happening at once. I didn't mean for my comments about the elf libraries to be inflammatory, but reconsidering what may have been a bad choice at this stage in the process is better than regretting it much later IMO. INRE the change you made to my port, it won't work, and also brings up an interesting problem. The bsd.port.mk file defines PERL5 like this. .if exists(/usr/bin/perl5) # 3.0-current after perl5 import PERL5= /usr/bin/perl5 .else PERL5= ${LOCALBASE}/bin/perl${PERL_VERSION} .if defined(USE_PERL5) BUILD_DEPENDS+= perl${PERL_VERSION}:${PORTSDIR}/lang/perl5 RUN_DEPENDS+= perl${PERL_VERSION}:${PORTSDIR}/lang/perl5 .endif .endif The problem with this is that any port on a -Stable system that makes use of the PERL5 variable (like you tried to do with mine) will have to be reinstalled every time the perl version is bumped. I'd like to have a variable similar to what I used in my port that points to the 'perl5' link in either /usr/bin or /usr/local/bin (Ok, ${PREFIX}/bin). Something like this would work, other solutions are possible of course. .if exists(/usr/bin/perl5) # 3.0-current after perl5 import PERL5= /usr/bin/perl5 SHORT_PERL5= /usr/bin/perl5 .else PERL5= ${LOCALBASE}/bin/perl${PERL_VERSION} SHORT_PERL5= ${PREFIX}/bin/perl5 .if defined(USE_PERL5) BUILD_DEPENDS+= perl${PERL_VERSION}:${PORTSDIR}/lang/perl5 RUN_DEPENDS+= perl${PERL_VERSION}:${PORTSDIR}/lang/perl5 .endif .endif Meanwhile, I'd appreciate it if someone would apply the following patch to my port. It passes portlint, etc. Thanks, Doug --------------F1422EC8A1A84D7E5C2F0523 Content-Type: text/plain; charset=us-ascii; name="sirc.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="sirc.diff" diff -ur sirc-old/Makefile sirc/Makefile --- sirc-old/Makefile Thu May 7 14:58:53 1998 +++ sirc/Makefile Tue Sep 15 23:20:10 1998 @@ -22,7 +22,7 @@ USE_PERL5= yes -post-extract: +pre-extract: .if !defined(SOCKS_SERVER) @${ECHO_MSG} '' @${ECHO_MSG} "SOCKS proxy support is available with this client." @@ -33,18 +33,29 @@ @${ECHO_MSG} '' .endif +post-extract: +.if exists(/usr/bin/perl5) +SHORT_PERL5=/usr/bin/perl5 +.else +SHORT_PERL5=${PREFIX}/bin/perl5 +.endif + pre-patch: @${CP} ${SCRIPTDIR}/sirc-proto ${WRKSRC} do-patch: .if defined(SOCKS_SERVER) @${PATCH} ${PATCH_DIST_ARGS} < ${PATCHDIR}/patch-aa - @${SED} 's%SOCKS_SERVER\=%SOCKS_SERVER\=${SOCKS_SERVER}%' \ - ${WRKSRC}/sirc-proto > ${WRKSRC}/sirc-socks - @${SED} 's%PREFIX\=%PREFIX\=${PREFIX}%' ${WRKSRC}/sirc-socks \ + @${SED} 's:SOCKS_SERVER\=:SOCKS_SERVER\=${SOCKS_SERVER}:' \ + ${WRKSRC}/sirc-proto > ${WRKSRC}/sirc-proto.1 + @${SED} 's:PREFIX.SED:${PREFIX}:' ${WRKSRC}/sirc-proto.1 \ + > ${WRKSRC}/sirc-proto.2 + @${SED} 's:PERL5.SED:${SHORT_PERL5}:' ${WRKSRC}/sirc-proto.2 \ > ${WRKSRC}/sirc .else - @${SED} 's%PREFIX\=%PREFIX\=${PREFIX}%' ${WRKSRC}/sirc-proto \ + @${SED} 's:PREFIX.SED:${PREFIX}:' ${WRKSRC}/sirc-proto \ + > ${WRKSRC}/sirc-proto.1 + @${SED} 's:PERL5.SED:${SHORT_PERL5}:' ${WRKSRC}/sirc-proto.1 \ > ${WRKSRC}/sirc .endif diff -ur sirc-old/scripts/sirc-proto sirc/scripts/sirc-proto --- sirc-old/scripts/sirc-proto Tue Sep 15 14:31:51 1998 +++ sirc/scripts/sirc-proto Tue Sep 15 20:57:34 1998 @@ -1,7 +1,6 @@ #!/bin/sh -PREFIX= -SIRCLIB=${PREFIX}/libexec/sirc ; export SIRCLIB +SIRCLIB=PREFIX.SED/libexec/sirc ; export SIRCLIB if test -z "$SIRCSERVER" && test -z "$IRCSERVER" then @@ -11,7 +10,7 @@ case "$1" in -d) shift - exec ${PERL5} ${SIRCLIB}/dsirc "$@" + exec PERL5.SED ${SIRCLIB}/dsirc "$@" ;; - *) eval exec ${PREFIX}/bin/ssfe $SSFE ${PERL5} ${SIRCLIB}/dsirc \"\$@\" + *) eval exec PREFIX.SED/bin/ssfe $SSFE PERL5.SED ${SIRCLIB}/dsirc \"\$@\" esac --------------F1422EC8A1A84D7E5C2F0523-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Sep 15 23:54:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA14667 for freebsd-ports-outgoing; Tue, 15 Sep 1998 23:54:14 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA14537 for ; Tue, 15 Sep 1998 23:54:02 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grondar.za (IDENT:uMtRBP6YTQ2PvgPXSAfqy0xDwmr4H4by@localhost [127.0.0.1]) by gratis.grondar.za (8.9.1/8.9.1) with ESMTP id IAA17933; Wed, 16 Sep 1998 08:53:22 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199809160653.IAA17933@gratis.grondar.za> To: "Russell L. Carter" cc: freebsd-ports@FreeBSD.ORG Subject: Re: p5 post P-Day put spots... In-Reply-To: Your message of " Tue, 15 Sep 1998 22:55:22 MST." <199809160555.WAA28247@psf.Pinyon.ORG> References: <199809160555.WAA28247@psf.Pinyon.ORG> Date: Wed, 16 Sep 1998 08:53:22 +0200 From: Mark Murray Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Russell L. Carter" wrote: > Ok, I've been sorta following the avalanche of commits by Satoshi > and others but still I am not clear on where stuff should go. > I would like to fix the p5-DBI dependency tree but the breakage > is arbitrary because the location of .pm's is not specified; > where should they go? Point me to the message that laid this > all out...? Perl makes this decision. in the case of ports, this has not changed. Look at src/gnu/usr.bin/perl/libperl/config.sh. M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 00:00:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA16064 for freebsd-ports-outgoing; Wed, 16 Sep 1998 00:00:20 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA16044 for ; Wed, 16 Sep 1998 00:00:17 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-24.ix.netcom.com [209.109.234.24]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id XAA05400; Tue, 15 Sep 1998 23:59:57 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id XAA03205; Tue, 15 Sep 1998 23:59:48 -0700 (PDT) Date: Tue, 15 Sep 1998 23:59:48 -0700 (PDT) Message-Id: <199809160659.XAA03205@silvia.hip.berkeley.edu> To: Studded@dal.net CC: FreeBSD-Ports@FreeBSD.ORG In-reply-to: <35FF5CA8.322A8AB1@dal.net> (message from Studded on Tue, 15 Sep 1998 23:37:28 -0700) Subject: Re: cvs commit: ports/net/sirc From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * I realize that you have a lot going on with both the elf and perl * conversions happening at once. I didn't mean for my comments about the * elf libraries to be inflammatory, but reconsidering what may have been a * bad choice at this stage in the process is better than regretting it * much later IMO. The problem is that many people (including authors of software we're porting) have no idea how the shared library versions work. :< * The problem with this is that any port on a -Stable system that makes * use of the PERL5 variable (like you tried to do with mine) will have to * be reinstalled every time the perl version is bumped. You're right. I shouldn't have changed yours, since yours just uses perl as an interpreter and doesn't install anything to version-specific directories. But in general, having to reinstall stuff is just the way of life for the new perl5 (not that I like it, mind you). They have incompatible binaries between releases, and manpages are installed in micro-version-specific directories, etc. * I'd like to have a * variable similar to what I used in my port that points to the 'perl5' * link in either /usr/bin or /usr/local/bin (Ok, ${PREFIX}/bin). Something * like this would work, other solutions are possible of course. Hmm. I don't think it is necessary to have it in bsd.port.mk given the nature of the problem (it doesn't apply to most ports). If someone can prove me wrong, I can put it in, of course. * Meanwhile, I'd appreciate it if someone would apply the following patch * to my port. It passes portlint, etc. * -post-extract: <==== * +pre-extract: <==== * +post-extract: <==== * +.if exists(/usr/bin/perl5) * +SHORT_PERL5=/usr/bin/perl5 * +.else * +SHORT_PERL5=${PREFIX}/bin/perl5 * +.endif * + You don't need to do this (the lines marked with "<===="). Make variable assignments are not part of the target. I changed that part and committed it. Thanks! Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 02:24:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA08764 for freebsd-ports-outgoing; Wed, 16 Sep 1998 02:24:15 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dt053nb4.san.rr.com (dt053nb4.san.rr.com [204.210.34.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA08662; Wed, 16 Sep 1998 02:24:04 -0700 (PDT) (envelope-from Studded@dal.net) Received: from dal.net (Studded@localhost [127.0.0.1]) by dt053nb4.san.rr.com (8.8.8/8.8.8) with ESMTP id CAA21676; Wed, 16 Sep 1998 02:23:42 -0700 (PDT) (envelope-from Studded@dal.net) Message-ID: <35FF839D.BDD79F42@dal.net> Date: Wed, 16 Sep 1998 02:23:41 -0700 From: Studded Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.06 [en] (X11; I; FreeBSD 2.2.7-STABLE-0914 i386) MIME-Version: 1.0 To: Satoshi Asami CC: FreeBSD-Ports@FreeBSD.ORG Subject: Re: cvs commit: ports/net/sirc References: <199809160659.XAA03205@silvia.hip.berkeley.edu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Satoshi Asami wrote: > * The problem with this is that any port on a -Stable system that makes > * use of the PERL5 variable (like you tried to do with mine) will have to > * be reinstalled every time the perl version is bumped. > > You're right. I shouldn't have changed yours, since yours just uses > perl as an interpreter and doesn't install anything to > version-specific directories. No problem. I was kind of waiting for the dust to settle on how to handle perl5 before I submitted a fix so you would only have to change it once, but now's as good a time as any. :) > * I'd like to have a > * variable similar to what I used in my port that points to the 'perl5' > * link in either /usr/bin or /usr/local/bin (Ok, ${PREFIX}/bin). Something > * like this would work, other solutions are possible of course. > > Hmm. I don't think it is necessary to have it in bsd.port.mk given > the nature of the problem (it doesn't apply to most ports). If > someone can prove me wrong, I can put it in, of course. Ok, no problem. I am working on providing solutions along with problem more often. Whether my solutions (or my problems :) make sense to anyone else is another matter entirely. *Grin* > * Meanwhile, I'd appreciate it if someone would apply the following patch > * to my port. It passes portlint, etc. > > * -post-extract: <==== > * +pre-extract: <==== > > * +post-extract: <==== > * +.if exists(/usr/bin/perl5) > * +SHORT_PERL5=/usr/bin/perl5 > * +.else > * +SHORT_PERL5=${PREFIX}/bin/perl5 > * +.endif > * + > > You don't need to do this (the lines marked with "<===="). Make > variable assignments are not part of the target. Ok, thanks for the tip. I tried it a few different ways, but I think it was the spacing that gummed me up when I tried it the first time. Make still gives me a headache, but it's less severe than it used to be. :) > I changed that part and committed it. Thanks! Thank you for putting in the fix. Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 02:52:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA13815 for freebsd-ports-outgoing; Wed, 16 Sep 1998 02:52:21 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from serv0.ilse.net (serv0.ilse.nl [194.158.182.236]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA13803 for ; Wed, 16 Sep 1998 02:52:15 -0700 (PDT) (envelope-from marcolz@ilse.nl) Received: (from marcolz@localhost) by serv0.ilse.net (8.9.0/8.6.12) id LAA06844 for ports@freebsd.org; Wed, 16 Sep 1998 11:51:54 +0200 (MET DST) Message-ID: <19980916115154.A6771@ilse.nl> Date: Wed, 16 Sep 1998 11:51:54 +0200 From: Marc Olzheim To: ports@FreeBSD.ORG Subject: Error in Makefile of bzip2 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i X-Operating-System: FreeBSD serv0.ilse.net 2.2.6-RELEASE FreeBSD 2.2.6-RELEASE X-URL: http://www.ilse.nl/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, You probably already know it, but there's an error in the Makefile of bzip2 In the line 'MAN1=...' the page bunzip2.1 should be left out when compressing pages. Otherwise bzip2.1 gets compressed and the link bunzip2.1 becomes a dangling link on which gzip stops. Marc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 03:06:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA15948 for freebsd-ports-outgoing; Wed, 16 Sep 1998 03:06:27 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from axl.training.iafrica.com (axl.training.iafrica.com [196.31.1.175]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA15860; Wed, 16 Sep 1998 03:05:08 -0700 (PDT) (envelope-from sheldonh@axl.training.iafrica.com) Received: from sheldonh (helo=axl.training.iafrica.com) by axl.training.iafrica.com with local-esmtp (Exim 1.92 #1) id 0zJES2-0002Gr-00; Wed, 16 Sep 1998 12:04:42 +0200 From: Sheldon Hearn To: torstenb@FreeBSD.ORG cc: ports@FreeBSD.ORG Subject: security/tcp_wrappers broken for aout Date: Wed, 16 Sep 1998 12:04:42 +0200 Message-ID: <8732.905940282@axl.training.iafrica.com> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Torsten, Since the tcp-wrapper port was modified to support ELF environments, the build fails on my 2.2-STABLE box. I've supplied the output of the build below. Note that, after the build fails, there _is_ no libwrap.so.8 in the work/tcp_wrapper-7.6 directory. Ciao, Sheldon. -------- ===> Extracting for tcp_wrappers-7.6 >> Checksum OK for tcp_wrappers_7.6.tar.gz. ===> Patching for tcp_wrappers-7.6 ===> Applying FreeBSD patches for tcp_wrappers-7.6 ===> Configuring for tcp_wrappers-7.6 ===> Building for tcp_wrappers-7.6 cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c hosts_access.c cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c options.c cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c shell_cmd.c cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c rfc931.c cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c eval.c cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c hosts_ctl.c cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c refuse.c cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c percent_x.c cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c clean_exit.c cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c fromhost.c cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c fix_options.c cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c socket.c cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c tli.c cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c workarounds.c cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c update.c cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c misc.c cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c diag.c cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c percent_m.c cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c myvsyslog.c rm -f libwrap.a ar rv libwrap.a hosts_access.o options.o shell_cmd.o rfc931.o eval.o hosts_ctl.o refuse.o percent_x.o clean_exit.o fromhost.o fix_options.o socket.o tli.o workarounds.o update.o misc.o diag.o percent_m.o myvsyslog.o ar: creating archive libwrap.a a - hosts_access.o a - options.o a - shell_cmd.o a - rfc931.o a - eval.o a - hosts_ctl.o a - refuse.o a - percent_x.o a - clean_exit.o a - fromhost.o a - fix_options.o a - socket.o a - tli.o a - workarounds.o a - update.o a - misc.o a - diag.o a - percent_m.o a - myvsyslog.o ranlib libwrap.a cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c hosts_access.c -o hosts_access.so cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c options.c -o options.so cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c shell_cmd.c -o shell_cmd.so cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c rfc931.c -o rfc931.so cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c eval.c -o eval.so cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c hosts_ctl.c -o hosts_ctl.so cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c refuse.c -o refuse.so cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c percent_x.c -o percent_x.so cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c clean_exit.c -o clean_exit.so cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c fromhost.c -o fromhost.so cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c fix_options.c -o fix_options.so cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c socket.c -o socket.so cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c tli.c -o tli.so cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c workarounds.c -o workarounds.so cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c update.c -o update.so cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c misc.c -o misc.so cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c diag.c -o diag.so cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c percent_m.c -o percent_m.so cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c myvsyslog.c -o myvsyslog.so cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c shdata.c -o shdata.so rm -f libwrap.so.8 cc -o libwrap.so.8 -shared -Wl,-soname,libwrap.so.8 hosts_access.so options.so shell_cmd.so rfc931.so eval.so hosts_ctl.so refuse.so percent_x.so clean_exit.so fromhost.so fix_options.so socket.so tli.so workarounds.so update.so misc.so diag.so percent_m.so myvsyslog.so shdata.so ld: libwrap.so.8: No such file or directory *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 03:10:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA16355 for freebsd-ports-outgoing; Wed, 16 Sep 1998 03:10:20 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA16346 for ; Wed, 16 Sep 1998 03:10:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA25558; Wed, 16 Sep 1998 03:10:01 -0700 (PDT) Received: from icc.surw.chel.su (surw.chel.su [195.54.2.162]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA15690 for ; Wed, 16 Sep 1998 03:03:06 -0700 (PDT) (envelope-from andy@icc.surw.chel.su) Received: (from andy@localhost) by icc.surw.chel.su (8.8.8/8.8.8) id OAA01531; Wed, 16 Sep 1998 14:03:20 +0400 (MSD) (envelope-from andy) Message-Id: <199809161003.OAA01531@icc.surw.chel.su> Date: Wed, 16 Sep 1998 14:03:20 +0400 (MSD) From: Andrey Zakhvatov Reply-To: andy@icc.surw.chel.su To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7947: Update port: net/mpd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7947 >Category: ports >Synopsis: Update port: net/mpd >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Sep 16 03:10:01 PDT 1998 >Last-Modified: >Originator: Andrey Zakhvatov >Organization: South Ural Railway ICC >Release: FreeBSD 2.2.7-RELEASE i386 >Environment: >Description: This is a patch to update net/mpd port. diff -Nru mpd/Makefile mpd-1.0b5/Makefile --- mpd/Makefile Thu Jan 15 11:22:28 1998 +++ mpd-1.0b5/Makefile Wed Sep 16 17:21:36 1998 @@ -1,23 +1,23 @@ # New ports collection makefile for: mpd -# Version required: 1.0b4 +# Version required: 1.0b5 # Date created: 16 May 1997 # Whom: Andrey Zakhvatov # # $Id: Makefile,v 1.7 1998/01/15 03:42:31 steve Exp $ # -DISTNAME= mpd-1.0b4 -CATEGORIES= net -MASTER_SITES= ftp://ftp.whistle.com/pub/archie/mpd/ -EXTRACT_SUFX= .tgz +DISTNAME= mpd-1.0b5 +CATEGORIES= net +MASTER_SITES= ftp://ftp.whistle.com/pub/archie/mpd/ +EXTRACT_SUFX= .tgz -MAINTAINER= andy@icc.surw.chel.su +MAINTAINER= andy@icc.surw.chel.su -OSVERSION!= sysctl -n kern.osreldate +OSVERSION!= sysctl -n kern.osreldate -WRKSRC= ${WRKDIR}/mpd-1.0b4/src -ALL_TARGET= depend all -MAN1= mpd.1 +WRKSRC= ${WRKDIR}/mpd-1.0b5/src +ALL_TARGET= depend all +MAN1= mpd.1 do-install: @ ${INSTALL_PROGRAM} ${WRKSRC}/mpd ${PREFIX}/sbin/mpd @@ -26,10 +26,12 @@ .for file in mpd.conf mpd.links mpd.script mpd.secret @ ${INSTALL_DATA} ${WRKSRC}/../conf/${file} ${PREFIX}/etc/mpd/${file}.sample .endfor +.if !defined(NOPORTDOCS) @ ${MKDIR} ${PREFIX}/share/doc/mpd @ ${INSTALL_DATA} ${WRKSRC}/../README ${PREFIX}/share/doc/mpd/README -.for file in CHANGES PROTOS README.code README.commands README.scripts +.for file in CHANGES PROTOS EQL.patch README.code README.commands README.scripts README.server @ ${INSTALL_DATA} ${WRKSRC}/../docs/${file} ${PREFIX}/share/doc/mpd .endfor +.endif .include diff -Nru mpd/files/md5 mpd-1.0b5/files/md5 --- mpd/files/md5 Wed Sep 10 18:55:34 1997 +++ mpd-1.0b5/files/md5 Wed Sep 16 15:57:39 1998 @@ -1 +1 @@ -MD5 (mpd-1.0b4.tgz) = 3b09fbfe752cfe87c275e8ee1c67a4c0 +MD5 (mpd-1.0b5.tgz) = 306b7422256b0634fc0921364cf8a898 diff -Nru mpd/patches/patch-aa mpd-1.0b5/patches/patch-aa --- mpd/patches/patch-aa Wed Sep 10 18:55:35 1997 +++ mpd-1.0b5/patches/patch-aa Wed Sep 16 17:28:40 1998 @@ -1,19 +1,19 @@ -*** Makefile Mon Aug 18 02:12:35 1997 ---- /home/andy/tmp/wrk/Makefile Wed Sep 10 13:06:30 1997 -*************** -*** 15,21 **** - - # Default configuration directory - -! MPD_CONF_DIR?= ${PREFIX}/etc/ppp - - # Define supported physical layer types - ---- 15,21 ---- - - # Default configuration directory - -! MPD_CONF_DIR?= ${PREFIX}/etc/mpd - - # Define supported physical layer types - +--- Makefile Wed Sep 9 07:12:26 1998 ++++ /home/andy/tmp/wrk/Makefile Wed Sep 16 17:26:34 1998 +@@ -15,7 +15,7 @@ + + # Default configuration directory + +-MPD_CONF_DIR?= ${PREFIX}/etc/ppp ++MPD_CONF_DIR?= ${PREFIX}/etc/mpd + + # Define supported physical layer types + +@@ -42,7 +42,6 @@ + LDADD+= -lmd + DPADD+= ${LIBMD} + +-COPTS+= -O2 + COPTS+= -Wall -Wmissing-prototypes -Wnested-externs + COPTS+= -DPATH_CONF_DIR=\"${MPD_CONF_DIR}\" + diff -Nru mpd/pkg/DESCR mpd-1.0b5/pkg/DESCR --- mpd/pkg/DESCR Wed Sep 10 18:55:36 1997 +++ mpd-1.0b5/pkg/DESCR Wed Sep 16 15:57:39 1998 @@ -1,12 +1,12 @@ + MPD MULTI-LINK PPP DAEMON FOR FREEBSD -Release 1.0b4 +Release 1.0b5 Written by Archie Cobbs Based on IIJ-PPP by Toshiharu OHNO Please see the CHANGES file if you are updating from mpd-1.0b3. - * WHAT IS IT? A user-mode PPP daemon based on iij-ppp which supports multi-link PPP. @@ -18,30 +18,52 @@ as compression, have not been tested very much at all. However, the core of the daemon is very solid. +* HOW DO I BUILD AND INSTALL IT? + + cd src + make depend all install + * HOW DO I SET IT UP? - Check the "etc/mpd" directory for configuration file examples. - There are four configuration files: + You will need to create your own versions of the four required + configuration files in /etc/ppp: - mpd.conf.sample - General configuration - mpd.links.sample - Description of available links - mpd.script.sample - Modem scripts - mpd.secret.sample - Login/password pairs + mpd.conf - General configuration + mpd.links - Description of available links + mpd.script - Modem scripts + mpd.secret - Login/password pairs If you're familiar with iij-ppp, the configuration method is similar: commands are read from a file. + Check the "conf" subdirectory for configuration file examples. + + Then append the following lines to /etc/syslog.conf and create an + empty /var/log/mpd.log file to get proper logging: + + !mpd + *.* /var/log/mpd.log + + Add a corresponding line to /etc/newsyslog.conf as well to get + proper log rotation. + + If you want to start it as a background daemon at boot time, + add the appropriate line to /etc/rc.local, e.g.: + + echo -n " mpd" ; /usr/local/bin/mpd -b + * WHAT'S THE COPYRIGHT STATUS? Berkeley style: see ``COPYRIGHT.iij'' and ``COPYRIGHT.whistle''. * WHERE CAN I READ MORE ABOUT IT? - In the "doc/mpd" directory is a preliminary man page and some other - assorted stuff. In the "etc/mpd" directory are example configuration + In the "docs" directory is a preliminary man page and some other + assorted stuff. In the "conf" directory are example configuration files with descriptive comments. * WHERE CAN I GO FOR HELP? Email me any questions and I'll do my best to answer them. + diff -Nru mpd/pkg/PLIST mpd-1.0b5/pkg/PLIST --- mpd/pkg/PLIST Tue Aug 18 22:48:42 1998 +++ mpd-1.0b5/pkg/PLIST Wed Sep 16 17:21:22 1998 @@ -1,11 +1,15 @@ -sbin/mpd etc/mpd/mpd.conf.sample etc/mpd/mpd.links.sample etc/mpd/mpd.script.sample etc/mpd/mpd.secret.sample +sbin/mpd share/doc/mpd/README share/doc/mpd/CHANGES +share/doc/mpd/EQL.patch share/doc/mpd/PROTOS share/doc/mpd/README.code share/doc/mpd/README.commands share/doc/mpd/README.scripts +share/doc/mpd/README.server +@dirrm etc/mpd +@dirrm share/doc/mpd >How-To-Repeat: >Fix: Please, check and apply this patch. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 04:02:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA22494 for freebsd-ports-outgoing; Wed, 16 Sep 1998 04:02:15 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA22486 for ; Wed, 16 Sep 1998 04:02:11 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-24.ix.netcom.com [209.109.234.24]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id EAA05632; Wed, 16 Sep 1998 04:01:50 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id EAA03841; Wed, 16 Sep 1998 04:01:43 -0700 (PDT) Date: Wed, 16 Sep 1998 04:01:43 -0700 (PDT) Message-Id: <199809161101.EAA03841@silvia.hip.berkeley.edu> To: marcolz@ilse.nl CC: ports@FreeBSD.ORG In-reply-to: <19980916115154.A6771@ilse.nl> (message from Marc Olzheim on Wed, 16 Sep 1998 11:51:54 +0200) Subject: Re: Error in Makefile of bzip2 From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * You probably already know it, but there's an error in the Makefile * of bzip2 * * In the line 'MAN1=...' the page bunzip2.1 should be left out when compressing * pages. Otherwise bzip2.1 gets compressed and the link bunzip2.1 becomes * a dangling link on which gzip stops. This was fixed on 9/10. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 04:15:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA25246 for freebsd-ports-outgoing; Wed, 16 Sep 1998 04:15:18 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from slarti.muc.de (slarti.muc.de [193.174.4.10]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id EAA25135 for ; Wed, 16 Sep 1998 04:13:59 -0700 (PDT) (envelope-from rse@en1.engelschall.com) Received: (qmail 6235 invoked by uid 66); 16 Sep 1998 10:52:49 -0000 Received: by en1.engelschall.com (Sendmail 8.9.1) id MAA01665; Wed, 16 Sep 1998 12:49:50 +0200 (CEST) Message-ID: <19980916124950.A1225@engelschall.com> Date: Wed, 16 Sep 1998 12:49:50 +0200 From: "Ralf S. Engelschall" To: Nate Williams , freebsd-ports@FreeBSD.ORG Subject: Re: Apache13-modssl port failures Reply-To: rse@engelschall.com References: <199809160457.WAA09306@mt.sri.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199809160457.WAA09306@mt.sri.com>; from Nate Williams on Tue, Sep 15, 1998 at 10:57:11PM -0600 Organization: Engelschall, Germany. X-Web-Homepage: http://www.engelschall.com/ X-PGP-Public-Key: http://www.engelschall.com/ho/rse/pgprse.asc X-PGP-Fingerprint: 00 C9 21 8E D1 AB 70 37 DD 67 A2 3A 0A 6F 8D A5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Sep 15, 1998, Nate Williams wrote: > Dies at startup time with something to the effect of: > > Missing reference libproxy.so(_SSLv23_client_method()) > > or somesuch. I'm sorry I don't have a better error message, but I was > forced to re-install the stock Apache13 port in the interim. > > Does anyone know what's going on? The method in question is defined in > /usr/local/lib/libssl.a, but is used in modules/proxy/proxy_util.c. I > tried statically linking in /usr/local/lib/libssl.a, but it didn't seem > to want to bring in the necessary .o's from the static library. (I'm > not sure if this would have worked in any case, since the object files > were not compiled PIC in libssl.a...) > > Any ideas on how to get past this? As a workaround you can use --disable-shared=proxy, of course. But I've now already fixed this for mod_ssl 2.0.10 (the disable shared is done automatically) and when it's released I'll immediately update the port, too. Thanks for hint. Ralf S. Engelschall rse@engelschall.com www.engelschall.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 05:39:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA03817 for freebsd-ports-outgoing; Wed, 16 Sep 1998 05:39:01 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from coleridge.kublai.com (coleridge.kublai.com [207.96.1.116]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA03797; Wed, 16 Sep 1998 05:38:49 -0700 (PDT) (envelope-from shmit@natasya.kublai.com) Received: from natasya.kublai.com (natasya.kublai.com [207.172.25.236]) by coleridge.kublai.com (8.8.8/8.8.8) with ESMTP id IAA06565; Wed, 16 Sep 1998 08:38:29 -0400 (EDT) (envelope-from shmit@natasya.kublai.com) Received: (from shmit@localhost) by natasya.kublai.com (8.9.1/8.8.8) id IAA00259; Wed, 16 Sep 1998 08:38:27 -0400 (EDT) Message-ID: <19980916083827.A223@kublai.com> Date: Wed, 16 Sep 1998 08:38:27 -0400 From: Brian Cully To: ports@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: ELF transition for ports Reply-To: shmit@kublai.com References: <199809160627.XAA03085@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199809160627.XAA03085@silvia.hip.berkeley.edu>; from Satoshi Asami on Tue, Sep 15, 1998 at 11:27:39PM -0700 X-Sender: If your mailer pays attention to this, it's broken. X-PGP-Info: finger shmit@kublai.com for my public key. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Sep 15, 1998 at 11:27:39PM -0700, Satoshi Asami wrote: > Yes. Say libfoo.so.1 is a link to libfoo.so.1.26. If libfoo.so.1.27 > is really an upwards compatible (but not downwards compatible) upgrade > of libfoo.so.1.26, then the version number *should* be bumped. And > since ELF only sees "libfoo.so.1", the only way to bump it is > "libfoo.so.2". Let's make things nice and sparkling clear: So we should only bump the major number if it's required (i.e., we'll be fixing brain damage on the part of the library, which should have bumped its major number anyway when an incompatible change was made)? So in most cases a minor number bump will not warrant a major number bump (since minor number bumps normall don't create incompatible changes), no? -- Brian Cully ``And when one of our comrades was taken prisoner, blindfolded, hung upside-down, shot, and burned, we thought to ourselves, `These are the best experiences of our lives''' -Pathology (Joe Frank, Somewhere Out There) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 06:01:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA07014 for freebsd-ports-outgoing; Wed, 16 Sep 1998 06:01:28 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA07002; Wed, 16 Sep 1998 06:01:17 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA02982; Wed, 16 Sep 1998 06:00:58 -0700 (PDT) Date: Wed, 16 Sep 1998 06:00:58 -0700 (PDT) Message-Id: <199809161300.GAA02982@freefall.freebsd.org> To: rom_glsa@ein-hashofet.co.il, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7934 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port update - devel/gide State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Wed Sep 16 05:59:04 PDT 1998 State-Changed-Why: I update gide when I move gtk back to X11R6, and I keep some patches for gtk11 compatible. thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 06:32:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA10431 for freebsd-ports-outgoing; Wed, 16 Sep 1998 06:32:33 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from metal.intt.org (metal.intt.org [206.109.108.186]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA10383; Wed, 16 Sep 1998 06:32:19 -0700 (PDT) (envelope-from smace@metal.intt.org) Received: (from smace@localhost) by metal.intt.org (8.9.1/8.9.1) id IAA17565; Wed, 16 Sep 1998 08:31:31 -0500 (CDT) From: Scott Mace Message-Id: <199809161331.IAA17565@metal.intt.org> Subject: Re: security/tcp_wrappers broken for aout In-Reply-To: <8732.905940282@axl.training.iafrica.com> from Sheldon Hearn at "Sep 16, 1998 12: 4:42 pm" To: axl@iafrica.com (Sheldon Hearn) Date: Wed, 16 Sep 1998 08:31:31 -0500 (CDT) Cc: torstenb@FreeBSD.ORG, ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org A fix is on the way. > > Hi Torsten, > > Since the tcp-wrapper port was modified to support ELF environments, the > build fails on my 2.2-STABLE box. I've supplied the output of the build > below. Note that, after the build fails, there _is_ no libwrap.so.8 in > the work/tcp_wrapper-7.6 directory. > > Ciao, > Sheldon. > > > -------- > ===> Extracting for tcp_wrappers-7.6 > >> Checksum OK for tcp_wrappers_7.6.tar.gz. > ===> Patching for tcp_wrappers-7.6 > ===> Applying FreeBSD patches for tcp_wrappers-7.6 > ===> Configuring for tcp_wrappers-7.6 > ===> Building for tcp_wrappers-7.6 > cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c hosts_access.c > cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c options.c > cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c shell_cmd.c > cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c rfc931.c > cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c eval.c > cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c hosts_ctl.c > cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c refuse.c > cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c percent_x.c > cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c clean_exit.c > cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c fromhost.c > cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c fix_options.c > cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c socket.c > cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c tli.c > cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c workarounds.c > cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c update.c > cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c misc.c > cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c diag.c > cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c percent_m.c > cc -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c myvsyslog.c > rm -f libwrap.a > ar rv libwrap.a hosts_access.o options.o shell_cmd.o rfc931.o eval.o hosts_ctl.o refuse.o percent_x.o clean_exit.o fromhost.o fix_options.o socket.o tli.o workarounds.o update.o misc.o diag.o percent_m.o myvsyslog.o > ar: creating archive libwrap.a > a - hosts_access.o > a - options.o > a - shell_cmd.o > a - rfc931.o > a - eval.o > a - hosts_ctl.o > a - refuse.o > a - percent_x.o > a - clean_exit.o > a - fromhost.o > a - fix_options.o > a - socket.o > a - tli.o > a - workarounds.o > a - update.o > a - misc.o > a - diag.o > a - percent_m.o > a - myvsyslog.o > ranlib libwrap.a > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c hosts_access.c -o hosts_access.so > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c options.c -o options.so > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c shell_cmd.c -o shell_cmd.so > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c rfc931.c -o rfc931.so > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c eval.c -o eval.so > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c hosts_ctl.c -o hosts_ctl.so > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c refuse.c -o refuse.so > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c percent_x.c -o percent_x.so > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c clean_exit.c -o clean_exit.so > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c fromhost.c -o fromhost.so > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c fix_options.c -o fix_options.so > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c socket.c -o socket.so > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c tli.c -o tli.so > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c workarounds.c -o workarounds.so > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c update.c -o update.so > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c misc.c -o misc.so > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c diag.c -o diag.so > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c percent_m.c -o percent_m.so > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c myvsyslog.c -o myvsyslog.so > cc -fpic -DPIC -O3 -pipe -malign-loops=0 -malign-jumps=2 -malign-functions=2 -DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DHOSTS_DENY=\"/usr/local/etc/hosts.deny\" -DHOSTS_ALLOW=\"/usr/local/etc/hosts.allow\" -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -c shdata.c -o shdata.so > rm -f libwrap.so.8 > cc -o libwrap.so.8 -shared -Wl,-soname,libwrap.so.8 hosts_access.so options.so shell_cmd.so rfc931.so eval.so hosts_ctl.so refuse.so percent_x.so clean_exit.so fromhost.so fix_options.so socket.so tli.so workarounds.so update.so misc.so diag.so percent_m.so myvsyslog.so shdata.so > ld: libwrap.so.8: No such file or directory > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 07:32:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA19875 for freebsd-ports-outgoing; Wed, 16 Sep 1998 07:32:50 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from Chuska.ConSys.COM (Chuska.ConSys.COM [209.141.107.5]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA19870 for ; Wed, 16 Sep 1998 07:32:49 -0700 (PDT) (envelope-from rcarter@psf.Pinyon.ORG) Received: from psf.Pinyon.ORG (ip-17-036.prc.primenet.com [207.218.17.36]) by Chuska.ConSys.COM (8.9.1/8.9.1) with ESMTP id HAA23235; Wed, 16 Sep 1998 07:32:28 -0700 (MST) Received: from psf.Pinyon.ORG (localhost [127.0.0.1]) by psf.Pinyon.ORG (8.9.1/8.8.7) with ESMTP id HAA22623; Wed, 16 Sep 1998 07:29:22 -0700 (MST) Message-Id: <199809161429.HAA22623@psf.Pinyon.ORG> X-Mailer: exmh version 2.0.2 2/24/98 To: freebsd-ports@FreeBSD.ORG cc: "Russell L. Carter" Subject: Re: p5 post P-Day put spots... In-reply-to: Your message of "Wed, 16 Sep 1998 08:53:22 +0200." <199809160653.IAA17933@gratis.grondar.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 16 Sep 1998 07:29:22 -0700 From: "Russell L. Carter" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org mark@grondar.za said: > Perl makes this decision. in the case of ports, this has not changed. > Look at src/gnu/usr.bin/perl/libperl/config.sh. Ok, thanks for the pointer Mark, I'll have a look again at this tonight. It's one way of learning more about perl :-). After spending an hour on it already I can appreciate the size of the job upgrading ports... Russell To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 08:10:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA25842 for freebsd-ports-outgoing; Wed, 16 Sep 1998 08:10:24 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ns.mt.sri.com (sri-gw.MT.net [206.127.105.141]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA25830 for ; Wed, 16 Sep 1998 08:10:21 -0700 (PDT) (envelope-from nate@mt.sri.com) Received: from mt.sri.com (rocky.mt.sri.com [206.127.76.100]) by ns.mt.sri.com (8.8.8/8.8.8) with SMTP id JAA05028; Wed, 16 Sep 1998 09:10:01 -0600 (MDT) (envelope-from nate@rocky.mt.sri.com) Received: by mt.sri.com (SMI-8.6/SMI-SVR4) id JAA11433; Wed, 16 Sep 1998 09:10:00 -0600 Date: Wed, 16 Sep 1998 09:10:00 -0600 Message-Id: <199809161510.JAA11433@mt.sri.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: rse@engelschall.com Cc: Nate Williams , freebsd-ports@FreeBSD.ORG Subject: Re: Apache13-modssl port failures In-Reply-To: <19980916124950.A1225@engelschall.com> References: <199809160457.WAA09306@mt.sri.com> <19980916124950.A1225@engelschall.com> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > Dies at startup time with something to the effect of: > > > > Missing reference libproxy.so(_SSLv23_client_method()) ... > > Does anyone know what's going on? The method in question is defined in > > /usr/local/lib/libssl.a, but is used in modules/proxy/proxy_util.c. ... > As a workaround you can use --disable-shared=proxy, of course. But > I've now already fixed this for mod_ssl 2.0.10 (the disable shared is > done automatically) and when it's released I'll immediately update the > port, too. Do I need to disable the shared proxy? What do I lose by doing that? Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 09:32:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA08040 for freebsd-ports-outgoing; Wed, 16 Sep 1998 09:32:54 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from slarti.muc.de (slarti.muc.de [193.174.4.10]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id JAA08030 for ; Wed, 16 Sep 1998 09:32:42 -0700 (PDT) (envelope-from rse@en1.engelschall.com) Received: (qmail 25460 invoked by uid 66); 16 Sep 1998 16:13:21 -0000 Received: by en1.engelschall.com (Sendmail 8.9.1) id SAA26912; Wed, 16 Sep 1998 18:10:12 +0200 (CEST) Message-ID: <19980916181012.C26269@engelschall.com> Date: Wed, 16 Sep 1998 18:10:12 +0200 From: "Ralf S. Engelschall" To: Nate Williams Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Apache13-modssl port failures Reply-To: rse@engelschall.com References: <199809160457.WAA09306@mt.sri.com> <19980916124950.A1225@engelschall.com> <199809161510.JAA11433@mt.sri.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199809161510.JAA11433@mt.sri.com>; from Nate Williams on Wed, Sep 16, 1998 at 09:10:00AM -0600 Organization: Engelschall, Germany. X-Web-Homepage: http://www.engelschall.com/ X-PGP-Public-Key: http://www.engelschall.com/ho/rse/pgprse.asc X-PGP-Fingerprint: 00 C9 21 8E D1 AB 70 37 DD 67 A2 3A 0A 6F 8D A5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Sep 16, 1998, Nate Williams wrote: > > > Dies at startup time with something to the effect of: > > > > > > Missing reference libproxy.so(_SSLv23_client_method()) > ... > > > Does anyone know what's going on? The method in question is defined in > > > /usr/local/lib/libssl.a, but is used in modules/proxy/proxy_util.c. > ... > > As a workaround you can use --disable-shared=proxy, of course. But > > I've now already fixed this for mod_ssl 2.0.10 (the disable shared is > > done automatically) and when it's released I'll immediately update the > > port, too. > > Do I need to disable the shared proxy? What do I lose by doing that? You only have to disable the "shared" (= DSO) on mod_proxy, but not mod_proxy itself, of course. You lose nothing except the fact that your httpd is a little bigger in size. Ralf S. Engelschall rse@engelschall.com www.engelschall.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 09:34:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA08289 for freebsd-ports-outgoing; Wed, 16 Sep 1998 09:34:01 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ady.warpnet.ro (ady.warpnet.ro [193.230.201.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA08050 for ; Wed, 16 Sep 1998 09:32:59 -0700 (PDT) (envelope-from ady@warpnet.ro) Received: from localhost (ady@localhost) by ady.warpnet.ro (8.8.8/8.8.8) with SMTP id TAA08877; Wed, 16 Sep 1998 19:29:15 +0300 (EEST) (envelope-from ady@warpnet.ro) Date: Wed, 16 Sep 1998 19:29:15 +0300 (EEST) From: Adrian Penisoara Reply-To: Adrian Penisoara To: dougdougdougdoug@dt053nb4.san.rr.com, Studded@dal.net cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/7938: Pine Port Upgrade: from 4.02A to 4.03 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Tue, 15 Sep 1998 dougdougdougdoug@dt053nb4.san.rr.com wrote: > On Tue, 15 Sep 1998, Adrian Penisoara wrote: > > > > > >Number: 7938 > > >Category: ports > > >Synopsis: Pine Port Upgrade: from 4.02A to 4.03 > > I think that you've addressed most of the issues I raised > previously, however before my PR is closed there are one or two nits I'd > like to pick with your latest port. It's OK with me, there will always be place for better :) ... > > Your solution of using sed instead of individual patches is a good > one, I considered doing it that way myself but wasn't sure if it would be > accepted or not. Looking at it now, it's a better solution than adding a > lot of one or two line patch files. However, there are a couple files that I don't see a better way right now, unfortunately... In fact there are many ports that have to deal with hardcoded paths in the sources, maybe there should be some help in bsd.port.mk ?... > you missed. Please add > ${WRKSRC}/build > ${WRKSRC}/doc/mime.types > ${WRKSRC}/pine/init.c > > to your list of files for the second sed command. In no case in the second but in the first: these are source/executable files -- if the sed command replaces the string in an incorrect place then bad things may happen; OTOH in the case of documentation files there isn't too much to worry about. Although the hardcoded path occures in some comment sections I will include @@PREFIX@@ patches in the already existent patchfiles for them. And BTW, this raises another ideea: I can't find any mailcap/mime.types files in /etc, /usr/share or any other place. I think we should have them placed somewhere (initially I was thinking about /usr/local/etc but now that I checked out /usr/share/misc I believe /usr/local/share/misc is more apropiate -- meaning, of course, ${PREFIX}/share/misc). What do you think? And about that, I think FreeBSD should come with its own general mailcap/mime.types files -- these files are pretty much OS dependant, don't you think ? And there are many programs that might use them besides Pine (Netscape's Navigator/Communicator, Lynx, etc.)... > > Also, in the sources there are two files that refer to > /usr/local/pine.conf, pine4.03/doc/tech-notes/background.html and > pine4.03/doc/tech-notes.txt. Personally I consider this a "bug" in the > source. If you are in contact with the developers you might want to > mention this. Unfortunately I'm not in contact with any of them (I only remember to have talked once to Mark Crispin about the "imap-uw"'s evolution)... I'd be glad to suggest the patches on the pine-info list. > > It would be nice if you included something to the effect of > > diff -ur pine4/work/pine4.03/doc/pine.1 pine4-old/work/pine4.03/doc/pine.1 > --- pine4/work/pine4.03/doc/pine.1 Tue Sep 15 15:57:46 1998 > +++ pine4-old/work/pine4.03/doc/pine.1 Tue Sep 15 15:50:57 1998 > @@ -271,8 +271,6 @@ > .br > /etc/mime.types System-wide file ext. to MIME type mapping > .br > -/usr/local/etc/mime.types Optional system-wide file ext. to MIME type > mapping > -.br > /usr/local/etc/pine.info Local pointer to system administrator. > .br > /usr/local/etc/pine.conf System-wide configuration file. (you switched the filenames on diff's command line) > > so that the man page reflects the "proper" location for the mime.types > file since the source is now patched to look there. Will be done; but let's first decide about the path/place the mailcap/mime.types files will be placed in. > > Finally, this part of the post-install target > > ${PREFIX}/bin/pine -P ${PREFIX}/etc/pine.conf -conf > >${WRKSRC}/pine.conf > ${INSTALL_DATA} ${WRKSRC}/pine.conf ${PREFIX}/etc/pine.conf > > indicates to me that you are trying to draw in the existing > /usr/local/etc/pine.conf file and combine that with the new conf file. My > testing indicates that this is not the case, and will result in > overwriting the user's pine.conf file. I still think that my solution to > this problem is better, but I'm biased. :) OK, it does look a bit weird but all I wanted to do is to upgrade the system wide ${PREFIX}/etc/pine.conf file (or install a fresh file if there isn't one already). This should be the replica of what Pine is going to do with the user's ~/.pinerc file on the first run :-) ... Do you see any problems with this ? > > I'm glad to see that you've taken my concerns to heart. I don't > want this to appear to be an adversarial undertaking, I think we both have > the same goal in mind, to make the best port possible. Exactly, and I can only thank you for helping me out :-) ! > > Thanks, > > Doug > Thanks a lot for your comments/help, Ady (@freebsd.ady.ro) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 09:38:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA09423 for freebsd-ports-outgoing; Wed, 16 Sep 1998 09:38:41 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ns.mt.sri.com (sri-gw.MT.net [206.127.105.141]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA09388 for ; Wed, 16 Sep 1998 09:38:20 -0700 (PDT) (envelope-from nate@mt.sri.com) Received: from mt.sri.com (rocky.mt.sri.com [206.127.76.100]) by ns.mt.sri.com (8.8.8/8.8.8) with SMTP id KAA05702; Wed, 16 Sep 1998 10:37:53 -0600 (MDT) (envelope-from nate@rocky.mt.sri.com) Received: by mt.sri.com (SMI-8.6/SMI-SVR4) id KAA11953; Wed, 16 Sep 1998 10:37:52 -0600 Date: Wed, 16 Sep 1998 10:37:52 -0600 Message-Id: <199809161637.KAA11953@mt.sri.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: rse@engelschall.com Cc: Nate Williams , freebsd-ports@FreeBSD.ORG Subject: Re: Apache13-modssl port failures In-Reply-To: <19980916181012.C26269@engelschall.com> References: <199809160457.WAA09306@mt.sri.com> <19980916124950.A1225@engelschall.com> <199809161510.JAA11433@mt.sri.com> <19980916181012.C26269@engelschall.com> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > > > Dies at startup time with something to the effect of: > > > > > > > > Missing reference libproxy.so(_SSLv23_client_method()) ... > > > As a workaround you can use --disable-shared=proxy, of course. > > Do I need to disable the shared proxy? What do I lose by doing that? > > You only have to disable the "shared" (= DSO) on mod_proxy, but not mod_proxy > itself, of course. You lose nothing except the fact that your httpd is a > little bigger in size. Ahh, I understand. Shared in this case means 'shared library'. I apologize for the confusion, I'm a WWW server newbie. :) Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 09:41:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA10048 for freebsd-ports-outgoing; Wed, 16 Sep 1998 09:41:17 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from chmail.abb.com (proxy.abb.ch [138.223.70.10]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id JAA10014 for ; Wed, 16 Sep 1998 09:41:08 -0700 (PDT) (envelope-from michael.bammatter@nlcal.mail.abb.com) From: michael.bammatter@nlcal.mail.abb.com Received: from mail1.ch.abb.com by chmail.abb.com (SMI-8.6/SMI-SVR4) id SAA19621; Wed, 16 Sep 1998 18:34:05 +0200 Received: by mail1.ch.abb.com(Lotus SMTP MTA Internal build v4.6.2 (651.2 6-10-1998)) id 41256681.005FC61B ; Wed, 16 Sep 1998 18:26:06 +0100 X-Lotus-FromDomain: ABB_CHWTC@ABB_CH02 To: ports@FreeBSD.ORG Message-ID: <41256681.005FC43D.00@mail1.ch.abb.com> Date: Wed, 16 Sep 1998 18:22:55 +0100 Subject: beav for Solaris? Mime-Version: 1.0 Content-type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello there, I'm desperatly looking for an binary editor for Solaris 2.x Could you give me a hint where to find a solaris binary - or is the source code available? Many thanks Michael To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 10:03:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15136 for freebsd-ports-outgoing; Wed, 16 Sep 1998 10:03:41 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from spook.navinet.net (spook.navinet.net [206.25.93.69]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA15125 for ; Wed, 16 Sep 1998 10:03:35 -0700 (PDT) (envelope-from forrie@forrie.com) Received: from forrie (black4.navinet.net [206.25.93.80]) by spook.navinet.net with SMTP id NAA11948 for ; Wed, 16 Sep 1998 13:03:09 -0400 (EDT) Message-Id: <199809161703.NAA11948@spook.navinet.net> X-Sender: forrie@206.25.93.69 X-Mailer: QUALCOMM Windows Eudora Pro Version 4.0.2 Date: Wed, 16 Sep 1998 12:36:13 -0400 To: freebsd-ports@FreeBSD.ORG From: Forrest Aldrich Subject: Port compile problem(s) with latest Windowmaker Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've taken this up with the port's maintainer, and there appears to be an unrelated problem. My system is 2.2.7-STABLE, just cvsupped and made a build world yesterday afternoon. Any hints as to what might be wrong would be appreciated. Thanks, Forrest ===> Generating temporary packing list /usr/bin/env OBJFORMAT=aout /sbin/ldconfig -m /usr/X11R6/lib ===> Registering installation for xpm-3.4k ===> Returning to build of windowmaker-0.19.3 ===> windowmaker-0.19.3 depends on shared library: gif\.3\. - found ===> windowmaker-0.19.3 depends on shared library: jpeg.9 - found ===> windowmaker-0.19.3 depends on shared library: png.3 - not found ===> Verifying install for png.3 in /usr/ports/graphics/png /bin/sh: not found *** Error code 1 Stop. *** Error code 1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 11:19:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA02918 for freebsd-ports-outgoing; Wed, 16 Sep 1998 11:19:09 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dt053nb4.san.rr.com (dt053nb4.san.rr.com [204.210.34.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA02888 for ; Wed, 16 Sep 1998 11:19:03 -0700 (PDT) (envelope-from Studded@dal.net) Received: from dal.net (Studded@localhost [127.0.0.1]) by dt053nb4.san.rr.com (8.8.8/8.8.8) with ESMTP id LAA24999; Wed, 16 Sep 1998 11:12:24 -0700 (PDT) (envelope-from Studded@dal.net) Message-ID: <35FFFF88.3D06143D@dal.net> Date: Wed, 16 Sep 1998 11:12:24 -0700 From: Studded Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.06 [en] (X11; I; FreeBSD 2.2.7-STABLE-0914 i386) MIME-Version: 1.0 To: Adrian Penisoara CC: freebsd-ports@FreeBSD.ORG Subject: Re: ports/7938: Pine Port Upgrade: from 4.02A to 4.03 References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Adrian Penisoara wrote: > > you missed. Please add > > ${WRKSRC}/build > > ${WRKSRC}/doc/mime.types > > ${WRKSRC}/pine/init.c > > > > to your list of files for the second sed command. > > In no case in the second but in the first: I'm not sure what this means. > these are source/executable > files -- if the sed command replaces the string in an incorrect place then > bad things may happen; OTOH in the case of documentation files there isn't > too much to worry about. I agree that this can be a problem, however I checked things very thoroughly before I suggested doing this. That's why I submitted individual patches the first time. > Although the hardcoded path occures in some comment sections I will > include @@PREFIX@@ patches in the already existent patchfiles for them. > > And BTW, this raises another ideea: I can't find any mailcap/mime.types > files in /etc, /usr/share or any other place. I think we should have them > placed somewhere (initially I was thinking about /usr/local/etc but now > that I checked out /usr/share/misc I believe /usr/local/share/misc is more > apropiate -- meaning, of course, ${PREFIX}/share/misc). What do you think? > And about that, I think FreeBSD should come with its own general > mailcap/mime.types files -- these files are pretty much OS dependant, > don't you think ? And there are many programs that might use them besides > Pine (Netscape's Navigator/Communicator, Lynx, etc.)... I don't know that much about mime actually, so I can't help you there. The /share/ directory is for architecture-independent stuff, so I think /usr/local/etc/ would be better personally. I have a strong feeling that anything that is user frobabble should be installed by the port in /usr/local/etc, but not everyone shares my view. > > Also, in the sources there are two files that refer to > > /usr/local/pine.conf, pine4.03/doc/tech-notes/background.html and > > pine4.03/doc/tech-notes.txt. Personally I consider this a "bug" in the > > source. If you are in contact with the developers you might want to > > mention this. > > Unfortunately I'm not in contact with any of them (I only remember to > have talked once to Mark Crispin about the "imap-uw"'s evolution)... > I'd be glad to suggest the patches on the pine-info list. Works for me, thanks. :) > > It would be nice if you included something to the effect of > > > > diff -ur pine4/work/pine4.03/doc/pine.1 pine4-old/work/pine4.03/doc/pine.1 > > --- pine4/work/pine4.03/doc/pine.1 Tue Sep 15 15:57:46 1998 > > +++ pine4-old/work/pine4.03/doc/pine.1 Tue Sep 15 15:50:57 1998 > > @@ -271,8 +271,6 @@ > > .br > > /etc/mime.types System-wide file ext. to MIME type mapping > > .br > > -/usr/local/etc/mime.types Optional system-wide file ext. to MIME type > > mapping > > -.br > > /usr/local/etc/pine.info Local pointer to system administrator. > > .br > > /usr/local/etc/pine.conf System-wide configuration file. > > (you switched the filenames on diff's command line) I know, I was in a hurry and figured you'd know what I meant. :) > > Finally, this part of the post-install target > > > > ${PREFIX}/bin/pine -P ${PREFIX}/etc/pine.conf -conf > > >${WRKSRC}/pine.conf > > ${INSTALL_DATA} ${WRKSRC}/pine.conf ${PREFIX}/etc/pine.conf > > > > indicates to me that you are trying to draw in the existing > > /usr/local/etc/pine.conf file and combine that with the new conf file. My > > testing indicates that this is not the case, and will result in > > overwriting the user's pine.conf file. I still think that my solution to > > this problem is better, but I'm biased. :) > > OK, it does look a bit weird but all I wanted to do is to upgrade the > system wide ${PREFIX}/etc/pine.conf file (or install a fresh file if there > isn't one already). This should be the replica of what Pine is going to do > with the user's ~/.pinerc file on the first run :-) ... > Do you see any problems with this ? Sorry if I wasn't clear. I understand your intentions, but what you're trying to do here won't work, it overwrites the system file with a blank one. This is why I suggested installing the new one side-by-side with the installed one of it already exists so the user could get a look at the changes, etc. with diff. > > I'm glad to see that you've taken my concerns to heart. I don't > > want this to appear to be an adversarial undertaking, I think we both have > > the same goal in mind, to make the best port possible. > > Exactly, and I can only thank you for helping me out :-) ! Glad to help. Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 11:40:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07372 for freebsd-ports-outgoing; Wed, 16 Sep 1998 11:40:28 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA07366 for ; Wed, 16 Sep 1998 11:40:20 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA20458; Wed, 16 Sep 1998 11:40:01 -0700 (PDT) Date: Wed, 16 Sep 1998 11:40:01 -0700 (PDT) Message-Id: <199809161840.LAA20458@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Studded Subject: Re: ports/7910: New port, mergemaster script Reply-To: Studded Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/7910; it has been noted by GNATS. From: Studded To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: ports/7910: New port, mergemaster script Date: Wed, 16 Sep 1998 11:37:09 -0700 Figured I should put this in the audit trail just in case. Since I submitted the port I added two options to the script and added a warning in the man page. If someone could commit this port, I'd really appreciate it. :) However before actually committing it if you could bump the version number in both places to 1.14 (from 1.12) and use the MD5 of "MD5 (mergemaster-1.14.tar.gz) = bf20b138dda9d04265ea7d7ba4da00c5" (or just d/l the 5k archive and do 'make makesum') I'd be very grateful. :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 11:47:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA08727 for freebsd-ports-outgoing; Wed, 16 Sep 1998 11:47:40 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ady.warpnet.ro (ady.warpnet.ro [193.230.201.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA08688 for ; Wed, 16 Sep 1998 11:47:17 -0700 (PDT) (envelope-from ady@warpnet.ro) Received: from localhost (ady@localhost) by ady.warpnet.ro (8.8.8/8.8.8) with SMTP id VAA09855; Wed, 16 Sep 1998 21:44:06 +0300 (EEST) (envelope-from ady@warpnet.ro) Date: Wed, 16 Sep 1998 21:44:06 +0300 (EEST) From: Adrian Penisoara To: Studded cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/7938: Pine Port Upgrade: from 4.02A to 4.03 In-Reply-To: <35FFFF88.3D06143D@dal.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Wed, 16 Sep 1998, Studded wrote: > Adrian Penisoara wrote: > > > > you missed. Please add > > > ${WRKSRC}/build > > > ${WRKSRC}/doc/mime.types > > > ${WRKSRC}/pine/init.c > > > > > > to your list of files for the second sed command. > > > > In no case in the second but in the first: > > I'm not sure what this means. The first for/${SED} loop and not the second. Sorry for my (very) poor english... > > > these are source/executable > > files -- if the sed command replaces the string in an incorrect place then > > bad things may happen; OTOH in the case of documentation files there isn't > > too much to worry about. > > I agree that this can be a problem, however I checked things very > thoroughly before I suggested doing this. That's why I submitted > individual patches the first time. Even more clear: I found some places in pine/osdep/os-bsf.h where we should leave "/usr/local/" untouched (some NN/INN/Inews paths)... > > And BTW, this raises another ideea: I can't find any mailcap/mime.types > > files in /etc, /usr/share or any other place. I think we should have them > > placed somewhere (initially I was thinking about /usr/local/etc but now > > that I checked out /usr/share/misc I believe /usr/local/share/misc is more > > apropiate -- meaning, of course, ${PREFIX}/share/misc). What do you think? > > And about that, I think FreeBSD should come with its own general > > mailcap/mime.types files -- these files are pretty much OS dependant, > > don't you think ? And there are many programs that might use them besides > > Pine (Netscape's Navigator/Communicator, Lynx, etc.)... > > I don't know that much about mime actually, so I can't help you there. > The /share/ directory is for architecture-independent stuff, so I think > /usr/local/etc/ would be better personally. I have a strong feeling that > anything that is user frobabble should be installed by the port in > /usr/local/etc, but not everyone shares my view. The fact that termcap was placed in /usr/share/misc and not /etc (in fact /etc/termcap is a symlink back to /usr/share/misc/termcap) made me believe this is the right place -- termcap is pretty much similar in functions to mailcap and mime.types, don't you think ? As you said, hier(7) says share/ is for "architecture-independent ascii text file" -- don't we fit the exact case ? :-) As for "user frobabble" I'd say ~/.mime.types and ~/.mailcap are the files the user should modify if they'll ever need to... > > > Also, in the sources there are two files that refer to > > > /usr/local/pine.conf, pine4.03/doc/tech-notes/background.html and > > > pine4.03/doc/tech-notes.txt. Personally I consider this a "bug" in the > > > source. If you are in contact with the developers you might want to > > > mention this. > > > > Unfortunately I'm not in contact with any of them (I only remember to > > have talked once to Mark Crispin about the "imap-uw"'s evolution)... > > I'd be glad to suggest the patches on the pine-info list. > > Works for me, thanks. :) I understand you'll leave me the great honours (I'll give you credit, don't worry :) ? > > > Finally, this part of the post-install target > > > > > > ${PREFIX}/bin/pine -P ${PREFIX}/etc/pine.conf -conf > > > >${WRKSRC}/pine.conf > > > ${INSTALL_DATA} ${WRKSRC}/pine.conf ${PREFIX}/etc/pine.conf > > > > > > indicates to me that you are trying to draw in the existing > > > /usr/local/etc/pine.conf file and combine that with the new conf file. My > > > testing indicates that this is not the case, and will result in > > > overwriting the user's pine.conf file. I still think that my solution to > > > this problem is better, but I'm biased. :) > > > > OK, it does look a bit weird but all I wanted to do is to upgrade the > > system wide ${PREFIX}/etc/pine.conf file (or install a fresh file if there > > isn't one already). This should be the replica of what Pine is going to do > > with the user's ~/.pinerc file on the first run :-) ... > > Do you see any problems with this ? > > Sorry if I wasn't clear. I understand your intentions, but what you're > trying to do here won't work, it overwrites the system file with a blank > one. This is why I suggested installing the new one side-by-side with Strange -- this is the exact case I was trying to exclude. Doesn't the new file contain the settings/options found in the old one ?!? > the installed one of it already exists so the user could get a look at > the changes, etc. with diff. Well, judging from what happens with ~/.pinerc I'd say the "upgrade" process of the old file through "pine -conf"should complete without problems. Doing the upgrade process by hand seems a bit awfull, especially when there are many changes/options in the old file while it could easily be done automatically... > > Doug > Thanks, Ady (@freebsd.ady.ro) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 13:10:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA25656 for freebsd-ports-outgoing; Wed, 16 Sep 1998 13:10:45 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA25590 for ; Wed, 16 Sep 1998 13:10:20 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA25685; Wed, 16 Sep 1998 13:10:00 -0700 (PDT) Date: Wed, 16 Sep 1998 13:10:00 -0700 (PDT) Message-Id: <199809162010.NAA25685@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Bill Fumerola Subject: re: ports/7581 Reply-To: Bill Fumerola Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/7581; it has been noted by GNATS. From: Bill Fumerola To: freebsd-gnats-submit@freebsd.org Cc: Subject: re: ports/7581 Date: Wed, 16 Sep 1998 16:00:50 -0400 (EDT) updated shar (only the makefile changed) for ethereal. someone PLEASE commit this, as this program is rather smooth. this makefile respects the original date I submitted it (8/10/98) # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # . # ./Makefile # ./files # ./files/md5 # ./files/md5.old # ./pkg # ./pkg/PLIST # ./pkg/COMMENT # ./pkg/DESCR # echo c - . mkdir -p . > /dev/null 2>&1 echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection makefile for: ethereal X# Version required: 0.3.15 X# Date created: 10 August 1998 X# Whom: Bill Fumerola X# X# $Id: $ X# X XDISTNAME= ethereal-0.3.15 XCATEGORIES= net XMASTER_SITES= http://ethereal.zing.org/distribution/ \ X http://ethereal.boehm.org/distribution/ X XMAINTAINER= billf@chc-chimes.com X XLIB_DEPENDS= gtk\\.1\\.5:${PORTSDIR}/x11-toolkits/gtk X XGNU_CONFIGURE= yes XUSE_X11= yes X XMAN1= ethereal.1 X X.include END-of-./Makefile echo c - ./files mkdir -p ./files > /dev/null 2>&1 echo x - ./files/md5 sed 's/^X//' >./files/md5 << 'END-of-./files/md5' XMD5 (ethereal-0.3.15.tar.gz) = 516550c68a10f2bac52e61b09fec01b4 END-of-./files/md5 echo x - ./files/md5.old sed 's/^X//' >./files/md5.old << 'END-of-./files/md5.old' XMD5 (ethereal-0.3.4.tar.gz) = 392d53b75bfd28c2c28b04671772ec23 END-of-./files/md5.old echo c - ./pkg mkdir -p ./pkg > /dev/null 2>&1 echo x - ./pkg/PLIST sed 's/^X//' >./pkg/PLIST << 'END-of-./pkg/PLIST' Xbin/ethereal END-of-./pkg/PLIST echo x - ./pkg/COMMENT sed 's/^X//' >./pkg/COMMENT << 'END-of-./pkg/COMMENT' Xa network analyzer that lets you capture END-of-./pkg/COMMENT echo x - ./pkg/DESCR sed 's/^X//' >./pkg/DESCR << 'END-of-./pkg/DESCR' Xa network analyzer that lets you capture and interactively browse the Xcontents of Ethernet frames. Packet data can be read from a file, or Xlive from a local network interface. X Xhttp://ethereal.zing.org X XBill Fumerola END-of-./pkg/DESCR exit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 14:50:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA15106 for freebsd-ports-outgoing; Wed, 16 Sep 1998 14:50:53 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA14849; Wed, 16 Sep 1998 14:49:43 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA00705; Wed, 16 Sep 1998 14:49:16 -0700 (PDT) Date: Wed, 16 Sep 1998 14:49:16 -0700 (PDT) Message-Id: <199809162149.OAA00705@freefall.freebsd.org> To: rom_glsa@ein-hashofet.co.il, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7935 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port update - math/geg State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Wed Sep 16 14:48:13 PDT 1998 State-Changed-Why: Committed, thanks. I remove the MASTER_SITE of sunsite, because I can't find file on Incoming directory now. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 15:51:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA00520 for freebsd-ports-outgoing; Wed, 16 Sep 1998 15:51:22 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA00371 for ; Wed, 16 Sep 1998 15:50:22 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA03053; Wed, 16 Sep 1998 15:50:01 -0700 (PDT) Received: from rr.iij4u.or.jp (h104.p060.iij4u.or.jp [210.130.60.104]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id PAA29523 for ; Wed, 16 Sep 1998 15:45:34 -0700 (PDT) (envelope-from sada@rr.iij4u.or.jp) Received: (qmail 20136 invoked by uid 1000); 17 Sep 1998 07:45:11 +0900 Message-Id: <19980916224511.20135.qmail@sada.e-mail.ne.jp> Date: 17 Sep 1998 07:45:11 +0900 From: sada@e-mail.ne.jp Reply-To: sada@e-mail.ne.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7954: new port: japanese/FAQ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7954 >Category: ports >Synopsis: new port: japanese/FAQ >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Sep 16 15:50:00 PDT 1998 >Last-Modified: >Originator: SADA Kenji >Organization: Nagoya.Aichi.Japan >Release: FreeBSD 2.2.7-RELEASE i386 >Environment: FreeBSD 2.2.7-RELEASE i386 >Description: This is a port of japanese FAQ documentation. This would build html images from doc/ja/FAQ distribution. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # FAQ # FAQ/pkg # FAQ/pkg/COMMENT # FAQ/pkg/DESCR # FAQ/Makefile # FAQ/files # FAQ/files/md5 # echo c - FAQ mkdir -p FAQ > /dev/null 2>&1 echo c - FAQ/pkg mkdir -p FAQ/pkg > /dev/null 2>&1 echo x - FAQ/pkg/COMMENT sed 's/^X//' >FAQ/pkg/COMMENT << 'END-of-FAQ/pkg/COMMENT' XThe Japanese version of FreeBSD FAQ. END-of-FAQ/pkg/COMMENT echo x - FAQ/pkg/DESCR sed 's/^X//' >FAQ/pkg/DESCR << 'END-of-FAQ/pkg/DESCR' XThis is the Japanese FAQ. Note that to build it, you need the Xsource to be on your machine, in which case you can build and install Xit by just going to /usr/opt/doc/ja.EUC/FAQ and typing X"make all install". (It will also be built automatically if you have XDOC_LANG set to "ja" or have ALLLANG set to anything during a "make Xworld".) X XIn other words, this pretty useless as a port, but is here so I can Xbuild a package. X X(original DESCR file by) XSatoshi Xasami@freebsd.org END-of-FAQ/pkg/DESCR echo x - FAQ/Makefile sed 's/^X//' >FAQ/Makefile << 'END-of-FAQ/Makefile' X# New ports collection makefile for: Japanese FAQ X# Version required: 2.2 X# Date created: Sep 16 1998 X# Whom: sada X# X# $Id$ X# X XDISTNAME= ja-FAQ-2.2 XCATEGORIES= japanese XDISTFILES= # none X XMAINTAINER= sada@e-mail.ne.jp X XBUILD_DEPENDS= sgmlfmt:${PORTSDIR}/textproc/sgmlformat X XPREFIX= /usr XNO_MTREE= yes XWRKSRC= ${WRKDIR}/FAQ XPLIST= ${WRKDIR}/PLIST X XFAQDIR?= /usr/opt/doc/ja/FAQ XDOC_SUBDIR?= share/doc/ja/FAQ X Xdo-extract: X @if [ ! -d ${FAQDIR} ]; then \ X ${ECHO} "You need the Japanese FAQ source in"; \ X ${ECHO} "\"${FAQDIR}\""; \ X ${ECHO} "in order to build this port."; \ X exit 1; \ X fi X @${RM} -rf ${WRKDIR} X @${MKDIR} ${WRKSRC} X ${CP} ${FAQDIR}/Makefile ${WRKSRC} X ${CP} ${FAQDIR}/*.sgml ${WRKSRC} X Xpost-build: X @${RM} -f ${PLIST} X @${ECHO} "${DOC_SUBDIR}/FAQ.ln" >>${PLIST} X @${ECHO} "@exec cd %B; /bin/sh %f" >>${PLIST} X @${ECHO} "${DOC_SUBDIR}/FAQ.roff" >>${PLIST} X @${ECHO} "${DOC_SUBDIR}/FAQ.html" >>${PLIST} X @cd ${WRKSRC} && \ X ls FAQ[0-9]*.html|sort|${AWK} '{printf "${DOC_SUBDIR}/%s\n", $$1}' \ X >>${PLIST} X @${ECHO} "${DOC_SUBDIR}/FAQ_toc.html" >>${PLIST} X @${ECHO} "@comment remove all links" >>${PLIST} X @${ECHO} "@unexec cd %B; for i in *.html; do if [ -h \$$i ]; then /bin/rm -f \$$i; fi; done" \ X >>${PLIST} X @${ECHO} "@dirrm ${DOC_SUBDIR}" >>${PLIST} X Xpre-install: X ${MKDIR} ${PREFIX}/${DOC_SUBDIR} X ${INSTALL_DATA} ${WRKSRC}/FAQ.ln ${PREFIX}/${DOC_SUBDIR}/ X X.include END-of-FAQ/Makefile echo c - FAQ/files mkdir -p FAQ/files > /dev/null 2>&1 echo x - FAQ/files/md5 sed 's/^X//' >FAQ/files/md5 << 'END-of-FAQ/files/md5' X# END-of-FAQ/files/md5 exit >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 17:09:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA16237 for freebsd-ports-outgoing; Wed, 16 Sep 1998 17:09:28 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA16030; Wed, 16 Sep 1998 17:08:21 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-24.ix.netcom.com [209.109.234.24]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id RAA06420; Wed, 16 Sep 1998 17:07:52 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id RAA10234; Wed, 16 Sep 1998 17:07:47 -0700 (PDT) Date: Wed, 16 Sep 1998 17:07:47 -0700 (PDT) Message-Id: <199809170007.RAA10234@silvia.hip.berkeley.edu> To: gene@nttlabs.com CC: freebsd-current@FreeBSD.ORG, ports@FreeBSD.ORG In-reply-to: (gene@nttlabs.com) Subject: Re: libX11.so version in bsd.port.mk From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * According to the bump-up-the-version rule, libX11 in my XFree86 port now * has the version of 7. Unfortunately bsd.port.mk expects libX11.so.6 if * USE_XLIB is defined (see around line 530 in bsd.port.mk) and this * renders all X11 ports unusable with the new XFree86 port. * * Shall I go back to libX11.so.6? I'm confused. Sorry, I'll send out a new guideline soon. For now please go back to 6. (We're going to truncate instead of bump.) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 17:31:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22103 for freebsd-ports-outgoing; Wed, 16 Sep 1998 17:31:08 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA21934 for ; Wed, 16 Sep 1998 17:30:23 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA07987; Wed, 16 Sep 1998 17:30:01 -0700 (PDT) Received: from control.colossus.dyn.ml.org (206-18-115-65.la.inreach.net [206.18.115.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA19507 for ; Wed, 16 Sep 1998 17:21:31 -0700 (PDT) (envelope-from dburr@colossus.dyn.ml.org) Received: (from dburr@localhost) by control.colossus.dyn.ml.org (8.8.8/8.8.8) id RAA08456; Wed, 16 Sep 1998 17:17:29 -0700 (PDT) (envelope-from dburr) Message-Id: <199809170017.RAA08456@control.colossus.dyn.ml.org> Date: Wed, 16 Sep 1998 17:17:29 -0700 (PDT) From: dburr@pobox.com Reply-To: dburr@pobox.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7955: Port audio/8hz-mp3 unavailable due to licensing issues Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7955 >Category: ports >Synopsis: Port audio/8hz-mp3 unavailable due to licensing issues >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Sep 16 17:30:01 PDT 1998 >Last-Modified: >Originator: Donald Burr >Organization: Starfleet Command >Release: FreeBSD 2.2.7-RELEASE i386 >Environment: latest ports tree >Description: The 8hz-mp3 port is not being distributed any more, due to a possible licensing problems being brought up by Fraunhofer (apparently the owner of the mp3 encoder code it's based on?) Perhaps this port should be marked BROKEN. also the copy of the distfile that's on ftp.freebsd.org should probably be zapped. (PS: I'm back. Sorry for the long absence, but several bad things happened this past month, the worst of which was the need to go in for emergency eye surgery. Then, work at my job piled up during my recovery, school started, I had a family wedding to go to, and I'm still digging myself out from under this mess [but am almost there]. >How-To-Repeat: >Fix: rlogin ftp.freebsd.org % su Password: # cd ~ftp/pub/FreeBSD/incoming # rm -f 8hz-mp3.src.v02b.tar.gz >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 18:16:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA03233 for freebsd-ports-outgoing; Wed, 16 Sep 1998 18:16:05 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA03132; Wed, 16 Sep 1998 18:15:30 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-24.ix.netcom.com [209.109.234.24]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id SAA06495; Wed, 16 Sep 1998 18:14:58 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id SAA10463; Wed, 16 Sep 1998 18:14:55 -0700 (PDT) Date: Wed, 16 Sep 1998 18:14:55 -0700 (PDT) Message-Id: <199809170114.SAA10463@silvia.hip.berkeley.edu> To: current@FreeBSD.ORG, ports@FreeBSD.ORG Reply-to: ports@FreeBSD.ORG Subject: ELF transition for ports (revised) From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org (This file is also available from: http://www.freebsd.org/~asami/elf-guidelines.txt ) Here is the guidelines for converting ports to ELF, and to use ports in the post-ELF world. You will need the latest bsd.port.mk (1.289 or 1.227.2.53) to use the converted ports. (Note that -stable users should also get the new bsd.port.mk if you want to use the latest ports.) Note the policy regarding aout shared version number has changed somewhat. It is no longer necessary to bump the number right now because of ELF conversion. Please be patient while we fix the ports tree to work on both a.out and ELF. Please report any breakages to the ports list. Thanks. Satoshi (and the incredible ELF team) ------- (1) Aout libraries should be moved out of /usr/local/lib and friends to an "aout" subdirectory. If you don't move them out of the way, elf ports will happily overwrite aout libraries. The "move-aout-libs" target in the -current src/Makefile (called from "aout-to-elf") will do this for you. It will only move aout libs so it is safe to call it on a system with both elf and aout libs in the standard directories. (2) The ports tree will build packages in the format the machine is in. This means aout for 2.2-stable and aout or elf for 3.0-current depending on what `objformat` returns. Also, once users convert to elf with (1) (i.e., move aout libraries to a subdirectory), building aout libraries will be unsupported. (It may still work if they know what they are doing, but they are on their own.) (3) bsd.port.mk will set PORTOBJFORMAT to "aout" or "elf" and export it in the environments CONFIGURE_ENV and MAKE_ENV. (It's always going to be "aout" in -stable). It is also passed to PLIST_SUB as "PORTOBJFORMAT=${PORTOBJFORMAT}". (See (7) below.) The variable is set using this line: PORTOBJFORMAT!= test -x /usr/bin/objformat && /usr/bin/objformat || echo aout Ports' make processes can use this variable to decide what to do. If the port's own configure script (or something) already correctly detects an ELF system, it is not necessary to check PORTOBJFORMAT. (3a) Elf libraries should be called "libfoo.so.M". (It is not allowed to create an elf library with a name "libfoo.so.M.N", even if you create a symlink to make it accessible via "libfoo.so.M".) Also, assuming "cc -shared" is used rather than "ld" directly, the only difference is that they need to add "-Wl,-soname,libfoo.so.M" on the command line. (3b) Aout libraries should be called "libfoo.so.M.N". There should not be any symlinks in the form "libfoo.so.M". The elf shared library version should be bumped next time the port undergoes an incompatible change. At that point the aout minor version number will be set to zero and will stay that way. (This means pkg/PLIST will only list elf shlib names from there on -- see (4) below.) (4) pkg/PLIST should contain the short (elf) shlib names if the aout minor number is zero, and the long (aout) names otherwise. bsd.port.mk will add ".0" to the end of shlib lines if PORTOBJFORMAT==aout if there is a short shlib name, and will delete the minor number if PORTOBJFORMAT==elf and there is a long shlib name. (5) Ports should install a symlink "libfoo.so" pointing to the real shared library (libfoo.so.M.N for aout, libfoo.so.M for elf). This link is listed in pkg/PLIST as well. (6) All port Makefiles are edited to remove minor numbers from LIB_DEPENDS, and also to have the regexp support removed. (E.g., "foo\\.1\\.\\(33|40\\)" -> "foo.2". They will be matched using "grep -wF". (7) The ldconfig line in Makefiles should read: ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m .... and in pkg/PLIST: @exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m ... @unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 19:10:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA13411 for freebsd-ports-outgoing; Wed, 16 Sep 1998 19:10:23 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA13398 for ; Wed, 16 Sep 1998 19:10:19 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA13183; Wed, 16 Sep 1998 19:10:00 -0700 (PDT) Received: from caffeine.internal.enteract.com (caffeine.internal.enteract.com [207.229.129.24]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id TAA12809 for ; Wed, 16 Sep 1998 19:04:58 -0700 (PDT) (envelope-from kdulzo@caffeine.internal.enteract.com) Received: (qmail 8475 invoked by uid 100); 17 Sep 1998 02:04:38 -0000 Message-Id: <19980917020438.8474.qmail@caffeine.internal.enteract.com> Date: 17 Sep 1998 02:04:38 -0000 From: kdulzo@caffeine.internal.enteract.com Reply-To: kdulzo@enteract.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7956: ldconfig in lib type ports broken Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7956 >Category: ports >Synopsis: ldconfig in lib type ports broken >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 16 19:10:00 PDT 1998 >Last-Modified: >Originator: Kevin M. Dulzo >Organization: EnterAct, L.L.C. >Release: FreeBSD 2.2.7-RELEASE i386 >Environment: CVSup'd ports tree on stable/2.2.7 with most recent 227upgrade.tgz pkg_add'd. >Description: Ports using ldconfig have all been configured to use ${PORTOBJFORMAT} >How-To-Repeat: security/rsaref ;; make install security/tcp_wrappers ;; make install >Fix: Update the upgrade! Someone (Satoshi Asami?) made comments to guarantee us stable suppers to not be broken during this aout->elf migration of current :) >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 19:49:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA20012 for freebsd-ports-outgoing; Wed, 16 Sep 1998 19:49:53 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA19996; Wed, 16 Sep 1998 19:49:45 -0700 (PDT) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA14372; Wed, 16 Sep 1998 19:49:23 -0700 (PDT) Date: Wed, 16 Sep 1998 19:49:23 -0700 (PDT) Message-Id: <199809170249.TAA14372@freefall.freebsd.org> To: kdulzo@enteract.com, asami@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7956 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ldconfig in lib type ports broken State-Changed-From-To: open-closed State-Changed-By: asami State-Changed-When: Wed Sep 16 19:48:43 PDT 1998 State-Changed-Why: Updated. However, you should really be grabbing the latest bsd.port.mk by yourself, everything is changing way too quickly now. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 20:21:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA25812 for freebsd-ports-outgoing; Wed, 16 Sep 1998 20:21:09 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA25684 for ; Wed, 16 Sep 1998 20:20:30 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA15315; Wed, 16 Sep 1998 20:20:02 -0700 (PDT) Received: from pcnet1.pcnet.com (pcnet1.pcnet.com [204.213.232.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA23883 for ; Wed, 16 Sep 1998 20:11:41 -0700 (PDT) (envelope-from eischen@vigrid.com) Received: from rigel (pm3-pt21.pcnet.net [206.105.29.95]) by pcnet1.pcnet.com (8.8.7/PCNet) with SMTP id XAA18036; Wed, 16 Sep 1998 23:11:12 -0400 (EDT) Message-Id: <3600452C.41C67EA6@vigrid.com> Date: Wed, 16 Sep 1998 19:09:32 -0400 From: "Daniel M. Eischen" To: FreeBSD-gnats-submit@FreeBSD.ORG Subject: ports/7957: CAMify xmcd port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7957 >Category: ports >Synopsis: CAMify xmcd port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Sep 16 20:20:01 PDT 1998 >Last-Modified: >Originator: Daniel M. Eischen >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD-current (CAM) >Description: This upgrades the XMCD port to work on a CAM system. >How-To-Repeat: N/A >Fix: Add the following patch to xmcd/patches/patch-ad diff -Nrc ../xmcd-2.3.orig/cda_d/Imakefile ./cda_d/Imakefile *** ../xmcd-2.3.orig/cda_d/Imakefile Sat May 23 00:31:57 1998 --- ./cda_d/Imakefile Sun Jun 28 19:38:31 1998 *************** *** 93,98 **** --- 93,104 ---- #else #if defined(FreeBSDArchitecture) LOCAL_LIBRARIES=-lncurses -lmytinfo + /* + * Check for a CAM system. + */ + .if exists(/usr/include/camlib.h) + LOCAL_LIBRARIES+= -lcam + .endif #else #if defined(NetBSDArchitecture) || defined(__bsdi__) LOCAL_LIBRARIES= diff -Nrc ../xmcd-2.3.orig/libdi_d/Imakefile ./libdi_d/Imakefile *** ../xmcd-2.3.orig/libdi_d/Imakefile Sat May 23 00:31:44 1998 --- ./libdi_d/Imakefile Sun Jun 28 18:50:28 1998 *************** *** 69,74 **** --- 69,80 ---- DEFINES= #endif + #if defined(FreeBSDArchitecture) + .if exists(/usr/include/camlib.h) + DEFINES+= -DFREEBSD_CAM + .endif + #endif + /* * Add local include path */ *************** *** 88,93 **** --- 94,100 ---- os_bsdi.c \ os_dec.c \ os_dgux.c \ + os_fbcam.c \ os_fnbsd.c \ os_hpux.c \ os_irix.c \ *************** *** 121,126 **** --- 128,134 ---- os_bsdi.o \ os_dec.o \ os_dgux.o \ + os_fbcam.o \ os_fnbsd.o \ os_hpux.o \ os_irix.o \ diff -Nrc ../xmcd-2.3.orig/libdi_d/os_fbcam.c ./libdi_d/os_fbcam.c *** ../xmcd-2.3.orig/libdi_d/os_fbcam.c Wed Dec 31 17:00:00 1969 --- ./libdi_d/os_fbcam.c Wed Sep 16 18:31:47 1998 *************** *** 0 **** --- 1,202 ---- + /* + * libdi - scsipt SCSI Device Interface Library + * + * Copyright (C) 1993-1998 Ti Kan + * E-mail: ti@amb.org + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public + * License along with this library; if not, write to the Free + * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + + /* + * FreeBSD CAM support. + * + * Author: Kenneth D. Merry + * E-Mail: ken@kdm.org + * + * This code provides an interface to the SCSI passthrough driver in + * FreeBSD's CAM implementation. + */ + #ifndef LINT + static char *_os_fbcam_c_ident_ = "@(#)"; + #endif + + #include "common_d/appenv.h" + #include "common_d/util.h" + #include "libdi_d/libdi.h" + #include "libdi_d/scsipt.h" + + #if defined(__FreeBSD__) && defined(FREEBSD_CAM) + + extern appdata_t app_data; + extern bool_t scsipt_notrom_error; + extern FILE *errfp; + extern di_client_t *di_clinfo; + + struct cam_device *cam_dev; + + /* + * pthru_send + * Send SCSI command to the device. + * + * Args: + * fd - Device file descriptor + * cmdpt - Pointer to the SCSI command CDB + * cmdlen - SCSI command size (6, 10 or 12 bytes) + * datapt - Pointer to the data buffer + * datalen - Data transfer size (bytes) + * rw - Data transfer direction flag (OP_NODATA, OP_DATAIN or OP_DATAOUT) + * tmout - Command timeout interval (seconds) + * prnerr - Whether an error message should be displayed + * when a command fails + * + * Return: + * TRUE - command completed successfully + * FALSE - command failed + */ + bool_t + pthru_send( + int fd, + byte_t *cmdpt, + int cmdlen, + byte_t *datapt, + int datalen, + byte_t rw, + int tmout, + bool_t prnerr + ) + { + union ccb ccb; + char *path, + title[FILE_PATH_SZ + 20]; + + if (fd < 0 || scsipt_notrom_error) + return FALSE; + + path = di_devgetpath(fd); + + (void)memset(&ccb, 0, sizeof(ccb)); + + cam_fill_csio(&ccb.csio, + /* retries */ 0, + /* cbfcnp */ NULL, + /* flags */ (rw == OP_DATAIN) ? CAM_DIR_IN : + (rw == OP_DATAOUT) ? CAM_DIR_OUT : + CAM_DIR_NONE, + /* tag_action */ MSG_SIMPLE_Q_TAG, + /* data_ptr */ (u_int8_t *)datapt, + /* dxfer_len */ datalen, + /* sense_len */ SSD_FULL_SIZE, + /* cdb_len */ cmdlen, + /* timeout */ (tmout ? tmout : DFLT_CMD_TIMEOUT) * 1000); + + /* Disable freezing the device queue */ + ccb.ccb_h.flags |= CAM_DEV_QFRZDIS; + + (void)memcpy(ccb.csio.cdb_io.cdb_bytes, cmdpt, cmdlen); + + if (app_data.debug) { + (void) sprintf(title, "SCSI CDB bytes (dev=%s rw=%d to=%d)", + path, rw, tmout); + util_dbgdump(title, cmdpt, cmdlen); + } + + /* Send the command down via the passthrough driver */ + if (cam_send_ccb(cam_dev, &ccb) < 0) { + if (app_data.scsierr_msg && prnerr) + perror("CAMIOCOMMAND ioctl failed"); + return FALSE; + } + + if ((ccb.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { + if (((ccb.ccb_h.status & CAM_STATUS_MASK) == + CAM_SCSI_STATUS_ERROR) + && (app_data.scsierr_msg) + && prnerr) { + char tmpstr[4096]; + scsi_sense_string(cam_dev, &ccb.csio, tmpstr, + sizeof(tmpstr)); + (void)fprintf(errfp, "%s: %s\n", APPNAME, tmpstr); + } else if (app_data.scsierr_msg && prnerr) { + (void)fprintf(errfp, "%s: error %d returned from" + " SCSI command\n", APPNAME, + ccb.ccb_h.status); + } + return FALSE; + } + + return TRUE; + } + + + /* + * pthru_open + * Open SCSI pass-through device + * + * Args: + * path - device path name string + * + * Return: + * Device file descriptor, or -1 on failure. + */ + int + pthru_open(char *path) + { + + if ((cam_dev = cam_open_device(path, O_RDWR)) == NULL) { + DBGPRN(errfp, "%s", cam_errbuf); + return(-1); + } + + (void) di_devreg(cam_dev->fd, path); + return (cam_dev->fd); + } + + + /* + * pthru_close + * Close SCSI pass-through device + * + * Args: + * fd - Device file descriptor + * + * Return: + * Nothing. + */ + void + pthru_close(int fd) + { + di_devunreg(fd); + cam_close_device(cam_dev); + } + + + /* + * pthru_vers + * Return OS Interface Module version string + * + * Args: + * Nothing. + * + * Return: + * Module version text string. + */ + char * + pthru_vers(void) + { + return ("OS Interface module for FreeBSD/CAM\n"); + } + + #endif /* __FreeBSD__ FREEBSD_CAM */ + diff -Nrc ../xmcd-2.3.orig/libdi_d/os_fbcam.h ./libdi_d/os_fbcam.h *** ../xmcd-2.3.orig/libdi_d/os_fbcam.h Wed Dec 31 17:00:00 1969 --- ./libdi_d/os_fbcam.h Sun Jun 28 18:49:17 1998 *************** *** 0 **** --- 1,60 ---- + /* + * libdi - scsipt SCSI Device Interface Library + * + * Copyright (C) 1993-1998 Ti Kan + * E-mail: ti@amb.org + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public + * License along with this library; if not, write to the Free + * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + + /* + * FreeBSD CAM support + * + * Author: Kenneth D. Merry + * E-Mail: ken@kdm.org + * + * This code provides an interface to the SCSI passthrough driver in + * FreeBSD's CAM implementation. + */ + #ifndef __OS_FBCAM_H__ + #define __OS_FBCAM_H__ + + #if defined(__FreeBSD__) && defined(FREEBSD_CAM) + + #ifndef LINT + static char *_os_fnbsd_h_ident_ = "@(#)os_fnbsd.h 6.14 98/01/02"; + #endif + + #include + #include + #include + #include + + + #define OS_MODULE /* Indicate that this is compiled on a supported OS */ + #define SETUID_ROOT /* Setuid root privilege is required */ + + + /* Public function prototypes */ + extern bool_t pthru_send(int, byte_t *, int, byte_t *, int, byte_t, + int, bool_t); + extern int pthru_open(char *); + extern void pthru_close(int); + extern char *pthru_vers(void); + + #endif /* __FreeBSD__ FREEBSD_CAM*/ + + #endif /* __OS_BCAM_H__ */ + diff -Nrc ../xmcd-2.3.orig/libdi_d/os_fnbsd.c ./libdi_d/os_fnbsd.c *** ../xmcd-2.3.orig/libdi_d/os_fnbsd.c Sat May 23 00:31:45 1998 --- ./libdi_d/os_fnbsd.c Sun Jun 28 18:21:53 1998 *************** *** 44,50 **** #include "libdi_d/scsipt.h" #if (defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)) && \ ! defined(DI_SCSIPT) && !defined(DEMO_ONLY) extern appdata_t app_data; extern bool_t scsipt_notrom_error; --- 44,50 ---- #include "libdi_d/scsipt.h" #if (defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)) && \ ! defined(DI_SCSIPT) && !defined(DEMO_ONLY) && !defined(FREEBSD_CAM) extern appdata_t app_data; extern bool_t scsipt_notrom_error; *************** *** 232,236 **** #endif /* __FreeBSD__ */ } ! #endif /* __FreeBSD__ __NetBSD__ __OpenBSD__ DI_SCSIPT DEMO_ONLY */ --- 232,236 ---- #endif /* __FreeBSD__ */ } ! #endif /* __FreeBSD__ __NetBSD__ __OpenBSD__ DI_SCSIPT DEMO_ONLY FREEBSD_CAM*/ diff -Nrc ../xmcd-2.3.orig/libdi_d/os_fnbsd.h ./libdi_d/os_fnbsd.h *** ../xmcd-2.3.orig/libdi_d/os_fnbsd.h Sat May 23 00:31:45 1998 --- ./libdi_d/os_fnbsd.h Sun Jun 28 18:45:40 1998 *************** *** 34,40 **** #define __OS_FNBSD_H__ #if (defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)) && \ ! defined(DI_SCSIPT) && !defined(DEMO_ONLY) #ifndef LINT static char *_os_fnbsd_h_ident_ = "@(#)os_fnbsd.h 6.14 98/01/02"; --- 34,40 ---- #define __OS_FNBSD_H__ #if (defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)) && \ ! defined(DI_SCSIPT) && !defined(DEMO_ONLY) && !defined(FREEBSD_CAM) #ifndef LINT static char *_os_fnbsd_h_ident_ = "@(#)os_fnbsd.h 6.14 98/01/02"; *************** *** 54,60 **** extern void pthru_close(int); extern char *pthru_vers(void); ! #endif /* __FreeBSD__ __NetBSD__ __OpenBSD__ DI_SCSIPT DEMO_ONLY */ #endif /* __OS_FNBSD_H__ */ --- 54,60 ---- extern void pthru_close(int); extern char *pthru_vers(void); ! #endif /* __FreeBSD__ __NetBSD__ __OpenBSD__ DI_SCSIPT DEMO_ONLY FREEBSD_CAM*/ #endif /* __OS_FNBSD_H__ */ diff -Nrc ../xmcd-2.3.orig/libdi_d/scsipt.h ./libdi_d/scsipt.h *** ../xmcd-2.3.orig/libdi_d/scsipt.h Sat May 23 00:31:44 1998 --- ./libdi_d/scsipt.h Sun Jun 28 18:45:08 1998 *************** *** 587,592 **** --- 587,593 ---- #include "libdi_d/os_bsdi.h" /* BSDI BSD/OS */ #include "libdi_d/os_dec.h" /* Digital OSF/1 & Ultrix */ #include "libdi_d/os_dgux.h" /* Data General DG/UX */ + #include "libdi_d/os_fbcam.h" /* FreeBSD CAM */ #include "libdi_d/os_fnbsd.h" /* FreeBSD/NetBSD */ #include "libdi_d/os_hpux.h" /* HP-UX */ #include "libdi_d/os_irix.h" /* SGI IRIX */ diff -Nrc ../xmcd-2.3.orig/xmcd_d/Imakefile ./xmcd_d/Imakefile *** ../xmcd-2.3.orig/xmcd_d/Imakefile Sat May 23 00:31:49 1998 --- ./xmcd_d/Imakefile Sun Jun 28 19:39:51 1998 *************** *** 68,73 **** --- 68,81 ---- DEFINES= #endif + /* + * Check for a FreeBSD/CAM system. + */ + #if defined(FreeBSDArchitecture) + .if exists(/usr/include/camlib.h) + LOCAL_LIBRARIES+= -lcam + .endif + #endif /* * Add local include path >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 21:01:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA03671 for freebsd-ports-outgoing; Wed, 16 Sep 1998 21:01:48 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA03447 for ; Wed, 16 Sep 1998 21:00:28 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA16635; Wed, 16 Sep 1998 21:00:01 -0700 (PDT) Received: from catastrophe.gelemna.ft-wayne.in.us (fortwayne-max-4-11.fwi.com [209.84.173.109]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA03153 for ; Wed, 16 Sep 1998 20:58:58 -0700 (PDT) (envelope-from croyle@gelemna.ft-wayne.in.us) Received: from emerson.gelemna.ft-wayne.in.us (emerson.gelemna.ft-wayne.in.us [10.23.42.2]) by catastrophe.gelemna.ft-wayne.in.us (8.8.8/8.8.8) with ESMTP id WAA06789 for ; Wed, 16 Sep 1998 22:58:23 -0500 (EST) (envelope-from croyle@gelemna.ft-wayne.in.us) Received: (from croyle@localhost) by emerson.gelemna.ft-wayne.in.us (8.9.1/8.9.1) id WAA06914; Wed, 16 Sep 1998 22:58:22 -0500 (EST) (envelope-from croyle@gelemna.ft-wayne.in.us) Message-Id: <199809170358.WAA06914@emerson.gelemna.ft-wayne.in.us> Date: Wed, 16 Sep 1998 22:58:22 -0500 (EST) From: Don Croyle Reply-To: croyle@gelemna.ft-wayne.in.us To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7958: Update x11-wm/blackbox to 0.40.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7958 >Category: ports >Synopsis: Update x11-wm/blackbox to 0.40.6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Sep 16 21:00:00 PDT 1998 >Last-Modified: >Originator: Don Croyle >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: >Description: These diffs upgrade the x11-wm/blackbox port to use the new 0.40.6 distfile. >How-To-Repeat: >Fix: Apply this patch: diff -ruN blackbox.old/Makefile blackbox/Makefile --- blackbox.old/Makefile Mon Aug 31 09:13:54 1998 +++ blackbox/Makefile Wed Sep 16 22:22:36 1998 @@ -1,12 +1,12 @@ # New ports collection makefile for: Blackbox -# Version required: 0.40.5 +# Version required: 0.40.6 # Date created: June 15, 1998 # Whom: Brian Handy # # $Id: Makefile,v 1.7 1998/08/31 14:13:54 vanilla Exp $ # -DISTNAME= blackbox-0.40.5 +DISTNAME= blackbox-0.40.6 CATEGORIES= x11-wm MASTER_SITES= http://linux.wiw.org/blackbox/sources/ diff -ruN blackbox.old/files/md5 blackbox/files/md5 --- blackbox.old/files/md5 Mon Aug 31 09:13:54 1998 +++ blackbox/files/md5 Wed Sep 16 22:28:27 1998 @@ -1 +1 @@ -MD5 (blackbox-0.40.5.tar.gz) = 26d1ff6cb86dc6b0d761ec4fce478f4d +MD5 (blackbox-0.40.6.tar.gz) = 72576ed9bce374a024aa2cad55f66b02 diff -ruN blackbox.old/patches/patch-aa blackbox/patches/patch-aa --- blackbox.old/patches/patch-aa Mon Aug 31 09:13:54 1998 +++ blackbox/patches/patch-aa Wed Sep 16 22:50:54 1998 @@ -1,9 +1,10 @@ ---- src/Image.cc.orig Sun Aug 30 18:36:23 1998 -+++ src/Image.cc Sun Aug 30 18:36:36 1998 -@@ -27,7 +27,7 @@ +--- src/Image.cc.orig Mon Sep 7 10:03:43 1998 ++++ src/Image.cc Wed Sep 16 22:45:54 1998 +@@ -27,8 +27,7 @@ #include "Image.hh" #include +-#include -#include +#include >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 21:36:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA10870 for freebsd-ports-outgoing; Wed, 16 Sep 1998 21:36:22 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA10824 for ; Wed, 16 Sep 1998 21:35:44 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: from dragon.nuxi.com (d96-072.orchard2.ucdavis.edu [169.237.96.72]) by relay.nuxi.com (8.8.8/8.6.12) with ESMTP id VAA01119 for ; Wed, 16 Sep 1998 21:35:12 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.8.8/8.8.8) id EAA05782 for freebsd-ports@freebsd.org; Thu, 17 Sep 1998 04:35:15 GMT (envelope-from obrien) Message-ID: <19980916213515.A5772@nuxi.com> Date: Wed, 16 Sep 1998 21:35:15 -0700 From: "David O'Brien" To: freebsd-ports@FreeBSD.ORG Subject: once again... case in A4/letter Reply-To: obrien@NUXI.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i X-Operating-System: FreeBSD 3.0-19980804-SNAP Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Once again, I'm going to bring up the issue of case of the papersize designation in our printing ports. We are inconsistant. I prefer lowercase as it is most wide-spread, but lets pick *something* consistant: All> ll | egrep -i '(a4|letter)' -rw-r--r-- 1 root wheel 1035922 Sep 1 06:48 a2ps-A4-4.10.3.tgz -rw-r--r-- 1 root wheel 20474 Sep 1 07:15 a2ps-a4-4.3.tgz -rw-r--r-- 1 root wheel 20492 Sep 1 07:05 a2ps-letter-4.3.tgz -rw-r--r-- 1 root wheel 35040 Sep 1 07:16 c2ps-a4-4.0.tgz -rw-r--r-- 1 root wheel 35049 Sep 1 07:17 c2ps-letter-4.0.tgz -rw-r--r-- 1 root wheel 265673 Sep 1 07:21 enscript-A4-1.5.0.tgz -rw-r--r-- 1 root wheel 265702 Sep 1 07:22 enscript-Letter-1.5.0.tgz -rw-r--r-- 1 root wheel 27603 Sep 1 07:38 mp-a4-3.0.1.tgz -rw-r--r-- 1 root wheel 27604 Sep 1 07:37 mp-letter-3.0.1.tgz -rw-r--r-- 1 root wheel 86751 Sep 1 07:44 psutils-a4-1.17.tgz -rw-r--r-- 1 root wheel 86739 Sep 1 07:43 psutils-letter-1.17.tgz And then there's this one. I wonder if it assumes a paper size... -rw-r--r-- 1 root wheel 1035918 Sep 1 06:53 a2ps-Letterdj-4.10.3.tgz -- -- David (obrien@NUXI.com -or- obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 22:47:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA21288 for freebsd-ports-outgoing; Wed, 16 Sep 1998 22:47:13 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA21237; Wed, 16 Sep 1998 22:46:35 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: (from obrien@localhost) by relay.nuxi.com (8.8.8/8.6.12) id WAA01322; Wed, 16 Sep 1998 22:43:54 -0700 (PDT) Message-ID: <19980916224354.C1289@nuxi.com> Date: Wed, 16 Sep 1998 22:43:54 -0700 From: "David O'Brien" To: Brian Somers Cc: ports@FreeBSD.ORG, cvs-committers@FreeBSD.ORG Subject: Re: DHCP in the base Reply-To: obrien@NUXI.com References: <19980916115108.F24012@nuxi.com> <199809162230.XAA01129@woof.lan.awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199809162230.XAA01129@woof.lan.awfulhak.org>; from Brian Somers on Wed, Sep 16, 1998 at 11:30:41PM +0100 X-Operating-System: FreeBSD 2.2.7-STABLE Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > Is all I do and all I need is /usr/local/sbin/dhcpc. With the ISC client > > there is a VERY extensive config file needed. > > Mine says: > > interface "ep0" { > send host-name "woof"; > prepend domain-name-servers 127.0.0.1; > } That one may work fine. If so, can we please add it to the dhcp-2.x port?? I tried out that port and was overwhelmed by the manpage's listing of what a config file should look like. I tried a much more complicated version -- didn't work. So I went back to WIDE-dhcp. I asked Justin (the maintainer) to put a sample of a working on in the port and never heard back. -- -- David (obrien@NUXI.ucdavis.edu -or- obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 23:16:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA27213 for freebsd-ports-outgoing; Wed, 16 Sep 1998 23:16:29 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA27193 for ; Wed, 16 Sep 1998 23:16:18 -0700 (PDT) (envelope-from tg@ghpc8.ihf.rwth-aachen.de) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.8/8.8.6) with ESMTP id IAA23152; Thu, 17 Sep 1998 08:15:35 +0200 (CEST) Received: (from tg@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.8/8.8.5) id IAA14922; Thu, 17 Sep 1998 08:15:33 +0200 (CEST) To: michael.bammatter@nlcal.mail.abb.com Cc: ports@FreeBSD.ORG Subject: Re: beav for Solaris? References: <41256681.005FC43D.00@mail1.ch.abb.com> Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII From: Thomas Gellekum Date: 17 Sep 1998 08:15:32 +0200 In-Reply-To: michael.bammatter@nlcal.mail.abb.com's message of "Wed, 16 Sep 1998 18:22:55 +0100" Message-ID: <87ww731czf.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 12 X-Mailer: Gnus v5.6.34/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org michael.bammatter@nlcal.mail.abb.com writes: > Hello there, > > I'm desperatly looking for an binary editor for Solaris 2.x > Could you give me a hint where to find a solaris binary - or > is the source code available? ~:132) grep MASTER /usr/ports/editors/beav/Makefile MASTER_SITES= ftp://ftp.debian.org/debian/hamm/hamm/source/editors/ tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 23:18:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA27545 for freebsd-ports-outgoing; Wed, 16 Sep 1998 23:18:36 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA27406 for ; Wed, 16 Sep 1998 23:18:09 -0700 (PDT) (envelope-from tg@ghpc8.ihf.rwth-aachen.de) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.8/8.8.6) with ESMTP id IAA23156; Thu, 17 Sep 1998 08:17:21 +0200 (CEST) Received: (from tg@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.8/8.8.5) id IAA14926; Thu, 17 Sep 1998 08:17:19 +0200 (CEST) To: Forrest Aldrich Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Port compile problem(s) with latest Windowmaker References: <199809161703.NAA11948@spook.navinet.net> Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII From: Thomas Gellekum Date: 17 Sep 1998 08:17:19 +0200 In-Reply-To: Forrest Aldrich's message of "Wed, 16 Sep 1998 12:36:13 -0400" Message-ID: <87u3271cwg.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 15 X-Mailer: Gnus v5.6.34/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Forrest Aldrich writes: > I've taken this up with the port's maintainer, and there appears to be an > unrelated problem. > > My system is 2.2.7-STABLE, just cvsupped and made a build world yesterday > afternoon. > > Any hints as to what might be wrong would be appreciated. Try getting the latest bsd.port.mk. I think there were some problems with it. The png port has also been touched again, you might want to re-cvsup. tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Sep 16 23:44:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA02013 for freebsd-ports-outgoing; Wed, 16 Sep 1998 23:44:22 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from awfulhak.org (awfulhak.force9.co.uk [195.166.136.63]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA01998; Wed, 16 Sep 1998 23:44:15 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from woof.lan.awfulhak.org (root@woof.lan.awfulhak.org [172.16.0.7]) by awfulhak.org (8.8.8/8.8.8) with ESMTP id HAA11075; Thu, 17 Sep 1998 07:43:08 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from woof.lan.awfulhak.org (brian@localhost [127.0.0.1]) by woof.lan.awfulhak.org (8.9.1/8.9.1) with ESMTP id HAA05408; Thu, 17 Sep 1998 07:43:06 +0100 (BST) (envelope-from brian@woof.lan.awfulhak.org) Message-Id: <199809170643.HAA05408@woof.lan.awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: obrien@NUXI.com cc: Brian Somers , ports@FreeBSD.ORG, cvs-committers@FreeBSD.ORG Subject: Re: DHCP in the base In-reply-to: Your message of "Wed, 16 Sep 1998 22:43:54 PDT." <19980916224354.C1289@nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 17 Sep 1998 07:43:01 +0100 From: Brian Somers Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > > Is all I do and all I need is /usr/local/sbin/dhcpc. With the ISC client > > > there is a VERY extensive config file needed. > > > > Mine says: > > > > interface "ep0" { > > send host-name "woof"; > > prepend domain-name-servers 127.0.0.1; > > } > > That one may work fine. If so, can we please add it to the dhcp-2.x > port?? I tried out that port and was overwhelmed by the manpage's > listing of what a config file should look like. I tried a much more > complicated version -- didn't work. So I went back to WIDE-dhcp. I > asked Justin (the maintainer) to put a sample of a working on in the port > and never heard back. You must have missed this at the end of the dhclient.conf man page: This is a very complicated dhclient.conf file - in gen- eral, yours should be much simpler. In many cases, it's sufficient to just create an empty dhclient.conf file - the defaults are usually fine. I agree though, I was a bit aghast at the number of options, but then, I'm aghast at the options for ppp too :^P > -- > -- David (obrien@NUXI.ucdavis.edu -or- obrien@FreeBSD.org) -- Brian , , Don't _EVER_ lose your sense of humour.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 00:01:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA05725 for freebsd-ports-outgoing; Thu, 17 Sep 1998 00:01:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from k6n1.znh.org (dialup4.gaffaneys.com [208.155.161.54]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA05686 for ; Thu, 17 Sep 1998 00:00:59 -0700 (PDT) (envelope-from zach@gaffaneys.com) Received: (from zach@localhost) by k6n1.znh.org (8.9.1/8.9.1) id HAA19727; Thu, 17 Sep 1998 07:01:03 GMT (envelope-from zach) Message-ID: <19980917020103.A19212@znh.org> Date: Thu, 17 Sep 1998 02:01:03 -0500 From: Zach Heilig To: obrien@NUXI.com, freebsd-ports@FreeBSD.ORG Subject: Re: once again... case in A4/letter References: <19980916213515.A5772@nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <19980916213515.A5772@nuxi.com>; from David O'Brien on Wed, Sep 16, 1998 at 09:35:15PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Sep 16, 1998 at 09:35:15PM -0700, David O'Brien wrote: > And then there's this one. I wonder if it assumes a paper size... > > -rw-r--r-- 1 root wheel 1035918 Sep 1 06:53 a2ps-Letterdj-4.10.3.tgz Letterdj is just a bit smaller than regular letter sized (there is about an eigth inch less printable area in any given dimension). -- Zach Heilig -- zach@gaffaneys.com A horse without a nose... never wins. (unknown) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 00:11:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA07569 for freebsd-ports-outgoing; Thu, 17 Sep 1998 00:11:15 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA07546 for ; Thu, 17 Sep 1998 00:11:10 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: (from obrien@localhost) by relay.nuxi.com (8.8.8/8.6.12) id AAA01591; Thu, 17 Sep 1998 00:08:44 -0700 (PDT) Message-ID: <19980917000844.A1497@nuxi.com> Date: Thu, 17 Sep 1998 00:08:44 -0700 From: "David O'Brien" To: Brian Somers Cc: ports@FreeBSD.ORG Subject: Re: DHCP in the base Reply-To: obrien@NUXI.com References: <19980916224354.C1289@nuxi.com> <199809170643.HAA05408@woof.lan.awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199809170643.HAA05408@woof.lan.awfulhak.org>; from Brian Somers on Thu, Sep 17, 1998 at 07:43:01AM +0100 X-Operating-System: FreeBSD 2.2.7-STABLE Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Sep 17, 1998 at 07:43:01AM +0100, Brian Somers wrote: > You must have missed this at the end of the dhclient.conf man page: ... > sufficient to just create an empty dhclient.conf file - > the defaults are usually fine. I believe I tried that (it's been a while) and I couldn't get a lease. But then my machine has two NICs in it. I figured it might broadcast out both interfaces, but I guess not. -- -- David (obrien@NUXI.ucdavis.edu -or- obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 00:51:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA15795 for freebsd-ports-outgoing; Thu, 17 Sep 1998 00:51:39 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from gibralter.net (pollux.gibralter.net [208.220.166.6]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id AAA15715 for ; Thu, 17 Sep 1998 00:51:16 -0700 (PDT) (envelope-from distributor@phonecheck.net) From: distributor@phonecheck.net Received: from jake.gibralter.net by gibralter.net (SMI-8.6/SMI-SVR4) id DAA06998; Thu, 17 Sep 1998 03:44:28 -0400 Date: Thu, 17 Sep 1998 03:44:28 -0400 To: ports@FreeBSD.ORG Subject: FREE Classifieds Up Date Organization: Internet Resource Center Message-Id: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello I discovered your business on the internet, and thought you might br interested in our website located at http://rodweb.localweb.com/classads/sites/web/htm You can place FREE CLASSIFIEDS that will be seen all over the worldwide web. Take a look at the counter and see why you want to place your ad here. Go there now and place your ad so you can see your business increase. Thank you Jake If you would like to be removed from future mailing simply respond with "REMOVE" in the subject line. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 01:31:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA22620 for freebsd-ports-outgoing; Thu, 17 Sep 1998 01:31:17 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA22516; Thu, 17 Sep 1998 01:30:24 -0700 (PDT) (envelope-from phk@FreeBSD.org) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA24117; Thu, 17 Sep 1998 01:30:05 -0700 (PDT) Date: Thu, 17 Sep 1998 01:30:05 -0700 (PDT) Message-Id: <199809170830.BAA24117@freefall.freebsd.org> To: phk@FreeBSD.ORG, gnats-admin@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: pending/7948 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ucd-snmp port won't compile Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: phk Responsible-Changed-When: Thu Sep 17 01:29:46 PDT 1998 Responsible-Changed-Why: ports issue To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 05:41:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA00320 for freebsd-ports-outgoing; Thu, 17 Sep 1998 05:41:56 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from axl.training.iafrica.com (axl.training.iafrica.com [196.31.1.175]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA00213 for ; Thu, 17 Sep 1998 05:40:40 -0700 (PDT) (envelope-from sheldonh@axl.training.iafrica.com) Received: from sheldonh (helo=axl.training.iafrica.com) by axl.training.iafrica.com with local-esmtp (Exim 1.92 #1) for ports@freebsd.org id 0zJdM8-00026V-00; Thu, 17 Sep 1998 14:40:16 +0200 From: Sheldon Hearn To: ports@FreeBSD.ORG Subject: Contents of patchfiles Date: Thu, 17 Sep 1998 14:40:15 +0200 Message-ID: <8090.906036015@axl.training.iafrica.com> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi folks, I have my own personal taste when it comes to creating diffs to be applied to the local source tree after a CVSup. Since patch can skip cruft at the beginning of a diff, I like to include in the file some text before the actual diff, explaining what this patch hopes to achieve. There's a sample of one such file attached to the bottom of this message, in case I haven't managed to explain myself clearly. I'd like to know how the PortsMeisters feel about my doing this for ports submissions. The gain is that users and future tinkers alike will be able to see, at a glance, what a patch is supposed to do. The loss is in disk space. What's the verdict? Ciao, Sheldon. /root/localmods/ports/diffs/nmh.mts.diff: -------- I do not want nmh to establish an SMTP connection to localhost when delivering mail. I want it to use local piped delivery to my MTA. --- mail/nmh/Makefile.orig Wed Aug 19 12:52:22 1998 +++ mail/nmh/Makefile Wed Aug 19 12:49:48 1998 @@ -14,7 +14,8 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --libexecdir=${PREFIX}/libexec/nmh \ - --sysconfdir=${PREFIX}/etc/nmh --enable-nmh-pop + --sysconfdir=${PREFIX}/etc/nmh --enable-nmh-pop \ + --with-mts=sendmail MAN1= ali.1 anno.1 burst.1 comp.1 dist.1 flist.1 folder.1 forw.1 inc.1 \ mark.1 mh-chart.1 mhl.1 mhmail.1 mhn.1 mhparam.1 mhpath.1 msgchk.1 msh.1 \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 06:08:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA03960 for freebsd-ports-outgoing; Thu, 17 Sep 1998 06:08:10 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA03911 for ; Thu, 17 Sep 1998 06:07:52 -0700 (PDT) (envelope-from tg@ghpc8.ihf.rwth-aachen.de) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.8/8.8.6) with ESMTP id PAA24071; Thu, 17 Sep 1998 15:07:22 +0200 (CEST) Received: (from tg@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.8/8.8.5) id PAA21200; Thu, 17 Sep 1998 15:07:20 +0200 (CEST) To: Sheldon Hearn Cc: ports@FreeBSD.ORG Subject: Re: Contents of patchfiles References: <8090.906036015@axl.training.iafrica.com> Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII From: Thomas Gellekum Date: 17 Sep 1998 15:07:19 +0200 In-Reply-To: Sheldon Hearn's message of "Thu, 17 Sep 1998 14:40:15 +0200" Message-ID: <87iuim28hk.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 12 X-Mailer: Gnus v5.6.34/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Sheldon Hearn writes: > I'd like to know how the PortsMeisters feel about my doing this for > ports submissions. The gain is that users and future tinkers alike will > be able to see, at a glance, what a patch is supposed to do. The loss is > in disk space. No problem. Some patches in the ports tree do already have introductory statements (see /usr/ports/print/transfig/patches/patch-ae for an example). tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 07:02:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA11537 for freebsd-ports-outgoing; Thu, 17 Sep 1998 07:02:33 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from gilgamesch.bik-gmbh.de (gilgamesch.bik-gmbh.de [194.233.237.91]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA11511 for ; Thu, 17 Sep 1998 07:02:19 -0700 (PDT) (envelope-from cracauer@gilgamesch.bik-gmbh.de) Received: (from cracauer@localhost) by gilgamesch.bik-gmbh.de (8.8.8/8.7.3) id QAA23694; Thu, 17 Sep 1998 16:01:50 +0200 (MET DST) Message-ID: <19980917160149.A23619@cons.org> Date: Thu, 17 Sep 1998 16:01:49 +0200 From: Martin Cracauer To: Satoshi Asami , ports@FreeBSD.ORG Subject: Re: ELF transition for ports References: <199809100657.XAA10293@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.1i In-Reply-To: <199809100657.XAA10293@silvia.hip.berkeley.edu>; from Satoshi Asami on Wed, Sep 09, 1998 at 11:57:51PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org My shells/scsh port doesn't even build on ELF and I don't think I can fix that until 3.0-RELEASE. What to do, is there a seperate BROKEN variable for ELF? Martin -- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Martin Cracauer http://www.cons.org/cracauer BSD User Group Hamburg, Germany http://www.bsdhh.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 07:14:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA12775 for freebsd-ports-outgoing; Thu, 17 Sep 1998 07:14:46 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA12738; Thu, 17 Sep 1998 07:14:31 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA09557; Thu, 17 Sep 1998 07:14:10 -0700 (PDT) Date: Thu, 17 Sep 1998 07:14:10 -0700 (PDT) Message-Id: <199809171414.HAA09557@freefall.freebsd.org> To: junker@jazz.snu.ac.kr, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, kuriyama@FreeBSD.ORG Subject: Re: ports/7365 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port request: korean/pgp.language State-Changed-From-To: analyzed-closed State-Changed-By: kuriyama State-Changed-When: Thu Sep 17 07:13:43 PDT 1998 State-Changed-Why: Committed. Thanks! Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: kuriyama Responsible-Changed-When: Thu Sep 17 07:13:43 PDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 07:16:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA13203 for freebsd-ports-outgoing; Thu, 17 Sep 1998 07:16:33 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from fallout.campusview.indiana.edu (fallout.campusview.indiana.edu [149.159.1.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA13108; Thu, 17 Sep 1998 07:16:06 -0700 (PDT) (envelope-from jfieber@indiana.edu) Received: from localhost (jfieber@localhost) by fallout.campusview.indiana.edu (8.8.8/8.8.7) with SMTP id JAA15309; Thu, 17 Sep 1998 09:13:07 -0500 (EST) Date: Thu, 17 Sep 1998 09:13:07 -0500 (EST) From: John Fieber To: Brian Somers cc: obrien@NUXI.com, ports@FreeBSD.ORG, cvs-committers@FreeBSD.ORG Subject: Re: DHCP in the base In-Reply-To: <199809170643.HAA05408@woof.lan.awfulhak.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 17 Sep 1998, Brian Somers wrote: > You must have missed this at the end of the dhclient.conf man page: > > This is a very complicated dhclient.conf file - in gen- > eral, yours should be much simpler. In many cases, it's > sufficient to just create an empty dhclient.conf file - > the defaults are usually fine. How about a little patch to move this block to the *beginning* of the man page to preface the the astonishingly the very complicated dhclient.conf example. -john To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 07:29:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA14603 for freebsd-ports-outgoing; Thu, 17 Sep 1998 07:29:51 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA14587; Thu, 17 Sep 1998 07:29:35 -0700 (PDT) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA10087; Thu, 17 Sep 1998 07:29:15 -0700 (PDT) Date: Thu, 17 Sep 1998 07:29:15 -0700 (PDT) Message-Id: <199809171429.HAA10087@freefall.freebsd.org> To: tg@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, tg@FreeBSD.ORG Subject: Re: ports/7933 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update to the xbl port Responsible-Changed-From-To: freebsd-ports->tg Responsible-Changed-By: tg Responsible-Changed-When: Thu Sep 17 07:27:34 PDT 1998 Responsible-Changed-Why: I'll take this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 08:40:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA27056 for freebsd-ports-outgoing; Thu, 17 Sep 1998 08:40:14 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from spook.navinet.net (spook.navinet.net [206.25.93.69]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA26954 for ; Thu, 17 Sep 1998 08:39:55 -0700 (PDT) (envelope-from forrie@forrie.com) Received: from forrie (black4.navinet.net [206.25.93.80]) by spook.navinet.net with SMTP id LAA13096 for ; Thu, 17 Sep 1998 11:39:27 -0400 (EDT) Message-Id: <199809171539.LAA13096@spook.navinet.net> X-Sender: forrie@206.25.93.69 X-Mailer: QUALCOMM Windows Eudora Pro Version 4.0.2 Date: Thu, 17 Sep 1998 11:05:24 -0400 To: ports@FreeBSD.ORG From: Forrest Aldrich Subject: Lesstif port (premake) broken Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Looks like there is a typo somewhere: *********************************************************** * W a r n i n g * * This port will overwrite your Motif installation. * *********************************************************** Is this ok? (y/n) ==> y >> Checksum OK for lesstif-0.86.0.tar.gz. ===> lesstif-0.86.0 depends on shared library: X11\.6 - not found <<<<<<< ===> Verifying install for X11\.6 in /usr/ports/x11/XFree86 >> X332src-1.tgz doesn't seem to exist on this system. Forrest To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 09:04:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA00480 for freebsd-ports-outgoing; Thu, 17 Sep 1998 09:04:20 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ghpc8.ihf.rwth-aachen.de (ghpc8.ihf.RWTH-Aachen.DE [134.130.90.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA00299 for ; Thu, 17 Sep 1998 09:04:03 -0700 (PDT) (envelope-from tg@ghpc8.ihf.rwth-aachen.de) Received: from ghpc6.ihf.rwth-aachen.de (ghpc6.ihf.rwth-aachen.de [134.130.90.6]) by ghpc8.ihf.rwth-aachen.de (8.8.8/8.8.6) with ESMTP id SAA24460; Thu, 17 Sep 1998 18:03:20 +0200 (CEST) Received: (from tg@localhost) by ghpc6.ihf.rwth-aachen.de (8.8.8/8.8.5) id SAA24484; Thu, 17 Sep 1998 18:03:19 +0200 (CEST) To: Forrest Aldrich Cc: ports@FreeBSD.ORG Subject: Re: Lesstif port (premake) broken References: <199809171539.LAA13096@spook.navinet.net> Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII From: Thomas Gellekum Date: 17 Sep 1998 18:03:18 +0200 In-Reply-To: Forrest Aldrich's message of "Thu, 17 Sep 1998 11:05:24 -0400" Message-ID: <87emta20c9.fsf@ghpc6.ihf.rwth-aachen.de> Lines: 12 X-Mailer: Gnus v5.6.34/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Forrest Aldrich writes: > ===> lesstif-0.86.0 depends on shared library: X11\.6 - not found > <<<<<<< > ===> Verifying install for X11\.6 in /usr/ports/x11/XFree86 > >> X332src-1.tgz doesn't seem to exist on this system. Works for me. Could you please install the latest bsd.port.mk and try again? If that fails, we probably need some more details, like OS version and whether you're using ELF. tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 09:24:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA05002 for freebsd-ports-outgoing; Thu, 17 Sep 1998 09:24:10 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from caffeine.internal.enteract.com (caffeine.internal.enteract.com [207.229.129.24]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id JAA04904 for ; Thu, 17 Sep 1998 09:24:00 -0700 (PDT) (envelope-from kdulzo@caffeine.internal.enteract.com) Received: (qmail 8595 invoked by uid 100); 17 Sep 1998 16:23:37 -0000 Message-ID: <19980917112336.A8203@caffeine.internal.enteract.com> Date: Thu, 17 Sep 1998 11:23:36 -0500 From: "Kevin M. Dulzo" To: Satoshi Asami Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/7956 Reply-To: kdulzo@enteract.com References: <199809170249.TAA14372@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199809170249.TAA14372@freefall.freebsd.org>; from Satoshi Asami on Wed, Sep 16, 1998 at 07:49:23PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Should the web page be changed to reflect this, and possibly how to do this for those not in the know? -Kevin On Wed, Sep 16, 1998 at 07:49:23PM -0700, Satoshi Asami wrote: | Synopsis: ldconfig in lib type ports broken | | State-Changed-From-To: open-closed | State-Changed-By: asami | State-Changed-When: Wed Sep 16 19:48:43 PDT 1998 | State-Changed-Why: | Updated. However, you should really be grabbing the latest bsd.port.mk | by yourself, everything is changing way too quickly now. | | To Unsubscribe: send mail to majordomo@FreeBSD.org | with "unsubscribe freebsd-ports" in the body of the message -- .-._.-. To see a thing uncolored by one's own personal preferences and desires is to see it in its own pristine simplicity. ._.-._. +==-- | Kevin M. Dulzo Check us out! | | Network Operations http://www.enteract.com | | Enteract, L.L.C. mailto: info@enteract.com| | kdulzo@enteract.com (773)248-8511 | --==+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 13:07:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA14614 for freebsd-ports-outgoing; Thu, 17 Sep 1998 13:07:02 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from chumbly.math.missouri.edu (chumbly.math.missouri.edu [128.206.72.12]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id NAA14591; Thu, 17 Sep 1998 13:06:54 -0700 (PDT) (envelope-from rich@math.missouri.edu) Received: from math.missouri.edu by chumbly.math.missouri.edu via ESMTP (950413.SGI.8.6.12/940406.SGI.AUTO) id PAA22956; Thu, 17 Sep 1998 15:06:31 -0500 Message-ID: <36016BC6.7847ED54@math.missouri.edu> Date: Thu, 17 Sep 1998 15:06:31 -0500 From: Rich Winkel X-Mailer: Mozilla 4.04 [en] (X11; U; IRIX 6.2 IP22) MIME-Version: 1.0 To: msmith@FreeBSD.ORG CC: ports@FreeBSD.ORG Subject: FreeBSD Port: staroffice-3.1 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi! Thanks for making this available. I noticed the current version at their web site is 5.0. Any idea when this will be available as a port? (I can't read german :() Richard Winkel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 13:12:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA16201 for freebsd-ports-outgoing; Thu, 17 Sep 1998 13:12:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA16125 for ; Thu, 17 Sep 1998 13:11:48 -0700 (PDT) (envelope-from roberto@keltia.freenix.fr) Received: (from uucp@localhost) by frmug.org (8.9.1/frmug-2.3/nospam) with UUCP id WAA17599 for ports@FreeBSD.ORG; Thu, 17 Sep 1998 22:11:25 +0200 (CEST) (envelope-from roberto@keltia.freenix.fr) Received: by keltia.freenix.fr (VMailer, from userid 101) id 6CDFC1511; Thu, 17 Sep 1998 21:43:59 +0200 (CEST) Date: Thu, 17 Sep 1998 21:43:59 +0200 From: Ollivier Robert To: ports@FreeBSD.ORG Subject: Re: ELF transition for ports Message-ID: <19980917214359.A23783@keltia.freenix.fr> Mail-Followup-To: ports@FreeBSD.ORG References: <199809100657.XAA10293@silvia.hip.berkeley.edu> <19980917160149.A23619@cons.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.94.4i In-Reply-To: <19980917160149.A23619@cons.org>; from Martin Cracauer on Thu, Sep 17, 1998 at 04:01:49PM +0200 X-Operating-System: FreeBSD 3.0-CURRENT/ELF ctm#4648 AMD-K6 MMX @ 200 MHz Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org According to Martin Cracauer: > My shells/scsh port doesn't even build on ELF and I don't think I can > fix that until 3.0-RELEASE. I've build recent versions of tcsh w/o problems under ELF. Where is it failing ? (I can't test the current port because I don't have this version -- 6.07.02 -- anymore and 6.08 is around the corner). "./configure; make; make install install.man" should work. >From the current port against 6.07.10 (.11 is out already so I'll check tomorrow), patch-ab/ac/af/ag are still needed and patch-ad/ae/ah/ai have troubles. -- Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 3.0-CURRENT #64: Fri Sep 11 23:22:44 CEST 1998 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 13:26:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA19753 for freebsd-ports-outgoing; Thu, 17 Sep 1998 13:26:38 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dt053nb4.san.rr.com (dt053nb4.san.rr.com [204.210.34.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA19680 for ; Thu, 17 Sep 1998 13:26:28 -0700 (PDT) (envelope-from Studded@dal.net) Received: from dal.net (Studded@localhost [127.0.0.1]) by dt053nb4.san.rr.com (8.8.8/8.8.8) with ESMTP id NAA04365; Thu, 17 Sep 1998 13:25:46 -0700 (PDT) (envelope-from Studded@dal.net) Message-ID: <3601704A.7EB980D1@dal.net> Date: Thu, 17 Sep 1998 13:25:46 -0700 From: Studded Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.06 [en] (X11; I; FreeBSD 2.2.7-STABLE-0914 i386) MIME-Version: 1.0 To: Sheldon Hearn CC: ports@FreeBSD.ORG Subject: Re: Contents of patchfiles References: <8090.906036015@axl.training.iafrica.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Sheldon Hearn wrote: > I'd like to know how the PortsMeisters feel about my doing this for > ports submissions. The gain is that users and future tinkers alike will > be able to see, at a glance, what a patch is supposed to do. The loss is > in disk space. I've got no authority to say yes or no, but as a user I'd say this would be a good thing to encourage. Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 13:41:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA23314 for freebsd-ports-outgoing; Thu, 17 Sep 1998 13:41:12 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA23185 for ; Thu, 17 Sep 1998 13:40:23 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA23550; Thu, 17 Sep 1998 13:40:01 -0700 (PDT) Date: Thu, 17 Sep 1998 13:40:01 -0700 (PDT) Message-Id: <199809172040.NAA23550@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Charlie ROOT Subject: re: ports/7581 Reply-To: Charlie ROOT Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/7581; it has been noted by GNATS. From: Charlie ROOT To: freebsd-gnats-submit@freebsd.org Cc: Subject: re: ports/7581 Date: Thu, 17 Sep 1998 16:28:33 -0400 (EDT) resubmission (due to upgrade, again) of ethereal port. apply patches to most recent shar sent. this is getting to be a long-ass pr. - bill fumerola [root/billf]@chc-chimes.com - computer horizons corp - - ph:(800)252.2421 x128 / bfumerol@computerhorizons.com - BF1560 - --- md5 Thu Sep 17 16:13:03 1998 +++ files/md5 Thu Sep 17 16:13:21 1998 @@ -1 +1 @@ -MD5 (ethereal-0.3.15.tar.gz) = 516550c68a10f2bac52e61b09fec01b4 +MD5 (ethereal-0.3.16.tar.gz) = 49700f2373486e3f3324938acfe7e3ba --- Makefile.old Thu Sep 17 16:12:50 1998 +++ Makefile Thu Sep 17 16:13:01 1998 @@ -6,7 +6,7 @@ # $Id: $ # -DISTNAME= ethereal-0.3.15 +DISTNAME= ethereal-0.3.16 CATEGORIES= net MASTER_SITES= http://ethereal.zing.org/distribution/ \ http://ethereal.boehm.org/distribution/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 14:23:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA05890 for freebsd-ports-outgoing; Thu, 17 Sep 1998 14:23:03 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from awfulhak.org (awfulhak.force9.co.uk [195.166.136.63]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA05618; Thu, 17 Sep 1998 14:21:41 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from woof.lan.awfulhak.org (root@woof.lan.awfulhak.org [172.16.0.7]) by awfulhak.org (8.8.8/8.8.8) with ESMTP id VAA04441; Thu, 17 Sep 1998 21:07:18 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from woof.lan.awfulhak.org (brian@localhost [127.0.0.1]) by woof.lan.awfulhak.org (8.9.1/8.9.1) with ESMTP id VAA20307; Thu, 17 Sep 1998 21:05:47 +0100 (BST) (envelope-from brian@woof.lan.awfulhak.org) Message-Id: <199809172005.VAA20307@woof.lan.awfulhak.org> X-Mailer: exmh version 2.0.2 2/24/98 To: John Fieber cc: Brian Somers , obrien@NUXI.com, ports@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, Doug Subject: Re: DHCP in the base In-reply-to: Your message of "Thu, 17 Sep 1998 09:13:07 CDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 17 Sep 1998 21:05:37 +0100 From: Brian Somers Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > On Thu, 17 Sep 1998, Brian Somers wrote: > > > You must have missed this at the end of the dhclient.conf man page: > > > > This is a very complicated dhclient.conf file - in gen- > > eral, yours should be much simpler. In many cases, it's > > sufficient to just create an empty dhclient.conf file - > > the defaults are usually fine. > > How about a little patch to move this block to the *beginning* of > the man page to preface the the astonishingly the very > complicated dhclient.conf example. Probably a good idea, but I'd tend to try to get the ISC crowd to do it rather than patching it locally.... of course if Doug (cc'd) ends up maintaining it, I'm sure he could put a word in ;-) > -john -- Brian , , Don't _EVER_ lose your sense of humour.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 15:36:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA23012 for freebsd-ports-outgoing; Thu, 17 Sep 1998 15:36:49 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA22975; Thu, 17 Sep 1998 15:36:21 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA28884; Thu, 17 Sep 1998 15:36:02 -0700 (PDT) Date: Thu, 17 Sep 1998 15:36:02 -0700 (PDT) Message-Id: <199809172236.PAA28884@freefall.freebsd.org> To: Studded@dal.net, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7910 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port submission, mergemaster script State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Thu Sep 17 15:33:06 PDT 1998 State-Changed-Why: Port committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 16:46:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA05525 for freebsd-ports-outgoing; Thu, 17 Sep 1998 16:46:38 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA05384 for ; Thu, 17 Sep 1998 16:46:05 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-24.ix.netcom.com [209.109.234.24]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id QAA07694; Thu, 17 Sep 1998 16:45:26 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id QAA16114; Thu, 17 Sep 1998 16:45:22 -0700 (PDT) Date: Thu, 17 Sep 1998 16:45:22 -0700 (PDT) Message-Id: <199809172345.QAA16114@silvia.hip.berkeley.edu> To: axl@iafrica.com CC: ports@FreeBSD.ORG In-reply-to: <8090.906036015@axl.training.iafrica.com> (message from Sheldon Hearn on Thu, 17 Sep 1998 14:40:15 +0200) Subject: Re: Contents of patchfiles From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * I'd like to know how the PortsMeisters feel about my doing this for * ports submissions. The gain is that users and future tinkers alike will * be able to see, at a glance, what a patch is supposed to do. The loss is * in disk space. The tradeoff is actually not in disk space (who cares about a few dozen bytes? :) but in human labor in the future as whoever fixes the port will have to hand-edit the patch to add it back. That said, it's certainly fine for me. (I edit patches all the time anyway.) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 17:19:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA12861 for freebsd-ports-outgoing; Thu, 17 Sep 1998 17:19:59 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from seera.nttlabs.com (seera.nttlabs.com [204.162.36.81]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA12718; Thu, 17 Sep 1998 17:19:16 -0700 (PDT) (envelope-from gene@nttlabs.com) Received: from localhost (gene@localhost) by seera.nttlabs.com (8.8.8/8.8.7) with SMTP id RAA00444; Thu, 17 Sep 1998 17:18:38 -0700 (PDT) X-Authentication-Warning: seera.nttlabs.com: gene owned process doing -bs Date: Thu, 17 Sep 1998 17:18:38 -0700 (PDT) From: "Eugene M. Kim" To: FreeBSD-current Mailing List , FreeBSD Ports Mailing List Subject: XFree86-3.3.2/ELF update Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, According to the new ELF porting rule, the XFree86-3.3.2/ELF that was previously released is now obsolete -- and bad. Please do not use it if you downloaded it at http://seera.nttlabs.com/~gene/XFree86.tar.gz. I deleted the file for now, and the new version will be available at the same URL in next couple of hours. Thanks! The new version does not bump up the shared lib versions. Therefore, you don't have to edit bsd.port.mk to have other X11 ports compiled. Regards, Eugene PS. As announced before, this port is supposed to be a backward-compatible one, so a.out users are also encouraged to test it. If you find any bugs please let me know as soon as possible. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Sep 17 17:21:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA13158 for freebsd-ports-outgoing; Thu, 17 Sep 1998 17:21:25 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA13016 for ; Thu, 17 Sep 1998 17:20:28 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-24.ix.netcom.com [209.109.234.24]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id RAA07732; Thu, 17 Sep 1998 17:19:44 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id RAA16202; Thu, 17 Sep 1998 17:18:46 -0700 (PDT) Date: Thu, 17 Sep 1998 17:18:46 -0700 (PDT) Message-Id: <199809180018.RAA16202@silvia.hip.berkeley.edu> To: cracauer@cons.org CC: ports@FreeBSD.ORG In-reply-to: <19980917160149.A23619@cons.org> (message from Martin Cracauer on Thu, 17 Sep 1998 16:01:49 +0200) Subject: Re: ELF transition for ports From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * My shells/scsh port doesn't even build on ELF and I don't think I can * fix that until 3.0-RELEASE. * * What to do, is there a seperate BROKEN variable for ELF? What do you think about this one? Satoshi ------- Index: bsd.port.mk =================================================================== RCS file: /home/ncvs/src/share/mk/bsd.port.mk,v retrieving revision 1.227.2.54 diff -u -r1.227.2.54 bsd.port.mk --- bsd.port.mk 1998/09/17 01:22:32 1.227.2.54 +++ bsd.port.mk 1998/09/18 00:12:30 @@ -92,6 +92,7 @@ # NO_CDROM - Port may not go on CDROM. # NO_PACKAGE - Port should not be packaged but distfiles can be put on # ftp sites and CDROMs. +# BROKEN_ELF - Port doesn't build on ELF machines. # BROKEN - Port is broken. # # This variable is a boolean, so you don't need to set it to the reason. @@ -979,6 +980,8 @@ # Don't build a port if it's restricted and we don't want to get # into that. # +# Don't build a port on an ELF machine if it's broken for ELF. +# # Don't build a port if it's broken. ################################################################ @@ -1016,6 +1019,8 @@ IGNORE= "defines NO_CONFIGURE, which is obsoleted" .elif defined(NO_PATCH) IGNORE= "defines NO_PATCH, which is obsoleted" +.elif (defined(BROKEN_ELF) && (${PORTOBJFORMAT} == "elf")) +IGNORE= "is broken for ELF: ${BROKEN_ELF}" .elif defined(BROKEN) IGNORE= "is marked as broken: ${BROKEN}" .endif To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 00:05:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA19681 for freebsd-ports-outgoing; Fri, 18 Sep 1998 00:05:42 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from cons.org (knight.cons.org [194.233.237.86]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA19672; Fri, 18 Sep 1998 00:05:38 -0700 (PDT) (envelope-from cracauer@cons.org) Received: (from cracauer@localhost) by cons.org (8.8.8/8.7.3) id JAA02288; Fri, 18 Sep 1998 09:05:04 +0200 (CEST) Message-ID: <19980918090503.A2274@cons.org> Date: Fri, 18 Sep 1998 09:05:03 +0200 From: Martin Cracauer To: Satoshi Asami , cracauer@cons.org Cc: ports@FreeBSD.ORG Subject: Re: ELF transition for ports References: <19980917160149.A23619@cons.org> <199809180018.RAA16202@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.1i In-Reply-To: <199809180018.RAA16202@silvia.hip.berkeley.edu>; from Satoshi Asami on Thu, Sep 17, 1998 at 05:18:46PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In <199809180018.RAA16202@silvia.hip.berkeley.edu>, Satoshi Asami wrote: > * My shells/scsh port doesn't even build on ELF and I don't think I can > * fix that until 3.0-RELEASE. > * > * What to do, is there a seperate BROKEN variable for ELF? > > What do you think about this one? What's what I had in mind first. I think that's a good thing to have in any case. Now I've got another idea: Can I rely on aout libraries to be present on 3.0 systems? If I find the time, I could modify the port so that it builds as aout even on machines with default == ELF. Martin -- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Martin Cracauer http://www.cons.org/cracauer Tel.: (private) +4940 5221829 Fax.: (private) +4940 5228536 Paper: (private) Waldstrasse 200, 22846 Norderstedt, Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 00:12:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA20548 for freebsd-ports-outgoing; Fri, 18 Sep 1998 00:12:19 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from cons.org (knight.cons.org [194.233.237.86]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA20543 for ; Fri, 18 Sep 1998 00:12:15 -0700 (PDT) (envelope-from cracauer@cons.org) Received: (from cracauer@localhost) by cons.org (8.8.8/8.7.3) id JAA02305 for ports@FreeBSD.ORG; Fri, 18 Sep 1998 09:11:52 +0200 (CEST) Message-ID: <19980918091152.B2274@cons.org> Date: Fri, 18 Sep 1998 09:11:52 +0200 From: Martin Cracauer To: ports@FreeBSD.ORG Subject: Re: ELF transition for ports References: <199809100657.XAA10293@silvia.hip.berkeley.edu> <19980917160149.A23619@cons.org> <19980917214359.A23783@keltia.freenix.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.1i In-Reply-To: <19980917214359.A23783@keltia.freenix.fr>; from Ollivier Robert on Thu, Sep 17, 1998 at 09:43:59PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In <19980917214359.A23783@keltia.freenix.fr>, Ollivier Robert wrote: > According to Martin Cracauer: > > My shells/scsh port doesn't even build on ELF and I don't think I can > > fix that until 3.0-RELEASE. > > I've build recent versions of tcsh w/o problems under ELF. Where is it > failing ? (I can't test the current port because I don't have this version > -- 6.07.02 -- anymore and 6.08 is around the corner). As I understand (the mechanism isn't obvious), scsh tries to lookup symbol addresses of systems call hooks (and maybe other code) in libc by itself. Remember that scsh isn't a normal shell, but a beast that is supposed to use every system call on user's demand at runtime. I won't even start talking about my other ports. rdate works, though :-) Martin -- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Martin Cracauer http://www.cons.org/cracauer Tel.: (private) +4940 5221829 Fax.: (private) +4940 5228536 Paper: (private) Waldstrasse 200, 22846 Norderstedt, Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 00:26:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA22002 for freebsd-ports-outgoing; Fri, 18 Sep 1998 00:26:47 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA21994 for ; Fri, 18 Sep 1998 00:26:39 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-24.ix.netcom.com [209.109.234.24]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id AAA08061; Fri, 18 Sep 1998 00:26:16 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id AAA16956; Fri, 18 Sep 1998 00:26:12 -0700 (PDT) Date: Fri, 18 Sep 1998 00:26:12 -0700 (PDT) Message-Id: <199809180726.AAA16956@silvia.hip.berkeley.edu> To: cracauer@cons.org CC: cracauer@cons.org, ports@FreeBSD.ORG In-reply-to: <19980918090503.A2274@cons.org> (message from Martin Cracauer on Fri, 18 Sep 1998 09:05:03 +0200) Subject: Re: ELF transition for ports From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Martin Cracauer * Now I've got another idea: Can I rely on aout libraries to be present * on 3.0 systems? If I find the time, I could modify the port so that it * builds as aout even on machines with default == ELF. No, and don't bother, a.out is going away anyway. Why don't you spend time fixing more stuff for ELF. :> Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 00:27:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA22104 for freebsd-ports-outgoing; Fri, 18 Sep 1998 00:27:47 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA22078 for ; Fri, 18 Sep 1998 00:27:27 -0700 (PDT) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca5-24.ix.netcom.com [209.109.234.24]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id AAA08065; Fri, 18 Sep 1998 00:26:57 -0700 (PDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id AAA16961; Fri, 18 Sep 1998 00:26:54 -0700 (PDT) Date: Fri, 18 Sep 1998 00:26:54 -0700 (PDT) Message-Id: <199809180726.AAA16961@silvia.hip.berkeley.edu> To: roberto@keltia.freenix.fr CC: ports@FreeBSD.ORG In-reply-to: <19980917214359.A23783@keltia.freenix.fr> (message from Ollivier Robert on Thu, 17 Sep 1998 21:43:59 +0200) Subject: Re: ELF transition for ports From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Ollivier Robert * According to Martin Cracauer: * > My shells/scsh port doesn't even build on ELF and I don't think I can * > fix that until 3.0-RELEASE. * * I've build recent versions of tcsh w/o problems under ELF. Where is it * failing ? (I can't test the current port because I don't have this version * -- 6.07.02 -- anymore and 6.08 is around the corner). scsh != tcsh Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 02:30:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA06570 for freebsd-ports-outgoing; Fri, 18 Sep 1998 02:30:26 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA06560 for ; Fri, 18 Sep 1998 02:30:21 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA20484; Fri, 18 Sep 1998 02:30:01 -0700 (PDT) Received: from mail.tower.net.au (orion.tower.net.au [203.22.233.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA05993 for ; Fri, 18 Sep 1998 02:26:39 -0700 (PDT) (envelope-from anthony@dino.omen.com.au) Received: from magenta.tower.net.au ([203.15.138.208]) by mail.tower.net.au with esmtp id m0zJwnY-000T6uC (Smail-3.2.0.92 1997-Feb-9 #2); Fri, 18 Sep 1998 17:25:52 +0800 (WST) Message-Id: <199809181727.RAA05945@magenta.tower.net.au> Date: Fri, 18 Sep 1998 17:27:18 GMT From: anthony@dino.omen.com.au Reply-To: anthony@dino.omen.com.au To: anthony@indigo.tower.net.au X-Send-Pr-Version: 3.2 Subject: ports/7971: cnet port/package doesn't work Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7971 >Category: ports >Synopsis: The cnet port won't build, and the cnet package won't run. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 18 02:30:00 PDT 1998 >Last-Modified: >Originator: Anthony Di Pietro >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD-current system running on a Pentium 200 MMX with 32M of RAM and 1.6G HDD. >Description: The cnet port does not compile (compilation errors occur). The cnet package does not run (complains about unknown symbols; I suspect that the compile.c provided with the FreeBSD port does not properly link the binary cnet produces). Additionally, the cnet port is out of date (a new version exists). >How-To-Repeat: Try compiling the cnet port on -current. Try installing the cnet package on -current and running it on the example files that come with cnet. >Fix: I'm not sure why it doesn't compile, but I suspect the problem with the package is caused by something not being linked that should be in compile.c. Note that compile.c is a platform-specific file that compiles the executable cnet ultimately produces. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 02:37:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA07402 for freebsd-ports-outgoing; Fri, 18 Sep 1998 02:37:55 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from cons.org (knight.cons.org [194.233.237.86]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA07394; Fri, 18 Sep 1998 02:37:45 -0700 (PDT) (envelope-from cracauer@cons.org) Received: (from cracauer@localhost) by cons.org (8.8.8/8.7.3) id LAA02528; Fri, 18 Sep 1998 11:37:20 +0200 (CEST) Message-ID: <19980918113720.A2523@cons.org> Date: Fri, 18 Sep 1998 11:37:20 +0200 From: Martin Cracauer To: Satoshi Asami , cracauer@cons.org Cc: ports@FreeBSD.ORG Subject: Re: ELF transition for ports References: <19980918090503.A2274@cons.org> <199809180726.AAA16956@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.1i In-Reply-To: <199809180726.AAA16956@silvia.hip.berkeley.edu>; from Satoshi Asami on Fri, Sep 18, 1998 at 12:26:12AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In <199809180726.AAA16956@silvia.hip.berkeley.edu>, Satoshi Asami wrote: > * From: Martin Cracauer > > * Now I've got another idea: Can I rely on aout libraries to be present > * on 3.0 systems? If I find the time, I could modify the port so that it > * builds as aout even on machines with default == ELF. > > No, and don't bother, a.out is going away anyway. Why don't you spend > time fixing more stuff for ELF. :> You don't know what my other ports look like under ELF... Martin -- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Martin Cracauer http://www.cons.org/cracauer Tel.: (private) +4940 5221829 Fax.: (private) +4940 5228536 Paper: (private) Waldstrasse 200, 22846 Norderstedt, Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 06:53:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA27557 for freebsd-ports-outgoing; Fri, 18 Sep 1998 06:53:39 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA27551 for ; Fri, 18 Sep 1998 06:53:36 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: from dragon.nuxi.com (d96-072.orchard2.ucdavis.edu [169.237.96.72]) by relay.nuxi.com (8.8.8/8.6.12) with ESMTP id GAA08537; Fri, 18 Sep 1998 06:53:02 -0700 (PDT) Received: (from obrien@localhost) by dragon.nuxi.com (8.8.8/8.8.8) id NAA02782; Fri, 18 Sep 1998 13:53:12 GMT (envelope-from obrien) Message-ID: <19980918065312.A2702@nuxi.com> Date: Fri, 18 Sep 1998 06:53:12 -0700 From: "David O'Brien" To: Rich Winkel Cc: ports@FreeBSD.ORG Subject: Re: FreeBSD Port: staroffice-3.1 Reply-To: obrien@NUXI.com References: <36016BC6.7847ED54@math.missouri.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <36016BC6.7847ED54@math.missouri.edu>; from Rich Winkel on Thu, Sep 17, 1998 at 03:06:31PM -0500 X-Operating-System: FreeBSD 3.0-19980804-SNAP Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > site is 5.0. Any idea when this will be available as a port? (I can't > read german :() I'm not able to run the install program under Linux emulation under 3.0-CURRENT. I'm guessing that with all this glibc6 crap (and addition of new lib names) our Linux emulation is starting to be outdated. -- -- David (obrien@NUXI.com -or- obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 11:21:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA03205 for freebsd-ports-outgoing; Fri, 18 Sep 1998 11:21:06 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA03078 for ; Fri, 18 Sep 1998 11:20:38 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA00440; Fri, 18 Sep 1998 11:20:06 -0700 (PDT) Received: from core.pavilion.net (core.pavilion.net [194.242.128.24]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA02890 for ; Fri, 18 Sep 1998 07:26:32 -0700 (PDT) (envelope-from joe@pavilion.net) Received: (from root@localhost) by core.pavilion.net (8.8.8/8.8.8) id PAA09587; Fri, 18 Sep 1998 15:26:00 +0100 (BST) (envelope-from joe) Message-Id: <199809181426.PAA09587@core.pavilion.net> Date: Fri, 18 Sep 1998 15:26:00 +0100 (BST) From: Josef Karthauser Reply-To: joe@pavilion.net To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7977: Update to the ripetools port. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7977 >Category: ports >Synopsis: Update to the ripetools port. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Sep 18 11:20:05 PDT 1998 >Last-Modified: >Originator: Josef Karthauser >Organization: Pavilion Internet plc >Release: FreeBSD 2.2.7-STABLE i386 >Environment: >Description: Update to the ripetools port. >How-To-Repeat: >Fix: New makefile: # New ports collection makefile for: ripe-whois # Version required: 2.2 # Date created: 5th June 1997 # Whom: joe@uk.freebsd.org # # $Id: Makefile,v 1.1.1.1 1997/06/08 16:17:16 jfitz Exp $ # DISTNAME= ripe-whois-tools-2.3 PKGNAME= ripetools-2.3 CATEGORIES= net MASTER_SITES= ftp://ftp.ripe.net/tools/ MAINTAINER= joe@uk.freebsd.org MAN1= ripewhois.1 .include >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 11:21:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA03213 for freebsd-ports-outgoing; Fri, 18 Sep 1998 11:21:07 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA03087 for ; Fri, 18 Sep 1998 11:20:38 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA00450; Fri, 18 Sep 1998 11:20:07 -0700 (PDT) Date: Fri, 18 Sep 1998 11:20:07 -0700 (PDT) Message-Id: <199809181820.LAA00450@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Josef Karthauser Subject: Re: ports/7733: Mrtg port doesn't use most recent tarball. Reply-To: Josef Karthauser Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/7733; it has been noted by GNATS. From: Josef Karthauser To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: ports/7733: Mrtg port doesn't use most recent tarball. Date: Fri, 18 Sep 1998 16:21:30 +0100 On Mon, Aug 24, 1998 at 10:41:52AM +0100, Josef Karthauser wrote: > > >Number: 7733 > >Category: ports > >Synopsis: Mrtg port doesn't use most recent tarball. > >Confidential: no > >Severity: non-critical > >Priority: medium > >Responsible: freebsd-ports > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: change-request > >Submitter-Id: current-users > >Arrival-Date: Mon Aug 24 02:50:00 PDT 1998 > >Last-Modified: > >Originator: Josef Karthauser > >Organization: > Pavilion Internet plc > >Release: FreeBSD 2.2.6-STABLE i386 > >Environment: > >Description: > > The net/mrtg port doesn't use the most recent tar ball. > It currently uses mrtg-2.5.1.tar.gz and it should be > using mrtg-2.5.3.tar.gz. > >How-To-Repeat: > >Fix: > >Audit-Trail: > >Unformatted: I've fixed this now and uploaded the new version to ftp.freebsd.org/pub/FreeBSD/incoming/mrtg-2.5.3.tgz Can someone commit it please? Thanks. -- Josef Karthauser Technical Manager FreeBSD: The power to serve (http://www.uk.freebsd.org) Pavilion Internet plc. [joe@pavilion.net, joe@uk.freebsd.org, joe@tao.org.uk] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 11:35:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA06589 for freebsd-ports-outgoing; Fri, 18 Sep 1998 11:35:02 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from jade.chc-chimes.com (jade.chc-chimes.com [206.67.97.83]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA06474; Fri, 18 Sep 1998 11:34:20 -0700 (PDT) (envelope-from billf@jade.chc-chimes.com) Received: from localhost (billf@localhost) by jade.chc-chimes.com (8.8.8/8.8.8) with SMTP id OAA16446; Fri, 18 Sep 1998 14:32:35 -0400 (EDT) (envelope-from billf@jade.chc-chimes.com) Date: Fri, 18 Sep 1998 14:32:34 -0400 (EDT) From: Bill Fumerola To: Bill Fumerola cc: ports@FreeBSD.ORG, jfitz@FreeBSD.ORG, ivan-freeside@sisd.com Subject: Re: freeside CGI patch (fwd) In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-1929661467-906143554=:11861" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-1929661467-906143554=:11861 Content-Type: TEXT/PLAIN; charset=US-ASCII On Fri, 18 Sep 1998, Ivan Kohler wrote: > On Thu, 17 Sep 1998, Bill Fumerola wrote: > > > how important is having CGI-modules installed with the patch. The FreeBSD > > ports tree already has this module (www/p5-CGI) setup. > > I believe that is CGI.pm, which is different than CGI-modules. billf@jade$ pwd /usr/ports/www/p5-CGI billf@jade$ cat Makefile |grep DISTNAME DISTNAME= CGI-modules-2.76 billf@jade$ cat pkg/PLIST |grep Base lib/perl5/site_perl/%%PERL_VER%%/CGI/Base.pm Base.pm is the file being patched, so I think p5-CGI is the correct FreeBSD package/port. > > Also, if that patch is applied, will it break other things, or is it just > > something that should have been done anyways? > Probably something that should have been done anyways. I'd be surprised > if it breaks anything else. I'm including your patch in this email and cc'ing the freebsd ports team in the p5-CGI maintainer in hopes that he will include this patch and commit it so I don't have to dupe his stuff and include it in my port for a two word change. thank you, - bill fumerola [root/billf]@chc-chimes.com - computer horizons corp - - ph:(800)252.2421 x128 / bfumerol@computerhorizons.com - BF1560 - "Logic, like whiskey, loses its beneficial effect when taken in too large quantities" -Lord Dunsany --0-1929661467-906143554=:11861 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=PATCH Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: aXZhbkByb290d29vZDp+L3NyYy9DR0ktbW9kdWxlcy0yLjc2L0NHSSQgZGlm ZiAtYyBCYXNlLnBtIEJhc2UucG0ub3JpZyANCioqKiBCYXNlLnBtICAgICBT YXQgSnVsIDE4IDAwOjMzOjIxIDE5OTgNCi0tLSBCYXNlLnBtLm9yaWcgICAg ICAgIFNhdCBKdWwgMTggMDA6MDY6MTIgMTk5OA0KKioqKioqKioqKioqKioq DQoqKiogOTM4LDk0NSAqKioqDQogICAgICBteSAkb3JpZ191cmkgPSAkc2Vs Zi0+Z2V0X3VyaTsNCiAgICAgICRzZWxmLT5sb2coIlJlZGlyZWN0aW5nICRD R0k6OkJhc2U6OlJFUVVFU1RfTUVUSE9EICRvcmlnX3VyaSB0byAkdG9fdXJp IikNCiAgICAgICAgaWYgJERlYnVnOw0KISAgICAgbXkgJG1zZyA9ICAgKCRw ZXJtKSA/IFN0YXR1c0hkcigzMDEsIk1vdmVkIFBlcm1hbmVudGx5IikNCiEg ICAgICAgICAgICAgICAgICAgICAgIDogU3RhdHVzSGRyKDMwMiwiTW92ZWQg VGVtcG9yYXJpbHkiKTsNCiAgICAgIG15ICRoZHJzID0gU2VuZEhlYWRlcnMo JG1zZywgTG9jYXRpb25IZHIoJHRvX3VyaSkpOw0KICAgICAgJHNlbGYtPmxv ZygkaGRycyk7DQogIH0NCi0tLSA5MzgsOTQ1IC0tLS0NCiAgICAgIG15ICRv cmlnX3VyaSA9ICRzZWxmLT5nZXRfdXJpOw0KICAgICAgJHNlbGYtPmxvZygi UmVkaXJlY3RpbmcgJENHSTo6QmFzZTo6UkVRVUVTVF9NRVRIT0QgJG9yaWdf dXJpIHRvICR0b191cmkiKQ0KICAgICAgICBpZiAkRGVidWc7DQohICAgICBt eSAkbXNnID0gICAoJHBlcm0pID8gU2VydmVySGRyKDMwMSwiTW92ZWQgUGVy bWFuZW50bHkiKQ0KISAgICAgICAgICAgICAgICAgICAgICAgOiBTZXJ2ZXJI ZHIoMzAyLCJNb3ZlZCBUZW1wb3JhcmlseSIpOw0KICAgICAgbXkgJGhkcnMg PSBTZW5kSGVhZGVycygkbXNnLCBMb2NhdGlvbkhkcigkdG9fdXJpKSk7DQog ICAgICAkc2VsZi0+bG9nKCRoZHJzKTsNCiAgfQ0KDQoNCg== --0-1929661467-906143554=:11861-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 11:48:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA09084 for freebsd-ports-outgoing; Fri, 18 Sep 1998 11:48:41 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from esmeralda.xaa.iae.nl (esmeralda.xaa.iae.nl [194.151.75.9]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA09064 for ; Fri, 18 Sep 1998 11:48:33 -0700 (PDT) (envelope-from freebsd@xaa.iae.nl) Received: from ariel.xaa.iae.nl (ariel.xaa.iae.nl [194.151.75.10]) by esmeralda.xaa.iae.nl (VMailer) with ESMTP id 043B93B9; Fri, 18 Sep 1998 20:47:59 +0200 (MET DST) Received: by ariel.xaa.iae.nl (VMailer, from userid 1008) id 8DABF4560; Fri, 18 Sep 1998 20:47:59 +0200 (CEST) Message-ID: <19980918204759.A705@xaa.iae.nl> Date: Fri, 18 Sep 1998 20:47:59 +0200 From: Mark Huizer To: ports@FreeBSD.ORG Subject: Re: ELF transition for ports (revised) References: <199809170114.SAA10463@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199809170114.SAA10463@silvia.hip.berkeley.edu>; from Satoshi Asami on Wed, Sep 16, 1998 at 06:14:55PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > (3a) Elf libraries should be called "libfoo.so.M". (It is not > allowed to create an elf library with a name "libfoo.so.M.N", > even if you create a symlink to make it accessible via > "libfoo.so.M".) Also, assuming "cc -shared" is used rather than > "ld" directly, the only difference is that they need to add > "-Wl,-soname,libfoo.so.M" on the command line. so it doesn't matter that you'd have .so.1.2.2 truncated to .so.1 and the next (.so.1.2.3) will also be called .so.1? (this is for the libslang port that wants to install libslang.1.2.2 Mark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 14:58:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA10183 for freebsd-ports-outgoing; Fri, 18 Sep 1998 14:58:25 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA10065; Fri, 18 Sep 1998 14:58:06 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA02416; Fri, 18 Sep 1998 14:57:42 -0700 (PDT) Date: Fri, 18 Sep 1998 14:57:42 -0700 (PDT) Message-Id: <199809182157.OAA02416@freefall.freebsd.org> To: billf@jade.chc-chimes.com, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7581 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port [net x11]/ethereal State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Fri Sep 18 14:57:19 PDT 1998 State-Changed-Why: Committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 15:04:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA11414 for freebsd-ports-outgoing; Fri, 18 Sep 1998 15:04:49 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from pouncequick.sisd.com ([207.106.146.192]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id PAA11394 for ; Fri, 18 Sep 1998 15:04:38 -0700 (PDT) (envelope-from ivan@sisd.com) Received: (qmail 6313 invoked by uid 1000); 18 Sep 1998 22:06:14 -0000 Date: Fri, 18 Sep 1998 18:06:14 -0400 (EDT) From: Ivan Kohler To: Bill Fumerola cc: Bill Fumerola , ports@FreeBSD.ORG, jfitz@FreeBSD.ORG Subject: Re: freeside CGI patch (fwd) In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 18 Sep 1998, Bill Fumerola wrote: > On Fri, 18 Sep 1998, Ivan Kohler wrote: > > On Thu, 17 Sep 1998, Bill Fumerola wrote: > > > > > how important is having CGI-modules installed with the patch. The FreeBSD > > > ports tree already has this module (www/p5-CGI) setup. > > > > I believe that is CGI.pm, which is different than CGI-modules. > > billf@jade$ pwd > /usr/ports/www/p5-CGI > billf@jade$ cat Makefile |grep DISTNAME > DISTNAME= CGI-modules-2.76 > billf@jade$ cat pkg/PLIST |grep Base > lib/perl5/site_perl/%%PERL_VER%%/CGI/Base.pm > > Base.pm is the file being patched, so I think p5-CGI is the correct > FreeBSD package/port. Sorry about that. You are of course correct. > > > Also, if that patch is applied, will it break other things, or is it just > > > something that should have been done anyways? > > Probably something that should have been done anyways. I'd be surprised > > if it breaks anything else. > > I'm including your patch in this email and cc'ing the freebsd ports team > in the p5-CGI maintainer in hopes that he will include this patch and > commit it so I don't have to dupe his stuff and include it in my port for > a two word change. I sent the patch to the CGI-modules maintainer a few times, but it looks like CGI-modules is no longer being maintained. I plan on migrating to CGI.pm soon; anyone using CGI-modules should probably do the same. Perhaps you would like to include a note to that effect in the port. > - bill fumerola [root/billf]@chc-chimes.com - computer horizons corp - > - ph:(800)252.2421 x128 / bfumerol@computerhorizons.com - BF1560 - -- Ivan Kohler - finger for PGP key Silicon Interactive Software Design - http://www.sisd.com/ - 888-670-SISD Open-source billing and administration for ISPs - http://www.sisd.com/freeside 20 4,16 * * * saytime # please don't be surprised if you find me dreaming too To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 15:07:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA12046 for freebsd-ports-outgoing; Fri, 18 Sep 1998 15:07:05 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA12001; Fri, 18 Sep 1998 15:06:54 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA02936; Fri, 18 Sep 1998 15:06:31 -0700 (PDT) Date: Fri, 18 Sep 1998 15:06:31 -0700 (PDT) Message-Id: <199809182206.PAA02936@freefall.freebsd.org> To: shige@kuis.kyoto-u.ac.jp, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7891 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: editors/leim20 State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Fri Sep 18 15:06:03 PDT 1998 State-Changed-Why: Committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 15:09:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA12658 for freebsd-ports-outgoing; Fri, 18 Sep 1998 15:09:19 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA12569; Fri, 18 Sep 1998 15:08:46 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA03091; Fri, 18 Sep 1998 15:08:23 -0700 (PDT) Date: Fri, 18 Sep 1998 15:08:23 -0700 (PDT) Message-Id: <199809182208.PAA03091@freefall.freebsd.org> To: clkao@CirX.ORG, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7882 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Emacs with leim package State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Fri Sep 18 15:07:40 PDT 1998 State-Changed-Why: We have leim20 ports, so we don't need this. thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 15:54:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA22228 for freebsd-ports-outgoing; Fri, 18 Sep 1998 15:54:56 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from rigel.cs.pdx.edu (rigel.cs.pdx.edu [131.252.220.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA21998 for ; Fri, 18 Sep 1998 15:53:26 -0700 (PDT) (envelope-from john@baldwin-mchugh.com) Received: from baldwin-mchugh.com (titanic.cs.pdx.edu [131.252.222.163]) by rigel.cs.pdx.edu (8.9.1/8.9.1) with ESMTP id PAA09473 for ; Fri, 18 Sep 1998 15:52:33 -0700 (PDT) Message-ID: <3602E44F.105FB25F@baldwin-mchugh.com> Date: Fri, 18 Sep 1998 15:53:03 -0700 From: John McHugh Organization: Baldwin / McHugh Associates X-Mailer: Mozilla 4.02 [en] (WinNT; U) MIME-Version: 1.0 To: ports@FreeBSD.ORG Subject: rtf2latex Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The file for this (rtf2latex.tar) seems to be defective. When I try to load it from http://www.freebsd.org/ports/print.html, I get a 490 byte file. John McHugh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 15:57:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA23051 for freebsd-ports-outgoing; Fri, 18 Sep 1998 15:57:31 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mrmell (ppp5592.on.bellglobal.com [206.172.197.144]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA22847 for ; Fri, 18 Sep 1998 15:56:58 -0700 (PDT) (envelope-from vanderh@ecf.toronto.edu) Received: (from tim@localhost) by mrmell (8.8.8/8.8.8) id SAA00264; Fri, 18 Sep 1998 18:57:29 -0400 (EDT) (envelope-from tim) Message-ID: <19980918185728.A248@mrmell> Date: Fri, 18 Sep 1998 18:57:28 -0400 From: Tim Vanderhoek To: Archie Cobbs , John Fieber Cc: marquis@roble.com, ports@FreeBSD.ORG Subject: Re: sshd References: <199809140706.AAA16521@bubba.whistle.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199809140706.AAA16521@bubba.whistle.com>; from Archie Cobbs on Mon, Sep 14, 1998 at 12:06:05AM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Sep 14, 1998 at 12:06:05AM -0700, Archie Cobbs wrote: > > If someone was interested, it would be easy to write a script > that checks all the ports: Yes and no. :) Ports are not necessarily supposed to remove everything they install. What's needed (and has been needed for a long time) is to allow the user to choose between "pkg_delete_for_ever" and "pkg_delete_im_gonna_upgrade_now" (where there upgrading is the most commen reason for desiring such as deinstall, but not the only one). Currently all deinstalls are of the "pkg_delete_im_gonna_upgrade_now" type. To be even more ambitious, you should consider comparing /etc before and after, too. Maybe throw-in a comparison of /etc between install and deinstall, too. Some ports modify things in there that they should not (mgetty+sendfax bit me last time I installed it, for example). Without first implementing a "pkg_delete_for_ever", though, you'll get a lot of noise. > - mount / and /usr read-only [...] > - cycle through every port and: A (probably) surprising number of ports will legitimately require a read-write /. -- This .sig is not innovative, witty, or profund. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 16:03:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA24543 for freebsd-ports-outgoing; Fri, 18 Sep 1998 16:03:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mrmell (ppp5592.on.bellglobal.com [206.172.197.144]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA24335 for ; Fri, 18 Sep 1998 16:02:12 -0700 (PDT) (envelope-from vanderh@ecf.toronto.edu) Received: (from tim@localhost) by mrmell (8.8.8/8.8.8) id TAA00277; Fri, 18 Sep 1998 19:02:43 -0400 (EDT) (envelope-from tim) Message-ID: <19980918190242.B248@mrmell> Date: Fri, 18 Sep 1998 19:02:42 -0400 From: Tim Vanderhoek To: Chuck Robey , Craig Burgess Cc: freebsd-ports@FreeBSD.ORG Subject: Re: modula 3 "make install" References: <35FCB44A.FA49EA3F@home.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: ; from Chuck Robey on Mon, Sep 14, 1998 at 08:05:26PM -0400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Sep 14, 1998 at 08:05:26PM -0400, Chuck Robey wrote: > > Make is one of the most central tools to software. The man page for > make is not that bad, but maybe it isn't a good intro to someone > starting from absolute zero. There's a really good O'Reilly book on > make, I recommend you buy and study it. /usr/share/doc/ used to have something about pmake, too. Craig, could you post the results of $ ls /var/db/pkg ? If you're using vi as you're editor, just do !!ls /var/db/pkg -- This .sig is not innovative, witty, or profund. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 16:25:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA29838 for freebsd-ports-outgoing; Fri, 18 Sep 1998 16:25:56 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA29786 for ; Fri, 18 Sep 1998 16:25:42 -0700 (PDT) (envelope-from roberto@keltia.freenix.fr) Received: (from uucp@localhost) by frmug.org (8.9.1/frmug-2.3/nospam) with UUCP id BAA04602 for ports@FreeBSD.ORG; Sat, 19 Sep 1998 01:25:13 +0200 (CEST) (envelope-from roberto@keltia.freenix.fr) Received: by keltia.freenix.fr (VMailer, from userid 101) id 80D311511; Sat, 19 Sep 1998 00:54:19 +0200 (CEST) Date: Sat, 19 Sep 1998 00:54:19 +0200 From: Ollivier Robert To: ports@FreeBSD.ORG Subject: Re: ELF transition for ports Message-ID: <19980919005419.A758@keltia.freenix.fr> Mail-Followup-To: ports@FreeBSD.ORG References: <19980917214359.A23783@keltia.freenix.fr> <199809180726.AAA16961@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.94.4i In-Reply-To: <199809180726.AAA16961@silvia.hip.berkeley.edu>; from Satoshi Asami on Fri, Sep 18, 1998 at 12:26:54AM -0700 X-Operating-System: FreeBSD 3.0-CURRENT/ELF ctm#4654 AMD-K6 MMX @ 200 MHz Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org According to Satoshi Asami: > scsh != tcsh *-<:) That's what I saw when Martin replied... [goes back under his stone] -- Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 3.0-CURRENT #64: Fri Sep 11 23:22:44 CEST 1998 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 16:34:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA01566 for freebsd-ports-outgoing; Fri, 18 Sep 1998 16:34:01 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from whistle.com (s205m131.whistle.com [207.76.205.131]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA01511 for ; Fri, 18 Sep 1998 16:33:29 -0700 (PDT) (envelope-from archie@whistle.com) Received: (from smap@localhost) by whistle.com (8.7.5/8.6.12) id QAA01489; Fri, 18 Sep 1998 16:33:03 -0700 (PDT) Received: from bubba.whistle.com(207.76.205.7) by whistle.com via smap (V1.3) id sma001487; Fri Sep 18 16:32:36 1998 Received: (from archie@localhost) by bubba.whistle.com (8.8.7/8.6.12) id QAA20213; Fri, 18 Sep 1998 16:32:36 -0700 (PDT) From: Archie Cobbs Message-Id: <199809182332.QAA20213@bubba.whistle.com> Subject: Re: sshd In-Reply-To: <19980918185728.A248@mrmell> from Tim Vanderhoek at "Sep 18, 98 06:57:28 pm" To: vanderh@ecf.utoronto.ca (Tim Vanderhoek) Date: Fri, 18 Sep 1998 16:32:36 -0700 (PDT) Cc: fieber@indiana.edu, marquis@roble.com, ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL38 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Tim Vanderhoek writes: > > If someone was interested, it would be easy to write a script > > that checks all the ports: > > Yes and no. :) > > Ports are not necessarily supposed to remove everything they install. > > What's needed (and has been needed for a long time) is to allow the > user to choose between "pkg_delete_for_ever" and > "pkg_delete_im_gonna_upgrade_now" (where there upgrading is the most > commen reason for desiring such as deinstall, but not the only one). > > Currently all deinstalls are of the "pkg_delete_im_gonna_upgrade_now" > type. Can you give an example where pkg_delete_im_gonna_upgrade_now != pkg_delete_for_ever ? What does pkg_delete_im_gonna_upgrade_now mean exactly? I would think pkg_delete_for_ever should be the default. > To be even more ambitious, you should consider comparing /etc before > and after, too. Maybe throw-in a comparison of /etc between install > and deinstall, too. Some ports modify things in there that they > should not (mgetty+sendfax bit me last time I installed it, for > example). All stuff that wants to go in /etc should go in /usr/local/etc and/or /usr/local/etc/rc.d instead. > A (probably) surprising number of ports will legitimately require > a read-write /. Then the port has a bug, IMHO (oh well, MHO never counted for much.. :-) -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 16:40:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA02601 for freebsd-ports-outgoing; Fri, 18 Sep 1998 16:40:51 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA02535 for ; Fri, 18 Sep 1998 16:40:29 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA06012; Fri, 18 Sep 1998 16:40:01 -0700 (PDT) Date: Fri, 18 Sep 1998 16:40:01 -0700 (PDT) Message-Id: <199809182340.QAA06012@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Tim Vanderhoek Subject: Re: ports/7942: New Port: Radiusclient Reply-To: Tim Vanderhoek Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/7942; it has been noted by GNATS. From: Tim Vanderhoek To: maurice@serc.rmit.edu.au, FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: ports/7942: New Port: Radiusclient Date: Fri, 18 Sep 1998 19:36:28 -0400 On Wed, Sep 16, 1998 at 09:58:47AM +1000, Maurice Castro wrote: > > XOnly static linking to the library produced is supported. > X > XDocumentation is scant and is recommended only for expert users. Hmm. So novice users are better-off not even reading the documentation at all?! -- This .sig is not innovative, witty, or profund. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 18:11:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA17189 for freebsd-ports-outgoing; Fri, 18 Sep 1998 18:11:49 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ha1.rdc1.sdca.home.com (ha1.rdc1.sdca.home.com [24.0.3.66]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA17180 for ; Fri, 18 Sep 1998 18:11:41 -0700 (PDT) (envelope-from craig-burgess@home.com) Received: from home.com ([24.0.178.21]) by ha1.rdc1.sdca.home.com (Post.Office MTA v3.5 release 217 ID# 1-1U40000L0S0V35) with ESMTP id com; Fri, 18 Sep 1998 18:11:10 -0700 Message-ID: <360303FA.44CAA029@home.com> Date: Fri, 18 Sep 1998 18:08:10 -0700 From: Craig Burgess X-Mailer: Mozilla 4.05 [en]C-AtHome0404 (WinNT; U) MIME-Version: 1.0 To: Tim Vanderhoek CC: Chuck Robey , freebsd-ports@FreeBSD.ORG Subject: Re: modula 3 "make install" References: <35FCB44A.FA49EA3F@home.com> <19980918190242.B248@mrmell> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Tim Vanderhoek wrote: > /usr/share/doc/ used to have something about pmake, too. > > Craig, could you post the results of > > $ ls /var/db/pkg > Sure ==================== : > ls /var/db/pkg/ 227upgrade-98.08.26 p5-Apache-1.07 adcomplain-3.6 p5-CGI-2.76 analog-2.11 p5-CGI_Lite-1.8 apache-1.3b5 p5-HTML-0.6 bash-1.14.7 p5-HTML-QuickCheck-1.0b1 cops-1.04 p5-HTML-Stream-1.44 cvsup-bin-15.4.2 p5-Image-Size-2.6 cyrus-1.5.2 p5-ePerl-2.2.12 emacs-20.2 perl-5.00404 eperl-2.2.12 pine-3.96 fxhtml-1.6.7 sharutils-4.2 gmake-3.76.1 tcl-8.1.a2 lha-1.14c tcp_wrappers-7.6 logsurfer-1.41 tcplist-2.2 lsof-4.27 tcsh-6.07.02 lynx-2.8rel.2 tripwire-1.2 mysql-3.21.25g unzip-5.3.2 ============= Also (unsolicited additional information): results of 'set' -- path (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/bin /usr/X11R6/bin shell /usr/local/bin/tcsh shlvl 1 status 0 tcsh 6.07.02 term ansi tty ttyp0 user craig version tcsh 6.07.02 (Astron) 1996-10-27 (i386-intel-FreeBSD) options 8b,nls,dl, al,rh ==================(output was edited for brevity)========= and, since the search path includes /usr/X11R6:===> cx73477-a# ls /usr/ bin games include libdata local obj sbin src compat home lib libexec mdec ports share tmp cx73477-a# ==============(not edited)=============== I have not figured out how to "uninstall" what isn't there... Not wanting to argue, and being thorougly stumped, I've set the effort aside -- for now... What was a puzzle has become a barrier. with best regards, Craig Burgess To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 18:19:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA18763 for freebsd-ports-outgoing; Fri, 18 Sep 1998 18:19:25 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from parsons.rh.rit.edu (d111-l052.rh.rit.edu [129.21.111.52]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA18750 for ; Fri, 18 Sep 1998 18:19:19 -0700 (PDT) (envelope-from mfisher@csh.rit.edu) Received: from mfisher (helo=localhost) by parsons.rh.rit.edu with local-smtp (Exim 1.92 #1) id 0zKBfg-0002KH-00; Fri, 18 Sep 1998 21:18:44 -0400 Date: Fri, 18 Sep 1998 21:18:44 -0400 (EDT) From: Mike Fisher X-Sender: mfisher@d111-l052.rh.rit.edu To: Archie Cobbs cc: ports@FreeBSD.ORG Subject: Re: sshd In-Reply-To: <199809182332.QAA20213@bubba.whistle.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 18 Sep 1998, Archie Cobbs wrote: > Can you give an example where pkg_delete_im_gonna_upgrade_now != > pkg_delete_for_ever ? What does pkg_delete_im_gonna_upgrade_now mean > exactly? For example, an administrator is running Apache and wishes to upgrade to the newest version to take care of a security hole (or is running sshd). To do this, he does something along the following: cd /ports/www/apache/current make pkg_delete [whatever apache version is currently installed] make install kill -HUP `cat /var/run/httpd.pid` The current pkg_delete setup doesn't remove the Apache configuration files because their MD5 fingerprints differ from the ones in the package contents list. The make install doesn't overwrite the existing configuration files, so after the above sequence, Apache should be upgraded and function as it did before (only better since it got its bugs squished). Same goes for sshd or lynx or pretty much any other port that has a configuration file that will remain fairly constant between versions but needs to be edited for performance/security reasons. -- Mike "...check your premises. You will find that one of them is wrong." --Ayn Rand, _Atlas Shrugged_ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 19:05:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA28258 for freebsd-ports-outgoing; Fri, 18 Sep 1998 19:05:46 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from hoek@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA28245; Fri, 18 Sep 1998 19:05:29 -0700 (PDT) (envelope-from hoek) Message-ID: <19980918190526.A27515@freebsd.org> Date: Fri, 18 Sep 1998 19:05:26 -0700 From: Tim Vanderhoek To: Archie Cobbs , Tim Vanderhoek Cc: fieber@indiana.edu, marquis@roble.com, ports@FreeBSD.ORG Subject: Re: sshd References: <19980918185728.A248@mrmell> <199809182332.QAA20213@bubba.whistle.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199809182332.QAA20213@bubba.whistle.com>; from Archie Cobbs on Fri, Sep 18, 1998 at 04:32:36PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Sep 18, 1998 at 04:32:36PM -0700, Archie Cobbs wrote: > > Can you give an example where pkg_delete_im_gonna_upgrade_now != > pkg_delete_for_ever ? What does pkg_delete_im_gonna_upgrade_now mean > exactly? Configuration files. Saved games directories. Certain data files. pkg_delete_im_gonna_upgrade_now does not delete these files. > I would think pkg_delete_for_ever should be the default. You may argue for a default once there is a choice between two options. :) > All stuff that wants to go in /etc should go in /usr/local/etc and/or > /usr/local/etc/rc.d instead. Like /etc/passwd? > > A (probably) surprising number of ports will legitimately require > > a read-write /. > > Then the port has a bug, IMHO (oh well, MHO never counted for much.. :-) YHO is wrong. :) -- Me. Who'd you think wrote this? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 20:01:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA05793 for freebsd-ports-outgoing; Fri, 18 Sep 1998 20:01:37 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from hoek@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA05727; Fri, 18 Sep 1998 20:01:17 -0700 (PDT) (envelope-from hoek) Message-ID: <19980918200116.A3526@freebsd.org> Date: Fri, 18 Sep 1998 20:01:16 -0700 From: Tim Vanderhoek To: Craig Burgess , Tim Vanderhoek Cc: Chuck Robey , freebsd-ports@FreeBSD.ORG Subject: Re: modula 3 "make install" References: <35FCB44A.FA49EA3F@home.com> <19980918190242.B248@mrmell> <360303FA.44CAA029@home.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <360303FA.44CAA029@home.com>; from Craig Burgess on Fri, Sep 18, 1998 at 06:08:10PM -0700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Sep 18, 1998 at 06:08:10PM -0700, Craig Burgess wrote: > > > > Craig, could you post the results of > > > > $ ls /var/db/pkg It's remotely possible that cvsup stoped supporting non-gui builds, but more likely that something funny is just going on. Do you have the build output from just before it died? Every time m3build appears at the start of a line, you should see something like... ===> client m3build -DNOGUI -DNOGUI mkdir FreeBSD2 Where your should see at least one "-DONOGUI". Could you check? Also, what are the $Id$ lines in your cvsup Makefile and bsd.port.mk file. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 20:28:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA09839 for freebsd-ports-outgoing; Fri, 18 Sep 1998 20:28:55 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dt053nb4.san.rr.com (dt053nb4.san.rr.com [204.210.34.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA09826 for ; Fri, 18 Sep 1998 20:28:53 -0700 (PDT) (envelope-from Studded@dal.net) Received: from dal.net (Studded@localhost [127.0.0.1]) by dt053nb4.san.rr.com (8.8.8/8.8.8) with ESMTP id UAA08182; Fri, 18 Sep 1998 20:28:29 -0700 (PDT) (envelope-from Studded@dal.net) Message-ID: <360324DC.C0725655@dal.net> Date: Fri, 18 Sep 1998 20:28:28 -0700 From: Studded Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.06 [en] (X11; I; FreeBSD 2.2.7-STABLE-0918 i386) MIME-Version: 1.0 To: ports@FreeBSD.ORG CC: Tim Vanderhoek , Archie Cobbs Subject: Re: sshd References: <199809140706.AAA16521@bubba.whistle.com> <19980918185728.A248@mrmell> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Tim Vanderhoek wrote: > > On Mon, Sep 14, 1998 at 12:06:05AM -0700, Archie Cobbs wrote: > > > > If someone was interested, it would be easy to write a script > > that checks all the ports: > > Yes and no. :) > > Ports are not necessarily supposed to remove everything they install. > > What's needed (and has been needed for a long time) is to allow the > user to choose between "pkg_delete_for_ever" and > "pkg_delete_im_gonna_upgrade_now" Combine this with a flag for the PLIST that indicates that a file is in the "Only delete if we're going away forever" category and you've got something here. :) Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 22:01:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA18183 for freebsd-ports-outgoing; Fri, 18 Sep 1998 22:01:43 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA18018; Fri, 18 Sep 1998 22:01:17 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA16581; Fri, 18 Sep 1998 22:00:53 -0700 (PDT) Date: Fri, 18 Sep 1998 22:00:53 -0700 (PDT) Message-Id: <199809190500.WAA16581@freefall.freebsd.org> To: billf@jade.chc-chimes.com, steve@FreeBSD.ORG, gnats-admin@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: pending/7871 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update noncommitted port: net/ethereal ports/7581 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Fri Sep 18 21:59:15 PDT 1998 State-Changed-Why: Vanilla already upgraded this one to 0.3.16. Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: steve Responsible-Changed-When: Fri Sep 18 21:59:15 PDT 1998 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 22:49:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA24733 for freebsd-ports-outgoing; Fri, 18 Sep 1998 22:49:43 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA24704; Fri, 18 Sep 1998 22:49:37 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA18344; Fri, 18 Sep 1998 22:49:12 -0700 (PDT) Date: Fri, 18 Sep 1998 22:49:12 -0700 (PDT) Message-Id: <199809190549.WAA18344@freefall.freebsd.org> To: bmah@ca.sandia.gov, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7824 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] asrpages port has bad checksum State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Fri Sep 18 22:46:55 PDT 1998 State-Changed-Why: Patch committed with one minor tweak to catch some new manpages. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 23:20:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA29081 for freebsd-ports-outgoing; Fri, 18 Sep 1998 23:20:28 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA29073 for ; Fri, 18 Sep 1998 23:20:27 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA18954; Fri, 18 Sep 1998 23:20:01 -0700 (PDT) Received: from titus.stade.co.uk (stade.demon.co.uk [158.152.29.164]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA27850 for ; Fri, 18 Sep 1998 23:13:50 -0700 (PDT) (envelope-from aw1@stade.co.uk) Received: (from aw1@localhost) by titus.stade.co.uk (8.9.1/8.8.8) id HAA26435; Sat, 19 Sep 1998 07:02:28 +0100 (BST) (envelope-from aw1) Message-Id: <199809190602.HAA26435@titus.stade.co.uk> Date: Sat, 19 Sep 1998 07:02:28 +0100 (BST) From: Adrian Wontroba Reply-To: aw1@stade.co.uk To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7985: xlogmaster-1.4.4 port problem and patch Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7985 >Category: ports >Synopsis: xlogmaster-1.4.4 port problem and patch >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 18 23:20:00 PDT 1998 >Last-Modified: >Originator: Adrian Wontroba >Organization: Stade Computers Ltd, UK >Release: FreeBSD 3.0-CURRENT i386 >Environment: Fresh 3.0-CURRENT system, aout. >Description: Small problem with the xlogmaster port. Since it was updated to version 1.4.4 and gtk11, it can't find gtk-config, now called gtk11-config. >How-To-Repeat: cd /usr/ports/sysutils/xlogmaster; make >Fix: Apply this patch: diff -ruN --exclude CVS xlogmaster/Makefile xlogmaster-beta/Makefile --- xlogmaster/Makefile Wed Sep 16 08:36:43 1998 +++ xlogmaster-beta/Makefile Sat Sep 19 06:48:17 1998 @@ -18,7 +18,7 @@ LIB_DEPENDS= gtk11\\.1\\.:${PORTSDIR}/x11-toolkits/gtk11 GNU_CONFIGURE= yes -CONFIGURE_ENV= CXXFLAGS="${CFLAGS}" +CONFIGURE_ENV= CXXFLAGS="${CFLAGS}" GTK_CONFIG="${PREFIX}/bin/gtk11-config" USE_X_PREFIX= yes USE_GMAKE= yes >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Sep 18 23:38:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA00621 for freebsd-ports-outgoing; Fri, 18 Sep 1998 23:38:50 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from whistle.com (s205m131.whistle.com [207.76.205.131]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA00616 for ; Fri, 18 Sep 1998 23:38:49 -0700 (PDT) (envelope-from archie@whistle.com) Received: (from smap@localhost) by whistle.com (8.7.5/8.6.12) id XAA04638; Fri, 18 Sep 1998 23:38:22 -0700 (PDT) Received: from bubba.whistle.com(207.76.205.7) by whistle.com via smap (V1.3) id sma004636; Fri Sep 18 23:37:53 1998 Received: (from archie@localhost) by bubba.whistle.com (8.8.7/8.6.12) id XAA19979; Fri, 18 Sep 1998 23:37:53 -0700 (PDT) From: Archie Cobbs Message-Id: <199809190637.XAA19979@bubba.whistle.com> Subject: Re: sshd In-Reply-To: from Mike Fisher at "Sep 18, 98 09:18:44 pm" To: mfisher@csh.rit.edu (Mike Fisher) Date: Fri, 18 Sep 1998 23:37:53 -0700 (PDT) Cc: ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL38 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Mike Fisher writes: > > Can you give an example where pkg_delete_im_gonna_upgrade_now != > > pkg_delete_for_ever ? What does pkg_delete_im_gonna_upgrade_now mean > > exactly? > > For example, an administrator is running Apache and wishes to upgrade to > the newest version to take care of a security hole (or is running sshd). Ah, I didn't think of that. So it would be nice if you could specify which of the two you wanted. -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 00:42:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA07181 for freebsd-ports-outgoing; Sat, 19 Sep 1998 00:42:23 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from polio.ecst.csuchico.edu (polio.ecst.csuchico.edu [132.241.4.13]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id AAA07173 for ; Sat, 19 Sep 1998 00:42:14 -0700 (PDT) (envelope-from manek@ecst.csuchico.edu) Received: (qmail 3292 invoked by uid 21024); 19 Sep 1998 00:41:49 -0700 Date: Sat, 19 Sep 1998 00:41:49 -0700 (PDT) From: "Sameer R. Manek" To: ports@FreeBSD.ORG Subject: ssh default sshd_config file Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ports team I was wondering why you guys left the sshd_config file to have the following entry PermitRootLogin yes Since this allows for remote root login, imho by default it should be no, this allows for systems with novice admins with insecure passwords to be vunerable. Network root login from other services isn't allowd so I think it shouldn't be allowed under ssh as well. Sameer -- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Sameer Manek manek@ecst.csuchico.edu I never saw a wild thing feel sorry for itself, a small bird will drop dead, frozen from a bough without ever having felt sorry for itself. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 01:30:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA12066 for freebsd-ports-outgoing; Sat, 19 Sep 1998 01:30:29 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA12058 for ; Sat, 19 Sep 1998 01:30:28 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA21857; Sat, 19 Sep 1998 01:30:01 -0700 (PDT) Received: from andrew1.lnk.telstra.net (andrew1.lnk.telstra.net [139.130.51.121]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA11974 for ; Sat, 19 Sep 1998 01:29:07 -0700 (PDT) (envelope-from cagney@tpgi.com.au) Received: (from cagney@localhost) by andrew1.lnk.telstra.net (8.8.8/8.7.3) id RAA14929; Sat, 19 Sep 1998 17:47:28 +1000 (EST) Message-Id: <199809190747.RAA14929@andrew1.lnk.telstra.net> Date: Sat, 19 Sep 1998 17:47:28 +1000 (EST) From: Andrew Cagney Reply-To: cagney@tpgi.com.au To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7987: Can't post news with TRN + NNTPCACHE Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7987 >Category: ports >Synopsis: Can't post news with TRN + NNTPCACHE >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Sep 19 01:30:01 PDT 1998 >Last-Modified: >Originator: Andrew Cagney >Organization: Hmm >Release: FreeBSD 2.2.7-RELEASE i386 >Environment: Both TRN and NNTPCACHE installed. >Description: Neither TRN nor NNTPCACHE install `inews' yet TRN wants to use inews to post articles. Consequently, one can't post news articles using Pnews. (Perhaphs this is a good thing :-) >How-To-Repeat: Pnews .. . . Check spelling, Send, Abort, Edit, or List? s inews: not found >Fix: Good question! o add a dependency for inn (say) which contains inews (from memory) o have the nntpcache maintainers add inews? ??? >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 02:18:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA15221 for freebsd-ports-outgoing; Sat, 19 Sep 1998 02:18:34 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA15215; Sat, 19 Sep 1998 02:18:29 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA22561; Sat, 19 Sep 1998 02:18:06 -0700 (PDT) Date: Sat, 19 Sep 1998 02:18:06 -0700 (PDT) Message-Id: <199809190918.CAA22561@freefall.freebsd.org> To: toshi@tea.forus.or.jp, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, kuriyama@FreeBSD.ORG Subject: Re: ports/7716 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New ports of elisa font(8x8 dots JIS X 0208 font) State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Sat Sep 19 02:17:22 PDT 1998 State-Changed-Why: Committed. Thanks! Responsible-Changed-From-To: freebsd-ports->kuriyama Responsible-Changed-By: kuriyama Responsible-Changed-When: Sat Sep 19 02:17:22 PDT 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 03:00:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA18126 for freebsd-ports-outgoing; Sat, 19 Sep 1998 03:00:40 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA18108; Sat, 19 Sep 1998 03:00:25 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA23416; Sat, 19 Sep 1998 03:00:02 -0700 (PDT) Date: Sat, 19 Sep 1998 03:00:02 -0700 (PDT) Message-Id: <199809191000.DAA23416@freefall.freebsd.org> To: vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, vanilla@FreeBSD.ORG Subject: Re: ports/7985 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: xlogmaster-1.4.4 port problem and patch Responsible-Changed-From-To: freebsd-ports->vanilla Responsible-Changed-By: vanilla Responsible-Changed-When: Sat Sep 19 02:59:40 PDT 1998 Responsible-Changed-Why: I take this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 06:40:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA05696 for freebsd-ports-outgoing; Sat, 19 Sep 1998 06:40:25 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA05691 for ; Sat, 19 Sep 1998 06:40:24 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA14044; Sat, 19 Sep 1998 06:40:01 -0700 (PDT) Received: from anto.inet.co.th (anto.inet.co.th [203.151.189.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA05042 for ; Sat, 19 Sep 1998 06:34:01 -0700 (PDT) (envelope-from anto@anto.inet.co.th) Received: (from anto@localhost) by anto.inet.co.th (8.8.8/8.8.8) id UAA10504; Sat, 19 Sep 1998 20:33:13 +0700 (ICT) (envelope-from anto) Message-Id: <199809191333.UAA10504@anto.inet.co.th> Date: Sat, 19 Sep 1998 20:33:13 +0700 (ICT) From: anto@netscape.net Reply-To: anto@netscape.net To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7988: 'distclean' makefile target fails on some ports Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7988 >Category: ports >Synopsis: 'make distclean' broken on some ports >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Sep 19 06:40:00 PDT 1998 >Last-Modified: >Originator: Anto Prijosoesilo >Organization: Internet Thailand Co., Ltd. >Release: FreeBSD 2.2.7-STABLE i386 >Environment: FreeBSD DevNoc.inet.co.th 2.2.7-STABLE FreeBSD 2.2.7-STABLE #0: Fri Sep 11 08:36:49 ICT 1998 root@DevNoc.inet.co.th:/usr/src/sys-altq/compile/DEVALTQ i386 >Description: 'make distclean' is broken for the following ports: devel/crossm68k-devel japanese/handbook japanese/man-doc japanese/p5-jcode.pl lang/javac_netscape lang/modula-3 net/cvsup-mirror textproc/docproj textproc/gxditview x11/kde This breaks 'make distclean' at the /usr/ports level and at the port-category level. >How-To-Repeat: cd to the affected port's directory and do 'make distclean' or cd /usr/ports and do 'make distclean' there. >Fix: *** bsd.port.mk.orig Sat Sep 19 17:54:20 1998 --- bsd.port.mk Sat Sep 19 17:56:34 1998 *************** *** 1596,1602 **** .if !target(distclean) distclean: pre-distclean clean @${ECHO_MSG} "===> Dist cleaning for ${PKGNAME}" ! @(if [ -d ${_DISTDIR} ]; then \ cd ${_DISTDIR}; \ ${RM} -f ${DISTFILES} ${PATCHFILES}; \ fi) --- 1596,1602 ---- .if !target(distclean) distclean: pre-distclean clean @${ECHO_MSG} "===> Dist cleaning for ${PKGNAME}" ! @(if [ "X${DISTFILES}${PATCHFILES}" != "X" -a -d ${_DISTDIR} ]; then \ cd ${_DISTDIR}; \ ${RM} -f ${DISTFILES} ${PATCHFILES}; \ fi) >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 08:26:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA12665 for freebsd-ports-outgoing; Sat, 19 Sep 1998 08:26:54 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA12643; Sat, 19 Sep 1998 08:26:48 -0700 (PDT) (envelope-from smace@FreeBSD.org) From: Scott Mace Received: (from smace@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA07080; Sat, 19 Sep 1998 08:26:25 -0700 (PDT) Date: Sat, 19 Sep 1998 08:26:25 -0700 (PDT) Message-Id: <199809191526.IAA07080@freefall.freebsd.org> To: smace@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, smace@FreeBSD.ORG Subject: Re: ports/7917 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: problem with ELF tcp_wrappers 7.6 deinstallation Responsible-Changed-From-To: freebsd-ports->smace Responsible-Changed-By: smace Responsible-Changed-When: Sat Sep 19 08:25:52 PDT 1998 Responsible-Changed-Why: assinged to smace To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 09:06:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA16021 for freebsd-ports-outgoing; Sat, 19 Sep 1998 09:06:27 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA16012; Sat, 19 Sep 1998 09:06:22 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA08430; Sat, 19 Sep 1998 09:05:59 -0700 (PDT) Date: Sat, 19 Sep 1998 09:05:59 -0700 (PDT) Message-Id: <199809191605.JAA08430@freefall.freebsd.org> To: steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, asami@FreeBSD.ORG Subject: Re: ports/7988 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 'make distclean' broken on some ports Responsible-Changed-From-To: freebsd-ports->asami Responsible-Changed-By: steve Responsible-Changed-When: Sat Sep 19 09:04:20 PDT 1998 Responsible-Changed-Why: Looks good to me and seems to do the trick. Satoshi maintains bsd.port.mk so we'll let him look at it first. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 09:51:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA19273 for freebsd-ports-outgoing; Sat, 19 Sep 1998 09:51:18 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from baerenklau.de.freebsd.org (baerenklau.de.freebsd.org [195.185.195.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA19268 for ; Sat, 19 Sep 1998 09:51:15 -0700 (PDT) (envelope-from wosch@panke.de.freebsd.org) Received: (from uucp@localhost) by baerenklau.de.freebsd.org (8.8.8/8.8.8) with UUCP id SAA01332; Sat, 19 Sep 1998 18:50:49 +0200 (CEST) (envelope-from wosch@panke.de.freebsd.org) Received: (from wosch@localhost) by campa.panke.de (8.8.8/8.8.8) id LAA00840; Sat, 19 Sep 1998 11:29:57 +0200 (MET DST) (envelope-from wosch) Date: Sat, 19 Sep 1998 11:29:57 +0200 (MET DST) Message-Id: <199809190929.LAA00840@campa.panke.de> From: wosch@FreeBSD.ORG To: ports@FreeBSD.ORG Subject: New ports added/updated last two weeks Reply-to: ports@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Introduction ------------ The FreeBSD Ports Collection offers a simple way for users and administrators to install applications. Each "port" listed here contains any patches necessary to make the original application source code compile and run on FreeBSD. Installing an application is as simple as downloading the port, unpacking it and typing make in the port directory. The Makefile automatically fetches the application source code, either from a local disk or via ftp, unpacks it on your system, applies the patches, and compiles. If all goes well, simply type make install to install the application. For more information about using ports, see the ports collection http://www.freebsd.org/handbook/ports.html and http://www.freebsd.org/ports/ There are currently 1710 ports in the FreeBSD Ports Collection. New ports added last two weeks ------------------------------ Category audio (http://www.freebsd.org/ports/audio.html) ================================================================== dap-1.3b Audio sample editing and processing suite. Maintained by: yoshiaki@kt.rim.or.jp Requires: XFree86-3.3.2, xforms-0.88.1 Category databases (http://www.freebsd.org/ports/databases.html) ================================================================== mysql-3.21.33 a multithreaded SQL database. Maintained by: ibex@physik.TU-Berlin.DE Requires: perl-5.00502 mysql-3.22.6a a multithreaded SQL database. Maintained by: ibex@physik.TU-Berlin.DE Requires: perl-5.00502 Category deskutils (http://www.freebsd.org/ports/deskutils.html) ================================================================== abacus-0.9.3 Spread sheet for X Window System. Maintained by: andy@icc.surw.chel.su Requires: XFree86-3.3.2, gmake-3.77, tcl-8.0.2, tk-8.0.2 Category games (http://www.freebsd.org/ports/games.html) ================================================================== pysol-1.00 Solitaire game, written in Python. Maintained by: tg@FreeBSD.ORG Requires: python-1.5.1, tcl-8.0.2, tk-8.0.2 Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== electriceyes-0.2 A graphic view base imlib & gtk. Maintained by: Nakai@technologist.com Requires: ORBit-0.2.1, XFree86-3.3.2, gettext-0.10, giflib-3.0, glib-1.1.2, gmake-3.77, gnomecore-0.28.1, gnomelibs-0.27, gtk-1.1.1, imlib-1.7, jpeg-6b, png-1.0.2, tiff-3.4, xpm-3.4k Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-ack-1.39 Kanji code converter. Maintained by: seiken@nbs.co.jp Also listed in: converters ja-gd-1.3 A graphics library for fast GIF creation w/ Japanese Kanji patch. Maintained by: ichiro@ichiro.org Also listed in: graphics Requires: autoconf-2.12, freetype-1.1, gmake-3.77, ja-vflib-2.23.1 ja-postgresql-6.3.2 a robust, next generation, object-relational DBMS plus Multibyte-patch Maintained by: ichiro@ichiro.org Also listed in: databases Requires: gmake-3.77 Category lang (http://www.freebsd.org/ports/lang.html) ================================================================== gnomeobjc-0.27 objective C libraries for the Gnome Desktop Environment Maintained by: Nakai@technologist.com Requires: XFree86-3.3.2, gettext-0.10, giflib-3.0, glib-1.1.2, gmake-3.77, gnomelibs-0.27, gtk-1.1.1, imlib-1.7, jpeg-6b, png-1.0.2, tiff-3.4, xpm-3.4k Category net (http://www.freebsd.org/ports/net.html) ================================================================== boclient-1.21 Client program for the Back Orifice Windows program Maintained by: darius@dons.net.au Also listed in: security Category www (http://www.freebsd.org/ports/www.html) ================================================================== p5-ParallelUA-2.36 perl5 Parallel LWP User Agent for WWW access. Maintained by: ache@FreeBSD.ORG Also listed in: perl5 devel Requires: p5-HTML-Parser-2.20, p5-MD5-1.7, p5-MIME-Base64-2.06, p5-Net-1.0605, p5-libwww-5.36, perl-5.00502 Category x11-clocks (http://www.freebsd.org/ports/x11-clocks.html) ================================================================== eyeclock-1.0 A clock application for X. The eyes follow the mouse. Maintained by: kiri@pis.toba-cmt.ac.jp Requires: XFree86-3.3.2, xpm-3.4k Category x11-fonts (http://www.freebsd.org/ports/x11-fonts.html) ================================================================== ttmkfdir-0.0 Create fonts.scale file for use with TrueType font server. Maintained by: ports@FreeBSD.ORG Requires: XFree86-3.3.2, freetype-1.1, gmake-3.77 Category x11-toolkits (http://www.freebsd.org/ports/x11-toolkits.html) ================================================================== gtk---0.9.14 C++ wrapper for gtk, a x11 graphics library Maintained by: Nakai@technologist.com Requires: XFree86-3.3.2, autoconf-2.12, glib-1.1.2, gmake-3.77, gtk-1.1.1, m4-1.4 Category x11 (http://www.freebsd.org/ports/x11.html) ================================================================== gnomecore-0.28.1 core component for the Gnome Desktop Environment Maintained by: Nakai@technologist.com Requires: ORBit-0.2.1, XFree86-3.3.2, gettext-0.10, giflib-3.0, glib-1.1.2, gmake-3.77, gnomelibs-0.27, gtk-1.1.1, imlib-1.7, jpeg-6b, png-1.0.2, tiff-3.4, xpm-3.4k gnomelibs-0.27 libaries for GNOME, a GNU desktop environment Maintained by: Nakai@technologist.com Requires: XFree86-3.3.2, gettext-0.10, giflib-3.0, glib-1.1.2, gmake-3.77, gtk-1.1.1, imlib-1.7, jpeg-6b, png-1.0.2, tiff-3.4, xpm-3.4k wdm-0.90 WINGs Display Manager; an xdm replacement. Maintained by: ports@FreeBSD.ORG Requires: XFree86-3.3.2, giflib-3.0, jpeg-6b, png-1.0.2, tcl-8.0.2, tiff-3.4, tk-8.0.2, windowmaker-0.19.3, xpm-3.4k Updated ports last two weeks ----------------------------------- Category chinese (http://www.freebsd.org/ports/chinese.html) ================================================================== zh-ted-4.2k A Small and Powerful Text Editor for X Window with big5 support Maintained by: vanilla@FreeBSD.ORG Also listed in: editors Requires: XFree86-3.3.2, zh-kcfonts-1.05, zh-xcin-2.3.02 zh-tin-1.4.980818 TIN newsreader (termcap based) Maintained by: yssu@CCCA.NCTU.edu.tw Also listed in: news Category comms (http://www.freebsd.org/ports/comms.html) ================================================================== lrzsz-0.12.19 Receive/Send files via X/Y/ZMODEM protocol. (unrestrictive) Maintained by: obrien@FreeBSD.org Requires: gmake-3.77 Category databases (http://www.freebsd.org/ports/databases.html) ================================================================== p5-DBI-1.02 the perl5 Database Interface. Required for DBD::* modules. Maintained by: vanilla@FreeBSD.ORG Also listed in: perl5 Requires: p5-Storable-0.6.3, p5-pRPC-modules-0.1005, perl-5.00502 p5-Mysql-modules-1.2003 perl5 modules for accessing MiniSQL (mSQL) databases. Maintained by: vanilla@FreeBSD.ORG Also listed in: perl5 Requires: mysql-3.21.33, p5-DBI-1.02, p5-Data-ShowTable-3.3, p5-Storable-0.6.3, p5-pRPC-modules-0.1005, perl-5.00502 Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== gide-0.0.7 This is gIDE, a GTK based IDE for the C programming Language. Maintained by: rom_glsa@ein-hashofet.co.il Requires: XFree86-3.3.2, glib-1.1.2, gmake-3.77, gtk-1.1.1, guile-1.2 glade-0.3.4 A user interface builder for GTK+. Maintained by: dom@myrddin.demon.co.uk Requires: XFree86-3.3.2, glib-1.1.2, gtk-1.1.1 p5-Date-Manip-5.33 perl5 module containing date manipulation routines Maintained by: jfitz@FreeBSD.ORG Also listed in: perl5 Requires: perl-5.00502 p5-File-Slurp-98.071901 perl5 module for single call read & write file routines. Maintained by: jfitz@FreeBSD.ORG Also listed in: perl5 Requires: perl-5.00502 tvision-0.6 The Turbo Vision C++ CUI library for UNIX Maintained by: ssigala@globalnet.it Category editors (http://www.freebsd.org/ports/editors.html) ================================================================== emacs-20.3 GNU editing macros. Maintained by: jseger@FreeBSD.org Requires: gmake-3.77 gxedit-1.14 A simple GTK+ editor. Maintained by: dom@myrddin.demon.co.uk Requires: XFree86-3.3.2, glib-1.1.2, gtk-1.1.1 vim-5.3 A vi "workalike", with many additional features. Maintained by: obrien@FreeBSD.org Requires: perl-5.00502, python-1.5.1, tcl-8.0.2, tk-8.0.2 Category games (http://www.freebsd.org/ports/games.html) ================================================================== crossfire-0.94.3 multiplayer graphical arcade and adventure game made for X-Windows Maintained by: andreas@FreeBSD.ORG Requires: XFree86-3.3.2, gmake-3.77, gsm-1.0.10, perl-5.00502, rplay-3.2.0b6, xpm-3.4k Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== sane-0.74 API for access to scanners, digitals camera, frame grabbers etc. Maintained by: gary@hotlava.com Requires: XFree86-3.3.2, glib-1.1.2, gmake-3.77, gtk-1.1.1 Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-magicpoint-1.04a an X11-based presentation tool, configured with vflib support. Maintained by: itojun@itojun.org Also listed in: misc Requires: XFree86-3.3.2, autoconf-2.12, freetype-1.1, gmake-3.77, ja-vflib-2.23.1 Category lang (http://www.freebsd.org/ports/lang.html) ================================================================== egcs-1.1.0.2 EGCS enhanced version of the GNU compiler suite Maintained by: obrien@FreeBSD.org Requires: gmake-3.77 Category mail (http://www.freebsd.org/ports/mail.html) ================================================================== adcomplain-4.42 complain about inappropriate commercial use (f.e. SPAM) of usenet/e-mail Maintained by: ache@FreeBSD.org Also listed in: news Requires: perl-5.00502 kbiff-0.8 mail notification utility for KDE with nice features Maintained by: andreas@FreeBSD.ORG Also listed in: kde Requires: Mesa-2.6, XFree86-3.3.2, giflib-3.0, gmake-3.77, jpeg-6b, kdelibs-1.0, qt-1.40 majorcool-1.3.0 A Web Interface To Majordomo Maintained by: andreas@FreeBSD.ORG Requires: perl-5.00502 smtpfeed-0.76 SMTP Fast Exploding External Deliverer for Sendmail Maintained by: itojun@itojun.org Category math (http://www.freebsd.org/ports/math.html) ================================================================== geg-0.12 Visualise multiple 2D-functions of one variable. Maintained by: rom_glsa@ein-hashofet.co.il Requires: XFree86-3.3.2, glib-1.1.2, gmake-3.77, gtk-1.1.1 py-numeric-1.4 The Numeric Extension to Python Maintained by: tg@FreeBSD.ORG Also listed in: python Requires: python-1.5.1, tcl-8.0.2, tk-8.0.2 octave-2.0.13 High-level interactive language for numerical computations. Maintained by: chuckr@FreeBSD.ORG Requires: gmake-3.77, gnuplot-340, png-1.0.2 Category misc (http://www.freebsd.org/ports/misc.html) ================================================================== amanda-2.4.1 The Advanced Maryland Automatic Network Disk Archiver Maintained by: cwt@FreeBSD.ORG Requires: gd-1.3, gnuplot-340, png-1.0.2 fd-1.03h A file and directory management tool Maintained by: nobu@psrc.isac.co.jp magicpoint-1.04a an X11-based presentation tool. Maintained by: itojun@itojun.org Requires: XFree86-3.3.2, freetype-1.1, gmake-3.77 xdelta-0.23 a diff/patch utility for binary files Maintained by: jmacd@FreeBSD.ORG Requires: gdbm-1.7.3 Category net (http://www.freebsd.org/ports/net.html) ================================================================== echoping-2.2.0 A ping-like program that uses tcp and/or http. Maintained by: peter@FreeBSD.ORG lftp-1.1.1 Shell-like command line ftp client. Maintained by: andy@icc.surw.chel.su Category plan9 (http://www.freebsd.org/ports/plan9.html) ================================================================== wily-0.13.41 A clone of the Plan9 editor `acme'. Maintained by: jkoshy@freebsd.org Also listed in: editors Category print (http://www.freebsd.org/ports/print.html) ================================================================== mgv-3.1.2 A PostScript and PDF previewer. Maintained by: handy@physics.montana.edu Requires: XFree86-3.3.2, xpm-3.4k Category security (http://www.freebsd.org/ports/security.html) ================================================================== bro-0.4a System for detecting Network Intruders in real-time Maintained by: obrien@FreeBSD.org Also listed in: net Category sysutils (http://www.freebsd.org/ports/sysutils.html) ================================================================== lsof-4.37 Lists information about open files. (simular to fstat(1)) Maintained by: obrien@FreeBSD.org mkhybrid-1.12a4.7 create a hybrid ISO9660/JOLIET/HFS/Rock Ridge filesystem. Maintained by: murray@cdrom.com mkisofs-1.11.3 create ISO9660 filesystems with [optional] Rockridge extensions Maintained by: ports@FreeBSD.ORG xlogmaster-1.4.4 quick & easy monitoring of logfiles and devices Maintained by: aw1@stade.co.uk Requires: XFree86-3.3.2, glib-1.1.2, gmake-3.77, gtk-1.1.1 Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== dsssl-docbook-modular-1.13 DSSSL stylesheets for the DocBook DTD by Norman Walsh Maintained by: kuriyama@FreeBSD.ORG Requires: docbook-3.0, iso8879-1986, unzip-5.3.2 sgmlformat-1.7 Generates groff and HTML from linuxdoc and docbook SGML documents Maintained by: jfieber@FreeBSD.ORG Also listed in: print Requires: docbook-3.0, iso8879-1986, jade-1.1.1, linuxdoc-1.1, perl-5.00502 word2x-0.002 Converter from MS Word to text, HTML or LaTeX. Maintained by: ports@FreeBSD.ORG Requires: gmake-3.77 Category www (http://www.freebsd.org/ports/www.html) ================================================================== apache-php3.0.3-1.2.6 Apache http server with database support via compiled in PHP3 module. Maintained by: Dirk Froemberg apache-1.3.1+mod_ssl-2.0.9 The popular Apache HTTP server with SSL extension. Maintained by: rse@engelschall.com Also listed in: security Requires: SSLeay-0.9.0b, rsaref-2.0 apache-php3.0.3-1.3.1 Apache http server with database support via compiled in PHP3 module. Maintained by: Dirk Froemberg Requires: perl-5.00502 lynx-2.8.1dev.25 A non-graphical, text-based World-Wide Web client. Maintained by: ache@FreeBSD.ORG p5-WWW-Search-1.021 a perl5 module for WWW searches Maintained by: jfitz@FreeBSD.ORG Also listed in: perl5 Requires: p5-HTML-Parser-2.20, p5-MD5-1.7, p5-MIME-Base64-2.06, p5-Net-1.0605, p5-libwww-5.36, perl-5.00502 w3mir-1.0.4p2 All-purpose HTTP copying and mirroring tool. Maintained by: ache@freebsd.org Also listed in: perl5 Requires: p5-HTML-Parser-2.20, p5-MD5-1.7, p5-MIME-Base64-2.06, p5-Net-1.0605, p5-libwww-5.36, perl-5.00502 Category x11-wm (http://www.freebsd.org/ports/x11-wm.html) ================================================================== blackbox-0.40.5 This window manager is a small fast X11R6 Window Manager. Maintained by: ports@FreeBSD.ORG Requires: XFree86-3.3.2 iconmaker-1.5 A utility to create app-icons for WindowMaker. Maintained by: ports@FreeBSD.ORG Requires: XFree86-3.3.2, giflib-3.0, jpeg-6b, png-1.0.2, tiff-3.4, windowmaker-0.19.3, xpm-3.4k windowmaker-0.19.3 This window manager is a GNUStep-compliant NeXTStep clone. Maintained by: handy@physics.montana.edu Requires: XFree86-3.3.2, giflib-3.0, jpeg-6b, png-1.0.2, tcl-8.0.2, tiff-3.4, tk-8.0.2, xpm-3.4k _________________________________________________________________ © 1996-1998 by Wolfram Schneider. All rights reserved. Please direct questions about this service to www@FreeBSD.org General questions about FreeBSD ports should be sent to ports@FreeBSD.org Last database update: 1998-09-17 20:44:24 UTC _________________________________________________________________ This information was produced by http://www.freebsd.org/cgi/ports.cgi -- Wolfram Schneider http://www.freebsd.org/~w/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 10:19:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA22100 for freebsd-ports-outgoing; Sat, 19 Sep 1998 10:19:43 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.eecis.udel.edu (ntp.udel.edu [128.175.2.33]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id KAA22095 for ; Sat, 19 Sep 1998 10:19:40 -0700 (PDT) (envelope-from alexandr@mail.eecis.udel.edu) Received: from ren.eecis.udel.edu by mail.eecis.udel.edu id aa08118; 19 Sep 1998 13:18 EDT To: ports@FreeBSD.ORG Subject: List of ELF ports? Organization: Mos Eisley Candy Store Reply-To: alexandr@mail.eecis.udel.edu Date: Sat, 19 Sep 1998 13:18:03 -0400 From: Jerry Alexandratos Message-ID: <199809191318.aa08118@mail.eecis.udel.edu> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Does anyone have a list of ports that currently compile as ELF? --Jerry 8) Jerry Alexandratos % - % "Nothing inhabits my (8 8) alexandr@louie.udel.edu % - % thoughts, and oblivion (8 8) darkstar@strauss.udel.edu % - % drives my desires." (8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 11:50:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA05758 for freebsd-ports-outgoing; Sat, 19 Sep 1998 11:50:46 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dt053nb4.san.rr.com (dt053nb4.san.rr.com [204.210.34.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA05753 for ; Sat, 19 Sep 1998 11:50:45 -0700 (PDT) (envelope-from Studded@dal.net) Received: from dal.net (Studded@localhost [127.0.0.1]) by dt053nb4.san.rr.com (8.8.8/8.8.8) with ESMTP id LAA15067; Sat, 19 Sep 1998 11:50:16 -0700 (PDT) (envelope-from Studded@dal.net) Message-ID: <3603FCE8.741DA83E@dal.net> Date: Sat, 19 Sep 1998 11:50:16 -0700 From: Studded Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.06 [en] (X11; I; FreeBSD 2.2.7-STABLE-0918 i386) MIME-Version: 1.0 To: "Sameer R. Manek" CC: ports@FreeBSD.ORG Subject: Re: ssh default sshd_config file References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Sameer R. Manek wrote: > > Ports team > I was wondering why you guys left the sshd_config file to > have the following entry > > PermitRootLogin yes There is a balance between allowing the "flavor" of individual ports to come through as their designers intended, and frobbing things to fit the "FreeBSD Way" (TM). Personally I always change things in sshd_config, namely: LoginGraceTime 60 PermitRootLogin no IgnoreRhosts yes PermitEmptyPasswords no But I'm known as a fascist. :) In fact, I sometimes enable the fascist logging option, but it gets to be a little much on a busy system. You might want to contact the maintainer of the port about this. Personally I would support a move to make sshd more like the way FreeBSD does things because of the importance of it. Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 11:57:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA06459 for freebsd-ports-outgoing; Sat, 19 Sep 1998 11:57:37 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from seera.nttlabs.com (seera.nttlabs.com [204.162.36.81]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA06448; Sat, 19 Sep 1998 11:57:33 -0700 (PDT) (envelope-from gene@nttlabs.com) Received: from localhost (gene@localhost) by seera.nttlabs.com (8.8.8/8.8.7) with SMTP id LAA10993; Sat, 19 Sep 1998 11:57:02 -0700 (PDT) X-Authentication-Warning: seera.nttlabs.com: gene owned process doing -bs Date: Sat, 19 Sep 1998 11:57:01 -0700 (PDT) From: "Eugene M. Kim" To: Tom Jackson cc: cvs-all@FreeBSD.ORG, FreeBSD Ports Mailing List Subject: Re: cvs commit: ports/mail/fetchmail Makefile ports/mail/fetchmail/pkg PLIST In-Reply-To: <19980919012904.A22488@TOJ.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The reason is that -lopie needs -lmd to resolve all symbols but -lmd is not included in "configure" script. (See config.log) The following patch (replacing patches/patch-ad) will solve the problem (on 3.0-current platforms). Could anybody with the commit privilege please commit this? ------------------------------ snip snip ------------------------------ *** configure.orig Mon Aug 3 08:45:11 1998 --- configure Sat Sep 19 11:49:22 1998 *************** *** 2880,2886 **** echo $ac_n "(cached) $ac_c" 1>&6 else ac_save_LIBS="$LIBS" ! LIBS="-lopie $LIBS" cat > conftest.$ac_ext <&6 else ac_save_LIBS="$LIBS" ! LIBS="-lopie -lmd $LIBS" cat > conftest.$ac_ext <&6 --- 2914,2920 ---- #define $ac_tr_lib 1 EOF ! LIBS="-lopie -lmd $LIBS" else echo "$ac_t""no" 1>&6 *************** *** 3531,3536 **** --- 3531,3537 ---- s%@host_os@%$host_os%g s%@CC@%$CC%g s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g + s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g s%@INSTALL_DATA@%$INSTALL_DATA%g s%@CPP@%$CPP%g s%@LEX@%$LEX%g ------------------------------ snip snip ------------------------------ On Sat, 19 Sep 1998, Tom Jackson wrote: | Date: Sat, 19 Sep 1998 01:29:04 -0500 | From: Tom Jackson | To: cvs-all@FreeBSD.ORG | Subject: Re: cvs commit: ports/mail/fetchmail Makefile ports/mail/fetchmail/pkg PLIST | | Since E-day I have been trying to rebuild fetchmail on my current box with | the result: | | | ===> Extracting for fetchmail-4.5.5 | ... | checking size of int... 4 | checking size of long... 4 | checking for opie.h... yes | checking for opiegenerator in -lopie... no | configure: cannot find libopie, which is required for OPIE support. | *** Error code 1 | | Stop. | *** Error code 1 | | Stop. | *** Error code 1 | | Stop. | *** Error code 1 | | Stop. | | The library's there and ldconfig -r shows it in the hint file. By nuking | the opie include in the makefile I get a working fetchmail. | | Anyone else ...? Ideas why? | On Fri, Sep 18, 1998 at 05:25:08PM -0700, Tim Vanderhoek wrote: | > hoek 1998/09/18 17:25:08 PDT | > | > Modified files: | > mail/fetchmail Makefile | > mail/fetchmail/pkg PLIST | > Log: | > Use MLINKS. | > | > Revision Changes Path | > 1.68 +2 -2 ports/mail/fetchmail/Makefile | > 1.9 +0 -1 ports/mail/fetchmail/pkg/PLIST | | -- | Tom | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 12:24:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA10374 for freebsd-ports-outgoing; Sat, 19 Sep 1998 12:24:10 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from news1.gtn.com (news1.gtn.com [194.77.0.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA10369 for ; Sat, 19 Sep 1998 12:24:05 -0700 (PDT) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id VAA10764 for ports@FreeBSD.ORG; Sat, 19 Sep 1998 21:15:11 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.9.1/8.9.1) id UAA05051 for ports@FreeBSD.ORG; Sat, 19 Sep 1998 20:42:47 +0200 (CEST) (envelope-from andreas) Message-ID: <19980919204247.A5044@klemm.gtn.com> Date: Sat, 19 Sep 1998 20:42:47 +0200 From: Andreas Klemm To: ports@FreeBSD.ORG Subject: Does XFree86 port need special patches for an ELF system ? Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Or is it save to recompile XFree86 and all other ports to fully truly convert to ELF ? Andreas /// -- Andreas Klemm http://www.FreeBSD.ORG/~andreas What gives you 90% more speed, for example, in kernel compilation ? http://www.FreeBSD.ORG/~fsmp/SMP/akgraph-a/graph1.html "NT = Not Today" (Maggie Biggs) ``powered by FreeBSD SMP'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 13:06:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA16038 for freebsd-ports-outgoing; Sat, 19 Sep 1998 13:06:33 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA16022; Sat, 19 Sep 1998 13:06:30 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id PAA04745; Sat, 19 Sep 1998 15:05:59 -0500 (CDT) Date: Sat, 19 Sep 1998 15:05:58 -0500 (CDT) From: Steve Price To: "Eugene M. Kim" cc: Tom Jackson , cvs-all@FreeBSD.ORG, FreeBSD Ports Mailing List Subject: Re: cvs commit: ports/mail/fetchmail Makefile ports/mail/fetchmail/pkg PLIST In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Done. Thanks! On Sat, 19 Sep 1998, Eugene M. Kim wrote: # The reason is that -lopie needs -lmd to resolve all symbols but -lmd is # not included in "configure" script. (See config.log) # # The following patch (replacing patches/patch-ad) will solve the problem # (on 3.0-current platforms). Could anybody with the commit privilege # please commit this? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 13:09:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA17037 for freebsd-ports-outgoing; Sat, 19 Sep 1998 13:09:29 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA16983; Sat, 19 Sep 1998 13:09:13 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA18842; Sat, 19 Sep 1998 13:08:50 -0700 (PDT) Date: Sat, 19 Sep 1998 13:08:50 -0700 (PDT) Message-Id: <199809192008.NAA18842@freefall.freebsd.org> To: joe@pavilion.net, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7977 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update to the ripetools port. State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Sep 19 13:06:51 PDT 1998 State-Changed-Why: Update committed, thanks! Besure to supply a patch next time and include files/md5. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 13:11:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA17499 for freebsd-ports-outgoing; Sat, 19 Sep 1998 13:11:30 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA17462; Sat, 19 Sep 1998 13:11:17 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA19068; Sat, 19 Sep 1998 13:10:55 -0700 (PDT) Date: Sat, 19 Sep 1998 13:10:55 -0700 (PDT) Message-Id: <199809192010.NAA19068@freefall.freebsd.org> To: croyle@gelemna.ft-wayne.in.us, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7958 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update x11-wm/blackbox to 0.40.6 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Sep 19 13:09:25 PDT 1998 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 13:14:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA18070 for freebsd-ports-outgoing; Sat, 19 Sep 1998 13:14:16 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA18065 for ; Sat, 19 Sep 1998 13:14:14 -0700 (PDT) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id PAA08077; Sat, 19 Sep 1998 15:13:46 -0500 (CDT) Date: Sat, 19 Sep 1998 15:13:46 -0500 (CDT) From: Steve Price To: Andreas Klemm cc: ports@FreeBSD.ORG Subject: Re: Does XFree86 port need special patches for an ELF system ? In-Reply-To: <19980919204247.A5044@klemm.gtn.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Yes. There are several versions floating around. Check the archives. I am working on a fix for the port right now that I hope to commit sometime tonight. Steve On Sat, 19 Sep 1998, Andreas Klemm wrote: # Or is it save to recompile XFree86 and all other ports to fully # truly convert to ELF ? # # Andreas /// # # -- # Andreas Klemm http://www.FreeBSD.ORG/~andreas # What gives you 90% more speed, for example, in kernel compilation ? # http://www.FreeBSD.ORG/~fsmp/SMP/akgraph-a/graph1.html # "NT = Not Today" (Maggie Biggs) ``powered by FreeBSD SMP'' # # To Unsubscribe: send mail to majordomo@FreeBSD.org # with "unsubscribe freebsd-ports" in the body of the message # To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 13:18:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA18993 for freebsd-ports-outgoing; Sat, 19 Sep 1998 13:18:17 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from hp9000.chc-chimes.com (hp9000.chc-chimes.com [206.67.97.84]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA18868; Sat, 19 Sep 1998 13:18:10 -0700 (PDT) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA079512303; Sat, 19 Sep 1998 12:25:03 -0400 Date: Sat, 19 Sep 1998 12:25:03 -0400 (EDT) From: Bill Fumerola To: Ivan Kohler Cc: Bill Fumerola , ports@FreeBSD.ORG, jfitz@FreeBSD.ORG Subject: Re: freeside CGI patch (fwd) In-Reply-To: Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 18 Sep 1998, Ivan Kohler wrote: > > I'm including your patch in this email and cc'ing the freebsd ports team > > in the p5-CGI maintainer in hopes that he will include this patch and > > commit it so I don't have to dupe his stuff and include it in my port for > > a two word change. > > I sent the patch to the CGI-modules maintainer a few times, but it looks > like CGI-modules is no longer being maintained. > > I plan on migrating to CGI.pm soon; anyone using CGI-modules should > probably do the same. Perhaps you would like to include a note to that > effect in the port. That won't be a problem, when the program changes, I'll just update the port, and no-one will know (besides the ports people) the difference. - bill fumerola [root/billf]@chc-chimes.com - computer horizons corp - - ph:(800)252.2421 x128 / bfumerol@computerhorizons.com - BF1560 - "Logic, like whiskey, loses its beneficial effect when taken in too large quantities" -Lord Dunsany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 13:23:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA20035 for freebsd-ports-outgoing; Sat, 19 Sep 1998 13:23:34 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from hp9000.chc-chimes.com (hp9000.chc-chimes.com [206.67.97.84]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA20025 for ; Sat, 19 Sep 1998 13:23:32 -0700 (PDT) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA081372632; Sat, 19 Sep 1998 12:30:32 -0400 Date: Sat, 19 Sep 1998 12:30:31 -0400 (EDT) From: Bill Fumerola Cc: ports@FreeBSD.ORG Subject: Re: sshd In-Reply-To: <199809182332.QAA20213@bubba.whistle.com> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 18 Sep 1998, Archie Cobbs wrote: > Can you give an example where pkg_delete_im_gonna_upgrade_now != > pkg_delete_for_ever ? What does pkg_delete_im_gonna_upgrade_now mean > exactly? > > I would think pkg_delete_for_ever should be the default. I have a rather nice proftpd.conf, and if it was ever removed as part of an upgrade I would casterate someone. Good enough example? :> - bill fumerola [root/billf]@chc-chimes.com - computer horizons corp - - ph:(800)252.2421 x128 / bfumerol@computerhorizons.com - BF1560 - "Logic, like whiskey, loses its beneficial effect when taken in too large quantities" -Lord Dunsany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 13:24:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA20375 for freebsd-ports-outgoing; Sat, 19 Sep 1998 13:24:19 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA20156; Sat, 19 Sep 1998 13:23:55 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA19427; Sat, 19 Sep 1998 13:23:32 -0700 (PDT) Date: Sat, 19 Sep 1998 13:23:32 -0700 (PDT) Message-Id: <199809192023.NAA19427@freefall.freebsd.org> To: seggers@semyam.dinoco.de, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7887 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: crafty 15.18 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Sep 19 13:23:12 PDT 1998 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 13:24:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA20412 for freebsd-ports-outgoing; Sat, 19 Sep 1998 13:24:36 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA20355; Sat, 19 Sep 1998 13:24:17 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA19500; Sat, 19 Sep 1998 13:23:53 -0700 (PDT) Date: Sat, 19 Sep 1998 13:23:53 -0700 (PDT) Message-Id: <199809192023.NAA19500@freefall.freebsd.org> To: seggers@semyam.dinoco.de, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7909 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ELF for port games/crafty State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Sep 19 13:23:38 PDT 1998 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 13:36:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA21898 for freebsd-ports-outgoing; Sat, 19 Sep 1998 13:36:04 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA21825; Sat, 19 Sep 1998 13:35:51 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA19838; Sat, 19 Sep 1998 13:35:27 -0700 (PDT) Date: Sat, 19 Sep 1998 13:35:27 -0700 (PDT) Message-Id: <199809192035.NAA19838@freefall.freebsd.org> To: dburr@pobox.com, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7955 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port audio/8hz-mp3 unavailable due to licensing issues State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Sep 19 13:34:55 PDT 1998 State-Changed-Why: The port has been marked broken. Thanks for pointing this out. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 13:40:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA22861 for freebsd-ports-outgoing; Sat, 19 Sep 1998 13:40:30 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA22846 for ; Sat, 19 Sep 1998 13:40:24 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA19973; Sat, 19 Sep 1998 13:40:00 -0700 (PDT) Received: from ady.warpnet.ro (ady.warpnet.ro [193.230.201.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA21676 for ; Sat, 19 Sep 1998 13:35:00 -0700 (PDT) (envelope-from ady@ady.warpnet.ro) Received: (from ady@localhost) by ady.warpnet.ro (8.8.8/8.8.8) id XAA18746; Sat, 19 Sep 1998 23:33:34 +0300 (EEST) (envelope-from ady) Message-Id: <199809192033.XAA18746@ady.warpnet.ro> Date: Sat, 19 Sep 1998 23:33:34 +0300 (EEST) From: Adrian Penisoara Reply-To: Adrian Penisoara To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7991: IMAP-UW Quickfix: MASTER_SITES update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7991 >Category: ports >Synopsis: IMAP-UW Quickfix: MASTER_SITES update >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 19 13:40:00 PDT 1998 >Last-Modified: >Originator: Adrian Penisoara >Organization: Warp Net Technologies >Release: FreeBSD 3.0-980520-SNAP i386 >Environment: All FreeBSD versions. >Description: The "imap-uw" port is *way* out of date (current available version is 4.4, I haven't tracked it since 4.2). This is just a quickfix to make the distfiles fetchable again -- complete patches (with A.OUT/ELF support) for imap-4.4 will hopefully be coming soon... >How-To-Repeat: "make fetch" in ports/mail/imap-uw. >Fix: Please apply the following patch: --8<-- --- Makefile.orig Fri Jul 31 13:42:49 1998 +++ Makefile Sat Sep 19 18:13:10 1998 @@ -9,7 +9,7 @@ DISTNAME= imap-4.2 PKGNAME= imap-uw-4.2 CATEGORIES= mail -MASTER_SITES= ftp://ftp.cac.washington.edu/imap/ +MASTER_SITES= ftp://ftp.cac.washington.edu/imap/old/ EXTRACT_SUFX= .tar.Z MAINTAINER= imap-uw@freebsd.ady.ro --8<-- Thanks, Ady (@freebsd.ady.ro) >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 13:46:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA23768 for freebsd-ports-outgoing; Sat, 19 Sep 1998 13:46:55 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA23741; Sat, 19 Sep 1998 13:46:46 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA20222; Sat, 19 Sep 1998 13:46:21 -0700 (PDT) Date: Sat, 19 Sep 1998 13:46:21 -0700 (PDT) Message-Id: <199809192046.NAA20222@freefall.freebsd.org> To: steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, torstenb@FreeBSD.ORG Subject: Re: ports/7932 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: man zshall doesn't work Responsible-Changed-From-To: freebsd-ports->torstenb Responsible-Changed-By: steve Responsible-Changed-When: Sat Sep 19 13:45:57 PDT 1998 Responsible-Changed-Why: Over to port maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 14:00:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA25010 for freebsd-ports-outgoing; Sat, 19 Sep 1998 14:00:25 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA25000 for ; Sat, 19 Sep 1998 14:00:24 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA20586; Sat, 19 Sep 1998 14:00:01 -0700 (PDT) Received: from rachel (mail.glenatl.glenayre.com [157.230.160.51]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id NAA24838 for ; Sat, 19 Sep 1998 13:58:35 -0700 (PDT) (envelope-from jhicks@glenatl.glenayre.com) Received: from jhicks.glenatl.glenayre.com by rachel (SMI-8.6/SMI-SVR4) id QAA20048; Sat, 19 Sep 1998 16:50:45 -0400 Received: (from jhicks@localhost) by jhicks.glenatl.glenayre.com (8.8.8/8.8.5) id QAA01036; Sat, 19 Sep 1998 16:50:39 -0400 (EDT) Message-Id: <199809192050.QAA01036@jhicks.glenatl.glenayre.com> Date: Sat, 19 Sep 1998 16:50:39 -0400 (EDT) From: jerry.hicks@glenayre.com Reply-To: jerry_hicks@bigfoot.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7992: new port submission - xemacs20-stepwise (XEmacs20 hacked for GNUSTEP) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7992 >Category: ports >Synopsis: new port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 19 14:00:00 PDT 1998 >Last-Modified: >Originator: Jerry Hicks >Organization: Glenayre Electronics, Inc. >Release: FreeBSD 2.2.7-STABLE >Environment: Tested for RELENG_2_2, don't have a -current system here. >Description: Follows is a uuencoded tarball of a modified version of the xemacs20 port, hacked to use the neXtaw widgets and the OffiX Dnd protocol. Makes a nice addition to the WindowMaker clipbar as a drop target for Dnd compatible file managers. >How-To-Repeat: The tarball should be extracted into your /usr/ports/editors directory, then run 'make install'. The port installation will overwrite an existing XEmacs, so make sure you want to do that before proceeding. >Fix: begin 644 xemacs20-stepwise.tar.gz M'XL(`/W?;-K+OO^:G0%6GL6N3>EB/Q*E[HEA*HHU?1U(:[[W9 MHT(D)"'B:P'2DIK-=]\9D+)EFZ^T/NG>O>:)+0GSPP"8`>8!C;-D#C5EK:++ M@/D++EGYNP=_2+W2:C3(=X146XT*OI)JI:E>XZ="2+-9J;1:S7JU!M0:X+\C MC8>?ROTGE`$5A'SW:<;-N4S'N>95!O7_[+.\I_\)MYE\T%U05/_52J79J%>! M6J_4'_7_39XT_3O6PTD?]5JOI^N_VMK4?P/UWSBH?T\8NA\9E%QEL]#VHT#J#;M1L659M4J--ZQEC%GQLU0^>3YK:7[WNQR=ZTLY_ MU&[(V0.,D7?^ZRTX\\U&J]ZL5ZK5)E`;K4;K\?Q_B^>'[\MC[I;E3/N!2%-P M/R"!1TS!:,!(,&/$]LPYL;A@9N")%>$N,:EDA`=D025T$LSQKIB%A#(+S+(P M-6;./**[Y"FY5+OHJ<8GY'^);I'R%15E$;KQ]BHKYO_08!P76%G,9C`J=5?D M4^C.R0)4,B,.79$9O6)DS)A+;#8)"!5>Z%K:EG"(/DED6OY)8[9DVI8SA[D3 MW4]$:1,.PYK4)=1>T)4DE@=KYE(S9XYGP6YMM9+[L26LO_+?8,3NG_]3.F=H M`QYNC)SS7V\TJS?^OZKBOT;EX/'\?XOG!W+&%L3W1"")Z=DV''/NN7#HHDU` M)IXXW'HZ@,WQ`38'G&CEZ>'4_,J$1*1@_PS!.EB'6Q@^`*&#EB,R(-"X-:`! M&3"?5)]#6G=8J<`_TNT,X?/S9X#^,/.8)XDW@*I%91TP8>!9Z_,0'&ZRVJF.A$K>?$\^9/P;)`D_8#<-GN6=OP1NOT M!L.S]FGW:&LC+-(NWKVYU;@^+A'UN#WLOCGO][J#HRUF<;"44CMM#X;=_FC0 M&V+K1VUK:Q+XA^4R_#9B[^J):=D/QVO3LOUY/?:7,KG=P>)3MC1<%I2-6GGA ME-N3@`E<11D,E2Q'(KG;R6'<,#WCDU^>",;*E]5J^;*\X*[E+48.=>D45%B0 MD\]U.8:7J6$Q->6I&Y8=+H0G[BXH?S&A7%D<*#AH>*V65N%YN.C;EEQ"JMIHW_[#]Z\LO9/LS MZ/3B\N)T\$4#!??.AO#3[1^I/:8.T4L4]5A:*`I-.^F]&G6Z%]VS#O"]])V/ M'XTZ_!QN?[XX[P\'G5[_2WDJJ`^V!Z;E.VH5GWPV!=#S5"`"%-)W$5A+!0)= MX5QV&=`%P)IWH8.!],`!]KBS#5927L_Z([>G+;?`74%\,&P MW[LXTMZV!Z/C\[/7O3?O^S'E^N.HW7\#$N4'SYJZ'DN[K M'N@+)ZG#645;Q,71VI?'[0L.VT1B*''DTH!#B+'9;@HPAV,JY!'%^(1N$BU. M;6^:1%GBDH]@LNNQ8:TZ=TT[M)B\F5DY;MI$@6`%%?P6#-HV(#:7/JZC=`NP MWL\Q$^F3&[*<4<'*=^@E8`F[]ZQZ!"H,Z%0:5<+B5SC7-`BH.8O>FS;H*(C> M6Q['=S@=^"29N()/\<&O:EK[Y&0T!+UTAT=;U+8A9I2!IOW:[O??G\&.`!.X M%K^V/D1'6_>S1TT#+>JFYT[X-!3L4-MZN5/$PF<]..4=TP*Y?.B_4[MS8]Q8 M?#J',27Y\4>"\8`Y`3=A[))_)?;>M!P8\^()@IVR[KR$SKL;8^_"FCP9P#:` MG6C;AYH!7I4H]PI1\[CF$*6%2`9\+A$EVW)#8'K#^?CJAE*:2A;6V$ MOMN?K[7WY5;X&X/P4B][)R8C$S>E!G:W?_H%`_K;BY2P.#C9L+AX5>0Z-X46 M2%9NX%'^84!F\%)E'-]CSG&?3/[Q`D7A`NE4*30!\P+T@U/JG0V&N+,'QV"4 MAHA47F)#)#B/A"EHQOJ(_XSN`)V#X['_SX-S-F#W@!_U?W_007C M_WJE_GC_^RV>=/VK5YW2/S]&3OY7K=5;=^Y_FM7*X_W/-WET72?7SA9,UM8I MY'2OV9B0YZ16.VP\.VRTHEQM;V_O%M)PMP802F%N1YJ@V<.#UF']>81]^9+H MM7JUNO^,[,6O+U]JQ')M5/AE=P3F$J/BG>V`3R8C';_M'K\;08R]`VW[!'X-UD';@`7#6>B,]]75 MT6A)%QB3;7QRO5UM+X%[%`,CZ=8`4?,?&(-H)!J%WHQRZL&J(;X8AP'Q7'M% MT/V"(XL$0&R(5@79`8C+('R65*QVD_BV>];>O4T_ZW8[FQ104?M":P+1T M6+?A@8KPP\@;?Y*[J(,-12J]7.N0O'B!(KQ%7XMP`T*8I":*2%TIEK;!N8\6 MW)JR0)8P-/K)04G]1';_T[SF?\^3:__'?WZ,'/M?:S3J]^Q_M?9H_[_%<\O^ MWS7^SP\/ZDG&_[;E?W8(QG_M)=`6-:NM9_O5*ME;OT%KA%9%4_K6=/4%P38U M1RXIP5XSY]R=XDUCHGE%0Z"L2ZED&(;J9I9(]9W]@ M29%!O+^JO3^UJIBK6MC>O85%U*];&RALR49J>.6ICTJ1\$A)V[M/B"^12FC4 M`_*+VC4!DX&!2V3+@/S\<_?\M49^L+G+""SMV<92H=RX;M*F)P3\*DX%W`U,!-!1U=,C#W)2N2( ME,!WE^*\,%(`[M6V[T/ZB5+_6-K@]K&$_OKCQE@EE3""3XSIXTL&M`QL!V-F9A;XSL31H$3=2#`6^%U`"E9X[(UABV#[^#E!;$\%,\= M5#F48GT'=X._W[/0)H:5%-K$?[6M3WIR_;_YY\?(R_\.JH_YWU_U#&=<$J5J MPO!FWH7D0Q(*28QP;$@^R((*%ZU`]&7\F$VIBT9@S`AS>!`P2PM="_*5UX*Q M5X..;H9"X.7E`NT)7CA:*Y,A0>'C&D\D,1A M#A89>)@8351OZOLV!SKWW*9 M$):0:OVP7C^LJ,BDJ4*8>WVVP/%%\"H&,I7FX4$5X:W(XSRK[%]4=E]$*2V)S-P.-H^\R:@R MHL$(IP7S^/D6+\BRMC[#3SK^^R-2V54(L'"^X&Z`P``T(O9)J3V6H;#`ZR\( M3@'R3`'3JRR?+,G.6E'1Y]V/;FD?9K<5?1>;,-3^[9F]`.R7]6I4K<5>]LI^ MN;.RZ\N_SS=O@9,0KH=S>K'9BCR5#'=,7,,HV$V:X>YCGOC53X+]GT\?N`;\ M*^I_6PU5_WW0J!T\WO]^BR=9_\?GIZ?=L^$#C9%7_T>:!S?Z/T#_7V\^YO_? MYHF+:0(,:J/Z"'(55_;4*F0'8W#RYNP][HZH5N;1QOY7/X@&,%4HV"6UB"<_'D@I@J_)WS`@^J`(VK%(5Q+2Y3\94&-K1 MPSQ:O%J."Y;,GNB69X8.1*TP-8R`9>`Y_'><\3X!F\D@T(?WD-%06P^XPS2+ M2]^FJ]B80J[R7H(]52$X2#1FO^"VC2D4\L%F6"XL0T*6-&$T"`6D8!/*A;TB M@OKPA66 MC`1,4%.503G4#8'U6'@+F+Q!8O4QF"%,96/9,*Z)M>!2+105<;Q^:`?T.:*['0\K*4GA[I:E*9$`7DO,\@0("S:?!\^?(@4@.,[ MP/%:FG`P;%6(K^K!M&!&`W4FHX,W9OC](P@XA'1=%?C@OG#A7)K49S=LF;A6 MA]H,$I)_&RSA)'35*JC-@Q7N33C)D7C4*8:=BK.S^&3"5/IXO>%QCO8^B6Z^ M<-(R])5AP8,;?>4)FS*,]*BNGO'D1I-&(T+'?#TDENCA_HPM"A;^?X_X-6 MHU4_N'/_5V\<-![]_[=XL,)N7',T?%55B.H=NWX7U]SI<`#5Y^OZT/6GJ%9Q M_0EK1-5['QSEE$_4>V%*/?[V2GW>K*M_J>Z&;)?HDCSIE)^\)D]>Q0#M97QS M))R-QG6!W4WU'1K0,OQ4RW$Q*U:17K>QA+:-(M>[[>N"U[OM4?'KW=:H"/96 MZ[H@%ANCQ67^"1)Y0?+^V.@.%Y!28M'OFA%>M:1@$E@EUF+>Y95ZK M]\D]L;RVG](K]L].3E/I/2BT_7 M"#BY>)W8?MH^?ML[ZR:/=]KNG8#`T,:G`,[[76,P?/\ZA?GYL/=K>]@[/TLF M#SKGR7Q3)7#>[W3[622C^[Y_?M'-0ORM?=%.GE"_V^Z<)O<==/N_]HZ3:<-N M_S1Y3N9X::!Q2^SU?GC>[[63#\'E.[:2*Z>3O.7H)]-8^H[Q/VE4)XML!X)* M;Q+HMC?U$)@(&]-%!A.@9HTQSNR;V16_XIEZ^-<-R>3(2J?09A#`9_%6@*S1 M+7`]EF!6`4@F&\?#,#T/D,GB*I.8U959@8X>QX#\+AF`'^>PPPQI>ND(&8@, MA"LX^&HK?9`,38%'-);CY(VG:"F;0,[LO?L^F9G6>T]^S>B,YL_O*SCJ92,[J#JFOY%DV1MW\E%486TE5P2:J MFH_R/,ETRUNXJ=[D-C3T\X#(3/=#.8ML71XT#X-_S):+\6P+C%(.RO,Q8<]# M"6IQ+U>\"I4K7L&GLZ"@+!0V#Z3^C+"0NB)DOK8@19K:3/;M? MQ=HMM,?<8F)0P'Q^GL^*35(!\_D))EE0B&&$S.7,#O\E(D6G`IUG=@9S%/IA!'B:970"2R082SEGJ M[KWB;D9?H&:QOL+#=9RUNZ]LB`(P-32SUNMT$IG)@G\4?';VNM5%9K%%@P*G0:Y`,]-Q]D M<8E_G9Z/4\%K#@B_J0LQ$L,K_L+H7."$+W,QW`V$5PSUJABL4Q"6STZ$^:(# M3/HN6H/P*R,<-7^A"NE=L7PM0-R#/`OA04VK392&A9EW* M;L(\?U9LZ!FS"\ERYH5B:M,,;[X!GGN!701GJ_\DJ=#"B^KP@3DK!,3TI1`0$D"VTA?\]R)HEP4+3Q2R)2Y;%%(ZX@JM MW0WGA>09UX,5@195$43OA;3NS[QB`_\S5*55Q:!,1M>F^=CKVX8"4+P_C4K] M"L%M;YH1D6T@H[*NXLA"NL?JLD+6&$-"_+.K0M@0W&VAUB_VSNW+KEM),_O\WR*?M_# MDE4EV](\C6QK;>_(4J^E/MZ>%QTFBISU5 MIULNB3_B$@@$(W#ME&)3[3@O0EL=$]XS9-/EE$@U6.8Z>#C2,`,^5$V?OS"+G^'#JC]7E=U^VINO$ MAH]#[(L9#X+H+9?B+9_B'9?B'9_B*R[%5WR*WW(I?LNG^!V7XG=\BM]S*7[/ MI_B:2_$UG^*FJ39ON)AWCF"[B;F?%)64?H'(!M(]&B-504L9M&I^'G8#9W6%J\>=8#$2Y M)DQ*RW@88""[WU7EBQ_??G[[_N/E9803\$X3\:>_?OJHE>CEC?E+G+*S'3=9 M/EQ>=NA#^Z$JV^[R(IZ)^\/$G%R^)JWDFQN8K65Z`GK),$Q"MP1S=T-26PHC M&*;D63/NTHX`]U\IB,G3[K0B&EHKA';G"5!'G'N*RYJ***#!F(H0S$VN,J%4 M4M)#)5?W[Q^_>V;ES=5>MG+G*A^BA!@ M0O=J,ZALW]]DZ6!.Q89&\,OKU]^_^?>7;UY_]\+LJ1L*U;]XF^?Z<_3>:.67 MRZ/D]-M?MDWWY9?/OUU>?2LG\YO6^"^?'JM-4_;__N4G9<\J[R*3L%^+3#][JGO+=I+L^R"Z]EC]WU M/=:^=_N4]_+B2:V^ZPY/*J9^[TG%U._=/?&]5T]YS[AX3WSO2?6K1^`IQU]K MQR?U/?-UN?J]#V.ENB+[DM;YET]VF_&7G^V]&/&TC.,]N08$D@#)K1!0`P^Z MX=+23BS#[;\RE/'&&`Z8DPFR'LEER%RMT:,U7([X/#ZHO*F:IK[YWSIJ*=6K M6+#K7MCH[Y:(]'W2UVDK<8V)DR1&1+*RR*0B9>8(-(D9LT/3"%`N%SGO"JGF M>3=6R48IB=NGE>Y+$F266F"DJ+[TS9=]VK:/`FE.36-*5C;W25^9V!USE2HU MNKF74ZR:^J"DXK5%6C=,^?XB M#CW*Y?FAZ>2LWAV+4COQXTYJRK^;F4",?*K-O*:DL#I:J51S?W.?'B'6/4J( MZ4?3O!?.LA(=NEOA?JQUP)^82?PL$O&:$UY-.^F( MKT[+Q!X^L=R'>,4KYE\3=9],Y][>7'8X\)L/^I78BT6E7L3WR$R/XYMCIL?Q MM9_3X_A:M^GQ*_SX6_SX._SX>_SX-7[\!C^V6Q7BS_,6/S>#I(+D#2)(P(R0 MBJF\E%.YE5.YE5.Y$U-1PP#V=TV,_APR6`OD;Z_0>F&/[5&)[J/3RLPK\(<' M&L_CBP1.4;`\]!)*%N`AOH3X$BJFVC[R$G,LFRXE*\U1@G(WH[MNRH+X_D;>HO,8V1QNG+L-"RMLKO,#M%2[@ MEG3JMJ1'MR7=N2WIR]GC%.B:KS2?-F%\',G(:26YW!E9K:20IIF>-IN<6'D% M_#7I$S);6$)J`"]HW#%Z[*@17?!+/R6V"Z&*P$%YA-F4^6 M2]-\H*]JEN4%MM33"VRS3##;+`M,%X-ME@5F4^:3Y=(T'LY5S;*\P)9Z>H%M ME@EFFV6!Z6*PS;+`;,I\LER:8WM5HSB<+;'&V0896[HYQJO*RS;%>$VUV"3% M],JT'Y+[HF9;(>")\BX\T0X+2]0O8-DR$$T1L$*Z9D*"E=O"LND2\IHX0E8+ MQ^1+R&CAA/3,'D%6/@O+IDO(9^((^2P MP+)EH.3V0/>]5O=3.LA<83IE0F06).2U@E36A*164$JQFRZ'H`7EX5>DS@C+ MH8RX/)0L`",R#Q52[51;IAFM73Y^1>J$T&:4$)J/D@4@A.:C0JI]JTKZ:[C" M=,J$N"Q("&L%J:P)0:V@D.)8YPTKI85ETR5D-'&$B!:.R9<0T,()Z4TK/O8- M'14$_#7I7Y,V2/=8O4C'O&B^]$-:Z5(T9=-MQY+E^V(Z@@_20R/-.YQB1&I` M!4XQ(C6@`!HST^'3<;FP!CX5SW*F MTC#[C&!1F$'6HAGA4,@I%L]PP7#1`XQ(3:J"#LK$\L\,RLXP4LEG1DH'E]DL M:A"*O"#QG"8$%WA!A%1P<3N5F=,[A1+[5#R[F<+E]BDY+:GT;0G7,08,RLTP M4KEG1DH'E[D?QNU6Y5\VS0-EHWQ>-E(ZD&(J_<&@W%.:\ M.(:E\\_3NNCW'%K4FZY06PXFLQ_-%A2&5&W/Y;QMBK*GR)WJS/&U#+I/NZ,Y M_(QAOR;7M-37A&ZKKXFV0PVIA%^O*@1?ABN*4*;S@744;;@7+%]B9.H*<=9:1@M<9"7PVS`2ZF%&"]6TCA?-2 M\ZPC0U]7CBN*<4TIO$\J02^]F=&,Q412\&0C"7+]#A+P:JD84B(X>2>?5IN3XU2SH_;=.SKM@H M]]05 M\CD497F]2$[>(O/JQXU3DRNR"E\B0#(/ M'%.%`^]>D6^=J7+^HE+Y,L2_DO\5[UI[EM;Y%?8"OGUUWD_*\JJ1IT.>RR2F$/L_3:=;G)`V;RB]?E MN&VZ>^UK/2%+_\WK\MRI*_4U>.NZO%S3/TFHX;O7Y2L."HOO79???,7HE=DM MK]&YV?FENE/IE4IS^B*=8]OTPQ5NS>77^-RF_1!/J-_IBW2.3U"5)VB)?>5? M,*FQ!.@23+HV?\>E)1KLZT_+_>D94WF.HS;(69,K\QN5U]D;3!Y7=HRS-T`> M[A)9?,J1#X+3_'QL7K'/IE-8FTU"7*1S3AE!<7P<9?B.305T5ISN7\7VFF MWM8[>V6J2/[<-%N2[(JZ=G>YBO`OTQF$#/EKUTRWT1'H?WX$]\S[X(?'%%PV MX(&?P(4)`3=HHU62N7\:NA3>=N_#G]/RP`KU<]H/G%#_*&HZU3](3?GG>#C( MY!]%KB8-[-7+J&Y?@.,755V`[VCXD_Y[_-B$4_H/<]:B!!OP)W74?P$W6OSV M2_(N^?#NCT\7G][?V4L[P:D4!C$+D!&P23-[$`Z8HS_%(N7UL9K+U&!$:L#$ MG6)":D0MB1H2M2-J1M1*J-%T4/W-O)X7IE;4>_5`H5DZPMOL#`*O.3-`4VG_ MN^^UM6.R-"<8W>2=H,N&,M-Z`M.6X!I3C6S3^.H/\UAW]B^]ZM`UR!8SQC%+ MM605K)Q9:XR?USG1`P,LKA,+AG4TP(C4L*X&F)`:44NBAD3MB)H1M9)J]&!4 MW*@O2F@Z*`43'=:1IKMG=,3'0*EG3)"BCQ&I"=+T,2$UHI9$#8G:$34C:B74 M:(`I[,I&.^?@KES-3(&!W/P!%B_0@F$!!1B1&A94@`FI$;4D:FAN6A+3(41` M5)^HNEQMF$13*48!?`SD-F-"[7V,2$V0@H\)J1&U)&I(U(ZH&5$KN48XB:&D MVM;#4&X.DVKO841JDA0&<3_PC!&U)&I(U(ZH&5$K7*.B2G=$VP48D1JN78`1 MJ>%:!IB0&E%+HH9$[8B:$;62:P0[IG;_%`P5X+W,^OE!/6X:='VR9J;KZL&] MW3/2C##(@+?>3\^AN*IF[*$LI&OE)P2-X.:EM0!IFE53>AL@,5;>,*( ME'`J9I#>K"5I8>WL=B*YZ"$'*RF6Y%`(H,J M5;MOP,&^%A)&2P9C19@QHZ&^N_W^&TATTWW!<6"L#[6YFYC);AQ5;28$N0&M MZ3B)(87C:,VN2[?1MIV>QB]BZ(=BMS%/;_XK_KP"P.=_?/[X^Z]OW]_DER<3 ME^?;RU>++<_WPO/Z\B3<\GRX?&O<\OSKY;L$E^<'(?WV\CX(=S_S+__\^[O? M?_CX_O)4J8,^?DQ^^/WC'Y_>_7Z1EI7PPJ*9OTXAZEB3BJ;KK,*/8\;54IE2]D;E1U?N7/RJ7Z MUXO;7SQD,+>0860O"89H:J:E%0,9JB["UJZ+J+#O(M+7(L1YG1QA82\728'Q M^GD$VSQJT395RQKXA3>_)$T[%%7Q5[Q#!KCY)>G&VMQIQ;\ADWG1ISU19+8G M1^O(\*[(+.K)0WIEJ68$S%+=`?*TTTW?QK\E*\4U^,+K7Y(<>!(!N.VTWO]]CE[<1'L!P];?9Z=?"'+4(5N%/;L%S@NS*E(;&A;5C(SNF[+( MTT%8N!9HQCV\DY.H%,2/$N?2'16/A$- MM$^B??7C6*M_$NLIH(3.JA7CLJ32D3MM@ARN_ZO]JQVP%2N855R"QK*FP*BM M9*ZV5(JJWIG[D0BRU`$QE<&E]&7>M+(&6>Z#$$36:EV#$G M2/O372HPV!68D%[]B0GTE%9H+RN(S)5"D)2&J-^^:&),4Q7U0+>:I)N;O$G=0 M756(,NC*1ILAB>KW"@Q?S=#E\VU\Q$T?2*W'?!\BVH:5,U`WC)[J&T/+&&7Z M?.W$C%5/D;'Z*6"C7*150S'GJ2@&%QW%V**D&)NU5*`B!Y9LL MG9ES/17HMRNF$+M9Z50P9 MQ352T^72\6V5/H2FZ1R2YL>B5XDZIF;G^`Y-O,UO<";`T9E)%BCFBO6M`F[. MS&DQ)=,"$8:4>H5#E;N`G"NJH]V7@4$'!48%`U2D7#-=W498F2XJ`7YE%9;( MS0TK@'[+RJC8]V)MR^`RMK9#%"RV6[&7&@9W4D/0/<[`G-X;TMZ:;/Z@P&G! M-P5&#ND\`XL:?`)]L%(=4GD/'$LNQ39RGNL9.&S`$+`/PGE2'S3K&RCPO@`Q MH@<*#&\+SIH0DF0O/-,T)GNK:@3I5(@@G0XQI%4B@FQCAT_&U(@@\4SI!44B M2*=),@F@;2]9,TU`6Z:?LY9,HWG1*:#^AE#;5#>5UBO00^>4DJQJ&0QWJ`4S MSB11_F37@?!GQ;!M7;"JB8_->!1:`+)B3TK!0965&^.+ ME5;H2#6[,'KF@?%A*`/I_T^**T)9U2<'-.3C@3+3''!33E";X"::("Q2@^C^ M-`+O?Z8X'5M0F<(:,2&-2:P?BAJL3EO@$2R)F*%M#3[_CMF-:9<78.9]`>_E M#$7--]`A?1,?9U\@U6U4U\C*4X$EBPO3)V-=X+X[<9>/,0^9H\SHC@%&CCWJ M/NWDTM=:+XXRUASOP1C/3+5RN=HRK>-+^68J?IYZ@`U%HA[:LNDNGR9_R@[W MJA:,[$0V[?3/$G>,#V>MB-R>1T(/'UZ^N7GYK83!Y]OB8<1]C`I[+GD@P-_Q MC:*`S2HF8-;L"%`&EOR=]B.,$=5S)EK`P&'AESY%4J8C6@%V\K653*B$+C94TA:B&3PO0M)2Z^P)U)%1^".C1O/73&K7Q44`8!B+(5`V.'ZL M(V(VBA$Q%\:(G#"AMH)'JJ(VJA`I%R6*W"A\&8)(5^3D@#\(3F79,7WK"":) MSAP&,8W67Q)8(``1SL1)^C,1B-PJ`PE=A!`#M9*DNGC\X-?R M0M858-&+QS&^[T*K?$C*P^TW\1U0(5NE+6SE`$9!5``>AY??@"C%9PFJS[JF M+)/IC#>9-ML%&*P=M3_(5,B07$%G\J%JKW1AU,3#=6/<]7@L+U%94 M]%EO99":0KBHN12\2(.AV42A9WI1QT4X5%\1=_HK:(=ZH35M]>>H6"S0*1 MAD/Q%*L'XH^'!YJO,IP3]=BA:4J2O;*]@'J<-1C!GK78%>]P]-)F!"M,:EYL M#`)>6X.`!9L\J*Z2-N%;Z/_\X]VGS[]^_'!^)+`'N5,+S.\(^_SQIX\BQ+I9 M$TRY3A-I_I`0M.39(<(4V.4:P%;@/J)^'3`#E\6>U")"[=)*]2\^J/_[N=C& M`Q-+DT>&'"'%7W?9$4Z MQ#TO!S89LO$.&FLTTVBA;8E.:[#,KJF:0SS:M)#N[4TA,&6QE?*JVO$O`>E; MM(3(,<.8EY)R#4K':))2/51H.YIE'IO[:_68[!L0\_0=G`6_()GOY,TKP"6W$\4F!Z5><)6-\3*2"L3EA"&96@M8P1;%\E MR7ZH2KNE\<7;#Q\^_N/#C^]^>_?A,_7"Q7L7+H%HE=8)FN8I."KA%.84X.0M MXZ>;"Q+M1:[M=`"9>7PS5!<.PKJ4PK8SW?BZ=\Q?<_09OL!/?]5V=%OLQLZ> ME';MVWF7[J;K(/.NB0_MQ=XVQWO6P]-R/BAP,D+L)3@&'7T)C2O%7JJ;P6PU M,9OCXZY6Y&6:-[\>"Q7_E)^\,"BM3EI)>G."'O7&='*EN=?L20UMM#?1]J;I MKA(B:]_V\)T3>*Z8_W_[XGQ\^_O'^W4\_FZ]EY"MHT1\__OV?OW[X M&2$_O_O\62/)K^]__?1W!/[RZZ?/'W__)T)^_?#I\]OW[]^:(1#$X4%-RZ#O MMB7^T')J*IA(6I9JUS4WYB^(VW1FKU[4!%DHT_W+_"*FEE4CQ]D]R`681PK` M(SA^;P%;<[-MW#D\Y6KP@3ACFP0MFBW!&N?R&VQ#UG#BPV\WG,G"8:,!QUNB]NE,BURDS(GZE=*J(GD/OB\$ M_>G`#8/DXB9"RO^T$:`"D) MJ@R(C<\_.4Q3HV4GY_X$56NR9:QC1(#6Q2-`:ZT)<,]JC[6'5!E)Q3V@7[!S=($>ZR&-3_0[ M[/7K;]\D\8E^0YG<"G"6VT6I@A;P<\68D[X$.?$+F)6_`"T-('"N!21J;@+` MK=*-0,9MR;K'=ECFO"1.6'FT@O$YL97YR$!H[&VER*ZWOK#\QK!9TN[B(60` M=FJZ7HUBAT8[A?'("M1.;$^_>C(\UX\AEPHR\%+#&"S?*%/Q5[P85/\_B0>_ M,Q$/`F8Y0XO2_*G`8BJ-:U0E3X!8LT[\>38-)V:IB MNU7EG435YA83X#,Y[$%EXY!N1*%LW\0WYSBBZ88NK9.JZ./^8X`*U+[(=5T) MB-#RZ2)M`3%WJ3(-=>CW#-:IK:S>95&/#SHV3OH=6+8PL],0JJ0?%B/TK>@' MAJM>493^O";6PDJ6J4H/E)SUGV.9W@I4W35;RG@U.L9.["6Q,H@6@%JJU3XX M&)QT$-GWVR(;1G"^B:/66UP%L-.?".!+6.AQV#6A_^B202W&)&3"U!@TBYZ(&S'72Y21G<8,H:=_'Q_#JY$/.\_(E M;D`'09S[^0+H''V!FCU]C'FN/@877Q]C_@77=,>;[[IB@Y\K+X(DOS[]P[LSS[R[>O/B*R'2D2IT[]!@//'J(>BX]YCR? M/@:.+\P6%JUCYA[F_K':-"``'?7_DLT&W`%FD:P`6Z>"5.+%6I.),*VYI^W8 M2U,S,^:6VF,H/ML\+:M3TDV=CUX!"($[I-.Q6?]5AAW6VJM(NO M]5Y)\1C"!15/(5S):A2&@U?4[)KI5!(?@`O0`LQJ!6"IX`[:E84+,Q8,CL(N M5"[,1Z^@Z@\#V#/J@=(0\(JB6RU6JLG0%-;"F;.,A!LP5M8\@)^TE50=V'"V ML&W:#_A`P!55"D\JK*36,=//"*TPPU9X]_R*-C5=5(V6T_4\C`C& M.B/[[T[5.F[($C"7N[*UCLX[0I-W#3P19^'VZH&0_?Y1!^D)_74JYL7N!`IO M:0GZ>5>!;5PKJ2,8Y*&MW'TQ9/NXL[V07P_I=&4Q(0KEB^F]5 M8E2/D'O)E-&,+W&6RY#]&-]EXH&$1:^T\>!Z>J4[`_E!-?&7#L+,-^5_RG1K M!A_1+CJ/I+)O59T7]4Z[N$2UVEZX/7$A._J3VJE,:0-F;".A'YW:;@I"X^V5 M`UQC=49%B)(:K]),C'!D6Z*[9E?4'MY9U`G[@CD\;>I.!,L9DG[4MA'&Y`NJ M(Q$\"[B2YJKB&BQZ\,B'I$R'HHXOL_99W?/!4CJ?U"8BH5P2QXXMX>(/1:5, M1`9V`@>L3.GOK+'-:*K;8W/5P04G*]KFVNBWCX1!O5>;K^C>(Q_L=<,F]_>$ M5_U`>^K$G'$\()1"U]#ID6CB[/`+0;%(+GZ'2+JP6.2\.)=AI87[9Y&N*"@_ MU)7A(-85\2#8%>DPVN7P^?,HTFN\*Z'R2?(7PUB1]>)8ABW07.WE2%:$\2+\ M2$>6Z%Q:+W$AJ)5)<:+C-*P5L3FNE<`@L!7A-;*541?:BJ"+;46+Z`6W(KM& MMR+JA;<$6PHG2%T,<$76"UHE-HA:17@)6T6RP4=6G@:N(G82N4J\'[J*++X[ MYG20BL%X1,,2ZH?#8O9>/"RR0:0KTE3^7JS+H#;8E4G& MZGOAKHAZ\:[(A@&OA'L1KXQR)0AC7I'NI8OE+T6](AJ&O3+NXEX9]`)?&7:1 MKP1ZH2^#SJ&LR)X%O^(;?O0KPJ2)\>-?B?4"8!%=(V`9]4)@`IYC8`)=@V`2 MME&P"/MA,`,36!`(R_`:"8NL%PI+[!H+$Z07#$OT@^CP=T7U(MV@XXNB4A%6YCAO! MP(0'@=&CB6KJOI&*):R?L,BQ0.-T$U.D<++<,GW+2,I<=ZKRQ/P#!E4-)E4F MX*C@&/S$/`PR)$S>38CYKB5U`V_Z7DD1`<.(EJAS`Y",[L3L3KUNO)P4'N&V%-J; M.2%U(UOJ9O-599*]:S;FRR%]'IOI\'DI*=U32[3NR7+ACJ7G\*FWMQ^>F*BHST7:7FM^://>4TT9-@ M)Y\QA`G;9BZ8>41:QP81BY,,,Q1G@4X[-N+$.^PBSHU,"Y#O>$(.[E8\M^4( M]`PL3@_.+7B>$D)..Y7,"E!@&Q"X1*6PD4+/%J+"%L\P0A`:$X[M78B3$"K, MG9[;#]BOX!;,D\^.9!&$49C0S434&@7`@LW?9RC8#E[.=>+N(&H)FR&TQ,V( M6KU-:#KGN!'63YAG//4O<+$6_Q9AZP@*-.OS^`@LF7#P7QCNP4(M(T38%DH# MS)X/A:WEXF]#H^2-J#'#?9!9Q_N@(/R1-PAZ0V^$9-&(]+ES@S4#SW>O@UC8 M;?#&S;!I7<>$L,%?QD^DCZ`WL`"-W1S&(VB)3F'/7&)*2"U!):&ZTIUT)S$> M[E69I+Q!:`;[7@/7#?@1%38LR!I-"-X,=!?,%F-Q#^($N6N, MI[\@CAW:G^#ISR3;FZE1$*9,['0D*SI:S$\R;<'(Y!B^*\T&\+MT#FP'N;O!([?&CH2Z/M,>8;"-W$?BD%/U.J+G`3JH, M%=M>5EO88[C/RJG:0L[76P)<^PP!2]^V,Q4F0&'ARZD2$QR^M>V"&A/DK,<$ M.BLR@8J!9&!A(#1K<03JQUI_[5[T&>@.,S/]1\L&V)80A==FAJ@T6A_2O99E M9F\!D5[(D!POUHQB\>6&L;I1>%"YR!O33?)O/]^]_BXJ@`E!^_$G(&V;LHQ; MN8G9[(2S("W5;#(P;3@Q\\6&F#*RO0L^[A!8:*P9,?;@1CP'M$PZP_"(NZJECL6;[^.GU4[,<3"W MD`X=./K"<2^_^28IP3FZ*R8C\;-,9^3V6PFYE3,2-40CMW(JKT3D3B[+G9S1 M*SF55U(J6IWO;F6EOG_LU;="4@_F3UH/&5N&F,56(<@S5A";K16"/'.%L-5> M(6HV6)!Q%@LQSF0A9+%9"%J-%J0\JR5P(M%2*2TF"4&!3<+@:I1$CF#`:6V! M7<+,+9&7K`FS:1*85S)S1Y3GCLCK%9'.*S$=WT!!;K90")I-5(RA!Q0T:6(B M8=':3(T#V'OKH&%3/E0ISA$>`:R!SHRL(,`LEQ5+,^C`<'AL<4*E684'_(D) M@6ME+%*#'>F6Z%7\Z@Y'#/%0P1"C>!6"I:0%%I?4(ZY)?LL#"I\%YS5JG/!; M%5!KLT+(M2MD\)29W[(0L4V+D0&$2J>-"S%QWF.@5PIKTNR!2G2OU:(`:Q]G MT.A"KX#^.8Y*K!\K$:RT5ID!;I&;EJXKM*1F,-X!P12[.H5G\6MHJ/"1>!9! M%S=;8MI>6`';LE`2'($.G3$(O"P>X>`#Y\! M]M.^/$8N[][_R%NTN/$[-6D"N=HT`>22\ZQ:G#PQ:P#T[5H<\PP;@#S+%J=6 MTP89>'/OJ7$3,9&QYDUBQ)KA"5#?PD$$C[F'-@Y"LY&#$-[X%Y@YR`A#]:>& M#F/H6K[`U$&F8^HF:_9B[3`"=YP&]@XSR!\,+%X,:IIR2,O#B]_2@S(J*6#S M+\+0YQE>X:T'YR_@B"I6'*F6Y^6AW\#!@'DZW]`!HS@'YG#O@(/JNAE2O.K? MD7W?Q#TWQPR-V48M[TKS"1)`\ZH7<#XS/",F%,K1#O0;;/7MU('T[63/A)F6P>A M#?T^1=M_?`B.ACCPH'5_$#6UKX:6^,!.BR'!H(>C6J5RV6!:S"P7E\!I>64B M[!*;V3X'!^-::+JMS1QM)'6D82\WJ]F)\U<#=HXZS'Y$J/X[Q,?A'="AT7/_ MDPH=4[,>&Q^V;+FQ+OXX[BSUL=&0^#K*VN7_>C$69)[872F^T9-*Y*C>2 M>+4[TH&!3^<@\H5C1WY.^C>.&7*\4/O,I8/P$(-0":,N5L+0:;`$Z3FRP4FN41).S`N!,!C&0`QK@R!,AKT! MLDO$A*DE9,(8LR(W[/H"=!8S87ZV%;@?AC&3P,Y!$\9%3P3GXB>9%"$_@H+D:0@EP.C%'/I@2A7(2VD#6Q38"XP4W$@F6D)V% M-YB;XQM,64\8NS9KA$.X0'BJXRQ\P=P:OV!N"6`PMD8P!.="&$R>Q#`"[((8 M[%KMB2;QHA/,G80G&`:+2<(`A0X_(.C%'Y`+`A!,7HQ`\"NMG/BQ:%4G3)I8 M!NT0L`0YV&YA9FC9DM.?259Q'(CU?0Q.^_B@V5U-@>81!S8C!YI69$"!88.] M2^T"4;]A"!`9L0M-0Y"N;0C2-0Y#VM:122XYUX8QLGIQ,[=,E!`Z)]Z[X/BU@XJ=`N.0%A*GBQR& MEGY9Q'CKJ%]-4%EDJ@:KG"P%+P%TB%QFM[A%HM"*OAG!$V\S!1;G.@0?8C=# M:/N19>!)=PX!1YM:PBS@E/01GL#HD.GXFY>O.>R-A*&!.(<(9Y8Y:JRT&DGU M&_:=0A]3"PDS@Y8RIPI)2"]VD&,*YL0$4,K_I!$A< M"'#)JL9-?)@BY!9CB*G9&D)*'FH-["%D%H,(J=4B0@S?$Q/81(&9C2+&X(+` M4[,H8&AM>VCS!`B?]1&81LR@0WU"XP@A?(3;2>?!%`Q-3BT:QJ2SM4XL'Z:D M(;W`]F&FESN#LWZ86AI M@*/@4C+WVT!?R7(PM'-(W[Q^_>V;)+ZEUW+280..0MZ20Z`C9!GYV%7'X;4A M%I*^\Y;2&I.@?>0K];#ME`*'"!B2">DOZ@_0M0>YVP:M#AELOL];`8/"X'+8 M\+CLGCI"4#C-[E1I`4:%^:>]$Y?-ZYX07)5.Q%:MBZ#I:"X=>_'C+V\__/SN M$V;PV5*.^O7#I\]OW[]_^_G7CQ\@B*-R!_W]]X\_O'_W&RX8"M\=HO^3:`\L MVJL6C#+,CMZ8*79TFZGCF&[M4'L%&=QEY$@.:M,A[JL[J!K+H3`3]A588>58 M- M>1'O'RNWR0YE?#W:RF5FC0/#H8[D86"(?:5R55&B0Q=2K)0R$^D,!Y8KK]0N M/MSA05U#%0TM9%VI`[H_9L7@A\#'=@6C257AB;6/"P>::X0V*J[0N@,I96"9WPL&";J&FRAGPCL5$V(69=@U^,( MG#`KX4-RY0PX7>(LZ$U=;]+-H]"`6@Z%4'J-@%T^,]*E8".(@Y3"RZX=)LPJ M.6JGW9)[L*/=84S[S-2#H*-U?2@VS5]"0]8U7&\_,YLF[L;.C*!_FA#S:82. M7M>RW=-,VX#3ZAP$CF=PA#1!X;![)?3-:3MQ,J!I/,LU[1TFIH\(OJ',*91"M03UQBV7*^<4B")=!GGG&(D>N ML@CB>:XS9UGFP,#OB;LL4O!(OS.'6>($9':($1-XQ!"4YJ0O^,02N3C%"%R] M8DRA8V@"SUE@T%:/$]\94ZOSC#EI"<*9^XPYJC4#!QJ#BP>-,;SD._2A!4C2 M6>=%8Z21;,#B1PN0-D,"=AN#L3T<@E9P@=SCDS>&_Q96$AR8KG!/GB M$I!97@*&EQ>=2$R@X*&7IS*+8-/Y3ZR*67CZ$P__^J!]R*`,`Y?C>MP!G/S@ M8158B^%AZ#P3#X-+.'T.#&-:3+M;>`WSC#&"0U/&D?:'VA(H`$$N&B"S%(27 M()XI@`$`1XS_;^HIDQ/DWW3@+M/-,/N#KA` MHF(M&0MECSR^OWN1JS[KBO:FJB([$31C;O!,S-ZS^/=14_=W.J#(=^",W2D[ MB8W7G4J.)92?I#?K46F;?2(0" MFRTL,?TS9B3Y&G,C%>0K12GSN\3"5G`])L,N`JS+L%U.K/`83*DQ^$ZI?1QSQL8 M'FL"K\O2@+`RU'S6B1FP2S6+>S=K]\8,/G+@M(-C3#BL..CBF%GZ.,9<)\<0 M]G'#;B[($UYX%'9T#+F>'H<>NL"!HG%88<5@E.XLX<# M4Q"5WW/I(;3Z]!`3CA8Z]>HA)AS)%OCUD,%[%$+/'D+BSI30M\=2=\X]A(05 MRZ%[#Z'5OQ>*#B?(0P\?0M;%QWHP^?@0F9U\+,K90X?45PZ;/?D(E*MM.H)5 MG6;=O[`63PYH:!J*B^V6^IYK/8>$1&` M1T1D8(Q=O`SVBP#*^&!OTIS]@#AI+EY!*:W/8[7UB$AM/2)26X^(-+I=>6/N MG%$U+.Z(:S-*E5F`;T1"3B,JD(6("F249#I*(AUEB<*.M`*1KK0"WTO`:PEX M.B(DR9")F(H2H ME")M$D*1)@FA2(N$4*1!0BC2'B$4:8X0BEB`$(I8@0!BQ'3+M,HMTRJW5'9, MJ]PRK7++M,HMTRJW3*O<,JURR[0*(X$[IE7NF%:Y8UKECBH3TRIW3*O<,:UR MQ[3*'=,J=TRK,)5[Q;3**Z957C&MPHB2D20C2$:.$3&:\=2L>VR1[SRO4@6$ M62)%/(Y]:MH]]79$[BL0Z0DK$%&46MU/I_3TR6XLH`-VB8S5ZB(;J<-%-E*= M-BN3[(A\I;;?:<\O;0N)`<^UYN#Q`@^(2$%Z5>=)VR%B M2.L\[7(DLY")U>B$BE3JA(K4JQ];U4T[?'D;K/CR,5 M%\<0W3_@ZIU`L9J<8I$:G6*1FIUBD1J>8I'VM?\@UI&H'[:H`<.D`X6$!PX" M!HH'#QL$3,16!DS$5@9,Q%8&3,16^@PAGMB`@<\0$B0$2,B/$!\A/4)X%V1W M]_J[)#'GQ6WZW)YD;O;U"=R]YL96@-JNN;A^Z$*6>9,1J%W_;6`!-,O.54Z` M9@>P\:D%+#L.!+75-2&PQ^9>(/;J04K$C*.K[BA5KU)UIC_&`M9E_6UY81E7 M2!TS,XNOHDU4>=-+&E34.C0HRZ0OSD_P/VE,&]0(U&`.BY890LLT9:8+ M9&I:?2)C5:LDT=HKZHN:P,X7]9\RN2*:_*>//PI$FN=)60Q#:0Q"=C##'F*C MFGFV M?WMQ3+L7W5C/C__'\\_SS_//\\_SS_//\\_SS_//\\_SS_//\\_SS_//\\_S FS_//\\_SS_//\\_SS_//\\_SS_//\\_SS___/_\/(VM*I0!8`@#S ` end >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 14:03:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA25395 for freebsd-ports-outgoing; Sat, 19 Sep 1998 14:03:59 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from news1.gtn.com (news1.gtn.com [194.77.0.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA25377 for ; Sat, 19 Sep 1998 14:03:50 -0700 (PDT) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id XAA15308; Sat, 19 Sep 1998 23:00:07 +0200 (MET DST) Received: (from andreas@localhost) by klemm.gtn.com (8.9.1/8.9.1) id WAA01215; Sat, 19 Sep 1998 22:40:04 +0200 (CEST) (envelope-from andreas) Message-ID: <19980919224004.A1205@klemm.gtn.com> Date: Sat, 19 Sep 1998 22:40:04 +0200 From: Andreas Klemm To: Steve Price Cc: ports@FreeBSD.ORG Subject: Re: Does XFree86 port need special patches for an ELF system ? References: <19980919204247.A5044@klemm.gtn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: ; from Steve Price on Sat, Sep 19, 1998 at 03:13:46PM -0500 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Sep 19, 1998 at 03:13:46PM -0500, Steve Price wrote: > > Yes. There are several versions floating around. Check > the archives. I am working on a fix for the port right > now that I hope to commit sometime tonight. That's nice, then I'll wait. -- Andreas Klemm http://www.FreeBSD.ORG/~andreas What gives you 90% more speed, for example, in kernel compilation ? http://www.FreeBSD.ORG/~fsmp/SMP/akgraph-a/graph1.html "NT = Not Today" (Maggie Biggs) ``powered by FreeBSD SMP'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 14:19:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA27340 for freebsd-ports-outgoing; Sat, 19 Sep 1998 14:19:06 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA27323; Sat, 19 Sep 1998 14:19:00 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA21133; Sat, 19 Sep 1998 14:18:37 -0700 (PDT) Date: Sat, 19 Sep 1998 14:18:37 -0700 (PDT) Message-Id: <199809192118.OAA21133@freefall.freebsd.org> To: ap@noses.com, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7948 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ucd-snmp port won't compile State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Sep 19 14:17:13 PDT 1998 State-Changed-Why: This port build great on both of my systems. Make sure you have the correct dist tarball, that you're port is up-to-date, and that you have the latest version bsd.port.mk. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 14:22:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA27791 for freebsd-ports-outgoing; Sat, 19 Sep 1998 14:22:20 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA27740; Sat, 19 Sep 1998 14:22:09 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA21291; Sat, 19 Sep 1998 14:21:45 -0700 (PDT) Date: Sat, 19 Sep 1998 14:21:45 -0700 (PDT) Message-Id: <199809192121.OAA21291@freefall.freebsd.org> To: billf@chc-chimes.com, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7866 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: big brother (net/bb) is outdated State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Sep 19 14:21:28 PDT 1998 State-Changed-Why: Over to port maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 14:31:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA29908 for freebsd-ports-outgoing; Sat, 19 Sep 1998 14:31:09 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA29750; Sat, 19 Sep 1998 14:30:20 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA21519; Sat, 19 Sep 1998 14:29:56 -0700 (PDT) Date: Sat, 19 Sep 1998 14:29:56 -0700 (PDT) Message-Id: <199809192129.OAA21519@freefall.freebsd.org> To: ady@freebsd.ady.ro, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7991 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: IMAP-UW Quickfix: MASTER_SITES update State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Sep 19 14:29:33 PDT 1998 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 14:56:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA04317 for freebsd-ports-outgoing; Sat, 19 Sep 1998 14:56:38 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA04270; Sat, 19 Sep 1998 14:56:20 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA22302; Sat, 19 Sep 1998 14:55:57 -0700 (PDT) Date: Sat, 19 Sep 1998 14:55:57 -0700 (PDT) Message-Id: <199809192155.OAA22302@freefall.freebsd.org> To: billf@chc-chimes.com, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, andreas@FreeBSD.ORG Subject: Re: ports/7866 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: big brother (net/bb) is outdated State-Changed-From-To: closed-open State-Changed-By: steve State-Changed-When: Sat Sep 19 14:54:38 PDT 1998 State-Changed-Why: Ouch! I didn't mean to close this, only to reassign it. :) Responsible-Changed-From-To: freebsd-ports->andreas Responsible-Changed-By: steve Responsible-Changed-When: Sat Sep 19 14:54:38 PDT 1998 Responsible-Changed-Why: port maintainer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 15:36:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA09338 for freebsd-ports-outgoing; Sat, 19 Sep 1998 15:36:03 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA09293; Sat, 19 Sep 1998 15:35:44 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA23795; Sat, 19 Sep 1998 15:35:20 -0700 (PDT) Date: Sat, 19 Sep 1998 15:35:20 -0700 (PDT) Message-Id: <199809192235.PAA23795@freefall.freebsd.org> To: anthony@dino.omen.com.au, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7971 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: The cnet port won't build, and the cnet package won't run. State-Changed-From-To: open-feedback State-Changed-By: steve State-Changed-When: Sat Sep 19 15:32:37 PDT 1998 State-Changed-Why: This builds and runs fine on my a.out -current system. I can't help but guess this is a problem with ELF. We need more details, like is you're system ELF or a.out, when was the last time you updated, and how a better description (a log) of the errors you are seeing. Otherwise I'm afraid we aren't going to be much help. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 15:42:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA10269 for freebsd-ports-outgoing; Sat, 19 Sep 1998 15:42:00 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA10217; Sat, 19 Sep 1998 15:41:49 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA24087; Sat, 19 Sep 1998 15:41:25 -0700 (PDT) Date: Sat, 19 Sep 1998 15:41:25 -0700 (PDT) Message-Id: <199809192241.PAA24087@freefall.freebsd.org> To: nobu@psrc.isac.co.jp, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7893 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/sysutils/xbatt change request State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Sep 19 15:40:46 PDT 1998 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 15:47:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA12096 for freebsd-ports-outgoing; Sat, 19 Sep 1998 15:47:15 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from peloton.physics.montana.edu (peloton.physics.montana.edu [153.90.192.177]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA11971 for ; Sat, 19 Sep 1998 15:46:49 -0700 (PDT) (envelope-from brett@peloton.physics.montana.edu) Received: from localhost (brett@localhost) by peloton.physics.montana.edu (8.8.8/8.8.7) with SMTP id QAA11544; Sat, 19 Sep 1998 16:45:40 -0600 (MDT) (envelope-from brett@peloton.physics.montana.edu) Date: Sat, 19 Sep 1998 16:45:40 -0600 (MDT) From: Brett Taylor To: freebsd-ports@FreeBSD.ORG cc: Nakai@technologist.com Subject: gnomelibs compile problem Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I'm trying to do a make on the electriceyes port. It requires gnomelibs and my build is dying in the configure portion of the gnomelibs build. Here's the symptom: checking for gtk11-config... /usr/X11R6/bin/gtk11-config checking for GTK - version >= 1.1.1... *** GTK+ header files (version 1.0.4) do not match *** library (version 1.1.1) no configure: error: GTK not installed *** Error code 1 Stop. Now it's obviously seeing my installed gtk libraries (1.0.4) which are required by The Gimp. I have installed the gtk-1.1 port as well so the 1.1 headers and libs are there (for instance I can see the libs in ldconfig). I haven't had time to muck w/ the configure script to make it look for the right libs/includes - is there a simple way to make sure that the gnomelibs configure will find the gtk1.1 libraries/headers and not the 1.0.* versions? Brett ****************************************************************** Brett Taylor brett@peloton.physics.montana.edu http://peloton.physics.montana.edu/brett/ "There is something uncanny in the noiseless rush of the cyclist, as he comes into view, passes by, and disappears." - Popular Science, 1891 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 15:47:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA12118 for freebsd-ports-outgoing; Sat, 19 Sep 1998 15:47:15 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA11822; Sat, 19 Sep 1998 15:46:26 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA25445; Sat, 19 Sep 1998 15:45:59 -0700 (PDT) Date: Sat, 19 Sep 1998 15:45:59 -0700 (PDT) Message-Id: <199809192245.PAA25445@freefall.freebsd.org> To: andy@icc.surw.chel.su, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7947 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: net/mpd State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Sep 19 15:45:29 PDT 1998 State-Changed-Why: Update committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 16:00:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA11415 for freebsd-ports-outgoing; Sat, 19 Sep 1998 15:45:27 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA11249; Sat, 19 Sep 1998 15:44:51 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA25272; Sat, 19 Sep 1998 15:44:25 -0700 (PDT) Date: Sat, 19 Sep 1998 15:44:25 -0700 (PDT) Message-Id: <199809192244.PAA25272@freefall.freebsd.org> To: sjr@home.net, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7900 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Minor fix for display port State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Sep 19 15:42:38 PDT 1998 State-Changed-Why: Committed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 16:50:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA22226 for freebsd-ports-outgoing; Sat, 19 Sep 1998 16:50:45 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA22161 for ; Sat, 19 Sep 1998 16:50:26 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA15147; Sat, 19 Sep 1998 16:50:01 -0700 (PDT) Date: Sat, 19 Sep 1998 16:50:01 -0700 (PDT) Message-Id: <199809192350.QAA15147@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Adrian Penisoara Subject: Re: ports/7938: Pine Port Upgrade: from 4.02A to 4.03 Reply-To: Adrian Penisoara Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/7938; it has been noted by GNATS. From: Adrian Penisoara To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: ports/7938: Pine Port Upgrade: from 4.02A to 4.03 Date: Sun, 20 Sep 1998 02:37:36 +0300 (EEST) Hi, On Tue, 15 Sep 1998, Adrian Penisoara wrote: > The Pine Team released the 4.03 version of Pine; unfortunately this > release seems to introduce a new bug (I have sent mail on the > freebsd-ports and pine-info mailing lists about it) that prevented me from > releasing the port sooner. This patch is obsolete for Pine 4.04 is already out -- a new port upgrade is on its way right now ! Please close this PR, soon I'll file another one with proper patches for Pine 4.04. Thanks, Ady (@warpnet.ro) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 17:01:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA23911 for freebsd-ports-outgoing; Sat, 19 Sep 1998 17:01:06 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA23816 for ; Sat, 19 Sep 1998 17:00:28 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA15346; Sat, 19 Sep 1998 17:00:01 -0700 (PDT) Received: from ady.warpnet.ro (ady.warpnet.ro [193.230.201.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA22465 for ; Sat, 19 Sep 1998 16:52:10 -0700 (PDT) (envelope-from ady@ady.warpnet.ro) Received: (from ady@localhost) by ady.warpnet.ro (8.8.8/8.8.8) id CAA21872; Sun, 20 Sep 1998 02:51:59 +0300 (EEST) (envelope-from ady) Message-Id: <199809192351.CAA21872@ady.warpnet.ro> Date: Sun, 20 Sep 1998 02:51:59 +0300 (EEST) From: Adrian Penisoara Reply-To: Adrian Penisoara To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7993: Port upgrade: Pine4 from 4.02A to 4.04 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7993 >Category: ports >Synopsis: Port upgrade: Pine4 from 4.02A to 4.04 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 19 17:00:01 PDT 1998 >Last-Modified: >Originator: Adrian Penisoara >Organization: Warp Net Technologies >Release: FreeBSD 3.0-980520-SNAP i386 >Environment: This port has been tested under: * FreeBSD 2.2.7-RELEASE * FreeBSD 3.0-980520-SNAP i386 This port has been portlinted (0 errors, 2 warnings). >Description: Pine 4.04 is out and it's supposed to be a maintainance release (though the bug I've ecountered in 4.03 seems not to be fixed). Included in the below patch archive there is a replacement set of "pgp*" filters to work with PGP version 5 (maintaining compatibility with version 2) that had been kindly donated by Anthony Di Pietro . After applying the enclosed patches please close PR #7938. >How-To-Repeat: N/A >Fix: Please apply the following archived set of patches that will upgrade the current 4.02A port to the 4.04 version. Please NOTICE: * REMOVED Files: patches/patch-aa * NEW Files: patches/patch-av As usual I'd be glad to hear your comments/suggestions. Thanks, Ady (@freebsd.ady.ro) --8<-- begin 644 pine-4.04.diff.gz M'XL("*P]!#8"`W!I;F4M-"XP-"YD:69F`.0\^WO:QK(_PU\QH?[J!TA(`O%R MG9C8V/4-!A\@3?NU/51(B]$Q2%02=FCJ^[??F5T)/0QYM.EI^EUBR["[,SLS M.SNO72))$EP;=VQJSYGL>O9M;C1;07MU"VH%?UJZVE*JH#:;C7RQ6-P,S0U7 M#@S9$C0%%+6E55NZ(D:=GH*DEBH5**JE:@U.3_/P%?38`RQ=+_#!=.=S9@:V MZ\`BQ`53UVOEEK;#:.@L"):M6\]!5\QSR? M$'CLUY7M,:L%]*K*BM;.%]_3727\YT;`P/08_K%:N9S2A/]9S=>"=NQ^,W,7 MV)QK6YYM.'##'-MW#<^`;PQK?3KU&)OXEHSO9<]]C@`$LW>%O M+I,=O$>B+B-?W`%5S1=W02'O9^U1Y[(_N.H,1>_"L.?@L`<_#]?MX:@S&`^O M1MB9F_(5P*=L&N;V54#*;]JCLV\CD+UW212/8>_%55=T1O0^MN6E$9BS")K: MQ\/1X.KF!*2EFI>(E*O>"'\[@Q.N$QF9X\S0ZX^[R`N"=J]ZKTY@S7QJOF[W MU!/(<2A91P3%8;C3N M^KM'V-NSZ5?VF85]8<>P<_X($H."WSH]O1ET+JZ^/SUM[;T3;Q];MP4Q,A=! M/BOCA M5GRX'-S@AX7X<-T_[SPB65)2;A/;(5:YGOJNK,D*Q$R3#-*=2/]F[O'-H'\Y M:!/3*70T/($D:OHX4-PG3V"Q[>.`'?8$%N5/SD!72C4HUBHE5>7>0&:.94]) ML'P_ID3;/3_K]RZN+D/))86!2_IT`I!N(*TH?".:KC,%B3^?IW<;[^*H(H[. MVZ-VDIT8P0[$"'VZ]ZYS]FW_$0HY"3[Q7R$-?S6%&V*$O;71.S[8P0Q^*@R8 MR>Q[5&5C@DX3?/O6,>8_%2#PUAEPR_:-R1S-,P0SAI"_KMA\+DW=N<4\%&W` M/(24%OXM0D_1YZT\5OC3#.#2R;9CSE<6@V_(-)-KEQ=WS_,21A/D!/WRPM)W MA1-Z'$YLQN:&1L#C";4)&@YKM-14/*%A.$':(UV?ZW`0.4DY,#SY]K=#.(%: MH]&L-R=ZK=JLUBMJK3FQ)E--8X9J-K0IJV<@0S]$D,V:5E<-S5`4K5E1&[5F M534-2S$5M:Y/K%HS7TQ"5A-S3NI5?:+IM0IK3*MJE>F5J:HI>D.;J*I>GS82 MXEC>+BUFNE888[W!M<6P`]0Z!0?(K58A;FL)H6P@^&`NFAI&6ZVJUJK48M'4 M2DW<7'&D-4(U"!9+@80L.>D%S6FC(L!]&!H],(_!@^NAE<-(R$(5XE$8(:#Q M_HS4+K`7"#J%E;,TS#O4L1+X+`A(V?R5'7"@U<+P[V#IL7OFH/X&,]NGP`:C ML"35:JNBMZH5>#,<$>5U:#O!S'76<&ZC]K/`+BX^;R!NXU,!Q+O-5E`NBY#[#R40*+NX"A.!`N M)!+\]0(WS!T808!L<4`2F&>8Z-[(8PB>E#KJ3.`92RAX"Y"F4,91B75\\>*% MO+=WS#=N`5!900-5STL'.(2&/\\"H.=$@$/0GG^MPN\0,)8=@>]P!*C/O\;P MCSP9>L9]O_SO\N]0WM\^."^AXW6A`(6\9.(6VCHG,E6\_H&'A;],#)\Y!B[L MGO(+M0]'Y_W7HY-?0CE)OPH4Z`\YP*/\/7_A6'L*/\+>"Y#06BGP<[Z(FN+D MBP""@CVE!6>&LQ^$P340/M('$;\9PDZ2TD(A[NSVZ7]TD"^6>N+,\W6'\GK0E1 MDX99[+XVYH2?PE,_D6 ME`%>^]P&!+A5Y;W]+$A_B3D3]G/Y_53`8>XJ(.>U7I)X22,_#0:%@^OQ82C. MEK.:SS]MLB=@.^?;V^<-V9V)TN>Z5(@EB4)/&W_FF-YZ&7R*]0]!WF_^,<>F M1#L,K;YZQC7)GY$AES8OB+'%K31$4V6E(C=K,'#G9`<'+AJ'*4.O\(W'6TY] M='L.9K:>[,T8+K?%T,D+)6.&C\P>1;8>R1/^N]D@#UZM10;_+[;UNW<3R^PF MC!9]D`R0/$YV>LMLN,$MD5HY"KYV+5MUR[+1^,^T9H3J,RX8> M1T='O*90CNI6,B7L8LX50\UPH"*P5%IJ16`1*YD%XNK!:=1(/524OA:./TJ_ MQ*PUK51K@/@,J`46P^ULX8ZVT3!3RDXQVVO'?AO%=SZ%;3P7).E'::3!H>E! M^1;527"`2/&D9Q!_:N42B:%%J+/K M\T,!WQX0\@T?V-CGM;+#:/2@W<-AAVE6B:OTTK1PZ'`#^@Q!T11(+_V9@=$, MQ>>XUY#0-!`D880DS#DSG);`(.*8(Z3J*`(X0A'0!SCZ7\[TV/5E$_`Q@Z3, MB733`E[0.L99J*1R*'`?`W;(T>JNB)LVA3GY+3UC#)^5+,>F%9W-[ MJ-5`:;94M*K5E#U\`I:RB%H+?Y30(A;?.U$"3%%:NH(DAV"[)LIP6&M50@C( M[F/@^[A::BAB'XMZNL6FQFH>2.@#E^A\/6EF>6B=/#!7?N`N[-^8)9K0(=ZR M`+-,L`,9KAP_P$0;S9@09:541UG2DV*`SX1Y@\?F\6VO\UUG,&YWN_TWX[-O MV[W+J][E^&+0ORZA%04,>&SFP8.QYK95),<$=N&YBQ"5.3.<6VJS^:S+5<`M MM3=31Y:K_%Y>-.,5_D0^-:]GN& MTD#2HZ,RO2T?P5><8[:;7QJT]-P)[NLU.&X`#F,6XA,8^()45"I2XE/3XQ41 M+YXFV%1+X14O:U-4\:4CV38A.L*"M;ORP%_CU&.\/LH3%10JK@75I!$=QD+Q;U9I^791:TI) MK=6%VB:&EX]$:#GD-$H/-J:U)%X[S(6DCWP1$3%/PQ^&H\[U^(:.;,Z2@H-" MIJ:_6<_"3O@QKG[G_$/P0A\*:5$09Q'GW'W\G9SOTN2/Y?S].Z'`]3;ZW6+\ M[1W&/RJJ;C'^=BH6YDF+IB>-/QDL8:]BXX_9AR6;3VPQ6GS$$$T6&WTQ/#.2 MCD:K66.?1$S1-3?9.OD&5=LXI6(6<88#%7]V&'<15]?JE5*MUM`AWCO85"O5 MZM7&QNCG'\"Z'E@W=`U`&QTVN3YLM M8![9-&%[D4S3P-Y.[ZSQ\FI$!^\(Q'$PH!8TMF@0__6Z/^J<2S<#.AI^V>T0 M-+%5U8@M_@S%2WQ-4`YWQQOZXBE>7O7:@Q]:R3E$K4?,\K(][-2JA%L$HKI" M[*(6QZN"W->QK5'=K,K?+0*=BT"/1?!'>=ZA!WI#(X8;23VHZ;52O5;3XBW" M]>GKK^'9@>^.,4SP\6\)"F>N$Z!?DT:>X?A3#&DZH6A:4#@4.LW!DD`DPW$D M0O_'C$Q/3C8\A0CH]8)SRED1AR(*"84_0[W@+P`^4(AR(\ED?RN[AO#-"8%< MM[\_3(XC3.F!D[^0O2%Q;G,>=,+L4*?-R%R8,U992 M?U_F<,==#9E>H,H'!M4M_7W.PUX8RW+ZVA%W"DL/M"8H:.(;K6HMX3Y2`#%I M*M5;J!+73#B0+<@)@#P.-$#16Q4MK+B&+B2-/,,)9@CZ^YR(IBLEK:8F]H>F M5["E&N^.O8-1O]\='I;W3J&`66SOL`"^9Y8Q:O9\C.1-R9S;N/#A8.R'7Y8/ MUB]E&G3'O`GS7)_"Q/2X[4A%OH.)*@\N#F,@OA#<#ZC5E+7`0/2'FTZ+8SWE MI>R7=/^!M#\"YO$MIMK#0YE241):Q'>LZ!'?&S7_,OC>HN'S3P^/YIE2(>V' MYA,-UVH;%>=W2,0\UZ[#TV$*8!0Z"DU%1GQ@IB2HJ1OU+V:046[-U;,*2J6% ME*AZ0I4%LG0:F"=#WS$I MCEXL\:/%#W_IZ'B%>0JO!?\'$U?@D:[+R[K1*Y$HB7JQXX*+*947GC4%F$T* M;,)5E7C5SW&3.!:\\&P:`:\.HB=+9E_07U([>MXUM2.]Z\WYWH,;)ILBP^5) MP,KC>,3T)=B5=G`RDM#;!MK.U)51^HPGB99KKBBU"_'C+K)8@-*CDV80N8DH M!`GI^@%.8L>90Y_3]>\_0UHO>L^6;@/W+-MY8.M'JU MI#6JJ0@_>HG#&S]V"C_#,1'H@"A\;MJ/4:A)P+E#8-S+;L:DW1(OAU6T5'I" M+W9OS,5)/9V?H+VG/X9WZQ?P_2N5/[4"[)GF/,#F)"C=]+OYMG_=*=/$3Y!^ M'+[0TPGSF/!TH92227R7*SI!+/C9(J2IC/X*NG,W!" MQ#.:(S%#LE<\HQEVT6NZXL[I=GJC7O[X,!ZZ@!HA>HJ'>L638Y**.S%E#FT0 M97+T=CHS,)F/6=HW*_]$M_;WGZI;UW;NN+]B;YFYXA?GT%9[C"K)J#E@V1XS MT2BO6X6P9LY?OOT;3];%FF^N]\:7=9]>($XZJ@^!?_RVV&$::%&G6$\G.Z-FRC'(O16V;ZO-'>(Z3^@IM_ZX_;QU?9`;OL$KBHK; M.5G6B0C?9"Z?A?`MB<N MK>!DF`_4LG59,3R\QH!DJ93QZY7XJNY6Q(E++I@-$40M6Y<-$6-EB_IXN]1'WZD^7K*>09DEJD\E=;.:?U,+ MGZG:3)Q1KQS[+7_(B1-EKD^X[%6>7#:RA9JMT%GU:FX(*7[4M`C-$V252CA: MHN;SH6G3_&L?.!10%05=J*)6$[/4TP,C:N#707J._X:=&[*WM!_[!BT-> M,\:!V''P#./Y``YF5!$N?>U/#@^C@K0XFU-4A=#7XNQ:V`Y>KVV?G76&HEB[ M]-P@_*+<%),'.F\5AW]\EJ>3O/L(&F'#S')%-Z%Q@!-@OH2#EZC_CFM;V!CP MF>A&`\U$>=^8>A<,MXO!,&=P:`_*&'[(;\6D3K.#NO9 MODMWR7F^QSP/(0I MV!V<`.ZU_6,^Q:U]SV"UQ+P3>!]G/RKF1ZN:O%GRF5;U&7'Q!R15#`O!D0`* MUP@_<=_"_6KN,$]<0HEC`UA09CTSD$FU7J\G]*-0XK@X,B'!$/?'RT@H=#`>7WB,O1R>C\?):`HH'W;,Q?*`."\5RO>&Q[^9 M5RX@TX=45Z>C^+A9EF740+H:3@!\.<3Q;^XSHB.RQ?>A4J2*+V?^H[==+*A/ M9N9+VAE;O+"_JWJL[?3"?B[]=1A50[>=],(JC^(JU708)[YP^L3M(@)^22H; MQHGA*3^KTP%&M9(-XY*((\J`5YXKS595RX9Q(>(T#TICP\-V3ZK7FR4]JB5Q M*D5+5&04*0,F$9J>NJH27M;XTR_"-<)%8#S7HDH:;D9;9%_!#(V4Z3J!Y\[! M`&>UF.`><<.D?;IRN/[X,L>P)F4V^59:!32(<,DTTC/%]X?P\\ZB,2\P(J(A M(3`-7A6=,/HJ%4S6''3ETT6L&;]GY/"T`H=WZ#[6BIX?<.1@>O*\0692-[)"S+_3'GONB'SY;@EIJFR41;BQW?C$>7H]NQF@9O^L,HC3SLMM/-N=R)^0>?3:>HR\]2,.4 M0"U![W6W*ZZ$1'Z&2"MBBB'\^\5X]'K0&_=[!_CNK'TS?G/5&Y:6/L$\'?&O MUYUN%W.@46?0:W?'U\-+,50JBJM648T<4RLF[@J&_DC\9P.QR18>G]_6H!,K M=`[![&"RFI8XA]?MJ^[X_&K0.1OU!S^4H/#CSW2O18IE<(&9%OUO`S>=LXP, M.)+_Z^[:FM,VHO`S_(J-/(GC@@!Q,9A@6A+T4%:Y&VJZW>U8$.V=%B2*>*I74LR*(J\OU9J7\,(5_L=Y5$!&_0P98Q57^ MQ3H6>6O5E1-T3^/A*5!I5DHB#697[8?&8SVI24-'6K1)"8--=$=DI99O5"M1 M?X0RH_%`BD7PAI(%?,?V)GO9L$;;H4A$`P0.E8+-ODTHPI_%L5FP@<4 M3M\&#"D,3)*QBA)V[VI M;(R2_;&05"-&25(-HN3IYS;%B&!5ZGG+JNKA4A.KM[2<@TC_;>WX!_*Q<*5`E^23(U>B8I*Z%THCA$AC^FO77610?D!3 M^<1S?9\G!'U:V%O7\_/,*AVF!C-L@56\?$WP]L#:G" MXD5>5;"JF#OE'?^OS%V,%?[1W,7;>OYSEQP>7RU5\U95\V&2VDN@`"OW"SIJ M,)X8Q-30Z0Y7YD&S];;?QM*M#CN'<3@U?C=1=C3?>_.UTT1=%D2B3K?;/QL, MQC_3&C?:K1>F>4".`^C"J2%*_0K""2:JCPW3;+>*G7:KQYN&TA."SR%A#6[R M\-TR'5$U.JGX$=4Z[[.;B^[P_-2HUUX::;7Q:J\M/)MJ5U*'D!J,\!AZSH,! MIXZZRMU^7NJYP_[`*KFD*FD'!*^2,+R7=,`(?P'#0$U88GX3*14T'82(**A_ MG!II1!D:3;$J:409*33=,^4I)U.Y?)RWRI4RTQGBI`)KX$0%=K>N+]M<0&]= M7K35)`/%H,$9[0O\-]V0TH8SEE@6.S#&,]EH4PC+.7REPA2W#&OYF.7JF*\A M?7JQ!FCXQCX?]+0Y"!^?/!([;<[FV_EJ-IXLI[[1?D\_H*GE$A0Z/]0&J4G. M,7*T=(X)1RODF.\[6C]LS3^O\4]9OI4*#'ZEJL?;6L2GFK"+7$\I'4:LM'4ALNGQ1J M?^!>I_7RP7,NNOG#-K_O-$EQ[7OS>(5]HR>5EBWR;![O4=@5RJ".'D`&!O1. M-J0!EM:0*AU3U4L5E0B5U*QNU[6@:+.FY\9JS<:H;\C@^(=&"Y?K5K[@K?#(]QQ-`:"1@H_]`6O;]0MA.:H0?[U+(HT_6 M)6"8-.[(<&9;NZ2&DN3%XV7MZ7*^FF,X)X_5/?^QW/=/L,^N"O3W8)2/N<@98^DY#'-//W"BF\4VV@$OV6AXPA#9](1 M2K81[L2T>+D[(',@-DF.8$J`,Y3!3@*.QC(S3S!>I%I/\/#(&O'GE6!#4IO, MKC)U;.5CF<;PN4+D.*XU8B253ZHFLWT"M"'DLW>YL9_@68U$949KQS1 M@*%"0;@S=`2L;Y+/!5DAT>C@^#)?+-!!`,MKY4P"#HMC\]YCHV'0]D]_[R-\ M.'S(=0_.OSKDJ5:!_\F0)R[[$U`+2LJ6%V9T7[T;]SK#\_'@K-?I=X;7?7;8 M/-0*9*#`;X.S_AA!1#*,G!2Q^H-A%YN05IT1>=(S1F@3:NIVG&;N;`6@N>:*IT)!:/ M9^]8F?S9XUT^+YJA%NT!E=2P"JXY':5G#"Z/0^YP,P*?-;^'S))Z+JTYO6_4L M-K6=)<@<]Q/$>N%,L2C M&PJT11;!('(>"*J$^QZ?O;2%XW[N*P"5*2+,H'PJ$INR9NC4YUB;N)]C%M,F M<,V9@Y$^N)]#KRE(`$XA4I/OT*\O/W8^<87F2# MH.?_K(;@4B'GXG8Z/'K!5!\PB:H@>66)979N9AEL55^Z[F3 CNXU'",0[-Z.O$]ASNWAK3S[//!1"Z:4"V;\`HAudit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 18:31:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA04811 for freebsd-ports-outgoing; Sat, 19 Sep 1998 18:31:08 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from hp9000.chc-chimes.com (hp9000.chc-chimes.com [206.67.97.84]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA04797; Sat, 19 Sep 1998 18:30:59 -0700 (PDT) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA197241077; Sat, 19 Sep 1998 17:37:57 -0400 Date: Sat, 19 Sep 1998 17:37:57 -0400 (EDT) From: Bill Fumerola To: Steve Price Cc: freebsd-ports@FreeBSD.ORG, andreas@FreeBSD.ORG Subject: Re: ports/7866 In-Reply-To: <199809192155.OAA22302@freefall.freebsd.org> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org apologies on the previous email. :> On Sat, 19 Sep 1998, Steve Price wrote: > Synopsis: big brother (net/bb) is outdated > > State-Changed-From-To: closed-open > State-Changed-By: steve > State-Changed-When: Sat Sep 19 14:54:38 PDT 1998 > State-Changed-Why: > Ouch! I didn't mean to close this, only to reassign it. :) > > > Responsible-Changed-From-To: freebsd-ports->andreas > Responsible-Changed-By: steve > Responsible-Changed-When: Sat Sep 19 14:54:38 PDT 1998 > Responsible-Changed-Why: > port maintainer > - bill fumerola [root/billf]@chc-chimes.com - computer horizons corp - - ph:(800)252.2421 x128 / bfumerol@computerhorizons.com - BF1560 - "Logic, like whiskey, loses its beneficial effect when taken in too large quantities" -Lord Dunsany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 18:46:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA06929 for freebsd-ports-outgoing; Sat, 19 Sep 1998 18:46:26 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from singularity.enigami.com (singularity.enigami.com [208.140.182.42]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA06913 for ; Sat, 19 Sep 1998 18:46:16 -0700 (PDT) (envelope-from ckempf@singularity.enigami.com) Received: (from ckempf@localhost) by singularity.enigami.com (8.9.1/8.9.1) id VAA10955; Sat, 19 Sep 1998 21:45:47 -0400 (EDT) To: ports@FreeBSD.ORG Subject: SANE + CAM? X-Copyright: Copyright (C) 1998 Cory Kempf. All Rights Reserved X-PGP-Fingerprint: 191E 2FB7 E27D 76C3 8E79 4D26 2B3B B20F 2A9C 1E1A X-PGP-Keyloc: ; finger ckempf@enigami.com From: Cory Kempf Date: 19 Sep 1998 21:45:47 -0400 Message-ID: Lines: 21 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I was told that this is the address to send this to... , I ported SANE to work with CAM. The changes will be showing up in version 0.75 of SANE, but that is not due out 'till next month. Since we have cut over to CAM, I was wondering what the best way to get my changes out in the interim would be? If this is going to a mailing list, please respond to me, as I am not on that list... Thanks, +C -- Thinking of purchasing RAM from the Chip Merchant? Please read this first: Cory Kempf Macintosh / Unix Consulting & Software Development ckempf@enigami.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Sep 19 19:40:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA11918 for freebsd-ports-outgoing; Sat, 19 Sep 1998 19:40:25 -0700 (PDT) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA11910 for ; Sat, 19 Sep 1998 19:40:24 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA19235; Sat, 19 Sep 1998 19:40:01 -0700 (PDT) Received: from landau.t.u-tokyo.ac.jp (landau.t.u-tokyo.ac.jp [133.11.68.67]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA11521 for ; Sat, 19 Sep 1998 19:35:55 -0700 (PDT) (envelope-from hiroo@exp.t.u-tokyo.ac.jp) Received: from localhost (nlvaio.t.u-tokyo.ac.jp [133.11.69.12]) by landau.t.u-tokyo.ac.jp (8.8.8+2.7Wbeta7/3.6W-MUTSUKI) with ESMTP id LAA29926 for ; Sun, 20 Sep 1998 11:35:23 +0900 (JST) Message-Id: <19980920113545S.hiroo@nlvaio.t.u-tokyo.ac.jp> Date: Sun, 20 Sep 1998 11:35:45 +0900 From: Hiroo Ono To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/7994: checkbot Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 7994 >Category: ports >Synopsis: ports/www/checkbot calls HTML::Parse instead of HTML::Parser >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 19 19:40:00 PDT 1998 >Last-Modified: >Originator: Hiroo Ono >Organization: >Release: FreeBSD 2.2.7-RELEASE i386 >Environment: ports-current updated on 1998/09/18 >Description: ports/www/checkbot depends on ports/www/p5-HTML-Parser the library name has changed to HTML::Parser but checkbot still calls HTML::Parse (I didn't contact the author) >How-To-Repeat: install checkbot-1.51 from ports(-current) and invoke it. >Fix: apply this patch to checkbot-1.51/checkbot.pl (difference is only one character...) --- checkbot.pl.orig Sun Sep 20 10:42:11 1998 +++ checkbot.pl Sun Sep 20 10:43:52 1998 @@ -220,7 +220,7 @@ use LWP::UserAgent; use LWP::MediaTypes; #use LWP::Debug qw(- +debug); - use HTML::Parse; + use HTML::Parser; use HTML::LinkExtor; $main::ua = new LWP::UserAgent; $main::ua->agent("Checkbot/$VERSION LWP/" . LWP::Version); >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message