From owner-freebsd-ports@FreeBSD.ORG Sun Dec 25 00:28:17 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1C4016A41F for ; Sun, 25 Dec 2005 00:28:17 +0000 (GMT) (envelope-from kutulu@kutulu.org) Received: from basement.kutulu.org (104.199.27.24.cfl.res.rr.com [24.27.199.104]) by mx1.FreeBSD.org (Postfix) with ESMTP id 677C443D5E for ; Sun, 25 Dec 2005 00:28:17 +0000 (GMT) (envelope-from kutulu@kutulu.org) Received: from [127.0.0.1] (platypus.jungle [192.168.69.2]) by basement.kutulu.org (Postfix) with ESMTP id D37E839; Sat, 24 Dec 2005 19:28:15 -0500 (EST) Message-ID: <43ADE878.50600@kutulu.org> Date: Sat, 24 Dec 2005 19:31:52 -0500 From: Mike Edenfield Organization: KutuluWare Software Services User-Agent: Mozilla Thunderbird 0.9 (Windows/20041103) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Yuval Levy References: <200512241930.37660.freebsd.ports@melvyn.homeunix.org> <200512242139.43194.freebsd.ports@melvyn.homeunix.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: Postfix 2.2.7, 1 (portupgrade from 2.2.5_1, 1) on FreeBSD 5 stable X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Dec 2005 00:28:17 -0000 Yuval Levy wrote: > Thank you very much for your support. I think I solved my problem and I > hope that what I found will help others, so here it is, in painful > detail, with some questions raised. > => Attempting to fetch from http://web.onda.com.br/nadal/postfix/VDA/. > fetch: postfix-2.2.5-vda.patch.gz: local modification time does not > match remote This error indicates the real cause of your problem. It means that fetch had previously downloaded a portion of the file in question, but for some reason did not complete the download. When it attemps to resume the download it is now complaining that the remote file has been modified since the local file was originally fetched, so it cannot resume the download. The reason why fetch doesn't do the obvious here and simply delete the local file and start over is something I can't answer, but it doesn't. It skips that download site and moves on. > Since it starts to become clear to me that I will not be able to simply > portupgrade, I tried a radical approach: > > cd /usr/ports/mail/postfix > make distclean This was actually the correct fix. You cleaned out whatever partially downloaded file fetch was complaining about, so that the next time you ran portupgrade it was able to re-download the entire file cleanly. Alternately you could have simply done: rm /usr/ports/distfiles/postfix-2.2.5-vda.patch.gz which is a good first step whenever there is an odd fetch error. -- -- Mike Still using IE? Get Firefox! http://www.spreadfirefox.com/?q=affiliates&id=6492&t=1 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 25 00:38:52 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 69A4916A41F for ; Sun, 25 Dec 2005 00:38:52 +0000 (GMT) (envelope-from freebsd@sopwith.solgatos.com) Received: from schitzo.solgatos.com (c-67-168-241-176.hsd1.or.comcast.net [67.168.241.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8403243D55 for ; Sun, 25 Dec 2005 00:38:51 +0000 (GMT) (envelope-from freebsd@sopwith.solgatos.com) Received: from sopwith.solgatos.com (uucp@localhost) by schitzo.solgatos.com (8.11.6/8.11.6) with UUCP id jBP0d1s30324; Sat, 24 Dec 2005 16:39:01 -0800 Received: from localhost by sopwith.solgatos.com (8.8.8/6.24) id AAA23152; Sun, 25 Dec 2005 00:38:42 GMT Message-Id: <200512250038.AAA23152@sopwith.solgatos.com> To: scott@mail.dsab.rresearch.com, freebsd-ports@freebsd.org, nmh-workers@nongnu.org Date: Sat, 24 Dec 2005 16:38:42 +0000 From: Dieter Cc: Subject: Some fixes for nmh-1.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@sopwith.solgatos.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Dec 2005 00:38:52 -0000 Here are some fixes for IPL32 vs LP64 portability issues in nmh-1.2. They make gcc happy (well, less unhappy, there are still plenty of warnings to be fixed), but someone should code review them, *especially* the ones with "code review" or "code inspect" in the comment. The diffs also include a couple of quick-and-dirty hacks to get nmh-1.2 to build on FreeBSD 6.0 on AMD64. I just threw in a #include which might break things on other platforms. I leave a proper fix to the autoconf/configure wizards. Diffs for file: h/msh.h =================================================================== RCS file: RCS/msh.h,v retrieving revision 1.1 diff -u -c -r1.1 msh.h *** msh.h 2005/12/24 02:23:54 1.1 --- msh.h 2005/12/24 02:24:14 *************** *** 55,61 **** extern struct msgs *mp; /* used a lot */ extern struct Msg *Msgs; /* Msgs[0] not used */ ! FILE *msh_ready (); /* * COMMAND --- 55,61 ---- extern struct msgs *mp; /* used a lot */ extern struct Msg *Msgs; /* Msgs[0] not used */ ! FILE *msh_ready (int, int); /* * COMMAND Diffs for file: h/prototypes.h =================================================================== RCS file: RCS/prototypes.h,v retrieving revision 1.1 diff -u -c -r1.1 prototypes.h *** prototypes.h 2005/12/24 02:16:25 1.1 --- prototypes.h 2005/12/24 17:32:30 *************** *** 61,67 **** char **getans (char *, struct swit *); int getanswer (char *); char **getarguments (char *, int, char **, int); ! char *get_charset(); char *getcpy (char *); char *getfolder(int); int lkclose(int, char*); --- 61,67 ---- char **getans (char *, struct swit *); int getanswer (char *); char **getarguments (char *, int, char **, int); ! char *get_charset(void); char *getcpy (char *); char *getfolder(int); int lkclose(int, char*); *************** *** 72,78 **** char *m_backup (char *); int m_convert (struct msgs *, char *); char *m_draft (char *, char *, int, int *); ! void m_eomsbr (int (*)()); int m_getfld (int, unsigned char *, unsigned char *, int, FILE *); int m_gmprot (void); char *m_maildir (char *); --- 72,78 ---- char *m_backup (char *); int m_convert (struct msgs *, char *); char *m_draft (char *, char *, int, int *); ! void m_eomsbr (int (*)(int)); /* code review */ int m_getfld (int, unsigned char *, unsigned char *, int, FILE *); int m_gmprot (void); char *m_maildir (char *); *************** *** 167,169 **** --- 167,179 ---- int what_now (char *, int, int, char *, char *, int, struct msgs *, char *, int, char *); + /* ----- */ + int client (char *, char *, char *, int, char *, int); + char * formataddr (char *, char *); + int WhatNow (int, char **); + struct hostent * gethostbystring (char *); + int sc_width (void); + int sc_length (void); + void clear_screen (void); + int SOprintf (char *fmt, ...); + int sc_hardcopy(void); Diffs for file: uip/annosbr.c =================================================================== RCS file: RCS/annosbr.c,v retrieving revision 1.1 diff -u -c -r1.1 annosbr.c *** annosbr.c 2005/12/24 03:19:36 1.1 --- annosbr.c 2005/12/24 03:20:16 *************** *** 384,390 **** while (*cp && *cp++ != '\n') continue; if (cp - sp) ! fprintf (tmp, "%s: %*.*s", comp, cp - sp, cp - sp, sp); } while (*cp); if (cp[-1] != '\n' && cp != text) putc ('\n', tmp); --- 384,390 ---- while (*cp && *cp++ != '\n') continue; if (cp - sp) ! fprintf (tmp, "%s: %*.*s", comp, (int)(cp - sp), (int)(cp - sp), sp); } while (*cp); if (cp[-1] != '\n' && cp != text) putc ('\n', tmp); Diffs for file: uip/dropsbr.c =================================================================== RCS file: RCS/dropsbr.c,v retrieving revision 1.1 diff -u -c -r1.1 dropsbr.c *** dropsbr.c 2005/12/24 06:37:58 1.1 --- dropsbr.c 2005/12/24 06:39:28 *************** *** 387,393 **** fp = strchr(ep + 1, '\n'); tp = dctime(dlocaltimenow()); snprintf (buffer, sizeof(buffer), "From %.*s %s", ! fp - ep, ep, tp); } else if (!strncmp (buffer, "X-Envelope-From:", 16)) { /* * Change the "X-Envelope-From:" field --- 387,393 ---- fp = strchr(ep + 1, '\n'); tp = dctime(dlocaltimenow()); snprintf (buffer, sizeof(buffer), "From %.*s %s", ! (int)(fp - ep), ep, tp); } else if (!strncmp (buffer, "X-Envelope-From:", 16)) { /* * Change the "X-Envelope-From:" field *************** *** 499,508 **** if ((dp = strchr(cp = r1bindex (file, '/'), '.')) == NULL) dp = cp + strlen (cp); if (cp == file) ! snprintf (buffer, sizeof(buffer), ".%.*s%s", dp - cp, cp, ".map"); else snprintf (buffer, sizeof(buffer), "%.*s.%.*s%s", ! cp - file, file, dp - cp, cp, ".map"); return buffer; } --- 499,508 ---- if ((dp = strchr(cp = r1bindex (file, '/'), '.')) == NULL) dp = cp + strlen (cp); if (cp == file) ! snprintf (buffer, sizeof(buffer), ".%.*s%s", (int)(dp - cp), cp, ".map"); else snprintf (buffer, sizeof(buffer), "%.*s.%.*s%s", ! (int)(cp - file), file, (int)(dp - cp), cp, ".map"); return buffer; } Diffs for file: uip/ftpsbr.c =================================================================== RCS file: RCS/ftpsbr.c,v retrieving revision 1.1 diff -u -c -r1.1 ftpsbr.c *** ftpsbr.c 2005/12/24 03:29:34 1.1 --- ftpsbr.c 2005/12/24 17:35:00 *************** *** 49,55 **** /* * prototypes */ ! struct hostent *gethostbystring (); int ftp_get (char *, char *, char *, char *, char *, char *, int, int); int ftp_trans (char *, char *, char *, char *, char *, char *, char *, int, int); --- 49,55 ---- /* * prototypes */ ! /*struct hostent *gethostbystring ();*/ /* now in h/prototypes.h */ int ftp_get (char *, char *, char *, char *, char *, char *, int, int); int ftp_trans (char *, char *, char *, char *, char *, char *, char *, int, int); Diffs for file: uip/mhbuildsbr.c =================================================================== RCS file: RCS/mhbuildsbr.c,v retrieving revision 1.1 diff -u -c -r1.1 mhbuildsbr.c *** mhbuildsbr.c 2005/12/24 03:23:14 1.1 --- mhbuildsbr.c 2005/12/24 17:37:40 *************** *** 4212,4219 **** if (debugsw) { while (*cp) cp++; ! fprintf (stderr, "invalid MD5 digest (got %d octets)\n", ! cp - bp); } return NOTOK; --- 4212,4219 ---- if (debugsw) { while (*cp) cp++; ! fprintf (stderr, "invalid MD5 digest (got %ld octets)\n", ! (unsigned long)(cp - bp)); } return NOTOK; Diffs for file: uip/mhlistsbr.c =================================================================== RCS file: RCS/mhlistsbr.c,v retrieving revision 1.1 diff -u -c -r1.1 mhlistsbr.c *** mhlistsbr.c 2005/12/24 03:24:18 1.1 --- mhlistsbr.c 2005/12/24 03:26:53 *************** *** 261,268 **** fprintf (stderr, " %s=\"%s\"\n", *ap, *ep); /* print internal flags for type/subtype */ ! fprintf (stderr, " type 0x%x subtype 0x%x params 0x%x\n", ! ct->c_type, ct->c_subtype, (unsigned int) ct->c_ctparams); fprintf (stderr, " showproc \"%s\"\n", empty (ct->c_showproc)); fprintf (stderr, " termproc \"%s\"\n", empty (ct->c_termproc)); --- 261,268 ---- fprintf (stderr, " %s=\"%s\"\n", *ap, *ep); /* print internal flags for type/subtype */ ! fprintf (stderr, " type 0x%x subtype 0x%x params 0x%lx\n", ! ct->c_type, ct->c_subtype, (unsigned long) ct->c_ctparams); fprintf (stderr, " showproc \"%s\"\n", empty (ct->c_showproc)); fprintf (stderr, " termproc \"%s\"\n", empty (ct->c_termproc)); *************** *** 273,280 **** fprintf (stderr, " %s:%s", ENCODING_FIELD, ct->c_celine); /* print internal flags for transfer encoding */ ! fprintf (stderr, " transfer encoding 0x%x params 0x%x\n", ! ct->c_encoding, (unsigned int) ct->c_cefile); /* print Content-ID */ if (ct->c_id) --- 273,280 ---- fprintf (stderr, " %s:%s", ENCODING_FIELD, ct->c_celine); /* print internal flags for transfer encoding */ ! fprintf (stderr, " transfer encoding 0x%x params 0x%lx\n", ! ct->c_encoding, (unsigned long) ct->c_cefile); /* print Content-ID */ if (ct->c_id) *************** *** 284,291 **** if (ct->c_descr) fprintf (stderr, " %s:%s", DESCR_FIELD, ct->c_descr); ! fprintf (stderr, " read fp 0x%x file \"%s\" begin %ld end %ld\n", ! (unsigned int) ct->c_fp, empty (ct->c_file), ct->c_begin, ct->c_end); /* print more information about transfer encoding */ --- 284,291 ---- if (ct->c_descr) fprintf (stderr, " %s:%s", DESCR_FIELD, ct->c_descr); ! fprintf (stderr, " read fp 0x%lx file \"%s\" begin %ld end %ld\n", ! (unsigned long) ct->c_fp, empty (ct->c_file), ct->c_begin, ct->c_end); /* print more information about transfer encoding */ *************** *** 423,430 **** CE ce; if ((ce = ct->c_cefile)) ! fprintf (stderr, " decoded fp 0x%x file \"%s\"\n", ! (unsigned int) ce->ce_fp, ce->ce_file ? ce->ce_file : ""); return OK; } --- 423,430 ---- CE ce; if ((ce = ct->c_cefile)) ! fprintf (stderr, " decoded fp 0x%lx file \"%s\"\n", ! (unsigned long) ce->ce_fp, ce->ce_file ? ce->ce_file : ""); return OK; } Diffs for file: uip/mhlsbr.c =================================================================== RCS file: RCS/mhlsbr.c,v retrieving revision 1.1 diff -u -c -r1.1 mhlsbr.c *** mhlsbr.c 2005/12/24 06:40:20 1.1 --- mhlsbr.c 2005/12/24 17:41:07 *************** *** 243,249 **** "\n----------------------------------------------------------------------\n\n"; static char delim4[] = "\n------------------------------\n\n"; ! static FILE *(*mhl_action) () = (FILE *(*) ()) 0; /* --- 243,249 ---- "\n----------------------------------------------------------------------\n\n"; static char delim4[] = "\n------------------------------\n\n"; ! static FILE *(*mhl_action) (char *) = (FILE *(*) (char *)) 0; /* code review */ /* *************** *** 282,288 **** static void m_popen (char *); int mhl (int, char **); ! int mhlsbr (int, char **, FILE *(*)()); void m_pclose (void); void clear_screen (void); /* from termsbr.c */ --- 282,288 ---- static void m_popen (char *); int mhl (int, char **); ! int mhlsbr (int, char **, FILE *(*)(char *)); /* code review */ void m_pclose (void); void clear_screen (void); /* from termsbr.c */ *************** *** 290,296 **** int sc_width (void); /* from termsbr.c */ int sc_length (void); /* from termsbr.c */ int sc_hardcopy (void); /* from termsbr.c */ ! struct hostent *gethostbystring (); int --- 290,296 ---- int sc_width (void); /* from termsbr.c */ int sc_length (void); /* from termsbr.c */ int sc_hardcopy (void); /* from termsbr.c */ ! /*struct hostent *gethostbystring (); */ /* in prototypes.h */ int *************** *** 618,625 **** for (c1 = fmthd; c1; c1 = c1->c_next) { fprintf (stderr, "c1: name=\"%s\" text=\"%s\" ovtxt=\"%s\"\n", c1->c_name, c1->c_text, c1->c_ovtxt); ! fprintf (stderr, "\tnfs=0x%x fmt=0x%x\n", ! (unsigned int) c1->c_nfs, (unsigned int) c1->c_fmt); fprintf (stderr, "\toffset=%d ovoff=%d width=%d cwidth=%d length=%d\n", c1->c_offset, c1->c_ovoff, c1->c_width, c1->c_cwidth, c1->c_length); --- 618,625 ---- for (c1 = fmthd; c1; c1 = c1->c_next) { fprintf (stderr, "c1: name=\"%s\" text=\"%s\" ovtxt=\"%s\"\n", c1->c_name, c1->c_text, c1->c_ovtxt); ! fprintf (stderr, "\tnfs=0x%lx fmt=0x%lx\n", ! (unsigned long) c1->c_nfs, (unsigned long) c1->c_fmt); fprintf (stderr, "\toffset=%d ovoff=%d width=%d cwidth=%d length=%d\n", c1->c_offset, c1->c_ovoff, c1->c_width, c1->c_cwidth, c1->c_length); *************** *** 1683,1689 **** int ! mhlsbr (int argc, char **argv, FILE *(*action)()) { SIGNAL_HANDLER istat, pstat, qstat; char *cp; --- 1683,1689 ---- int ! mhlsbr (int argc, char **argv, FILE *(*action)(char *)) /* code review */ { SIGNAL_HANDLER istat, pstat, qstat; char *cp; Diffs for file: uip/mhparse.c =================================================================== RCS file: RCS/mhparse.c,v retrieving revision 1.1 diff -u -c -r1.1 mhparse.c *** mhparse.c 2005/12/24 03:46:01 1.1 --- mhparse.c 2005/12/24 17:43:04 *************** *** 2675,2682 **** if (debugsw) { while (*cp) cp++; ! fprintf (stderr, "invalid MD5 digest (got %d octets)\n", ! cp - bp); } return NOTOK; --- 2675,2682 ---- if (debugsw) { while (*cp) cp++; ! fprintf (stderr, "invalid MD5 digest (got %ld octets)\n", ! (unsigned long)(cp - bp)); } return NOTOK; Diffs for file: uip/msgchk.c =================================================================== RCS file: RCS/msgchk.c,v retrieving revision 1.1 diff -u -c -r1.1 msgchk.c *** msgchk.c 2005/12/24 17:22:53 1.1 --- msgchk.c 2005/12/24 17:23:20 *************** *** 307,313 **** if (vecp == 0) { char *home; ! home = (uid = geteuid()) ? home = getenv ("HOME") : NULL; if (home == NULL) { pw = getpwnam (user); if (pw == NULL) --- 307,313 ---- if (vecp == 0) { char *home; ! home = (uid = geteuid()) ? getenv ("HOME") : NULL; /* code review */ if (home == NULL) { pw = getpwnam (user); if (pw == NULL) Diffs for file: uip/mshcmds.c =================================================================== RCS file: RCS/mshcmds.c,v retrieving revision 1.1 diff -u -c -r1.1 mshcmds.c *** mshcmds.c 2005/12/24 17:02:00 1.1 --- mshcmds.c 2005/12/24 17:02:17 *************** *** 72,78 **** static void copy_digest (int, FILE *); /* from mhlsbr.c */ ! int mhlsbr (int, char **, FILE *(*)()); void forkcmd (char **args, char *pgm) --- 72,78 ---- static void copy_digest (int, FILE *); /* from mhlsbr.c */ ! int mhlsbr (int, char **, FILE *(*)(char *)); /* code review */ void forkcmd (char **args, char *pgm) Diffs for file: uip/picksbr.c =================================================================== RCS file: RCS/picksbr.c,v retrieving revision 1.1 diff -u -c -r1.1 picksbr.c *** picksbr.c 2005/12/24 03:48:39 1.1 --- picksbr.c 2005/12/24 17:20:04 *************** *** 116,122 **** #define padvise if (!talked++) advise struct nexus { ! int (*n_action)(); union { /* for {OR,AND,NOT}action */ --- 116,122 ---- #define padvise if (!talked++) advise struct nexus { ! int (*n_action)(register struct nexus *, register FILE *, int, long, long); /* code review */ union { /* for {OR,AND,NOT}action */ *************** *** 165,193 **** /* * prototypes for date routines */ ! static struct tws *tws_parse(); ! static struct tws *tws_special(); /* * static prototypes */ ! static void PRaction(); ! static int gcompile(); ! static int advance(); ! static int cclass(); ! static int tcompile(); ! ! static struct nexus *parse(); ! static struct nexus *exp1(); ! static struct nexus *exp2(); ! static struct nexus *exp3(); ! static struct nexus *newnexus(); ! ! static int ORaction(); ! static int ANDaction(); ! static int NOTaction(); ! static int GREPaction(); ! static int TWSaction(); int --- 165,193 ---- /* * prototypes for date routines */ ! static struct tws *tws_parse(char *, int); ! static struct tws *tws_special(char *); /* * static prototypes */ ! static void PRaction(struct nexus *, int); ! static int gcompile(struct nexus *, char *); ! static int advance(char *, char *); ! static int cclass(char *, int, int); ! static int tcompile(char *, struct tws *, int); ! ! static struct nexus *parse(void); ! static struct nexus *exp1(void); ! static struct nexus *exp_2(void); /* avoid conflict with builtin exp2 (math) */ ! static struct nexus *exp3(void); ! static struct nexus *newnexus(int (*)(register struct nexus *, register FILE *, int, long, long)); /* code review */ ! ! static int ORaction(register struct nexus *, register FILE *, int, long, long); ! static int ANDaction(register struct nexus *, register FILE *, int, long, long); ! static int NOTaction(register struct nexus *, register FILE *, int, long, long); ! static int GREPaction(register struct nexus *, register FILE *, int, long, long); ! static int TWSaction(register struct nexus *, register FILE *, int, long, long); int *************** *** 262,268 **** register char *cp; register struct nexus *n, *o; ! if ((n = exp2 ()) == NULL || (cp = nxtarg ()) == NULL) return n; if (*cp != '-') { --- 262,268 ---- register char *cp; register struct nexus *n, *o; ! if ((n = exp_2 ()) == NULL || (cp = nxtarg ()) == NULL) return n; if (*cp != '-') { *************** *** 299,305 **** static struct nexus * ! exp2 (void) { register char *cp; register struct nexus *n; --- 299,305 ---- static struct nexus * ! exp_2 (void) { register char *cp; register struct nexus *n; *************** *** 450,456 **** static struct nexus * ! newnexus (int (*action)()) { register struct nexus *p; --- 450,456 ---- static struct nexus * ! newnexus (int (*action)(register struct nexus *, register FILE *, int, long, long)) /* code review */ { register struct nexus *p; *************** *** 520,526 **** dasctime (&n->n_tws, TW_NULL)); return; } ! fprintf (stderr, "UNKNOWN(0x%x)\n", (unsigned int) (*n->n_action)); } --- 520,526 ---- dasctime (&n->n_tws, TW_NULL)); return; } ! fprintf (stderr, "UNKNOWN(0x%lx)\n", (unsigned long) (*n->n_action)); } Diffs for file: uip/slocal.c =================================================================== RCS file: RCS/slocal.c,v retrieving revision 1.1 diff -u -c -r1.1 slocal.c *** slocal.c 2005/12/23 18:55:11 1.1 --- slocal.c 2005/12/24 17:47:14 *************** *** 64,69 **** --- 64,73 ---- #endif #endif + /* Kludge, needed for FreeBSD 6.0 (perhaps others?) */ + /* Need a autoconf/configure person to do this right. */ + #include + #include #ifndef HAVE_GETUTENT *************** *** 1371,1382 **** if (hp) { /* return path for UUCP style addressing */ ep = strchr(++hp, '\n'); snprintf (buffer, sizeof(buffer), "Return-Path: %.*s!%.*s\n", ! ep - hp, hp, cp - fp, fp); } else { /* return path for standard domain addressing */ snprintf (buffer, sizeof(buffer), "Return-Path: %.*s\n", ! cp - fp, fp); } /* Add Return-Path header to message */ --- 1375,1391 ---- if (hp) { /* return path for UUCP style addressing */ ep = strchr(++hp, '\n'); + /* The pointer differences ought to be cast to long rather + * than int, but gcc complains. If the difference doesn't + * fit in an int (32 bits on both ILP32 and LP64) we have + * an absurdly large Return-Path. + */ snprintf (buffer, sizeof(buffer), "Return-Path: %.*s!%.*s\n", ! (int)(ep - hp), hp, (int)(cp - fp), fp); } else { /* return path for standard domain addressing */ snprintf (buffer, sizeof(buffer), "Return-Path: %.*s\n", ! (int)(cp - fp), fp); } /* Add Return-Path header to message */ Diffs for file: sbr/Makefile.in =================================================================== RCS file: RCS/Makefile.in,v retrieving revision 1.1 diff -u -c -r1.1 Makefile.in *** Makefile.in 2005/12/24 23:35:05 1.1 --- Makefile.in 2005/12/24 23:37:36 *************** *** 101,108 **** # Note that some lexes (for example flex 2.5.4) require that there # be no space between -o and the output filename. dtimep.c: dtimep.lex ! $(LEX) -o$@ $< client.o: client.c $(COMPILE2) $< --- 101,116 ---- # Note that some lexes (for example flex 2.5.4) require that there # be no space between -o and the output filename. + # + # The $< does not work (at least on FreeBSD 6.0) + # It expands to nothing, so flex just hangs. + # (probably waiting for something to show up on stdin) + # Maybe $< only works with .c not .lex ? + # Quick & dirty kludge fix: just put in dtimep.lex + # (Like someone did with sigmsg.awk above.) + # dtimep.c: dtimep.lex ! $(LEX) -o$@ dtimep.lex client.o: client.c $(COMPILE2) $< Diffs for file: sbr/check_charset.c =================================================================== RCS file: RCS/check_charset.c,v retrieving revision 1.1 diff -u -c -r1.1 check_charset.c *** check_charset.c 2005/12/24 02:15:23 1.1 --- check_charset.c 2005/12/24 02:15:39 *************** *** 19,25 **** * Get the current character set */ char * ! get_charset () { char *charset = getenv ("MM_CHARSET"); #if defined(HAVE_NL_LANGINFO) && defined(CODESET) --- 19,25 ---- * Get the current character set */ char * ! get_charset (void) { char *charset = getenv ("MM_CHARSET"); #if defined(HAVE_NL_LANGINFO) && defined(CODESET) Diffs for file: sbr/fmt_scan.c =================================================================== RCS file: RCS/fmt_scan.c,v retrieving revision 1.1 diff -u -c -r1.1 fmt_scan.c *** fmt_scan.c 2005/12/24 03:04:01 1.1 --- fmt_scan.c 2005/12/24 03:06:26 *************** *** 28,34 **** #define NFMTS MAXARGS ! extern char *formataddr (); /* hook for custom address formatting */ #ifdef LBL struct msgs *fmt_current_folder; /* current folder (set by main program) */ --- 28,34 ---- #define NFMTS MAXARGS ! extern char *formataddr (char *, char *); /* hook for custom address formatting */ #ifdef LBL struct msgs *fmt_current_folder; /* current folder (set by main program) */ *************** *** 255,261 **** || !(cp = strchr(mbox += idx + strlen (key), '/'))) return 0; ! snprintf (buffer, buffer_len, "%*.*s", cp - mbox, cp - mbox, mbox); return 1; } --- 255,261 ---- || !(cp = strchr(mbox += idx + strlen (key), '/'))) return 0; ! snprintf (buffer, buffer_len, "%*.*s", (int)(cp - mbox), (int)(cp - mbox), mbox); return 1; } Diffs for file: sbr/lock_file.c =================================================================== RCS file: RCS/lock_file.c,v retrieving revision 1.1 diff -u -c -r1.1 lock_file.c *** lock_file.c 2005/12/24 03:07:39 1.1 --- lock_file.c 2005/12/24 03:09:05 *************** *** 493,499 **** bplen += tmplen; #else if (cp != file) { ! snprintf (bp, sizeof(li->curlock), "%.*s", cp - file, file); tmplen = strlen (bp); bp += tmplen; bplen += tmplen; --- 493,499 ---- bplen += tmplen; #else if (cp != file) { ! snprintf (bp, sizeof(li->curlock), "%.*s", (int)(cp - file), file); tmplen = strlen (bp); bp += tmplen; bplen += tmplen; *************** *** 525,531 **** strncpy (li->tmplock, ",LCK.XXXXXX", sizeof(li->tmplock)); else snprintf (li->tmplock, sizeof(li->tmplock), "%.*s,LCK.XXXXXX", ! cp - li->curlock, li->curlock); } #endif } --- 525,531 ---- strncpy (li->tmplock, ",LCK.XXXXXX", sizeof(li->tmplock)); else snprintf (li->tmplock, sizeof(li->tmplock), "%.*s,LCK.XXXXXX", ! (int)(cp - li->curlock), li->curlock); } #endif } Diffs for file: sbr/m_backup.c =================================================================== RCS file: RCS/m_backup.c,v retrieving revision 1.1 diff -u -c -r1.1 m_backup.c *** m_backup.c 2005/12/24 03:09:37 1.1 --- m_backup.c 2005/12/24 03:10:13 *************** *** 22,28 **** snprintf(buffer, sizeof(buffer), "%s%s", BACKUP_PREFIX, cp); else ! snprintf(buffer, sizeof(buffer), "%.*s%s%s", cp - file, file, BACKUP_PREFIX, cp); unlink(buffer); --- 22,28 ---- snprintf(buffer, sizeof(buffer), "%s%s", BACKUP_PREFIX, cp); else ! snprintf(buffer, sizeof(buffer), "%.*s%s%s", (int)(cp - file), file, BACKUP_PREFIX, cp); unlink(buffer); Diffs for file: sbr/m_getfld.c =================================================================== RCS file: RCS/m_getfld.c,v retrieving revision 1.1 diff -u -c -r1.1 m_getfld.c *** m_getfld.c 2005/12/24 03:10:54 1.1 --- m_getfld.c 2005/12/24 03:37:29 *************** *** 182,188 **** static unsigned char *edelim; static int edelimlen; ! static int (*eom_action)() = NULL; #ifdef _FSTDIO # define _ptr _p /* Gag */ --- 182,188 ---- static unsigned char *edelim; static int edelimlen; ! static int (*eom_action)(int) = NULL; /* code review */ #ifdef _FSTDIO # define _ptr _p /* Gag */ *************** *** 595,601 **** void ! m_eomsbr (int (*action)()) { if ((eom_action = action)) { msg_style = MS_MSH; --- 595,601 ---- void ! m_eomsbr (int (*action)(int)) /* code inspect */ { if ((eom_action = action)) { msg_style = MS_MSH; *************** *** 699,708 **** if (cp) { /* return path for UUCP style addressing */ dp = strchr (++cp, '\n'); ! snprintf (rp, rplen, "%.*s!%.*s\n", dp - cp, cp, bp - ap, ap); } else { /* return path for standard domain addressing */ ! snprintf (rp, rplen, "%.*s\n", bp - ap, ap); } /* --- 699,708 ---- if (cp) { /* return path for UUCP style addressing */ dp = strchr (++cp, '\n'); ! snprintf (rp, rplen, "%.*s!%.*s\n", (int)(dp - cp), cp, (int)(bp - ap), ap); } else { /* return path for standard domain addressing */ ! snprintf (rp, rplen, "%.*s\n", (int)(bp - ap), ap); } /* Diffs for file: sbr/m_scratch.c =================================================================== RCS file: RCS/m_scratch.c,v retrieving revision 1.1 diff -u -c -r1.1 m_scratch.c *** m_scratch.c 2005/12/24 03:15:24 1.1 --- m_scratch.c 2005/12/24 03:15:52 *************** *** 33,39 **** if ((cp = r1bindex (file, '/')) == file) strncpy (buffer, tmpfil, sizeof(buffer)); else ! snprintf (buffer, sizeof(buffer), "%.*s%s", cp - file, file, tmpfil); unlink (buffer); return buffer; --- 33,39 ---- if ((cp = r1bindex (file, '/')) == file) strncpy (buffer, tmpfil, sizeof(buffer)); else ! snprintf (buffer, sizeof(buffer), "%.*s%s", (int)(cp - file), file, tmpfil); unlink (buffer); return buffer; Diffs for file: sbr/mf.c =================================================================== RCS file: RCS/mf.c,v retrieving revision 1.1 diff -u -c -r1.1 mf.c *** mf.c 2005/12/24 03:18:49 1.1 --- mf.c 2005/12/24 03:19:13 *************** *** 433,439 **** while (isspace (*ap)) ap++; if (cp) ! sprintf (adr, "%.*s", cp - ap, ap); else strcpy (adr, ap); bp = adr + strlen (adr) - 1; --- 433,439 ---- while (isspace (*ap)) ap++; if (cp) ! sprintf (adr, "%.*s", (int)(cp - ap), ap); else strcpy (adr, ap); bp = adr + strlen (adr) - 1; Diffs for file: sbr/norm_charmap.c =================================================================== RCS file: RCS/norm_charmap.c,v retrieving revision 1.1 diff -u -c -r1.1 norm_charmap.c *** norm_charmap.c 2005/12/24 03:39:23 1.1 --- norm_charmap.c 2005/12/24 17:53:50 *************** *** 25,30 **** --- 25,31 ---- */ #include + #include "h/mh.h" /* for prototypes in h/prototypes.h */ #define digit(x) ((x) >= '0' && (x) <= '9') Diffs for file: sbr/path.c =================================================================== RCS file: RCS/path.c,v retrieving revision 1.1 diff -u -c -r1.1 path.c *** path.c 2005/12/24 03:17:25 1.1 --- path.c 2005/12/24 03:18:04 *************** *** 85,91 **** name += NCWD; if (strcmp (name, DOTDOT) == 0 || strcmp (name, PWD) == 0) { ! snprintf (buffer, sizeof(buffer), "%.*s", cp - pwds, pwds); return getcpy (buffer); } --- 85,91 ---- name += NCWD; if (strcmp (name, DOTDOT) == 0 || strcmp (name, PWD) == 0) { ! snprintf (buffer, sizeof(buffer), "%.*s", (int)(cp - pwds), pwds); return getcpy (buffer); } *************** *** 94,100 **** else cp = ep; ! snprintf (buffer, sizeof(buffer), "%.*s/%s", cp - pwds, pwds, name); return getcpy (buffer); } --- 94,100 ---- else cp = ep; ! snprintf (buffer, sizeof(buffer), "%.*s/%s", (int)(cp - pwds), pwds, name); return getcpy (buffer); } Diffs for file: /rw/src/nmh-1.2/configure.in =================================================================== RCS file: RCS/configure.in,v retrieving revision 1.1 diff -u -c -r1.1 configure.in *** configure.in 2005/12/24 18:10:48 1.1 --- configure.in 2005/12/24 23:46:19 *************** *** 223,232 **** dnl if compiler is gcc, then dnl use -O2 and some warning flags dnl else use -O if test -n "$auto_cflags"; then if test x"$enable_debug" = x"yes"; then if test -n "$GCC"; then ! test -z "$CFLAGS" && CFLAGS="-Wall -g" || CFLAGS="$CFLAGS -Wall -g" else test -z "$CFLAGS" && CFLAGS=-g || CFLAGS="$CFLAGS -g" fi --- 223,236 ---- dnl if compiler is gcc, then dnl use -O2 and some warning flags dnl else use -O + dnl + dnl -Wall is not sufficient for portability between ILP32 and LP64 + GCC_WARNINGS="-Wall -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith" + if test -n "$auto_cflags"; then if test x"$enable_debug" = x"yes"; then if test -n "$GCC"; then ! test -z "$CFLAGS" && CFLAGS="$GCC_WARNINGS -g" || CFLAGS="$CFLAGS $GCC_WARNINGS -g" else test -z "$CFLAGS" && CFLAGS=-g || CFLAGS="$CFLAGS -g" fi *************** *** 242,248 **** esac fi if test -n "$GCC"; then ! test -z "$CFLAGS" && CFLAGS="-Wall -O2" || CFLAGS="$CFLAGS -Wall -O2" else test -z "$CFLAGS" && CFLAGS=-O || CFLAGS="$CFLAGS -O" fi --- 246,252 ---- esac fi if test -n "$GCC"; then ! test -z "$CFLAGS" && CFLAGS="$GCC_WARNINGS -O2" || CFLAGS="$CFLAGS $GCC_WARNINGS -O2" else test -z "$CFLAGS" && CFLAGS=-O || CFLAGS="$CFLAGS -O" fi From owner-freebsd-ports@FreeBSD.ORG Sun Dec 25 03:09:01 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13AB816A41F for ; Sun, 25 Dec 2005 03:09:01 +0000 (GMT) (envelope-from akbeech@gmail.com) Received: from msgmmp-3.gci.net (msgmmp-3.gci.net [209.165.130.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5C1043D45 for ; Sun, 25 Dec 2005 03:09:00 +0000 (GMT) (envelope-from akbeech@gmail.com) Received: from stargate.akparadise.com ([209.124.141.64]) by msgmmp-3.gci.net (Sun Java System Messaging Server 6.2-3.03 (built Jun 27 2005)) with ESMTPA id <0IS100LG5A2W0B80@msgmmp-3.gci.net> for freebsd-ports@freebsd.org; Sat, 24 Dec 2005 18:09:00 -0900 (AKST) Received: by stargate.akparadise.com (Postfix, from userid 0) id 3106F4029; Sat, 24 Dec 2005 18:08:55 -0900 (AKST) Date: Sat, 24 Dec 2005 18:08:42 -0900 From: Beech Rintoul To: freebsd-ports@freebsd.org Message-id: <200512241808.54301.akbeech@gmail.com> Organization: NorthWind Communications MIME-version: 1.0 Content-type: multipart/signed; boundary=nextPart1425517.fbTlK5FuKo; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-transfer-encoding: 7bit User-Agent: KMail/1.8.3 Cc: h.eichmann@gmx.de Subject: k3b compile error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Dec 2005 03:09:01 -0000 --nextPart1425517.fbTlK5FuKo Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline The upgrade of k3b fails with the following: if /bin/sh ../../libtool --silent --mode=3Dcompile --tag=3DCXX c++ -DHAVE_C= ONFIG_H=20 =2DI. -I. -I../.. -I./../../libk3bdevice -I./../plugin -I./../tools=20 =2DI/usr/local/include -I/usr/X11R6/include -I/usr/local/include=20 =2DD_THREAD_SAFE -pthread -DQT_THREAD_SUPPORT -I/usr/local/include=20 =2DI/usr/local/include -I/usr/X11R6/include -D_GETOPT_H -D_THREAD_SAFE =20 =2DWno-long-long -Wundef -Wall -W -Wpointer-arith -O2 -O2 -fno-strict-alias= ing=20 =2Dpipe -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -= MT=20 k3bglobals.lo -MD -MP -MF ".deps/k3bglobals.Tpo" \ -c -o k3bglobals.lo `test -f 'k3bglobals.cpp' || echo './'`k3bglobals.cpp= ; \ then mv -f ".deps/k3bglobals.Tpo" ".deps/k3bglobals.Plo"; \ else rm -f ".deps/k3bglobals.Tpo"; exit 1; \ fi k3bglobals.cpp: In function `KIO::filesize_t K3b::filesize(const KURL&)': k3bglobals.cpp:257: error: aggregate `stat64 buf' has incomplete type and=20 cannot be defined k3bglobals.cpp:258: error: invalid use of undefined type `struct stat64' k3bglobals.cpp:257: error: forward declaration of `struct stat64' gmake[3]: *** [k3bglobals.lo] Error 1 gmake[3]: Leaving directory=20 `/usr/ports/sysutils/k3b/work/k3b-0.12.10/libk3b/core' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/sysutils/k3b/work/k3b-0.12.10/libk3= b' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/sysutils/k3b/work/k3b-0.12.10' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/sysutils/k3b. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade82851.= 0=20 make ** Fix the problem and try again. Beech =2D-=20 =2D------------------------------------------------------------------------= =2D------------- Beech Rintoul - System Administrator - akbeech@gmail.com /"\ ASCII Ribbon Campaign | NorthWind Communications \ / - NO HTML/RTF in e-mail | 201 East 9th Avenue Ste.310 X - NO Word docs in e-mail | Anchorage, AK 99501 / \ - Please visit Alaska Paradise - http://akparadise.byethost33.com =2D------------------------------------------------------------------------= =2D------------- --nextPart1425517.fbTlK5FuKo Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQBDrg1GVq19LUoGB+MRAn6HAKDJm4KoTiHEc/T732/ifN35KznEPwCfYU/B tf5CSPJ4TQFnqHI2F2o4s2M= =An3A -----END PGP SIGNATURE----- --nextPart1425517.fbTlK5FuKo-- From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 02:56:39 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23A6D16A41F; Mon, 26 Dec 2005 02:56:39 +0000 (GMT) (envelope-from cperciva@freebsd.org) Received: from pd5mo2so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DCC743D55; Mon, 26 Dec 2005 02:56:38 +0000 (GMT) (envelope-from cperciva@freebsd.org) Received: from pd4mr3so.prod.shaw.ca (pd4mr3so-qfe3.prod.shaw.ca [10.0.141.214]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0IS300GEH46DNY30@l-daemon>; Sun, 25 Dec 2005 19:56:37 -0700 (MST) Received: from pn2ml3so.prod.shaw.ca ([10.0.121.147]) by pd4mr3so.prod.shaw.ca (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0IS300CA946DRJE0@pd4mr3so.prod.shaw.ca>; Sun, 25 Dec 2005 19:56:37 -0700 (MST) Received: from [192.168.0.60] ([24.87.209.6]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0IS30023046CAV60@l-daemon>; Sun, 25 Dec 2005 19:56:37 -0700 (MST) Date: Sun, 25 Dec 2005 18:56:24 -0800 From: Colin Percival To: pav@freebsd.org Message-id: <43AF5BD8.9060000@freebsd.org> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: 7bit X-Accept-Language: en-us, en X-Enigmail-Version: 0.93.0.0 User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051001) Cc: freebsd-ports@freebsd.org Subject: [Fwd: 4.x make describe FAILURE] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 02:56:39 -0000 -------- Original Message -------- Subject: 4.x make describe FAILURE Date: Mon, 26 Dec 2005 01:55:20 GMT From: Portsnap buildbox To: Colin Percival metacity-themes-20040306_2: "/usr/ports/x11-themes/metacity-theme-alloy-c" non-existent -- dependency list incomplete ===> x11-themes/metacity-themes failed *** Error code 1 Stop in /usr/ports. Committers on the hook: edwin ijliao pav Latest cvsup history: Edit ports/MOVED,v Add delta 1.861 2005.12.26.01.32.57 pav Edit ports/devel/argtable/Makefile,v Add delta 1.8 2005.12.26.01.33.19 ijliao Edit ports/devel/argtable/distinfo,v Add delta 1.6 2005.12.26.01.33.19 ijliao Create ports/devel/argtable/files/patch-configure,v Create ports/devel/argtable/files/patch-doc::Makefile.in,v Create ports/devel/argtable/files/patch-ltmain.sh,v Edit ports/devel/argtable/pkg-plist,v Add delta 1.3 2005.12.26.01.33.19 ijliao Edit ports/games/nadar/Makefile,v Add delta 1.7 2005.12.26.00.41.56 edwin Edit ports/games/nadar/distinfo,v Add delta 1.5 2005.12.26.00.41.56 edwin Edit ports/games/nadar/pkg-descr,v Add delta 1.4 2005.12.26.00.41.56 edwin Edit ports/games/polypuzzle/Makefile,v Add delta 1.2 2005.12.26.00.44.57 edwin Edit ports/games/polypuzzle/distinfo,v Add delta 1.2 2005.12.26.00.44.57 edwin Edit ports/games/polypuzzle/pkg-plist,v Add delta 1.2 2005.12.26.00.44.57 edwin Edit ports/graphics/ruby-rmagick/Makefile,v Add delta 1.29 2005.12.26.01.22.56 edwin Edit ports/graphics/ruby-rmagick/distinfo,v Add delta 1.16 2005.12.26.01.22.56 edwin Edit ports/graphics/ruby-rmagick/pkg-plist,v Add delta 1.12 2005.12.26.01.22.56 edwin Edit ports/www/pnews/Makefile,v Add delta 1.2 2005.12.26.01.14.01 edwin Edit ports/www/pnews/distinfo,v Add delta 1.3 2005.12.26.01.14.01 edwin Edit ports/x11-themes/Makefile,v Add delta 1.127 2005.12.26.01.32.57 pav Edit ports/x11-themes/metacity-theme-alloy-c/Makefile,v -> Attic Add delta 1.3 2005.12.26.01.32.57 pav Edit ports/x11-themes/metacity-theme-alloy-c/distinfo,v -> Attic Add delta 1.2 2005.12.26.01.32.57 pav Edit ports/x11-themes/metacity-theme-alloy-c/pkg-descr,v -> Attic Add delta 1.2 2005.12.26.01.32.57 pav Edit ports/x11-themes/metacity-theme-alloy-c/pkg-plist,v -> Attic Add delta 1.2 2005.12.26.01.32.57 pav There may be different errors exposed by INDEX builds on other branches, but no further emails will be sent until after the INDEX next builds successfully on all branches. From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 03:04:08 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E5B016A41F for ; Mon, 26 Dec 2005 03:04:08 +0000 (GMT) (envelope-from surija@gmail.com) Received: from uproxy.gmail.com (uproxy.gmail.com [66.249.92.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42EB943D49 for ; Mon, 26 Dec 2005 03:04:07 +0000 (GMT) (envelope-from surija@gmail.com) Received: by uproxy.gmail.com with SMTP id o2so342656uge for ; Sun, 25 Dec 2005 19:04:05 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=Qj09GxbKpxRhaAEH4PtAa8xtu8fyy53e/6w3nKFSJKg2aPhdYtlvIADr7lm4IaO5rDrjxcivQz1K236kmZGkvz8derWg8fr1yNwDzPQbvYorhRj99/GylbkkOywlVwHyqT/JOklmgfS7dgms2ugnNJ9WOxnrhVy+TiLydrnltG4= Received: by 10.66.186.5 with SMTP id j5mr1767609ugf; Sun, 25 Dec 2005 19:04:05 -0800 (PST) Received: by 10.66.241.13 with HTTP; Sun, 25 Dec 2005 19:04:05 -0800 (PST) Message-ID: <21bc91010512251904m5d11cf37rfe0de8f7ea320f6d@mail.gmail.com> Date: Sun, 25 Dec 2005 22:04:05 -0500 From: Ranko Sredojevic To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: octave build failed in atlas on releng_6 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 03:04:08 -0000 Hi all, I was playing around and upgrading from RELENG_6_0 to RELENG_6. I started by deleting all the ports... cleaned everything so pkg_info wasn't reporting anything. Then I changed tag in my cvs-supfile to RELENG_6 from RELENG_6_0, and cvsup-ed (ports-all,src-all). I rebult world, precompiled kernel in first try. After that, I rebuilt xorg, gnome, latex, vim, xmms, gaim and subversion without any problems. However, rebuilding octave finished, after 18hours with: ATLAS install complete. Examine ATLAS/bin//INSTALL_LOG/SUMMARY.LOG for details. (cd /usr/ports/math/atlas/work/ATLAS; /bin/mkdir -p tmp1 ; /bin/cp /usr/ports/m ath/atlas/work/lapack/work/LAPACK/SRC/liblapack.a tmp1 ; cd tmp1 ; ar x liblapac k.a ; ar x ../lib/NON_THREADED/liblapack.a ; ar r ../lib/NON_THREADED/libalapack .a *.o ; ranlib ../lib/NON_THREADED/libalapack.a ) ar: creating ../lib/NON_THREADED/libalapack.a (cd /usr/ports/math/atlas/work/ATLAS; /bin/mkdir -p tmp2 ; /bin/cp /usr/ports/m ath/atlas/work/lapack/work/LAPACK/SRC/liblapack.a tmp2 ; cd tmp2 ; ar x liblapac k.a ; ar x ../lib/THREADED/liblapack.a ; ar r ../lib/THREADED/liblapack.a *.o ; ar: ../THREADED/liblapack.a: No such file or directory *** Error code 9 Stop in /usr/ports/math/atlas. ***Error code 1 Stop in /usr/ports/math/octave. I tried building in single user mode, since last time I was told to try not to load machine with anything in order to get atlas compiled properly. I compiled octave before in RELENG_6_0 just fine. Any clue/cure? rasha From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 03:15:42 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68B9D16A41F for ; Mon, 26 Dec 2005 03:15:42 +0000 (GMT) (envelope-from forrie@forrie.com) Received: from forrie.com (c-24-147-44-26.hsd1.nh.comcast.net [24.147.44.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5A6B43D49 for ; Mon, 26 Dec 2005 03:15:41 +0000 (GMT) (envelope-from forrie@forrie.com) Received: from [192.168.1.98] (monster.forrie.com [192.168.1.98]) (authenticated bits=0) by forrie.com (8.13.4/8.13.4) with ESMTP id jBQ3FgTF071865 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sun, 25 Dec 2005 22:15:42 -0500 (EST) (envelope-from forrie@forrie.com) Message-ID: <43AF60D2.7020501@forrie.com> Date: Sun, 25 Dec 2005 22:17:38 -0500 From: Forrest Aldrich User-Agent: Thunderbird 1.5 (Windows/20051223) MIME-Version: 1.0 To: ports@freebsd.org X-Virus-Scanned: ClamAV 0.87/1217/Sat Dec 24 09:39:31 2005 on mail.forrie.com X-Virus-Status: Clean Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Slimserver/mDNSResponder issues... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 03:15:42 -0000 I emailed the port maintainer about this... and didn't get a reply, so I figure I'll ask here. I've noticed these errors in the slimserver.log: mDNSResponderPosix: Unexpected argument '/var/db/slimserver/cache/mDNS.conf' Usage: mDNSResponderPosix [-v level ] [-r] [-n name] [-t type] [-d domain] [-p port] [-f file] [-b] [-P pidfile] [-x name=val ...] -v verbose mode, level is a number from 0 to 2 0 = no debugging info (default) 1 = standard debugging info 2 = intense debugging info can be cycled kill -USR1 -r also bind to port 53 (port 5353 is always bound) -n uses 'name' as the service name (required) -t uses 'type' as the service type (default is '_afpovertcp._tcp.') -d uses 'domain' as the service domain (default is 'local.') -p uses 'port' as the port number (default is '548') -f reads a service list from 'file' -b forces daemon (background) mode -P uses 'pidfile' as the PID file (default is '/var/run/mDNSResponder.pid') only meaningful if -b also specified -x stores name=val in TXT record (default is empty). MUST be the last command-line argument; all subsequent arguments after -x are treated as name=val pairs. mDNSResponderPosix: Unexpected argument '/var/db/slimserver/cache/mDNS.conf' 2005-12-22 02:46:12.7084 ERROR: Couldn't open song. 2005-12-22 02:46:17.8440 ERROR: Couldn't gotoNext, stopping I don't know what mdns.conf is really supposed to have in it; however, I'm not able to play anything on my slimserver now, and I wonder if it's related to this problem. Thanks, Forrest From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 05:11:34 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45BE516A41F for ; Mon, 26 Dec 2005 05:11:34 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from builder.freebsd.org (builder.freebsd.org [216.136.204.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0800843D58 for ; Mon, 26 Dec 2005 05:11:34 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.13.4/8.13.4) with ESMTP id jBQ5BX0M055327 for ; Mon, 26 Dec 2005 05:11:33 GMT (envelope-from kris@builder.freebsd.org) Received: (from kris@localhost) by builder.freebsd.org (8.13.4/8.13.4/Submit) id jBQ5BX7J055326 for ports@FreeBSD.org; Mon, 26 Dec 2005 05:11:33 GMT (envelope-from kris) Date: Mon, 26 Dec 2005 05:11:33 GMT From: Kris Kennaway Message-Id: <200512260511.jBQ5BX7J055326@builder.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX build failed for 4.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 05:11:34 -0000 INDEX build failed with errors: Generating INDEX - please wait..metacity-themes-20040306_2: "/local0/tmp/kris/tindex/ports/x11-themes/metacity-theme-alloy-c" non-existent -- dependency list incomplete ===> x11-themes/metacity-themes failed *** Error code 1 *** Error code 1 Stop in /local0/tmp/kris/tindex/ports. *** Error code 1 Stop in /local0/tmp/kris/tindex/ports. 1 error Committers on the hook: aaron clement clsung danfe dougb edwin ehaupt erwin flz garga gerald girgen ijliao jkoshy jylefort kbyanc lawrance linimon maho marcus pav tdb tg vs Most recent CVS update was: U MOVED U deskutils/alacarte/Makefile U deskutils/alacarte/files/patch-GnomeDialogHandler.py U devel/argtable/Makefile U devel/argtable/distinfo U devel/argtable/pkg-plist U devel/argtable/files/patch-configure U devel/argtable/files/patch-doc::Makefile.in U devel/argtable/files/patch-ltmain.sh U devel/cvsweb3/Makefile U devel/p5-Module-Install/Makefile U devel/p5-Module-Install/distinfo U devel/p5-Module-Install/pkg-plist U emulators/linux_base-8/Makefile U games/nadar/Makefile U games/nadar/distinfo U games/nadar/pkg-descr U games/netris/Makefile U games/netris/distinfo U games/polypuzzle/Makefile U games/polypuzzle/distinfo U games/polypuzzle/pkg-plist U games/tileworld/Makefile U games/tileworld/distinfo U games/xbubble/Makefile U games/xbubble/distinfo U games/znibbles/distinfo U games/znibbles/pkg-descr U graphics/eps2png/Makefile U graphics/eps2png/distinfo U graphics/gtkgraph/pkg-descr U graphics/kipi-plugins/distinfo U graphics/kipi-plugins/pkg-descr U graphics/kix-kmod/Makefile U graphics/kix-kmod/pkg-descr U graphics/libdjvu++/Makefile U graphics/libdjvu++/distinfo U graphics/libdjvu++/pkg-descr U graphics/libpano12/pkg-descr U graphics/ruby-rmagick/Makefile U graphics/ruby-rmagick/distinfo U graphics/ruby-rmagick/pkg-plist U net/openldap22-server/Makefile U net/openldap22-server/distinfo U sysutils/pdumpfs-rsync/Makefile U sysutils/pdumpfs-rsync/files/patch-pdumpfs-rsync U www/pnews/Makefile U www/pnews/distinfo U x11/nvidia-driver/Makefile U x11/nvidia-driver/distinfo U x11-themes/Makefile From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 06:25:18 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84B5B16A41F; Mon, 26 Dec 2005 06:25:18 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from relay-er5.mbrd.ru (relay-er5.mbrd.ru [194.117.71.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id C134543D46; Mon, 26 Dec 2005 06:25:17 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from msd.mbrd.ru ([172.16.4.9]) by relay-er5.mbrd.ru with esmtpa (Exim 4.x) id 1EqlnI-000JBd-2C; Mon, 26 Dec 2005 09:25:16 +0300 Message-ID: <43AF8CCB.2000102@FreeBSD.org> Date: Mon, 26 Dec 2005 09:25:15 +0300 From: Sergey Matveychuk User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Kris Kennaway References: <200512260511.jBQ5BX7J055326@builder.freebsd.org> In-Reply-To: <200512260511.jBQ5BX7J055326@builder.freebsd.org> X-Enigmail-Version: 0.93.0.0 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org Subject: Re: INDEX build failed for 4.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 06:25:18 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Kris Kennaway wrote: > INDEX build failed with errors: > Generating INDEX - please wait..metacity-themes-20040306_2: "/local0/tmp/kris/tindex/ports/x11-themes/metacity-theme-alloy-c" non-existent -- dependency list incomplete > ===> x11-themes/metacity-themes failed Fixed. - -- Sem. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFDr4zLTclL2LcfYF0RAlmVAJ422St8qv8cDqC753haNimakm5U8QCgytb8 W3Hg+t7tsZ3VjodFVZ6GsEM= =UCVj -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 06:53:55 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7834516A41F for ; Mon, 26 Dec 2005 06:53:55 +0000 (GMT) (envelope-from rostyslav.rava@eleks.com) Received: from eleks.lviv.ua (mail.eleks.lviv.ua [194.44.250.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65B8443D45 for ; Mon, 26 Dec 2005 06:53:51 +0000 (GMT) (envelope-from rostyslav.rava@eleks.com) Received: from IFDEV07 by eleks.lviv.ua (MDaemon.PRO.v8.1.3.R) with ESMTP id md50001332698.msg for ; Mon, 26 Dec 2005 08:53:47 +0200 From: "Rostyslav Rava" To: Date: Mon, 26 Dec 2005 08:53:45 +0200 MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook, Build 11.0.6353 Thread-Index: AcYJ6R1hL58vqZmJRXuyF6RWybWXSA== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 X-Authenticated-Sender: rostyslav.rava@eleks.lviv.ua X-Spam-Processed: eleks.lviv.ua, Mon, 26 Dec 2005 08:53:47 +0200 (not processed: spam filter disabled) X-MDRemoteIP: 172.20.0.107 X-Return-Path: rostyslav.rava@eleks.com X-MDaemon-Deliver-To: ports@FreeBSD.org Message-ID: X-MDAV-Processed: eleks.lviv.ua, Mon, 26 Dec 2005 08:53:48 +0200 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: dead link X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: rostyslav.rava@eleks.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 06:53:55 -0000 Hi guys! On page http://www.freebsd.org/cgi/url.cgi?ports/java/jdk14/pkg-descr there is a dead link to http://www.sun.com/software/communitysource/java2/ where Sun says that Page Not Found Best regards, Rostyslav Rava From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 08:40:32 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6731D16A41F for ; Mon, 26 Dec 2005 08:40:32 +0000 (GMT) (envelope-from dirk.meyer@dinoex.sub.org) Received: from uucp.dinoex.sub.de (uucp.dinoex.sub.de [194.45.71.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D38643D6E for ; Mon, 26 Dec 2005 08:40:29 +0000 (GMT) (envelope-from dirk.meyer@dinoex.sub.org) Received: from uucp.dinoex.sub.de (dinoex@uucp.dinoex.sub.de [194.45.71.2] (may be forged)) by uucp.dinoex.sub.de (8.13.5/8.13.5) with ESMTP id jBQ8e0T0066398 for ; Mon, 26 Dec 2005 09:40:01 +0100 (CET) (envelope-from dirk.meyer@dinoex.sub.org) X-MDaemon-Deliver-To: Received: from build.dinoex.sub.de (dinoex@localhost) by uucp.dinoex.sub.de (8.13.5/8.13.5/Submit) with BSMTP id jBQ8e0YY066384 for ; Mon, 26 Dec 2005 09:40:00 +0100 (CET) (envelope-from dirk.meyer@dinoex.sub.org) To: freebsd-ports@freebsd.org Message-ID: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Organization: privat Date: Mon, 26 Dec 2005 09:36:51 +0100 X-Mailer: Dinoex 1.79 References: <20051223090639.GA18118@merlin.emma.line.org> X-Gateway: ZCONNECT build.dinoex.sub.de [UNIX/Connect 0.94] X-PGP-Fingerprint: 44 16 EC 0A D3 3A 4F 28 8A 8A 47 93 F1 CF 2F 12 X-Copyright: (C) Copyright 2001 by Dirk Meyer -- All rights reserved. X-PGP-Key-Avail: mailto:pgp-public-keys@keys.de.pgp.net Subject:GET 0x331CDA5D X-ZC-VIA: 20051226000000W+1@dinoex.sub.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Milter: Spamilter (Reciever: uucp.dinoex.sub.de; Sender-ip: 194.45.71.2; Sender-helo: uucp.dinoex.sub.de; ) Subject: Re: Can we discontinue the databases/db2 port? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 08:40:32 -0000 Hallo Matthias Andree, > after a recent bug report against various databases/db* ports that asked > for consistency across these ports, I checked who is still using the > ancient (not to say obsolete) db2-2.7.7 port. I found these five > port|summary|maintainer tuples: mail/sendmail supports database/db2 too. Gruß Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany - [dirk.meyer@dinoex.sub.org],[dirk.meyer@guug.de],[dinoex@FreeBSD.org] From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 08:53:59 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AA0F16A420 for ; Mon, 26 Dec 2005 08:53:59 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mail2.fluidhosting.com [204.14.90.12]) by mx1.FreeBSD.org (Postfix) with SMTP id E8F0543D5F for ; Mon, 26 Dec 2005 08:53:57 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 9483 invoked by uid 399); 26 Dec 2005 08:53:57 -0000 Received: from localhost (HELO ?192.168.1.101?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 26 Dec 2005 08:53:57 -0000 Message-ID: <43AFAFA3.7090009@FreeBSD.org> Date: Mon, 26 Dec 2005 00:53:55 -0800 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 1.5 (X11/20051203) MIME-Version: 1.0 To: Jose M Rodriguez References: <43A910F8.5090009@FreeBSD.org> <200512231519.28445.josemi@redesjm.local> <200512231538.21356.flz@xbsd.org> <200512231612.46046.josemi@redesjm.local> In-Reply-To: <200512231612.46046.josemi@redesjm.local> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org, freebsd-ports@freebsd.org, Florent Thoumie Subject: Re: HEADS UP: MFC of local_startup changes to rc.d complete X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 08:53:59 -0000 Jose M Rodriguez wrote: > But this doesn't solve the real problem. We've lost a reference model > about rc and the interaction with the base system and ports. I'm not sure what that last sentence means. > - some kinda of style for ports/system rc scripts > - some docs about keywords and stage support As I said in one of my recent heads up messages, man rc(8). > - some kinda of timeline model Timeline for what? -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 08:57:33 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1B6216A427 for ; Mon, 26 Dec 2005 08:57:33 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mail2.fluidhosting.com [204.14.90.12]) by mx1.FreeBSD.org (Postfix) with SMTP id 8762F43D6A for ; Mon, 26 Dec 2005 08:57:32 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 12495 invoked by uid 399); 26 Dec 2005 08:57:32 -0000 Received: from localhost (HELO ?192.168.1.101?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 26 Dec 2005 08:57:32 -0000 Message-ID: <43AFB079.2020604@FreeBSD.org> Date: Mon, 26 Dec 2005 00:57:29 -0800 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 1.5 (X11/20051203) MIME-Version: 1.0 To: Florent Thoumie References: <43A910F8.5090009@FreeBSD.org> <200512231538.21356.flz@xbsd.org> <20051223195207.6f2e6148@it.buh.tecnik93.com> <200512231928.21444.flz@xbsd.org> In-Reply-To: <200512231928.21444.flz@xbsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Ion-Mihai Tetcu , freebsd-stable@freebsd.org, Jose M Rodriguez , freebsd-ports@freebsd.org Subject: Re: HEADS UP: MFC of local_startup changes to rc.d complete X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 08:57:33 -0000 Florent Thoumie wrote: > rcNG was the word for "using rc.subr". rcNG stands for rc Next Generation. It's not the next generation anymore. > Using the .sh extension prevents from conflicts in ${WRKDIR} and you know > what kind of file it is in ${FILESDIR}. Anyway, what is the difference > between adding .sh suffix in some cases and removing it in some cases ? > As I mentioned in one of my messages, we can easily fix this by changing bsd.port.mk to take file.in and output $WRKDIR/file.out. I haven't finished the patch to bsd.port.mk yet, but it's a trivial change. Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 09:09:17 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 964EC16A41F for ; Mon, 26 Dec 2005 09:09:17 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mail2.fluidhosting.com [204.14.90.12]) by mx1.FreeBSD.org (Postfix) with SMTP id 099A243D58 for ; Mon, 26 Dec 2005 09:09:16 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 21272 invoked by uid 399); 26 Dec 2005 09:09:14 -0000 Received: from localhost (HELO ?192.168.1.101?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 26 Dec 2005 09:09:14 -0000 Message-ID: <43AFB338.7010904@FreeBSD.org> Date: Mon, 26 Dec 2005 01:09:12 -0800 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 1.5 (X11/20051203) MIME-Version: 1.0 To: Beecher Rintoul References: <200512220210.17907.akbeech@gmail.com> <43AB05BE.6050804@FreeBSD.org> <200512221149.08293.akbeech@gmail.com> In-Reply-To: <200512221149.08293.akbeech@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: olgeni@freebsd.org, freebsd-ports@freebsd.org Subject: Re: Bug[?] In new local_startup and webmin3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 09:09:17 -0000 Beecher Rintoul wrote: worked fine. > > I'm positive that rc.conf is correct. Ok, do this for me. First upgrade to the latest version of the port (webmin-1.250_2), then add the following to either /etc/rc.conf or /etc/rc.conf.local: rc_debug="yes" rc_info="yes" Then type: /usr/local/etc/rc.d/webmin.sh rcvar and send the results to the list. While you're at it, can you please do this as well, and send the results to the list: ls -la /usr/local/etc/rc.d > On a side note cups.sh has the > same problem, and I have already removed the "PROVIDE" line. If you've removed the provide line from /usr/local/etc/rc.d/cups.sh, then it's not being treated as an rc.d script, and you have other problems. And FYI, your suggested fix for the webmin script doesn't actually fix anything. As I mentioned above, removing the PROVIDE line causes it to be treated as an old style script and be run out of localpkg. We need to find out why rc.d is not starting this script for you. Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 09:28:52 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4047E16A41F for ; Mon, 26 Dec 2005 09:28:52 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from builder.freebsd.org (builder.freebsd.org [216.136.204.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B09443D73 for ; Mon, 26 Dec 2005 09:28:47 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.13.4/8.13.4) with ESMTP id jBQ9Sl34021680 for ; Mon, 26 Dec 2005 09:28:47 GMT (envelope-from kris@builder.freebsd.org) Received: (from kris@localhost) by builder.freebsd.org (8.13.4/8.13.4/Submit) id jBQ9SlsY021678 for ports@FreeBSD.org; Mon, 26 Dec 2005 09:28:47 GMT (envelope-from kris) Date: Mon, 26 Dec 2005 09:28:47 GMT From: Kris Kennaway Message-Id: <200512260928.jBQ9SlsY021678@builder.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX now builds successfully on 4.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 09:28:52 -0000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 10:09:54 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD14816A41F; Mon, 26 Dec 2005 10:09:53 +0000 (GMT) (envelope-from akbeech@gmail.com) Received: from msgmmp-2.gci.net (msgmmp-2.gci.net [209.165.130.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD69A43D58; Mon, 26 Dec 2005 10:09:51 +0000 (GMT) (envelope-from akbeech@gmail.com) Received: from stargate.akparadise.com ([209.124.141.64]) by msgmmp-2.gci.net (Sun Java System Messaging Server 6.2-3.03 (built Jun 27 2005)) with ESMTPA id <0IS300BDHO844S80@msgmmp-2.gci.net>; Mon, 26 Dec 2005 01:09:42 -0900 (AKST) Received: by stargate.akparadise.com (Postfix, from userid 0) id 1D6723F3C; Mon, 26 Dec 2005 01:09:39 -0900 (AKST) Date: Mon, 26 Dec 2005 01:09:22 -0900 From: Beech Rintoul In-reply-to: <43AFB338.7010904@FreeBSD.org> To: Doug Barton Message-id: <200512260109.38128.akbeech@gmail.com> Organization: NorthWind Communications MIME-version: 1.0 Content-type: multipart/signed; boundary=nextPart1295433.KbiSFPWidY; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-transfer-encoding: 7bit References: <200512221149.08293.akbeech@gmail.com> <43AFB338.7010904@FreeBSD.org> User-Agent: KMail/1.8.3 Cc: olgeni@freebsd.org, freebsd-ports@freebsd.org Subject: Re: Bug[?] In new local_startup and webmin3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 10:09:54 -0000 --nextPart1295433.KbiSFPWidY Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Monday 26 December 2005 12:09 am, Doug Barton wrote: > Beecher Rintoul wrote: > worked fine. > > > I'm positive that rc.conf is correct. > > Ok, do this for me. First upgrade to the latest version of the port > (webmin-1.250_2), then add the following to either /etc/rc.conf or > /etc/rc.conf.local: > > rc_debug=3D"yes" > rc_info=3D"yes" > > Then type: /usr/local/etc/rc.d/webmin.sh rcvar > > and send the results to the list. While you're at it, can you please do > this as well, and send the results to the list: ls -la /usr/local/etc/rc.d > > > On a side note cups.sh has the > > same problem, and I have already removed the "PROVIDE" line. > > If you've removed the provide line from /usr/local/etc/rc.d/cups.sh, then > it's not being treated as an rc.d script, and you have other problems. > > And FYI, your suggested fix for the webmin script doesn't actually fix > anything. As I mentioned above, removing the PROVIDE line causes it to be > treated as an old style script and be run out of localpkg. We need to find > out why rc.d is not starting this script for you. Ok, I deleted both the webmin and cups scripts and rebuilt both. Now all th= e=20 scripts in /local/rc.d are stock. stargate# /usr/local/etc/rc.d/webmin.sh rcvar # webmin /usr/local/etc/rc.d/webmin.sh: DEBUG: checkyesno: webmin_enable is set to Y= ES. $webmin_enable=3DYES stargate# /usr/local/etc/rc.d/cups.sh rcvar Usage: cups {reload|restart|start|status|stop} # # stargate# ls -la /usr/local/etc/rc.d total 72 drwxr-xr-x 2 root wheel 1024 Dec 26 01:01 . drwxr-xr-x 16 root wheel 1536 Dec 21 15:46 .. =2Dr-xr-xr-x 1 root wheel 183 Dec 12 19:58 000.apache2libs.sh =2Drwxr-x--- 1 root wheel 181 Dec 22 14:15 000.mysql-client.sh =2Dr-xr-xr-x 1 root wheel 413 Dec 4 04:05 000.pkgtools.sh =2Dr-xr-xr-x 1 root wheel 308 Nov 25 15:56 000.pth.sh =2Dr-xr-xr-x 1 root wheel 471 Aug 21 10:39 001slpd.sh =2Dr-xr-xr-x 1 root wheel 3542 Dec 12 19:58 apache2.sh =2Dr-xr-xr-x 1 root wheel 406 Dec 21 19:03 compat5x.sh =2Drwxr-xr-x 1 root wheel 3941 Dec 26 00:59 cups.sh =2Drwxr-xr-x 1 root wheel 730 Dec 21 15:46 cyrus_pwcheck.sh =2Drwxr-xr-x 1 root wheel 391 Dec 21 15:46 cyrus_sasl1 =2Dr-xr-xr-x 1 root wheel 460 Dec 7 00:55 ffserver.sh =2Drwxr-x--x 1 root wheel 797 Dec 12 22:55 frox.sh =2Dr-xr-xr-x 1 root wheel 544 Dec 2 16:05 genkdmconf.sh =2Dr-xr-xr-x 1 root wheel 16157 Dec 14 13:21 isc-dhcpd.sh =2Dr-xr-xr-x 1 root wheel 57 Nov 5 21:53 kdelibs.sh =2Dr-xr-xr-x 1 root wheel 337 Aug 20 10:03 mdnsd.sh =2Dr-xr-xr-x 1 root wheel 785 Dec 15 18:32 mdnsresponder.sh =2Dr-xr-xr-x 1 root wheel 1689 Dec 22 17:57 mysql-server.sh lrwxr-xr-x 1 root wheel 23 Dec 12 14:07 postfix.sh=20 =2D> /usr/local/sbin/postfix =2Dr-xr-xr-x 1 root wheel 2738 Oct 16 23:29 samba.sh =2Drwxr-xr-x 1 root wheel 646 Dec 21 15:46 saslauthd1.sh =2Dr-xr-xr-x 1 root wheel 879 Nov 18 19:43 smartd.sh =2Dr-xr-xr-x 1 root wheel 777 Dec 1 20:47 snmpd.sh =2Dr-xr-xr-x 1 root wheel 838 Dec 1 20:47 snmptrapd.sh =2Dr-xr-xr-x 1 root wheel 517 Dec 22 12:59 webmin.sh Hope this helps, Beech =2D-=20 =2D------------------------------------------------------------------------= =2D------------- Beech Rintoul - System Administrator - akbeech@gmail.com /"\ ASCII Ribbon Campaign | NorthWind Communications \ / - NO HTML/RTF in e-mail | 201 East 9th Avenue Ste.310 X - NO Word docs in e-mail | Anchorage, AK 99501 / \ - Please visit Alaska Paradise - http://akparadise.byethost33.com =2D------------------------------------------------------------------------= =2D------------- --nextPart1295433.KbiSFPWidY Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQBDr8FhVq19LUoGB+MRAm4LAJ9K6aSN2wNUdmQHwoX7/XLZu8UYbgCfWLjo hV/TQHIa0kPNPRPYJRZThVY= =dYoB -----END PGP SIGNATURE----- --nextPart1295433.KbiSFPWidY-- From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 10:20:38 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B211116A41F; Mon, 26 Dec 2005 10:20:38 +0000 (GMT) (envelope-from akbeech@gmail.com) Received: from msgmmp-3.gci.net (msgmmp-3.gci.net [209.165.130.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id F2D4843D46; Mon, 26 Dec 2005 10:20:28 +0000 (GMT) (envelope-from akbeech@gmail.com) Received: from stargate.akparadise.com ([209.124.141.64]) by msgmmp-3.gci.net (Sun Java System Messaging Server 6.2-3.03 (built Jun 27 2005)) with ESMTPA id <0IS300DZCOPY7R50@msgmmp-3.gci.net>; Mon, 26 Dec 2005 01:20:28 -0900 (AKST) Received: by stargate.akparadise.com (Postfix, from userid 0) id 6FA123F3C; Mon, 26 Dec 2005 01:20:22 -0900 (AKST) Date: Mon, 26 Dec 2005 01:20:09 -0900 From: Beech Rintoul In-reply-to: <200512260109.38128.akbeech@gmail.com> To: freebsd-ports@freebsd.org Message-id: <200512260120.21133.akbeech@gmail.com> Organization: NorthWind Communications MIME-version: 1.0 Content-type: multipart/signed; boundary=nextPart4297533.FbCGkNUEcF; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-transfer-encoding: 7bit References: <43AFB338.7010904@FreeBSD.org> <200512260109.38128.akbeech@gmail.com> User-Agent: KMail/1.8.3 Cc: Doug Barton , olgeni@freebsd.org Subject: Re: Bug[?] In new local_startup and webmin3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 10:20:38 -0000 --nextPart4297533.FbCGkNUEcF Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Monday 26 December 2005 01:09 am, Beech Rintoul wrote: > On Monday 26 December 2005 12:09 am, Doug Barton wrote: > > Beecher Rintoul wrote: > > worked fine. > > > > > I'm positive that rc.conf is correct. > > > > Ok, do this for me. First upgrade to the latest version of the port > > (webmin-1.250_2), then add the following to either /etc/rc.conf or > > /etc/rc.conf.local: > > > > rc_debug=3D"yes" > > rc_info=3D"yes" > > > > Then type: /usr/local/etc/rc.d/webmin.sh rcvar > > > > and send the results to the list. While you're at it, can you please do > > this as well, and send the results to the list: ls -la > > /usr/local/etc/rc.d > > > > > On a side note cups.sh has the > > > same problem, and I have already removed the "PROVIDE" line. > > > > If you've removed the provide line from /usr/local/etc/rc.d/cups.sh, th= en > > it's not being treated as an rc.d script, and you have other problems. > > > > And FYI, your suggested fix for the webmin script doesn't actually fix > > anything. As I mentioned above, removing the PROVIDE line causes it to = be > > treated as an old style script and be run out of localpkg. We need to > > find out why rc.d is not starting this script for you. > > Ok, I deleted both the webmin and cups scripts and rebuilt both. Now all > the scripts in /local/rc.d are stock. > > stargate# /usr/local/etc/rc.d/webmin.sh rcvar > # webmin > /usr/local/etc/rc.d/webmin.sh: DEBUG: checkyesno: webmin_enable is set to > YES. $webmin_enable=3DYES > > stargate# /usr/local/etc/rc.d/cups.sh rcvar > Usage: cups {reload|restart|start|status|stop} > # > # > stargate# ls -la /usr/local/etc/rc.d > total 72 > drwxr-xr-x 2 root wheel 1024 Dec 26 01:01 . > drwxr-xr-x 16 root wheel 1536 Dec 21 15:46 .. > -r-xr-xr-x 1 root wheel 183 Dec 12 19:58 000.apache2libs.sh > -rwxr-x--- 1 root wheel 181 Dec 22 14:15 000.mysql-client.sh > -r-xr-xr-x 1 root wheel 413 Dec 4 04:05 000.pkgtools.sh > -r-xr-xr-x 1 root wheel 308 Nov 25 15:56 000.pth.sh > -r-xr-xr-x 1 root wheel 471 Aug 21 10:39 001slpd.sh > -r-xr-xr-x 1 root wheel 3542 Dec 12 19:58 apache2.sh > -r-xr-xr-x 1 root wheel 406 Dec 21 19:03 compat5x.sh > -rwxr-xr-x 1 root wheel 3941 Dec 26 00:59 cups.sh > -rwxr-xr-x 1 root wheel 730 Dec 21 15:46 cyrus_pwcheck.sh > -rwxr-xr-x 1 root wheel 391 Dec 21 15:46 cyrus_sasl1 > -r-xr-xr-x 1 root wheel 460 Dec 7 00:55 ffserver.sh > -rwxr-x--x 1 root wheel 797 Dec 12 22:55 frox.sh > -r-xr-xr-x 1 root wheel 544 Dec 2 16:05 genkdmconf.sh > -r-xr-xr-x 1 root wheel 16157 Dec 14 13:21 isc-dhcpd.sh > -r-xr-xr-x 1 root wheel 57 Nov 5 21:53 kdelibs.sh > -r-xr-xr-x 1 root wheel 337 Aug 20 10:03 mdnsd.sh > -r-xr-xr-x 1 root wheel 785 Dec 15 18:32 mdnsresponder.sh > -r-xr-xr-x 1 root wheel 1689 Dec 22 17:57 mysql-server.sh > lrwxr-xr-x 1 root wheel 23 Dec 12 14:07 postfix.sh > -> /usr/local/sbin/postfix > -r-xr-xr-x 1 root wheel 2738 Oct 16 23:29 samba.sh > -rwxr-xr-x 1 root wheel 646 Dec 21 15:46 saslauthd1.sh > -r-xr-xr-x 1 root wheel 879 Nov 18 19:43 smartd.sh > -r-xr-xr-x 1 root wheel 777 Dec 1 20:47 snmpd.sh > -r-xr-xr-x 1 root wheel 838 Dec 1 20:47 snmptrapd.sh > -r-xr-xr-x 1 root wheel 517 Dec 22 12:59 webmin.sh > I just noticed that the new cups.sh from the ports has "PROVIDE" removed. Beech =2D-=20 =2D------------------------------------------------------------------------= =2D------------- Beech Rintoul - System Administrator - akbeech@gmail.com /"\ ASCII Ribbon Campaign | NorthWind Communications \ / - NO HTML/RTF in e-mail | 201 East 9th Avenue Ste.310 X - NO Word docs in e-mail | Anchorage, AK 99501 / \ - Please visit Alaska Paradise - http://akparadise.byethost33.com =2D------------------------------------------------------------------------= =2D------------- --nextPart4297533.FbCGkNUEcF Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQBDr8PlVq19LUoGB+MRArQbAKCCNZowooV6GQcdHHX7Dr0Zz+WUhQCfULvb L+q5kZSkdG0jukLZP3PXrjs= =7won -----END PGP SIGNATURE----- --nextPart4297533.FbCGkNUEcF-- From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 11:00:37 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33E9316A41F for ; Mon, 26 Dec 2005 11:00:37 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4E7F43D46 for ; Mon, 26 Dec 2005 11:00:36 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBQB0a9b016975 for ; Mon, 26 Dec 2005 11:00:36 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBQB0Vlr016967 for freebsd-ports@freebsd.org; Mon, 26 Dec 2005 11:00:31 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 26 Dec 2005 11:00:31 GMT Message-Id: <200512261100.jBQB0Vlr016967@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 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 11:00:37 -0000 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 problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. s - suspended The problem is not being worked on, due to lack of information or resources. 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 -- or when fixing the problem is abandoned. Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [2003/05/11] ports/52079 ports-bugs vmware3 hangs when nmdm(4) is used as COM f [2004/11/20] ports/74171 ports-bugs [panic] comms/ltmdm: Fatal trap 12: page o [2005/05/01] ports/80514 ports-bugs emulators/vmware3: vmmon_smp.ko does not o [2005/05/25] ports/81464 ports-bugs ruby-1.8.2_3 stack handling broken due to f [2005/08/18] ports/85081 ports-bugs audio/teamspeak_server dumps core on amd6 f [2005/11/02] ports/88388 ports-bugs Drupal port overwrites config on upgrade s [2005/11/03] ports/88462 ports-bugs math/GiNaC: ginsh crashes during startup f [2005/11/18] ports/89228 ports-bugs security/clamav: clamd with libunrar dies f [2005/11/18] ports/89246 ports-bugs ImageMagick Core dumping on various utili f [2005/11/18] ports/89252 ports-bugs smartmontools getting gibberish f [2005/12/14] ports/90399 ports-bugs vmware2 port not working on FreeBSD 6.0 o [2005/12/20] ports/90671 ports-bugs misc/compat4x: wrong directory is ldconfi o [2005/12/21] ports/90729 ports-bugs databases/db[0-9]*: check USE_BDB knob f [2005/12/26] ports/90913 ports-bugs [maintainer] Fix bad DISTFILES in www/jak 14 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [2003/10/02] ports/57502 ports-bugs ports that define USE_* too late s [2003/11/13] ports/59254 ports-bugs ports that write something after bsd.port s [2004/04/15] ports/65587 ports-bugs Update emulators/linux-winetools to 1.30 a [2004/05/10] ports/66476 ports-bugs [NEW PORT] misc/gaim-talkfilters: A neat s [2004/06/11] ports/67815 ports-bugs graphics/ImageMagick no longer recognizes p [2005/01/11] ports/76116 ports-bugs PORT UPDATE: graphics/lcms (with PATCH) f [2005/02/14] ports/77495 ports-bugs new port: security/sav f [2005/04/23] ports/80274 ports-bugs GDB console problem (ddd-3.3.10 with Free o [2005/05/28] ports/81598 ports-bugs [PATCH] net/cvsup-mirror: add some instal o [2005/07/20] ports/83812 ports-bugs new port, security/sguil-sensor, update t f [2005/07/22] ports/83894 ports-bugs Update port: devel/simpletest f [2005/07/23] ports/83964 ports-bugs new port: security/sguil-server, resubmis f [2005/07/24] ports/83986 ports-bugs New port www/p5-Apache2-DebugFilter f [2005/07/24] ports/83987 ports-bugs New port www/p5-Apache2-Filter-HTTPHeader o [2005/07/29] ports/84299 ports-bugs A (possible) bug in ports/Mk/bsd.ruby.mk o [2005/08/06] ports/84614 ports-bugs New port: java/eclipse-javasvn s [2005/08/11] ports/84819 ports-bugs [MAINTAINER] math/coq: enable on ia64 f [2005/09/11] ports/85985 ports-bugs [NEW PORT] mail/couriergraph: A RRDtool f f [2005/09/14] ports/86098 ports-bugs [PATCH] devel/pear-PEAR/Makefile.common: s [2005/09/21] ports/86401 ports-bugs new ports multimedia/zapping f [2005/10/12] ports/87332 ports-bugs [UPDATE] lang/ruby18: Update to 1.8.3; ta f [2005/11/02] ports/88397 ports-bugs Ruby does not upgrade properly from 1.8.2 f [2005/11/12] ports/88876 ports-bugs [patch] Update www/raqdevil to 1.0RC1 s [2005/11/12] ports/88900 ports-bugs www/flashplugin-mozilla causes Firefox to f [2005/11/15] ports/89077 ports-bugs The port lang/ruby18 upgrade to 1.8.3 has f [2005/11/16] ports/89131 ports-bugs port net/kphone One-Way audio with snd_ic f [2005/11/19] ports/89275 ports-bugs [New ports] devel/mimir, lang/elan - Elan f [2005/12/04] ports/89940 ports-bugs [PATCH] Client-only support for sysutils/ f [2005/12/07] ports/90062 ports-bugs New port: net/nepenthes (resend with shar f [2005/12/07] ports/90073 ports-bugs possible fix to unbreak biology/L-Breeder f [2005/12/07] ports/90077 ports-bugs [PATCH] devel/ode and devel/ode-devel: un f [2005/12/08] ports/90097 ports-bugs [maintainer update[ lang/mlton f [2005/12/09] ports/90147 ports-bugs [MAINTAINER UPDATE] games/quake2-data: re f [2005/12/10] ports/90208 ports-bugs Update port: devel/ocaml-ulex (upgrade to f [2005/12/11] ports/90238 ports-bugs [PATCH] unbreak samba-libsmbclient on ker f [2005/12/11] ports/90245 ports-bugs Update mesa-demos ports to version 6.4.1 o [2005/12/15] ports/90424 ports-bugs [NEW PORT] math/qalculate-kde: Very power f [2005/12/15] ports/90437 ports-bugs ftpcube (ftpcube-0.4.3_5) crashes when ch f [2005/12/18] ports/90585 ports-bugs New port: mail/rssyl A RSS/Atom plugin fo f [2005/12/18] ports/90586 ports-bugs [PATCH] graphics/libkipi: update to 0.1.2 f [2005/12/18] ports/90587 ports-bugs [PATCH] graphics/kipi-plugins: update to o [2005/12/18] ports/90619 ports-bugs [PATCH] unbreak graphics/hugin f [2005/12/19] ports/90627 ports-bugs [NEW PORTS] multimedia/quodlibet f [2005/12/20] ports/90713 ports-bugs [PATCH] japanese/{eb,ebnetd}: Take over m f [2005/12/21] ports/90737 ports-bugs update port security/rkhunter f [2005/12/22] ports/90780 ports-bugs [PATCH] print/cups-base: provide rc.d com f [2005/12/22] ports/90783 ports-bugs [patch] print/phppdflib update to 2.8 f [2005/12/22] ports/90786 ports-bugs [patch] mail/pear-Mail update to 1.1.9 f [2005/12/22] ports/90827 ports-bugs port-update: www/dansguardian-devel to 2 o [2005/12/23] ports/90840 ports-bugs New port: devel/plan9port f [2005/12/23] ports/90849 ports-bugs update port www/phpSysInfo to 2.5.1 f [2005/12/23] ports/90852 ports-bugs update port net/sipp to 1.1.r4 f [2005/12/23] ports/90860 ports-bugs Update port: graphics/p5-GD-SVG update to f [2005/12/23] ports/90866 ports-bugs [patch] graphics/diacanvas2: update to ne f [2005/12/23] ports/90867 ports-bugs [patch] devel/gaphor: update to new relea f [2005/12/26] ports/90911 ports-bugs Update: security/pear-Text_Password updat o [2005/12/26] ports/90916 ports-bugs [MAINTAINER] www/p5-Catalyst-Plugin-Autho o [2005/12/26] ports/90918 ports-bugs New port: devel/p5-Object-Signature, Gene o [2005/12/26] ports/90919 ports-bugs [NEW PORT] www/p5-WebService-NoPaste: Pos o [2005/12/26] ports/90920 ports-bugs [MAINTAINER] www/p5-Catalyst-Plugin-Sessi 60 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 11:07:53 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE71116A41F for ; Mon, 26 Dec 2005 11:07:53 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D34FE43D6D for ; Mon, 26 Dec 2005 11:05:41 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBQB5PcK019859 for ; Mon, 26 Dec 2005 11:05:25 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBQB5OEZ019853 for ports@freebsd.org; Mon, 26 Dec 2005 11:05:24 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 26 Dec 2005 11:05:24 GMT Message-Id: <200512261105.jBQB5OEZ019853@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: ports@FreeBSD.org Cc: Subject: Current problem reports assigned to you X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 11:07:53 -0000 Current FreeBSD problem reports No matches to your query From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 11:45:43 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 113AB16A41F for ; Mon, 26 Dec 2005 11:45:43 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from relay-er5.mbrd.ru (relay-er5.mbrd.ru [194.117.71.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 471BC43D53 for ; Mon, 26 Dec 2005 11:45:42 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from msd.mbrd.ru ([172.16.4.9]) by relay-er5.mbrd.ru with esmtpa (Exim 4.x) id 1EqqnJ-0009jM-M2; Mon, 26 Dec 2005 14:45:37 +0300 Message-ID: <43AFD7E1.9010302@FreeBSD.org> Date: Mon, 26 Dec 2005 14:45:37 +0300 From: Sergey Matveychuk User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org X-Enigmail-Version: 0.93.0.0 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 7bit Cc: marwan.burelle@lri.fr, holger@e-gitt.net Subject: net/mldonkey X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 11:45:43 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Note, the port is broken after ocaml update. Can somebody fix it? - -- Sem. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFDr9fhTclL2LcfYF0RAg01AJwORo+hZkcGBZAUqeL2WvvwEgGe/wCeLqJD TzHGC5a+IN3G5/lavCUTnWA= =5JPw -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 12:02:55 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5BF416A41F for ; Mon, 26 Dec 2005 12:02:55 +0000 (GMT) (envelope-from matthias.andree@gmx.de) Received: from mail.dt.e-technik.uni-dortmund.de (krusty.dt.E-Technik.uni-dortmund.de [129.217.163.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31B1943D7B for ; Mon, 26 Dec 2005 12:02:36 +0000 (GMT) (envelope-from matthias.andree@gmx.de) Received: from localhost (localhost [127.0.0.1]) by mail.dt.e-technik.uni-dortmund.de (Postfix) with ESMTP id 5DF3344128; Mon, 26 Dec 2005 13:02:35 +0100 (CET) Received: from mail.dt.e-technik.uni-dortmund.de ([127.0.0.1]) by localhost (krusty [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31268-01; Mon, 26 Dec 2005 13:02:33 +0100 (CET) Received: from m2a2.dyndns.org (p50912F23.dip0.t-ipconnect.de [80.145.47.35]) by mail.dt.e-technik.uni-dortmund.de (Postfix) with ESMTP id B32BC440A8; Mon, 26 Dec 2005 13:02:33 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by merlin.emma.line.org (Postfix) with ESMTP id 19B58200565; Mon, 26 Dec 2005 13:02:33 +0100 (CET) Received: from m2a2.dyndns.org ([127.0.0.1]) by localhost (m2a2.dyndns.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24465-10; Mon, 26 Dec 2005 13:02:31 +0100 (CET) Received: by merlin.emma.line.org (Postfix, from userid 500) id 0C742200600; Mon, 26 Dec 2005 13:02:31 +0100 (CET) From: Matthias Andree To: dirk.meyer@dinoex.sub.org (Dirk Meyer) In-Reply-To: (Dirk Meyer's message of "Mon, 26 Dec 2005 09:36:51 +0100") References: <20051223090639.GA18118@merlin.emma.line.org> X-PGP-Key: http://home.pages.de/~mandree/keys/GPGKEY.asc Date: Mon, 26 Dec 2005 13:02:30 +0100 Message-ID: User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/21.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Scanned: amavisd-new at dt.e-technik.uni-dortmund.de Cc: freebsd-ports@freebsd.org Subject: Re: Can we discontinue the databases/db2 port? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 12:02:56 -0000 dirk.meyer@dinoex.sub.org (Dirk Meyer) writes: > Hallo Matthias Andree, > >> after a recent bug report against various databases/db* ports that asked >> for consistency across these ports, I checked who is still using the >> ancient (not to say obsolete) db2-2.7.7 port. I found these five >> port|summary|maintainer tuples: > > mail/sendmail supports database/db2 too. I don't care unless it's default. -- Matthias Andree From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 12:26:31 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A54E916A41F for ; Mon, 26 Dec 2005 12:26:31 +0000 (GMT) (envelope-from burelle@lri.fr) Received: from smtp5-g19.free.fr (smtp5-g19.free.fr [212.27.42.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EA3243D53 for ; Mon, 26 Dec 2005 12:26:28 +0000 (GMT) (envelope-from burelle@lri.fr) Received: from melkor.kh405.net (plb95-2-82-236-78-224.fbx.proxad.net [82.236.78.224]) by smtp5-g19.free.fr (Postfix) with ESMTP id 23CDB17027 for ; Mon, 26 Dec 2005 13:26:28 +0100 (CET) Received: from melkor (localhost [127.0.0.1]) by melkor.kh405.net (Postfix) with ESMTP id 70CB66694 for ; Mon, 26 Dec 2005 13:26:30 +0100 (CET) Date: Mon, 26 Dec 2005 13:26:29 +0100 From: Marwan Burelle To: freebsd-ports@freebsd.org Message-ID: <20051226132629.455bedaf@melkor> In-Reply-To: <43AFD7E1.9010302@FreeBSD.org> References: <43AFD7E1.9010302@FreeBSD.org> X-Mailer: Sylpheed-Claws 1.9.100 (GTK+ 2.8.9; i386-portbld-freebsd6.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: net/mldonkey X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 12:26:31 -0000 On Mon, 26 Dec 2005 14:45:37 +0300 Sergey Matveychuk wrote: > Note, the port is broken after ocaml update. > Can somebody fix it? The problem is not only located to the ports, but to MLDonkey itself (there were change in OCaml 3.09 syntax that impact some apps.) Unless there's a new release of MLDonkey well fitted for OCaml 3.09, there's no solution now (maybe take a deep breath and try to understand Maxence's code to locate the changes to do, but ... ) -- Marwan Burelle, http://www.lri.fr/~burelle ( burelle@lri.fr | Marwan.Burelle@ens.fr ) http://www.cduce.org From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 12:32:12 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEA7116A41F for ; Mon, 26 Dec 2005 12:32:12 +0000 (GMT) (envelope-from burelle@lri.fr) Received: from smtp6-g19.free.fr (smtp6-g19.free.fr [212.27.42.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26D5543D62 for ; Mon, 26 Dec 2005 12:32:12 +0000 (GMT) (envelope-from burelle@lri.fr) Received: from melkor.kh405.net (plb95-2-82-236-78-224.fbx.proxad.net [82.236.78.224]) by smtp6-g19.free.fr (Postfix) with ESMTP id 7186917FD6 for ; Mon, 26 Dec 2005 13:32:11 +0100 (CET) Received: from melkor (localhost [127.0.0.1]) by melkor.kh405.net (Postfix) with ESMTP id C48DD6694 for ; Mon, 26 Dec 2005 13:32:13 +0100 (CET) Date: Mon, 26 Dec 2005 13:32:12 +0100 From: Marwan Burelle To: freebsd-ports@freebsd.org Message-ID: <20051226133212.48cdfb16@melkor> In-Reply-To: <43AFD7E1.9010302@FreeBSD.org> References: <43AFD7E1.9010302@FreeBSD.org> X-Mailer: Sylpheed-Claws 1.9.100 (GTK+ 2.8.9; i386-portbld-freebsd6.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: net/mldonkey X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 12:32:12 -0000 On Mon, 26 Dec 2005 14:45:37 +0300 Sergey Matveychuk wrote: > Note, the port is broken after ocaml update. > Can somebody fix it? The problem is not only located to the ports, but to MLDonkey itself (there were change in OCaml 3.09 syntax that impact some apps.) Unless there's a new release of MLDonkey well fitted for OCaml 3.09, there's no solution now (maybe take a deep breath and try to understand Maxence's code to locate the changes to do, but ... ) -- Marwan Burelle, http://www.lri.fr/~burelle ( burelle@lri.fr | Marwan.Burelle@ens.fr ) http://www.cduce.org From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 13:46:29 2005 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1844F16A41F for ; Mon, 26 Dec 2005 13:46:29 +0000 (GMT) (envelope-from mad@madpilot.net) Received: from fe-4a.inet.it (fe-4a.inet.it [213.92.5.107]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1478343D58 for ; Mon, 26 Dec 2005 13:46:27 +0000 (GMT) (envelope-from mad@madpilot.net) Received: from 81-174-34-189.f5.ngi.it ([::ffff:81.174.34.189]) by fe-4a.inet.it via I-SMTP-5.2.3-521 id ::ffff:81.174.34.189+hDEaFCqON9C; Mon, 26 Dec 2005 14:46:26 +0100 Received: (qmail 13414 invoked from network); 26 Dec 2005 14:46:21 +0100 Received: from wedge.madpilot.net (192.168.13.11) by madpilot.net with SMTP; 26 Dec 2005 13:46:21 -0000 Received: from wedge.madpilot.net (localhost.madpilot.net [127.0.0.1]) by wedge.madpilot.net (8.13.4/8.13.4) with ESMTP id jBQDkKdT034463; Mon, 26 Dec 2005 14:46:20 +0100 (CET) (envelope-from mad@wedge.madpilot.net) Received: (from mad@localhost) by wedge.madpilot.net (8.13.4/8.13.4/Submit) id jBQDkKJL034462; Mon, 26 Dec 2005 14:46:20 +0100 (CET) (envelope-from mad) Date: Mon, 26 Dec 2005 14:46:20 +0100 From: Guido Falsi To: Sergey Matveychuk Message-ID: <20051226134620.GA34340@wedge.madpilot.net> References: <43AFD7E1.9010302@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <43AFD7E1.9010302@FreeBSD.org> X-Operating-System: FreeBSD 6.0-STABLE X-PGP-Key: http://www.madpilot.net/~mad/PGP-public-key.asc User-Agent: Mutt/1.5.11 Cc: marwan.burelle@lri.fr, holger@e-gitt.net, freebsd-ports@FreeBSD.org Subject: Re: net/mldonkey X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 13:46:29 -0000 On Mon, Dec 26, 2005 at 02:45:37PM +0300, Sergey Matveychuk wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Note, the port is broken after ocaml update. > Can somebody fix it? You can use net/mldonkey-devel as a substiute. It also has lots more features. -- Guido Falsi From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 14:27:08 2005 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 69E1916A420; Mon, 26 Dec 2005 14:27:08 +0000 (GMT) (envelope-from spadge@fromley.net) Received: from mta08-winn.ispmail.ntl.com (mta08-winn.ispmail.ntl.com [81.103.221.48]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8C3E43D5C; Mon, 26 Dec 2005 14:27:06 +0000 (GMT) (envelope-from spadge@fromley.net) Received: from aamta10-winn.ispmail.ntl.com ([81.103.221.35]) by mta08-winn.ispmail.ntl.com with ESMTP id <20051226142704.ZSLW17804.mta08-winn.ispmail.ntl.com@aamta10-winn.ispmail.ntl.com>; Mon, 26 Dec 2005 14:27:04 +0000 Received: from tobermory.home ([82.18.11.31]) by aamta10-winn.ispmail.ntl.com with ESMTP id <20051226142704.XFDR1068.aamta10-winn.ispmail.ntl.com@tobermory.home>; Mon, 26 Dec 2005 14:27:04 +0000 Received: from [192.168.124.185] (unknown [192.168.124.185]) by tobermory.home (Postfix) with ESMTP id 1FCE9A6C05; Mon, 26 Dec 2005 14:27:02 +0000 (GMT) Message-ID: <43AFFDBF.4040206@fromley.net> Date: Mon, 26 Dec 2005 14:27:11 +0000 From: Spadge User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Guido Falsi References: <43AFD7E1.9010302@FreeBSD.org> <20051226134620.GA34340@wedge.madpilot.net> In-Reply-To: <20051226134620.GA34340@wedge.madpilot.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: marwan.burelle@lri.fr, holger@e-gitt.net, freebsd-ports@FreeBSD.org, Sergey Matveychuk Subject: Re: net/mldonkey X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 14:27:08 -0000 Guido Falsi wrote: > On Mon, Dec 26, 2005 at 02:45:37PM +0300, Sergey Matveychuk wrote: > >>-----BEGIN PGP SIGNED MESSAGE----- >>Hash: SHA1 >> >>Note, the port is broken after ocaml update. >>Can somebody fix it? > > > You can use net/mldonkey-devel as a substiute. It also has lots more > features. > AFAIK, all current mldonkey versions still run off ocaml3.08, which is binary-incompatible with the current 3.09 in ports. Your only chance is likely to be to compile this one manually, which gives you the option of DLing and using a 3.08 mini-install and creating a static binary. And the good news is: the developers have been working hard of late, and it shows; the compile process of mldonkey is *so* much easier these days :) -- Spadge "Intoccabile" www.fromley.com From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 16:03:46 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51E8416A424 for ; Mon, 26 Dec 2005 16:03:46 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from out5.smtp.messagingengine.com (out5.smtp.messagingengine.com [66.111.4.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3598C43D70 for ; Mon, 26 Dec 2005 16:03:36 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from frontend1.internal (mysql-sessions.internal [10.202.2.149]) by frontend1.messagingengine.com (Postfix) with ESMTP id 5FD69D2CFEB for ; Mon, 26 Dec 2005 11:03:35 -0500 (EST) Received: from frontend2.messagingengine.com ([10.202.2.151]) by frontend1.internal (MEProxy); Mon, 26 Dec 2005 11:03:35 -0500 X-Sasl-enc: q3F+7UedZsCpSiC9vvlHCg6UT/W7blbD374e67/IjZx5 1135613014 Received: from gumby.localdomain (88-104-192-109.dynamic.dsl.as9105.com [88.104.192.109]) by frontend2.messagingengine.com (Postfix) with ESMTP id 9DAFE57146D for ; Mon, 26 Dec 2005 11:03:32 -0500 (EST) From: RW To: freebsd-ports@freebsd.org Date: Mon, 26 Dec 2005 16:03:17 +0000 User-Agent: KMail/1.8.3 References: <43AFD7E1.9010302@FreeBSD.org> <20051226134620.GA34340@wedge.madpilot.net> <43AFFDBF.4040206@fromley.net> In-Reply-To: <43AFFDBF.4040206@fromley.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200512261603.31525.list-freebsd-2004@morbius.sent.com> Subject: Re: net/mldonkey X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 16:03:46 -0000 On Monday 26 December 2005 14:27, Spadge wrote: > Guido Falsi wrote: > > On Mon, Dec 26, 2005 at 02:45:37PM +0300, Sergey Matveychuk wrote: > >>-----BEGIN PGP SIGNED MESSAGE----- > >>Hash: SHA1 > >> > >>Note, the port is broken after ocaml update. > >>Can somebody fix it? > > > > You can use net/mldonkey-devel as a substiute. It also has lots more > > features. > > AFAIK, all current mldonkey versions still run off ocaml3.08, which is > binary-incompatible with the current 3.09 in ports. according to UPDATING mldonkey-devel was patched for 3.09 a few weeks ago. > Your only chance is likely to be to compile this one manually, which > gives you the option of DLing and using a 3.08 mini-install and creating > a static binary. If it's already installed, I don't see the point in doing anything, at least for the moment. mldonkey is not listed as a vulnerable port by portaudit, and ocaml is only a build dependence of mldonkey. There is no binary-incompatibility here, my mldonkey is working fine. From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 16:04:32 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED7E516A41F for ; Mon, 26 Dec 2005 16:04:32 +0000 (GMT) (envelope-from pawciobiel@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.197]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1892843D68 for ; Mon, 26 Dec 2005 16:04:19 +0000 (GMT) (envelope-from pawciobiel@gmail.com) Received: by zproxy.gmail.com with SMTP id f1so1135398nzc for ; Mon, 26 Dec 2005 08:04:18 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:x-accept-language:mime-version:to:subject:content-type:content-transfer-encoding; b=dQqnur1NJbRfxOMdC9sm+yvS2OHsE60azoShFK7hh5/O/51o/DZkbvxrhD+oc3MA+I314n0OUI/x40yWjCIfiSI9a7cNx0BPShJ5/8J25krT/X2SWpO54ho+eg/Fq0TPLZfUU4xSURFMtask1qYLId4PLe7sWLuyNnVFzOz41A4= Received: by 10.64.181.12 with SMTP id d12mr2261693qbf; Mon, 26 Dec 2005 08:04:18 -0800 (PST) Received: from ?192.168.1.102? ( [82.44.103.144]) by mx.gmail.com with ESMTP id e13sm1102369qbe.2005.12.26.08.04.17; Mon, 26 Dec 2005 08:04:17 -0800 (PST) Message-ID: <43B01478.4010908@gmail.com> Date: Mon, 26 Dec 2005 16:04:08 +0000 From: Pawel User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051216) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: What flags package was compiled with? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 16:04:33 -0000 Hi How can I know what make flags package was compiled with, before and after I decide to install it using "pkg_add -r pkgname"? -- Regards, Pawel From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 16:29:37 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00CDB16A41F for ; Mon, 26 Dec 2005 16:29:37 +0000 (GMT) (envelope-from gerard@seibercom.net) Received: from smtp3.suscom.net (smtp3.suscom.net [64.78.119.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1517543D5E for ; Mon, 26 Dec 2005 16:29:36 +0000 (GMT) (envelope-from gerard@seibercom.net) Received: from localhost (unknown [127.0.0.1]) by smtp3.suscom.net (Postfix) with ESMTP id 29475210186 for ; Mon, 26 Dec 2005 11:29:34 -0500 (EST) Received: from smtp3.suscom.net ([127.0.0.1]) by localhost (smtp3.suscom.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 04939-02-76 for ; Mon, 26 Dec 2005 11:29:26 -0500 (EST) Received: from seibercom.net (ip148.217.susc.suscom.net [216.45.217.148]) by smtp3.suscom.net (Postfix) with SMTP id 8474D21017F for ; Mon, 26 Dec 2005 11:29:26 -0500 (EST) Received: from [192.168.0.2] (//gerard [192.168.0.2]) by seibercom.net (8.13.4/8.13.4) with ESMTP id jBQGTRw0094116 for ; Mon, 26 Dec 2005 11:29:27 -0500 (EST) (envelope-from gerard@seibercom.net) Date: Mon, 26 Dec 2005 11:29:30 -0500 From: Gerard To: ports@FreeBSD.org Sender: gerard@seibercom.net Organization: Seibercom.NET X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(gxJxxcR nSNPNr*/^~StawWU9KDJ-CT0k$f#@t2^K&BS_f|?ZV/.7Q Message-Id: <20051226111612.3579.GERARD@seibercom.net> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Mailer: Becky! ver. 2.24.01 [en] X-Virus-Scanned: amavisd-new at suscom.net Cc: Subject: Error Updating Ports Index X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gerard@seibercom.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 16:29:37 -0000 I received the following message while attempting to run 'portsdb -Uu' Updating the ports index ... Generating INDEX.tmp - please wait..metacity-t= hemes-20040306_2: "/usr/ports/x11-themes/metacity-theme-alloy-c" non-existe= nt -- dependency list incomplete =3D=3D=3D> x11-themes/metacity-themes failed *** Error code 1 1 error ******************************************************************** Before reporting this error, verify that you are running a supported version of FreeBSD (see http://www.FreeBSD.org/ports/) and that you have a complete and up-to-date ports collection. (INDEX builds are not supported with partial or out-of-date ports collections -- in particular, if you are using cvsup, you must cvsup the "ports-all" collection, and have no "refuse" files.) If that is the case, then report the failure to ports@FreeBSD.org together with relevant details of your ports configuration (including FreeBSD version, your architecture, your environment, and your /etc/make.conf settings, especially compiler flags and WITH/WITHOUT settings). Note: the latest pre-generated version of INDEX may be fetched automatically with "make fetchindex". ******************************************************************** *** Error code 1 Stop in /usr/ports. *** Error code 1 Stop in /usr/ports. failed to generate INDEX! This is my environment. ********** ENVIRONMENT ********** BASH=3D/usr/local/bin/bash BASHENV=3D/home/ges/.bashrc BASH_ARGC=3D() BASH_ARGV=3D() BASH_LINENO=3D() BASH_SOURCE=3D() BASH_VERSINFO=3D([0]=3D"3" [1]=3D"00" [2]=3D"16" [3]=3D"1" [4]=3D"release" = [5]=3D"i386-portbld-freebsd5.4") BASH_VERSION=3D'3.00.16(1)-release' BLOCKSIZE=3DK COLUMNS=3D125 DIRSTACK=3D() EDITOR=3Dpico EUID=3D1001 FTP_PASSIVE_MODE=3DYES GROUPS=3D() HISTCONTROL=3Dignoreboth:erasedups HISTFILE=3D/home/ges/.bash_history HISTFILESIZE=3D500 HISTIGNORE=3Dls:exit:cd HISTSIZE=3D500 HOME=3D/home/ges HOSTNAME=3Dseibercom.net HOSTTYPE=3Di386 IFS=3D$' \t\n' IGNOREEOF=3D10 LINES=3D46 LOGNAME=3Dges MACHTYPE=3Di386-portbld-freebsd5.4 MAIL=3D/var/mail/ges MAILCHECK=3D60 OPTERR=3D1 OPTIND=3D1 OSTYPE=3Dfreebsd5.4 PAGER=3Dless PATH=3D/sbin:/bin:/usr/local/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/lo= cal/libexec:/usr/games:/usr/X11R6/bin:/home/ges/bin PIPESTATUS=3D([0]=3D"0") PPID=3D94076 PS1=3D'\u@\h \w $ ' PS2=3D'> ' PS4=3D'+ ' PWD=3D/home/ges SHELL=3D/usr/local/bin/bash SHELLOPTS=3Dbraceexpand:emacs:hashall:histexpand:ignoreeof:interactive-comm= ents:monitor:noclobber:nounset SHLVL=3D1 SSH_CLIENT=3D'216.45.217.148 33367 22' SSH_CONNECTION=3D'216.45.217.148 33367 192.168.0.4 22' SSH_TTY=3D/dev/ttyp0 TERM=3Dxterm UID=3D1001 USER=3Dges _=3D-a BASH=3D/usr/local/bin/bash BASHENV=3D/home/ges/.bashrc BASH_ARGC=3D() BASH_ARGV=3D() BASH_LINENO=3D() BASH_SOURCE=3D() BASH_VERSINFO=3D([0]=3D"3" [1]=3D"00" [2]=3D"16" [3]=3D"1" [4]=3D"release" = [5]=3D"i386-portbld-freebsd5.4") BASH_VERSION=3D'3.00.16(1)-release' BLOCKSIZE=3DK COLUMNS=3D125 DIRSTACK=3D() EDITOR=3Dpico EUID=3D1001 FTP_PASSIVE_MODE=3DYES GROUPS=3D() HISTCONTROL=3Dignoreboth:erasedups HISTFILE=3D/home/ges/.bash_history HISTFILESIZE=3D500 HISTIGNORE=3Dls:exit:cd HISTSIZE=3D500 HOME=3D/home/ges HOSTNAME=3Dseibercom.net HOSTTYPE=3Di386 IFS=3D$' \t\n' IGNOREEOF=3D10 LINES=3D46 LOGNAME=3Dges MACHTYPE=3Di386-portbld-freebsd5.4 MAIL=3D/var/mail/ges MAILCHECK=3D60 OPTERR=3D1 OPTIND=3D1 OSTYPE=3Dfreebsd5.4 PAGER=3Dless PATH=3D/sbin:/bin:/usr/local/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/lo= cal/libexec:/usr/games:/usr/X11R6/bin:/home/ges/bin PIPESTATUS=3D([0]=3D"0") PPID=3D94076 PS1=3D'\u@\h \w $ ' PS2=3D'> ' PS4=3D'+ ' PWD=3D/home/ges SHELL=3D/usr/local/bin/bash SHELLOPTS=3Dbraceexpand:emacs:hashall:histexpand:ignoreeof:interactive-comm= ents:monitor:noclobber:nounset SHLVL=3D1 SSH_CLIENT=3D'216.45.217.148 33367 22' SSH_CONNECTION=3D'216.45.217.148 33367 192.168.0.4 22' SSH_TTY=3D/dev/ttyp0 TERM=3Dxterm UID=3D1001 USER=3Dges ********** END ENVIRONMENT ********** This is the make.conf file. ALWAYS_CHECK_MAKE=3Dtrue CPUTYPE=3Dpentium2 BATCH=3Dyes CFLAGS=3D -O2 -pipe MAKE_SHELL?=3Dsh COPTFLAGS=3D -O2 -pipe NOPROFILE=3D true #************************************** # Added by me for Mysql Build ###################### #port specific options ###################### =2Eif ${.CURDIR:M*/databases/mysql50-server} BUILD_OPTIMIZED=3Dyes =2Eendif # =2Eif ${.CURDIR:M*/print/apsfilter} BATCH=3Dyes APSFILTER_ALL=3Dyes =2Eendif # # # Custom Entries For Apache2 # =2Eif ${.CURDIR:M*/www/apache} WITH_DBM=3Dbdb WITH_BERKELEYDB=3Ddb43 =2Eendif # # Add SMTP AUTH support to Sendmail #SENDMAIL_CFLAGS+=3D -I/usr/local/include -DSASL=3D2 #SENDMAIL_LDFLAGS+=3D -L/usr/local/lib #SENDMAIL_LDADD+=3D -lsasl2 # # added by use.perl 2005-12-23 07:21:54 PERL_VER=3D5.8.7 PERL_VERSION=3D5.8.7 If you need any further information please contact me. --=20 Gerard Seibert gerard@seibercom.net From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 16:39:53 2005 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B766216A41F; Mon, 26 Dec 2005 16:39:53 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from hood.oook.cz (hood.oook.cz [195.250.137.134]) by mx1.FreeBSD.org (Postfix) with ESMTP id A94C943D55; Mon, 26 Dec 2005 16:39:52 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from ikaros.oook.cz (localhost [127.0.0.1]) by hood.oook.cz (8.13.4/8.13.4) with ESMTP id jBQGdpMj084033 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 26 Dec 2005 17:39:51 +0100 (CET) (envelope-from pav@FreeBSD.org) Received: (from pav@localhost) by ikaros.oook.cz (8.13.4/8.13.4/Submit) id jBQGdoVm084032; Mon, 26 Dec 2005 17:39:50 +0100 (CET) (envelope-from pav@FreeBSD.org) X-Authentication-Warning: ikaros.oook.cz: pav set sender to pav@FreeBSD.org using -f From: Pav Lucistnik To: Colin Percival In-Reply-To: <43AF5BD8.9060000@freebsd.org> References: <43AF5BD8.9060000@freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-eDGIwLrQkNtVLWLMh93L" Date: Mon, 26 Dec 2005 17:39:50 +0100 Message-Id: <1135615190.83838.0.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.4.2.1 FreeBSD GNOME Team Port Cc: freebsd-ports@FreeBSD.org Subject: Re: [Fwd: 4.x make describe FAILURE] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pav@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 16:39:53 -0000 --=-eDGIwLrQkNtVLWLMh93L Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Colin Percival p=ED=B9e v ne 25. 12. 2005 v 18:56 -0800: >=20 > -------- Original Message -------- > Subject: 4.x make describe FAILURE > Date: Mon, 26 Dec 2005 01:55:20 GMT > From: Portsnap buildbox > To: Colin Percival >=20 >=20 > metacity-themes-20040306_2: "/usr/ports/x11-themes/metacity-theme-alloy-c= " > non-existent -- dependency list incomplete > =3D=3D=3D> x11-themes/metacity-themes failed > *** Error code 1 Screwed up nicely, didn't I? Lesson learned is not to commit after midnight. --=20 Pav Lucistnik Time flies like an arrow. Fruit flies like a banana. --=-eDGIwLrQkNtVLWLMh93L Content-Type: application/pgp-signature; name=signature.asc Content-Description: Toto je =?iso-8859-2?Q?digit=E1ln=EC?= =?ISO-8859-1?Q?_podepsan=E1?= =?iso-8859-2?Q?_=E8=E1st?= =?ISO-8859-1?Q?_zpr=E1vy?= -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQBDsBzWntdYP8FOsoIRAsfOAJ42tSbp3G4JRi9VuAzgHBmn0kXkZQCgmlZR H1+n7iJ5kMdyZePA49+wUTU= =2Itu -----END PGP SIGNATURE----- --=-eDGIwLrQkNtVLWLMh93L-- From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 16:47:21 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FB6516A41F for ; Mon, 26 Dec 2005 16:47:21 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45C8543D45 for ; Mon, 26 Dec 2005 16:47:21 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 226921A3C1B; Mon, 26 Dec 2005 08:47:21 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 3EE875146A; Mon, 26 Dec 2005 11:47:20 -0500 (EST) Date: Mon, 26 Dec 2005 11:47:20 -0500 From: Kris Kennaway To: Gerard Message-ID: <20051226164719.GA16292@xor.obsecurity.org> References: <20051226111612.3579.GERARD@seibercom.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="5vNYLRcllDrimb99" Content-Disposition: inline In-Reply-To: <20051226111612.3579.GERARD@seibercom.net> User-Agent: Mutt/1.4.2.1i Cc: ports@FreeBSD.org Subject: Re: Error Updating Ports Index X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 16:47:21 -0000 --5vNYLRcllDrimb99 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, Dec 26, 2005 at 11:29:30AM -0500, Gerard wrote: > I received the following message while attempting to run 'portsdb -Uu' Yes, see other automated mails sent to this list. Kris P.S. One of them says that the error has already been fixed. --5vNYLRcllDrimb99 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDsB6XWry0BWjoQKURAvlZAJ9NLkCkkQCg8Z5AgznMUAP8Y/RubwCgndA/ FlIYZJXzBzHyMAd7l9e6VWI= =UXYp -----END PGP SIGNATURE----- --5vNYLRcllDrimb99-- From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 16:49:49 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9BDF16A41F for ; Mon, 26 Dec 2005 16:49:49 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3101443D81 for ; Mon, 26 Dec 2005 16:49:34 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 18FF31A3C1C; Mon, 26 Dec 2005 08:49:32 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 609265146A; Mon, 26 Dec 2005 11:49:31 -0500 (EST) Date: Mon, 26 Dec 2005 11:49:31 -0500 From: Kris Kennaway To: Pawel Message-ID: <20051226164931.GB16292@xor.obsecurity.org> References: <43B01478.4010908@gmail.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="OwLcNYc0lM97+oe1" Content-Disposition: inline In-Reply-To: <43B01478.4010908@gmail.com> User-Agent: Mutt/1.4.2.1i Cc: freebsd-ports@freebsd.org Subject: Re: What flags package was compiled with? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 16:49:49 -0000 --OwLcNYc0lM97+oe1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, Dec 26, 2005 at 04:04:08PM +0000, Pawel wrote: > Hi > How can I know what make flags package was compiled with, > before and after I decide to install it using "pkg_add -r pkgname"? This information is not directly recorded, although sometimes you can infer it from the list of dependencies. Kris --OwLcNYc0lM97+oe1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDsB8aWry0BWjoQKURAn/AAKDLQo3xfS+jXTL1BlhCjlOS2Se1oACg2WUc ZGiJyaGeQwVwlQRfyW5ciHk= =i/FV -----END PGP SIGNATURE----- --OwLcNYc0lM97+oe1-- From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 17:14:18 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 675D816A41F for ; Mon, 26 Dec 2005 17:14:18 +0000 (GMT) (envelope-from andy@siliconlandmark.com) Received: from lexi.siliconlandmark.com (lexi.siliconlandmark.com [209.69.98.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4081C43D82 for ; Mon, 26 Dec 2005 17:14:13 +0000 (GMT) (envelope-from andy@siliconlandmark.com) Received: from lexi.siliconlandmark.com (localhost [127.0.0.1]) by lexi.siliconlandmark.com (8.13.3/8.13.3) with ESMTP id jBQHE6Dk095494 for ; Mon, 26 Dec 2005 12:14:06 -0500 (EST) (envelope-from andy@siliconlandmark.com) Received: from localhost (andy@localhost) by lexi.siliconlandmark.com (8.13.3/8.13.3/Submit) with ESMTP id jBQHE6uO095491 for ; Mon, 26 Dec 2005 12:14:06 -0500 (EST) (envelope-from andy@siliconlandmark.com) X-Authentication-Warning: lexi.siliconlandmark.com: andy owned process doing -bs Date: Mon, 26 Dec 2005 12:14:06 -0500 (EST) From: Andre Guibert de Bruet To: ports@freebsd.org Message-ID: <20051226112327.G68523@lexi.siliconlandmark.com> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-2126861092-1135617246=:68523" X-Information: Please contact the ISP for more information X-SL-MailScanner: Found to be clean X-SL-SpamCheck: not spam, SpamAssassin (score=-2.599, required 6, autolearn=not spam, BAYES_00 -2.60) X-MailScanner-From: andy@siliconlandmark.com Cc: Subject: [PATCH] /etc/rc: WARNING: $compat5x_enable is not set properly - see rc.conf(5). X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 17:14:18 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --0-2126861092-1135617246=:68523 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Hi, Earlier today I upgraded my desktop (Base system and ports) from an October 19th version of CURRENT to: FreeBSD bling.properkernel.com 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Mon Dec 26 10:54:45 EST 2005 root@bling.properkernel.com:/usr/obj/usr/src/sys/BLING i386 During startup, I am now seeing the following message: /etc/rc: WARNING: $compat5x_enable is not set properly - see rc.conf(5). I believe this message is saying that the compat5x-i386 package now requires a value to be set in the compat5x_enable variable. I attached a patch that fixes the lack of a default value for this variable in /usr/local/etc/rc.d/compat5x.sh (It can be found online as well at http://bling.properkernel.com/freebsd/compat5x.rc.d.patch ) Could this be reviewed and committed? Thanks, Andy /* Andre Guibert de Bruet * 6f43 6564 7020 656f 2e74 4220 7469 6a20 */ /* Code poet / Sysadmin * 636f 656b 2e79 5320 7379 6461 696d 2e6e */ /* GSM: +1 734 846 8758 * 5520 494e 2058 6c73 7565 6874 002e 0000 */ /* WWW: siliconlandmark.com * Tormenting bytes since 1980. */ --0-2126861092-1135617246=:68523 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=compat5x.rc.d.patch Content-Transfer-Encoding: BASE64 Content-ID: <20051226121406.X68523@lexi.siliconlandmark.com> Content-Description: Content-Disposition: attachment; filename=compat5x.rc.d.patch LS0tIGNvbXBhdDV4LnNoLm9yaWcJTW9uIERlYyAyNiAxMjowMjo1MyAyMDA1 DQorKysgY29tcGF0NXguc2gJTW9uIERlYyAyNiAxMjowNDo1NCAyMDA1DQpA QCAtMTAsNiArMTAsOCBAQA0KICMgY29tcGF0NXhfZW5hYmxlPSJZRVMiDQog Iw0KIA0KK2NvbXBhdDV4X2VuYWJsZT0ke2NvbXBhdDV4X2VuYWJsZS0iTk8i fQ0KKw0KIC4gL2V0Yy9yYy5zdWJyDQogDQogbmFtZT1jb21wYXQ1eA0K --0-2126861092-1135617246=:68523-- From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 19:05:30 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3EE1316A41F for ; Mon, 26 Dec 2005 19:05:30 +0000 (GMT) (envelope-from pawciobiel@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 846EB43D53 for ; Mon, 26 Dec 2005 19:05:29 +0000 (GMT) (envelope-from pawciobiel@gmail.com) Received: by zproxy.gmail.com with SMTP id 34so1135433nzf for ; Mon, 26 Dec 2005 11:05:28 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:x-accept-language:mime-version:to:subject:references:in-reply-to:content-type:content-transfer-encoding; b=cunmnCLMdJLWtUkicv5tlcSJHt/o9C72jRFhfBp5lffICLd9KX7uIVDfsGvsxc2/9WEYMpC7txPZOIkVPyorCgoQRZ22ZShVZg0edx8ApDjfQtDR7/jLrt9UNQP1cMJGjAW5ArggIgmtUWi/f2SuwZuKxruai1tKtaoTqs9uOEc= Received: by 10.65.200.7 with SMTP id c7mr2385475qbq; Mon, 26 Dec 2005 11:05:28 -0800 (PST) Received: from ?192.168.1.102? ( [82.44.103.144]) by mx.gmail.com with ESMTP id q15sm2245696qbq.2005.12.26.11.05.26; Mon, 26 Dec 2005 11:05:26 -0800 (PST) Message-ID: <43B03EEC.6050400@gmail.com> Date: Mon, 26 Dec 2005 19:05:16 +0000 From: Pawel User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051216) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <43B01478.4010908@gmail.com> <20051226164931.GB16292@xor.obsecurity.org> In-Reply-To: <20051226164931.GB16292@xor.obsecurity.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: What flags package was compiled with? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 19:05:30 -0000 Kris Kennaway wrote: > This information is not directly recorded, although sometimes you can > infer it from the list of dependencies. Thanks But in general, packages have been compiled with "default" port's Makefile flags. Is that correct? Pawel From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 21:02:03 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9ECE516A41F for ; Mon, 26 Dec 2005 21:02:03 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from out5.smtp.messagingengine.com (out5.smtp.messagingengine.com [66.111.4.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 307DD43D5D for ; Mon, 26 Dec 2005 21:02:03 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from frontend1.internal (mysql-sessions.internal [10.202.2.149]) by frontend1.messagingengine.com (Postfix) with ESMTP id 69A16D2B3B5 for ; Mon, 26 Dec 2005 16:02:01 -0500 (EST) Received: from frontend2.messagingengine.com ([10.202.2.151]) by frontend1.internal (MEProxy); Mon, 26 Dec 2005 16:02:01 -0500 X-Sasl-enc: SV9WRkEx5JIXz+4Uc7rFsZcWrjHZXrZZ1ZU6UZKNwAz6 1135630920 Received: from gumby.localdomain (88-104-192-109.dynamic.dsl.as9105.com [88.104.192.109]) by frontend2.messagingengine.com (Postfix) with ESMTP id 3E49057146D for ; Mon, 26 Dec 2005 16:02:00 -0500 (EST) From: RW To: freebsd-ports@freebsd.org Date: Mon, 26 Dec 2005 21:01:58 +0000 User-Agent: KMail/1.8.3 References: <20051226112327.G68523@lexi.siliconlandmark.com> In-Reply-To: <20051226112327.G68523@lexi.siliconlandmark.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200512262101.59895.list-freebsd-2004@morbius.sent.com> Subject: Re: [PATCH] /etc/rc: WARNING: $compat5x_enable is not set properly - see rc.conf(5). X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 21:02:03 -0000 On Monday 26 December 2005 17:14, Andre Guibert de Bruet wrote: > During startup, I am now seeing the following message: > /etc/rc: WARNING: $compat5x_enable is not set properly - see rc.conf(5). > > I believe this message is saying that the compat5x-i386 package now > requires a value to be set in the compat5x_enable variable. > > I attached a patch that fixes the lack of a default value for this > variable in /usr/local/etc/rc.d/compat5x.sh (It can be found online as > well at http://bling.properkernel.com/freebsd/compat5x.rc.d.patch ) Should this not default to "YES"? compat5x is a library dependence, why should a library dependence need to be turned-on in rc.conf? From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 22:19:55 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4637D16A41F for ; Mon, 26 Dec 2005 22:19:55 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mail2.fluidhosting.com [204.14.90.12]) by mx1.FreeBSD.org (Postfix) with SMTP id A7BB743D46 for ; Mon, 26 Dec 2005 22:19:54 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 55344 invoked by uid 399); 26 Dec 2005 22:19:53 -0000 Received: from localhost (HELO ?192.168.1.101?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 26 Dec 2005 22:19:53 -0000 Message-ID: <43B06C88.1050403@FreeBSD.org> Date: Mon, 26 Dec 2005 14:19:52 -0800 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 1.5 (X11/20051203) MIME-Version: 1.0 To: RW References: <20051226112327.G68523@lexi.siliconlandmark.com> <200512262101.59895.list-freebsd-2004@morbius.sent.com> In-Reply-To: <200512262101.59895.list-freebsd-2004@morbius.sent.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: [PATCH] /etc/rc: WARNING: $compat5x_enable is not set properly - see rc.conf(5). X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 22:19:55 -0000 RW wrote: > On Monday 26 December 2005 17:14, Andre Guibert de Bruet wrote: >> During startup, I am now seeing the following message: >> /etc/rc: WARNING: $compat5x_enable is not set properly - see rc.conf(5). >> >> I believe this message is saying that the compat5x-i386 package now >> requires a value to be set in the compat5x_enable variable. >> >> I attached a patch that fixes the lack of a default value for this >> variable Lack of a default value is a feature, as it draws attention to the problem, and suggests the correct solution. > Should this not default to "YES"? > > compat5x is a library dependence, why should a library dependence need to be > turned-on in rc.conf? We are actually changing the way that library dependencies are handled, so this will not be an issue going forward. In general, it is bad form for any boot script to enable itself without user interaction. Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 22:23:09 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5BA416A41F for ; Mon, 26 Dec 2005 22:23:09 +0000 (GMT) (envelope-from andy@siliconlandmark.com) Received: from lexi.siliconlandmark.com (lexi.siliconlandmark.com [209.69.98.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38B9C43D5C for ; Mon, 26 Dec 2005 22:23:09 +0000 (GMT) (envelope-from andy@siliconlandmark.com) Received: from lexi.siliconlandmark.com (localhost [127.0.0.1]) by lexi.siliconlandmark.com (8.13.3/8.13.3) with ESMTP id jBQMN5vr097088 for ; Mon, 26 Dec 2005 17:23:05 -0500 (EST) (envelope-from andy@siliconlandmark.com) Received: from localhost (andy@localhost) by lexi.siliconlandmark.com (8.13.3/8.13.3/Submit) with ESMTP id jBQMN5jj097085 for ; Mon, 26 Dec 2005 17:23:05 -0500 (EST) (envelope-from andy@siliconlandmark.com) X-Authentication-Warning: lexi.siliconlandmark.com: andy owned process doing -bs Date: Mon, 26 Dec 2005 17:23:05 -0500 (EST) From: Andre Guibert de Bruet To: ports@freebsd.org In-Reply-To: <20051226112327.G68523@lexi.siliconlandmark.com> Message-ID: <20051226165948.I68523@lexi.siliconlandmark.com> References: <20051226112327.G68523@lexi.siliconlandmark.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Information: Please contact the ISP for more information X-SL-MailScanner: Found to be clean X-SL-SpamCheck: not spam, SpamAssassin (score=-2.599, required 6, autolearn=not spam, BAYES_00 -2.60) X-MailScanner-From: andy@siliconlandmark.com Cc: Subject: Re: [PATCH] /etc/rc: WARNING: $compat5x_enable is not set properly - see rc.conf(5). X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 22:23:10 -0000 On Monday 26 December 2005 17:14, RW wrote: > On Monday 26 December 2005 17:14, Andre Guibert de Bruet wrote: >> I attached a patch that fixes the lack of a default value for this >> variable in /usr/local/etc/rc.d/compat5x.sh (It can be found online as >> well at http://bling.properkernel.com/freebsd/compat5x.rc.d.patch ) > > Should this not default to "YES"? > > compat5x is a library dependence, why should a library dependence need > to be turned-on in rc.conf? Though I appreciate the modularity, I don't understand the need for the knob in this port. Perhaps the script should be renamed to match the naming used in ports like mysql-client and pkgtools for sake of consistency: 000.mysql-client.sh 000.pkgtools.sh Through past experience with the ports system, software that requires something to be run at startup needs to be enabled in rc.conf, which is why I suggested the change that sets compat5x_enable to NO by default in the rc.d script. Seeing that there isn't anything other than ldconfig being run, maybe we should forego rcvar altogether in this script as RW suggested. I posted the trivial one-line patch for that at http://bling.properkernel.com/freebsd/compat5x.norcvar.patch Cheers, Andy PS: Please CC me on replies. I am not subscribed to this list. /* Andre Guibert de Bruet * 6f43 6564 7020 656f 2e74 4220 7469 6a20 */ /* Code poet / Sysadmin * 636f 656b 2e79 5320 7379 6461 696d 2e6e */ /* GSM: +1 734 846 8758 * 5520 494e 2058 6c73 7565 6874 002e 0000 */ /* WWW: siliconlandmark.com * Tormenting bytes since 1980. */ From owner-freebsd-ports@FreeBSD.ORG Mon Dec 26 23:45:10 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BC1F16A41F for ; Mon, 26 Dec 2005 23:45:10 +0000 (GMT) (envelope-from yasu@utahime.org) Received: from utahime.as.wakwak.ne.jp (utahime.as.wakwak.ne.jp [61.205.238.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0577543D46 for ; Mon, 26 Dec 2005 23:45:09 +0000 (GMT) (envelope-from yasu@utahime.org) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by utahime.as.wakwak.ne.jp (Postfix) with ESMTP id D7999B840; Tue, 27 Dec 2005 08:45:08 +0900 (JST) Received: from localhost.home.utahime.org (localhost.home.utahime.org [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id AF0D133; Tue, 27 Dec 2005 08:45:08 +0900 (JST) Received: from eastasia.home.utahime.org (localhost.home.utahime.org [127.0.0.1]) by localhost.home.utahime.org (AvMailGate-2.0.2-14) id 75118-4726EA91; Tue, 27 Dec 2005 08:45:08 +0900 Received: from localhost (angel.home.utahime.org [192.168.174.4]) by eastasia.home.utahime.org (Postfix) with ESMTP id 811AF22; Tue, 27 Dec 2005 08:45:08 +0900 (JST) Date: Tue, 27 Dec 2005 08:44:57 +0900 (JST) Message-Id: <20051227.084457.106855915.yasu@utahime.org> To: ports@freebsd.org, andy@siliconlandmark.com From: KIMURA Yasuhiro In-Reply-To: <20051226165948.I68523@lexi.siliconlandmark.com> References: <20051226112327.G68523@lexi.siliconlandmark.com> <20051226165948.I68523@lexi.siliconlandmark.com> X-Mailer: Mew version 4.2.54 on Emacs 21.4 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-AntiVirus: checked by AntiVir MailGate (version: 2.0.2-14; AVE: 6.33.0.19; VDF: 6.33.0.67; host: eastasia.home.utahime.org) Cc: Subject: Re: [PATCH] /etc/rc: WARNING: $compat5x_enable is not set properly - see rc.conf(5). X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Dec 2005 23:45:10 -0000 From: Andre Guibert de Bruet Subject: Re: [PATCH] /etc/rc: WARNING: $compat5x_enable is not set properly - see rc.conf(5). Date: Mon, 26 Dec 2005 17:23:05 -0500 (EST) > On Monday 26 December 2005 17:14, RW wrote: > > On Monday 26 December 2005 17:14, Andre Guibert de Bruet wrote: > >> I attached a patch that fixes the lack of a default value for this > >> variable in /usr/local/etc/rc.d/compat5x.sh (It can be found online as > >> well at http://bling.properkernel.com/freebsd/compat5x.rc.d.patch ) > > Should this not default to "YES"? > > compat5x is a library dependence, why should a library dependence need > > to be turned-on in rc.conf? > Though I appreciate the modularity, I don't understand the need for the > knob in this port. Perhaps the script should be renamed to match the > naming used in ports like mysql-client and pkgtools for sake of > consistency: I think ldconfig setting should be done by adding following line to /etc/rc.conf. ldconfig_paths="/usr/local/lib/compat /usr/X11R6/lib /usr/local/lib /usr/local/lib/compat/pkg" Though this solution requires user a bit complex setting, there is an advantage that ldconfig setting is done befere any rc scripts for local packages are executed. --- KIMURA Yasuhiro From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 00:18:35 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEBE916A41F for ; Tue, 27 Dec 2005 00:18:35 +0000 (GMT) (envelope-from jan@1kdigital.com) Received: from mail.1kdigital.com (coffin.1kdigital.com [194.204.33.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A03D43D72 for ; Tue, 27 Dec 2005 00:18:32 +0000 (GMT) (envelope-from jan@1kdigital.com) Received: (qmail 55454 invoked by uid 89); 27 Dec 2005 00:20:16 -0000 Received: by simscan 1.1.0 ppid: 55449, pid: 55451, t: 3.9162s scanners: attach: 1.1.0 spam: 3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on coffin.1kdigital.com X-Spam-Level: X-Spam-Status: No, score=-3.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.0 Received: from rohi.1kdigital.com (HELO chipmunk) (jan@1kdigital.com@194.106.125.98) by coffin.1kdigital.com with ESMTPA; 27 Dec 2005 00:20:12 -0000 Message-ID: <005501c60a7b$1ea0d5f0$0200000a@chipmunk> From: "Jan-Erik Moon" To: , Date: Tue, 27 Dec 2005 02:18:53 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Cc: ports@FreeBSD.org Subject: FreeBSD Port: simscan, qmail ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 00:18:35 -0000 Hi, This is a combined request. Please upgrade the simscan port to 1.2 and add the possiblity to compile simscan with "--enable-custom-reject" switch. This allows users to get much more information about why their message was rejected (in case a seemingly good mail is rejected for some reason). Custom error feature is described in Simscan Wiki. http://qmailwiki.inter7.com/Simscan/Guide#Custom_Reject_Option This also needs a patch (qmail-queue-custom-error.patch) to be applied to qmail source. The default version of this patch comes with simscan and is located in "contrib" directory. Unfortunately the default version is not compatible with QMAILQUEUE patch which means that a combined patch must be applied if both patches are needed. The qmail.c, patched with both QMAILQUEUE and custom error patches, can be found here: http://article.gmane.org/gmane.mail.qmail.simscan/1395 More about this issue: http://qmailwiki.inter7.com/Simscan/Related_Docs/Simscan_ClamAV_Chkuser_Installation_Guide#Applying_qmail-queue-custom-error.patch I know that this is a bit complicated request but when it's done, it will add a great value to these two ports. With best regards, Jan-Erik Moon From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 01:37:52 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C27D116A41F for ; Tue, 27 Dec 2005 01:37:52 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mail2.fluidhosting.com [204.14.90.12]) by mx1.FreeBSD.org (Postfix) with SMTP id 6580A43D6E for ; Tue, 27 Dec 2005 01:37:49 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 95970 invoked by uid 399); 27 Dec 2005 01:37:46 -0000 Received: from localhost (HELO ?192.168.1.101?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 27 Dec 2005 01:37:46 -0000 Message-ID: <43B09AE8.2060702@FreeBSD.org> Date: Mon, 26 Dec 2005 17:37:44 -0800 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 1.5 (X11/20051226) MIME-Version: 1.0 To: Andre Guibert de Bruet References: <20051226112327.G68523@lexi.siliconlandmark.com> <20051226165948.I68523@lexi.siliconlandmark.com> In-Reply-To: <20051226165948.I68523@lexi.siliconlandmark.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org Subject: Re: [PATCH] /etc/rc: WARNING: $compat5x_enable is not set properly - see rc.conf(5). X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 01:37:52 -0000 Andre Guibert de Bruet wrote: > Though I appreciate the modularity, I don't understand the need for the > knob in this port. I am thinking that my message which answered this question crossed yours in the mail. Work is currently being done, and I expect will pick up again now that Christmas is over, on a way to make all such scripts which do nothing but ldconfig certain directories obsolete. If you're interested, I commend you to the freebsd-rc list archives. It is also worth noting that at some point in the future, when all scripts which start services have been converted to the new rc.d format, it will be second nature for users to consider adding the appropriate _enable line in /etc/rc.conf.local. There will be some time between now and then where we will need to educate our user base on this change, but that is a cost we have to bear in order to facilitate both the complete transition to rc.d, and incorporating the local startup scripts into the overall rcorder. hth, Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 02:44:44 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89C0716A41F for ; Tue, 27 Dec 2005 02:44:44 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from out5.smtp.messagingengine.com (out5.smtp.messagingengine.com [66.111.4.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8F7F43DA7 for ; Tue, 27 Dec 2005 02:44:26 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from frontend1.internal (mysql-sessions.internal [10.202.2.149]) by frontend1.messagingengine.com (Postfix) with ESMTP id F2273D2C001 for ; Mon, 26 Dec 2005 21:44:23 -0500 (EST) Received: from frontend2.messagingengine.com ([10.202.2.151]) by frontend1.internal (MEProxy); Mon, 26 Dec 2005 21:44:23 -0500 X-Sasl-enc: Uxp2/CVtfQ01NcAhSttBgbRIWQNM3VOmGp7tjmLsIp/F 1135651462 Received: from gumby.localdomain (88-104-192-109.dynamic.dsl.as9105.com [88.104.192.109]) by frontend2.messagingengine.com (Postfix) with ESMTP id C984E57146A for ; Mon, 26 Dec 2005 21:44:21 -0500 (EST) From: RW To: freebsd-ports@freebsd.org Date: Tue, 27 Dec 2005 02:44:20 +0000 User-Agent: KMail/1.8.3 References: <20051226112327.G68523@lexi.siliconlandmark.com> <200512262101.59895.list-freebsd-2004@morbius.sent.com> <43B06C88.1050403@FreeBSD.org> In-Reply-To: <43B06C88.1050403@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200512270244.21754.list-freebsd-2004@morbius.sent.com> Subject: Re: [PATCH] /etc/rc: WARNING: $compat5x_enable is not set properly - see rc.conf(5). X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 02:44:44 -0000 On Monday 26 December 2005 22:19, Doug Barton wrote: > RW wrote: > > compat5x is a library dependence, why should a library dependence need to > > be turned-on in rc.conf? > > We are actually changing the way that library dependencies are handled, so > this will not be an issue going forward. In general, it is bad form for any > boot script to enable itself without user interaction. Offhand I cant see why anyone would want to install a compatibility library and not use it. The knobs are not even well behaved, consider the effect of: compat5x_enable="YES" compat4x_enable="NO" Furthermore I dont think that an error message on the console constitutes drawing peoples attention to the change - surely that's what UPDATING is for. From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 08:04:21 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC37616A41F for ; Tue, 27 Dec 2005 08:04:21 +0000 (GMT) (envelope-from wearabnet@yahoo.ca) Received: from web36312.mail.mud.yahoo.com (web36312.mail.mud.yahoo.com [209.191.84.242]) by mx1.FreeBSD.org (Postfix) with SMTP id ECC9843D60 for ; Tue, 27 Dec 2005 08:04:19 +0000 (GMT) (envelope-from wearabnet@yahoo.ca) Received: (qmail 86352 invoked by uid 60001); 27 Dec 2005 08:04:19 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.ca; h=Message-ID:Received:Date:From:Subject:To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding; b=KwSm3KCc/Tajz3Pqt1Ov9GS7XyVZ1bNzrD30AU68c/PUNHlWNyMVZTURUSXsfKinHNVnBQJ36P0+fyYjM4nOCJc1opwKZiVQqQU93fsdAH6Dlfx88JupjB0Yrjk+DRIq5LphhUxrTZOWXHdvUJc/s311rG51/QXUkaWOHY6AXE0= ; Message-ID: <20051227080419.86350.qmail@web36312.mail.mud.yahoo.com> Received: from [212.77.203.38] by web36312.mail.mud.yahoo.com via HTTP; Tue, 27 Dec 2005 03:04:19 EST Date: Tue, 27 Dec 2005 03:04:19 -0500 (EST) From: Abdullah Ibn Hamad Al-Marri To: ale@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@FreeBSD.org, marcus@corp.grupos.com.br Subject: FreeBSD Port: mysql-server-5.0.17 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 08:04:22 -0000 Hello, I tried to upgraded from MySQL 5.0.16 to 5.0.17 in my FreeBSD 4.11-STABLE But it faild I don't know why: bk.lo ctype-sjis.lo ctype-tis620.lo ctype-ujis.lo ctype-uca.lo xml.lo my_strtoll10.lo str_alloc.lo dbug.lo pack.lo client.lo my_time.lo vio.lo viosocket.lo viossl.lo viosslfactories.lo net.lo -DHAVE_GLIBC2_STYLE_GETHOSTBYNAME_R -D_THREAD_SAFE -I/usr/local/include/pthread/linuxthreads -L/usr/local/lib -llthread -llgcc_r -lcrypt -lm -DHAVE_GLIBC2_STYLE_GETHOSTBYNAME_R -D_THREAD_SAFE -I/usr/local/include/pthread/linuxthreads -L/usr/local/lib -llthread -llgcc_r ../zlib/libz.la libtool15: link: cannot find the library `../zlib/libz.la' *** Error code 1 Stop in /usr/ports/databases/mysql50-client/work/mysql-5.0.17/libmysql_r. *** Error code 1 Stop in /usr/ports/databases/mysql50-client/work/mysql-5.0.17. *** Error code 1 Stop in /usr/ports/databases/mysql50-client/work/mysql-5.0.17. *** Error code 1 Thank you, -Abdullah WeArab Network http://www.WeArab.Net Web Chat and Arab Chat! --------------------------------- Find your next car at Yahoo! Canada Autos From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 09:09:56 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58A1F16A41F for ; Tue, 27 Dec 2005 09:09:56 +0000 (GMT) (envelope-from wearabnet@yahoo.ca) Received: from web36309.mail.mud.yahoo.com (web36309.mail.mud.yahoo.com [209.191.84.239]) by mx1.FreeBSD.org (Postfix) with SMTP id 273EA43D5D for ; Tue, 27 Dec 2005 09:09:54 +0000 (GMT) (envelope-from wearabnet@yahoo.ca) Received: (qmail 87878 invoked by uid 60001); 27 Dec 2005 09:09:54 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.ca; h=Message-ID:Received:Date:From:Subject:To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding; b=LxfI59ADw0U75fAaUslpiFrqpKnNUTAn0Catvr1scGrxm+UIQQctPqK2Mx+hMpSHfW+pq8BkXHdB8zfWOxVLHg+QQ0WrScHsjcSqn5xJNIlH+YO5UcarR6gVILq6d6Op9Gs67mmRwsqF/O0QPRCFAMmBVpARt+eg0nuW6Ucwxrc= ; Message-ID: <20051227090954.87876.qmail@web36309.mail.mud.yahoo.com> Received: from [212.77.203.38] by web36309.mail.mud.yahoo.com via HTTP; Tue, 27 Dec 2005 04:09:54 EST Date: Tue, 27 Dec 2005 04:09:54 -0500 (EST) From: Abdullah Ibn Hamad Al-Marri To: vsevolod@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@FreeBSD.org Subject: FreeBSD Port: py24-pyxmpp-0.5 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 09:09:56 -0000 Hello, PyXMPP 1.0.0 is released. There are too many changes to mention here. The most important are: – API cleanup, includes some backward-incompatible changes. See included CHANGES file for upgrade hints. – logging module is now used for logging. – API documented using Epydoc. – Data Forms and In-band Registration support. – a lot of bugfixes. So please upgrade the ports if you don't mind ;) Thank you, -Abdullah --------------------------------- Find your next car at Yahoo! Canada Autos From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 11:30:39 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8295C16A41F; Tue, 27 Dec 2005 11:30:39 +0000 (GMT) (envelope-from toxa@toxahost.ru) Received: from mx.toxahost.ru (toxahost.ru [62.16.127.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id 080AA43D45; Tue, 27 Dec 2005 11:30:38 +0000 (GMT) (envelope-from toxa@toxahost.ru) Date: Tue, 27 Dec 2005 14:26:27 +0300 From: "Anton A. Karpov" To: Jan-Erik Moon X-Comment-To: "Anton A. Karpov" Message-ID: <20051227112627.GA1233@laptoxa.toxa.lan> Mail-Followup-To: Jan-Erik Moon , garga@FreeBSD.org, ports@FreeBSD.org References: <005501c60a7b$1ea0d5f0$0200000a@chipmunk> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <005501c60a7b$1ea0d5f0$0200000a@chipmunk> User-Agent: Outluck Express 1.5.11i for MS-DOS 6.22-SMP X-Mailer: See User-Agent above :) X-Operating-System: MS-DOS 7.0-CURRENT on Sony VAIO laptop X-PGP-Public-Key: http://www.toxahost.ru/gpg/pubkey.asc X-Useless-Header: Do Androids Dream of Electric Sheep? Cc: ports@FreeBSD.org, garga@FreeBSD.org Subject: Re: FreeBSD Port: simscan, qmail ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 11:30:39 -0000 On Tue, Dec 27, 2005 at 02:18:53AM +0200, Jan-Erik Moon wrote: > Hi, > This is a combined request. > Please upgrade the simscan port to 1.2 and add the possiblity to compile > simscan with "--enable-custom-reject" switch. This allows users to get much > more information about why their message was rejected (in case a seemingly > good mail is rejected for some reason). > Custom error feature is described in Simscan Wiki. > http://qmailwiki.inter7.com/Simscan/Guide#Custom_Reject_Option > This also needs a patch (qmail-queue-custom-error.patch) to be applied to > qmail source. The default version of this patch comes with simscan and is > located in "contrib" directory. Unfortunately the default version is not > compatible with QMAILQUEUE patch which means that a combined patch must be > applied if both patches are needed. > The qmail.c, patched with both QMAILQUEUE and custom error patches, can be > found here: > http://article.gmane.org/gmane.mail.qmail.simscan/1395 > More about this issue: > http://qmailwiki.inter7.com/Simscan/Related_Docs/Simscan_ClamAV_Chkuser_Installation_Guide#Applying_qmail-queue-custom-error.patch > I know that this is a bit complicated request but when it's done, it will > add a great value to these two ports. Ok, I'm planning to upgrade simscan to 1.2 but only then it will become a release. For now, inter7.com page claims that it's just a "new test version of the upcoming 1.2 release". I don't want to put test versions into fbsd ports tree :) "--enable-custom-reject" is a cool feature but unfortunately it depends on qmail port need to be patched with qmail-queue-custom-error.patch. If garga@ will add this patch into qmail port, simscan port can be compiled with such option. -- Anton A. Karpov WWW: http://www.toxahost.ru PGP Key ID: A21386F2 =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~= "Security is decided by quality." Theo de Raadt =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~= From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 13:34:34 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2C7D16A41F for ; Tue, 27 Dec 2005 13:34:34 +0000 (GMT) (envelope-from ml@sd2i.com) Received: from www5.sd2i.net (host-4-43.hosted.firstream.net [213.91.4.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E69F43D62 for ; Tue, 27 Dec 2005 13:34:33 +0000 (GMT) (envelope-from ml@sd2i.com) Received: from www5.sd2i.net (localhost.hosted.firstream.net [127.0.0.1]) by www5.sd2i.net (Postfix) with ESMTP id A204952E9 for ; Tue, 27 Dec 2005 14:34:32 +0100 (CET) Received: from [192.168.1.10] (ADijon-153-1-55-43.w81-51.abo.wanadoo.fr [81.51.78.43]) by www5.sd2i.net (Postfix) with ESMTP id 44E3252A9 for ; Tue, 27 Dec 2005 14:34:32 +0100 (CET) Message-ID: <43B142E7.1050804@sd2i.com> Date: Tue, 27 Dec 2005 14:34:31 +0100 From: "ml@sd2i.com" User-Agent: Thunderbird 1.5 (Macintosh/20051201) MIME-Version: 1.0 To: ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP at www5.sd2i.net Cc: Subject: apache --suexec-safepath configure option X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 13:34:34 -0000 I can see the following in the Makefile of www/apache13 : APACHE_SUEXEC_DOCROOT?=${DOCUMENT_ROOT} APACHE_SUEXEC_LOG?=/var/log/httpd-suexec.log APACHE_SUEXEC_USERDIR?=public_html APACHE_SUEXEC_UIDMIN?=1000 APACHE_SUEXEC_GIDMIN?=1000 APACHE_SUEXEC_CALLER?=www SUEXEC_CONF= \ --enable-suexec \ --suexec-docroot=${APACHE_SUEXEC_DOCROOT} \ --suexec-caller=${APACHE_SUEXEC_CALLER} \ --suexec-uidmin=${APACHE_SUEXEC_UIDMIN} \ --suexec-gidmin=${APACHE_SUEXEC_GIDMIN} \ --suexec-logfile=${APACHE_SUEXEC_LOG} \ --suexec-userdir=${APACHE_SUEXEC_USERDIR} \ --suexec-safepath=${DEFAULT_PATH} My question is how can i change the --suexec-safepath from an option without doing changes in the Makefile itself ? Ideally i would have the possibility to insert the path into pkgtools.conf so i don't need to change anything when doing an upgrade of the port with portugrade. Beside my request, is there a reason for the maintainer to not provide a APACHE_SUEXEC_SAFEPATH option like for other suexec config values ? Regards, David. From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 15:09:25 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F41416A41F for ; Tue, 27 Dec 2005 15:09:25 +0000 (GMT) (envelope-from barner@gmx.de) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by mx1.FreeBSD.org (Postfix) with SMTP id 2198E43D9E for ; Tue, 27 Dec 2005 15:09:02 +0000 (GMT) (envelope-from barner@gmx.de) Received: (qmail invoked by alias); 27 Dec 2005 15:08:56 -0000 Received: from unknown (EHLO zi025.glh.mhn.de) [129.187.43.241] by mail.gmx.net (mp038) with SMTP; 27 Dec 2005 16:08:56 +0100 X-Authenticated: #147403 Received: by zi025.glh.mhn.de (Postfix, from userid 1000) id 65C57C248; Tue, 27 Dec 2005 16:09:17 +0100 (CET) Date: Tue, 27 Dec 2005 16:09:17 +0100 From: Simon Barner To: Beech Rintoul Message-ID: <20051227150917.GC29724@zi025.glh.mhn.de> References: <200512241808.54301.akbeech@gmail.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="hYooF8G/hrfVAmum" Content-Disposition: inline In-Reply-To: <200512241808.54301.akbeech@gmail.com> User-Agent: Mutt/1.5.11 X-Y-GMX-Trusted: 0 Cc: h.eichmann@gmx.de, freebsd-ports@freebsd.org Subject: Re: k3b compile error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 15:09:25 -0000 --hYooF8G/hrfVAmum Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Beech Rintoul wrote: > The upgrade of k3b fails with the following: >=20 > if /bin/sh ../../libtool --silent --mode=3Dcompile --tag=3DCXX c++ -DHAVE= _CONFIG_H=20 > -I. -I. -I../.. -I./../../libk3bdevice -I./../plugin -I./../tools=20 > -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include=20 > -D_THREAD_SAFE -pthread -DQT_THREAD_SUPPORT -I/usr/local/include=20 > -I/usr/local/include -I/usr/X11R6/include -D_GETOPT_H -D_THREAD_SAFE = =20 > -Wno-long-long -Wundef -Wall -W -Wpointer-arith -O2 -O2 -fno-strict-alias= ing=20 > -pipe -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -= MT=20 > k3bglobals.lo -MD -MP -MF ".deps/k3bglobals.Tpo" \ > -c -o k3bglobals.lo `test -f 'k3bglobals.cpp' || echo './'`k3bglobals.c= pp; \ > then mv -f ".deps/k3bglobals.Tpo" ".deps/k3bglobals.Plo"; \ > else rm -f ".deps/k3bglobals.Tpo"; exit 1; \ > fi > k3bglobals.cpp: In function `KIO::filesize_t K3b::filesize(const KURL&)': > k3bglobals.cpp:257: error: aggregate `stat64 buf' has incomplete type and= =20 > cannot be defined > k3bglobals.cpp:258: error: invalid use of undefined type `struct stat64' > k3bglobals.cpp:257: error: forward declaration of `struct stat64' > gmake[3]: *** [k3bglobals.lo] Error 1 > gmake[3]: Leaving directory=20 > `/usr/ports/sysutils/k3b/work/k3b-0.12.10/libk3b/core' > gmake[2]: *** [all-recursive] Error 1 > gmake[2]: Leaving directory `/usr/ports/sysutils/k3b/work/k3b-0.12.10/lib= k3b' > gmake[1]: *** [all-recursive] Error 1 > gmake[1]: Leaving directory `/usr/ports/sysutils/k3b/work/k3b-0.12.10' > gmake: *** [all] Error 2 > *** Error code 2 >=20 > Stop in /usr/ports/sysutils/k3b. > ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade8285= 1.0=20 > make > ** Fix the problem and try again. Please try again. This should have been fixed (I forgot to commit some of Heiner's patches :-/ --=20 Best regards / Viele Gr=FC=DFe, barner@FreeBSD.= org Simon Barner barner@gmx.de --hYooF8G/hrfVAmum Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDsVkdCkn+/eutqCoRAkEfAKDwGqvz4tiqVn/gbuUkHpPKnCMuQACg2LmY ERFwvLQiQC6XZIquKiDincQ= =aMMh -----END PGP SIGNATURE----- --hYooF8G/hrfVAmum-- From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 15:10:07 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11F0616A41F for ; Tue, 27 Dec 2005 15:10:07 +0000 (GMT) (envelope-from jan@1kdigital.com) Received: from mail.1kdigital.com (coffin.1kdigital.com [194.204.33.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DE4B43D6A for ; Tue, 27 Dec 2005 15:10:00 +0000 (GMT) (envelope-from jan@1kdigital.com) Received: (qmail 77843 invoked by uid 89); 27 Dec 2005 15:11:48 -0000 Received: by simscan 1.1.0 ppid: 77836, pid: 77838, t: 1.9685s scanners: attach: 1.1.0 spam: 3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on coffin.1kdigital.com X-Spam-Level: X-Spam-Status: No, score=-3.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.0 Received: from rohi.1kdigital.com (HELO chipmunk) (jan@1kdigital.com@194.106.125.98) by coffin.1kdigital.com with ESMTPA; 27 Dec 2005 15:11:46 -0000 Message-ID: <006201c60af7$ab124920$0200000a@chipmunk> From: "Jan-Erik Moon" To: "Anton A. Karpov" References: <005501c60a7b$1ea0d5f0$0200000a@chipmunk> <20051227112627.GA1233@laptoxa.toxa.lan> Date: Tue, 27 Dec 2005 17:10:26 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Cc: ports@FreeBSD.org, garga@FreeBSD.org Subject: Re: FreeBSD Port: simscan, qmail ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 15:10:07 -0000 ----- Original Message ----- From: "Anton A. Karpov" To: "Jan-Erik Moon" Cc: ; Sent: Tuesday, December 27, 2005 1:26 PM Subject: Re: FreeBSD Port: simscan, qmail ports > Ok, I'm planning to upgrade simscan to 1.2 but only then it will become > a release. For now, inter7.com page claims that it's just a "new test > version of the upcoming 1.2 release". I don't want to put test versions > into fbsd ports tree :) Sorry, this was my mistake - I thought 1.2 was already a release. I shouldn't make requests in the middle of the night. :) > "--enable-custom-reject" is a cool feature but unfortunately it depends > on qmail port need to be patched with qmail-queue-custom-error.patch. If > garga@ will add this patch into qmail port, simscan port can be compiled with > such option. Yes, I'm aware of that, and it's even more complicated as the custom error patch conflicts with QMAILQUEUE patch. But it's still doable as there is already a working qmail.c file available which contains parts from both patches. Just need to diff that file against the original qmail.c and we have a nice patch file which we could add to the qmail port. A simplified Makefile modification could look something like this: .if defined(WITH_QMAILQUEUE_PATCH) && defined(WITH_CUSTOMERROR_PATCH) PATCHFILES+=qmailqueue_and_custom-error.patch .endif .if defined(WITH_QMAILQUEUE) && !defined(WITH_CUSTOMERROR_PATCH) PATCHFILES+=qmailqueue-patch .endif .if !defined(WITH_CUSTOMERROR_PATCH) && defined(WITH_CUSTOMERROR_PATCH) PATCHFILES+=qmail-queue-custom-error.patch .endif (I'm not familiar with Makefile syntax - isn't there elseif or elsif ?) If there is anything I could do to help, please let me know. :) Jan From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 16:16:55 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4881016A41F for ; Tue, 27 Dec 2005 16:16:55 +0000 (GMT) (envelope-from andreevae@nk.nornik.ru) Received: from ns.nk.nornik.ru (ns.nk.nornik.ru [195.133.78.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80D4843D46 for ; Tue, 27 Dec 2005 16:16:51 +0000 (GMT) (envelope-from andreevae@nk.nornik.ru) Received: from [172.31.101.131] ([172.31.101.131]) by ns.nk.nornik.ru (8.11.6/8.11.6) with ESMTP id jBRGFbs34356 for ; Tue, 27 Dec 2005 23:15:39 +0700 (KRAT) (envelope-from andreevae@nk.nornik.ru) Message-ID: <43B167DF.50907@nk.nornik.ru> Date: Tue, 27 Dec 2005 23:12:15 +0700 From: Arttur Andreev User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: ru-ru, ru MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Can't start mysql 5.0.15 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 16:16:55 -0000 I have installed mysql 5.0.17 from ports on free bsd 6.0, try to start up using the safe_mysqld --user=mysql 051227 22:22:18 [ERROR] Fatal error: Can't open and lock privilege tables: Table 'mysql.host' doesn't exist 051227 22:22:18 mysqld ended in than problem? :( From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 19:44:34 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B00AB16A41F for ; Tue, 27 Dec 2005 19:44:34 +0000 (GMT) (envelope-from sammy@lost-angel.com) Received: from orwell.lost-angel.com (lost-angel.com [64.159.65.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4194643D5C for ; Tue, 27 Dec 2005 19:44:32 +0000 (GMT) (envelope-from sammy@lost-angel.com) Received: from [192.168.2.5] (12-210-133-32.client.insightBB.com [12.210.133.32]) (authenticated bits=0) by orwell.lost-angel.com (8.13.4/8.13.4) with ESMTP id jBRJiU9i032607 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO) for ; Tue, 27 Dec 2005 14:44:31 -0500 (EST) (envelope-from sammy@lost-angel.com) Mime-Version: 1.0 (Apple Message framework v746.2) Content-Transfer-Encoding: 7bit Message-Id: <848B006B-2075-42B4-8DF6-34A65F8F026F@lost-angel.com> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: freebsd-ports@freebsd.org From: sammy!!! Date: Tue, 27 Dec 2005 14:44:27 -0500 X-Mailer: Apple Mail (2.746.2) Subject: Trouble with Squirrelmail X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 19:44:34 -0000 I am getting the following error when trying to send mail with Squirrelmail: Error: Band or malformed request. Server Responded: Missing literal in APPEND Which is the same listed here, another user of a FreeBSD system, with not a lot of other information: http://sourceforge.net/mailarchive/forum.php? thread_id=9297556&forum_id=2995 Anyone else run across this error and have a possible solution? Any help, on the list or off, would be greatly appreciated since users are really starting to get nervous. From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 20:23:55 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E461516A423; Tue, 27 Dec 2005 20:23:55 +0000 (GMT) (envelope-from tofik@oxygen.az) Received: from mail.alkar.net (mail.alkar.net [195.248.191.95]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A10643D95; Tue, 27 Dec 2005 20:23:48 +0000 (GMT) (envelope-from tofik@oxygen.az) Received: from [213.227.193.75] (HELO [192.168.0.178]) by mail.alkar.net (CommuniGate Pro SMTP 4.3.9) with ESMTP id 418377798; Tue, 27 Dec 2005 22:23:46 +0200 Message-ID: <43B1BF11.10808@oxygen.az> Date: Tue, 27 Dec 2005 22:24:17 +0000 From: Tofik Suleymanov User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050404) X-Accept-Language: en-us, en MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org, aliyevj@hotmail.com Subject: port tree fetch errors X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 20:23:56 -0000 My ports-supfile is: *default host=cvsup.nl.FreeBSD.org *default base=/var/db *default prefix=/usr *default release=cvs tag=. *default delete use-rel-suffix *default compress ports-all i do: cvsup -g -z -L 2 /etc/ports-supfile and get this: Updating collection ports-all/cvs Cannot calculate checksum for "/usr/ports/devel/boost/pkg-plist": Input/output error Cannot calculate checksum for "/usr/ports/devel/clint/files/patch-python.h": Input/output error Cannot calculate checksum for "/usr/ports/devel/crossgo32-djgpp2/pkg-plist": Input/output error Checkout ports/devel/Makefile Cannot calculate checksum for "/usr/ports/devel/elib/files/patch-aa": Input/output error Need to mention that after cvsup ends i cannot compile php4 and get this errors: "Makefile", line 125: warning: " -q MPM_NAME" returned non-zero status Something happened to ports tree ? I've also tried different cvsup servers also, but had no success. From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 20:28:43 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 616B316A426; Tue, 27 Dec 2005 20:28:43 +0000 (GMT) (envelope-from tofik@oxygen.az) Received: from mail.alkar.net (mail.alkar.net [195.248.191.95]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB26043D83; Tue, 27 Dec 2005 20:28:29 +0000 (GMT) (envelope-from tofik@oxygen.az) Received: from [213.227.193.75] (HELO [192.168.0.178]) by mail.alkar.net (CommuniGate Pro SMTP 4.3.9) with ESMTP id 418379190; Tue, 27 Dec 2005 22:28:28 +0200 Message-ID: <43B1C02B.6040001@oxygen.az> Date: Tue, 27 Dec 2005 22:28:59 +0000 From: Tofik Suleymanov User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050404) X-Accept-Language: en-us, en MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org, aliyevj@hotmail.com Subject: troubles while cvsuping ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 20:28:43 -0000 ms# uname -a FreeBSD ms.gltcall.com 6.0-RELEASE FreeBSD 6.0-RELEASE #0: Thu Nov 3 09:36:13 UTC 2005 root@x64.samsco.home:/usr/obj/usr/src/sys/GENERIC i386 ms# ms# cat /etc/ports-supfile *default host=cvsup.nl.FreeBSD.org *default base=/var/db *default prefix=/usr *default release=cvs tag=. *default delete use-rel-suffix *default compress ports-all ms# i do cvsup and get a lot of errors: Updating collection ports-all/cvs Cannot calculate checksum for "/usr/ports/devel/boost/pkg-plist": Input/output error Cannot calculate checksum for "/usr/ports/devel/clint/files/patch-python.h": Input/output error After cvsup ends i cannot install php4 port.Seems like Makefile is broken: "Makefile", line 125: warning: " -q MPM_NAME" returned non-zero status Something happened to ports tree ? From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 20:35:01 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F6C016A41F; Tue, 27 Dec 2005 20:35:01 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from hood.oook.cz (hood.oook.cz [195.250.137.134]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B51C43D5A; Tue, 27 Dec 2005 20:32:13 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from ikaros.oook.cz (localhost [127.0.0.1]) by hood.oook.cz (8.13.4/8.13.4) with ESMTP id jBRKW998033334 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 27 Dec 2005 21:32:09 +0100 (CET) (envelope-from pav@FreeBSD.org) Received: (from pav@localhost) by ikaros.oook.cz (8.13.4/8.13.4/Submit) id jBRKTOdw033317; Tue, 27 Dec 2005 21:29:24 +0100 (CET) (envelope-from pav@FreeBSD.org) X-Authentication-Warning: ikaros.oook.cz: pav set sender to pav@FreeBSD.org using -f From: Pav Lucistnik To: Tofik Suleymanov In-Reply-To: <43B1BF11.10808@oxygen.az> References: <43B1BF11.10808@oxygen.az> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-fn+5h/FrsIcZCkCM7Pwp" Date: Tue, 27 Dec 2005 21:29:24 +0100 Message-Id: <1135715364.83838.36.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.4.2.1 FreeBSD GNOME Team Port Cc: ports@FreeBSD.org, questions@FreeBSD.org, aliyevj@hotmail.com Subject: Re: port tree fetch errors X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pav@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 20:35:01 -0000 --=-fn+5h/FrsIcZCkCM7Pwp Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Tofik Suleymanov p=ED=B9e v =FAt 27. 12. 2005 v 22:24 +0000: > My ports-supfile is: >=20 > *default host=3Dcvsup.nl.FreeBSD.org > *default base=3D/var/db > *default prefix=3D/usr > *default release=3Dcvs tag=3D. > *default delete use-rel-suffix > *default compress > ports-all >=20 > i do: >=20 > cvsup -g -z -L 2 /etc/ports-supfile=20 >=20 > and get this: >=20 > Updating collection ports-all/cvs > Cannot calculate checksum for "/usr/ports/devel/boost/pkg-plist":=20 > Input/output error > Cannot calculate checksum for=20 > "/usr/ports/devel/clint/files/patch-python.h": Input/output error > Cannot calculate checksum for=20 > "/usr/ports/devel/crossgo32-djgpp2/pkg-plist": Input/output error > Checkout ports/devel/Makefile > Cannot calculate checksum for "/usr/ports/devel/elib/files/patch-aa":=20 > Input/output error Can you read the content of those files? I'd bet you got either corrupted filesystem, or your hard drive is dying. --=20 Pav Lucistnik > With a 10 MHz 386 the downloading speed would most likely drop to a crawl > or stop with the decoding process etc. I think most 10MHz 386 users are quite accustomed to things dropping to a crawl. --=-fn+5h/FrsIcZCkCM7Pwp Content-Type: application/pgp-signature; name=signature.asc Content-Description: Toto je =?iso-8859-2?Q?digit=E1ln=EC?= =?ISO-8859-1?Q?_podepsan=E1?= =?iso-8859-2?Q?_=E8=E1st?= =?ISO-8859-1?Q?_zpr=E1vy?= -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQBDsaQkntdYP8FOsoIRAoL5AJ9rhCClMfEQmfWF9a69v3qowxydiQCfcXK4 YkYbE1Q2/Q5UfHa3dilW0nY= =ZMdP -----END PGP SIGNATURE----- --=-fn+5h/FrsIcZCkCM7Pwp-- From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 20:37:59 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9824816A41F for ; Tue, 27 Dec 2005 20:37:59 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: from mail2out.barnet.com.au (mail2out.barnet.com.au [202.83.176.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8654A43DC2 for ; Tue, 27 Dec 2005 20:37:45 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: by mail2out.barnet.com.au (Postfix, from userid 27) id CB0927073B1; Wed, 28 Dec 2005 07:37:38 +1100 (EST) X-Viruscan-Id: <43B1A612000180A6D3AE6B@BarNet> Received: from mail2-auth.barnet.com.au (mail2.barnet.com.au [202.83.176.13]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.barnet.com.au", Issuer "BarNet Root Certificate Authority" (verified OK)) by mail2.barnet.com.au (Postfix) with ESMTP id 8B3AB7073AB; Wed, 28 Dec 2005 07:37:38 +1100 (EST) Received: from k7.mavetju (252-131-222-203.rev.techex.net.au [203.222.131.252]) by mail2-auth.barnet.com.au (Postfix) with ESMTP id 45AC17073AA; Wed, 28 Dec 2005 07:37:32 +1100 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 7B008284; Wed, 28 Dec 2005 07:35:51 +1100 (EST) Date: Wed, 28 Dec 2005 07:35:51 +1100 From: Edwin Groothuis To: Vasil Dimov Message-ID: <20051227203551.GA3806@k7.mavetju> References: <20051223145649.GA42036@qlovarnika.bg.datamax> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051223145649.GA42036@qlovarnika.bg.datamax> User-Agent: Mutt/1.4.2.1i Cc: freebsd-ports@freebsd.org Subject: Re: Ports with trailing spaces in their plists X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 20:37:59 -0000 On Fri, Dec 23, 2005 at 04:56:49PM +0200, Vasil Dimov wrote: > I accidently discovered that some ports have trailing spaces in their > plist files. All refered to are fixed AFAIK. Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://weblog.barnet.com.au/edwin/ From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 20:38:54 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8405B16A420 for ; Tue, 27 Dec 2005 20:38:54 +0000 (GMT) (envelope-from mikej@rogers.com) Received: from smtp102.rog.mail.re2.yahoo.com (smtp102.rog.mail.re2.yahoo.com [206.190.36.80]) by mx1.FreeBSD.org (Postfix) with SMTP id 3EEBC43D53 for ; Tue, 27 Dec 2005 20:38:53 +0000 (GMT) (envelope-from mikej@rogers.com) Received: (qmail 10488 invoked from network); 27 Dec 2005 20:38:52 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=rogers.com; h=Received:Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject:References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=5FvoG1H5AZvIDY+vNxEsU1+UySAfZGSeqNPh9vbho9Z5n1yADRy93wliIHeLv0vVo9jJTikmghTqjGmuJm0B/sgwuaV/p/W1OT3N7EVU+jJFtd3kCAIiU0Yvpiz84LQN3ceuj2744y6+/J9q628wirZ4Yfm0avmDv3PWdP8SZrM= ; Received: from unknown (HELO ?70.30.133.190?) (mikej@rogers.com@70.30.133.190 with plain) by smtp102.rog.mail.re2.yahoo.com with SMTP; 27 Dec 2005 20:38:52 -0000 Message-ID: <43B1A66A.5030809@rogers.com> Date: Tue, 27 Dec 2005 15:39:06 -0500 From: Mike Jakubik User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: "sammy!!!" References: <848B006B-2075-42B4-8DF6-34A65F8F026F@lost-angel.com> In-Reply-To: <848B006B-2075-42B4-8DF6-34A65F8F026F@lost-angel.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: Trouble with Squirrelmail X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 20:38:54 -0000 sammy!!! wrote: > I am getting the following error when trying to send mail with > Squirrelmail: > Error: Band or malformed request. > Server Responded: Missing literal in APPEND > > Which is the same listed here, another user of a FreeBSD system, with > not a lot of other information: > http://sourceforge.net/mailarchive/forum.php?thread_id=9297556&forum_id=2995 > > What version of SquirrelMail and PHP are you using? From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 21:03:06 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6497416A41F for ; Tue, 27 Dec 2005 21:03:06 +0000 (GMT) (envelope-from bepratt@stcloudstate.edu) Received: from mailgw-20.stcloudstate.edu (Mailgateway.stcloudstate.edu [199.17.25.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F37043D79 for ; Tue, 27 Dec 2005 21:03:01 +0000 (GMT) (envelope-from bepratt@stcloudstate.edu) Received: from exchange17.campus.stcloudstate.edu [199.17.25.221] by mailgw-20.stcloudstate.edu with XWall v3.35b ; Tue, 27 Dec 2005 15:02:59 -0600 Received: from exchange.campus.stcloudstate.edu ([199.17.25.91]) by exchange17.campus.stcloudstate.edu with Microsoft SMTPSVC(6.0.3790.1830); Tue, 27 Dec 2005 15:02:56 -0600 X-MIMEOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Tue, 27 Dec 2005 15:02:56 -0600 Message-ID: <0451409FD6EF4F49AE13E3D1DD45280027E3D1@EXCHANGE.campus.stcloudstate.edu> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: packit build problem Thread-Index: AcYLKOk1A660/nvTRGmEj8EQdjR5PA== From: "Pratt, Benjamin E." To: X-OriginalArrivalTime: 27 Dec 2005 21:02:56.0762 (UTC) FILETIME=[E950C5A0:01C60B28] Cc: Subject: packit build problem X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 21:03:06 -0000 Hello, I am having problems building packit from ports and since you're listed as the maintainer of the port, even though this is a generic maintainer, I thought I would e-mail you for information. I am running FreeBSD 6.0-STABLE #0: Fri Nov 4 15:08:43 CST 2005 and trying to build from a recently CVSuped ports tree. I currently have packit-1.0 installed, I don't remember if it was from ports or a package, and am trying to update to packit-1.0_1 but am getting the errors below. Thank you for any help you may be able to give. Ben -- _ _ _ _ __ __ _ ___| | _(_) |_ | '_ \ / _` |/ __| |/ / | __| | |_) | (_| | (__| <| | |_ | .__/ \__,_|\___|_|\_\_|\__| |_| 1.0 has been configured with the following options: ----------------------------------------------- Host type : i386-portbld-freebsd6.0 Compiler : cc Compiler flags : -O2 -fno-strict-aliasing -pipe -Wall Linker flags : Libraries : -lpcap -lpcap -lpcap -lnet -L/usr/local/lib Binary : /usr/local/bin Manual pages : /usr/local/man/ Injection support : yes Capture support : yes Enable debugging : no ----------------------------------------------- =3D=3D=3D> Building for packit-1.0_1 make all-recursive Making all in src source=3D'init.c' object=3D'init.o' libtool=3Dno = depfile=3D'.deps/init.Po' tmpdepfile=3D'.deps/init.TPo' depmode=3Dgcc3 /bin/sh ../depcomp cc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../includes -I/usr/local/include -O2 -fno-strict-aliasing -pipe -Wall -c `test -f 'init.c' || echo './'`init.c In file included from globals.h:34, from init.h:26, from init.c:23: /usr/include/net/bpf.h:63: error: redefinition of `struct bpf_program' /usr/include/net/bpf.h:87: error: redefinition of `struct bpf_version' /usr/include/net/bpf.h:584: error: redefinition of `struct bpf_insn' *** Error code 1 Stop in /usr/ports/net-mgmt/packit/work/packit-1.0/src. *** Error code 1 Stop in /usr/ports/net-mgmt/packit/work/packit-1.0. *** Error code 1 Stop in /usr/ports/net-mgmt/packit/work/packit-1.0. *** Error code 1 Stop in /usr/ports/net-mgmt/packit. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade80237.0 make ** Fix the problem and try again. ** Listing the failed packages (*:skipped / !:failed) ! net-mgmt/packit (packit-1.0) (unknown build error) ---> Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 21:15:19 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71F1416A420 for ; Tue, 27 Dec 2005 21:15:19 +0000 (GMT) (envelope-from laszlof@vonostingroup.com) Received: from ritamari.vonostingroup.com (ritamari.vonostingroup.com [216.144.193.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5FA643D64 for ; Tue, 27 Dec 2005 21:15:17 +0000 (GMT) (envelope-from laszlof@vonostingroup.com) Received: from adsl-68-72-248-38.dsl.sfldmi.ameritech.net ([68.72.248.38] helo=[192.168.1.33]) by ritamari.vonostingroup.com with esmtpa (Exim 4.60 (FreeBSD)) (envelope-from ) id 1ErMAD-0002em-3e; Tue, 27 Dec 2005 16:15:21 -0500 Message-ID: <43B1AEE2.3010607@vonostingroup.com> Date: Tue, 27 Dec 2005 16:15:14 -0500 From: Frank Laszlo User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: "Pratt, Benjamin E." References: <0451409FD6EF4F49AE13E3D1DD45280027E3D1@EXCHANGE.campus.stcloudstate.edu> In-Reply-To: <0451409FD6EF4F49AE13E3D1DD45280027E3D1@EXCHANGE.campus.stcloudstate.edu> X-Enigmail-Version: 0.93.2.0 OpenPGP: url=http://www.franksworld.org/~laszlof/keys/0x0B3FCA4B.asc Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - ritamari.vonostingroup.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [26 6] X-AntiAbuse: Sender Address Domain - vonostingroup.com X-Source: X-Source-Args: X-Source-Dir: Cc: ports@FreeBSD.org Subject: Re: packit build problem X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 21:15:19 -0000 Pratt, Benjamin E. wrote: > Hello, I am having problems building packit from ports and since you're > listed as the maintainer of the port, even though this is a generic > maintainer, I thought I would e-mail you for information. > > I am running FreeBSD 6.0-STABLE #0: Fri Nov 4 15:08:43 CST 2005 and > trying to build from a recently CVSuped ports tree. I currently have > packit-1.0 installed, I don't remember if it was from ports or a > package, and am trying to update to packit-1.0_1 but am getting the > errors below. > > Thank you for any help you may be able to give. > > > I've ran into similar error messages while trying to update security/hostapd. It appears to be related to net/libdnet. I'f I find a solution I'll let you know. Regards, Frank From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 21:18:31 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6213816A41F for ; Tue, 27 Dec 2005 21:18:31 +0000 (GMT) (envelope-from lrntct@gmail.com) Received: from smtp4-g19.free.fr (smtp4-g19.free.fr [212.27.42.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E24E43D7B for ; Tue, 27 Dec 2005 21:18:08 +0000 (GMT) (envelope-from lrntct@gmail.com) Received: from [192.168.1.10] (mar21-1-82-225-170-6.fbx.proxad.net [82.225.170.6]) by smtp4-g19.free.fr (Postfix) with ESMTP id 89AAF4E9A2 for ; Tue, 27 Dec 2005 22:18:04 +0100 (CET) Message-ID: <43B1AF8C.8090807@gmail.com> Date: Tue, 27 Dec 2005 22:18:04 +0100 From: "Laurent C." User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051220) X-Accept-Language: fr, en MIME-Version: 1.0 To: ports@freebsd.org X-Enigmail-Version: 0.89.6.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Are graphics/libgrass5 and databases/grass-i18n deprecated ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 21:18:31 -0000 Hi, With the recent update of grass maybe libgrass5 and grass-i18n are deprecated. libgrass5 because libraries comes with grass since version 5.7 grass-i18n because localisation and freetype supports are in grass-6 Laurent From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 23:32:33 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1D2B16A420 for ; Tue, 27 Dec 2005 23:32:33 +0000 (GMT) (envelope-from sammy@lost-angel.com) Received: from orwell.lost-angel.com (lost-angel.com [64.159.65.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E12143D5A for ; Tue, 27 Dec 2005 23:32:32 +0000 (GMT) (envelope-from sammy@lost-angel.com) Received: from [192.168.2.5] (12-210-133-32.client.insightBB.com [12.210.133.32]) (authenticated bits=0) by orwell.lost-angel.com (8.13.4/8.13.4) with ESMTP id jBRNWSR6041116 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO); Tue, 27 Dec 2005 18:32:31 -0500 (EST) (envelope-from sammy@lost-angel.com) In-Reply-To: <43B1A66A.5030809@rogers.com> References: <848B006B-2075-42B4-8DF6-34A65F8F026F@lost-angel.com> <43B1A66A.5030809@rogers.com> Mime-Version: 1.0 (Apple Message framework v746.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <04B4A5FB-8C64-4EF9-B98E-820FC83A9CD8@lost-angel.com> Content-Transfer-Encoding: 7bit From: sammy!!! Date: Tue, 27 Dec 2005 18:32:26 -0500 To: Mike Jakubik X-Mailer: Apple Mail (2.746.2) Cc: freebsd-ports@freebsd.org Subject: Re: Trouble with Squirrelmail X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 23:32:34 -0000 PHP 5.1.1 On Dec 27, 2005, at 3:39 PM, Mike Jakubik wrote: > sammy!!! wrote: >> I am getting the following error when trying to send mail with >> Squirrelmail: >> Error: Band or malformed request. >> Server Responded: Missing literal in APPEND >> >> Which is the same listed here, another user of a FreeBSD system, >> with not a lot of other information: >> http://sourceforge.net/mailarchive/forum.php? >> thread_id=9297556&forum_id=2995 >> > > What version of SquirrelMail and PHP are you using? From owner-freebsd-ports@FreeBSD.ORG Wed Dec 28 00:35:12 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B8FC16A41F for ; Wed, 28 Dec 2005 00:35:12 +0000 (GMT) (envelope-from mikej@rogers.com) Received: from smtp101.rog.mail.re2.yahoo.com (smtp101.rog.mail.re2.yahoo.com [206.190.36.79]) by mx1.FreeBSD.org (Postfix) with SMTP id D2FC643D60 for ; Wed, 28 Dec 2005 00:35:09 +0000 (GMT) (envelope-from mikej@rogers.com) Received: (qmail 44892 invoked from network); 28 Dec 2005 00:35:05 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=rogers.com; h=Received:Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject:References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=k4NASVFMIhTcnoCBMm+0aR5sM3P7FIP+5WQFDWdFbzMMl2kYMh2c/XVSfUUEa70rmc2LqFCGj1OCOnkUNYeukEu++IblH+Cy0P/OEOglE6ijizo2F0wAogqHIvrFoqgmPHFYyN7q6LbwmHsr43DRw2Hg8XZgg44ttbbXscgg7+Y= ; Received: from unknown (HELO ?70.30.133.190?) (mikej@rogers.com@70.30.133.190 with plain) by smtp101.rog.mail.re2.yahoo.com with SMTP; 28 Dec 2005 00:35:05 -0000 Message-ID: <43B1DDC9.3030507@rogers.com> Date: Tue, 27 Dec 2005 19:35:21 -0500 From: Mike Jakubik User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: "sammy!!!" References: <848B006B-2075-42B4-8DF6-34A65F8F026F@lost-angel.com> <43B1A66A.5030809@rogers.com> <04B4A5FB-8C64-4EF9-B98E-820FC83A9CD8@lost-angel.com> In-Reply-To: <04B4A5FB-8C64-4EF9-B98E-820FC83A9CD8@lost-angel.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: Trouble with Squirrelmail X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2005 00:35:12 -0000 sammy!!! wrote: > PHP 5.1.1 > On Dec 27, 2005, at 3:39 PM, Mike Jakubik wrote: Please don't top post. SM 1.4.5 doe snot work with PHP 5.1 correctly, either update to a RC version of SM or use earlier version of PHP. This was already mentioned by me on this mailing list, and the link that you provided. From owner-freebsd-ports@FreeBSD.ORG Wed Dec 28 07:12:23 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 047D516A41F for ; Wed, 28 Dec 2005 07:12:23 +0000 (GMT) (envelope-from nbari@unixmexico.com) Received: from smtp104.biz.mail.re2.yahoo.com (smtp104.biz.mail.re2.yahoo.com [206.190.52.173]) by mx1.FreeBSD.org (Postfix) with SMTP id 6F38943D7C for ; Wed, 28 Dec 2005 07:12:19 +0000 (GMT) (envelope-from nbari@unixmexico.com) Received: (qmail 37440 invoked from network); 28 Dec 2005 07:12:18 -0000 Received: from unknown (HELO ?192.168.2.2?) (nbari@unixmexico.com@200.57.22.241 with plain) by smtp104.biz.mail.re2.yahoo.com with SMTP; 28 Dec 2005 07:12:18 -0000 Mime-Version: 1.0 (Apple Message framework v746.2) Content-Transfer-Encoding: 7bit Message-Id: <2354A825-98CE-4B2B-A483-042D05BD2FB0@unixmexico.com> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: rse@engelschall.com, freebsd-ports@freebsd.org, imp@village.org From: Nicolas de Bari Embriz Garcia Rojas Date: Wed, 28 Dec 2005 01:12:16 -0600 X-Mailer: Apple Mail (2.746.2) Cc: Subject: Apache not starting when rebooting using latest FreeBSD 6 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2005 07:12:23 -0000 Hello, after making a clean installation of FreeBSD 6 and then updating the sources for getting the latest stable release, apache is not starting when booting it only start when manually doing the /usr/ local/etc/rc.d/apache.sh start sequence. I think this has to be with the changes mentioned on the UPDATING file : 20051220: Scripts in the local_startup directories (as defined in /etc/defaults/rc.conf) that have the new rc.d semantics will now be run as part of the base system rcorder. If there are errors or problems with one of these local scripts, it could cause boot problems. If you encounter such problems, boot in single user mode, remove that script from the */rc.d directory. Please report the problem to the port's maintainer, and the freebsd-ports@freebsd.org mailing list. regards. From owner-freebsd-ports@FreeBSD.ORG Wed Dec 28 09:57:42 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1239116A41F for ; Wed, 28 Dec 2005 09:57:42 +0000 (GMT) (envelope-from boris@brooknet.com.au) Received: from mailout2.pacific.net.au (mailout2.pacific.net.au [61.8.0.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60DA843D5E for ; Wed, 28 Dec 2005 09:57:40 +0000 (GMT) (envelope-from boris@brooknet.com.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.0.86]) by mailout2.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id jBS9vcxP021630; Wed, 28 Dec 2005 20:57:38 +1100 Received: from [61.8.40.233] (ppp28E9.dyn.pacific.net.au [61.8.40.233]) by mailproxy1.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id jBS9vaOu007919; Wed, 28 Dec 2005 20:57:37 +1100 In-Reply-To: <43B1AF8C.8090807@gmail.com> References: <43B1AF8C.8090807@gmail.com> Mime-Version: 1.0 (Apple Message framework v746.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Sam Lawrance Date: Wed, 28 Dec 2005 20:57:37 +1100 To: "Laurent C." X-Mailer: Apple Mail (2.746.2) Cc: ports@freebsd.org Subject: Re: Are graphics/libgrass5 and databases/grass-i18n deprecated ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2005 09:57:42 -0000 On 28/12/2005, at 8:18 AM, Laurent C. wrote: > Hi, > > With the recent update of grass maybe libgrass5 and grass-i18n are > deprecated. > libgrass5 because libraries comes with grass since version 5.7 > grass-i18n because localisation and freetype supports are in grass-6 libgrass was recently marked DEPRECATED. There is at least one port depending on grass-i18n; perhaps it can use grass 6 and then grass- i18n can be marked DEPRECATED. Could you take a look and send-pr it? From owner-freebsd-ports@FreeBSD.ORG Wed Dec 28 09:59:43 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09D6D16A420 for ; Wed, 28 Dec 2005 09:59:43 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: from relay.rdsnet.ro (gimli.rdsnet.ro [193.231.236.70]) by mx1.FreeBSD.org (Postfix) with SMTP id 3197543D7C for ; Wed, 28 Dec 2005 09:59:39 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: (qmail 476 invoked from network); 28 Dec 2005 09:59:32 -0000 Received: from unknown (HELO smtp.rdsnet.ro) (62.231.74.130) by smtp1-133.rdsnet.ro with SMTP; 28 Dec 2005 09:59:32 -0000 Received: (qmail 19054 invoked by uid 89); 28 Dec 2005 09:59:33 -0000 Received: from unknown (HELO it.buh.tecnik93.com) (81.196.204.98) by 0 with SMTP; 28 Dec 2005 09:59:33 -0000 Received: from it.buh.tecnik93.com (localhost [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with ESMTP id 90BCCB84A; Wed, 28 Dec 2005 11:59:34 +0200 (EET) Date: Wed, 28 Dec 2005 11:59:34 +0200 From: Ion-Mihai Tetcu To: Nicolas de Bari Embriz Garcia Rojas Message-ID: <20051228115934.2310851a@it.buh.tecnik93.com> In-Reply-To: <2354A825-98CE-4B2B-A483-042D05BD2FB0@unixmexico.com> References: <2354A825-98CE-4B2B-A483-042D05BD2FB0@unixmexico.com> X-Mailer: Sylpheed-Claws 1.9.100 (GTK+ 2.8.9; i386-portbld-freebsd6.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: rse@engelschall.com, imp@village.org, freebsd-ports@freebsd.org Subject: Re: Apache not starting when rebooting using latest FreeBSD 6 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2005 09:59:43 -0000 On Wed, 28 Dec 2005 01:12:16 -0600 Nicolas de Bari Embriz Garcia Rojas wrote: > Hello, after making a clean installation of FreeBSD 6 and then > updating the sources for getting the latest stable release, apache > is not starting when booting it only start when manually doing > the /usr/ local/etc/rc.d/apache.sh start sequence. Did you try to set the right var in /etc/rc.conf.local ? # Define these apache_* variables in one of these files: # /etc/rc.conf # /etc/rc.conf.local # /etc/rc.conf.d/apache # # DO NOT CHANGE THESE DEFAULT VALUES HERE # apache_enable=${apache_enable-"NO"} apache_flags=${apache_flags-""} apache_pidfile=${apache_pidfile-"/var/run/httpd.pid"} Anyway, get use to it, this is the way all stat-up scripts will work in a shot time. -- IOnut - Unregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" BOFH excuse #193: Did you pay the new Support Fee? From owner-freebsd-ports@FreeBSD.ORG Wed Dec 28 10:00:21 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E22C16A41F for ; Wed, 28 Dec 2005 10:00:21 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB1E143D6B for ; Wed, 28 Dec 2005 10:00:20 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from freefall.freebsd.org (fenner@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBSA0Hls004204 for ; Wed, 28 Dec 2005 10:00:17 GMT (envelope-from fenner@freefall.freebsd.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBSA0HJe004188 for ports@freebsd.org; Wed, 28 Dec 2005 10:00:17 GMT (envelope-from fenner) Date: Wed, 28 Dec 2005 10:00:17 GMT From: Bill Fenner Message-Id: <200512281000.jBSA0HJe004188@freefall.freebsd.org> To: ports@freebsd.org Cc: Subject: Possibly unbuildable ports reminder X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2005 10:00:21 -0000 Dear porters, This is just a reminder to please periodically check the list of unbuildable ports at http://pointyhat.freebsd.org/errorlogs/ . A list by MAINTAINER is http://people.freebsd.org/~fenner/errorlogs/ so you can easily check the status of ports that you maintain. In addition, the list of ports with no MAINTAINER with build problems is http://people.freebsd.org/~fenner/errorlogs/ports@freebsd.org.html Since no one is responsible for these ports, the problem won't get fixed unless someone on this list takes the initiative. Thanks for your help! Bill "annoying port email" Fenner From owner-freebsd-ports@FreeBSD.ORG Wed Dec 28 10:50:53 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDDB416A420 for ; Wed, 28 Dec 2005 10:50:53 +0000 (GMT) (envelope-from ume@mahoroba.org) Received: from ameno.mahoroba.org (gw4.mahoroba.org [218.45.22.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id A91FD43D60 for ; Wed, 28 Dec 2005 10:50:51 +0000 (GMT) (envelope-from ume@mahoroba.org) Received: from localhost (IDENT:O1mpTUHFTK/J6GNH8Ik7V0HOGXTXmWDL+O6PzQZxcMTIjMcGs+kFZ087NUgsi8Gk@localhost [IPv6:::1]) (user=ume mech=CRAM-MD5 bits=0) by ameno.mahoroba.org (8.13.4/8.13.4) with ESMTP/inet6 id jBSAoWIs081122 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 28 Dec 2005 19:50:33 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Wed, 28 Dec 2005 19:50:32 +0900 Message-ID: From: Hajimu UMEMOTO To: Sam Lawrance In-Reply-To: References: <43B1AF8C.8090807@gmail.com> User-Agent: xcite1.38> Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.7 (=?ISO-8859-4?Q?Sanj=F2?=) APEL/10.6 Emacs/21.3 (i386--freebsd) MULE/5.0 (SAKAKI) X-Operating-System: FreeBSD 5.4-STABLE X-PGP-Key: http://www.imasy.or.jp/~ume/publickey.asc X-PGP-Fingerprint: 1F00 0B9E 2164 70FC 6DC5 BF5F 04E9 F086 BF90 71FE Organization: Internet Mutual Aid Society, YOKOHAMA MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (ameno.mahoroba.org [IPv6:::1]); Wed, 28 Dec 2005 19:50:34 +0900 (JST) X-Virus-Scanned: by amavisd-new X-Virus-Status: Clean X-Spam-Status: No, score=-3.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on ameno.mahoroba.org Cc: ports@freebsd.org, "Laurent C." Subject: Re: Are graphics/libgrass5 and databases/grass-i18n deprecated ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2005 10:50:54 -0000 Hi, >>>>> On Wed, 28 Dec 2005 20:57:37 +1100 >>>>> Sam Lawrance said: boris> libgrass was recently marked DEPRECATED. There is at least one port boris> depending on grass-i18n; perhaps it can use grass 6 and then grass- boris> i18n can be marked DEPRECATED. Could you take a look and send-pr it? The grass-i18n archive has nice Japanese TrueType fonts in it, and japanese/ipa-ttfonts refers them. I believe grass6 doesn't have them because of the license restriction of them. Sincerely, -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@{,jp.}FreeBSD.org http://www.imasy.org/~ume/ From owner-freebsd-ports@FreeBSD.ORG Wed Dec 28 13:26:07 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCE4616A420; Wed, 28 Dec 2005 13:26:07 +0000 (GMT) (envelope-from secnews@oxygen.az) Received: from mail.alkar.net (mail.alkar.net [195.248.191.95]) by mx1.FreeBSD.org (Postfix) with ESMTP id A003043D46; Wed, 28 Dec 2005 13:26:06 +0000 (GMT) (envelope-from secnews@oxygen.az) Received: from [213.227.193.75] (HELO [192.168.0.178]) by mail.alkar.net (CommuniGate Pro SMTP 4.3.9) with ESMTP id 418738980; Wed, 28 Dec 2005 15:26:05 +0200 Message-ID: <43B2AEB5.9080005@oxygen.az> Date: Wed, 28 Dec 2005 15:26:45 +0000 From: Tofik Suleymanov User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050404) X-Accept-Language: en-us, en MIME-Version: 1.0 To: pav@FreeBSD.org References: <43B1BF11.10808@oxygen.az> <1135715364.83838.36.camel@localhost> In-Reply-To: <1135715364.83838.36.camel@localhost> Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 8bit Cc: ports@FreeBSD.org, Tofik Suleymanov , aliyevj@hotmail.com, questions@FreeBSD.org Subject: Re: port tree fetch errors X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2005 13:26:08 -0000 Pav Lucistnik wrote: >Tofik Suleymanov pí¹e v út 27. 12. 2005 v 22:24 +0000: > > >>My ports-supfile is: >> >>*default host=cvsup.nl.FreeBSD.org >>*default base=/var/db >>*default prefix=/usr >>*default release=cvs tag=. >>*default delete use-rel-suffix >>*default compress >>ports-all >> >>i do: >> >>cvsup -g -z -L 2 /etc/ports-supfile >> >>and get this: >> >>Updating collection ports-all/cvs >>Cannot calculate checksum for "/usr/ports/devel/boost/pkg-plist": >>Input/output error >>Cannot calculate checksum for >>"/usr/ports/devel/clint/files/patch-python.h": Input/output error >>Cannot calculate checksum for >>"/usr/ports/devel/crossgo32-djgpp2/pkg-plist": Input/output error >> Checkout ports/devel/Makefile >>Cannot calculate checksum for "/usr/ports/devel/elib/files/patch-aa": >>Input/output error >> >> > >Can you read the content of those files? I'd bet you got either >corrupted filesystem, or your hard drive is dying. > > > The problem was in my hard disk.Thank you. From owner-freebsd-ports@FreeBSD.ORG Wed Dec 28 15:53:23 2005 Return-Path: X-Original-To: ports@FreeBSD.Org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A63B316A41F for ; Wed, 28 Dec 2005 15:53:23 +0000 (GMT) (envelope-from info@mail.kinoko-sarada.com) Received: from mail.kinoko-sarada.com (ip-201-134-66-202.rev.dyxnet.com [202.66.134.201]) by mx1.FreeBSD.org (Postfix) with SMTP id 012EB43D45 for ; Wed, 28 Dec 2005 15:53:19 +0000 (GMT) (envelope-from info@mail.kinoko-sarada.com) Received: (qmail 32104 invoked by uid 509); 28 Dec 2005 20:19:40 +0900 Date: 28 Dec 2005 20:19:40 +0900 Message-ID: <20051228111940.32102.qmail@mail.kinoko-sarada.com> From: info@kinoko-sarada.com To: ports@FreeBSD.Org Cc: Subject: $B?M:J"NB.96(B X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2005 15:53:23 -0000 *-$B!y(B-*==$B%;%l%V>n(B100$BK|?MEPO?(B==*-$B!y(B-* $B=P2q$$(B200$B!s$r$44.G=2<$5$$$^$;!#(B $B"h(B*$B!h"h(B*$B!h!h"h!z!h"h!h(B*$B"h!h"h!h(B*$B"h!h"h!y!h"h!h(B*$B"h!h"h!'!h"h!z!h"h(B*$B"h(B http://www.himitsuno-sasayaki5.net/?kane $B%a!<%k$@$+$i$$$D$G$b$I$3$G$bB.968!:w$GB.962q$($k!*(B $B@$$NCf$N=w@-$NCf$G!"?M:J$,0lHV=P2q$($^$9!#$=$l$O!";~4V$H$*6b$KM>M5$,$"$j!"C6Fa$H$N(BSEX$B$KK0$-$F$$$k$+$i$G$9!#:J$H$O$3$&$"$k$Y$-!"$H$$$&2>LL$rC&$$$@H`=wC#(B5742$B?M$K$4EPO?$$$?$@$$$F$*$j$^$9!#(B -------------------------------------------------------------------------------- $B!!!!!!"#"#Ev%5%$%H$NFCD'"#"#(B $B!z(,(,(,(,(,(,(,(,(,(,(,(,(,(,!z(B $BEPO?$5$l$?J}$@$1$K2hA|7G<(HD$r$4MxMQ$7$FD:$-!"?M:J$H$N=P2q$$$r%5%]!<%H$7$^$9!#(B $B2hA|7G<(HD$K$O?M:J2q0wMM$N%a!<%k%"%I%l%9$dHV9f$,=q$+$l$F$*$j!"$=$N$^$^D>$GO"Mm$r X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C2CF16A41F for ; Wed, 28 Dec 2005 15:53:41 +0000 (GMT) (envelope-from info@mail.kinoko-sarada.com) Received: from mail.kinoko-sarada.com (ip-199-134-66-202.rev.dyxnet.com [202.66.134.199]) by mx1.FreeBSD.org (Postfix) with SMTP id 00FAD43D76 for ; Wed, 28 Dec 2005 15:53:37 +0000 (GMT) (envelope-from info@mail.kinoko-sarada.com) Received: (qmail 32109 invoked by uid 509); 28 Dec 2005 20:19:40 +0900 Date: 28 Dec 2005 20:19:40 +0900 Message-ID: <20051228111940.32107.qmail@mail.kinoko-sarada.com> From: info@kinoko-sarada.com To: ports@FreeBSD.org Cc: Subject: $B?M:J"NB.96(B X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2005 15:53:41 -0000 *-$B!y(B-*==$B%;%l%V>n(B100$BK|?MEPO?(B==*-$B!y(B-* $B=P2q$$(B200$B!s$r$44.G=2<$5$$$^$;!#(B $B"h(B*$B!h"h(B*$B!h!h"h!z!h"h!h(B*$B"h!h"h!h(B*$B"h!h"h!y!h"h!h(B*$B"h!h"h!'!h"h!z!h"h(B*$B"h(B http://www.himitsuno-sasayaki5.net/?kane $B%a!<%k$@$+$i$$$D$G$b$I$3$G$bB.968!:w$GB.962q$($k!*(B $B@$$NCf$N=w@-$NCf$G!"?M:J$,0lHV=P2q$($^$9!#$=$l$O!";~4V$H$*6b$KM>M5$,$"$j!"C6Fa$H$N(BSEX$B$KK0$-$F$$$k$+$i$G$9!#:J$H$O$3$&$"$k$Y$-!"$H$$$&2>LL$rC&$$$@H`=wC#(B5742$B?M$K$4EPO?$$$?$@$$$F$*$j$^$9!#(B -------------------------------------------------------------------------------- $B!!!!!!"#"#Ev%5%$%H$NFCD'"#"#(B $B!z(,(,(,(,(,(,(,(,(,(,(,(,(,(,!z(B $BEPO?$5$l$?J}$@$1$K2hA|7G<(HD$r$4MxMQ$7$FD:$-!"?M:J$H$N=P2q$$$r%5%]!<%H$7$^$9!#(B $B2hA|7G<(HD$K$O?M:J2q0wMM$N%a!<%k%"%I%l%9$dHV9f$,=q$+$l$F$*$j!"$=$N$^$^D>$GO"Mm$r X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75FE516A42A for ; Wed, 28 Dec 2005 15:53:53 +0000 (GMT) (envelope-from info@mail.kinoko-sarada.com) Received: from mail.kinoko-sarada.com (ip-201-134-66-202.rev.dyxnet.com [202.66.134.201]) by mx1.FreeBSD.org (Postfix) with SMTP id 7B88043D8B for ; Wed, 28 Dec 2005 15:53:36 +0000 (GMT) (envelope-from info@mail.kinoko-sarada.com) Received: (qmail 32119 invoked by uid 509); 28 Dec 2005 20:19:40 +0900 Date: 28 Dec 2005 20:19:40 +0900 Message-ID: <20051228111940.32117.qmail@mail.kinoko-sarada.com> From: info@kinoko-sarada.com To: ports@freebsd.org Cc: Subject: $B?M:J"NB.96(B X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2005 15:53:53 -0000 *-$B!y(B-*==$B%;%l%V>n(B100$BK|?MEPO?(B==*-$B!y(B-* $B=P2q$$(B200$B!s$r$44.G=2<$5$$$^$;!#(B $B"h(B*$B!h"h(B*$B!h!h"h!z!h"h!h(B*$B"h!h"h!h(B*$B"h!h"h!y!h"h!h(B*$B"h!h"h!'!h"h!z!h"h(B*$B"h(B http://www.himitsuno-sasayaki5.net/?kane $B%a!<%k$@$+$i$$$D$G$b$I$3$G$bB.968!:w$GB.962q$($k!*(B $B@$$NCf$N=w@-$NCf$G!"?M:J$,0lHV=P2q$($^$9!#$=$l$O!";~4V$H$*6b$KM>M5$,$"$j!"C6Fa$H$N(BSEX$B$KK0$-$F$$$k$+$i$G$9!#:J$H$O$3$&$"$k$Y$-!"$H$$$&2>LL$rC&$$$@H`=wC#(B5742$B?M$K$4EPO?$$$?$@$$$F$*$j$^$9!#(B -------------------------------------------------------------------------------- $B!!!!!!"#"#Ev%5%$%H$NFCD'"#"#(B $B!z(,(,(,(,(,(,(,(,(,(,(,(,(,(,!z(B $BEPO?$5$l$?J}$@$1$K2hA|7G<(HD$r$4MxMQ$7$FD:$-!"?M:J$H$N=P2q$$$r%5%]!<%H$7$^$9!#(B $B2hA|7G<(HD$K$O?M:J2q0wMM$N%a!<%k%"%I%l%9$dHV9f$,=q$+$l$F$*$j!"$=$N$^$^D>$GO"Mm$r X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7377216A41F for ; Wed, 28 Dec 2005 18:37:36 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from out4.smtp.messagingengine.com (out4.smtp.messagingengine.com [66.111.4.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id C119143D49 for ; Wed, 28 Dec 2005 18:37:35 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from frontend1.internal (mysql-sessions.internal [10.202.2.149]) by frontend1.messagingengine.com (Postfix) with ESMTP id 1E1A7D2DA64 for ; Wed, 28 Dec 2005 13:37:34 -0500 (EST) Received: from frontend2.messagingengine.com ([10.202.2.151]) by frontend1.internal (MEProxy); Wed, 28 Dec 2005 13:37:34 -0500 X-Sasl-enc: M9aBPs1kzEZOZA+td70CbXm6YtPGgbyDVmOmsmp22F0z 1135795053 Received: from gumby.localdomain (88-104-200-184.dynamic.dsl.as9105.com [88.104.200.184]) by frontend2.messagingengine.com (Postfix) with ESMTP id 412B357146C for ; Wed, 28 Dec 2005 13:37:32 -0500 (EST) From: RW To: freebsd-ports@freebsd.org Date: Wed, 28 Dec 2005 18:37:30 +0000 User-Agent: KMail/1.8.3 References: <43ADE878.50600@kutulu.org> In-Reply-To: <43ADE878.50600@kutulu.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200512281837.31632.list-freebsd-2004@morbius.sent.com> Subject: Re: Postfix 2.2.7, 1 (portupgrade from 2.2.5_1, 1) on FreeBSD 5 stable X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2005 18:37:36 -0000 On Sunday 25 December 2005 00:31, Mike Edenfield wrote: > Yuval Levy wrote: > > Thank you very much for your support. I think I solved my problem and I > > hope that what I found will help others, so here it is, in painful > > detail, with some questions raised. > > > > => Attempting to fetch from http://web.onda.com.br/nadal/postfix/VDA/. > > fetch: postfix-2.2.5-vda.patch.gz: local modification time does not > > match remote > > This error indicates the real cause of your problem. It > means that fetch had previously downloaded a portion of the > file in question, but for some reason did not complete the > download. When it attemps to resume the download it is now > complaining that the remote file has been modified since the > local file was originally fetched, so it cannot resume the > download. The reason why fetch doesn't do the obvious here > and simply delete the local file and start over is something > I can't answer, but it doesn't. It skips that download site > and moves on. > > > Since it starts to become clear to me that I will not be able to simply > > portupgrade, I tried a radical approach: > > > > cd /usr/ports/mail/postfix > > make distclean > > This was actually the correct fix. You cleaned out whatever > partially downloaded file fetch was complaining about, so > that the next time you ran portupgrade it was able to > re-download the entire file cleanly. Alternately you could > have simply done: > > rm /usr/ports/distfiles/postfix-2.2.5-vda.patch.gz I used to get this problem a lot when I used a dialup account with auto-disconnection. The first few time I did what you suggested above, and deleted the partial file. However I then started manually resuming it, and eventually added the following to make.conf: FETCH_CMD= fetch -FARr The -F flag tells fetch to simply ignore the timestamp. In practice I found that the download would go on to pass the MD5 check over 90% of the time. On the few occasions it failed, someone had modified the source and it was out of sync with the port MD5 value, so deletion would not have worked either. From owner-freebsd-ports@FreeBSD.ORG Wed Dec 28 19:38:58 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8E1A16A41F for ; Wed, 28 Dec 2005 19:38:58 +0000 (GMT) (envelope-from ashok.shrestha@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A0C543D77 for ; Wed, 28 Dec 2005 19:38:54 +0000 (GMT) (envelope-from ashok.shrestha@gmail.com) Received: by wproxy.gmail.com with SMTP id 71so1264898wra for ; Wed, 28 Dec 2005 11:38:53 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=SZDpuyKGiT7G9nTy/Cs2NNE0q7F3h088JYrhgVTfv9eUk+VJtfPU+3cO981tjGk2ZCBRgjQllX3dBBvbVUJPX6XUzwSBrWBnfo5hN6kyothETLQElwaB7zzy7GLVxJUJVLmQa7XzHMOmhAhY9fBbcfXxzrVxjDHVlGW3iQO2PhY= Received: by 10.54.96.2 with SMTP id t2mr7040354wrb; Wed, 28 Dec 2005 11:38:53 -0800 (PST) Received: by 10.54.127.14 with HTTP; Wed, 28 Dec 2005 11:38:53 -0800 (PST) Message-ID: <79e2026f0512281138r71c78ccclfc8383d1be69a00e@mail.gmail.com> Date: Wed, 28 Dec 2005 14:38:53 -0500 From: Ashok Shrestha To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: make configuration help: super-smack X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2005 19:38:58 -0000 Hi, I was installing super-smack: portinstall -P super-smack It prompted me to choose options for mysql and postgres. So I chose both of them. But immediately after, I realized I don't want postgres. So I aborted: ctrl-C. But now everytime I portinstall or make from super-smack ports directory, it assumes I want postgres. Where is this configuration stored? How do I revert it to default so that it will prompt me to choose options for mysql and postgres? -- Ashok Shrestha From owner-freebsd-ports@FreeBSD.ORG Wed Dec 28 19:45:21 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C458A16A41F for ; Wed, 28 Dec 2005 19:45:21 +0000 (GMT) (envelope-from fcash@ocis.net) Received: from smtp.sd73.bc.ca (smtp.sd73.bc.ca [142.24.13.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CE9643D5A for ; Wed, 28 Dec 2005 19:45:21 +0000 (GMT) (envelope-from fcash@ocis.net) Received: from localhost (localhost [127.0.0.1]) by localhost.sd73.bc.ca (Postfix) with ESMTP id 34BD58A006F for ; Wed, 28 Dec 2005 11:45:32 -0800 (PST) Received: from smtp.sd73.bc.ca ([127.0.0.1]) by localhost (smtp.sd73.bc.ca [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 32987-01-97 for ; Wed, 28 Dec 2005 11:45:26 -0800 (PST) Received: from [192.168.0.157] (unknown [192.168.0.157]) by smtp.sd73.bc.ca (Postfix) with ESMTP id 43BFF8A0088 for ; Wed, 28 Dec 2005 11:45:26 -0800 (PST) From: Freddie Cash To: freebsd-ports@freebsd.org Date: Wed, 28 Dec 2005 11:45:09 -0800 User-Agent: KMail/1.8.3 References: <79e2026f0512281138r71c78ccclfc8383d1be69a00e@mail.gmail.com> In-Reply-To: <79e2026f0512281138r71c78ccclfc8383d1be69a00e@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200512281145.10490.fcash@ocis.net> X-Virus-Scanned: by amavisd-new using ClamAV at sd73.bc.ca Subject: Re: make configuration help: super-smack X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2005 19:45:21 -0000 On December 28, 2005 11:38 am, Ashok Shrestha wrote: > I was installing super-smack: portinstall -P super-smack > It prompted me to choose options for mysql and postgres. So I chose > both of them. But immediately after, I realized I don't want postgres. > So I aborted: ctrl-C. > But now everytime I portinstall or make from super-smack ports > directory, it assumes I want postgres. > Where is this configuration stored? How do I revert it to default so > that it will prompt me to choose options for mysql and postgres? Either delete /var/db/ports/super-smack/ or run "make rmconfig" or "make config" from the super-smack port's directory. -- Freddie Cash fcash@ocis.net From owner-freebsd-ports@FreeBSD.ORG Wed Dec 28 21:55:50 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A86C16A41F for ; Wed, 28 Dec 2005 21:55:50 +0000 (GMT) (envelope-from ashok.shrestha@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6902C43D49 for ; Wed, 28 Dec 2005 21:55:49 +0000 (GMT) (envelope-from ashok.shrestha@gmail.com) Received: by wproxy.gmail.com with SMTP id 71so1283786wra for ; Wed, 28 Dec 2005 13:55:48 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=aBMmlOpGUuMrlM2Ox/TGjkwscKkaQdwd1n9yPChN6DBhAfVG+30qhKtyEIKyti7vAXnriUguhiNT503pu9gylE6STDfcosWaSKKc0+sJdYPy+aZwLDIS1KhMTSWCByTK++q0etHFLWdoLyEtNIVns7rHPyCOR7lxUu1XwcHuouw= Received: by 10.54.113.6 with SMTP id l6mr8938476wrc; Wed, 28 Dec 2005 13:55:46 -0800 (PST) Received: by 10.54.127.14 with HTTP; Wed, 28 Dec 2005 13:55:45 -0800 (PST) Message-ID: <79e2026f0512281355i422e39b6o8ed80da412423e9e@mail.gmail.com> Date: Wed, 28 Dec 2005 16:55:45 -0500 From: Ashok Shrestha To: Freddie Cash In-Reply-To: <200512281145.10490.fcash@ocis.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <79e2026f0512281138r71c78ccclfc8383d1be69a00e@mail.gmail.com> <200512281145.10490.fcash@ocis.net> Cc: freebsd-ports@freebsd.org Subject: Re: make configuration help: super-smack X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2005 21:55:50 -0000 Thank you. On 12/28/05, Freddie Cash wrote: > On December 28, 2005 11:38 am, Ashok Shrestha wrote: > > I was installing super-smack: portinstall -P super-smack > > > It prompted me to choose options for mysql and postgres. So I chose > > both of them. But immediately after, I realized I don't want postgres. > > So I aborted: ctrl-C. > > > But now everytime I portinstall or make from super-smack ports > > directory, it assumes I want postgres. > > > Where is this configuration stored? How do I revert it to default so > > that it will prompt me to choose options for mysql and postgres? > > Either delete /var/db/ports/super-smack/ or run "make rmconfig" or "make > config" from the super-smack port's directory. > > -- > Freddie Cash > fcash@ocis.net > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > -- Ashok Shrestha From owner-freebsd-ports@FreeBSD.ORG Thu Dec 29 01:59:23 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7895E16A41F for ; Thu, 29 Dec 2005 01:59:23 +0000 (GMT) (envelope-from hideo@lastamericanempire.com) Received: from darwin.lastamericanempire.com (lastamericanempire.com [66.134.56.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11E8643D58 for ; Thu, 29 Dec 2005 01:59:22 +0000 (GMT) (envelope-from hideo@lastamericanempire.com) Received: by darwin.lastamericanempire.com (Postfix, from userid 1001) id 87FC533C3B; Wed, 28 Dec 2005 18:59:22 -0700 (MST) Date: Wed, 28 Dec 2005 18:59:22 -0700 From: Zach Thompson To: freebsd-ports@freebsd.org Message-ID: <20051229015922.GA7607@lastamericanempire.com> Mail-Followup-To: freebsd-ports@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 Subject: Perl ports...dependencies required only for `make test` X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2005 01:59:23 -0000 Hi, If a Perl module requires a several additional ports solely for "make test" should they be included in the port's BUILD_DEPENDS? If so, should they be excluded from the RUN_DEPENDS? Thanks, Zach Thompson From owner-freebsd-ports@FreeBSD.ORG Thu Dec 29 05:29:25 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E656B16A41F for ; Thu, 29 Dec 2005 05:29:25 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDD2A43D5E for ; Thu, 29 Dec 2005 05:29:24 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 9D5C61A3C1E; Wed, 28 Dec 2005 21:29:24 -0800 (PST) Received: from [127.0.0.1] (localhost [127.0.0.1]) by obsecurity.dyndns.org (Postfix) with ESMTP id 84EB25118E; Thu, 29 Dec 2005 00:29:22 -0500 (EST) Message-ID: <43B3741D.1080907@obsecurity.org> Date: Thu, 29 Dec 2005 15:59:01 +1030 From: Kris Kennaway User-Agent: Mozilla Thunderbird 1.0.7 (Macintosh/20050923) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Zach Thompson References: <20051229015922.GA7607@lastamericanempire.com> In-Reply-To: <20051229015922.GA7607@lastamericanempire.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: Perl ports...dependencies required only for `make test` X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2005 05:29:26 -0000 Zach Thompson wrote: >Hi, > >If a Perl module requires a several additional ports solely for "make test" >should they be included in the port's BUILD_DEPENDS? If so, should they be >excluded from the RUN_DEPENDS? > > At some point I'd like to make running regression tests the norm on the package build cluster. I'd say you should add them to BUILD_DEPENDS by default. They wouldn't be added to RUN_DEPENDS since they are not required after the package is installed. Kris From owner-freebsd-ports@FreeBSD.ORG Thu Dec 29 05:30:51 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7317C16A463 for ; Thu, 29 Dec 2005 05:30:51 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3109B43D45 for ; Thu, 29 Dec 2005 05:30:51 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 126881A3C24; Wed, 28 Dec 2005 21:30:51 -0800 (PST) Received: from [127.0.0.1] (localhost [127.0.0.1]) by obsecurity.dyndns.org (Postfix) with ESMTP id 050615118E; Thu, 29 Dec 2005 00:30:48 -0500 (EST) Message-ID: <43B37473.4030808@obsecurity.org> Date: Thu, 29 Dec 2005 16:00:27 +1030 From: Kris Kennaway User-Agent: Mozilla Thunderbird 1.0.7 (Macintosh/20050923) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Pawel References: <43B01478.4010908@gmail.com> <20051226164931.GB16292@xor.obsecurity.org> <43B03EEC.6050400@gmail.com> In-Reply-To: <43B03EEC.6050400@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: What flags package was compiled with? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2005 05:30:52 -0000 Pawel wrote: > Kris Kennaway wrote: > >> This information is not directly recorded, although sometimes you can >> infer it from the list of dependencies. > > > Thanks > But in general, packages have been compiled with "default" port's > Makefile flags. Is that correct? The packages you can download from the FreeBSD ftp site are all built with default options. Packages built by users 'by hand' or downloaded from some other site may or may not. Kris From owner-freebsd-ports@FreeBSD.ORG Thu Dec 29 06:44:49 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45E7B16A41F for ; Thu, 29 Dec 2005 06:44:49 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mail2.fluidhosting.com [204.14.90.12]) by mx1.FreeBSD.org (Postfix) with SMTP id 520D543D58 for ; Thu, 29 Dec 2005 06:44:47 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 99854 invoked by uid 399); 29 Dec 2005 06:44:47 -0000 Received: from localhost (HELO ?192.168.1.101?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 29 Dec 2005 06:44:47 -0000 Message-ID: <43B385DD.2000909@FreeBSD.org> Date: Wed, 28 Dec 2005 22:44:46 -0800 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 1.5 (X11/20051226) MIME-Version: 1.0 To: Kris Kennaway References: <20051229015922.GA7607@lastamericanempire.com> <43B3741D.1080907@obsecurity.org> In-Reply-To: <43B3741D.1080907@obsecurity.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: Perl ports...dependencies required only for `make test` X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2005 06:44:49 -0000 Kris Kennaway wrote: > Zach Thompson wrote: > >> Hi, >> >> If a Perl module requires a several additional ports solely for "make >> test" >> should they be included in the port's BUILD_DEPENDS? If so, should >> they be >> excluded from the RUN_DEPENDS? >> > At some point I'd like to make running regression tests the norm on the > package build cluster. I'd say you should add them to BUILD_DEPENDS by > default. They wouldn't be added to RUN_DEPENDS since they are not > required after the package is installed. I think regression tests on the cluster is a great idea, but can we hide this behind PACKAGE_BUILDING or something? As a perl user, I would not want to have a bunch of dependencies to install and maintain whose sole purpose is to support tests that I'll never run. Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Thu Dec 29 07:08:06 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0A7D16A41F; Thu, 29 Dec 2005 07:08:05 +0000 (GMT) (envelope-from boris@brooknet.com.au) Received: from mailout1.pacific.net.au (mailout1.pacific.net.au [61.8.0.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60B3143D62; Thu, 29 Dec 2005 07:08:03 +0000 (GMT) (envelope-from boris@brooknet.com.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.0.86]) by mailout1.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id jBT780au017021; Thu, 29 Dec 2005 18:08:00 +1100 Received: from [61.8.32.181] (ppp20B5.dyn.pacific.net.au [61.8.32.181]) by mailproxy1.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id jBT77wkm022738; Thu, 29 Dec 2005 18:07:58 +1100 In-Reply-To: <43B385DD.2000909@FreeBSD.org> References: <20051229015922.GA7607@lastamericanempire.com> <43B3741D.1080907@obsecurity.org> <43B385DD.2000909@FreeBSD.org> Mime-Version: 1.0 (Apple Message framework v746.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Sam Lawrance Date: Thu, 29 Dec 2005 18:08:02 +1100 To: Doug Barton X-Mailer: Apple Mail (2.746.2) Cc: freebsd-ports@freebsd.org, Kris Kennaway Subject: Re: Perl ports...dependencies required only for `make test` X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2005 07:08:06 -0000 On 29/12/2005, at 5:44 PM, Doug Barton wrote: > Kris Kennaway wrote: >> Zach Thompson wrote: >>> Hi, >>> >>> If a Perl module requires a several additional ports solely for >>> "make test" >>> should they be included in the port's BUILD_DEPENDS? If so, >>> should they be >>> excluded from the RUN_DEPENDS? >> At some point I'd like to make running regression tests the norm >> on the package build cluster. I'd say you should add them to >> BUILD_DEPENDS by default. They wouldn't be added to RUN_DEPENDS >> since they are not required after the package is installed. > > I think regression tests on the cluster is a great idea, but can we > hide this behind PACKAGE_BUILDING or something? As a perl user, I > would not want to have a bunch of dependencies to install and > maintain whose sole purpose is to support tests that I'll never run. > Sounds like a candidate for KNOBS, eg WITH_TESTS. From owner-freebsd-ports@FreeBSD.ORG Thu Dec 29 12:47:56 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A5E816A41F for ; Thu, 29 Dec 2005 12:47:56 +0000 (GMT) (envelope-from lynx@big.esls.susu.ac.ru) Received: from big.esls.susu.ac.ru (big.esls.susu.ac.ru [193.233.80.233]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC11643D5D for ; Thu, 29 Dec 2005 12:47:52 +0000 (GMT) (envelope-from lynx@big.esls.susu.ac.ru) Received: by big.esls.susu.ac.ru (ESMTP, from userid 666) id A5B4816481B; Thu, 29 Dec 2005 17:47:53 +0500 (YEKT) To: freebsd-ports@freebsd.org Message-Id: <20051229124753.A5B4816481B@big.esls.susu.ac.ru> Date: Thu, 29 Dec 2005 17:47:53 +0500 (YEKT) From: lynx@big.esls.susu.ac.ru (Lynx) Subject: Problem with Samba3 startup X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2005 12:47:56 -0000 I'm update system FreeBSD 6.0 today and have problem with Samba3(/usr/ports/net/samba3/) startup. Use mergemaster after make installworld and replace scripts in rc.d reboot and have: Mounting NFS file systems: From owner-freebsd-ports@FreeBSD.ORG Thu Dec 29 12:50:46 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11C3616A41F for ; Thu, 29 Dec 2005 12:50:46 +0000 (GMT) (envelope-from lynx@big.esls.susu.ac.ru) Received: from big.esls.susu.ac.ru (big.esls.susu.ac.ru [193.233.80.233]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5941243D5F for ; Thu, 29 Dec 2005 12:50:45 +0000 (GMT) (envelope-from lynx@big.esls.susu.ac.ru) Received: by big.esls.susu.ac.ru (ESMTP, from userid 666) id B01FC16481B; Thu, 29 Dec 2005 17:50:47 +0500 (YEKT) To: freebsd-ports@freebsd.org Message-Id: <20051229125047.B01FC16481B@big.esls.susu.ac.ru> Date: Thu, 29 Dec 2005 17:50:47 +0500 (YEKT) From: lynx@big.esls.susu.ac.ru (Lynx) Subject: Problem with Samba3 startup X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2005 12:50:46 -0000 I'm update system FreeBSD 6.0 today and have problem with Samba3(/usr/ports/net/samba3/) startup. Use mergemaster after make installworld and replace scripts in rc.d reboot and have: Mounting NFS file systems Creating and/or trimming log files Starting syslogd /etc/rc: WARNING: Dump device does not exist. Savecore not run. Starting SAMBA: removing stale tdbs : Starting nmbd. /libexec/ld-elf.so.1: Shared object "libiconv.so.3" not found, required by "nmbd" Starting smbd. /libexec/ld-elf.so.1: Shared object "libiconv.so.3" not found, required by "smbd" ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib /usr/local/lib/compat/pkg a.out ldconfig path: /usr/lib/aout /usr/lib/compat/aou ... -- noc@esls.susu.ac.ru From owner-freebsd-ports@FreeBSD.ORG Thu Dec 29 13:17:06 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 212EE16A41F for ; Thu, 29 Dec 2005 13:17:06 +0000 (GMT) (envelope-from phoemix@harmless.hu) Received: from marvin.harmless.hu (marvin.harmless.hu [217.27.212.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id 488E343D64 for ; Thu, 29 Dec 2005 13:16:59 +0000 (GMT) (envelope-from phoemix@harmless.hu) Received: from localhost (localhost [127.0.0.1]) by marvin (Postfix) with ESMTP id 251AA20020B2; Thu, 29 Dec 2005 14:16:47 +0100 (CET) Received: from marvin.harmless.hu ([127.0.0.1]) by localhost (marvin [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21901-10; Thu, 29 Dec 2005 14:16:42 +0100 (CET) Received: by marvin (Postfix, from userid 1000) id 831E720020B1; Thu, 29 Dec 2005 14:16:41 +0100 (CET) Date: Thu, 29 Dec 2005 14:16:41 +0100 To: rooneg@electricjellyfish.net, ports@freebsd.org Message-ID: <20051229131641.GA9488@marvin.harmless.hu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pf9I7BMVVzbSWLtt" Content-Disposition: inline User-Agent: Mutt/1.5.9i From: phoemix@harmless.hu (Gergely CZUCZY) X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at harmless.hu Cc: Subject: dog port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2005 13:17:06 -0000 --pf9I7BMVVzbSWLtt Content-Type: text/plain; charset=utf-8 Content-Disposition: inline hello this speaks for itself: trillian:/usr/ports# make search name=^dog Port: dog-1.7_1 Path: /usr/ports/misc/dog Info: Dog writes the contents of each given file, URL, or stdin Maint: rooneg@electricjellyfish.net B-deps: gettext-0.14.5 gmake-3.80_2 libiconv-1.9.2_1 R-deps: WWW: trillian:/usr/ports# cd /usr/ports/misc/dog/ -su: cd: /usr/ports/misc/dog/: No such file or directory trillian:/usr/ports# find ./ -type d -name dog trillian:/usr/ports# what happened to the port? have it ever existed? Bye, Gergely Czuczy mailto: gergely.czuczy@harmless.hu PGP: http://phoemix.harmless.hu/phoemix.pgp Weenies test. Geniuses solve problems that arise. --pf9I7BMVVzbSWLtt Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFDs+G5bBsEN0U7BV0RAq9RAJ4w8/hBdfIx+UkPumrdx3MXNSwFOQCdHCxn yiKCWmyCenLjRhZ0wXfXExU= =gu53 -----END PGP SIGNATURE----- --pf9I7BMVVzbSWLtt-- From owner-freebsd-ports@FreeBSD.ORG Thu Dec 29 13:24:29 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5209816A420 for ; Thu, 29 Dec 2005 13:24:29 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34B9743D4C for ; Thu, 29 Dec 2005 13:24:28 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: by wproxy.gmail.com with SMTP id i6so1398275wra for ; Thu, 29 Dec 2005 05:24:27 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:user-agent:cc:references:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=EmsHpiypUuXcclaxbmEH1exS2oHw4CeqFDUdUDfWZ/xO9Zc9rKkvYaFRCxT3SuoIiZOd6UYTXcV8b3N3yhFOmw4EfQVKqJ/7ZtzX6LRmv7U3KNEsqdC6rf7fam6N4fQHq3O22LuQLlD39Qji56k9e0zLMbMBIkuq4u5UOdmQpBA= Received: by 10.54.108.11 with SMTP id g11mr9011443wrc; Thu, 29 Dec 2005 05:24:27 -0800 (PST) Received: from ringworm.mechee.com ( [71.102.22.155]) by mx.gmail.com with ESMTP id 34sm10154420wra.2005.12.29.05.24.26; Thu, 29 Dec 2005 05:24:27 -0800 (PST) From: "Michael C. Shultz" To: freebsd-ports@freebsd.org Date: Thu, 29 Dec 2005 05:24:22 -0800 User-Agent: KMail/1.8.3 References: <20051229131641.GA9488@marvin.harmless.hu> In-Reply-To: <20051229131641.GA9488@marvin.harmless.hu> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200512290524.23696.ringworm01@gmail.com> Cc: rooneg@electricjellyfish.net, Gergely CZUCZY Subject: Re: dog port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2005 13:24:29 -0000 On Thursday 29 December 2005 05:16, Gergely CZUCZY wrote: > hello > > this speaks for itself: > trillian:/usr/ports# make search name=^dog > Port: dog-1.7_1 > Path: /usr/ports/misc/dog > Info: Dog writes the contents of each given file, URL, or stdin > Maint: rooneg@electricjellyfish.net > B-deps: gettext-0.14.5 gmake-3.80_2 libiconv-1.9.2_1 > R-deps: > WWW: > > trillian:/usr/ports# cd /usr/ports/misc/dog/ > -su: cd: /usr/ports/misc/dog/: No such file or directory > trillian:/usr/ports# find ./ -type d -name dog > trillian:/usr/ports# > > what happened to the port? have it ever existed? > > Bye, > > Gergely Czuczy > mailto: gergely.czuczy@harmless.hu > PGP: http://phoemix.harmless.hu/phoemix.pgp > > Weenies test. Geniuses solve problems that arise. In /usr/ports/MOVED is this: misc/dog||2005-12-15|Mastersite disappeared -Mike From owner-freebsd-ports@FreeBSD.ORG Thu Dec 29 13:28:05 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FC8016A41F for ; Thu, 29 Dec 2005 13:28:05 +0000 (GMT) (envelope-from boris@brooknet.com.au) Received: from mailout1.pacific.net.au (mailout1.pacific.net.au [61.8.0.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A61743D53 for ; Thu, 29 Dec 2005 13:28:03 +0000 (GMT) (envelope-from boris@brooknet.com.au) Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.0.87]) by mailout1.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id jBTDRxLZ027378; Fri, 30 Dec 2005 00:27:59 +1100 Received: from [61.8.45.146] (ppp2D92.dyn.pacific.net.au [61.8.45.146]) by mailproxy2.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id jBTDRuOo006001; Fri, 30 Dec 2005 00:27:57 +1100 In-Reply-To: <20051229131641.GA9488@marvin.harmless.hu> References: <20051229131641.GA9488@marvin.harmless.hu> Mime-Version: 1.0 (Apple Message framework v746.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Sam Lawrance Date: Fri, 30 Dec 2005 00:28:00 +1100 To: phoemix@harmless.hu (Gergely CZUCZY) X-Mailer: Apple Mail (2.746.2) Cc: rooneg@electricjellyfish.net, ports@freebsd.org Subject: Re: dog port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2005 13:28:05 -0000 On 30/12/2005, at 12:16 AM, Gergely CZUCZY wrote: > hello > > this speaks for itself: > trillian:/usr/ports# make search name=^dog > Port: dog-1.7_1 > Path: /usr/ports/misc/dog > Info: Dog writes the contents of each given file, URL, or stdin > Maint: rooneg@electricjellyfish.net > B-deps: gettext-0.14.5 gmake-3.80_2 libiconv-1.9.2_1 > R-deps: > WWW: > > trillian:/usr/ports# cd /usr/ports/misc/dog/ > -su: cd: /usr/ports/misc/dog/: No such file or directory > trillian:/usr/ports# find ./ -type d -name dog > trillian:/usr/ports# > > what happened to the port? have it ever existed? The port was unfetchable, marked DEPRECATED for 2 months and finally removed two weeks ago (see history at http://cvsweb.freebsd.org/ports/ misc/dog/). Your INDEX needs to be updated. Run 'make fetchindex'. From owner-freebsd-ports@FreeBSD.ORG Thu Dec 29 13:29:41 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C09FF16A41F for ; Thu, 29 Dec 2005 13:29:41 +0000 (GMT) (envelope-from phoemix@harmless.hu) Received: from marvin.harmless.hu (marvin.harmless.hu [217.27.212.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E41A43D5A for ; Thu, 29 Dec 2005 13:29:41 +0000 (GMT) (envelope-from phoemix@harmless.hu) Received: from localhost (localhost [127.0.0.1]) by marvin (Postfix) with ESMTP id 648D720020B5; Thu, 29 Dec 2005 14:29:39 +0100 (CET) Received: from marvin.harmless.hu ([127.0.0.1]) by localhost (marvin [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26643-02; Thu, 29 Dec 2005 14:29:38 +0100 (CET) Received: by marvin (Postfix, from userid 1000) id B567020020B1; Thu, 29 Dec 2005 14:29:37 +0100 (CET) Date: Thu, 29 Dec 2005 14:29:37 +0100 To: Sam Lawrance Message-ID: <20051229132937.GA22351@marvin.harmless.hu> References: <20051229131641.GA9488@marvin.harmless.hu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+HP7ph2BbKc20aGI" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.9i From: phoemix@harmless.hu (Gergely CZUCZY) X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at harmless.hu Cc: rooneg@electricjellyfish.net, Gergely CZUCZY , ports@freebsd.org Subject: Re: dog port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2005 13:29:41 -0000 --+HP7ph2BbKc20aGI Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Dec 30, 2005 at 12:28:00AM +1100, Sam Lawrance wrote: > >what happened to the port? have it ever existed? >=20 > The port was unfetchable, marked DEPRECATED for 2 months and finally =20 > removed two weeks ago (see history at http://cvsweb.freebsd.org/ports/=20 > misc/dog/). Your INDEX needs to be updated. Run 'make fetchindex'. thank you very much, i will update it Bye, Gergely Czuczy mailto: gergely.czuczy@harmless.hu PGP: http://phoemix.harmless.hu/phoemix.pgp Weenies test. Geniuses solve problems that arise. --+HP7ph2BbKc20aGI Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFDs+TBbBsEN0U7BV0RAlkfAJ43aQU0UHO5O/29Cwz2K7d3ZehqVgCgp+ol ZtZLPeHuSuxU/PAEEL2/S3s= =nNH8 -----END PGP SIGNATURE----- --+HP7ph2BbKc20aGI-- From owner-freebsd-ports@FreeBSD.ORG Thu Dec 29 14:22:48 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9686C16A41F for ; Thu, 29 Dec 2005 14:22:48 +0000 (GMT) (envelope-from flz@xbsd.org) Received: from smtp.xbsd.org (xbsd.org [82.233.2.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F68143D79 for ; Thu, 29 Dec 2005 14:22:28 +0000 (GMT) (envelope-from flz@xbsd.org) Received: from localhost (localhost.xbsd.org [127.0.0.1]) by smtp.xbsd.org (Postfix) with ESMTP id 43FA61160A; Thu, 29 Dec 2005 15:22:26 +0100 (CET) Received: from smtp.xbsd.org ([127.0.0.1]) by localhost (srv1.xbsd.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 66227-05; Thu, 29 Dec 2005 15:22:20 +0100 (CET) Received: from cream.xbsd.org (cream.xbsd.org [192.168.42.6]) by smtp.xbsd.org (Postfix) with ESMTP id D899A115E7; Thu, 29 Dec 2005 15:22:19 +0100 (CET) From: Florent Thoumie To: freebsd-ports@freebsd.org Date: Thu, 29 Dec 2005 15:22:11 +0100 User-Agent: KMail/1.8.2 References: <20051229125047.B01FC16481B@big.esls.susu.ac.ru> In-Reply-To: <20051229125047.B01FC16481B@big.esls.susu.ac.ru> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart2429011.yJ8SbmHIjp"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200512291522.16380.flz@xbsd.org> X-Virus-Scanned: amavisd-new at xbsd.org Cc: Lynx Subject: Re: Problem with Samba3 startup X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2005 14:22:48 -0000 --nextPart2429011.yJ8SbmHIjp Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Thursday 29 December 2005 13:50, Lynx wrote: > I'm update system FreeBSD 6.0 today and have problem with > Samba3(/usr/ports/net/samba3/) startup. Use mergemaster after make > installworld and replace scripts in rc.d reboot and have: > > Mounting NFS file systems > Creating and/or trimming log files > Starting syslogd > /etc/rc: WARNING: Dump device does not exist. Savecore not run. > Starting SAMBA: removing stale tdbs : > Starting nmbd. > /libexec/ld-elf.so.1: > Shared object "libiconv.so.3" not found, required by "nmbd" > Starting smbd. > /libexec/ld-elf.so.1: > Shared object "libiconv.so.3" not found, required by "smbd" > ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib > /usr/local/lib/compat/pkg a.out ldconfig path: /usr/lib/aout > /usr/lib/compat/aou > ... I think samba is started too soon, the rc.d script should REQUIRE ldconfig. =2D-=20 =46lorent Thoumie flz@FreeBSD.org =46reeBSD Committer --nextPart2429011.yJ8SbmHIjp Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQBDs/EYMxEkbVFH3PQRAuC4AJ0cAsmvUDnZm+q7CXt5GZhMDSB3BQCfUhk1 0jkZScchQVYfR+Wqbmb9lLg= =QZp5 -----END PGP SIGNATURE----- --nextPart2429011.yJ8SbmHIjp-- From owner-freebsd-ports@FreeBSD.ORG Thu Dec 29 14:37:41 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0A6716A422 for ; Thu, 29 Dec 2005 14:37:41 +0000 (GMT) (envelope-from flz@xbsd.org) Received: from smtp.xbsd.org (xbsd.org [82.233.2.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id A681543D46 for ; Thu, 29 Dec 2005 14:37:40 +0000 (GMT) (envelope-from flz@xbsd.org) Received: from localhost (localhost.xbsd.org [127.0.0.1]) by smtp.xbsd.org (Postfix) with ESMTP id B20A7114A0 for ; Thu, 29 Dec 2005 15:37:39 +0100 (CET) Received: from smtp.xbsd.org ([127.0.0.1]) by localhost (srv1.xbsd.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 66701-02 for ; Thu, 29 Dec 2005 15:37:33 +0100 (CET) Received: from cream.xbsd.org (cream.xbsd.org [192.168.42.6]) by smtp.xbsd.org (Postfix) with ESMTP id 72706115E7 for ; Thu, 29 Dec 2005 15:37:33 +0100 (CET) From: Florent Thoumie To: freebsd-ports@freebsd.org Date: Thu, 29 Dec 2005 15:37:26 +0100 User-Agent: KMail/1.8.2 References: <20051229125047.B01FC16481B@big.esls.susu.ac.ru> <200512291522.16380.flz@xbsd.org> In-Reply-To: <200512291522.16380.flz@xbsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart3217031.yTmaP9X8Fe"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200512291537.30517.flz@xbsd.org> X-Virus-Scanned: amavisd-new at xbsd.org Subject: Re: Problem with Samba3 startup X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2005 14:37:42 -0000 --nextPart3217031.yTmaP9X8Fe Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Thursday 29 December 2005 15:22, Florent Thoumie wrote: > On Thursday 29 December 2005 13:50, Lynx wrote: > > I'm update system FreeBSD 6.0 today and have problem with > > Samba3(/usr/ports/net/samba3/) startup. Use mergemaster after make > > installworld and replace scripts in rc.d reboot and have: > > > > Mounting NFS file systems > > Creating and/or trimming log files > > Starting syslogd > > /etc/rc: WARNING: Dump device does not exist. Savecore not run. > > Starting SAMBA: removing stale tdbs : > > Starting nmbd. > > /libexec/ld-elf.so.1: > > Shared object "libiconv.so.3" not found, required by "nmbd" > > Starting smbd. > > /libexec/ld-elf.so.1: > > Shared object "libiconv.so.3" not found, required by "smbd" > > ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib > > /usr/local/lib/compat/pkg a.out ldconfig path: /usr/lib/aout > > /usr/lib/compat/aou > > ... > > I think samba is started too soon, the rc.d script should REQUIRE > ldconfig. Well, samba is indeed started too soon, but I guess we can't add ldconfig = to=20 REQUIRE lines for every rc.d script we install via ports. I'm not really s= ure=20 why it's supposed to be launched BEFORE DAEMON. Note: Lynx, your mail is bouncing. =2D-=20 =46lorent Thoumie flz@FreeBSD.org =46reeBSD Committer --nextPart3217031.yTmaP9X8Fe Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQBDs/SqMxEkbVFH3PQRAgqzAJ9iShmQbHD4J73CSDniUm7JVkAU5ACdGZnA kjnuxIRXyRxqVj5Lg3vd5o0= =Nk4H -----END PGP SIGNATURE----- --nextPart3217031.yTmaP9X8Fe-- From owner-freebsd-ports@FreeBSD.ORG Thu Dec 29 15:40:53 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E193916A41F; Thu, 29 Dec 2005 15:40:53 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from smtp01.jazztel.es (smtp01.jazztel.es [62.14.3.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id A52BE43D45; Thu, 29 Dec 2005 15:40:50 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from [127.0.0.1] (helo=localhost) by smtp01.jazztel.es with esmtp (Exim 4.43) id 1Erzu5-0003Wt-5w; Thu, 29 Dec 2005 16:41:21 +0100 Received: from smtp01.jazztel.es ([127.0.0.1]) by localhost (larra [127.0.0.1]) (amavisd-new, port 10034) with ESMTP id 13428-02; Thu, 29 Dec 2005 16:41:21 +0100 (CET) Received: from [62.15.215.200] (helo=62-15-215-200.inversas.jazztel.es) by smtp01.jazztel.es with esmtpa (Exim 4.43) id 1Erzu4-0003WZ-OO; Thu, 29 Dec 2005 16:41:21 +0100 Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) by 62-15-215-200.inversas.jazztel.es (8.13.5/8.13.5) with ESMTP id jBTFeiM3076938; Thu, 29 Dec 2005 16:40:45 +0100 (CET) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.4/8.13.3/Submit) id jBTFfmmK001051; Thu, 29 Dec 2005 16:41:48 +0100 (CET) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: Doug Barton Date: Thu, 29 Dec 2005 16:41:45 +0100 User-Agent: KMail/1.8.3 References: <43A910F8.5090009@FreeBSD.org> <200512231612.46046.josemi@redesjm.local> <43AFAFA3.7090009@FreeBSD.org> In-Reply-To: <43AFAFA3.7090009@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200512291641.47341.josemi@redesjm.local> X-AntiVirus-modified: yes X-AntiVirus: checked by AntiVir Milter (version: 1.1.1-9; AVE: 6.31.1.0; VDF: 6.31.1.0; host: antares.redesjm.local) X-Virus-Scanned: amavisd-new at jazztel.es Cc: freebsd-stable@freebsd.org, freebsd-ports@freebsd.org, Florent Thoumie Subject: Re: HEADS UP: MFC of local_startup changes to rc.d complete X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2005 15:40:54 -0000 El Lunes, 26 de Diciembre de 2005 09:53, Doug Barton escribi=F3: > Jose M Rodriguez wrote: > > But this doesn't solve the real problem. We've lost a reference > > model about rc and the interaction with the base system and ports. > > I'm not sure what that last sentence means. > =46orm our old rc system, to the initial import from NetBSD, to what we=20 have now in HEAD. A lot of things has been changed, an now, it's really hard to get an=20 idea about the boot process and the order used to launch the=20 components. > > - some kinda of style for ports/system rc scripts > > - some docs about keywords and stage support > > As I said in one of my recent heads up messages, man rc(8). > As far I know, rc(8) depends on the FreeBSD version used. I doubt=20 RELENG_4_11 rc(8) may be enough. This kind of information must be on=20 the porter's handbook. > > - some kinda of timeline model > > Timeline for what? > To guess the keywords to use for the rc script. > =2D- josemi -- This mail was scanned by AntiVir Milter. This product is licensed for non-commercial use. See www.antivir.de for details. From owner-freebsd-ports@FreeBSD.ORG Thu Dec 29 15:55:17 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 855D816A41F; Thu, 29 Dec 2005 15:55:17 +0000 (GMT) (envelope-from cartola@openit.com.br) Received: from obsidio.openit.com.br (mvx-200-201-187-90.mundivox.com [200.201.187.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 766C643D77; Thu, 29 Dec 2005 15:55:09 +0000 (GMT) (envelope-from cartola@openit.com.br) Received: from turmalina.intranet.openit.com.br ([192.168.0.11] helo=localhost.localdomain) by obsidio.openit.com.br with esmtps (TLSv1:RC4-MD5:128) (Exim 4.54 (FreeBSD)) id 1Es05r-000Nnp-NO; Thu, 29 Dec 2005 13:53:31 -0200 From: "Carlos Eduardo G. Carvalho" To: Jose M Rodriguez In-Reply-To: <200512291641.47341.josemi@redesjm.local> References: <43A910F8.5090009@FreeBSD.org> <200512231612.46046.josemi@redesjm.local> <43AFAFA3.7090009@FreeBSD.org> <200512291641.47341.josemi@redesjm.local> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-0taBGyuTor3HWbvwK8a+" Organization: OpenIT Solucoes Tecnologicas LTDA Date: Thu, 29 Dec 2005 13:54:54 -0200 Message-Id: <1135871694.6793.21.camel@turmalina.intranet.openit.com.br> Mime-Version: 1.0 X-Mailer: Evolution 2.2.1.1 FreeBSD GNOME Team Port X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Doug Barton , freebsd-stable@freebsd.org, freebsd-ports@freebsd.org, Florent Thoumie Subject: Re: HEADS UP: MFC of local_startup changes to rc.d complete X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2005 15:55:18 -0000 --=-0taBGyuTor3HWbvwK8a+ Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Em Qui, 2005-12-29 =E0s 16:41 +0100, Jose M Rodriguez escreveu: > A lot of things has been changed, an now, it's really hard to get an=20 > idea about the boot process and the order used to launch the=20 > components. I'm sorry if I am saying something that is out of the discussion, I didn't see the first messages, but Isn't it easy to do something like: # cd /etc/rc.d # rcorder * preseedrandom initdiskless rcconf.sh initrandom dumpon vinum gbde_swap gbde ccd .... (supressed output) --=20 Carlos E. G. Carvalho OpenIT Solucoes Tecnologicas Consultor Unix/Internet Tel. +55 21 2508-9103 http://www.OpenIT.com.br http://www.MyFreeBSD.com.br --=-0taBGyuTor3HWbvwK8a+ Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQBDtAbORpZ0A7hClfgRAqfTAKDCvRYA8zyBi0BcdIopURQVGG+93wCg4W7S 2L+5w8nf4R/ogLa7OKyk5A8= =oYF2 -----END PGP SIGNATURE----- --=-0taBGyuTor3HWbvwK8a+-- From owner-freebsd-ports@FreeBSD.ORG Thu Dec 29 15:58:51 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BEC116A41F for ; Thu, 29 Dec 2005 15:58:51 +0000 (GMT) (envelope-from swhetzel@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.197]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FE9743D6B for ; Thu, 29 Dec 2005 15:58:49 +0000 (GMT) (envelope-from swhetzel@gmail.com) Received: by xproxy.gmail.com with SMTP id s9so1133328wxc for ; Thu, 29 Dec 2005 07:58:46 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=uKnVLuUn7TchKIfumNDCR09cK9FWl6RGNbf/WxV0me4OxledTirel2arPEARF5E2/81eYrBq0C3CWZxIin/a8lS/Xa+CeBXZzxK++pcyYI4d9hdwQXY5qU3Hgy+RrCoCgl0QwQdtu+38TUs7Kc+jKB82ymrLuRNqnkiflBXu888= Received: by 10.70.90.13 with SMTP id n13mr3841975wxb; Thu, 29 Dec 2005 07:58:46 -0800 (PST) Received: by 10.70.27.5 with HTTP; Thu, 29 Dec 2005 07:58:46 -0800 (PST) Message-ID: <790a9fff0512290758h1cd9d392y5781414ffeb4f433@mail.gmail.com> Date: Thu, 29 Dec 2005 09:58:46 -0600 From: Scot Hetzel To: thorsten@tgreiner.net, mi@aldan.algebra.com, gtodd@bellanet.org, lioux@freebsd.org, ports@freebsd.org In-Reply-To: <20051223090639.GA18118@merlin.emma.line.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <20051223090639.GA18118@merlin.emma.line.org> Cc: Subject: Re: Can we discontinue the databases/db2 port? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2005 15:58:51 -0000 On 12/23/05, Matthias Andree wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Greetings, > > after a recent bug report against various databases/db* ports that asked > for consistency across these ports, I checked who is still using the > ancient (not to say obsolete) db2-2.7.7 port. I found these five > port|summary|maintainer tuples: > > $ grep -h db2-2.7 /usr/ports/INDEX{,-5,-6} | cut -d\| -f1,4,6 | sort -u > amy-0.8.7|A chess program for playing and analyzing games|thorsten@tgrein= er.net > neotcl-8.2.2_2|The NeoTCL part of NeoWebScript -- an Apache TCL mod|mi@al= dan.algebra.com > neowebscript-3.3_2|Embeds a TCL8 interpreter in the Apache server|mi@alda= n.algebra.com > pks-0.9.6|PGP Public Key Server|gtodd@bellanet.org > qtstalker-0.28|Commodity and stock market charting and technical analysis= |lioux@FreeBSD.org > > Can these five packages use a newer BerkeleyDB version such as db3 (3.3 > actually) or one of the db4* packages? If so, we could discontinue and > remove the db2 port. > I'm working on converting all the ports that use db* to work with the new USE_BDB variable from Mk/bsd.databases.mk. I have already converted the above ports (except neowebscript, as it doesn't directly depend on db2) to use the USE_BDB variable. I tried to compile them with newer versions of db*, but the compilation failed. Someone would need to either patch them or check if their is an upgrade which supports a newer version of db*. Scot -- DISCLAIMER: No electrons were mamed while sending this message. Only slightly bruised. From owner-freebsd-ports@FreeBSD.ORG Thu Dec 29 18:11:28 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAAA216A44B; Thu, 29 Dec 2005 18:11:27 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from smtp02.jazztel.es (smtp02.jazztel.es [62.14.3.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAE7E43D66; Thu, 29 Dec 2005 18:11:23 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from [127.0.0.1] (helo=localhost) by smtp02.jazztel.es with esmtp (Exim 4.43) id 1Es2E0-0005kp-D9; Thu, 29 Dec 2005 19:10:04 +0100 Received: from smtp02.jazztel.es ([127.0.0.1]) by localhost (lorca [127.0.0.1]) (amavisd-new, port 10034) with ESMTP id 21808-02; Thu, 29 Dec 2005 19:10:04 +0100 (CET) Received: from [62.15.215.200] (helo=62-15-215-200.inversas.jazztel.es) by smtp02.jazztel.es with esmtpa (Exim 4.43) id 1Es2Dy-0005jC-AQ; Thu, 29 Dec 2005 19:10:04 +0100 Received: from redesjm.local (orion.redesjm.local [192.168.254.16]) by 62-15-215-200.inversas.jazztel.es (8.13.5/8.13.5) with ESMTP id jBTIBGwE077472; Thu, 29 Dec 2005 19:11:16 +0100 (CET) (envelope-from josemi@redesjm.local) Received: from localhost (localhost [[UNIX: localhost]]) by redesjm.local (8.13.4/8.13.3/Submit) id jBTICIgC001157; Thu, 29 Dec 2005 19:12:18 +0100 (CET) (envelope-from josemi@redesjm.local) From: Jose M Rodriguez To: "Carlos Eduardo G. Carvalho" Date: Thu, 29 Dec 2005 19:12:14 +0100 User-Agent: KMail/1.8.3 References: <43A910F8.5090009@FreeBSD.org> <200512291641.47341.josemi@redesjm.local> <1135871694.6793.21.camel@turmalina.intranet.openit.com.br> In-Reply-To: <1135871694.6793.21.camel@turmalina.intranet.openit.com.br> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200512291912.17553.josemi@redesjm.local> X-AntiVirus-modified: yes X-AntiVirus: checked by AntiVir Milter (version: 1.1.1-9; AVE: 6.31.1.0; VDF: 6.31.1.0; host: antares.redesjm.local) X-Virus-Scanned: amavisd-new at jazztel.es Cc: Doug Barton , freebsd-stable@freebsd.org, Jose M Rodriguez , freebsd-ports@freebsd.org, Florent Thoumie Subject: Re: HEADS UP: MFC of local_startup changes to rc.d complete X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2005 18:11:28 -0000 El Jueves, 29 de Diciembre de 2005 16:54, Carlos Eduardo G. Carvalho=20 escribi=F3: > Em Qui, 2005-12-29 =E0s 16:41 +0100, Jose M Rodriguez escreveu: > > A lot of things has been changed, an now, it's really hard to get > > an idea about the boot process and the order used to launch the > > components. > > I'm sorry if I am saying something that is out of the discussion, I > didn't see the first messages, but Isn't it easy to do something > like: > > # cd /etc/rc.d > # rcorder * > preseedrandom > initdiskless > rcconf.sh > initrandom > dumpon > vinum > gbde_swap > gbde > ccd > .... (supressed output) Which only covers the base system scripts and send you docens of entries Also, now in head, a second scan is done. As far I know, the most important point are: mountcritlocal NETWORKING mountcritremote SERVERS DAEMON LOGIN I never said that this info is not guessable or even documented. Only=20 that: =2D The docs are disperse. =2D The docs are not porters aware =2D- josemi -- This mail was scanned by AntiVir Milter. This product is licensed for non-commercial use. See www.antivir.de for details. From owner-freebsd-ports@FreeBSD.ORG Thu Dec 29 20:04:52 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0873916A41F for ; Thu, 29 Dec 2005 20:04:52 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mail2.fluidhosting.com [204.14.90.12]) by mx1.FreeBSD.org (Postfix) with SMTP id 229A943D5C for ; Thu, 29 Dec 2005 20:04:49 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 59594 invoked by uid 399); 29 Dec 2005 20:04:48 -0000 Received: from localhost (HELO ?192.168.1.101?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 29 Dec 2005 20:04:47 -0000 Message-ID: <43B44155.9040707@FreeBSD.org> Date: Thu, 29 Dec 2005 12:04:37 -0800 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 1.5 (X11/20051226) MIME-Version: 1.0 To: Jose M Rodriguez References: <43A910F8.5090009@FreeBSD.org> <200512231612.46046.josemi@redesjm.local> <43AFAFA3.7090009@FreeBSD.org> <200512291641.47341.josemi@redesjm.local> In-Reply-To: <200512291641.47341.josemi@redesjm.local> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-stable@freebsd.org, freebsd-ports@freebsd.org, Florent Thoumie Subject: Re: HEADS UP: MFC of local_startup changes to rc.d complete X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Dec 2005 20:04:52 -0000 Jose M Rodriguez wrote: > El Lunes, 26 de Diciembre de 2005 09:53, Doug Barton escribió: >> Jose M Rodriguez wrote: >>> But this doesn't solve the real problem. We've lost a reference >>> model about rc and the interaction with the base system and ports. >> I'm not sure what that last sentence means. >> > > Form our old rc system, to the initial import from NetBSD, to what we > have now in HEAD. Well, if you think it's important, please feel free to write this up and submit it. I'm not sure what value it would have. > A lot of things has been changed, an now, it's really hard to get an > idea about the boot process and the order used to launch the > components. See below. >>> - some kinda of style for ports/system rc scripts >>> - some docs about keywords and stage support >> As I said in one of my recent heads up messages, man rc(8). >> > > As far I know, rc(8) depends on the FreeBSD version used. Yes, of course. So for any given system, you have an approximation of what you are looking for. > I doubt > RELENG_4_11 rc(8) may be enough. This kind of information must be on > the porter's handbook. Feel free to submit these patches as well. Also, since this new facility is not going to be MFC'ed past RELENG_6, changing the REQUIRE lines in the scripts won't have any effect on earlier systems. >>> - some kinda of timeline model >> Timeline for what? >> > > To guess the keywords to use for the rc script. Ah, got it. You can get a good start on that by doing: rcorder -s nostart /etc/rc.d/* Once we get a better handle on where the key points for ports are, we'll add something to rc(8). Right now, it looks like anything that is going to run as part of the system it should REQUIRE: DAEMON, if it is something that is going to start as a user, it should REQUIRE: LOGIN. hth, Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Fri Dec 30 04:33:59 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F0C816A420 for ; Fri, 30 Dec 2005 04:33:59 +0000 (GMT) (envelope-from dandee@hellteam.net) Received: from pipa.profix.cz (ruprt.hosting4u.cz [82.208.25.145]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F01C43D48 for ; Fri, 30 Dec 2005 04:33:57 +0000 (GMT) (envelope-from dandee@hellteam.net) Received: from localhost (localhost [127.0.0.1]) by pipa.profix.cz (Postfix) with ESMTP id F30704E708 for ; Fri, 30 Dec 2005 05:33:55 +0100 (CET) Received: from pipa.profix.cz ([127.0.0.1]) by localhost (pipa [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06798-03 for ; Fri, 30 Dec 2005 05:33:55 +0100 (CET) Received: from gandalf (unknown [80.95.121.105]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by pipa.profix.cz (Postfix) with ESMTP id 68C724E705 for ; Fri, 30 Dec 2005 05:33:55 +0100 (CET) From: =?iso-8859-2?Q?Daniel_Dvo=F8=E1k?= To: Date: Fri, 30 Dec 2005 05:33:54 +0100 Message-ID: <003d01c60cfa$3e6ce8c0$6508280a@tocnet28.jspoj.czf> MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook 11 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 thread-index: AcYM+j1kdswJEBn3QsCs0lBxTslP9A== X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at profix.cz Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@FreeBSD.org Subject: FreeBSD Port: arpwatch-2.1.a13_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dandee@volny.cz List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2005 04:33:59 -0000 Hi All, =20 let me ask you about arpwatch. The port under FreeBSD does not support = the important switch -p, which we can find for example in Debian Linux. This switch is about "don=B4t put to promisccuous mode", which is really = needed for example wireless cards, where promisc kills usually the traffic on = wi-fi. =20 I am sorry I do not imagine how much work it is, I simple ask, is it possible to implement this switch (flag) ? =20 In the Debian Linux, there are anothers useful flags, but of course -p = is the most important one, here they are: =20 =20 (Debian) The -s flag is used to specify the path to the sendmail program. Any program that takes the option -odi and then text from = stdin can be substituted. This is useful for redirecting reports to log files instead of mail. =20 (Debian) The -p flag disables promiscuous operation. ARP = broadcasts get through hubs without having the interface in promiscuous mode, while sav- ing considerable resources that would be wasted on processing gigabytes of non-broadcast traffic. OTOH, setting promiscuous mode = does not mean getting 100% traffic that would concern arpwatch . YMMV. =20 (Debian) -a By default, arpwatch reports bogons (unless -N is = given) for IP addresses that are in the same subnet than the first IP address = of the default interface. If this option is specified, arpwatch will = report bogons about every IP addresses. =20 (Debian) The -m option is used to specify the e-mail address to = which reports will be sent. By default, reports are sent to root on the = local machine. =20 (Debian) The -u flag instructs arpwatch to drop root privileges = and change the UID to username and GID to the primary group of username . = This is recommended for security reasons, but username has to have write access to the default directory. =20 (Debian) The -R flag instructs arpwatch to restart in seconds = seconds after the interface went down. By default, in such cases arpwatch = would print an error message and exit. This option is ignored if = either the -r or -u flags are used. =20 (Debian) The -Q flags prevents arpwatch from sending reports by = mail. =20 (Debian) The -z flag is used to set a range of ip addresses to = ignore (such as a DHCP range). Netmask is specified as 255.255.128.0. Please, I just ask, do not shoot me, thanks :) =20 Daniel _____ =20 avast! Antivirus : Odchozi zprava cista.=20 Virova databaze (VPS): 0552-2, 29.12.2005 Testovano: 30.12.2005 5:33:54 avast! - copyright (c) 1988-2005 ALWIL Software. From owner-freebsd-ports@FreeBSD.ORG Fri Dec 30 05:20:02 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CDB216A41F for ; Fri, 30 Dec 2005 05:20:02 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from mail.droso.net (koala.droso.net [193.88.12.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5F5B43D5C for ; Fri, 30 Dec 2005 05:20:01 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by mail.droso.net (Postfix) with ESMTP id C394F22B0E for ; Fri, 30 Dec 2005 06:20:00 +0100 (CET) Received: from koala.ipv6.droso.net (localhost [IPv6:::1]) by mail.droso.net (Postfix) with ESMTP id 8FC9F22B16 for ; Fri, 30 Dec 2005 06:19:58 +0100 (CET) From: linimon@FreeBSD.org To: ports@freebsd.org Message-Id: <20051230051958.8FC9F22B16@mail.droso.net> Date: Fri, 30 Dec 2005 06:19:58 +0100 (CET) X-Virus-Scanned: by amavisd 0.1 Cc: Subject: FreeBSD ports that you maintain which are currently marked broken X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2005 05:20:02 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we are attempting to notify maintainers of ports that are marked as "broken" in their Makefiles. In many cases these ports are failing to compile on some subset of the FreeBSD build environments. The most common problem is that recent versions of -CURRENT include gcc3.4, which is much stricter about such things as function declarations, literal strings constants that continue over several physical lines, and forcing the deprecation of antique header files such as varargs.h (we should now be using stdargs.h). The next most common problem is that compiles succeed on the i386 architecture (e.g. the common Intel PC), but fail on one or more of the other architectures due to assumptions about things such as size of various types, byte-alignment issues, and so forth. In occasional cases we see that the same port may have different errors in different build environments. The script that runs on the build cluster uses heuristics to try to 'guess' the error type to help you isolate problems, but it is only a rough guide. If you need help in one or more build environments that you do not have access to, please ask for help on the freebsd-ports mailing list. One more note: on occasion, there are transient build errors seen on the build farm. Unfortunately, there is not yet any way for this algorithm to tell the difference (humans are much, much better at this kind of thing.) The errors are listed below. In the case where the same problem exists on more than one build environment, the URL points to the latest errorlog for that type. (By 'build environment' here we mean 'combination of 4.x/5.x/6.x with target architecture'.) (Note: the dates are included to help you to gauge whether or not the error still applies to the latest version. The program that generates this report is not yet able to determine this automatically.) portname: archivers/rvm broken because: Configure script attempts to allocate an infinite amount of memory to see what happens when it runs out build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=archivers&portname=rvm portname: audio/cd2mp3 broken because: Unfetchable build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=cd2mp3 portname: chinese/gbfs broken because: fails to patch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=gbfs portname: chinese/xemacs broken because: Configure fails on i386 and ia64 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.5.2005040113/zh-xemacs-20.4_2.log (Jul 12 21:24:03 UTC 2005) overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=xemacs portname: databases/p5-GDBM broken because: Does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=p5-GDBM portname: deskutils/gtimer broken because: Size mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=gtimer portname: deskutils/xrolo broken because: Does not build on FreeBSD >= 5.x build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=xrolo portname: devel/clint broken because: Does not compile on FreeBSD >= 5.x build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=clint portname: devel/ixlib broken because: Does not compile on !i386 or on FreeBSD >= 5.x build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ixlib portname: devel/libsigcx broken because: Does not compile on FreeBSD >= 5.x build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=libsigcx portname: games/freedoko broken because: Requires update for gtkmm 2.8 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=freedoko portname: games/hlserver-glbwar broken because: Unfetchable build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-glbwar portname: games/hlserver-ns broken because: Unfetchable build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-ns portname: games/hlserver-si broken because: Unfetchable build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-si portname: games/hlserver-ts broken because: Unfetchable build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-ts portname: games/hlserver-tsc broken because: mastersite disappeared, no longer maintained by author build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-tsc portname: games/hlserver-wasteland broken because: Unfetchable build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-wasteland portname: games/hlserver-wizwars broken because: Unfetchable build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-wizwars portname: games/nil broken because: Does not compile on FreeBSD >= 5.x build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=nil portname: graphics/nurbs++ broken because: Does not compile with gcc 3.4.2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=nurbs%2B%2B portname: graphics/sam2p broken because: Size mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=sam2p portname: graphics/teddy broken because: Does not compile on FreeBSD >= 5.x build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=teddy portname: japanese/edict-utf-8 broken because: Size mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=edict-utf-8 portname: japanese/gn-gnspool broken because: Unfetchable build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=gn-gnspool portname: japanese/gnomelibs broken because: Does not compile on FreeBSD 700002 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=gnomelibs portname: java/janosvm broken because: Fails to link build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=java&portname=janosvm portname: lang/Sather broken because: Does not compile on FreeBSD 700002 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=Sather portname: lang/egcs broken because: Does not compile (bad C++ code) build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=egcs portname: lang/gcc30 broken because: Does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=gcc30 portname: lang/glibstdc++28 broken because: Does not compile (bad C++ code) build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=glibstdc%2B%2B28 portname: lang/m3gdb broken because: Does not build on FreeBSD >= 5.x build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=m3gdb portname: lang/rscheme broken because: Coredump during build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=rscheme portname: lang/tensile broken because: Coredump during build on FreeBSD >= 6.x build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=tensile portname: misc/globus2 broken because: Does not fetch build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.5.2005111508/globus-2.4.3_1.log (Dec 7 16:00:56 UTC 2005) overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=globus2 portname: misc/goblin broken because: Does not compile on FreeBSD >= 5.x build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=goblin portname: misc/gpt broken because: Broken distinfo build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.5.2005111508/gpt-3.2_1.log (Dec 12 00:41:03 UTC 2005) overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=gpt portname: misc/tvguide broken because: Unfetchable build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.7.2005112106/tvguide-1.6.1_1.log (Nov 22 11:46:52 UTC 2005) overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=tvguide portname: multimedia/xmms-avi broken because: Does not compile on FreeBSD >= 5.x build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=xmms-avi portname: net-mgmt/sting broken because: Does not work with ipfw2 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net-mgmt&portname=sting portname: net/arla broken because: does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=arla portname: net/cphone broken because: Does not compile on FreeBSD >= 5.x build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=cphone portname: net/nocatsplash broken because: Unfetchable build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=nocatsplash portname: news/PicMonger broken because: Does not compile (bad C++ code) build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=news&portname=PicMonger portname: palm/prc-tools broken because: Does not build on FreeBSD >= 7.0 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.4.2005092302/prc-tools-2.3_3.log (Dec 18 05:55:05 GMT 2005) overview: http://portsmon.FreeBSD.org/portoverview.py?category=palm&portname=prc-tools portname: print/lilypond broken because: Does not compile on FreeBSD >= 5.x build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=lilypond portname: sysutils/ffsrecov broken because: Incompatible with UFS2 header files build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=ffsrecov portname: sysutils/xperfmon3 broken because: Does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=xperfmon3 portname: www/adzap2squirm broken because: Unfetchable build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=adzap2squirm portname: www/mozex-firefox broken because: Does not work with Firefox 1.5 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=mozex-firefox portname: www/mozilla-bonobo broken because: Does not build with new Mozilla build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.6.2005101108/mozilla-bonobo-0.4.0_6.log (Dec 22 08:23:40 UTC 2005) overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=mozilla-bonobo portname: www/p5-Apache-PageKit broken because: Does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=p5-Apache-PageKit portname: www/preferential-firefox broken because: Does not work with Firefox 1.5 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.5.2005111508/preferential-firefox-0.7.1_1.log (Dec 12 00:06:42 UTC 2005) overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=preferential-firefox portname: www/rt3-elixus broken because: Install fails build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=rt3-elixus portname: x11-toolkits/v broken because: Does not compile (bad C++ code) build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=v portname: x11/props broken because: Does not compile build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=props If these errors are ones that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Every effort has been made to make sure that these error reports really do correspond to a port that you maintain. However, due to the fact that this is an automated process, it may indeed generate false matches. If one of these errors fits that description, please forward this email to the author of this software, Mark Linimon , so that he can attempt to fix the problem in the future. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-ports@FreeBSD.ORG Fri Dec 30 05:21:30 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC1AB16A41F for ; Fri, 30 Dec 2005 05:21:30 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from mail.droso.net (koala.droso.net [193.88.12.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id A00A843D5C for ; Fri, 30 Dec 2005 05:21:29 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by mail.droso.net (Postfix) with ESMTP id CF84622B12 for ; Fri, 30 Dec 2005 06:21:28 +0100 (CET) Received: from koala.ipv6.droso.net (localhost [IPv6:::1]) by mail.droso.net (Postfix) with ESMTP id 10C0122B10 for ; Fri, 30 Dec 2005 06:21:23 +0100 (CET) From: linimon@FreeBSD.org To: ports@FreeBSD.org Message-Id: <20051230052123.10C0122B10@mail.droso.net> Date: Fri, 30 Dec 2005 06:21:23 +0100 (CET) X-Virus-Scanned: by amavisd 0.1 Cc: Subject: FreeBSD ports which are currently scheduled for deletion X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2005 05:21:30 -0000 As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically schedule removal of ports that have been judged to have outlived their usefulness. Often, this is due to a better alternative having become available and/or the cessation of development on the existing port. In some cases, ports are marked for removal because they fail to build and install correctly from their sources, or otherwise fail in operation. The ports, and the reason and date that they have been scheduled for removal, are listed below. If no one has stepped forward before that time to propose a way to fix the problems, the ports will be deleted. The goal of this posting is to make this process much more visible to the wider FreeBSD community. portname: astro/gkrellmearth description: A plugin for GKrellM that displays a rotating earth maintainer: pat@FreeBSD.org status: IGNORE deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=astro&portname=gkrellmearth portname: audio/cd2mp3 description: Easy to use CD Ripping and MP3 Encoding tool maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Unfetchable expiration date: 2006-01-24 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=cd2mp3 portname: audio/mutemix description: Adjusts a mixer maintainer: trevor@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=mutemix portname: audio/mziq description: A Perl frontend to mpg123 maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=mziq portname: audio/radio description: Radio over the Internet maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=radio portname: audio/sbagen description: A sequenced binaural wave generator maintainer: ports@FreeBSD.org status: IGNORE deprecated because: 1.0.8 is the 2000 version, 1.4.3 is current. Please send patches or take maintainership! expiration date: 2006-03-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=sbagen portname: audio/xmms-cdparanoia description: Cdparanoia plugin for XMMS maintainer: dyeske@yahoo.com status: BROKEN deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2006-01-08 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=xmms-cdparanoia portname: biology/L-Breeder description: Allows you to display and breed L-system forms maintainer: dyeske@yahoo.com deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=biology&portname=L-Breeder portname: biology/chemeq description: Outputs LaTeX code for chemical reaction maintainer: rmiya@cc.hirosaki-u.ac.jp deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=biology&portname=chemeq portname: biology/deft description: Density functional molecular orbital calculation maintainer: rmiya@cc.hirosaki-u.ac.jp status: BROKEN deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=biology&portname=deft portname: biology/flip description: Flip is used to find/translate orfs maintainer: tonym@biolateral.com.au deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=biology&portname=flip portname: chinese/MT description: Web-based personal publishing system like weblogs maintainer: ports@FreeBSD.org status: IGNORE deprecated because: does not work with MT3 expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=MT portname: chinese/cdict5 description: Chinese-English / English-Chinese dictionary maintainer: ports@FreeBSD.org status: IGNORE deprecated because: cdict5-file.tgz does not exist anymore expiration date: 2005-12-29 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=cdict5 portname: chinese/chinput2 description: Another Chinese GB2312 and Big5 X11 input server maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=chinput2 portname: chinese/ve description: NTHU-CS Maple BBS 2.36 BBS-like editor maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=ve portname: chinese/wangttf description: Many Chinese Big5 TrueType fonts, made by Dr. Hann-Tzong Wang maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author" expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=chinese&portname=wangttf portname: comms/qtpcr description: Software that controls the ICOM PCR-1000 Receiver maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=comms&portname=qtpcr portname: comms/vpb2 description: User mode API for Voicetronix 4 port analog DSP telephony cards maintainer: dyfet@gnu.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=comms&portname=vpb2 portname: databases/gnats description: Cygnus GNATS bug tracking system maintainer: ceri@FreeBSD.org status: FORBIDDEN deprecated because: Security issues expiration date: 2004-08-20 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=databases&portname=gnats portname: deskutils/gdesklets-ltvariations description: A collection of sensors and displays maintainer: tdb@FreeBSD.org deprecated because: Project is dead and unfetchable since 2004 expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=gdesklets-ltvariations portname: deskutils/journal description: Journal is a tool for replacing the traditional text-based diary maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=deskutils&portname=journal portname: devel/cvspadm description: Tool for CVS pserver user administration maintainer: petef@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=cvspadm portname: devel/decompyle description: Python byte-code decompiler maintainer: perky@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=decompyle portname: devel/libzt description: Collection of utility code for C application/server development maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2005-12-31 build errors: http://pointyhat.FreeBSD.org/errorlogs/sparc64-errorlogs/e.5.2005042909/libzt-1.0.2.log (Dec 30 01:02:18 UTC 2005) overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=libzt portname: devel/py-ansistyle description: Add ANSI color capability to output streams maintainer: whitekid@gmail.com status: BROKEN deprecated because: this ports was deprecated. please use devel/py-ll-core expiration date: 2005-12-29 build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.5.2005042501/py24-ansistyle-0.6.1.log (Oct 31 02:49:35 UTC 2005) overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=py-ansistyle portname: devel/py-ll-url description: RFC2396 implementation of URLs and file like classes for URLs maintainer: whitekid@gmail.com status: BROKEN deprecated because: this ports was deprecated. please use devel/py-ll-core expiration date: 2005-12-29 build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.5.2005042501/py24-ll-url-0.15.1.log (Oct 31 02:49:22 UTC 2005) overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=py-ll-url portname: devel/py-wsdllib description: A library for using and manipulating WSDL files using Python maintainer: mi@aldan.algebra.com status: BROKEN deprecated because: Unfetchable expiration date: 2006-01-07 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=py-wsdllib portname: devel/ruby-mock description: An RUnit extention that makes it very easy to implement Mock Objects maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2005-01-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ruby-mock portname: devel/ruby-nodedump description: Displays the internal structure of a parsed Ruby program maintainer: ports@FreeBSD.org status: IGNORE deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2006-01-10 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=ruby-nodedump portname: editors/custom-emacs description: The Custom Library for emacs maintainer: ports@FreeBSD.org deprecated because: mastersite dissapeared; abandoned software for obsolete emacs version expiration date: 2006-01-24 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=custom-emacs portname: finance/emma description: A personal finance manager for Gnome maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2006-01-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=finance&portname=emma portname: ftp/IglooFTP description: Easy to use FTP client for X Window System maintainer: ports@FreeBSD.org status: IGNORE deprecated because: crashes at startup expiration date: 2006-02-04 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=IglooFTP portname: ftp/emirror description: A full features FTP-mirroring software with nice logfiles maintainer: ports@FreeBSD.org status: IGNORE deprecated because: Doesn't work (see ports/83546) expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=emirror portname: ftp/ftp4all description: Advanced ftp-daemon maintainer: alexs@snark.rinet.ru deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2006-01-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=ftp4all portname: ftp/ftpsearch description: A system for indexing contents on ftp servers maintainer: Tor.Egge@idi.ntnu.no deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2006-01-30 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=ftp&portname=ftpsearch portname: games/civ2demo description: The free demo of Civilization: Call to Power maintainer: jameso@elwood.net deprecated because: Tarball is unfetchable since 2001 expiration date: 2006-02-17 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=civ2demo portname: games/duke3d description: Icculus Duke Nukem 3D port for various Operating Systems maintainer: arundel@h3c.de deprecated because: Master site disappeared, no longer maintained by author expiration date: 2006-03-18 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=duke3d portname: games/gleyes description: GLUT version of Xeyes maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2006-01-06 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=gleyes portname: games/hlserver-tsc description: Half-Life mod Counter-Strike with TSC modifications maintainer: ports@FreeBSD.org status: BROKEN deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2006-02-13 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=hlserver-tsc portname: games/virt description: Game and keyboard teacher in one. Enjoy it! maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2006-02-15 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=virt portname: games/xgalaga description: Galaga resurrected on X maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2006-02-15 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=xgalaga portname: games/xgolgo description: Watches what you are doing and whether you're hostile or not maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2006-02-15 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=xgolgo portname: games/xshipwars-client description: Hardcore Internet space combat/economy game resembling EV on crack! maintainer: troll@digitalspark.net deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2006-02-16 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=games&portname=xshipwars-client portname: graphics/animabob description: Interactive 3D volume renderer maintainer: ip@doom.homeunix.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2006-02-16 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=animabob portname: graphics/deep_zoom description: Generate very highly zoomed fractals maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2006-02-16 build errors: http://pointyhat.freebsd.org/errorlogs/ia64-errorlogs/e.5.2005040113/deep_zoom-0.3_2.log (Jul 9 22:32:26 UTC 2005) overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=deep_zoom portname: graphics/libgrass5 description: Library of functions from the GRASS GIS application for use by non-GRASS programs maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2006-02-22 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=libgrass5 portname: graphics/smoke description: Vector graphics OpenGL renderer maintainer: ip@doom.homeunix.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2006-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=smoke portname: graphics/vid description: Grab images from USB Cameras using the OV511 and OV511+ chipset maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2006-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=vid portname: japanese/gn-gnspool description: Simple Japanese Newsreader with Local Spool Support maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Unfetchable expiration date: 2006-01-26 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=japanese&portname=gn-gnspool portname: lang/m3gdb description: The GNU debugger with support for Modula-3 maintainer: ports@FreeBSD.org status: BROKEN deprecated because: does not build on recent releases expiration date: 2006-01-26 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=m3gdb portname: mail/yadda description: Yet Another Damn Delivery Agent maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=mail&portname=yadda portname: misc/gkrellmaflag description: A GKrellM Plugin that displays a waving American flag maintainer: pat@FreeBSD.org status: BROKEN deprecated because: mastersite disappeared expiration date: 2005-12-11 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=gkrellmaflag portname: misc/tvguide description: Perl script to pretty-print TV Guide listings from www.tvguide.com maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Disappeared off the net expiration date: 2006-01-26 build errors: http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/e.7.2005112106/tvguide-1.6.1_1.log (Nov 22 11:46:52 UTC 2005) overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=tvguide portname: misc/wmproxyper description: Displays Distributed.net Personal Proxy current status and progress maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared, no longer maintained by author expiration date: 2005-12-31 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=wmproxyper portname: net/4g8 description: 4g8 is a tool that allows you to capture traffic maintainer: ports@FreeBSD.org deprecated because: no longer actively maintained, author suggests ettercap instead expiration date: 2006-01-12 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=4g8 portname: print/acroread description: View, distribute and print PDF documents maintainer: trevor@FreeBSD.org status: FORBIDDEN deprecated because: outdated and has multiple security bugs; use version 7 instead expiration date: 2006-01-03 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=acroread portname: science/glens description: OpenGL gravitational lens simulator maintainer: ports@FreeBSD.org deprecated because: no longer available from mastersite expiration date: 2006-01-25 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=science&portname=glens portname: sysutils/pyfind description: A file-find utility for Gnome loosely modeled after the Windoze utility maintainer: ports@FreeBSD.org deprecated because: unfetchable -- needs version update expiration date: 2006-01-27 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=pyfind portname: sysutils/stat description: Print inode contents maintainer: wosch@FreeBSD.org deprecated because: Buggy, use stat(1) from base expiration date: 2006-03-20 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=stat portname: www/adzap2squirm description: Use and update adzap patterns with squirm maintainer: ports@FreeBSD.org status: BROKEN deprecated because: Unfetchable expiration date: 2006-01-26 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=adzap2squirm portname: www/amyc description: Display the contents of your Netscape cache maintainer: petef@FreeBSD.org deprecated because: no longer being actively developed expiration date: 2006-01-24 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=amyc portname: www/gnuinfo description: CGI program to convert GNU .info files into html maintainer: nox@jelal.kn-bremen.de deprecated because: mastersite disappeared expiration date: 2006-01-24 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=gnuinfo portname: www/mdw description: A utility to check the MD5 sum of a webpage maintainer: petef@FreeBSD.org deprecated because: no longer maintained by author expiration date: 2006-01-24 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=mdw portname: www/p5-Bundle-Catalyst description: A Bundle to install most of the Catalyst modules maintainer: lars@balker.dk deprecated because: Replaced by www/p5-Task-Catalyst expiration date: 2005-02-08 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=p5-Bundle-Catalyst portname: x11-clocks/gdesklets-praytime description: Display muslim prayer times on your desktop maintainer: ports@FreeBSD.org deprecated because: no longer available from mastersite expiration date: 2006-01-26 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-clocks&portname=gdesklets-praytime portname: x11/fspanel description: Tiny panel listing opened windows for gnome-compliant WM maintainer: ports@FreeBSD.org deprecated because: mastersite disappeared -- consider using fbpanel instead expiration date: 2006-01-25 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=fspanel portname: x11/gyroscope description: HTML color picker written using GTK maintainer: ports@FreeBSD.org deprecated because: no longer available on mastersite expiration date: 2006-01-26 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=gyroscope From owner-freebsd-ports@FreeBSD.ORG Fri Dec 30 05:21:39 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3293D16A41F for ; Fri, 30 Dec 2005 05:21:39 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from mail.droso.net (koala.droso.net [193.88.12.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B29C43D5C for ; Fri, 30 Dec 2005 05:21:38 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by mail.droso.net (Postfix) with ESMTP id 95A9222B12 for ; Fri, 30 Dec 2005 06:21:37 +0100 (CET) Received: from koala.ipv6.droso.net (localhost [IPv6:::1]) by mail.droso.net (Postfix) with ESMTP id AB54722B1F for ; Fri, 30 Dec 2005 06:21:35 +0100 (CET) From: linimon@FreeBSD.org To: ports@freebsd.org Message-Id: <20051230052135.AB54722B1F@mail.droso.net> Date: Fri, 30 Dec 2005 06:21:35 +0100 (CET) X-Virus-Scanned: by amavisd 0.1 Cc: Subject: FreeBSD ports that you maintain which are currently marked forbidden X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2005 05:21:39 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we are attempting to notify maintainers of ports that are marked as "forbidden" in their Makefiles. Often, these ports are so marked due to security concerns, such as known exploits. An overview of the port, including errors seen on the build farm, is included below. portname: graphics/ivtools forbidden because: http://vuxml.FreeBSD.org/pkg-ivtools.html build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=ivtools portname: misc/compat3x forbidden because: FreeBSD-SA-03:05.xdr, FreeBSD-SA-03:08.realpath - not fixed / no lib available build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=misc&portname=compat3x portname: sysutils/nwclient forbidden because: http://vuxml.freebsd.org/d177d9f9-e317-11d9-8088-00123f0f7307.html build errors: http://pointyhat.freebsd.org/errorlogs/alpha-errorlogs/e.4.2005042818/nwclient-5.5.2_1.log (May 19 23:57:41 GMT 2005) overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=nwclient portname: sysutils/nwclient602 forbidden because: http://vuxml.freebsd.org/d177d9f9-e317-11d9-8088-00123f0f7307.html build errors: http://pointyhat.freebsd.org/errorlogs/alpha-errorlogs/e.4.2005042818/nwclient-6.0.2_2.log (May 19 23:58:16 GMT 2005) overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=nwclient602 portname: www/p5-ldap-abook forbidden because: Arbitrary command execution vulnerability in CGI script build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=p5-ldap-abook If this problem is one that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-ports@FreeBSD.ORG Fri Dec 30 07:34:44 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D137C16A41F for ; Fri, 30 Dec 2005 07:34:44 +0000 (GMT) (envelope-from mark@mkproductions.org) Received: from ylpvm29.prodigy.net (ylpvm29-ext.prodigy.net [207.115.57.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78BF743D5D for ; Fri, 30 Dec 2005 07:34:43 +0000 (GMT) (envelope-from mark@mkproductions.org) Received: from pimout4-ext.prodigy.net (pimout4-int.prodigy.net [207.115.4.203]) by ylpvm29.prodigy.net (8.12.10 outbound/8.12.10) with ESMTP id jBU7Yhri020190 for ; Fri, 30 Dec 2005 02:34:43 -0500 X-ORBL: [68.89.209.57] Received: from [192.168.1.25] (68-89-209-57.ded.swbell.net [68.89.209.57]) by pimout4-ext.prodigy.net (8.13.4 outbound domainkey aix/8.13.4) with ESMTP id jBU7YdOj198144 for ; Fri, 30 Dec 2005 02:34:40 -0500 Message-ID: <43B4E30C.6020604@mkproductions.org> Date: Fri, 30 Dec 2005 01:34:36 -0600 From: Mark Kane User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051229) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org X-Enigmail-Version: 0.93.0.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig1F00AE17264C1C637FB4B2AC" Subject: A few ports fail to rebuild after cvsup X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2005 07:34:44 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig1F00AE17264C1C637FB4B2AC Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hi everyone. Last night I cvsupped my ports and source to make the upgrade to 6.0-RELEASE on my main desktop machine. For the most part everything went well and I'm really happy with 6.0 so far...performance seems to have increased :) After the OS upgrade was complete, I recompiled all my ports. The portupgrade finished earlier tonight with 3 failed. I ran portupgrade again to get these three: ** Listing the failed packages (*:skipped / !:failed) ! multimedia/kino (kino-0.7.6_1) (missing header) ! audio/audacity (audacity-1.2.3_2) (unknown build error) ! multimedia/avidemux2 (avidemux2-2.0.42_1) (unknown build error) ---> Packages processed: 0 done, 319 ignored, 0 skipped and 3 failed Then I ran it once more with script so I could capture the output. I'm hoping what I paste below will be enough for each. Note that Avidemux failed because Spidermonkey failed. As far as I know, I did not have Spidermonkey installed at all before as the old version of Avidemux did not require Spidermonkey. Other than that, I know for sure the 3 ports listed above did build before without any troubles. This is a ports tree as of yesterday at around 5:30 PM Eastern USA time. I checked the cvsweb and didn't see any changes to any of these since then. Thanks in advance for any ideas. -Mark FreeBSD 6.0-RELEASE [amd64] ------------------------------ kino: gmake[3]: Entering directory `/usr/ports/multimedia/kino/work/kino-0.8.0/src' if cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -I/usr/local/include -I/usr/X11R6/include/quicktime -I/usr/local/include/libxml2 -I/usr/local/include -D_REEN$then mv -f ".deps/main.Tpo" ".deps/main.Po"; else rm -f ".deps/main.Tpo"; exit 1; fi if cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -I/usr/local/include -I/usr/X11R6/include/quicktime -I/usr/local/include/libxml2 -I/usr/local/include -D_REEN$then mv -f ".deps/support.Tpo" ".deps/support.Po"; else rm -f ".deps/support.Tpo"; exit 1; fi if cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -I/usr/local/include -I/usr/X11R6/include/quicktime -I/usr/local/include/libxml2 -I/usr/local/include -D_REEN$then mv -f ".deps/callbacks.Tpo" ".deps/callbacks.Po"; else rm -f ".deps/callbacks.Tpo"; exit 1; fi if c++ -DHAVE_CONFIG_H -I. -I. -I.. -Wall -I/usr/local/include -I/usr/X11R6/include/quicktime -I/usr/local/include/libxml2 -I/usr/local/include -D_REE$then mv -f ".deps/message.Tpo" ".deps/message.Po"; else rm -f ".deps/message.Tpo"; exit 1; fi if c++ -DHAVE_CONFIG_H -I. -I. -I.. -Wall -I/usr/local/include -I/usr/X11R6/include/quicktime -I/usr/local/include/libxml2 -I/usr/local/include -D_REE$then mv -f ".deps/preferences.Tpo" ".deps/preferences.Po"; else rm -f ".deps/preferences.Tpo"; exit 1; fi In file included from kino_common.h:32, from preferences.cc:25: filehandler.h:176:23: quicktime.h: No such file or directory In file included from kino_common.h:32, from preferences.cc:25: filehandler.h:195: error: ISO C++ forbids declaration of `quicktime_t' with no type filehandler.h:195: error: expected `;' before '*' token gmake[3]: *** [preferences.o] Error 1 gmake[3]: Leaving directory `/usr/ports/multimedia/kino/work/kino-0.8.0/src' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/multimedia/kino/work/kino-0.8.0/src' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/multimedia/kino/work/kino-0.8.0' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/multimedia/kino. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade57305.22 make ** Fix the problem and try again. ------------------------------ Audacity: c++ -c -O2 -fno-strict-aliasing -pipe -I../lib-src/portaudio/pa_common -I../lib-src/portmixer/px_common -I../lib-src/soundtouch/include -O2 -fno-strict-aliasing -pipe -I../lib-src/expat -I../lib-src/allegro -I../lib-src/libnyquist/nyx -I../lib-src/libsndfile/src -I../lib-src/libresample/include -Wall -Iinclude -I/usr/local/include -I/usr/X11R6/include/wx-2.6/gtk2-ansi-release-2.6 -I/usr/X11R6/include/wx-2.6 -DGTK_NO_CHECK_CASTS -D__WXGTK__ -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -DNO_GCC_PRAGMA effects/ToneGen.cpp -o obj/effects/ToneGen.o effects/ToneGen.cpp: In function `wxSizer* CreateToneGenDialog(wxWindow*, bool, bool)': effects/ToneGen.cpp:268: error: ISO C++ says that these are ambiguous, even though the worst conversion for the first is better than the worst conversion for the second: /usr/X11R6/include/wx-2.6/wx/gtk/choice.h:35: note: candidate 1: wxChoice::wxChoice(wxWindow*, wxWindowID, const wxPoint&, const wxSize&, int, const wxString*, long int, const wxValidator&, const wxString&) /usr/X11R6/include/wx-2.6/wx/gtk/choice.h:47: note: candidate 2: wxChoice::wxChoice(wxWindow*, wxWindowID, const wxPoint&, const wxSize&, const wxArrayString&, long int, const wxValidator&, const wxString&) gmake[1]: *** [obj/effects/ToneGen.o] Error 1 gmake[1]: Leaving directory `/usr/ports/audio/audacity/work/audacity-src-1.2.4b/src' gmake: *** [audacity] Error 2 *** Error code 2 Stop in /usr/ports/audio/audacity. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade57305.25 make ** Fix the problem and try again. ------------------------------ Avidemux/Spidermonkey: This one is a little harder to paste since there are so many errors, but here are some: -*- executing: /usr/ports/lang/spidermonkey/work/js/src/FreeBSD6.0-RELEASE-p1_DBG.OBJ/js -f ./ecma/shell.js -f ./ecma/Date/15.9.3.1-1.js *-* Testcase ecma/Date/15.9.3.1-1.js failed: Failure messages were: new Date( 1969,11,31,15,59,59,999).getTime() = -3600001 FAILED! expected: -7200001 new Date( 1969,11,31,15,59,59,999).valueOf() = -3600001 FAILED! expected: -7200001 new Date( 1969,11,31,15,59,59,999).getUTCHours() = 22 FAILED! expected: 21 new Date( 1969,11,31,23,59,59,999).getTime() = 25199999 FAILED! expected: 21599999 new Date( 1969,11,31,23,59,59,999).valueOf() = 25199999 FAILED! expected: 21599999 new Date( 1969,11,31,23,59,59,999).getUTCHours() = 6 FAILED! expected: 5 new Date( 1970,0,1,0,0,0,0).getTime() = 25200000 FAILED! expected: 21600000 new Date( 1970,0,1,0,0,0,0).valueOf() = 25200000 FAILED! expected: 21600000 new Date( 1970,0,1,0,0,0,0).getUTCHours() = 7 FAILED! expected: 6 new Date( 1969,11,31,16,0,0,0).getTime() = -3600000 FAILED! expected: -7200000 new Date( 1969,11,31,16,0,0,0).valueOf() = -3600000 FAILED! expected: -7200000 new Date( 1969,11,31,16,0,0,0).getUTCHours() = 23 FAILED! expected: 22 new Date(1969,12,1,0,0,0,0).getTime() = 25200000 FAILED! expected: 21600000 new Date(1969,12,1,0,0,0,0).valueOf() = 25200000 FAILED! expected: 21600000 new Date(1969,12,1,0,0,0,0).getUTCHours() = 7 FAILED! expected: 6 [snip] -*- executing: /usr/ports/lang/spidermonkey/work/js/src/FreeBSD6.0-RELEASE-p1_DBG.OBJ/js -f ./ecma/shell.js -f ./ecma/Date/15.9.3.1-4.js *-* Testcase ecma/Date/15.9.3.1-4.js failed: Failure messages were: new Date(1899,11,31,16,0,0,0).getTime() = -2208992400000 FAILED! expected: -2208996000000 new Date(1899,11,31,16,0,0,0).valueOf() = -2208992400000 FAILED! expected: -2208996000000 new Date(1899,11,31,16,0,0,0).getUTCHours() = 23 FAILED! expected: 22 new Date(1899,11,31,15,59,59,999).getTime() = -2208992400001 FAILED! expected: -2208996000001 new Date(1899,11,31,15,59,59,999).valueOf() = -2208992400001 FAILED! expected: -2208996000001 new Date(1899,11,31,15,59,59,999).getUTCHours() = 22 FAILED! expected: 21 new Date(1899,11,31,23,59,59,999).getTime() = -2208963600001 FAILED! expected: -2208967200001 new Date(1899,11,31,23,59,59,999).valueOf() = -2208963600001 FAILED! expected: -2208967200001 new Date(1899,11,31,23,59,59,999).getUTCHours() = 6 FAILED! expected: 5 new Date(1900,0,1,0,0,0,0).getTime() = -2208963600000 FAILED! expected: -2208967200000 new Date(1900,0,1,0,0,0,0).valueOf() = -2208963600000 FAILED! expected: -2208967200000 new Date(1900,0,1,0,0,0,0).getUTCHours() = 7 FAILED! expected: 6 new Date(1900,0,1,0,0,0,1).getTime() = -2208963599999 FAILED! expected: -2208967199999 new Date(1900,0,1,0,0,0,1).valueOf() = -2208963599999 FAILED! expected: -2208967199999 new Date(1900,0,1,0,0,0,1).getUTCHours() = 7 FAILED! expected: 6 [snip] -*- executing: /usr/ports/lang/spidermonkey/work/js/src/FreeBSD6.0-RELEASE-p1_DBG.OBJ/js -f ./ecma/shell.js -f ./ecma/Date/15.9.3.8-5.js *-* Testcase ecma/Date/15.9.3.8-5.js failed: Failure messages were: new Date(-2208988800000).getHours() = 17 FAILED! expected: 18 new Date(-2208960000000).getHours() = 1 FAILED! expected: 2 new Date("Sun Dec 31 1899 17:00:00 GMT-0700 (MST)").getHours() = 17 FAILED! expected: 18 new Date("Mon Jan 01 1900 01:00:00 GMT-0700 (MST)").getHours() = 1 FAILED! expected: 2 new Date("Mon, 01 Jan 1900 00:00:00 GMT").getHours() = 17 FAILED! expected: 18 new Date("Mon, 01 Jan 1900 08:00:00 GMT").getHours() = 1 FAILED! expected: 2 [snip] -*- executing: /usr/ports/lang/spidermonkey/work/js/src/FreeBSD6.0-RELEASE-p1_DBG.OBJ/js -f ./ecma/shell.js -f ./ecma/Date/15.9.5.23-1.js *-* Testcase ecma/Date/15.9.5.23-1.js failed: Failure messages were: var d = new Date(0); d.setTime(0); d.getHours() = 17 FAILED! expected: 18 -*- exit code 0, exit signal 0. -*- executing: /usr/ports/lang/spidermonkey/work/js/src/FreeBSD6.0-RELEASE-p1_DBG.OBJ/js -f ./ecma/shell.js -f ./ecma/Date/15.9.5.23-10.js *-* Testcase ecma/Date/15.9.5.23-10.js failed: [snip] -*- executing: /usr/ports/lang/spidermonkey/work/js/src/FreeBSD6.0-RELEASE-p1_DBG.OBJ/js -f ./ecma/shell.js -f ./ecma/Date/15.9.5.24-5.js *-* Testcase ecma/Date/15.9.5.24-5.js failed: Failure messages were: var date = new Date(0); date.setMilliseconds(0); date.getHours() = 17 FAILED! expected: 18 -*- exit code 0, exit signal 0. [major snip] -*- Writing output to results-2005-12-29-221545-smdebug.html. -#- Wrote results to 'results-2005-12-29-221545-smdebug.html'. -#- 45 test(s) failed *** Error code 1 Stop in /usr/ports/lang/spidermonkey. *** Error code 1 Stop in /usr/ports/multimedia/avidemux2. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade57305.43 make ** Fix the problem and try again. -- GnuPG Public Key: http://www.mkproductions.org/mk_pubkey.asc Internet Radio: Party107 (Trance/Electronic) - http://www.party107.com Rock 101.9 The Edge (Rock) - http://www.rock1019.net IRC: MIXXnet IRC Network - irc.mixxnet.net (Nick: MIXX941) --------------enig1F00AE17264C1C637FB4B2AC Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDtOMPlH2ybcmj7I8RAquHAKC40Ce+9eig55T8IRK/krBaO7yzpACeJDtI H7uSfm66nWzTHbwtf4pqCRk= =Ns81 -----END PGP SIGNATURE----- --------------enig1F00AE17264C1C637FB4B2AC-- From owner-freebsd-ports@FreeBSD.ORG Fri Dec 30 10:31:38 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CFD216A41F for ; Fri, 30 Dec 2005 10:31:38 +0000 (GMT) (envelope-from lambert@lambertfam.org) Received: from sysmon.tcworks.net (sysmon.tcworks.net [65.66.76.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CC1143D49 for ; Fri, 30 Dec 2005 10:31:32 +0000 (GMT) (envelope-from lambert@lambertfam.org) Received: from sysmon.tcworks.net (localhost [127.0.0.1]) by sysmon.tcworks.net (8.13.1/8.13.1) with ESMTP id jBUAVVPK090616 for ; Fri, 30 Dec 2005 04:31:31 -0600 (CST) (envelope-from lambert@lambertfam.org) Received: (from lambert@localhost) by sysmon.tcworks.net (8.13.1/8.13.1/Submit) id jBUAVVxa090615 for freebsd-ports@freebsd.org; Fri, 30 Dec 2005 04:31:31 -0600 (CST) (envelope-from lambert@lambertfam.org) X-Authentication-Warning: sysmon.tcworks.net: lambert set sender to lambert@lambertfam.org using -f Date: Fri, 30 Dec 2005 04:31:31 -0600 From: Scott Lambert To: freebsd-ports@freebsd.org Message-ID: <20051230103131.GA88660@sysmon.tcworks.net> Mail-Followup-To: freebsd-ports@freebsd.org References: <43B4E30C.6020604@mkproductions.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <43B4E30C.6020604@mkproductions.org> User-Agent: Mutt/1.5.9i Subject: Re: A few ports fail to rebuild after cvsup X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2005 10:31:38 -0000 On Fri, Dec 30, 2005 at 01:34:36AM -0600, Mark Kane wrote: > Hi everyone. Last night I cvsupped my ports and source to make the > upgrade to 6.0-RELEASE on my main desktop machine. For the most part > everything went well and I'm really happy with 6.0 so far...performance > seems to have increased :) > > After the OS upgrade was complete, I recompiled all my ports. The > portupgrade finished earlier tonight with 3 failed. I ran portupgrade > again to get these three: > > ** Listing the failed packages (*:skipped / !:failed) > ! multimedia/kino (kino-0.7.6_1) (missing header) > ! audio/audacity (audacity-1.2.3_2) (unknown build error) > ! multimedia/avidemux2 (avidemux2-2.0.42_1) (unknown build > error) > ---> Packages processed: 0 done, 319 ignored, 0 skipped and 3 failed What is the date set to on this machine? From the below error messages, I am worried that it may be set to the year 1970. > This one is a little harder to paste since there are so many errors, but > here are some: > > -*- executing: > /usr/ports/lang/spidermonkey/work/js/src/FreeBSD6.0-RELEASE-p1_DBG.OBJ/js > -f ./ecma/shell.js -f ./ecma/Date/15.9.3.1-1.js > *-* Testcase ecma/Date/15.9.3.1-1.js failed: > > Failure messages were: > new Date( 1969,11,31,15,59,59,999).getTime() = -3600001 FAILED! > expected: -7200001 > new Date( 1969,11,31,15,59,59,999).valueOf() = -3600001 FAILED! > expected: -7200001 > new Date( 1969,11,31,15,59,59,999).getUTCHours() = 22 FAILED! expected: 21 > new Date( 1969,11,31,23,59,59,999).getTime() = 25199999 FAILED! > expected: 21599999 > new Date( 1969,11,31,23,59,59,999).valueOf() = 25199999 FAILED! > expected: 21599999 > new Date( 1969,11,31,23,59,59,999).getUTCHours() = 6 FAILED! expected: 5 > new Date( 1970,0,1,0,0,0,0).getTime() = 25200000 FAILED! expected: 21600000 > new Date( 1970,0,1,0,0,0,0).valueOf() = 25200000 FAILED! expected: 21600000 > new Date( 1970,0,1,0,0,0,0).getUTCHours() = 7 FAILED! expected: 6 > new Date( 1969,11,31,16,0,0,0).getTime() = -3600000 FAILED! expected: > -7200000 > new Date( 1969,11,31,16,0,0,0).valueOf() = -3600000 FAILED! expected: > -7200000 > new Date( 1969,11,31,16,0,0,0).getUTCHours() = 23 FAILED! expected: 22 > new Date(1969,12,1,0,0,0,0).getTime() = 25200000 FAILED! expected: 21600000 > new Date(1969,12,1,0,0,0,0).valueOf() = 25200000 FAILED! expected: 21600000 > new Date(1969,12,1,0,0,0,0).getUTCHours() = 7 FAILED! expected: 6 > > [snip] > > -*- executing: > /usr/ports/lang/spidermonkey/work/js/src/FreeBSD6.0-RELEASE-p1_DBG.OBJ/js > -f ./ecma/shell.js -f ./ecma/Date/15.9.3.1-4.js > *-* Testcase ecma/Date/15.9.3.1-4.js failed: > > Failure messages were: > new Date(1899,11,31,16,0,0,0).getTime() = -2208992400000 FAILED! > expected: -2208996000000 > new Date(1899,11,31,16,0,0,0).valueOf() = -2208992400000 FAILED! > expected: -2208996000000 > new Date(1899,11,31,16,0,0,0).getUTCHours() = 23 FAILED! expected: 22 > new Date(1899,11,31,15,59,59,999).getTime() = -2208992400001 FAILED! > expected: -2208996000001 > new Date(1899,11,31,15,59,59,999).valueOf() = -2208992400001 FAILED! > expected: -2208996000001 > new Date(1899,11,31,15,59,59,999).getUTCHours() = 22 FAILED! expected: 21 > new Date(1899,11,31,23,59,59,999).getTime() = -2208963600001 FAILED! > expected: -2208967200001 > new Date(1899,11,31,23,59,59,999).valueOf() = -2208963600001 FAILED! > expected: -2208967200001 > new Date(1899,11,31,23,59,59,999).getUTCHours() = 6 FAILED! expected: 5 > new Date(1900,0,1,0,0,0,0).getTime() = -2208963600000 FAILED! expected: > -2208967200000 > new Date(1900,0,1,0,0,0,0).valueOf() = -2208963600000 FAILED! expected: > -2208967200000 > new Date(1900,0,1,0,0,0,0).getUTCHours() = 7 FAILED! expected: 6 > new Date(1900,0,1,0,0,0,1).getTime() = -2208963599999 FAILED! expected: > -2208967199999 > new Date(1900,0,1,0,0,0,1).valueOf() = -2208963599999 FAILED! expected: > -2208967199999 > new Date(1900,0,1,0,0,0,1).getUTCHours() = 7 FAILED! expected: 6 > > [snip] > > -*- executing: > /usr/ports/lang/spidermonkey/work/js/src/FreeBSD6.0-RELEASE-p1_DBG.OBJ/js > -f ./ecma/shell.js -f ./ecma/Date/15.9.3.8-5.js > *-* Testcase ecma/Date/15.9.3.8-5.js failed: > > Failure messages were: > new Date(-2208988800000).getHours() = 17 FAILED! expected: 18 > new Date(-2208960000000).getHours() = 1 FAILED! expected: 2 > new Date("Sun Dec 31 1899 17:00:00 GMT-0700 (MST)").getHours() = 17 > FAILED! expected: 18 > new Date("Mon Jan 01 1900 01:00:00 GMT-0700 (MST)").getHours() = 1 > FAILED! expected: 2 > new Date("Mon, 01 Jan 1900 00:00:00 GMT").getHours() = 17 FAILED! > expected: 18 > new Date("Mon, 01 Jan 1900 08:00:00 GMT").getHours() = 1 FAILED! expected: 2 > > [snip] > > -*- executing: > /usr/ports/lang/spidermonkey/work/js/src/FreeBSD6.0-RELEASE-p1_DBG.OBJ/js > -f ./ecma/shell.js -f ./ecma/Date/15.9.5.23-1.js > *-* Testcase ecma/Date/15.9.5.23-1.js failed: > > Failure messages were: > var d = new Date(0); d.setTime(0); d.getHours() = 17 FAILED! expected: 18 > > -*- exit code 0, exit signal 0. > -*- executing: > /usr/ports/lang/spidermonkey/work/js/src/FreeBSD6.0-RELEASE-p1_DBG.OBJ/js > -f ./ecma/shell.js -f ./ecma/Date/15.9.5.23-10.js > *-* Testcase ecma/Date/15.9.5.23-10.js failed: > > [snip] > > -*- executing: > /usr/ports/lang/spidermonkey/work/js/src/FreeBSD6.0-RELEASE-p1_DBG.OBJ/js > -f ./ecma/shell.js -f ./ecma/Date/15.9.5.24-5.js > *-* Testcase ecma/Date/15.9.5.24-5.js failed: > > Failure messages were: > var date = new Date(0); date.setMilliseconds(0); date.getHours() = 17 > FAILED! expected: 18 > > -*- exit code 0, exit signal 0. > > [major snip] > > -*- Writing output to results-2005-12-29-221545-smdebug.html. > -#- Wrote results to 'results-2005-12-29-221545-smdebug.html'. > -#- 45 test(s) failed > *** Error code 1 > > Stop in /usr/ports/lang/spidermonkey. > *** Error code 1 > > Stop in /usr/ports/multimedia/avidemux2. > ** Command failed [exit code 1]: /usr/bin/script -qa > /tmp/portupgrade57305.43 make > ** Fix the problem and try again. > > > -- > GnuPG Public Key: > http://www.mkproductions.org/mk_pubkey.asc > > Internet Radio: > Party107 (Trance/Electronic) - http://www.party107.com > Rock 101.9 The Edge (Rock) - http://www.rock1019.net > > IRC: > MIXXnet IRC Network - irc.mixxnet.net (Nick: MIXX941) -- Scott Lambert KC5MLE Unix SysAdmin lambert@lambertfam.org From owner-freebsd-ports@FreeBSD.ORG Fri Dec 30 14:10:53 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E953316A41F for ; Fri, 30 Dec 2005 14:10:53 +0000 (GMT) (envelope-from freebsd-ports@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A66643D58 for ; Fri, 30 Dec 2005 14:10:52 +0000 (GMT) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1EsKy2-0003xm-48 for freebsd-ports@freebsd.org; Fri, 30 Dec 2005 15:10:50 +0100 Received: from antik2-ke-13.antik.sk ([87.244.193.13]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 30 Dec 2005 15:10:50 +0100 Received: from martinkov by antik2-ke-13.antik.sk with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 30 Dec 2005 15:10:50 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: martinko Date: Fri, 30 Dec 2005 15:10:44 +0100 Lines: 26 Message-ID: <43B53FE4.2050503@pobox.sk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: antik2-ke-13.antik.sk User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20051205 X-Accept-Language: sk, cs, en-gb, en-us, en Sender: news Cc: freebsd-questions@freebsd.org Subject: NX client & server X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2005 14:10:54 -0000 hello, i've installed net/linux-nx-client and net/freenx ports. first i tried to connect to NoMachine's testdrive server but the client crashed with signal 11 somewhere in the middle of the connecting process. then i tried `nxclient --admin` which hanged my whole X11 or window manager (window maker). i had to switch to the console and kill them. for both above i followed http://www.linuxjournal.com/article/8538 . next, i installed freenx server but don't know what to do next. i've come across many documents on the net, but all of them are related to different linux distros and they differ substantially. also, i noticed there hasn't been nx user created and the scripts installed contain wrong paths (ie original paths, not the ones used on freebsd). i'm a bit perplexed now. what is the state/status of these ports and is there any howto on freebsd installation please ?? with regards, martin ps: this is freebsd 6-stable and recent ports tree. From owner-freebsd-ports@FreeBSD.ORG Fri Dec 30 17:18:21 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33E5816A41F for ; Fri, 30 Dec 2005 17:18:21 +0000 (GMT) (envelope-from mark@mkproductions.org) Received: from ylpvm29.prodigy.net (ylpvm29-ext.prodigy.net [207.115.57.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E46343D92 for ; Fri, 30 Dec 2005 17:18:05 +0000 (GMT) (envelope-from mark@mkproductions.org) Received: from pimout4-ext.prodigy.net (pimout4-int.prodigy.net [207.115.4.203]) by ylpvm29.prodigy.net (8.12.10 outbound/8.12.10) with ESMTP id jBUHI5ri021199 for ; Fri, 30 Dec 2005 12:18:05 -0500 X-ORBL: [68.89.209.57] Received: from [192.168.1.25] (68-89-209-57.ded.swbell.net [68.89.209.57]) by pimout4-ext.prodigy.net (8.13.4 outbound domainkey aix/8.13.4) with ESMTP id jBUHHvpP170152; Fri, 30 Dec 2005 12:18:03 -0500 Message-ID: <43B56BC0.3090603@mkproductions.org> Date: Fri, 30 Dec 2005 11:17:52 -0600 From: Mark Kane User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051229) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Scott Lambert References: <43B4E30C.6020604@mkproductions.org> <20051230103131.GA88660@sysmon.tcworks.net> In-Reply-To: <20051230103131.GA88660@sysmon.tcworks.net> X-Enigmail-Version: 0.93.0.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigED745B1BB744541A83AF6B5F" Cc: freebsd-ports@freebsd.org Subject: Re: A few ports fail to rebuild after cvsup X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2005 17:18:21 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigED745B1BB744541A83AF6B5F Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Scott Lambert wrote: > On Fri, Dec 30, 2005 at 01:34:36AM -0600, Mark Kane wrote: > >>Hi everyone. Last night I cvsupped my ports and source to make the >>upgrade to 6.0-RELEASE on my main desktop machine. For the most part >>everything went well and I'm really happy with 6.0 so far...performance >>seems to have increased :) >> >>After the OS upgrade was complete, I recompiled all my ports. The >>portupgrade finished earlier tonight with 3 failed. I ran portupgrade >>again to get these three: >> >>** Listing the failed packages (*:skipped / !:failed) >> ! multimedia/kino (kino-0.7.6_1) (missing header) >> ! audio/audacity (audacity-1.2.3_2) (unknown build error) >> ! multimedia/avidemux2 (avidemux2-2.0.42_1) (unknown build >>error) >>---> Packages processed: 0 done, 319 ignored, 0 skipped and 3 failed > > > What is the date set to on this machine? From the below error messages, > I am worried that it may be set to the year 1970. Thanks for the response. I checked, and: Fri Dec 30 11:17:21 CST 2005 -Mark >>This one is a little harder to paste since there are so many errors, but >>here are some: >> >>-*- executing: >>/usr/ports/lang/spidermonkey/work/js/src/FreeBSD6.0-RELEASE-p1_DBG.OBJ/js >> -f ./ecma/shell.js -f ./ecma/Date/15.9.3.1-1.js >>*-* Testcase ecma/Date/15.9.3.1-1.js failed: >> >>Failure messages were: >>new Date( 1969,11,31,15,59,59,999).getTime() = -3600001 FAILED! >>expected: -7200001 >>new Date( 1969,11,31,15,59,59,999).valueOf() = -3600001 FAILED! >>expected: -7200001 >>new Date( 1969,11,31,15,59,59,999).getUTCHours() = 22 FAILED! expected: 21 >>new Date( 1969,11,31,23,59,59,999).getTime() = 25199999 FAILED! >>expected: 21599999 >>new Date( 1969,11,31,23,59,59,999).valueOf() = 25199999 FAILED! >>expected: 21599999 >>new Date( 1969,11,31,23,59,59,999).getUTCHours() = 6 FAILED! expected: 5 >>new Date( 1970,0,1,0,0,0,0).getTime() = 25200000 FAILED! expected: 21600000 >>new Date( 1970,0,1,0,0,0,0).valueOf() = 25200000 FAILED! expected: 21600000 >>new Date( 1970,0,1,0,0,0,0).getUTCHours() = 7 FAILED! expected: 6 >>new Date( 1969,11,31,16,0,0,0).getTime() = -3600000 FAILED! expected: >>-7200000 >>new Date( 1969,11,31,16,0,0,0).valueOf() = -3600000 FAILED! expected: >>-7200000 >>new Date( 1969,11,31,16,0,0,0).getUTCHours() = 23 FAILED! expected: 22 >>new Date(1969,12,1,0,0,0,0).getTime() = 25200000 FAILED! expected: 21600000 >>new Date(1969,12,1,0,0,0,0).valueOf() = 25200000 FAILED! expected: 21600000 >>new Date(1969,12,1,0,0,0,0).getUTCHours() = 7 FAILED! expected: 6 >> >>[snip] >> >>-*- executing: >>/usr/ports/lang/spidermonkey/work/js/src/FreeBSD6.0-RELEASE-p1_DBG.OBJ/js >> -f ./ecma/shell.js -f ./ecma/Date/15.9.3.1-4.js >>*-* Testcase ecma/Date/15.9.3.1-4.js failed: >> >>Failure messages were: >>new Date(1899,11,31,16,0,0,0).getTime() = -2208992400000 FAILED! >>expected: -2208996000000 >>new Date(1899,11,31,16,0,0,0).valueOf() = -2208992400000 FAILED! >>expected: -2208996000000 >>new Date(1899,11,31,16,0,0,0).getUTCHours() = 23 FAILED! expected: 22 >>new Date(1899,11,31,15,59,59,999).getTime() = -2208992400001 FAILED! >>expected: -2208996000001 >>new Date(1899,11,31,15,59,59,999).valueOf() = -2208992400001 FAILED! >>expected: -2208996000001 >>new Date(1899,11,31,15,59,59,999).getUTCHours() = 22 FAILED! expected: 21 >>new Date(1899,11,31,23,59,59,999).getTime() = -2208963600001 FAILED! >>expected: -2208967200001 >>new Date(1899,11,31,23,59,59,999).valueOf() = -2208963600001 FAILED! >>expected: -2208967200001 >>new Date(1899,11,31,23,59,59,999).getUTCHours() = 6 FAILED! expected: 5 >>new Date(1900,0,1,0,0,0,0).getTime() = -2208963600000 FAILED! expected: >>-2208967200000 >>new Date(1900,0,1,0,0,0,0).valueOf() = -2208963600000 FAILED! expected: >>-2208967200000 >>new Date(1900,0,1,0,0,0,0).getUTCHours() = 7 FAILED! expected: 6 >>new Date(1900,0,1,0,0,0,1).getTime() = -2208963599999 FAILED! expected: >>-2208967199999 >>new Date(1900,0,1,0,0,0,1).valueOf() = -2208963599999 FAILED! expected: >>-2208967199999 >>new Date(1900,0,1,0,0,0,1).getUTCHours() = 7 FAILED! expected: 6 >> >>[snip] >> >>-*- executing: >>/usr/ports/lang/spidermonkey/work/js/src/FreeBSD6.0-RELEASE-p1_DBG.OBJ/js >> -f ./ecma/shell.js -f ./ecma/Date/15.9.3.8-5.js >>*-* Testcase ecma/Date/15.9.3.8-5.js failed: >> >>Failure messages were: >>new Date(-2208988800000).getHours() = 17 FAILED! expected: 18 >>new Date(-2208960000000).getHours() = 1 FAILED! expected: 2 >>new Date("Sun Dec 31 1899 17:00:00 GMT-0700 (MST)").getHours() = 17 >>FAILED! expected: 18 >>new Date("Mon Jan 01 1900 01:00:00 GMT-0700 (MST)").getHours() = 1 >>FAILED! expected: 2 >>new Date("Mon, 01 Jan 1900 00:00:00 GMT").getHours() = 17 FAILED! >>expected: 18 >>new Date("Mon, 01 Jan 1900 08:00:00 GMT").getHours() = 1 FAILED! expected: 2 >> >>[snip] >> >>-*- executing: >>/usr/ports/lang/spidermonkey/work/js/src/FreeBSD6.0-RELEASE-p1_DBG.OBJ/js >> -f ./ecma/shell.js -f ./ecma/Date/15.9.5.23-1.js >>*-* Testcase ecma/Date/15.9.5.23-1.js failed: >> >>Failure messages were: >>var d = new Date(0); d.setTime(0); d.getHours() = 17 FAILED! expected: 18 >> >>-*- exit code 0, exit signal 0. >>-*- executing: >>/usr/ports/lang/spidermonkey/work/js/src/FreeBSD6.0-RELEASE-p1_DBG.OBJ/js >> -f ./ecma/shell.js -f ./ecma/Date/15.9.5.23-10.js >>*-* Testcase ecma/Date/15.9.5.23-10.js failed: >> >>[snip] >> >>-*- executing: >>/usr/ports/lang/spidermonkey/work/js/src/FreeBSD6.0-RELEASE-p1_DBG.OBJ/js >> -f ./ecma/shell.js -f ./ecma/Date/15.9.5.24-5.js >>*-* Testcase ecma/Date/15.9.5.24-5.js failed: >> >>Failure messages were: >>var date = new Date(0); date.setMilliseconds(0); date.getHours() = 17 >>FAILED! expected: 18 >> >>-*- exit code 0, exit signal 0. >> >>[major snip] >> >>-*- Writing output to results-2005-12-29-221545-smdebug.html. >>-#- Wrote results to 'results-2005-12-29-221545-smdebug.html'. >>-#- 45 test(s) failed >>*** Error code 1 >> >>Stop in /usr/ports/lang/spidermonkey. >>*** Error code 1 >> >>Stop in /usr/ports/multimedia/avidemux2. >>** Command failed [exit code 1]: /usr/bin/script -qa >>/tmp/portupgrade57305.43 make >>** Fix the problem and try again. >> >> >>-- >>GnuPG Public Key: >>http://www.mkproductions.org/mk_pubkey.asc >> >>Internet Radio: >>Party107 (Trance/Electronic) - http://www.party107.com >>Rock 101.9 The Edge (Rock) - http://www.rock1019.net >> >>IRC: >>MIXXnet IRC Network - irc.mixxnet.net (Nick: MIXX941) > > > > -- GnuPG Public Key: http://www.mkproductions.org/mk_pubkey.asc Internet Radio: Party107 (Trance/Electronic) - http://www.party107.com Rock 101.9 The Edge (Rock) - http://www.rock1019.net IRC: MIXXnet IRC Network - irc.mixxnet.net (Nick: MIXX941) --------------enigED745B1BB744541A83AF6B5F Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDtWvElH2ybcmj7I8RAvJRAKCbsZx8N1iosiTORog7r5ZVgcD4twCdGBhZ wlp1hbZp/Y/e4Z7Fm4LS5Bg= =KYJn -----END PGP SIGNATURE----- --------------enigED745B1BB744541A83AF6B5F-- From owner-freebsd-ports@FreeBSD.ORG Fri Dec 30 19:34:58 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAD5B16A422 for ; Fri, 30 Dec 2005 19:34:58 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from cicero1.cybercity.dk (cicero1.cybercity.dk [212.242.40.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83D4F43D55 for ; Fri, 30 Dec 2005 19:34:44 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from [10.0.0.100] (port456.ds1-bav.adsl.cybercity.dk [212.242.213.149]) by cicero1.cybercity.dk (Postfix) with ESMTP id 8C49A640D46; Fri, 30 Dec 2005 20:34:41 +0100 (CET) Message-ID: <43B58C0A.8090001@FreeBSD.org> Date: Fri, 30 Dec 2005 20:35:38 +0100 From: Lars Thegler User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Forrest Aldrich References: <43AF60D2.7020501@forrie.com> In-Reply-To: <43AF60D2.7020501@forrie.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org Subject: Re: Slimserver/mDNSResponder issues... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2005 19:34:58 -0000 Forrest Aldrich wrote: > I've noticed these errors in the slimserver.log: > > mDNSResponderPosix: Unexpected argument > '/var/db/slimserver/cache/mDNS.conf' [...] > 2005-12-22 02:46:12.7084 ERROR: Couldn't open song. > 2005-12-22 02:46:17.8440 ERROR: Couldn't gotoNext, stopping > > I don't know what mdns.conf is really supposed to have in it; however, > I'm not able to play anything on my slimserver now, and I wonder if it's > related to this problem. I don't think the mDNS issue is the reason why you are not able to play anything; I have the same mDNS whining in my slimserver.log, but I can play audio just fine. The "ERROR: Couldn't open song" on the other hand, could be because you are trying to play file types that Slimserver can't do out of the box. See also http://www.freebsd.org/cgi/query-pr.cgi?pr=91092 /Lars From owner-freebsd-ports@FreeBSD.ORG Fri Dec 30 20:09:41 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27DB616A420 for ; Fri, 30 Dec 2005 20:09:41 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E41643D58 for ; Fri, 30 Dec 2005 20:09:40 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: by zproxy.gmail.com with SMTP id 8so2055328nzo for ; Fri, 30 Dec 2005 12:09:40 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:user-agent:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=ppi0JqRl5LrA3dvdixY6I/YFbqo8fndi13im97V7s9p4y4SoBSPS0ChnsqXw4pLY9nv1gTgBJ6ViEaeJ3IIEX6XxDwW8vLN0AYsMO16bG7F6JBlG+pD+wlJXqSRsrJ5fvrPcFDgECojEVYcFgy3XyJltGrV4OV8wuCHm7VZqn5I= Received: by 10.65.22.18 with SMTP id z18mr3545393qbi; Fri, 30 Dec 2005 12:09:39 -0800 (PST) Received: from ringworm.mechee.com ( [71.102.22.155]) by mx.gmail.com with ESMTP id e17sm3267984qba.2005.12.30.12.09.39; Fri, 30 Dec 2005 12:09:39 -0800 (PST) From: "Michael C. Shultz" To: freebsd-ports@freebsd.org Date: Fri, 30 Dec 2005 12:09:36 -0800 User-Agent: KMail/1.8.3 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200512301209.37040.ringworm01@gmail.com> Subject: Need testers: modifying ports so dependencies are automatically updated at make install time X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2005 20:09:41 -0000 I put together a PR that modifies a port so that when: make or make install is run, if any of the ports dependencies are out of date they are updated first before installing the port. Another benefit is less drive space is used because after each dependency is built and installed it is cleaned, where as now all dependencies are cleaned in one shot after a port is built. The port comitters do not want to put this into the system or even consider the idea until users have had a chance to test the idea and suggested I post it here. The PR with the patch is here: http://www.freebsd.org/cgi/query-pr.cgi?pr=91105 Instructions on how to apply it are in the PR but if you need help please send me a note. I am most grateful for anyone willing to take the time to test this out, thanks! -Mike From owner-freebsd-ports@FreeBSD.ORG Fri Dec 30 20:22:29 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EAFF16A41F for ; Fri, 30 Dec 2005 20:22:29 +0000 (GMT) (envelope-from parv@pair.com) Received: from mta11.adelphia.net (mta11.adelphia.net [68.168.78.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFB6A43D79 for ; Fri, 30 Dec 2005 20:22:24 +0000 (GMT) (envelope-from parv@pair.com) Received: from default.chvlva.adelphia.net ([68.67.248.200]) by mta11.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20051230202224.IQQT5278.mta11.adelphia.net@default.chvlva.adelphia.net>; Fri, 30 Dec 2005 15:22:24 -0500 Received: by default.chvlva.adelphia.net (Postfix, from userid 1000) id CFFAEB5DA; Fri, 30 Dec 2005 15:22:27 -0500 (EST) Date: Fri, 30 Dec 2005 15:22:27 -0500 From: Parv To: "Michael C. Shultz" Message-ID: <20051230202227.GA6673@holestein.holy.cow> Mail-Followup-To: "Michael C. Shultz" , freebsd-ports@freebsd.org References: <200512301209.37040.ringworm01@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200512301209.37040.ringworm01@gmail.com> Cc: freebsd-ports@freebsd.org Subject: Re: Need testers: modifying ports so dependencies are automatically updated at make install time X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2005 20:22:29 -0000 in message <200512301209.37040.ringworm01@gmail.com>, wrote Michael C. Shultz thusly... > > I put together a PR that modifies a port so that when: > > make or make install > > is run, if any of the ports dependencies are out of date they are > updated first before installing the port. That would be a worse position if i happened to have a slightly older version of a dependency port (but new version exists in the ports tree) which would work just fine for the port needing that particular dependency port. pkg_add already suffers due to a similar problem; i would like the ports not being infected too. > Another benefit is less drive space is used because after each > dependency is built and installed it is cleaned There should be some mechanism to disable cleaning. - Parv > http://www.freebsd.org/cgi/query-pr.cgi?pr=91105 -- From owner-freebsd-ports@FreeBSD.ORG Fri Dec 30 22:28:30 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D0F016A41F; Fri, 30 Dec 2005 22:28:30 +0000 (GMT) (envelope-from scheidell@secnap.net) Received: from secnap2.secnap.com (secnap2.secnap.com [204.89.241.128]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12C2F43D58; Fri, 30 Dec 2005 22:28:29 +0000 (GMT) (envelope-from scheidell@secnap.net) MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: quoted-printable content-class: urn:content-classes:message X-MimeOLE: Produced By Microsoft Exchange V6.0.6603.0 Date: Fri, 30 Dec 2005 17:28:28 -0500 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Domtools.com hyjacked? Thread-Index: AcYIwInJ1VZxJvAFTXmIhb9E0QqLEQEzox+w From: "Michael Scheidell" To: , Cc: freebsd-security Subject: Domtools.com hyjacked? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2005 22:28:30 -0000 Attempted to install dlint port. Only distribution site is www.domtools.com Email to 'content@domtools.com' and pab@domtools.com bounces (can't relay) Phone number missing on whois record. Fetch of tarball fails checksum (it delivers a generic 'web hosted search engine that just hijacked someone's domain' web page. Maybe domtools didn't renew? New web company messed up dns or apache virtual hosting records? Don't know where else to find a safe copy of dlint From owner-freebsd-ports@FreeBSD.ORG Fri Dec 30 23:44:20 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 699D716A41F for ; Fri, 30 Dec 2005 23:44:20 +0000 (GMT) (envelope-from serge@quenix1.dyndns.org) Received: from relais.videotron.ca (relais.videotron.ca [24.201.245.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7640943D5F for ; Fri, 30 Dec 2005 23:44:18 +0000 (GMT) (envelope-from serge@quenix1.dyndns.org) Received: from quenix2.dyndns.org ([66.131.244.21]) by VL-MO-MR001.ip.videotron.ca (Sun Java System Messaging Server 6.2-2.05 (built Apr 28 2005)) with ESMTP id <0ISC000HV4LT5KG0@VL-MO-MR001.ip.videotron.ca> for ports@FreeBSD.org; Fri, 30 Dec 2005 18:44:17 -0500 (EST) Received: from quenix1.dyndns.org ([192.168.0.11]) by quenix2.dyndns.org with esmtp (Exim 4.60 (FreeBSD)) (envelope-from ) id 1EsTuz-00027W-8r for ports@FreeBSD.org; Fri, 30 Dec 2005 18:44:17 -0500 Received: from serge by quenix1.dyndns.org with local (Exim 4.60 (FreeBSD)) (envelope-from ) id 1EsTuz-0000sa-0C for ports@FreeBSD.org; Fri, 30 Dec 2005 18:44:17 -0500 Date: Fri, 30 Dec 2005 18:44:12 -0500 From: Serge Gagnon Sender: Serge Gagnon To: ports@FreeBSD.org Message-id: MIME-version: 1.0 X-Mailer: Sylpheed version 2.0.4 (GTK+ 2.8.9; i386-portbld-freebsd6.0) Content-type: multipart/signed; protocol="application/pgp-signature"; micalg=PGP-SHA1; boundary="Signature=_Fri__30_Dec_2005_18_44_12_-0500_LJ9Z7IMRx/g2iBXV" Cc: Subject: I'm in doubt about the license of devel/plan9port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Dec 2005 23:44:20 -0000 --Signature=_Fri__30_Dec_2005_18_44_12_-0500_LJ9Z7IMRx/g2iBXV Content-Type: text/plain; charset=ISO-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello, I'm in doubt about the license of my ports devel/plan9port, then i decided to mark it RESTRICTED. The author of the software contact me and tell me that he think that his software shouldn't not be mark RESTRICTED. However, his software (plan9port AKA:"Plan 9 from User Space" http://swtch.com/plan9port) is a port of another software ( Plan 9 from Bell Labs http://www.cs.bell-labs.com/plan9dist) to UNIX. The lines in the LICENSE that made me think that it couldn't be redistributed as a package is: "The bitmap fonts in the font/lucida directory are copyright B&H Inc. and Y&Y Inc. and distributed under the following exception to the Lucent license: No right is granted to create derivative works of or to redistribute (other than with the Plan 9 Operating System) the screen imprinter fonts identified in subdirectory font/lucida. This directory contains material copyrights by B&H Inc. and Y&Y Inc." Full LICENSE can be downloaded here: http://cvs.pdos.csail.mit.edu/cvs/plan9/LICENSE IMHO plan9port is not "Plan 9 from Bell Labs" nor "_the_ Plan 9 Operating System" or just "an operating system". It is a certain amount of softwares that come _from_ "Plan 9 from Bell Labs" to UNIX. It is plan9port. The author replied me about what i think about that: "I would argue that distribution of the fonts with plan9port counts as being with the Plan 9 Operating System, since that's what plan9port is, just a port of the Plan 9 Operating System software to Unix systems. If you pulled the fonts out and distributed them with some other piece of software, that wouldn't be allowed. But I think distribution with plan9port is fine." The author seems to be a _very_ good programmer, but i don't know what an _average_ lawyer think about that. However, i found a NOTICE http://cvs.pdos.csail.mit.edu/cvs/plan9/font/lucida/NOTICE in the fonts/lucida directory that tell "This directory contains Bigelow & Holmes Lucida=C2=AE fonts as licensed by Y&Y Inc., 45 Walden Street, Concord, Massachusetts, 01742, USA. Copyright =C2=A9 1993 Bigelow & Holmes Inc. Y&Y LUCIDA FONT SOFTWARE LICENSE AGREEMENT NOTICE TO USER: THE FONTS IN THIS DIRECTORY ARE COVERED BY THE PLAN 9 OPEN SOURCE LICENSE AGREEMENT, IN PARTICULAR PARAGRAPH 2.2: 2.2 No right is granted to Licensee to create derivative works of or to redistribute (other than with the Original Software or a derivative thereof) the screen imprinter fonts identified in subdirectory /lib/font/bit/lucida and printer fonts (Lucida Sans Unicode, Lucida Sans Italic, Lucida Sans Demibold, Lucida Typewriter, Lucida Sans Typewriter83), identified in subdirectory /sys/lib/postscript/font. Lucida is a registered trademark of Bigelow & Holmes Incorporated. PostScript is a registered trademark of Adobe Systems Incorporated." I don't speak english, then i'm not sure about the part "other than with the Original Software or a derivative thereof". Is the "derivative thereof" could means "plan9port http://swtch.com/plan9port" ? Is the NOTICE that i found in the fonts/lucida directory have priority on the LICENSE that cannot talk about "derivative" ? So, if someone here are some knowledge/experience about license and can answer me if i should or shouldn't remove the RESTRICTED in my port, i'll pay him a beer if he comes to Quebec city ;) --=20 GAGNON serge PGP KEY-ID: 0xBBC1478F PGP Fingerprint: B48B 4633 28F5 28F6 7A62 5650 69C8 E293 BBC1 478F PPG Key: http://quenix2.dyndns.org:7777 | telnet quenix2.dyndns.org 7777 --Signature=_Fri__30_Dec_2005_18_44_12_-0500_LJ9Z7IMRx/g2iBXV Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDtcZQacjik7vBR48RAro1AJ9zBlJo1TGMREVJs1ujbUXgVClR3gCfWtxa eiNkVVkAE4T4hhPYOPQVC/s= =sMhM -----END PGP SIGNATURE----- --Signature=_Fri__30_Dec_2005_18_44_12_-0500_LJ9Z7IMRx/g2iBXV-- From owner-freebsd-ports@FreeBSD.ORG Sat Dec 31 00:15:39 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AE0316A41F for ; Sat, 31 Dec 2005 00:15:39 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AEAA43D5C for ; Sat, 31 Dec 2005 00:15:39 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id 79F284179; Fri, 30 Dec 2005 18:15:38 -0600 (CST) Date: Fri, 30 Dec 2005 18:15:38 -0600 To: Serge Gagnon Message-ID: <20051231001538.GA12280@soaustin.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.9i From: linimon@lonesome.com (Mark Linimon) Cc: ports@FreeBSD.org Subject: Re: I'm in doubt about the license of devel/plan9port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Dec 2005 00:15:39 -0000 If in doubt, it needs to stay RESTRICTED. IANAL but it sounds to me like he shouldn't be redistributing the fonts, at least, without express permission of their creators. mcl From owner-freebsd-ports@FreeBSD.ORG Sat Dec 31 00:38:18 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A35C316A41F for ; Sat, 31 Dec 2005 00:38:18 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 834AD43D79 for ; Sat, 31 Dec 2005 00:38:09 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: by wproxy.gmail.com with SMTP id i14so1713046wra for ; Fri, 30 Dec 2005 16:38:08 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:user-agent:references:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=N2rnEVN7oL9q96RppoS5USRvUyhRIf+RvI/qriDaEe+v2qX9DtxKpEyx+I6n3X6BX5QsUPA36SNIzPBiepcL4pNl7NFWXiiRw0ZQrCZ4p1fSWX0/QrVI9hraxkoNtgvby1vscGbKuZFR2OuwcA5j9UJio9GjlKhliRRj+wp+Ci4= Received: by 10.54.135.13 with SMTP id i13mr10635891wrd; Fri, 30 Dec 2005 16:38:08 -0800 (PST) Received: from ringworm.mechee.com ( [71.102.22.155]) by mx.gmail.com with ESMTP id 67sm11992384wra.2005.12.30.16.38.07; Fri, 30 Dec 2005 16:38:08 -0800 (PST) From: "Michael C. Shultz" To: RacerX@makeworld.com, freebsd-ports@freebsd.org Date: Fri, 30 Dec 2005 16:38:05 -0800 User-Agent: KMail/1.8.3 References: <200512301209.37040.ringworm01@gmail.com> <43B5C20F.1090809@makeworld.com> <200512301636.36715.ringworm01@gmail.com> In-Reply-To: <200512301636.36715.ringworm01@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200512301638.06173.ringworm01@gmail.com> Cc: Subject: Re: Need testers: modifying ports so dependencies are automatically updated at make install time X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Dec 2005 00:38:18 -0000 On Friday 30 December 2005 16:36, Michael C. Shultz wrote: > On Friday 30 December 2005 15:26, Chris wrote: > > Michael C. Shultz wrote: > > > I put together a PR that modifies a port so that when: > > > > > > make or make install > > > > > > is run, if any of the ports dependencies are out of date > > > they are updated first before installing the port. Another > > > benefit is less drive space is used because after each dependency > > > is built and installed it is cleaned, where as now all dependencies > > > are cleaned in one shot after a port is built. The port comitters > > > do not want to put this into the system or even consider the idea > > > until users have had a chance to test the idea and suggested I > > > post it here. The PR with the patch is here: > > > > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=91105 > > > > > > Instructions on how to apply it are in the PR but if you need help > > > please send me a note. I am most grateful for anyone willing to > > > take the time to test this out, thanks! > > > > > > -Mike > > > > Count me in - I have been a big fan of your portmanager. Thank you Chris, your past support encouraged me to continue portmanager development so it means a lot you taking this on. :) -Mike (resent so this gets to the ports mail list) From owner-freebsd-ports@FreeBSD.ORG Sat Dec 31 01:12:31 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23C6816A41F for ; Sat, 31 Dec 2005 01:12:31 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E3D743D45 for ; Sat, 31 Dec 2005 01:12:30 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: by zproxy.gmail.com with SMTP id q3so1369344nzb for ; Fri, 30 Dec 2005 17:12:29 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:user-agent:references:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=tpk7bUOSwBEkr6emrzG5h/ZkpNdRqLjtAVQVxq2WNawGeA3EXSFpBI1zNBf2mZRH1McE6Jsgf/ECSSDK/EmEHQiA30x7BhfKxzf+TTRCZwlohO4C38utRlhN3Tq6ruGh6AkSSr+1fE47+aTXP5SoI68p0C/ykQf44qKGe9ccbxU= Received: by 10.36.247.54 with SMTP id u54mr8130554nzh; Fri, 30 Dec 2005 17:12:29 -0800 (PST) Received: from ringworm.mechee.com ( [71.102.22.155]) by mx.gmail.com with ESMTP id 6sm870885nzn.2005.12.30.17.12.29; Fri, 30 Dec 2005 17:12:29 -0800 (PST) From: "Michael C. Shultz" To: RacerX@makeworld.com, freebsd-ports@freebsd.org Date: Fri, 30 Dec 2005 17:12:25 -0800 User-Agent: KMail/1.8.3 References: <200512301209.37040.ringworm01@gmail.com> <200512301636.36715.ringworm01@gmail.com> <43B5D51E.8080300@makeworld.com> In-Reply-To: <43B5D51E.8080300@makeworld.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200512301712.26136.ringworm01@gmail.com> Cc: Subject: Re: Need testers: modifying ports so dependencies are automatically updated at make install time X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Dec 2005 01:12:31 -0000 On Friday 30 December 2005 16:47, Chris wrote: > Michael C. Shultz wrote: > > On Friday 30 December 2005 15:26, Chris wrote: > >>Michael C. Shultz wrote: > >>>I put together a PR that modifies a port so that when: > >>> > >>>make or make install > >>> > >>>is run, if any of the ports dependencies are out of date > >>>they are updated first before installing the port. Another > >>>benefit is less drive space is used because after each dependency > >>>is built and installed it is cleaned, where as now all dependencies > >>>are cleaned in one shot after a port is built. The port comitters > >>>do not want to put this into the system or even consider the idea > >>>until users have had a chance to test the idea and suggested I > >>>post it here. The PR with the patch is here: > >>> > >>> http://www.freebsd.org/cgi/query-pr.cgi?pr=91105 > >>> > >>>Instructions on how to apply it are in the PR but if you need help > >>>please send me a note. I am most grateful for anyone willing to > >>>take the time to test this out, thanks! > >>> > >>>-Mike > >> > >>Count me in - I have been a big fan of your portmanager. > > > > Thank you Chris, your past support encouraged me to continue portmanager > > development so it means a lot you taking this on. :) > > > > -Mike > > Just for the record, Im using 6.0-RELEASE-p1 I dont know it that > matters to you or not. It doesn't matter. The experimet needs to work on everything from 4.11 to current. If you have trouble lifting the patch from the PR or applying it let me know. Or wait untill tommorrow and I will have shar files with step by step instructions posted at portmanager's web site. Thanks again! -Mike From owner-freebsd-ports@FreeBSD.ORG Sat Dec 31 02:03:57 2005 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83DE516A420 for ; Sat, 31 Dec 2005 02:03:57 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mail2.fluidhosting.com [204.14.90.12]) by mx1.FreeBSD.org (Postfix) with SMTP id BE9CA43D53 for ; Sat, 31 Dec 2005 02:03:56 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 11468 invoked by uid 399); 31 Dec 2005 02:03:54 -0000 Received: from localhost (HELO ?192.168.1.101?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 31 Dec 2005 02:03:53 -0000 Message-ID: <43B5E708.7010403@FreeBSD.org> Date: Fri, 30 Dec 2005 18:03:52 -0800 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 1.5 (Windows/20051025) MIME-Version: 1.0 To: Derkjan de Haan References: <002601c60667$271c6bd0$0102a8c0@bogomip> <43AB064A.3040706@FreeBSD.org> <000801c6078c$f251c9a0$0102a8c0@bogomip> In-Reply-To: <000801c6078c$f251c9a0$0102a8c0@bogomip> X-Enigmail-Version: 0.93.1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-ports@FreeBSD.org Subject: Re: squid, samba startup scripts fail to run from base system rcorder X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Dec 2005 02:03:57 -0000 Derkjan de Haan wrote: > I just tried that, and rcorder dumps core at boot and shutdown time: > > pid 125 (rcorder), uid 0: exited on signal 6 (core dumped) > Abort trap (core dumped) > > It looks like it fails on the first service it tries to start rcorder doesn't start services, all it does is give you a list. Can you please try to reproduce the crash ('rcorder -s nostart /etc/rc.d/*' should be enough) with a debugging enabled rcorder, backtrace the core dump, and send the info to the freebsd-rc@freebsd.org list? I obviously can't reproduce that problem, or I wouldn't have MFC'ed the new code. Thanks, Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Sat Dec 31 02:07:58 2005 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC1F116A41F for ; Sat, 31 Dec 2005 02:07:58 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mail2.fluidhosting.com [204.14.90.12]) by mx1.FreeBSD.org (Postfix) with SMTP id D600043D53 for ; Sat, 31 Dec 2005 02:07:57 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 20034 invoked by uid 399); 31 Dec 2005 02:07:56 -0000 Received: from localhost (HELO ?192.168.1.101?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 31 Dec 2005 02:07:56 -0000 Message-ID: <43B5E7FB.5000606@FreeBSD.org> Date: Fri, 30 Dec 2005 18:07:55 -0800 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 1.5 (Windows/20051025) MIME-Version: 1.0 To: "Timur I. Bakeyev" References: <002601c60667$271c6bd0$0102a8c0@bogomip> <43AB064A.3040706@FreeBSD.org> <20051222202437.GA24311@bledge.tmseck.homedns.org> <20051223033152.GB78138@com.bat.ru> In-Reply-To: <20051223033152.GB78138@com.bat.ru> X-Enigmail-Version: 0.93.1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Derkjan de Haan , Thomas-Martin Seck , freebsd-ports@FreeBSD.org Subject: Re: squid, samba startup scripts fail to run from base system rcorder X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Dec 2005 02:07:58 -0000 Timur I. Bakeyev wrote: > And Samba here :) > And this one :) Actually, we have new release, so if you guys can give me > hints how to fix rc script for Samba. Ok, thanks for asking. :) The first thing I would do is to separate this into 3 scripts, rather than trying to run things all in one. That will make it possible to do better ordering, and also fix the problem that many users are seeing where samba fails to start because something that ldconfig is supposed to do hasn't been done yet. As Brooks has said, generally anything local running as part of the system (and as root) should REQUIRE: DAEMON, and anything running as a user should REQUIRE: LOGIN. If you have compelling reasons why parts of samba need to run earlier than that, please strike up the conversation on freebsd-rc@freebsd.org. hth, Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Sat Dec 31 14:49:09 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CF1316A41F for ; Sat, 31 Dec 2005 14:49:09 +0000 (GMT) (envelope-from anthony.elizondo@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6681943D5F for ; Sat, 31 Dec 2005 14:49:05 +0000 (GMT) (envelope-from anthony.elizondo@gmail.com) Received: by wproxy.gmail.com with SMTP id 71so1683714wra for ; Sat, 31 Dec 2005 06:48:59 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=qTrSMeU/hdZSslfwS/KX5Hq5vZ29prgfKflZgjOd/g6oQXt1AafnmBIc4Q226+Lq+gZyCUu6K2qHG3usGO8eWxFBdUsaMaZ6ZQcwT0KoaukWVyrabPFVRzQv8FucVm00N6xajNFbBuqr2t8JYsEJpuv/7bliU1KkSAtWbhLbhsk= Received: by 10.64.21.10 with SMTP id 10mr3674465qbu; Sat, 31 Dec 2005 06:48:58 -0800 (PST) Received: by 10.64.208.19 with HTTP; Sat, 31 Dec 2005 06:48:58 -0800 (PST) Message-ID: Date: Sat, 31 Dec 2005 09:48:58 -0500 From: Anthony Elizondo To: Michael Scheidell In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: Cc: ports@freebsd.org, freebsd-security , pbalyoz@jammed.com Subject: Re: Domtools.com hyjacked? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Dec 2005 14:49:09 -0000 On 12/30/05, Michael Scheidell wrote: > Attempted to install dlint port. > > Only distribution site is www.domtools.com > > Email to 'content@domtools.com' and pab@domtools.com bounces (can't > relay) > Phone number missing on whois record. > > Fetch of tarball fails checksum (it delivers a generic 'web hosted > search engine that just hijacked someone's domain' web page. > > Maybe domtools didn't renew? New web company messed up dns or apache > virtual hosting records? > > Don't know where else to find a safe copy of dlint Found one at http://fresh.t-systems-sfr.com/unix/src/misc/dns/.warix/dlint1= .4.0.tar.gz.html and another at http://www.l0t3k.net/tools/DNSutils/ Note: I did not check the checksums. User beware. From owner-freebsd-ports@FreeBSD.ORG Sat Dec 31 14:57:03 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C28F16A41F; Sat, 31 Dec 2005 14:57:03 +0000 (GMT) (envelope-from bsam@ipt.ru) Received: from mail.ipt.ru (mail.ipt.ru [80.253.10.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8033743D5A; Sat, 31 Dec 2005 14:57:02 +0000 (GMT) (envelope-from bsam@ipt.ru) Received: from doc.sem.ipt.ru ([192.168.12.1] helo=srv.sem.ipt.ru) by mail.ipt.ru with esmtp (Exim 4.54 (FreeBSD)) id 1EsiAG-000Kz6-8O; Sat, 31 Dec 2005 17:57:00 +0300 Received: from bsam by srv.sem.ipt.ru with local (Exim 4.54 (FreeBSD)) id 1Esi9Q-000GCU-ME; Sat, 31 Dec 2005 17:56:08 +0300 To: "Michael Scheidell" References: From: Boris Samorodov Date: Sat, 31 Dec 2005 17:56:08 +0300 In-Reply-To: (Michael Scheidell's message of "Fri, 30 Dec 2005 17:28:28 -0500") Message-ID: <19450407@srv.sem.ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: ports@freebsd.org, freebsd-security , pbalyoz@jammed.com Subject: Re: Domtools.com hyjacked? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Dec 2005 14:57:03 -0000 Hi! On Fri, 30 Dec 2005 17:28:28 -0500 Michael Scheidell wrote: > Attempted to install dlint port. > Only distribution site is www.domtools.com > Email to 'content@domtools.com' and pab@domtools.com bounces (can't > relay) > Phone number missing on whois record. > Fetch of tarball fails checksum (it delivers a generic 'web hosted > search engine that just hijacked someone's domain' web page. > Maybe domtools didn't renew? New web company messed up dns or apache > virtual hosting records? > Don't know where else to find a safe copy of dlint ftp://ftp.cronyx.ru/pub/FreeBSD/ports/distfiles/ MD5 and SHA256 checksums are correct. WBR -- Boris B. Samorodov, Research Engineer InPharmTech Co, http://www.ipt.ru Telephone & Internet Service Provider From owner-freebsd-ports@FreeBSD.ORG Sat Dec 31 16:33:44 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF82E16A41F for ; Sat, 31 Dec 2005 16:33:44 +0000 (GMT) (envelope-from gtodd@bellanet.org) Received: from smtp102.rog.mail.re2.yahoo.com (smtp102.rog.mail.re2.yahoo.com [206.190.36.80]) by mx1.FreeBSD.org (Postfix) with SMTP id EF69B43D48 for ; Sat, 31 Dec 2005 16:33:43 +0000 (GMT) (envelope-from gtodd@bellanet.org) Received: (qmail 10670 invoked from network); 31 Dec 2005 16:33:43 -0000 Received: from unknown (HELO ninga.iciti.ca) (todd410@rogers.com@70.28.70.162 with login) by smtp102.rog.mail.re2.yahoo.com with SMTP; 31 Dec 2005 16:33:43 -0000 Received: from [127.0.0.1] (localhost [127.0.0.1]) by ninga.iciti.ca (Postfix) with ESMTP id 9D34625801E; Sat, 31 Dec 2005 11:33:41 -0500 (EST) Message-ID: <43B6B2E4.7020302@bellanet.org> Date: Sat, 31 Dec 2005 11:33:40 -0500 From: Graham Todd Organization: Bellanet User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.5) Gecko/20050109 Fedora/1.7.5-3 X-Accept-Language: es, fr, fr-ca, en, en-us, ar, zh MIME-Version: 1.0 To: Scot Hetzel References: <20051223090639.GA18118@merlin.emma.line.org> <790a9fff0512290758h1cd9d392y5781414ffeb4f433@mail.gmail.com> In-Reply-To: <790a9fff0512290758h1cd9d392y5781414ffeb4f433@mail.gmail.com> X-Enigmail-Version: 0.91.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Cc: ports@freebsd.org, thorsten@tgreiner.net, mi@aldan.algebra.com, lioux@freebsd.org Subject: Re: Can we discontinue the databases/db2 port? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gtodd@bellanet.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Dec 2005 16:33:44 -0000 Scot Hetzel wrote / a écrit / ha escrito: > On 12/23/05, Matthias Andree wrote: >> >>Greetings, >> >>after a recent bug report against various databases/db* ports that asked >>for consistency across these ports, I checked who is still using the >>ancient (not to say obsolete) db2-2.7.7 port. I found these five >>port|summary|maintainer tuples: >> >>$ grep -h db2-2.7 /usr/ports/INDEX{,-5,-6} | cut -d\| -f1,4,6 | sort -u >>amy-0.8.7|A chess program for playing and analyzing games|thorsten@tgreiner.net >>neotcl-8.2.2_2|The NeoTCL part of NeoWebScript -- an Apache TCL mod|mi@aldan.algebra.com >>neowebscript-3.3_2|Embeds a TCL8 interpreter in the Apache server|mi@aldan.algebra.com >>pks-0.9.6|PGP Public Key Server|gtodd@bellanet.org >>qtstalker-0.28|Commodity and stock market charting and technical analysis|lioux@FreeBSD.org >> >>Can these five packages use a newer BerkeleyDB version such as db3 (3.3 >>actually) or one of the db4* packages? If so, we could discontinue and >>remove the db2 port. > > I'm working on converting all the ports that use db* to work with the > new USE_BDB variable from Mk/bsd.databases.mk. I have already > converted the above ports (except neowebscript, as it doesn't directly > depend on db2) to use the USE_BDB variable. I tried to compile them > with newer versions of db*, but the compilation failed. Someone would > need to either patch them or check if their is an upgrade which > supports a newer version of db*. > > Scot Thanks for this. I will see what I can do for pks. Cheers, From owner-freebsd-ports@FreeBSD.ORG Sat Dec 31 18:56:04 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A94F16A420 for ; Sat, 31 Dec 2005 18:56:04 +0000 (GMT) (envelope-from mikej@rogers.com) Received: from smtp104.rog.mail.re2.yahoo.com (smtp104.rog.mail.re2.yahoo.com [206.190.36.82]) by mx1.FreeBSD.org (Postfix) with SMTP id 5A2D243D5E for ; Sat, 31 Dec 2005 18:56:03 +0000 (GMT) (envelope-from mikej@rogers.com) Received: (qmail 1245 invoked from network); 31 Dec 2005 18:56:02 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=rogers.com; h=Received:Message-ID:Date:From:User-Agent:MIME-Version:To:Subject:Content-Type:Content-Transfer-Encoding; b=XvhoLgGNucZ4bw7i9r+2lOKtHfwuyMbKsK9TvKjFyeaIb3DSqgIBdHzIGxcHrkt4C5IbhVyI25/K0+WPoOvZ+1srRAgJ7hooH+Hp8ewlcLhaXeMPc2w4Mdt+RO05UCph0yc1hyXk/VLPKd8nUm7qZDDJmL2UYCcD113zHPlW8vQ= ; Received: from unknown (HELO ?70.30.133.184?) (mikej@rogers.com@70.30.133.184 with plain) by smtp104.rog.mail.re2.yahoo.com with SMTP; 31 Dec 2005 18:56:02 -0000 Message-ID: <43B6D44B.20808@rogers.com> Date: Sat, 31 Dec 2005 13:56:11 -0500 From: Mike Jakubik User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: oliver@FreeBSD.org, ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: FreeBSD Port: security/courier-authlib-base (rc.d changes problem) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Dec 2005 18:56:04 -0000 It seems that since the new rc.d MFC, the courier authdaemond does not start up properly. My setup uses mysql, here is the error i get when booting: FreeBSD 6.0-STABLE #0: Thu Dec 29 15:08:50 EST 2005 amd64 Dec 31 13:45:45 mail authdaemond: modules="authmysql", daemons=5 Dec 31 13:45:45 mail authdaemond: Installing libauthmysql Dec 31 13:45:45 mail authdaemond: Shared object "libmysqlclient.so.14" not found, required by "libauthmysql.so" Dec 31 13:45:47 mail postfix/postfix-script: starting the Postfix mail system Dec 31 13:45:47 mail postfix/master[657]: daemon started -- version 2.2.7, configuration /usr/local/etc/postfix However if i manually restart it right after the system has booted it works just fine: Dec 31 13:48:18 mail authdaemond: stopping authdaemond children Dec 31 13:48:20 mail authdaemond: modules="authmysql", daemons=5 Dec 31 13:48:20 mail authdaemond: Installing libauthmysql Dec 31 13:48:20 mail authdaemond: Installation complete: authmysql