From owner-freebsd-ports Sun Dec 17 3:10:29 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 03:10:10 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2C6C137B402 for ; Sun, 17 Dec 2000 03:10:10 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBHBAAB00823; Sun, 17 Dec 2000 03:10:10 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 17 Dec 2000 03:10:10 -0800 (PST) Resent-Message-Id: <200012171110.eBHBAAB00823@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, Jeremy Shaffner Received: from indigo.external.org (c1118643-b.chmpgn1.il.home.com [24.181.130.163]) by hub.freebsd.org (Postfix) with ESMTP id 1E63837B400 for ; Sun, 17 Dec 2000 03:05:02 -0800 (PST) Received: (from jeremy@localhost) by indigo.external.org (8.11.1/8.11.1) id eBHB5AT52715; Sun, 17 Dec 2000 05:05:10 -0600 (CST) (envelope-from jeremy) Message-Id: <200012171105.eBHB5AT52715@indigo.external.org> Date: Sun, 17 Dec 2000 05:05:10 -0600 (CST) From: Jeremy Shaffner Sender: jeremy@indigo.external.org Reply-To: Jeremy Shaffner To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23596: New Port: editors/pico Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23596 >Category: ports >Synopsis: New Port: editors/pico >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 17 03:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jeremy Shaffner >Release: FreeBSD 4.2-20001106-BETA i386 >Organization: >Environment: >Description: The editor from Pine. This should make lots of newbie Linux converts very happy. Note that Pico's version is 3.7, and even if pine4 is updated that Pico might not change versions. Updates will occur in either of the three situations: pine4 is updated, but pico is unchanged: MASTER_SITES is changed to fetch DISTFILE from /old pine4 is updated, and pico is unchanged but has patch changes: PORTREVISION increases pine4 is updated, and pico itself is upgraded: PORTVERSION increases and PORTREVISION=1 This should keep pico current. If I left a condition out, please advise. The only gotcha that I can think of is if someone installs editors/pico and later installs mail/pine4, then for some reason pkg_delete's pico, their ${LOCALBASE}/bin/pico will be missing. I may take a stab at handling this through pkg-req, soon as I learn how it works. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # pico # pico/files # pico/files/patch-aa # pico/files/patch-an # pico/files/patch-ap # pico/files/patch-aq # pico/files/patch-as # pico/Makefile # pico/distinfo # pico/pkg-plist # pico/pkg-descr # pico/pkg-comment # echo c - pico mkdir -p pico > /dev/null 2>&1 echo c - pico/files mkdir -p pico/files > /dev/null 2>&1 echo x - pico/files/patch-aa sed 's/^X//' >pico/files/patch-aa << 'END-of-pico/files/patch-aa' X--- pico/search.c.old Tue Oct 5 01:49:41 1999 X+++ pico/search.c Wed Feb 16 03:41:45 2000 X@@ -97,12 +97,15 @@ X int bc; X int pc; X { X+ bc = (unsigned char)bc; X+ pc = (unsigned char)pc; X+ X if ((curwp->w_bufp->b_mode & MDEXACT) == 0){ X- if (bc>='a' && bc<='z') X- bc -= 0x20; X+ if (islower(bc)) X+ bc = toupper(bc); X X- if (pc>='a' && pc<='z') X- pc -= 0x20; X+ if (islower(pc)) X+ pc = toupper(pc); X } X X return(bc == pc); X@@ -804,7 +807,7 @@ X int maxlength; /* maximum chars in destination */ X X { X- char c; /* current char to translate */ X+ unsigned char c; /* current char to translate */ X X /* scan through the string */ X while ((c = *srcstr++) != 0) { END-of-pico/files/patch-aa echo x - pico/files/patch-an sed 's/^X//' >pico/files/patch-an << 'END-of-pico/files/patch-an' X*** pico/osdep/os-bsf.h.orig Wed Jul 8 19:37:28 1998 X--- pico/osdep/os-bsf.h Fri Jul 10 12:57:37 1998 X*************** X*** 23,29 **** X X #define USE_DIRENT X #include X! #include X #include X #include X X--- 23,29 ---- X X #define USE_DIRENT X #include X! #include X #include X #include X X*************** X*** 152,158 **** X /* X * Place where mail gets delivered (for pico's new mail checking) X */ X! #define MAILDIR "/usr/spool/mail" X X /* X * What and where the tool that checks spelling is located. If this is X--- 152,158 ---- X /* X * Place where mail gets delivered (for pico's new mail checking) X */ X! #define MAILDIR "/var/mail" X X /* X * What and where the tool that checks spelling is located. If this is END-of-pico/files/patch-an echo x - pico/files/patch-ap sed 's/^X//' >pico/files/patch-ap << 'END-of-pico/files/patch-ap' X*** pico/osdep/term.cap.orig Sat Feb 28 02:14:53 1998 X--- pico/osdep/term.cap Wed Jul 15 01:58:58 1998 X*************** X*** 270,276 **** X _kppu = tgetstr("kP", &p); X _kppd = tgetstr("kN", &p); X _kphome = tgetstr("kh", &p); X! _kpend = tgetstr("kH", &p); X _kpdel = tgetstr("kD", &p); X _kf1 = tgetstr("k1", &p); X _kf2 = tgetstr("k2", &p); X--- 270,277 ---- X _kppu = tgetstr("kP", &p); X _kppd = tgetstr("kN", &p); X _kphome = tgetstr("kh", &p); X! if((_kpend = tgetstr("@7", &p)) == NULL) X! _kpend = tgetstr("kH",&p); X _kpdel = tgetstr("kD", &p); X _kf1 = tgetstr("k1", &p); X _kf2 = tgetstr("k2", &p); END-of-pico/files/patch-ap echo x - pico/files/patch-aq sed 's/^X//' >pico/files/patch-aq << 'END-of-pico/files/patch-aq' X*** pico/display.c.orig Fri Jun 19 20:19:53 1998 X--- pico/display.c Mon Jul 13 01:36:38 1998 X*************** X*** 77,83 **** X {"^X", "Exit", KS_EXIT}, {"^J", "Justify", KS_JUSTIFY}, X {"^W", "Where is", KS_WHEREIS}, {"^V", "Next Pg", KS_NEXTPAGE}, X {"^U", NULL, KS_NONE}, X! #ifdef SPELLER X {"^T", "To Spell", KS_SPELLCHK} X #else X {"^D", "Del Char", KS_NONE} X--- 77,83 ---- X {"^X", "Exit", KS_EXIT}, {"^J", "Justify", KS_JUSTIFY}, X {"^W", "Where is", KS_WHEREIS}, {"^V", "Next Pg", KS_NEXTPAGE}, X {"^U", NULL, KS_NONE}, X! #if defined(SPELLER) && !defined(__FreeBSD__) X {"^T", "To Spell", KS_SPELLCHK} X #else X {"^D", "Del Char", KS_NONE} X*** pico/ebind.h.orig Sat Feb 28 02:10:31 1998 X--- pico/ebind.h Mon Jul 13 01:36:39 1998 X*************** X*** 145,151 **** X {CTRL|'O', filewrite}, X {CTRL|'P', backline}, X {CTRL|'R', insfile}, X! #ifdef SPELLER X {CTRL|'T', spell}, X #endif /* SPELLER */ X {CTRL|'U', yank}, X--- 145,151 ---- X {CTRL|'O', filewrite}, X {CTRL|'P', backline}, X {CTRL|'R', insfile}, X! #if defined(SPELLER) && !defined(__FreeBSD__) X {CTRL|'T', spell}, X #endif /* SPELLER */ X {CTRL|'U', yank}, X*** pico/main.c.orig Tue Apr 21 20:28:08 1998 X--- pico/main.c Mon Jul 13 01:36:39 1998 X*************** X*** 66,72 **** X { F9, (CTRL|'K')}, X { F10, (CTRL|'U')}, X { F11, (CTRL|'C')}, X! #ifdef SPELLER X { F12, (CTRL|'T')} X #else X { F12, (CTRL|'D')} X--- 66,72 ---- X { F9, (CTRL|'K')}, X { F10, (CTRL|'U')}, X { F11, (CTRL|'C')}, X! #if defined(SPELLER) && !defined(__FreeBSD__) X { F12, (CTRL|'T')} X #else X { F12, (CTRL|'D')} END-of-pico/files/patch-aq echo x - pico/files/patch-as sed 's/^X//' >pico/files/patch-as << 'END-of-pico/files/patch-as' X*** pine/init.c.orig Tue Jan 26 21:57:56 1999 X--- pine/init.c Tue Feb 9 22:14:08 1999 X*************** X*** 326,332 **** X X /*---------------------------------------------------------------------- X These are the variables that control a number of pine functions. They X! come out of the .pinerc and the /usr/local/lib/pine.conf files. Some can X be set by the user while in Pine. Eventually all the local ones should X be so and maybe the global ones too. X X--- 326,332 ---- X X /*---------------------------------------------------------------------- X These are the variables that control a number of pine functions. They X! come out of the .pinerc and the @@PREFIX@@/etc/pine.conf files. Some can X be set by the user while in Pine. Eventually all the local ones should X be so and maybe the global ones too. X X*** pico/edef.h.orig Thu Apr 23 02:53:44 1998 X--- pico/edef.h Tue Feb 9 22:14:08 1999 X*************** X*** 59,65 **** X int ComposerEditing = FALSE; /* TRUE if message line is open */ X int revexist = FALSE; /* does reverse video exist? */ X char modecode[] = "WCSEVO"; /* letters to represent modes */ X! long gmode = MDWRAP; /* global editor mode */ X int sgarbf = TRUE; /* TRUE if screen is garbage */ X int mpresf = FALSE; /* TRUE if message in last line */ X int clexec = FALSE; /* command line execution flag */ X--- 59,65 ---- X int ComposerEditing = FALSE; /* TRUE if message line is open */ X int revexist = FALSE; /* does reverse video exist? */ X char modecode[] = "WCSEVO"; /* letters to represent modes */ X! long gmode = MDWRAP | MDTCAPWINS; /* global editor mode */ X int sgarbf = TRUE; /* TRUE if screen is garbage */ X int mpresf = FALSE; /* TRUE if message in last line */ X int clexec = FALSE; /* command line execution flag */ X*** pico/main.c.orig Tue Feb 9 21:46:54 1999 X--- pico/main.c Tue Feb 9 22:14:08 1999 X*************** X*** 443,449 **** X gmode ^= MDSSPD; X break; X case 'q': /* -q for termcap takes precedence */ X! gmode ^= MDTCAPWINS; X break; X case 'w': /* -w turn off word wrap */ X gmode ^= MDWRAP; X--- 443,449 ---- X gmode ^= MDSSPD; X break; X case 'q': /* -q for termcap takes precedence */ X! gmode |= MDTCAPWINS; X break; X case 'w': /* -w turn off word wrap */ X gmode ^= MDWRAP; X*** pico/pilot.c.orig Mon Aug 24 20:37:39 1998 X--- pico/pilot.c Tue Feb 9 22:14:09 1999 X*************** X*** 222,228 **** X sup_keyhelp = !sup_keyhelp; X break; X case 'q': /* -q for termcap takes precedence */ X! gmode ^= MDTCAPWINS; X break; X case 'z': /* -z to suspend */ X gmode ^= MDSSPD; X--- 222,228 ---- X sup_keyhelp = !sup_keyhelp; X break; X case 'q': /* -q for termcap takes precedence */ X! gmode |= MDTCAPWINS; X break; X case 'z': /* -z to suspend */ X gmode ^= MDSSPD; END-of-pico/files/patch-as echo x - pico/Makefile sed 's/^X//' >pico/Makefile << 'END-of-pico/Makefile' X# New ports collection makefile for: pico X# Date created: 16 December 2000 X# Whom: Jeremy Shaffner X# X# $FreeBSD$ X# X# This port tracks Pine4 X# All patch files have been taken from mail/pine4 X XPORTNAME= pico XPORTVERSION= 3.7 XPORTREVISION= 1 XCATEGORIES= editors XMASTER_SITES= ftp://ftp.cac.washington.edu/pine/ XDISTNAME= pine${pineversion} X XMAINTAINER= jeremy@external.org X XWRKSRC= ${WRKDIR}/pine${pineversion}/pico XPATCH_WRKSRC= ${WRKSRC}/.. X Xpineversion= 4.21 X XMAKEFILE= makefile.bsf XALL_TARGET= pico X XMAN1= pico.1 X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/pico ${PREFIX}/bin/pico X ${INSTALL_MAN} ${WRKSRC}/../doc/pico.1 ${PREFIX}/man/man1/pico.1 X X.include END-of-pico/Makefile echo x - pico/distinfo sed 's/^X//' >pico/distinfo << 'END-of-pico/distinfo' XMD5 (pine4.21.tar.gz) = 9252a061387de806f8aa1ced885d41f6 END-of-pico/distinfo echo x - pico/pkg-plist sed 's/^X//' >pico/pkg-plist << 'END-of-pico/pkg-plist' Xbin/pico END-of-pico/pkg-plist echo x - pico/pkg-descr sed 's/^X//' >pico/pkg-descr << 'END-of-pico/pkg-descr' XPICO is a very simple and easy-to-use text editor offering paragraph Xjustification, cut/paste, and a spelling checker. X XWWW: http://www.washington.edu/pine/ END-of-pico/pkg-descr echo x - pico/pkg-comment sed 's/^X//' >pico/pkg-comment << 'END-of-pico/pkg-comment' XPIne's message COmposition editor END-of-pico/pkg-comment exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 3:18:53 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 03:18:49 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from nef.ens.fr (nef.ens.fr [129.199.96.32]) by hub.freebsd.org (Postfix) with ESMTP id C6A1E37B402 for ; Sun, 17 Dec 2000 03:18:47 -0800 (PST) Received: from corto.lpt.ens.fr (corto.lpt.ens.fr [129.199.122.2]) by nef.ens.fr (8.10.1/1.01.28121999) with ESMTP id eBHBIl778435 for ; Sun, 17 Dec 2000 12:18:47 +0100 (CET) Received: from (rsidd@localhost) by corto.lpt.ens.fr (8.9.3/jtpda-5.3.1) id MAA14405 for ports@freebsd.org; Sun, 17 Dec 2000 12:18:46 +0100 (CET) Date: Sun, 17 Dec 2000 12:18:46 +0100 From: Rahul Siddharthan To: ports@freebsd.org Subject: logout on KDE 2 Message-ID: <20001217121846.G9911@lpt.ens.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 3.4-STABLE i386 Sender: Rahul.Siddharthan@lpt.ens.fr Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I recently installed FreeBSD 4.2-release, and yesterday built KDE version 2.0.1 from the newly updated ports tree. It's very nice except that the logout buttons don't work. From looking through mailing list archives and the KDE bug database, it seems that this has happened to others, but I couldn't find any fixes. Any suggestions/patches available now, or is ctrl-alt-bksp the only option? Thanks, Rahul. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 7:10: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 07:10:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D707537B402 for ; Sun, 17 Dec 2000 07:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBHFA1i50596; Sun, 17 Dec 2000 07:10:01 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 17 Dec 2000 07:10:01 -0800 (PST) Resent-Message-Id: <200012171510.eBHFA1i50596@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, ijliao@terry.dragon2.net Received: from Terry.Dorm8.NCTU.edu.tw (Terry.Dorm8.NCTU.edu.tw [140.113.93.99]) by hub.freebsd.org (Postfix) with ESMTP id 7F56137B400 for ; Sun, 17 Dec 2000 07:03:27 -0800 (PST) Received: (from ijliao@localhost) by Terry.Dorm8.NCTU.edu.tw (8.11.1/8.11.1) id eBHF5G540611; Sun, 17 Dec 2000 23:05:16 +0800 (CST) (envelope-from ijliao) Message-Id: <200012171505.eBHF5G540611@Terry.Dorm8.NCTU.edu.tw> Date: Sun, 17 Dec 2000 23:05:16 +0800 (CST) From: Ying-Chieh Liao Sender: ijliao@Terry.Dorm8.NCTU.edu.tw Reply-To: ijliao@terry.dragon2.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23597: new ports: devel/p5-Term-Screen Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23597 >Category: ports >Synopsis: new ports: devel/p5-Term-Screen >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 17 07:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Ying-Chieh Liao >Release: FreeBSD 5.0-CURRENT i386 >Organization: NCTU CSIE >Environment: System: FreeBSD Terry.Dorm8.NCTU.edu.tw 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Tue Dec 5 01:48:31 CST 2000 root@Terry.Dorm8.NCTU.edu.tw:/usr/obj/usr/src/sys/TERRY i386 >Description: new ports : perl module : Term::Screen 1.00 >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Term-Screen # p5-Term-Screen/Makefile # p5-Term-Screen/pkg-comment # p5-Term-Screen/distinfo # p5-Term-Screen/pkg-descr # p5-Term-Screen/pkg-plist # echo c - p5-Term-Screen mkdir -p p5-Term-Screen > /dev/null 2>&1 echo x - p5-Term-Screen/Makefile sed 's/^X//' >p5-Term-Screen/Makefile << 'END-of-p5-Term-Screen/Makefile' X# New ports collection makefile for: Screen X# Date created: Dec 17, 2000 X# Whom: Ying-Chieh Liao X# X# $FreeBSD$ X# X XPORTNAME= Term-Screen XPORTVERSION= 1.00 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Term XPKGNAMEPREFIX= p5- XDISTNAME= Screen-${PORTVERSION} X XMAINTAINER= ijliao@csie.nctu.edu.tw X XUSE_PERL5= YES XCONFIGURE_ARGS= PREFIX=${PREFIX} X XMAN3= Term::Screen.3 XMAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} X Xdo-configure: X @ cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${PERL5} Makefile.PL ${CONFIGURE_ARGS} X X.include END-of-p5-Term-Screen/Makefile echo x - p5-Term-Screen/pkg-comment sed 's/^X//' >p5-Term-Screen/pkg-comment << 'END-of-p5-Term-Screen/pkg-comment' XBasic screen + input class END-of-p5-Term-Screen/pkg-comment echo x - p5-Term-Screen/distinfo sed 's/^X//' >p5-Term-Screen/distinfo << 'END-of-p5-Term-Screen/distinfo' XMD5 (Screen-1.00.tar.gz) = b5d3f4478c71b21802bdb0b49feed92d END-of-p5-Term-Screen/distinfo echo x - p5-Term-Screen/pkg-descr sed 's/^X//' >p5-Term-Screen/pkg-descr << 'END-of-p5-Term-Screen/pkg-descr' XTerm::Screen is a very simple screen positioning module that should work Xwherever `Term::Cap' does. It is set up for Unix using stty's but these Xdependences are isolated by evals in the `new' constructor. Thus you may Xcreate a child module implementing Screen with MS-DOS, ioctl, or other Xmeans to get raw and unblocked input. This is not a replacement for XCurses -- it has no memory. This was written so that it could be easily Xchanged to fit nasty systems, and to be available first thing. X X-- Ying-Chieh Liao Xijliao@csie.nctu.edu.tw END-of-p5-Term-Screen/pkg-descr echo x - p5-Term-Screen/pkg-plist sed 's/^X//' >p5-Term-Screen/pkg-plist << 'END-of-p5-Term-Screen/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/Term/Screen.pm Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Term/Screen/.packlist X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Term/Screen END-of-p5-Term-Screen/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 10:20: 4 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 10:20:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A1B1237B402 for ; Sun, 17 Dec 2000 10:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBHIK1M24971; Sun, 17 Dec 2000 10:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 17 Dec 2000 10:20:01 -0800 (PST) Resent-Message-Id: <200012171820.eBHIK1M24971@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, silby@silby.com Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F11937B400 for ; Sun, 17 Dec 2000 10:14:15 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBHIEFa24432; Sun, 17 Dec 2000 10:14:15 -0800 (PST) (envelope-from nobody) Message-Id: <200012171814.eBHIEFa24432@freefall.freebsd.org> Date: Sun, 17 Dec 2000 10:14:15 -0800 (PST) From: silby@silby.com Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23599: rblsmtpd port should be removed, it is part of ucspi-tcp, which also exists in port form Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23599 >Category: ports >Synopsis: rblsmtpd port should be removed, it is part of ucspi-tcp, which also exists in port form >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 17 10:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Mike Silbersack >Release: >Organization: >Environment: >Description: The rblsmtpd port is of rblsmtpd 0.70. The current version of rblsmtpd is 0.88, and is included as part of the ucspi-tcp port. Hence, the rblsmptd port should be removed. (rblsmtpd will only be distributed as part of ucspi-tcp in the future.) >How-To-Repeat: >Fix: Remove the rblsmtpd port. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 13:39:19 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 13:39:18 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from poseidon.student.umd.edu (poseidon.student.umd.edu [129.2.144.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F19237B400 for ; Sun, 17 Dec 2000 13:39:16 -0800 (PST) Received: from glue.umd.edu (localhost [127.0.0.1]) by poseidon.student.umd.edu (8.11.1/8.11.1) with ESMTP id eBHLdE448063 for ; Sun, 17 Dec 2000 16:39:15 -0500 (EST) (envelope-from bfoz@glue.umd.edu) Sender: bfoz@poseidon.student.umd.edu Message-ID: <3A3D3282.69BA37E2@glue.umd.edu> Date: Sun, 17 Dec 2000 16:39:14 -0500 From: Brandon Fosdick X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: autogen.sh Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org How do I make a port run autogen.sh instead of configure? I tried setting CONFIGURE_SCRIPT="autogen.sh" but on a make configure I get: "cp: configure: No such file or directory". I didn't see anything about this in the porter's handbook. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 13:53:28 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 13:53:26 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from cae88-102-101.sc.rr.com (cae88-102-101.sc.rr.com [24.88.102.101]) by hub.freebsd.org (Postfix) with ESMTP id E0B9D37B400 for ; Sun, 17 Dec 2000 13:53:25 -0800 (PST) Received: (from dmaddox@localhost) by cae88-102-101.sc.rr.com (8.11.1/8.11.1) id eBHLrS010822; Sun, 17 Dec 2000 16:53:28 -0500 (EST) (envelope-from dmaddox) Date: Sun, 17 Dec 2000 16:53:28 -0500 From: "Donald J . Maddox" To: Brandon Fosdick Cc: ports@FreeBSD.ORG Subject: Re: autogen.sh Message-ID: <20001217165328.A10786@cae88-102-101.sc.rr.com> Reply-To: dmaddox@sc.rr.com Mail-Followup-To: Brandon Fosdick , ports@FreeBSD.ORG References: <3A3D3282.69BA37E2@glue.umd.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A3D3282.69BA37E2@glue.umd.edu>; from bfoz@glue.umd.edu on Sun, Dec 17, 2000 at 04:39:14PM -0500 Return-Receipt-To: dmaddox@sc.rr.com Sender: dmaddox@cae88-102-101.sc.rr.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org HAS_CONFIGURE="yes" CONFIGURE_SCRIPT= On Sun, Dec 17, 2000 at 04:39:14PM -0500, Brandon Fosdick wrote: > How do I make a port run autogen.sh instead of configure? I tried > setting CONFIGURE_SCRIPT="autogen.sh" but on a make configure I get: > "cp: configure: No such file or directory". I didn't see anything about > this in the porter's handbook. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 14: 5:34 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 14:05:32 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from poseidon.student.umd.edu (poseidon.student.umd.edu [129.2.144.21]) by hub.freebsd.org (Postfix) with ESMTP id 47BE537B404 for ; Sun, 17 Dec 2000 14:05:32 -0800 (PST) Received: from glue.umd.edu (localhost [127.0.0.1]) by poseidon.student.umd.edu (8.11.1/8.11.1) with ESMTP id eBHM5U458230 for ; Sun, 17 Dec 2000 17:05:30 -0500 (EST) (envelope-from bfoz@glue.umd.edu) Sender: bfoz@poseidon.student.umd.edu Message-ID: <3A3D38AA.ACA91FCF@glue.umd.edu> Date: Sun, 17 Dec 2000 17:05:30 -0500 From: Brandon Fosdick X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: gpsim? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Is anybody working on a port for gpsim? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 16: 4:15 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 16:04:14 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5728F37B400; Sun, 17 Dec 2000 16:04:14 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBI041B65766; Sun, 17 Dec 2000 16:04:01 -0800 (PST) (envelope-from dougb) Date: Sun, 17 Dec 2000 16:04:01 -0800 (PST) From: Message-Id: <200012180004.eBI041B65766@freefall.freebsd.org> To: mwest@uct.ac.za, dougb@FreeBSD.org, freebsd-ports@FreeBSD.org, dougb@FreeBSD.org Subject: Re: ports/23524: New port: rdesktop - RDP client for Windows NT Terminal Server Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: rdesktop - RDP client for Windows NT Terminal Server State-Changed-From-To: open->analyzed State-Changed-By: dougb State-Changed-When: Sun Dec 17 16:02:16 PST 2000 State-Changed-Why: I'm very interested in this port, however the master site is unreachable due to DNS problems. Can you make the distfile available somewhere else, and contact the author to let him know that his site is fubar? Thanks. Responsible-Changed-From-To: freebsd-ports->dougb Responsible-Changed-By: dougb Responsible-Changed-When: Sun Dec 17 16:02:16 PST 2000 Responsible-Changed-Why: I'll handle this submission. http://www.freebsd.org/cgi/query-pr.cgi?pr=23524 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 16:40: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 16:40:04 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 30C6537B400 for ; Sun, 17 Dec 2000 16:40:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBI0e4E70699; Sun, 17 Dec 2000 16:40:04 -0800 (PST) (envelope-from gnats) Date: Sun, 17 Dec 2000 16:40:04 -0800 (PST) Message-Id: <200012180040.eBI0e4E70699@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Doug Barton Subject: Re: ports/23596: New Port: editors/pico Reply-To: Doug Barton Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23596; it has been noted by GNATS. From: Doug Barton To: Jeremy Shaffner Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/23596: New Port: editors/pico Date: Sun, 17 Dec 2000 16:30:28 -0800 Jeremy Shaffner wrote: > >Synopsis: New Port: editors/pico What your port does as far as I can tell is to download the source for pine, but only build pico. While this may have some benefit in the minds of the anti-pine zealots, I'm much more inclined to fix the pine port to use a more up to date version. There may be some sympathy for a pico-only port, though, so I'll leave this one open. Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 17:14:33 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 17:14:31 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from indigo.external.org (c1118643-b.chmpgn1.il.home.com [24.181.130.163]) by hub.freebsd.org (Postfix) with ESMTP id E7D2837B400; Sun, 17 Dec 2000 17:14:30 -0800 (PST) Received: (from jeremy@localhost) by indigo.external.org (8.11.1/8.11.1) id eBI1EWq56578; Sun, 17 Dec 2000 19:14:32 -0600 (CST) (envelope-from jeremy) Date: Sun, 17 Dec 2000 19:14:32 -0600 From: Jeremy Shaffner To: Doug Barton Cc: FreeBSD-gnats-submit@freebsd.org, ports@freebsd.org Subject: Re: ports/23596: New Port: editors/pico Message-ID: <20001217191431.A54615@external.org> References: <200012171105.eBHB5AT52715@indigo.external.org> <3A3D5AA4.2782DE34@gorean.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A3D5AA4.2782DE34@gorean.org>; from DougB@gorean.org on Sun, Dec 17, 2000 at 04:30:28PM -0800 Sender: jeremy@indigo.external.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Dec 17, 2000 at 04:30:28PM -0800, Doug Barton wrote: > Jeremy Shaffner wrote: > > > >Synopsis: New Port: editors/pico > > What your port does as far as I can tell is to download the source for > pine, but only build pico. While this may have some benefit in the minds > of the anti-pine zealots, I'm much more inclined to fix the pine port to > use a more up to date version. Do you mean a more up to date version of Pico? Pico is currently at version 3.7 and probably is still at 3.7 even in Pine 4.31. Updating Pine won't provide a pico-only port or offer a newer version of Pico. When Pine 4.31 is committed, I'll determine if Pico is newer or has different patches and then submit an update for it. An argument could be made for using Pine's PORTVERSION, but I saw no immediate benefit. > There may be some sympathy for a pico-only port, though, so I'll leave > this one open. Thankyou. I think a pico-only port is warranted. -- Jeremy --------------------------------------------------------------------- Jeremy Shaffner | This space for rent. jeremy@external.org | $ grep happiness life http://www.external.org/~jeremy/pgp.key | FreeBSD: The Power to Serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 17:20: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 17:20:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BB2D37B400 for ; Sun, 17 Dec 2000 17:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBI1K2c76264; Sun, 17 Dec 2000 17:20:02 -0800 (PST) (envelope-from gnats) Date: Sun, 17 Dec 2000 17:20:02 -0800 (PST) Message-Id: <200012180120.eBI1K2c76264@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jeremy Shaffner Subject: Re: ports/23596: New Port: editors/pico Reply-To: Jeremy Shaffner Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23596; it has been noted by GNATS. From: Jeremy Shaffner To: Doug Barton Cc: FreeBSD-gnats-submit@freebsd.org, ports@freebsd.org Subject: Re: ports/23596: New Port: editors/pico Date: Sun, 17 Dec 2000 19:14:32 -0600 On Sun, Dec 17, 2000 at 04:30:28PM -0800, Doug Barton wrote: > Jeremy Shaffner wrote: > > > >Synopsis: New Port: editors/pico > > What your port does as far as I can tell is to download the source for > pine, but only build pico. While this may have some benefit in the minds > of the anti-pine zealots, I'm much more inclined to fix the pine port to > use a more up to date version. Do you mean a more up to date version of Pico? Pico is currently at version 3.7 and probably is still at 3.7 even in Pine 4.31. Updating Pine won't provide a pico-only port or offer a newer version of Pico. When Pine 4.31 is committed, I'll determine if Pico is newer or has different patches and then submit an update for it. An argument could be made for using Pine's PORTVERSION, but I saw no immediate benefit. > There may be some sympathy for a pico-only port, though, so I'll leave > this one open. Thankyou. I think a pico-only port is warranted. -- Jeremy --------------------------------------------------------------------- Jeremy Shaffner | This space for rent. jeremy@external.org | $ grep happiness life http://www.external.org/~jeremy/pgp.key | FreeBSD: The Power to Serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 17:30: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 17:30:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D8AD837B402 for ; Sun, 17 Dec 2000 17:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBI1U1R77382; Sun, 17 Dec 2000 17:30:01 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 17 Dec 2000 17:30:01 -0800 (PST) Resent-Message-Id: <200012180130.eBI1U1R77382@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, Jeremy Shaffner Received: from indigo.external.org (c1118643-b.chmpgn1.il.home.com [24.181.130.163]) by hub.freebsd.org (Postfix) with ESMTP id CFF1437B400 for ; Sun, 17 Dec 2000 17:23:09 -0800 (PST) Received: (from jeremy@localhost) by indigo.external.org (8.11.1/8.11.1) id eBI1NGf56753; Sun, 17 Dec 2000 19:23:16 -0600 (CST) (envelope-from jeremy) Message-Id: <200012180123.eBI1NGf56753@indigo.external.org> Date: Sun, 17 Dec 2000 19:23:16 -0600 (CST) From: Jeremy Shaffner Sender: jeremy@indigo.external.org Reply-To: Jeremy Shaffner To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23602: Recursive distclean for bsd.port.mk w/patch Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23602 >Category: ports >Synopsis: Recursive distclean for bsd.port.mk w/patch >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 17 17:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jeremy Shaffner >Release: FreeBSD 4.2-20001106-BETA i386 >Organization: >Environment: $FreeBSD: ports/Mk/bsd.port.mk,v 1.360 2000/11/16 13:06:25 asami Exp $ >Description: The distclean target does a recursive clean on dependancies and does a distclean for the current port. Defining NOCLEANDEPENDS avoids the recursion. But there is no target or variable for distcleaning all dependancies. I suggest: (in audio/freeamp for example) $ make distclean -DDISTCLEANDEPENDS ===> Cleaning for bzip2-1.0.1 ===> Deleting distfiles for bzip2-1.0.1 ===> Cleaning for esound-0.2.22 ===> Deleting distfiles for esound-0.2.22 ===> Cleaning for id3lib-3.7.13 ===> Deleting distfiles for id3lib-3.7.13 ===> Cleaning for libaudiofile-0.1.9 ===> Deleting distfiles for libaudiofile-0.1.9 ===> Cleaning for musicbrainz-1.0.0.pre5 ===> Deleting distfiles for musicbrainz-1.0.0.pre5 ===> Cleaning for ORBit-0.5.5 ===> Deleting distfiles for ORBit-0.5.5 ===> Cleaning for gettext-0.10.35 ===> Deleting distfiles for gettext-0.10.35 ===> Cleaning for glib-1.2.8 ===> Deleting distfiles for glib-1.2.8 ===> Cleaning for gmake-3.79.1 ===> Deleting distfiles for gmake-3.79.1 ===> Cleaning for imake-4.0.1 ===> Deleting distfiles for imake-4.0.1 ===> Cleaning for libtool-1.3.4_1 ===> Deleting distfiles for libtool-1.3.4_1 ===> Cleaning for nasm-0.98 ===> Deleting distfiles for nasm-0.98 ===> Cleaning for popt-1.5 ===> Deleting distfiles for popt-1.5 ===> Cleaning for gdk-pixbuf-0.9.0 ===> Deleting distfiles for gdk-pixbuf-0.9.0 ===> Cleaning for imlib-1.9.8.1 ===> Deleting distfiles for imlib-1.9.8.1 ===> Cleaning for jpeg-6b ===> Deleting distfiles for jpeg-6b ===> Cleaning for libungif-4.1.0b1 ===> Deleting distfiles for libungif-4.1.0b1 ===> Cleaning for png-1.0.8_1 ===> Deleting distfiles for png-1.0.8_1 ===> Cleaning for tiff-3.5.5 ===> Deleting distfiles for tiff-3.5.5 ===> Cleaning for freetype-1.3.1 ===> Deleting distfiles for freetype-1.3.1 ===> Cleaning for gtk-1.2.8 ===> Deleting distfiles for gtk-1.2.8 ===> Cleaning for XFree86-libraries-4.0.1_2 ===> Deleting distfiles for XFree86-libraries-4.0.1_2 ===> Cleaning for gnomelibs-1.2.8_1 ===> Deleting distfiles for gnomelibs-1.2.8_1 ===> Cleaning for freeamp-2.1.rc4 ===> Deleting distfiles for freeamp-2.1.rc4 >How-To-Repeat: Patch follows. >Fix: --- /usr/ports/Mk/bsd.port.mk.orig Sun Dec 17 16:49:15 2000 +++ /usr/ports/Mk/bsd.port.mk Sun Dec 17 18:53:22 2000 @@ -2604,9 +2604,15 @@ .if !target(clean-depends) clean-depends: - @for dir in $$(${ALL-DEPENDS-LIST}); do \ - (cd $$dir; ${MAKE} NOCLEANDEPENDS=yes clean); \ - done + @if [ ! ${DISTCLEANDEPENDS} ]; then \ + for dir in $$(${ALL-DEPENDS-LIST}); do \ + (cd $$dir; ${MAKE} NOCLEANDEPENDS=yes clean); \ + done; \ + else \ + for dir in $$(${ALL-DEPENDS-LIST}); do \ + (cd $$dir; ${MAKE} NOCLEANDEPENDS=yes distclean); \ + done; \ + fi .endif .if !target(deinstall-depends) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 19: 9:34 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 19:09:33 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from bastuba.partitur.se (bastuba.partitur.se [212.209.169.194]) by hub.freebsd.org (Postfix) with ESMTP id 64DA037B400 for ; Sun, 17 Dec 2000 19:09:32 -0800 (PST) Received: from palle.girgensohn.se (c193.150.250.87.cm-upc.chello.se [193.150.250.87]) by bastuba.partitur.se (8.9.3/8.9.3) with ESMTP id EAA82903; Mon, 18 Dec 2000 04:09:25 +0100 (CET) (envelope-from girgen@partitur.se) Received: from partitur.se (localhost [127.0.0.1]) by palle.girgensohn.se (8.11.1/8.11.1) with ESMTP id eBI39O916133; Mon, 18 Dec 2000 04:09:24 +0100 (CET) (envelope-from girgen@partitur.se) Sender: girgen@partitur.se Message-ID: <3A3D7FE3.4AF050BE@partitur.se> Date: Mon, 18 Dec 2000 04:09:23 +0100 From: Palle Girgensohn Organization: Partitur X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.2-RELEASE i386) X-Accept-Language: sv, en MIME-Version: 1.0 To: Rahul Siddharthan Cc: ports@freebsd.org Subject: Re: logout on KDE 2 References: <20001217121846.G9911@lpt.ens.fr> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm seeing something similar, bu tnot quite this bad: I sometimes have to klick 'logout' twice, or even three times, before anything happens. I have never failed to logout, though. /Palle Rahul Siddharthan wrote: > > I recently installed FreeBSD 4.2-release, and yesterday built KDE > version 2.0.1 from the newly updated ports tree. It's very nice > except that the logout buttons don't work. From looking through > mailing list archives and the KDE bug database, it seems that this has > happened to others, but I couldn't find any fixes. Any > suggestions/patches available now, or is ctrl-alt-bksp the only > option? > > Thanks, > > Rahul. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 19:30: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 19:30:04 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 78C8A37B402 for ; Sun, 17 Dec 2000 19:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBI3U3493998; Sun, 17 Dec 2000 19:30:03 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 17 Dec 2000 19:30:03 -0800 (PST) Resent-Message-Id: <200012180330.eBI3U3493998@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, darius@dons.net.au Received: from midget.dons.net.au (daniel.lnk.telstra.net [139.130.137.70]) by hub.freebsd.org (Postfix) with ESMTP id 137E937B400 for ; Sun, 17 Dec 2000 19:21:44 -0800 (PST) Received: (from darius@localhost) by midget.dons.net.au (8.9.3/8.9.3) id NAA79282; Mon, 18 Dec 2000 13:51:42 +1030 (CST) (envelope-from darius) Message-Id: <200012180321.NAA79282@midget.dons.net.au> Date: Mon, 18 Dec 2000 13:51:42 +1030 (CST) From: "Daniel J. O'Connor" Sender: darius@midget.dons.net.au Reply-To: darius@dons.net.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23604: Update for games/ptkei Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23604 >Category: ports >Synopsis: Update for games/ptkei >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 17 19:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Daniel J. O'Connor >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: >Description: >How-To-Repeat: http://www.dons.net.au/~darius/ptkei-port.tgz >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 19:30: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 19:30:04 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3DCF737B400 for ; Sun, 17 Dec 2000 19:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBI3U4V94009; Sun, 17 Dec 2000 19:30:04 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 17 Dec 2000 19:30:04 -0800 (PST) Resent-Message-Id: <200012180330.eBI3U4V94009@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, darius@dons.net.au Received: from midget.dons.net.au (daniel.lnk.telstra.net [139.130.137.70]) by hub.freebsd.org (Postfix) with ESMTP id CC68737B400 for ; Sun, 17 Dec 2000 19:29:54 -0800 (PST) Received: (from darius@localhost) by midget.dons.net.au (8.9.3/8.9.3) id NAA79432; Mon, 18 Dec 2000 13:59:53 +1030 (CST) (envelope-from darius) Message-Id: <200012180329.NAA79432@midget.dons.net.au> Date: Mon, 18 Dec 2000 13:59:53 +1030 (CST) From: "Daniel J. O'Connor" Sender: darius@midget.dons.net.au Reply-To: darius@dons.net.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23605: games/wolfpack port update Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23605 >Category: ports >Synopsis: games/wolfpack port update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 17 19:30:03 PST 2000 >Closed-Date: >Last-Modified: >Originator: Daniel J. O'Connor >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: >Description: >How-To-Repeat: http://www.dons.net.au/~darius/wolfpack-4.2.8-port.tgz >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 19:50: 4 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 19:50:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9B68C37B402 for ; Sun, 17 Dec 2000 19:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBI3o1m96103; Sun, 17 Dec 2000 19:50:01 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 17 Dec 2000 19:50:01 -0800 (PST) Resent-Message-Id: <200012180350.eBI3o1m96103@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dr53003@alltel.net Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7731737B402 for ; Sun, 17 Dec 2000 19:46:08 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBI3k8c95598; Sun, 17 Dec 2000 19:46:08 -0800 (PST) (envelope-from nobody) Message-Id: <200012180346.eBI3k8c95598@freefall.freebsd.org> Date: Sun, 17 Dec 2000 19:46:08 -0800 (PST) From: dr53003@alltel.net Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23606: no free inodes Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23606 >Category: ports >Synopsis: no free inodes >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 17 19:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: jerry >Release: 4.0 >Organization: none >Environment: at this point ive only ever gotten the os to boot once. this is when i installed only the standard install. i would like to have netscape and some of the math programs and such. i cant seem to get gnome or any other desktop to install from the install cdrom either. thanks >Description: im trying to install freebsd on an amd 1000MHz computer with a 40g drive. i have 20g for bsd. when i install everything on the cdrom (only the first cdrom in the pack of 10) i get a 'no free inode' error. I find it hard to believe that i have run out of room on a 20g drive. also with win 2k on the back 20g's, i cant seem to boot into windows with your boot manager. thanks. >How-To-Repeat: i can repeat this 100% of the time by simply choosing to install most all of the packages on the cd, and choosing all the files in those packages. no free inodes and then i cant boot into the system after this happens. thanks >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 19:50:20 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 19:50:18 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from silby.com (cb34181-c.mdsn1.wi.home.com [24.183.3.139]) by hub.freebsd.org (Postfix) with ESMTP id 5B88F37B400 for ; Sun, 17 Dec 2000 19:50:17 -0800 (PST) Received: (qmail 24369 invoked by uid 1000); 18 Dec 2000 03:50:12 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 18 Dec 2000 03:50:12 -0000 Date: Sun, 17 Dec 2000 21:50:12 -0600 (CST) From: Mike Silbersack To: ports@freebsd.org Subject: Re: ports/23599: rblsmtpd port should be removed, it is part of ucspi-tcp, which also exists in port form (fwd) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've just filed this PR, and I was hoping someone could act on it. I didn't think it was worth contacting the maintainer, as he doesn't appear to have commit privs, and this is just a port deletion. Thanks, Mike "Silby" Silbersack ---------- Forwarded message ---------- Date: Sun, 17 Dec 2000 10:20:01 -0800 (PST) From: gnats-admin@FreeBSD.org To: silby@silby.com Subject: Re: ports/23599: rblsmtpd port should be removed, it is part of ucspi-tcp, which also exists in port form Thank you very much for your problem report. It has the internal identification `ports/23599'. The individual assigned to look at your report is: freebsd-ports. You can access the state of your problem report at any time via this link: http://www.freebsd.org/cgi/query-pr.cgi?pr=23599 >Category: ports >Responsible: freebsd-ports >Synopsis: rblsmtpd port should be removed, it is part of ucspi-tcp, which also exists in port form >Arrival-Date: Sun Dec 17 10:20:01 PST 2000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 22: 0: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 22:00:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 113E337B404 for ; Sun, 17 Dec 2000 22:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBI602Q13148; Sun, 17 Dec 2000 22:00:02 -0800 (PST) (envelope-from gnats) Date: Sun, 17 Dec 2000 22:00:02 -0800 (PST) Message-Id: <200012180600.eBI602Q13148@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jeremy Shaffner Subject: Re: ports/23596: New Port: editors/pico Reply-To: Jeremy Shaffner Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23596; it has been noted by GNATS. From: Jeremy Shaffner To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Doug Barton Subject: Re: ports/23596: New Port: editors/pico Date: Sun, 17 Dec 2000 23:58:38 -0600 On Sun, Dec 17, 2000 at 05:20:02PM -0800, Jeremy Shaffner wrote: > > of the anti-pine zealots, I'm much more inclined to fix the pine port to > > use a more up to date version. > > Do you mean a more up to date version of Pico? Pico is currently at > version 3.7 and probably is still at 3.7 even in Pine 4.31. Updating Pine It's come to my attention that Pico is at 3.9 in Pine 4.31. If this is committed before a pine update, I'll update Pico aftewards. -- Jeremy --------------------------------------------------------------------- Jeremy Shaffner | This space for rent. jeremy@external.org | $ grep happiness life http://www.external.org/~jeremy/pgp.key | FreeBSD: The Power to Serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 22:25: 2 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 22:25:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DB84637B400; Sun, 17 Dec 2000 22:25:00 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBI6P0e22473; Sun, 17 Dec 2000 22:25:00 -0800 (PST) (envelope-from dougb) Date: Sun, 17 Dec 2000 22:25:00 -0800 (PST) From: Message-Id: <200012180625.eBI6P0e22473@freefall.freebsd.org> To: dougb@FreeBSD.org, freebsd-ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: ports/23602: Recursive distclean for bsd.port.mk w/patch Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Recursive distclean for bsd.port.mk w/patch Responsible-Changed-From-To: freebsd-ports->asami Responsible-Changed-By: dougb Responsible-Changed-When: Sun Dec 17 22:24:31 PST 2000 Responsible-Changed-Why: Over to Mr. bsd.port.mk http://www.freebsd.org/cgi/query-pr.cgi?pr=23602 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 22:30:59 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 22:30:58 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3EC2137B400; Sun, 17 Dec 2000 22:30:58 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBI6Uwj23224; Sun, 17 Dec 2000 22:30:58 -0800 (PST) (envelope-from dougb) Date: Sun, 17 Dec 2000 22:30:58 -0800 (PST) From: Message-Id: <200012180630.eBI6Uwj23224@freefall.freebsd.org> To: dr53003@alltel.net, dougb@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23606: no free inodes Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: no free inodes State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Sun Dec 17 22:30:24 PST 2000 State-Changed-Why: Please resubmit your details to freebsd-questions@freebsd.org. Good luck. http://www.freebsd.org/cgi/query-pr.cgi?pr=23606 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Dec 17 23:30: 4 2000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 17 23:30:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9302B37B402 for ; Sun, 17 Dec 2000 23:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBI7U1531081; Sun, 17 Dec 2000 23:30:01 -0800 (PST) (envelope-from gnats) Resent-Date: Sun, 17 Dec 2000 23:30:01 -0800 (PST) Resent-Message-Id: <200012180730.eBI7U1531081@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dsh@neva.vlink.ru Received: from neva.vlink.ru (neva.vlink.ru [195.239.222.8]) by hub.freebsd.org (Postfix) with ESMTP id 5277337B6BD for ; Sun, 17 Dec 2000 23:21:18 -0800 (PST) Received: by neva.vlink.ru (Postfix, from userid 1000) id 424B79BAD4; Mon, 18 Dec 2000 10:21:16 +0300 (MSK) Message-Id: <20001218072116.424B79BAD4@neva.vlink.ru> Date: Mon, 18 Dec 2000 10:21:16 +0300 (MSK) From: dsh@vlink.ru Sender: dsh@neva.vlink.ru Reply-To: dsh@neva.vlink.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23607: update www/p5-HTML-Mason to 0.89.5 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23607 >Category: ports >Synopsis: update www/p5-HTML-Mason to 0.89.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 17 23:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Denis Shaposhnikov >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: update to 0.89.5 version >How-To-Repeat: diff -Nru p5-HTML-Mason.orig/Makefile p5-HTML-Mason/Makefile --- p5-HTML-Mason.orig/Makefile Tue Sep 19 14:14:56 2000 +++ p5-HTML-Mason/Makefile Mon Dec 18 09:08:06 2000 @@ -6,7 +6,8 @@ # PORTNAME= HTML-Mason -PORTVERSION= 0.89 +PORTVERSION= 0.89.5 +DISTNAME= ${PORTNAME}-0.895 CATEGORIES= www perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= HTML diff -Nru p5-HTML-Mason.orig/distinfo p5-HTML-Mason/distinfo --- p5-HTML-Mason.orig/distinfo Tue Sep 19 03:12:10 2000 +++ p5-HTML-Mason/distinfo Mon Dec 18 09:08:33 2000 @@ -1 +1 @@ -MD5 (HTML-Mason-0.89.tar.gz) = d03e77cd42b6995eefeeccb3a0d0b541 +MD5 (HTML-Mason-0.895.tar.gz) = ac1804eca31bb3c1f563e727dff725e5 >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 0:10: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 00:10:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EDF4037B402 for ; Mon, 18 Dec 2000 00:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBI8A1v38513; Mon, 18 Dec 2000 00:10:01 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 00:10:01 -0800 (PST) Resent-Message-Id: <200012180810.eBI8A1v38513@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, aaron-fbsd@mutex.org Received: from cube.gelatinous.com (unknown [207.82.194.150]) by hub.freebsd.org (Postfix) with SMTP id 8884637B400 for ; Mon, 18 Dec 2000 00:03:08 -0800 (PST) Received: (qmail 80458 invoked by uid 0); 18 Dec 2000 08:03:08 -0000 Message-Id: <20001218080308.80457.qmail@cube.gelatinous.com> Date: 18 Dec 2000 08:03:08 -0000 From: aaron-fbsd@mutex.org Sender: aaron@gelatinous.com Reply-To: aaron-fbsd@mutex.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23608: cclient-maildir does not install headers needed by imap-uw port Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23608 >Category: ports >Synopsis: cclient-maildir does not install headers needed by imap-uw port >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 00:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Aaron Smith >Release: FreeBSD 4.2-RELEASE i386 >Organization: >Environment: A current /usr/ports/mail >Description: imap-uw will not build unless the cclient port has installed a bunch of headers (and a source file) in ${PREFIX}/include/c-client. unlike 'cclient', 'ccclient-maildir' does not install these files. this patch brings it in line. >How-To-Repeat: deinstall the cclient port if installed. install cclient-maildir. attempt to build imap-uw. >Fix: Index: Makefile =================================================================== RCS file: /usr/cvs/ports/mail/cclient-maildir/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 2000/09/12 05:18:07 1.2 +++ Makefile 2000/12/18 07:55:43 @@ -53,13 +53,15 @@ @${ECHO_MSG} ">> You can disable PAM support building with \"PAMAUTH=no\"" .endif +HEADERS= dummy.h env.h env_unix.h fdstring.h flstring.h fs.h ftl.h \ + imap4r1.h linkage.c linkage.h mail.h misc.h nl.h nntp.h \ + osdep.h pop3.h rfc822.h smtp.h tcp.h utf8.h + do-install: ${MKDIR} ${PREFIX}/include/c-client - ${INSTALL_DATA} ${WRKSRC}/c-client/mail.h ${PREFIX}/include/c-client - ${INSTALL_DATA} ${WRKSRC}/c-client/rfc822.h ${PREFIX}/include/c-client - ${INSTALL_DATA} ${WRKSRC}/c-client/linkage.h ${PREFIX}/include/c-client - ${INSTALL_DATA} ${WRKSRC}/c-client/misc.h ${PREFIX}/include/c-client - ${INSTALL_DATA} ${WRKSRC}/c-client/smtp.h ${PREFIX}/include/c-client +.for f in ${HEADERS} + ${INSTALL_DATA} ${WRKSRC}/c-client/${f} ${PREFIX}/include/c-client +.endfor ${INSTALL} ${COPY} ${STRIP} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ ${WRKSRC}/c-client/${SHLIBNAME} ${PREFIX}/lib ${LN} -sf ${SHLIBNAME} ${PREFIX}/lib/lib${SHLIBBASE}.so Index: pkg-plist =================================================================== RCS file: /usr/cvs/ports/mail/cclient-maildir/pkg-plist,v retrieving revision 1.1 diff -u -r1.1 pkg-plist --- pkg-plist 2000/08/14 07:49:03 1.1 +++ pkg-plist 2000/12/18 07:55:52 @@ -1,8 +1,23 @@ -include/c-client/mail.h -include/c-client/rfc822.h +include/c-client/dummy.h +include/c-client/env.h +include/c-client/env_unix.h +include/c-client/fdstring.h +include/c-client/flstring.h +include/c-client/fs.h +include/c-client/ftl.h +include/c-client/imap4r1.h +include/c-client/linkage.c include/c-client/linkage.h +include/c-client/mail.h include/c-client/misc.h +include/c-client/nl.h +include/c-client/nntp.h +include/c-client/osdep.h +include/c-client/pop3.h +include/c-client/rfc822.h include/c-client/smtp.h +include/c-client/tcp.h +include/c-client/utf8.h lib/libc-client4.a lib/libc-client4.so.7 lib/libc-client4.so >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 1: 0:10 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 01:00:05 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 52E2137B400 for ; Mon, 18 Dec 2000 01:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBI904C44924; Mon, 18 Dec 2000 01:00:04 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Dec 2000 01:00:04 -0800 (PST) Message-Id: <200012180900.eBI904C44924@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Nevermind Subject: Re: ports/23589: update net/licq Reply-To: Nevermind Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23589; it has been noted by GNATS. From: Nevermind To: dirk.meyer@dinoex.sub.org Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/23589: update net/licq Date: Mon, 18 Dec 2000 10:51:27 +0200 Hello, dirk.meyer@dinoex.sub.org! Dirk, licq-1.0 have some instability running on FreeBSD, that's why some time ago it was downgraded to 0.85: --- Makefile,v --- 1.25 log @Revert to 0.85 as several people report instability with the new version, and I notice it sometimes, too. @ --- Makefile,v --- On Sat, Dec 16, 2000 at 10:55:30PM +0100, you wrote: > > >Number: 23589 > >Category: ports > >Synopsis: update net/licq > >Confidential: no > >Severity: non-critical > >Priority: medium > >Responsible: freebsd-ports > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: sw-bug > >Submitter-Id: current-users > >Arrival-Date: Sat Dec 16 14:00:02 PST 2000 > >Closed-Date: > >Last-Modified: > >Originator: Dirk Meyer > >Release: FreeBSD 4.1.1-STABLE i386 > >Organization: > privat > >Environment: > > qt-2.2.1_1 > > >Description: > > licq-0.85 have bugs > so i searched for fixed and found a newer version. > > >How-To-Repeat: > > licq window and application vanish > if you try to authorize a new user on your contact list. > > Updating to licq-1.0 fixes thsi problem. > the path of the git have changed from "qt-gui" to "qt-gui-1.0" > Scripts are called with "instrall-strip", > which gves errors on install. > > remaining BUGS: > share/licq/qt-gui/locale/ > is not fulle generated anymore. > > >Fix: > > apply the patches, if maintainer approve > > diff licq/Makefile licq-1.0/Makefile > --- licq/Makefile Thu Oct 26 09:29:57 2000 > +++ licq-1.0/Makefile Thu Dec 7 23:16:40 2000 > @@ -6,7 +6,7 @@ > # > > PORTNAME= licq > -PORTVERSION= 0.85 > +PORTVERSION= 1.0 > CATEGORIES= net > MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ > ftp://ftp.wibble.net/pub/licq/srcs/ \ > @@ -34,8 +34,8 @@ > DATADIR= ${WRKDIR}/${DATANAME} > > post-configure: > - @(cd ${WRKSRC}/plugins/qt-gui && ${AUTOCONF}) > - @(cd ${WRKSRC}/plugins/qt-gui && \ > + @(cd ${WRKSRC}/plugins/qt-gui-1.0 && ${AUTOCONF}) > + @(cd ${WRKSRC}/plugins/qt-gui-1.0 && \ > if ! ${SETENV} CC="${CC}" CXX="${CXX}" \ > CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \ > INSTALL="/usr/bin/install -c -o ${BINOWN} -g ${BINGRP}" \ > @@ -52,7 +52,7 @@ > fi) > > post-build: > - @(cd ${WRKSRC}/plugins/qt-gui;\ > + @(cd ${WRKSRC}/plugins/qt-gui-1.0;\ > ${SETENV} ${MAKE_ENV} \ > ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) > > @@ -62,7 +62,7 @@ > > post-install: > strip ${PREFIX}/bin/licq > - cd ${WRKSRC}/plugins/qt-gui;\ > + cd ${WRKSRC}/plugins/qt-gui-1.0;\ > ${SETENV} ${MAKE_ENV} \ > ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET} > ${MKDIR} ${PREFIX}/share/licq/contrib > diff licq/distinfo licq-1.0/distinfo > --- licq/distinfo Thu Oct 26 09:29:57 2000 > +++ licq-1.0/distinfo Thu Dec 7 23:03:10 2000 > @@ -1,2 +1,2 @@ > -MD5 (licq-0.85.tar.gz) = abbde101ac967755d07c025e3ab45068 > +MD5 (licq-1.0.tar.gz) = c75271d7b8ee57060d617e9a4e6a0375 > MD5 (licq-data-1.6.tar.gz) = f94b39990e20c97713562a4e12bb2d50 > diff licq/files/patch-aa licq-1.0/files/patch-aa > --- licq/files/patch-aa Thu Oct 26 09:29:57 2000 > +++ licq-1.0/files/patch-aa Thu Dec 7 23:12:02 2000 > @@ -1,5 +1,5 @@ > ---- plugins/qt-gui/configure.in.orig Wed Aug 9 14:07:59 2000 > -+++ plugins/qt-gui/configure.in Wed Aug 9 14:15:46 2000 > +--- plugins/qt-gui-1.0/configure.in.orig Wed Aug 9 14:07:59 2000 > ++++ plugins/qt-gui-1.0/configure.in Wed Aug 9 14:15:46 2000 > @@ -51,8 +51,6 @@ > LICQ_CHECK_X11HEADERS > > diff licq/files/patch-ab licq-1.0/files/patch-ab > --- licq/files/patch-ab Thu Oct 26 09:29:57 2000 > +++ licq-1.0/files/patch-ab Thu Dec 7 23:12:22 2000 > @@ -1,5 +1,5 @@ > ---- plugins/qt-gui/acinclude.m4.in.orig Sun Jun 18 06:20:57 2000 > -+++ plugins/qt-gui/acinclude.m4.in Mon Jul 24 03:09:28 2000 > +--- plugins/qt-gui-1.0/acinclude.m4.in.orig Sun Jun 18 06:20:57 2000 > ++++ plugins/qt-gui-1.0/acinclude.m4.in Mon Jul 24 03:09:28 2000 > @@ -48,7 +48,7 @@ > fi > > diff licq/files/patch-ac licq-1.0/files/patch-ac > --- licq/files/patch-ac Thu Oct 26 09:29:57 2000 > +++ licq-1.0/files/patch-ac Thu Dec 7 23:12:27 2000 > @@ -1,5 +1,5 @@ > ---- plugins/qt-gui/src/Makefile.in.orig Tue Jul 11 18:54:27 2000 > -+++ plugins/qt-gui/src/Makefile.in Mon Jul 24 03:12:25 2000 > +--- plugins/qt-gui-1.0/src/Makefile.in.orig Tue Jul 11 18:54:27 2000 > ++++ plugins/qt-gui-1.0/src/Makefile.in Mon Jul 24 03:12:25 2000 > @@ -119,7 +119,7 @@ > > licq_qt_gui_la_LDFLAGS = $(X_LIBS) $(QT_LDFLAGS) $(KDE_LDFLAGS) -module -avoid-version -rpath $(libdir) -R$(QT_LIBDIR) > diff licq/files/patch-ae licq-1.0/files/patch-ae > --- licq/files/patch-ae Thu Oct 26 09:29:57 2000 > +++ licq-1.0/files/patch-ae Thu Dec 7 23:12:37 2000 > @@ -1,5 +1,5 @@ > ---- plugins/qt-gui/aclocal.m4.orig Wed Jul 12 05:54:25 2000 > -+++ plugins/qt-gui/aclocal.m4 Mon Sep 25 14:45:24 2000 > +--- plugins/qt-gui-1.0/aclocal.m4.orig Wed Jul 12 05:54:25 2000 > ++++ plugins/qt-gui-1.0/aclocal.m4 Mon Sep 25 14:45:24 2000 > @@ -59,7 +59,7 @@ > fi > > diff licq/files/patch-af licq-1.0/files/patch-af > --- licq/files/patch-af Thu Jan 1 01:00:00 1970 > +++ licq-1.0/files/patch-af Sat Dec 9 10:59:46 2000 > @@ -0,0 +1,13 @@ > +--- bin/Makefile.in.orig Tue Oct 10 22:46:42 2000 > ++++ bin/Makefile.in Sat Dec 9 10:56:59 2000 > +@@ -202,8 +202,8 @@ > + $(mkinstalldirs) $(bindir) > + @for i in $(srcdir)/viewurl-*.sh; do \ > + if test -f $$i; then \ > +- echo "$(INSTALL_PROGRAM) $$i $(bindir);"; \ > +- $(INSTALL_PROGRAM) $$i $(bindir); \ > ++ echo "$(INSTALL_SCRIPT) $$i $(bindir);"; \ > ++ $(INSTALL_SCRIPT) $$i $(bindir); \ > + fi \ > + done > + > diff licq/pkg-plist licq-1.0/pkg-plist > --- licq/pkg-plist Thu Oct 26 09:29:57 2000 > +++ licq-1.0/pkg-plist Sat Dec 16 21:39:23 2000 > @@ -73,16 +73,8 @@ > @dirrm share/licq/sounds/icq > share/licq/sounds/Monty-Python.wav > @dirrm share/licq/sounds > -share/licq/qt-gui/locale/cs_CZ.qm > -share/licq/qt-gui/locale/de.qm > -share/licq/qt-gui/locale/es.qm > -share/licq/qt-gui/locale/it.qm > -share/licq/qt-gui/locale/pl.qm > -share/licq/qt-gui/locale/pt.qm > -share/licq/qt-gui/locale/ru_RU.KOI8-R.qm > share/licq/qt-gui/locale/ru.qm > share/licq/qt-gui/locale/cs.qm > -share/licq/qt-gui/locale/sv.qm > @dirrm share/licq/qt-gui/locale > share/licq/qt-gui/dock.console/away.xpm > share/licq/qt-gui/dock.console/bothmsg.xpm > > >Release-Note: > >Audit-Trail: > >Unformatted: > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message -- Alexandr P. Kovalenko http://nevermind.kiev.ua/ NEVE-RIPE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 1: 6:44 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 01:06:43 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A64337B400; Mon, 18 Dec 2000 01:06:43 -0800 (PST) Received: (from demon@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBI96ho48454; Mon, 18 Dec 2000 01:06:43 -0800 (PST) (envelope-from demon) Date: Mon, 18 Dec 2000 01:06:43 -0800 (PST) From: Message-Id: <200012180906.eBI96ho48454@freefall.freebsd.org> To: dsh@neva.vlink.ru, demon@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23607: update www/p5-HTML-Mason to 0.89.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update www/p5-HTML-Mason to 0.89.5 State-Changed-From-To: open->closed State-Changed-By: demon State-Changed-When: Mon Dec 18 01:04:31 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23607 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 2:13:45 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 02:13:44 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from csmd2.cs.uni-magdeburg.de (csmd2.CS.Uni-Magdeburg.De [141.44.22.2]) by hub.freebsd.org (Postfix) with ESMTP id 5CD4C37B400 for ; Mon, 18 Dec 2000 02:13:43 -0800 (PST) Received: from knecht.cs.uni-magdeburg.de (jesse@knecht [141.44.21.3]) by csmd2.cs.uni-magdeburg.de (8.9.3/8.9.3) with ESMTP id LAA08738 for ; Mon, 18 Dec 2000 11:13:42 +0100 (MET) Received: (from jesse@localhost) by knecht.cs.uni-magdeburg.de (8.8.8+Sun/8.8.8) id LAA14728; Mon, 18 Dec 2000 11:13:39 +0100 (MET) X-Authentication-Warning: knecht.cs.uni-magdeburg.de: jesse set sender to jesse@cs.uni-magdeburg.de using -f To: freebsd-ports@freebsd.org Subject: Build in x11/XFree86-4-libraries fails From: Roland Jesse Date: 18 Dec 2000 11:13:39 +0100 Message-ID: <0vbsuaqbos.fsf@cs.uni-magdeburg.de> Lines: 24 User-Agent: Gnus/5.0807 (Gnus v5.8.7) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, doing a "cd /usr/ports/x11/XFree86-4-libraries && make" fails with: + ln -s ../../../lib/X11/Xcms.h . + rm -f Xlocale.h + ln -s ../../../lib/X11/Xlocale.h . + rm -f XKBlib.h + ln -s ../../../lib/X11/XKBlib.h . make: don't know how to make ../../imports/x11/lib/xtrans/transport.c. Stop *** Error code 2 Stop in /usr/ports/x11/XFree86-4-libraries/work/xc/lib. *** Error code 1 Is that already known or are there chances that I missed something up? To the best of my knowledge, I did not. Roland P.S. Last cvsup for the ports collection was done < 1 day ago. The version of the Makefile is: $FreeBSD: ports/x11/XFree86-4-libraries/Makefile,v 1.90 2000/11/03 11:08:08 asami Exp $ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 2:33:35 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 02:33:34 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from c0mailgw08.prontomail.com (mailgw.prontomail.com [216.163.180.10]) by hub.freebsd.org (Postfix) with ESMTP id 43E2C37B69B for ; Mon, 18 Dec 2000 02:33:21 -0800 (PST) Received: from mail69.prontomail.com (209.185.149.169) by c0mailgw08.prontomail.com (NPlex 5.1.050) id 3A3DB9EA0000A8BF; Mon, 18 Dec 2000 02:33:15 -0800 Received: from c0web16 (216.163.180.10) by mail69.prontomail.com (NPlex 2.0.108); 18 Dec 2000 02:33:11 -0800 From: "KATO Tsuguru" Message-Id: <7B96E34D4C4D4D11786300807CFB3229@tkato.prontomail.ne.jp> Date: Mon, 18 Dec 2000 19:27:33 -1500 X-Priority: Normal Content-Type: text/plain; charset=ISO-2022-JP To: Brandon Fosdick Return-Receipt-To: tkato@prontomail.ne.jp Subject: Re: autogen.sh Cc: ports@FreeBSD.org X-Mailer: Web Based Pronto Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > How do I make a port run autogen.sh instead of configure? I tried > setting CONFIGURE_SCRIPT="autogen.sh" but on a make configure I get: > "cp: configure: No such file or directory". I didn't see anything about > this in the porter's handbook. Gussing from error message, what you need should be "USE_AUTOCONF=yes" or "USE_AUTOMAKE=yes". Usually autogen.sh is to execute preprocess tools for GNU configure such as aclocal, automake and autoconf. To avoid those tools to run multiple time, I would like to recommend bypassing autogen.sh and let same tools call from Makefile. If it isn't enough, "pre-configure:" would be help. devel/graphviz port is an example how to cope with issue like this. -- KATO Tsuguru / tkato@prontomail.ne.jp Sent by Japanese ProntoMail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 2:34:27 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 02:34:25 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from nef.ens.fr (nef.ens.fr [129.199.96.32]) by hub.freebsd.org (Postfix) with ESMTP id 8AA1A37B404 for ; Mon, 18 Dec 2000 02:34:24 -0800 (PST) Received: from corto.lpt.ens.fr (corto.lpt.ens.fr [129.199.122.2]) by nef.ens.fr (8.10.1/1.01.28121999) with ESMTP id eBIAYM757392 ; Mon, 18 Dec 2000 11:34:22 +0100 (CET) Received: from (rsidd@localhost) by corto.lpt.ens.fr (8.9.3/jtpda-5.3.1) id LAA62201 ; Mon, 18 Dec 2000 11:34:21 +0100 (CET) Date: Mon, 18 Dec 2000 11:34:21 +0100 From: Rahul Siddharthan To: Palle Girgensohn Cc: ports@freebsd.org Subject: Re: logout on KDE 2 Message-ID: <20001218113421.E58195@lpt.ens.fr> References: <20001217121846.G9911@lpt.ens.fr> <3A3D7FE3.4AF050BE@partitur.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A3D7FE3.4AF050BE@partitur.se>; from girgen@partitur.se on Mon, Dec 18, 2000 at 04:09:23AM +0100 X-Operating-System: FreeBSD 3.4-STABLE i386 Sender: Rahul.Siddharthan@lpt.ens.fr Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Rahul Siddharthan wrote: > > > > I recently installed FreeBSD 4.2-release, and yesterday built KDE > > version 2.0.1 from the newly updated ports tree. It's very nice > > except that the logout buttons don't work. From looking through > > mailing list archives and the KDE bug database, it seems that this has > > happened to others, but I couldn't find any fixes. Any > > suggestions/patches available now, or is ctrl-alt-bksp the only > > option? Palle Girgensohn said on Dec 18, 2000 at 04:09:23: > I'm seeing something similar, bu tnot quite this bad: I > sometimes have to klick 'logout' twice, or even three times, > before anything happens. I have never failed to logout, though. That doesn't work for me. I can click ad infinitum and the thing just sits there, no reaction. Can anyone tell me whether the following patch makes any sense? I grepped through the source code for shutdown, and it seemed to me (though I may be totally wrong here) that the code for "kapp.cpp" in kdelibs2/kdecore was incomplete for the case where ksmserver is already running. This is a pretty random shot -- I'm not at all familiar with the internal architecture of kde. Right now I'm located 30 km away from the machine in question, so I can't check the local desktop until Thursday. When I type "startkde" from a remote machine I get a window with the KDE2 desktop on it; without the following patch the logout button doesn't work, with the patch the logout button at least brings up the logout dialog box, but doesn't do much after that. That may be some artifact of running it remotely, however. The patch is for the kdelibs2.0.1 source, for the file kdecore/kapp.cpp Before sending it to the kde people, I thought I'd try this list :) - Rahul *** kapp.cpp.orig Mon Dec 18 11:12:10 2000 --- kapp.cpp Mon Dec 18 11:09:16 2000 *************** *** 776,781 **** --- 776,782 ---- if ( mySmcConnection ) { // we already have a connection to the session manager, use it. SmcRequestSaveYourself( mySmcConnection, SmSaveBoth, True, SmInteractStyleAny, False, True ); + SmcCloseConnection( mySmcConnection, 0, 0 ); return TRUE; } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 3: 9:42 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 03:09:41 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 1F33237B400; Mon, 18 Dec 2000 03:09:40 -0800 (PST) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id MAA96044; Mon, 18 Dec 2000 12:09:33 +0100 (CET) (envelope-from des@ofug.org) Sender: des@ofug.org X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Jeremy Shaffner Cc: jmz@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: XFree86-4 Port References: <20001217004251.A47353@external.org> From: Dag-Erling Smorgrav Date: 18 Dec 2000 12:09:32 +0100 In-Reply-To: Jeremy Shaffner's message of "Sun, 17 Dec 2000 00:42:52 -0600" Message-ID: Lines: 23 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jeremy Shaffner writes: > Both as a Ports user and Maintainer, I think it would be a good idea to add > a message to the XFree86-4 port that suggests setting XFREE86_VERSION=4 > after it's installed. > > I walked away from a long ports build that wound up installing Mesa3 and > apps that were built with Mesa's GL.14 instead of X4's GL.1. You need Mesa anyway, because USE_MESA (perhaps incorrectly) results in a dependency on GLU.1, which XFree86 4 doesn't have. Another bug in the XFree86 4 support: ports that need X depend on the XFree86-4-libraries port. If you installed the XFree86-4 port instead, you don't need (or want) that port, but packages that need X will require it, and install it unless you specifically ask pkg_add not to install dependencies (in which case you have to install all the *other* dependencies manually...) The (apparent) solution is to have the XFree86-4 port register empty packages for all the components it installs that have a separate port. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 4:38: 2 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 04:38:00 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from babylon.merseine.nu (c418236-a.clmba1.mo.home.com [24.12.203.134]) by hub.freebsd.org (Postfix) with ESMTP id B6C1837B400 for ; Mon, 18 Dec 2000 04:37:59 -0800 (PST) Received: (from ishmael@localhost) by babylon.merseine.nu (8.11.1/8.11.1) id eBICcST95396; Mon, 18 Dec 2000 06:38:28 -0600 (CST) (envelope-from ishmael) Date: Mon, 18 Dec 2000 06:38:28 -0600 From: Jeremy Norris To: Roland Jesse Cc: ports@FreeBSD.ORG Subject: Re: Build in x11/XFree86-4-libraries fails Message-ID: <20001218063828.C93243@babylon.merseine.nu> References: <0vbsuaqbos.fsf@cs.uni-magdeburg.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <0vbsuaqbos.fsf@cs.uni-magdeburg.de>; from jesse@mail.CS.Uni-Magdeburg.De on Mon, Dec 18, 2000 at 11:13:39AM +0100 Sender: ishmael@babylon.merseine.nu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've been getting this error for at least 2 months whenever I try to rebuild XFree86-4-libraries. I eventually just gave up, presuming it was something local to my machine, however now it appears maybe not to be. Is it related to already have XF-4 already installed on your machine and rebuilding then? Jeremy On Mon, Dec 18, 2000 at 11:13:39AM +0100, Roland Jesse wrote: > Hi, > > doing a "cd /usr/ports/x11/XFree86-4-libraries && make" fails with: > > + ln -s ../../../lib/X11/Xcms.h . > + rm -f Xlocale.h > + ln -s ../../../lib/X11/Xlocale.h . > + rm -f XKBlib.h > + ln -s ../../../lib/X11/XKBlib.h . > make: don't know how to make ../../imports/x11/lib/xtrans/transport.c. Stop > *** Error code 2 > > Stop in /usr/ports/x11/XFree86-4-libraries/work/xc/lib. > *** Error code 1 > > > Is that already known or are there chances that I missed something > up? To the best of my knowledge, I did not. > > Roland > > P.S. Last cvsup for the ports collection was done < 1 day ago. The > version of the Makefile is: > $FreeBSD: ports/x11/XFree86-4-libraries/Makefile,v 1.90 2000/11/03 11:08:08 asami Exp $ > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 5: 0: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 05:00:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 533F737B402 for ; Mon, 18 Dec 2000 05:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBID02x82127; Mon, 18 Dec 2000 05:00:02 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 05:00:02 -0800 (PST) Resent-Message-Id: <200012181300.eBID02x82127@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, buchanon@mlss15.cl.msu.edu Received: from mlss15.cl.msu.edu (mlss15.cl.msu.edu [35.9.4.115]) by hub.freebsd.org (Postfix) with ESMTP id 7062337B404 for ; Mon, 18 Dec 2000 04:57:39 -0800 (PST) Received: (from buchanon@localhost) by mlss15.cl.msu.edu (8.11.1/8.11.1) id eBICvdG69428; Mon, 18 Dec 2000 07:57:39 -0500 (EST) (envelope-from buchanon) Message-Id: <200012181257.eBICvdG69428@mlss15.cl.msu.edu> Date: Mon, 18 Dec 2000 07:57:39 -0500 (EST) From: Mike Buchanon Reply-To: buchanon@mlss15.cl.msu.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23610: pine 4.31 port problems Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23610 >Category: ports >Synopsis: pine 4.31 port doesn't compile pine >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 05:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Mike Buchanon >Release: FreeBSD 4.2-STABLE i386 >Organization: MSU >Environment: freeBSD 4.2-stable with cclient4.8 installed >Description: pine port compiles pilot and pico, but not pine >How-To-Repeat: make clean; make in the pine4 port directory >Fix: change the following files: diff -urN pine4.31/pine/init.c pine4.31-new/pine/init.c --- pine4.31/pine/init.c Mon Dec 18 07:39:56 2000 +++ pine4.31-new/pine/init.c Mon Dec 18 07:48:30 2000 @@ -65,7 +65,7 @@ #include "headers.h" -#include "../c-client/imap4r1.h" /* for LEVELSTATUS() */ +#include /* for LEVELSTATUS() */ typedef enum {Sapling, Seedling, Seasoned} FeatureLevel; diff -urN pine4.31/pine/mailcmd.c pine4.31-new/pine/mailcmd.c --- pine4.31/pine/mailcmd.c Tue Dec 5 13:11:44 2000 +++ pine4.31-new/pine/mailcmd.c Mon Dec 18 07:48:46 2000 @@ -51,7 +51,7 @@ ====*/ #include "headers.h" -#include "../c-client/imap4r1.h" +#include /* Not sure if I did that right :) basically, init.c and mailcmd.c still have #include "../c-client/imap4r1.h" instead of #include . Once that was changed it compiled and worked just fine for me :) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 5:20:17 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 05:20:16 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from csmd2.cs.uni-magdeburg.de (csmd2.CS.Uni-Magdeburg.De [141.44.22.2]) by hub.freebsd.org (Postfix) with ESMTP id 86BC537B400 for ; Mon, 18 Dec 2000 05:20:15 -0800 (PST) Received: from knecht.cs.uni-magdeburg.de (jesse@knecht [141.44.21.3]) by csmd2.cs.uni-magdeburg.de (8.9.3/8.9.3) with ESMTP id NAA23867; Mon, 18 Dec 2000 13:46:55 +0100 (MET) Received: (from jesse@localhost) by knecht.cs.uni-magdeburg.de (8.8.8+Sun/8.8.8) id NAA01748; Mon, 18 Dec 2000 13:42:51 +0100 (MET) Date: Mon, 18 Dec 2000 13:42:51 +0100 From: Roland Jesse To: Jeremy Norris Cc: ports@FreeBSD.ORG Subject: Re: Build in x11/XFree86-4-libraries fails Message-ID: <20001218134251.A1738@knecht.cs.uni-magdeburg.de> References: <0vbsuaqbos.fsf@cs.uni-magdeburg.de> <20001218063828.C93243@babylon.merseine.nu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001218063828.C93243@babylon.merseine.nu>; from ishmael27@home.com on Mon, Dec 18, 2000 at 06:38:28AM -0600 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jeremy Norris wrote: > Is it related to already have XF-4 already installed on your machine and > rebuilding then? Dunno. XFree4 is indeed already installed on my system. Erroniously I removed libXmu* and to recreate it, I am trying to build the port and reinstall it. Hhhm, work/xc/lib/xtrans/transport.c does exist, but a "imports/x11/lib/xtrans" directory structure does not. Maybe that there is a something wrong with the port's directory settings? Roland P.S. I would appreciate a Cc as am not subscribed to -ports. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 5:47:52 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 05:47:51 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 00BBF37B402; Mon, 18 Dec 2000 05:47:51 -0800 (PST) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIDlod89780; Mon, 18 Dec 2000 05:47:50 -0800 (PST) (envelope-from jedgar) Date: Mon, 18 Dec 2000 05:47:50 -0800 (PST) From: Message-Id: <200012181347.eBIDlod89780@freefall.freebsd.org> To: jedgar@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23601: Update www/hypermail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update www/hypermail Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: jedgar Responsible-Changed-When: Mon Dec 18 05:47:35 PST 2000 Responsible-Changed-Why: Misfiled PR http://www.freebsd.org/cgi/query-pr.cgi?pr=23601 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 6:10: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 06:10:05 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C88537B404 for ; Mon, 18 Dec 2000 06:10:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIEA5w95187; Mon, 18 Dec 2000 06:10:05 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 06:10:05 -0800 (PST) Resent-Message-Id: <200012181410.eBIEA5w95187@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, noway@nohow.demon.co.uk Received: from nohow.demon.co.uk (puajm2.nottingham.ac.uk [128.243.210.228]) by hub.freebsd.org (Postfix) with ESMTP id A7AB837B400 for ; Mon, 18 Dec 2000 06:04:09 -0800 (PST) Received: (from noway@localhost) by nohow.demon.co.uk (8.11.1/8.11.1) id eBIE41950099; Mon, 18 Dec 2000 14:04:02 GMT (envelope-from noway) Message-Id: <200012181404.eBIE41950099@nohow.demon.co.uk> Date: Mon, 18 Dec 2000 14:04:02 GMT From: Jose Marques Reply-To: noway@nohow.demon.co.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23611: palm/pose coredumps Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23611 >Category: ports >Synopsis: palm/pose coredumps >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 06:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jose Marques >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: The palm/pose port now coredumps when I try to start emulation. >How-To-Repeat: Start Pose. Right click and then click on "File"->"New". Choose device: "Palm Vx", skin: generic, RAM Size: 8192K and set the ROM file. When you click on OK the program will core dump. I noticed this problem when installing pose on a new FreeBSD 4.2 system. On another 4.2-STABLE system a previous instance of the same port that was installed in April works fine. If I re-build the port on that same system the newly built port coredumps in the same way. I usually build the port from source, however, I get the same problem if I use the pre-built package version. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 7:26: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 07:26:04 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F48037B400; Mon, 18 Dec 2000 07:26:04 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIFQ4x09432; Mon, 18 Dec 2000 07:26:04 -0800 (PST) (envelope-from kevlo) Date: Mon, 18 Dec 2000 07:26:04 -0800 (PST) From: Message-Id: <200012181526.eBIFQ4x09432@freefall.freebsd.org> To: leeym@bsd.ce.ntu.edu.tw, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23590: update port: textproc/antiword to 0.31 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: textproc/antiword to 0.31 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Dec 18 07:25:48 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23590 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 7:29:11 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 07:29:09 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from kci.kciLink.com (kci.kciLink.com [204.117.82.1]) by hub.freebsd.org (Postfix) with ESMTP id 4B25437B400 for ; Mon, 18 Dec 2000 07:29:09 -0800 (PST) Received: from yertle.kciLink.com (yertle.kciLink.com [208.184.13.195]) by kci.kciLink.com (Postfix) with ESMTP id CEFE8C98C; Mon, 18 Dec 2000 10:29:04 -0500 (EST) Received: from onceler.kciLink.com (onceler.kciLink.com [208.184.13.196]) by yertle.kciLink.com (Postfix) with ESMTP id 23C902E451; Mon, 18 Dec 2000 10:29:04 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.1/8.11.1) id eBIFT4483371; Mon, 18 Dec 2000 10:29:04 -0500 (EST) (envelope-from khera) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14910.11584.10202.456728@onceler.kciLink.com> Date: Mon, 18 Dec 2000 10:29:04 -0500 To: lewst Cc: FREEBSD-PORTS@FREEBSD.ORG Subject: Re: where is KDE 2.0.1 ?!? In-Reply-To: <20001216011910.14353.qmail@web2104.mail.yahoo.com> References: <20001216011910.14353.qmail@web2104.mail.yahoo.com> X-Mailer: VM 6.86 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "l" == lewst writes: l> For the love of christ man, why is it taking so long to l> update the kde2 port? KDE 2.0.1 has been out for 11 days now! Did yourself out of whatever hole you're in an run a cvsup on your ports tree. I build kde 2.0.1 from ports last Thursday. -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Vivek Khera, Ph.D. Khera Communications, Inc. Internet: khera@kciLink.com Rockville, MD +1-240-453-8497 AIM: vivekkhera Y!: vivek_khera http://www.khera.org/~vivek/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 7:33:39 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 07:33:38 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B74E37B400; Mon, 18 Dec 2000 07:33:38 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIFXcx10995; Mon, 18 Dec 2000 07:33:38 -0800 (PST) (envelope-from kevlo) Date: Mon, 18 Dec 2000 07:33:38 -0800 (PST) From: Message-Id: <200012181533.eBIFXcx10995@freefall.freebsd.org> To: darius@dons.net.au, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23604: Update for games/ptkei Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update for games/ptkei State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Dec 18 07:33:24 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23604 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 7:40:13 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 07:40:07 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 43E2037B404 for ; Mon, 18 Dec 2000 07:40:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIFe5x12516; Mon, 18 Dec 2000 07:40:05 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 07:40:05 -0800 (PST) Resent-Message-Id: <200012181540.eBIFe5x12516@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, roman@xpert.com Received: from trinity.harmonic.co.il (jupiter.harmonic.co.il [192.116.140.62]) by hub.freebsd.org (Postfix) with ESMTP id 2C75837B400 for ; Mon, 18 Dec 2000 07:30:20 -0800 (PST) Received: (from roman@localhost) by trinity.harmonic.co.il (8.11.1/8.11.1) id eBIFSYF51700; Mon, 18 Dec 2000 17:28:34 +0200 (IST) (envelope-from roman) Message-Id: <200012181528.eBIFSYF51700@trinity.harmonic.co.il> Date: Mon, 18 Dec 2000 17:28:34 +0200 (IST) From: roman@xpert.com Sender: roman@trinity.harmonic.co.il To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23613: MAINTAINER UPGRADE: graphics/xine 0.3.1->0.3.2 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23613 >Category: ports >Synopsis: MAINTAINER UPGRADE: graphics/xine 0.3.1->0.3.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 07:40:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Roman Shterenzon >Release: FreeBSD 4.2-RELEASE i386 >Organization: >Environment: >Description: I upgraded the port to version 0.3.2. The truth is that 0.3.1 didn't work for me almost at all, and 0.3.2 does its work much better. They also got new theme - lcd. >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/xine/Makefile xine/Makefile --- /usr/ports/graphics/xine/Makefile Mon Nov 27 03:35:27 2000 +++ xine/Makefile Mon Dec 18 17:25:09 2000 @@ -2,20 +2,25 @@ # Date created: 14 Oct 2000 # Whom: alex # -# $FreeBSD: ports/graphics/xine/Makefile,v 1.5 2000/11/26 15:56:53 kevlo Exp $ +# $FreeBSD$ # PORTNAME= xine -PORTVERSION= 0.3.1 +PORTVERSION= 0.3.2 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} +DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= roman@xpert.com USE_LIBTOOL= yes USE_X_PREFIX= yes USE_IMLIB= yes + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + +MAN1= xine.1 post-install: @${CAT} ${PKGMESSAGE} diff -urN /usr/ports/graphics/xine/distinfo xine/distinfo --- /usr/ports/graphics/xine/distinfo Mon Nov 27 03:35:27 2000 +++ xine/distinfo Mon Dec 18 16:30:45 2000 @@ -1 +1 @@ -MD5 (xine-0.3.1.tar.gz) = 167a8a50913770043900747df4c62be5 +MD5 (xine_0.3.2.tar.gz) = a5c1327f4178876de315cd0a68941087 diff -urN /usr/ports/graphics/xine/files/patch-configure xine/files/patch-configure --- /usr/ports/graphics/xine/files/patch-configure Mon Nov 27 03:35:27 2000 +++ xine/files/patch-configure Mon Dec 18 16:38:28 2000 @@ -1,11 +1,11 @@ ---- configure.orig Sun Nov 26 01:19:21 2000 -+++ configure Sun Nov 26 01:19:54 2000 -@@ -3789,7 +3789,7 @@ +--- configure.orig Mon Dec 18 16:37:06 2000 ++++ configure Mon Dec 18 16:38:13 2000 +@@ -3855,7 +3855,7 @@ + + + NDEBUG_CFLAGS="-fomit-frame-pointer" +-COMMON_CFLAGS="-Wall -O3 -static -funroll-loops -finline-functions -funroll-all-loops -D_FILE_OFFSET_BITS=64" ++COMMON_CFLAGS="-Wall $CFLAGS -static -funroll-loops -finline-functions -funroll-all-loops -D_FILE_OFFSET_BITS=64" case $host in i386-*-freebsd*) -- GLOBAL_CFLAGS="$GLOBAL_CFLAGS $CFLAGS $ALSA_CFLAGS -Wall -static -fomit-frame-pointer -funroll-loops -finline-functions -O3 -D_REENTRANT -malign-double -funroll-all-loops" -+ GLOBAL_CFLAGS="$GLOBAL_CFLAGS $CFLAGS -Wall -static -fomit-frame-pointer -funroll-loops -finline-functions -D_REENTRANT -malign-double -funroll-all-loops" - cat >> confdefs.h <<\EOF - #define __i386__ 1 - EOF diff -urN /usr/ports/graphics/xine/files/patch-fr xine/files/patch-fr --- /usr/ports/graphics/xine/files/patch-fr Thu Jan 1 02:00:00 1970 +++ xine/files/patch-fr Mon Dec 18 17:17:48 2000 @@ -0,0 +1,11 @@ +--- doc/man/Makefile.in.orig Mon Dec 18 17:16:45 2000 ++++ doc/man/Makefile.in Mon Dec 18 17:16:58 2000 +@@ -99,7 +99,7 @@ + XINE_SKINDIR = @XINE_SKINDIR@ + XINE_SUB = @XINE_SUB@ + +-SUBDIRS = en fr ++SUBDIRS = en + mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs + CONFIG_HEADER = ../../config.h + CONFIG_CLEAN_FILES = diff -urN /usr/ports/graphics/xine/pkg-plist xine/pkg-plist --- /usr/ports/graphics/xine/pkg-plist Mon Nov 27 03:35:27 2000 +++ xine/pkg-plist Mon Dec 18 16:57:16 2000 @@ -1,34 +1,74 @@ -lib/xine/plugins/input_file.so +bin/xine lib/xine/plugins/input_dvd.so +lib/xine/plugins/input_file.so lib/xine/plugins/input_net.so lib/xine/plugins/input_stdin_fifo.so +share/doc/xine/FAQ +share/doc/xine/README +share/doc/xine/bug_report_form +share/xine/skins/default/arrowdn.png +share/xine/skins/default/arrowup.png share/xine/skins/default/bg.png share/xine/skins/default/button.png share/xine/skins/default/close.png share/xine/skins/default/eject.png share/xine/skins/default/exit.png +share/xine/skins/default/fullsc.png share/xine/skins/default/letters.png share/xine/skins/default/next.png share/xine/skins/default/pause.png share/xine/skins/default/play.png share/xine/skins/default/prev.png +share/xine/skins/default/skinconfig +share/xine/skins/default/slider_bg.png +share/xine/skins/default/slider_pad.png +share/xine/skins/default/slider_v.png share/xine/skins/default/stop.png +share/xine/skins/lcd/arrowdn.png +share/xine/skins/lcd/arrowup.png +share/xine/skins/lcd/bg.png +share/xine/skins/lcd/close.png +share/xine/skins/lcd/eject.png +share/xine/skins/lcd/fastb.png +share/xine/skins/lcd/fastf.png +share/xine/skins/lcd/fullsc.png +share/xine/skins/lcd/letters.png +share/xine/skins/lcd/next.png +share/xine/skins/lcd/pause.png +share/xine/skins/lcd/play.png +share/xine/skins/lcd/power.png +share/xine/skins/lcd/prev.png +share/xine/skins/lcd/ptdn.png +share/xine/skins/lcd/ptup.png +share/xine/skins/lcd/skinconfig +share/xine/skins/lcd/skip.png +share/xine/skins/lcd/slider_bg.png +share/xine/skins/lcd/slider_pad.png +share/xine/skins/lcd/stop.png +share/xine/skins/metal/arrowdn.png +share/xine/skins/metal/arrowup.png share/xine/skins/metal/bg.png share/xine/skins/metal/button.png share/xine/skins/metal/close.png share/xine/skins/metal/eject.png share/xine/skins/metal/exit.png +share/xine/skins/metal/fullsc.png share/xine/skins/metal/letters.png share/xine/skins/metal/next.png share/xine/skins/metal/pause.png share/xine/skins/metal/play.png share/xine/skins/metal/prev.png +share/xine/skins/metal/skinconfig +share/xine/skins/metal/slider_bg.png +share/xine/skins/metal/slider_pad.png +share/xine/skins/metal/slider_v.png share/xine/skins/metal/stop.png share/xine/skins/xine_logo.png -bin/xine +@dirrm lib/xine/plugins +@dirrm lib/xine +@dirrm share/doc/xine @dirrm share/xine/skins/default +@dirrm share/xine/skins/lcd @dirrm share/xine/skins/metal @dirrm share/xine/skins @dirrm share/xine -@dirrm lib/xine/plugins -@dirrm lib/xine >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 8:16:12 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 08:16:09 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from kci.kciLink.com (kci.kciLink.com [204.117.82.1]) by hub.freebsd.org (Postfix) with ESMTP id DE1B637B402 for ; Mon, 18 Dec 2000 08:16:08 -0800 (PST) Received: from yertle.kciLink.com (yertle.kciLink.com [208.184.13.195]) by kci.kciLink.com (Postfix) with ESMTP id 5D444C9BB; Mon, 18 Dec 2000 11:16:08 -0500 (EST) Received: from onceler.kciLink.com (onceler.kciLink.com [208.184.13.196]) by yertle.kciLink.com (Postfix) with ESMTP id 8EDA22E443; Mon, 18 Dec 2000 11:16:06 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.1/8.11.1) id eBIGG6l58621; Mon, 18 Dec 2000 11:16:06 -0500 (EST) (envelope-from khera) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14910.14406.446631.597891@onceler.kciLink.com> Date: Mon, 18 Dec 2000 11:16:06 -0500 To: Rahul Siddharthan Cc: ports@freebsd.org Subject: Re: logout on KDE 2 In-Reply-To: <20001217121846.G9911@lpt.ens.fr> References: <20001217121846.G9911@lpt.ens.fr> X-Mailer: VM 6.86 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "RS" == Rahul Siddharthan writes: RS> I recently installed FreeBSD 4.2-release, and yesterday built KDE RS> version 2.0.1 from the newly updated ports tree. It's very nice RS> except that the logout buttons don't work. From looking through RS> mailing list archives and the KDE bug database, it seems that this has RS> happened to others, but I couldn't find any fixes. Any RS> suggestions/patches available now, or is ctrl-alt-bksp the only RS> option? For me, it just takes a while to actually log out once I select the "Ok" button on the confirmation box. Try turning off the audio server from the KDE control panel, if you can't logout still. One way to logout is to send a kill to the kde init process. -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Vivek Khera, Ph.D. Khera Communications, Inc. Internet: khera@kciLink.com Rockville, MD +1-240-453-8497 AIM: vivekkhera Y!: vivek_khera http://www.khera.org/~vivek/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 8:20: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 08:20:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 819CF37B400 for ; Mon, 18 Dec 2000 08:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIGK2n91729; Mon, 18 Dec 2000 08:20:02 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Dec 2000 08:20:02 -0800 (PST) Message-Id: <200012181620.eBIGK2n91729@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Marc van Woerkom Subject: Re: ports/23507: new port: linux-q3ademo Reply-To: Marc van Woerkom Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23507; it has been noted by GNATS. From: Marc van Woerkom To: will@physics.purdue.edu Cc: marc.vanwoerkom@science-factory.com, FreeBSD-gnats-submit@FreeBSD.org, 3d@FreeBSD.org Subject: Re: ports/23507: new port: linux-q3ademo Date: Mon, 18 Dec 2000 17:13:28 +0100 (CET) Hi Will, thanks for your review. > This should not be included in the port.. perhaps mentioned in the > commit log. That's hard for me (have not earned commit rights yet :) OK, next time I submit a port via send-pr, I put such trivia not in the shar archive's Makefile but in the PR intro. > > X# $FreeBSD:$ > > $FreeBSD$ not $FreeBSD:$ (and yes it does matter). Perhaps I would know that myself, if I had read freebsd-ports more regulary. So typically I just look at the porters handbook at http://www.freebsd.org/porters-handbook before rolling a port. So for me it would be very helpful, if you guys could keep that handbook very up to date and easy to understand. In case of $FreeBSD$ I just found: See if you can figure it out. Do not worry about the contents of the $FreeBSD$ line, it will be filled in automatically by CVS when the port is imported to our main ports tree. You can find a more detailed example in the sample Makefile section. > > XPORTREVISION= 1 I see, one bumps that, after a revision of something existing. So there is no initial revision (PORTSREVISION=0 ?). > > XCATEGORIES= games graphics linux > > I'm assuming these are also leftovers from linux-realplayer, since > q3ademo is most certainly not a graphics port, and PORTREVISION is > illegal for a port's first version. "graphics" slipped into it, because personally I see this app rather as a demo of FreeBSD's Linux emulation and graphics capabilities, than as a game. (Yes, I am a lousy q3a player and loose a lot :-) > > X.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) > > XIGNORE= may not be automatically fetched due to licensing\ > > X restrictions. You MUST manually fetch the Linux version from:\ > > X http://quake3.lokigames.com \ > > X - once ${DISTFILES} has been downloaded, move it to\ > > X ${DISTDIR} and then restart this build. > > X.endif > > Please don't use "IGNORE" directly. What would a indirect use be? Or rather: what would be the correct setting to indicate that the distribution archive should not be include on the FreeBSD distribution CD-ROM? With this game there are two problems I saw: - commercial restrictions: I was not sure, if the FreeBSD distributions fulfill the commercial part of the Q3A license agreement - conflict with local law: some states, like Germany, restrict access to this game to non adults. (which makes it particulary attractive for this group to get it in a hurry :-) so I thought it is better to play safe and use the A related topic is the creation of a DVD player port. This one would conflict with US law (DCMA?), but might be legal in other states, like the Netherlands, for example. Could someone more informed, perhaps some crypto veteran, contact me about how to handle this case? > Oooh.. GeForce works? I'm gonna have to buy one. :-) If it doesn't, it is perhaps some simple string mismatch problem in your glx version. On the nvidia developers list over at xfree86.org, there were some updates for the id strings of the latest nvidia cards. These cards are usually downwards compatible and should run that simple driver. > > Xshare/q3ademo/Help/Manual/htmlpages/arenae.html > [...] > > These should be wrapped with %%PORTDOCS%% PLIST_SUB.. in fact that should > have gone into bsd.port.mk by default a long time ago. Many other ports > already include something like this. Hmm.. new to me. Has this been stated in the porters handbook yet? > I'm gonna have to give it a try myself, but I doubt it'll work > with my outdated graphics card. It should run, but perhaps slow. Users of Matrox or Glide cards, where faster XFree86 drivers are available than for nvidia cards, might have even more fun. > I think I might end up just not playing Q3A.. RT2 and others > suffice. :-) What is RT2? Regards, Marc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 8:21:30 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 08:21:28 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from nef.ens.fr (nef.ens.fr [129.199.96.32]) by hub.freebsd.org (Postfix) with ESMTP id 43F0237B6A4 for ; Mon, 18 Dec 2000 08:21:25 -0800 (PST) Received: from corto.lpt.ens.fr (corto.lpt.ens.fr [129.199.122.2]) by nef.ens.fr (8.10.1/1.01.28121999) with ESMTP id eBIGLI795229 ; Mon, 18 Dec 2000 17:21:18 +0100 (CET) Received: from (rsidd@localhost) by corto.lpt.ens.fr (8.9.3/jtpda-5.3.1) id RAA78380 ; Mon, 18 Dec 2000 17:21:18 +0100 (CET) Date: Mon, 18 Dec 2000 17:21:18 +0100 From: Rahul Siddharthan To: Vivek Khera Cc: ports@freebsd.org Subject: Re: logout on KDE 2 Message-ID: <20001218172118.W58195@lpt.ens.fr> References: <20001217121846.G9911@lpt.ens.fr> <14910.14406.446631.597891@onceler.kciLink.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <14910.14406.446631.597891@onceler.kciLink.com>; from khera@kciLink.com on Mon, Dec 18, 2000 at 11:16:06AM -0500 X-Operating-System: FreeBSD 3.4-STABLE i386 Sender: Rahul.Siddharthan@lpt.ens.fr Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Vivek Khera said on Dec 18, 2000 at 11:16:06: > >>>>> "RS" == Rahul Siddharthan writes: > > RS> I recently installed FreeBSD 4.2-release, and yesterday built KDE > RS> version 2.0.1 from the newly updated ports tree. It's very nice > RS> except that the logout buttons don't work. From looking through > RS> mailing list archives and the KDE bug database, it seems that this has > RS> happened to others, but I couldn't find any fixes. Any > RS> suggestions/patches available now, or is ctrl-alt-bksp the only > RS> option? > > For me, it just takes a while to actually log out once I select the > "Ok" button on the confirmation box. For me, the point is I never even got a confirmation box. Clicking on the logout button did basically nothing. I've seen exactly this complaint on mail archives several weeks old, but no answers. The patch I sent to the list a little while ago does bring up the confirmation box, but I did it without any deep understanding of KDE's mechanics and for all I know it may screw up something else. I can test it properly only on Thursday, unfortunately... > Try turning off the audio server from the KDE control panel, if you > can't logout still. > > One way to logout is to send a kill to the kde init process. I've tried both. audioserver -- no use. kde init -- one may as well use ctrl-alt-bksp to kill X altogether... Thanks, Rahul To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 8:40:31 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 08:40:30 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from kci.kciLink.com (kci.kciLink.com [204.117.82.1]) by hub.freebsd.org (Postfix) with ESMTP id E988437B400 for ; Mon, 18 Dec 2000 08:40:29 -0800 (PST) Received: from yertle.kciLink.com (yertle.kciLink.com [208.184.13.195]) by kci.kciLink.com (Postfix) with ESMTP id 5F3F9C9BB for ; Mon, 18 Dec 2000 11:40:29 -0500 (EST) Received: from onceler.kciLink.com (onceler.kciLink.com [208.184.13.196]) by yertle.kciLink.com (Postfix) with ESMTP id DDAB82E443 for ; Mon, 18 Dec 2000 11:40:28 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.1/8.11.1) id eBIGeSM65743; Mon, 18 Dec 2000 11:40:28 -0500 (EST) (envelope-from khera) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14910.15868.717745.854181@onceler.kciLink.com> Date: Mon, 18 Dec 2000 11:40:28 -0500 To: ports@freebsd.org Subject: Re: logout on KDE 2 In-Reply-To: <3A3D7FE3.4AF050BE@partitur.se> References: <20001217121846.G9911@lpt.ens.fr> <3A3D7FE3.4AF050BE@partitur.se> X-Mailer: VM 6.86 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "PG" == Palle Girgensohn writes: PG> I'm seeing something similar, bu tnot quite this bad: I PG> sometimes have to klick 'logout' twice, or even three times, PG> before anything happens. I have never failed to logout, though. Try just waiting about 20 seconds after confirming logout. It always works for me; sometimes it just takes a while. During this time, you can still use the menus and such, so it seems like it isn't logging you out. -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Vivek Khera, Ph.D. Khera Communications, Inc. Internet: khera@kciLink.com Rockville, MD +1-240-453-8497 AIM: vivekkhera Y!: vivek_khera http://www.khera.org/~vivek/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 9:10:37 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 09:10:34 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.189]) by hub.freebsd.org (Postfix) with SMTP id 7591F37B400 for ; Mon, 18 Dec 2000 09:10:18 -0800 (PST) Received: (qmail 18111 invoked by uid 1000); 18 Dec 2000 17:09:21 -0000 Date: Mon, 18 Dec 2000 19:09:21 +0200 From: Peter Pentchev To: Marc van Woerkom Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/23507: new port: linux-q3ademo Message-ID: <20001218190921.A5461@ringworld.oblivion.bg> Mail-Followup-To: Marc van Woerkom , freebsd-ports@FreeBSD.org References: <200012181620.eBIGK2n91729@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200012181620.eBIGK2n91729@freefall.freebsd.org>; from marc.vanwoerkom@science-factory.com on Mon, Dec 18, 2000 at 08:20:02AM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Just a few minor points.. On Mon, Dec 18, 2000 at 08:20:02AM -0800, Marc van Woerkom wrote: [snip] > > > X# $FreeBSD:$ > > > > $FreeBSD$ not $FreeBSD:$ (and yes it does matter). > > Perhaps I would know that myself, if I had read freebsd-ports > more regulary. > > So typically I just look at the porters handbook at > > http://www.freebsd.org/porters-handbook > > before rolling a port. > > So for me it would be very helpful, if you guys could keep that > handbook very up to date and easy to understand. > > In case of $FreeBSD$ I just found: > > See if you can figure it out. Do not worry about the contents > of the $FreeBSD$ line, it will be > filled in automatically by CVS when the port is imported to our main > ports tree. You can find a more detailed example in the linkend="porting-samplem">sample Makefile section. Yep, "don't worry about it" as in "leave it just as it says, CVS shall supply appropriate contents". CVS likes an empty $FreeBSD$ line the first time, as I'm sure the portlint utility available in the devel/portlint port could have told you :) (Actually, CVS does not care a lot about an empty $FreeBSD$ tag the first time, it's the people looking at the port who might wonder about it :) > > > XPORTREVISION= 1 > > I see, one bumps that, after a revision of something existing. > So there is no initial revision (PORTSREVISION=0 ?). Nope, PORTREVISION is 0 by default, no need to explicitly specify it :) > > > X.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) > > > XIGNORE= may not be automatically fetched due to licensing\ > > > X restrictions. You MUST manually fetch the Linux version from:\ > > > X http://quake3.lokigames.com \ > > > X - once ${DISTFILES} has been downloaded, move it to\ > > > X ${DISTDIR} and then restart this build. > > > X.endif > > > > Please don't use "IGNORE" directly. > > What would a indirect use be? > > Or rather: what would be the correct setting to indicate that the > distribution archive should not be include on the FreeBSD distribution > CD-ROM? Look at /usr/ports/Mk/bsd.port.mk, search for 'RESTRICTED'. You can use one or more of RESTRICTED, NO_CDROM and NO_PACKAGE. > > > Xshare/q3ademo/Help/Manual/htmlpages/arenae.html > > [...] > > > > These should be wrapped with %%PORTDOCS%% PLIST_SUB.. in fact that should > > have gone into bsd.port.mk by default a long time ago. Many other ports > > already include something like this. > > Hmm.. new to me. Has this been stated in the porters handbook yet? Not yet, unfortunately; you could take a look at the www/comclear port as an example. Hope that helped a bit :) G'luck, Peter -- .siht ekil ti gnidaer eb d'uoy ,werbeH ni erew ecnetnes siht fI To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 9:19:56 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 09:19:54 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from kci.kciLink.com (kci.kciLink.com [204.117.82.1]) by hub.freebsd.org (Postfix) with ESMTP id 2C0B437B400 for ; Mon, 18 Dec 2000 09:19:54 -0800 (PST) Received: from yertle.kciLink.com (yertle.kciLink.com [208.184.13.195]) by kci.kciLink.com (Postfix) with ESMTP id 8DEAEC9BF; Mon, 18 Dec 2000 12:19:53 -0500 (EST) Received: from onceler.kciLink.com (onceler.kciLink.com [208.184.13.196]) by yertle.kciLink.com (Postfix) with ESMTP id 0582F2E443; Mon, 18 Dec 2000 12:19:52 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.1/8.11.1) id eBIHJpe01985; Mon, 18 Dec 2000 12:19:51 -0500 (EST) (envelope-from khera) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14910.18231.843820.401196@onceler.kciLink.com> Date: Mon, 18 Dec 2000 12:19:51 -0500 To: Rahul Siddharthan Cc: ports@freebsd.org Subject: Re: logout on KDE 2 In-Reply-To: <20001218172118.W58195@lpt.ens.fr> References: <20001217121846.G9911@lpt.ens.fr> <14910.14406.446631.597891@onceler.kciLink.com> <20001218172118.W58195@lpt.ens.fr> X-Mailer: VM 6.86 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "RS" == Rahul Siddharthan writes: RS> I've tried both. audioserver -- no use. kde init -- one may as well RS> use ctrl-alt-bksp to kill X altogether... The part about the audio server was to disable it. Then on subsequent KDE sessions, you should be able to log out. This was my experience with 2.0, for 2.0.1 it works just fine every time. I guess killing a process should have been killing ksmserver rather than kdeinit. That does a resonably clean logout. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 9:20: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 09:20:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B499337B402 for ; Mon, 18 Dec 2000 09:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIHK1Z01857; Mon, 18 Dec 2000 09:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 09:20:01 -0800 (PST) Resent-Message-Id: <200012181720.eBIHK1Z01857@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, ijliao@terry.dragon2.net Received: from Terry.Dorm8.NCTU.edu.tw (Terry.Dorm8.NCTU.edu.tw [140.113.93.99]) by hub.freebsd.org (Postfix) with ESMTP id F41DC37B400 for ; Mon, 18 Dec 2000 09:16:01 -0800 (PST) Received: (from ijliao@localhost) by Terry.Dorm8.NCTU.edu.tw (8.11.1/8.11.1) id eBIHHtq51185; Tue, 19 Dec 2000 01:17:55 +0800 (CST) (envelope-from ijliao) Message-Id: <200012181717.eBIHHtq51185@Terry.Dorm8.NCTU.edu.tw> Date: Tue, 19 Dec 2000 01:17:55 +0800 (CST) From: Ying-Chieh Liao Sender: ijliao@Terry.Dorm8.NCTU.edu.tw Reply-To: ijliao@terry.dragon2.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23614: new ports: devel/p5-Term-Screen Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23614 >Category: ports >Synopsis: new ports: devel/p5-Term-Screen >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 09:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Ying-Chieh Liao >Release: FreeBSD 5.0-CURRENT i386 >Organization: NCTU CSIE >Environment: System: FreeBSD Terry.Dorm8.NCTU.edu.tw 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Tue Dec 5 01:48:31 CST 2000 root@Terry.Dorm8.NCTU.edu.tw:/usr/obj/usr/src/sys/TERRY i386 >Description: new ports : perl module : Term::Screen 1.00 previous pr (23597) is bad :< please close it >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Term-Screen # p5-Term-Screen/Makefile # p5-Term-Screen/pkg-comment # p5-Term-Screen/distinfo # p5-Term-Screen/pkg-descr # p5-Term-Screen/pkg-plist # echo c - p5-Term-Screen mkdir -p p5-Term-Screen > /dev/null 2>&1 echo x - p5-Term-Screen/Makefile sed 's/^X//' >p5-Term-Screen/Makefile << 'END-of-p5-Term-Screen/Makefile' X# New ports collection makefile for: Screen X# Date created: Dec 17, 2000 X# Whom: Ying-Chieh Liao X# X# $FreeBSD$ X# X XPORTNAME= Term-Screen XPORTVERSION= 1.00 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Term XPKGNAMEPREFIX= p5- XDISTNAME= Screen-${PORTVERSION} X XMAINTAINER= ijliao@csie.nctu.edu.tw X XUSE_PERL5= YES X XMAN3= Term::Screen.3 XMAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XPOD2MAN?= /usr/bin/pod2man X Xdo-build: X @${POD2MAN} ${WRKSRC}/Screen.pm > ${WRKSRC}/${MAN3} X Xdo-install: X ${INSTALL_MAN} ${WRKSRC}/${MAN3} ${MAN3PREFIX}/man/man3 X ${MKDIR} ${PREFIX}/lib/perl5/site_perl/${PERL_VERSION}/Term X ${INSTALL_SCRIPT} ${WRKSRC}/Screen.pm ${PREFIX}/lib/perl5/site_perl/${PERL_VERSION}/Term X ${MKDIR} ${PREFIX}/lib/perl5/site_perl/${PERL_VERSION}/mach/auto/Term/Screen X ${ECHO} '${PREFIX}/lib/perl5/site_perl/${PERL_VERSION}/Term/Screen.pm' >> ${PREFIX}/lib/perl5/site_perl/${PERL_VERSION}/mach/auto/Term/Screen/.packlist X ${ECHO} '${MAN3PREFIX}/man/man3/${MAN3}' >> ${PREFIX}/lib/perl5/site_perl/${PERL_VERSION}/mach/auto/Term/Screen/.packlist X X.include END-of-p5-Term-Screen/Makefile echo x - p5-Term-Screen/pkg-comment sed 's/^X//' >p5-Term-Screen/pkg-comment << 'END-of-p5-Term-Screen/pkg-comment' XBasic screen + input class END-of-p5-Term-Screen/pkg-comment echo x - p5-Term-Screen/distinfo sed 's/^X//' >p5-Term-Screen/distinfo << 'END-of-p5-Term-Screen/distinfo' XMD5 (Screen-1.00.tar.gz) = b5d3f4478c71b21802bdb0b49feed92d END-of-p5-Term-Screen/distinfo echo x - p5-Term-Screen/pkg-descr sed 's/^X//' >p5-Term-Screen/pkg-descr << 'END-of-p5-Term-Screen/pkg-descr' XTerm::Screen is a very simple screen positioning module that should work Xwherever `Term::Cap' does. It is set up for Unix using stty's but these Xdependences are isolated by evals in the `new' constructor. Thus you may Xcreate a child module implementing Screen with MS-DOS, ioctl, or other Xmeans to get raw and unblocked input. This is not a replacement for XCurses -- it has no memory. This was written so that it could be easily Xchanged to fit nasty systems, and to be available first thing. X X-- Ying-Chieh Liao Xijliao@csie.nctu.edu.tw END-of-p5-Term-Screen/pkg-descr echo x - p5-Term-Screen/pkg-plist sed 's/^X//' >p5-Term-Screen/pkg-plist << 'END-of-p5-Term-Screen/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/Term/Screen.pm Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Term/Screen/.packlist X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Term/Screen END-of-p5-Term-Screen/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 9:40: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 09:40:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0CF8D37B402 for ; Mon, 18 Dec 2000 09:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIHe2V04820; Mon, 18 Dec 2000 09:40:02 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 09:40:02 -0800 (PST) Resent-Message-Id: <200012181740.eBIHe2V04820@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, ishmael27@home.com Received: from babylon.merseine.nu (c418236-a.clmba1.mo.home.com [24.12.203.134]) by hub.freebsd.org (Postfix) with ESMTP id B87D137B400 for ; Mon, 18 Dec 2000 09:34:54 -0800 (PST) Received: (from ishmael@localhost) by babylon.merseine.nu (8.11.1/8.11.1) id eBIHaCw05579; Mon, 18 Dec 2000 11:36:12 -0600 (CST) (envelope-from ishmael) Message-Id: <200012181736.eBIHaCw05579@babylon.merseine.nu> Date: Mon, 18 Dec 2000 11:36:12 -0600 (CST) From: ishmael27@home.com Sender: ishmael@babylon.merseine.nu Reply-To: ishmael27@home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23615: Unable to rebuild XFree86-4-libraries Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23615 >Category: ports >Synopsis: Unable to rebuild XFree86-4-libraries >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 09:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jeremy Norris >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: FreeBSD babylon.merseine.nu 4.2-STABLE FreeBSD 4.2-STABLE #0: Fri Dec 15 07:53:17 CST 2000 ishmael@babylon.merseine.nu:/usr/src/sys/compile/BABYLON i386 >Description: Trying to rebuild XFree86-4-libraries fails. One other person has reported the same error on his machine to the ports mailing list. Here's the last 40 lines of the build: + rm -f Xdmcp.h + ln -s ../../../lib/Xdmcp/Xdmcp.h . including in lib/X11... + mkdir unshared + cd ../../exports/include/X11 + rm -f Xlib.h + ln -s ../../../lib/X11/Xlib.h . + rm -f Xresource.h + ln -s ../../../lib/X11/Xresource.h . + rm -f Xutil.h + ln -s ../../../lib/X11/Xutil.h . + rm -f cursorfont.h + ln -s ../../../lib/X11/cursorfont.h . + rm -f Xlibint.h + ln -s ../../../lib/X11/Xlibint.h . + rm -f Xcms.h + ln -s ../../../lib/X11/Xcms.h . + rm -f Xlocale.h + ln -s ../../../lib/X11/Xlocale.h . + rm -f XKBlib.h + ln -s ../../../lib/X11/XKBlib.h . make: don't know how to make ../../imports/x11/lib/xtrans/transport.c. Stop *** Error code 2 Stop in /usr/ports/x11/XFree86-4-libraries/work/xc/lib. *** Error code 1 Stop in /usr/ports/x11/XFree86-4-libraries/work/xc. *** Error code 1 Stop in /usr/ports/x11/XFree86-4-libraries/work/xc. *** Error code 1 Stop in /usr/ports/x11/XFree86-4-libraries. *** Error code 1 Stop in /usr/ports/x11/XFree86-4-libraries. *** Error code 1 Stop in /usr/ports/x11/XFree86-4-libraries. >How-To-Repeat: Have XFree86-4-libraries installed on your machine, then try to build it again. >Fix: I've looked through the Makefiles and traced why its failing, but I don't know the fix (I'm not an Imake guru). It comes down to the xc/lib/Makefile calling make includes in xc/lib/X11, which than tries make a dependency in $(TRANSCOMMSRC)/transport.c TRANSCOMMSRC is set to imports/x11/lib/xtrans, however imports directory doesn't exist at that point in time, hence the error. It would appear that either the imports directory needs to be populated earlier, or some dependancies reworked in the makefiles, however I don't understand the XFree86 build process that well, so I'm not sure. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 9:42:37 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 09:42:35 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from web2104.mail.yahoo.com (web2104.mail.yahoo.com [128.11.68.248]) by hub.freebsd.org (Postfix) with SMTP id A8F4837B400 for ; Mon, 18 Dec 2000 09:42:34 -0800 (PST) Received: (qmail 3826 invoked by uid 60001); 18 Dec 2000 17:42:34 -0000 Message-ID: <20001218174234.3825.qmail@web2104.mail.yahoo.com> Received: from [128.165.147.151] by web2104.mail.yahoo.com; Mon, 18 Dec 2000 09:42:34 PST Date: Mon, 18 Dec 2000 09:42:34 -0800 (PST) From: lewst Subject: Re: where is KDE 2.0.1 ?!? To: Will Andrews Cc: ports@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Will Andrews wrote: > RH hires people (i.e. they get paid) to work on KDE, and in turn > these people have time to spend following it every day. > > Nobody seems to be interested in paying a FreeBSD guy to do that. When the going gets tough, the tough gets going Will. Making excuses instead of outperforming the competition under adversity is a losing attitude. __________________________________________________ Do You Yahoo!? Yahoo! Shopping - Thousands of Stores. Millions of Products. http://shopping.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 9:57:11 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 09:57:07 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mothra.ecs.csus.edu (unknown [130.86.76.220]) by hub.freebsd.org (Postfix) with ESMTP id 3A16337B402; Mon, 18 Dec 2000 09:57:07 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by mothra.ecs.csus.edu (8.11.1/8.11.1) with ESMTP id eBIJMxX13729; Mon, 18 Dec 2000 11:22:59 -0800 (PST) (envelope-from joseph@randomnetworks.com) Date: Mon, 18 Dec 2000 11:22:58 -0800 (PST) From: Joseph Scott X-Sender: scottj@mothra.ecs.csus.edu To: Dan Langille Cc: freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: processing incoming mail messages (FreshPorts 2) In-Reply-To: <200012161822.HAA03654@ducky.nz.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 17 Dec 2000, Dan Langille wrote: # Which list would be more appropriate for asking advice on designing a # mail processing strategy for FreshPorts 2 (i.e. processing all of cvs-all, # not just the ports)? # # I'm looking for recommendations and guidance on how to capture the # incoming messages and process them one at a time. As opposed to # starting a separate perl script for each message (which is the the # existing strategy and is usually fine, except when large numbers of # messages turn up in a short period of time). If you don't want to process a message the instant it comes in (via feeding it to a perl script or what ever) you'll need to setup some sort of queue, then have a cron job come through and process the queue. If the problem is load then another approach would be to heavily nice(1) the perl script the is launched when a commit mail comes in. *********************************************************** * Joseph Scott The Office Of Water Programs * * joseph@randomnetworks.com joseph.scott@owp.csus.edu * *********************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 9:59: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 09:59:04 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from kci.kciLink.com (kci.kciLink.com [204.117.82.1]) by hub.freebsd.org (Postfix) with ESMTP id CACEA37B400; Mon, 18 Dec 2000 09:59:03 -0800 (PST) Received: from yertle.kciLink.com (yertle.kciLink.com [208.184.13.195]) by kci.kciLink.com (Postfix) with ESMTP id 36CD7C9BF; Mon, 18 Dec 2000 12:59:03 -0500 (EST) Received: from onceler.kciLink.com (onceler.kciLink.com [208.184.13.196]) by yertle.kciLink.com (Postfix) with ESMTP id B01C92E443; Mon, 18 Dec 2000 12:58:58 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.1/8.11.1) id eBIHwwc51619; Mon, 18 Dec 2000 12:58:58 -0500 (EST) (envelope-from khera) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14910.20578.512135.887887@onceler.kciLink.com> Date: Mon, 18 Dec 2000 12:58:58 -0500 To: Joseph Scott Cc: Dan Langille , freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: processing incoming mail messages (FreshPorts 2) In-Reply-To: References: <200012161822.HAA03654@ducky.nz.freebsd.org> X-Mailer: VM 6.86 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "JSF" == Joseph Scott writes: JSF> If you don't want to process a message the instant it comes in JSF> (via feeding it to a perl script or what ever) you'll need to setup some JSF> sort of queue, then have a cron job come through and process the JSF> queue. Or, you could use a mailer system that does it for you. You can configure postfix to deliver at most N messages to a specific local destination at once, the rest getting queued in the local mail spool. If you set this limit to 1, you'd avoid the need for any additional file locking as well. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 10: 0:11 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 10:00:08 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E2A637B400 for ; Mon, 18 Dec 2000 10:00:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBII06E07172; Mon, 18 Dec 2000 10:00:06 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Dec 2000 10:00:06 -0800 (PST) Message-Id: <200012181800.eBII06E07172@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Subject: Re: ports/23589: update net/licq Reply-To: dirk.meyer@dinoex.sub.org (Dirk Meyer) Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23589; it has been noted by GNATS. From: dirk.meyer@dinoex.sub.org (Dirk Meyer) To: FreeBSD-gnats-submit@FreeBSD.ORG, never@nevermind.kiev.ua Cc: Subject: Re: ports/23589: update net/licq Date: Mon, 18 Dec 2000 18:50:25 +0100 > Dirk, licq-1.0 have some instability running on FreeBSD, that's why some time > ago it was downgraded to 0.85: > > --- Makefile,v --- > 1.25 > log > @Revert to 0.85 as several people report instability with the new version, > and I notice it sometimes, too. > @ > --- Makefile,v --- But licq-0.85 crash if you try to authorize somebody. Thas was the reason I tried the update. I see the unstabilities too, this looks like a problem in libc_r. Somebody with more experience sould loook into this. kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany FreeBSD 4.1.1-STABLE #0: Fri Oct 6 00 (gdb) bt #0 0x28279aa0 in kill () from /usr/lib/libc_r.so.4 #1 0x282e3fe2 in abort () from /usr/lib/libc_r.so.4 #2 0x80af17e in licq_handle_sigsegv () #3 0x2828da7e in _thread_sig_deliver () from /usr/lib/libc_r.so.4 #4 0x2828b7d8 in _thread_sig_handler () from /usr/lib/libc_r.so.4 #5 0xbfbfffac in ?? () #6 0x28290083 in pthread_mutex_destroy () from /usr/lib/libc_r.so.4 #7 0x808148a in TCPSocket::SecureStop () #8 0x80811f2 in TCPSocket::~TCPSocket () #9 0x8081b3d in CSocketManager::CloseSocket () #10 0x8096991 in MonitorSockets_tep () #11 0x28245f27 in _thread_start () from /usr/lib/libc_r.so.4 #12 0x0 in ?? () (gdb) bt #0 0x28279aa0 in kill () from /usr/lib/libc_r.so.4 #1 0x282e3fe2 in abort () from /usr/lib/libc_r.so.4 #2 0x80af17e in licq_handle_sigsegv () #3 0x2828da7e in _thread_sig_deliver () from /usr/lib/libc_r.so.4 #4 0x2828b7d8 in _thread_sig_handler () from /usr/lib/libc_r.so.4 #5 0xbfbfffac in ?? () #6 0x28290083 in pthread_mutex_destroy () from /usr/lib/libc_r.so.4 #7 0x808148a in TCPSocket::SecureStop () #8 0x80811f2 in TCPSocket::~TCPSocket () #9 0x8081b3d in CSocketManager::CloseSocket () #10 0x8096991 in MonitorSockets_tep () #11 0x28245f27 in _thread_start () from /usr/lib/libc_r.so.4 #12 0x0 in ?? () (gdb) bt #0 0x28279aa0 in kill () from /usr/lib/libc_r.so.4 #1 0x282e3fe2 in abort () from /usr/lib/libc_r.so.4 #2 0x80af17e in licq_handle_sigsegv () #3 0x2828da7e in _thread_sig_deliver () from /usr/lib/libc_r.so.4 #4 0x2828b7d8 in _thread_sig_handler () from /usr/lib/libc_r.so.4 #5 0xbfbfffac in ?? () #6 0x28290083 in pthread_mutex_destroy () from /usr/lib/libc_r.so.4 #7 0x808148a in TCPSocket::SecureStop () #8 0x80811f2 in TCPSocket::~TCPSocket () #9 0x80b1c13 in CFileTransferManager::~CFileTransferManager () #10 0x283d20da in CFileDlg::~CFileDlg () from /usr/local/lib/licq/licq_qt-gui.so #11 0x286fa030 in QWidget::close () from /usr/X11R6/lib/libqt2.so #12 0x2899cb80 in QWidget::close () from /usr/X11R6/lib/libqt2.so #13 0x28691d99 in QObject::activate_signal () from /usr/X11R6/lib/libqt2.so #14 0x28819125 in QButton::clicked () from /usr/X11R6/lib/libqt2.so #15 0x2871ecbd in QButton::mouseReleaseEvent () from /usr/X11R6/lib/libqt2.so #16 0x286fa88b in QWidget::event () from /usr/X11R6/lib/libqt2.so #17 0x28637429 in QApplication::notify () from /usr/X11R6/lib/libqt2.so #18 0x2899adb0 in QApplication::sendEvent () from /usr/X11R6/lib/libqt2.so #19 0x285f010d in QETWidget::translateMouseEvent () from /usr/X11R6/lib/libqt2.so #20 0x285ec68c in QApplication::x11ProcessEvent () from /usr/X11R6/lib/libqt2.so #21 0x285eb8dd in QApplication::processNextEvent () from /usr/X11R6/lib/libqt2.so #22 0x2863a023 in QApplication::enter_loop () from /usr/X11R6/lib/libqt2.so #23 0x285eb813 in QApplication::exec () from /usr/X11R6/lib/libqt2.so #24 0x283d5148 in CLicqGui::Run () from /usr/local/lib/licq/licq_qt-gui.so #25 0x283d45a4 in LP_Main () from /usr/local/lib/licq/licq_qt-gui.so #26 0x283d4296 in LP_Main_tep () from /usr/local/lib/licq/licq_qt-gui.so #27 0x28245f27 in _thread_start () from /usr/lib/libc_r.so.4 #28 0x0 in ?? () To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 10:11:26 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 10:11:25 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mothra.ecs.csus.edu (unknown [130.86.76.220]) by hub.freebsd.org (Postfix) with ESMTP id B3DBC37B400 for ; Mon, 18 Dec 2000 10:11:24 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by mothra.ecs.csus.edu (8.11.1/8.11.1) with ESMTP id eBIJbJX32170; Mon, 18 Dec 2000 11:37:19 -0800 (PST) (envelope-from joseph@randomnetworks.com) Date: Mon, 18 Dec 2000 11:37:19 -0800 (PST) From: Joseph Scott X-Sender: scottj@mothra.ecs.csus.edu To: lewst Cc: Will Andrews , ports@FreeBSD.ORG Subject: Re: where is KDE 2.0.1 ?!? In-Reply-To: <20001218174234.3825.qmail@web2104.mail.yahoo.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 18 Dec 2000, lewst wrote: # Will Andrews wrote: # # > RH hires people (i.e. they get paid) to work on KDE, and in turn # > these people have time to spend following it every day. # > # > Nobody seems to be interested in paying a FreeBSD guy to do that. # # When the going gets tough, the tough gets going Will. Making # excuses instead of outperforming the competition under adversity # is a losing attitude. What do you do for a living then? While I agree that it's always nice to get a pleasent, kind response to any/every request made, most of the people working on FreeBSD are not doing it as part of their real job. I do not believe this to be "an excuse", simply a point of fact. If you feel that some other product meets your needs, then by all means, please use it. If you have specific questions that will help you decide if FreeBSD is the best product to meet your needs, then by all means, please ask them in a nice, kind, even handed way. Hopefully someone will use their free time to answer your question. If they do not, there are consultants and companies out there who will, for a fee. The obvious one that comes to mind is BSDi. Because of the differences in scope between the FreeBSD project (an OS) and Linux (a kernel), it's more correct to draw conclusions from more related scopes, OSs, for example, Red Hat Linux compared to FreeBSD, or Mandrake Linux compared to FreeBSD, or Caldera Linux compared to FreeBSD. Such comparisions will help in deciding which is the best for you. If you do not feel that you are getting enough support from the free time of others working in the FreeBSD project, please purchase a support contract to have your issues/questions/concerns/etc looked at. *********************************************************** * Joseph Scott The Office Of Water Programs * * joseph@randomnetworks.com joseph.scott@owp.csus.edu * *********************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 10:21: 1 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 10:20:55 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id 1500437B400; Mon, 18 Dec 2000 10:20:54 -0800 (PST) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id HAA18715; Tue, 19 Dec 2000 07:20:36 +1300 (NZDT) Message-Id: <200012181820.HAA18715@ducky.nz.freebsd.org> From: "Dan Langille" Organization: langille.org To: Joseph Scott Date: Tue, 19 Dec 2000 07:21:00 +1300 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: processing incoming mail messages (FreshPorts 2) Reply-To: dan@langille.org Cc: freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Priority: normal References: <200012161822.HAA03654@ducky.nz.freebsd.org> In-reply-to: X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 18 Dec 2000, at 11:22, Joseph Scott wrote: > > On Sun, 17 Dec 2000, Dan Langille wrote: > > # Which list would be more appropriate for asking advice on designing a > # mail processing strategy for FreshPorts 2 (i.e. processing all of > # cvs-all, not just the ports)? > # > # I'm looking for recommendations and guidance on how to capture the > # incoming messages and process them one at a time. As opposed to > # starting a separate perl script for each message (which is the the > # existing strategy and is usually fine, except when large numbers of > # messages turn up in a short period of time). > > If you don't want to process a message the instant it comes in > (via feeding it to a perl script or what ever) you'll need to setup some > sort of queue, then have a cron job come through and process the queue. Thanks. Since posting my original message, the proposed design has drifted to this strategy (which I posted to the FreshPorts develop list last night): On Mon, 18 Dec 2000, Dan Langille wrote: > ok folks, brain pick time: I'm thinking about redoing the FreshPorts > mail-database interface. At present, each incoming email from cvs-all > initiates a separate perl script. Not nice if you get say 100 emails all > in 1 minute for some reason. Now I'm thinking of using procmail to > dump each email to a separate file on disk. Then processing each > file thus freeing up the MTA ASAP. Sound good so far? > > Suggestions? Ideas? As for processing the files once they are on disk, I like the idea of processing the messages ASAP. Therefore, I'd like to have a daemon / script sitting there running all the time. This process is notified when a new message arrives (in the above case, that would be part of the procmail delivery process). This process would then "wake up" and process all available message files one at a time. Perhaps moving each processed file to an archive. When there are no more message files, it would stop and wait to be notified again. > If the problem is load then another approach would be to heavily > nice(1) the perl script the is launched when a commit mail comes in. That's already done. It's just the volume which can occur. If a large number of messages arrive at once. Starting up 50 perl jobs on the box can stress it a bit. It also makes better sense to process the messages in the order in which they arrive rather than concurrently. A side effect will be less change of database lockouts or conflicts during updates. cheers -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ NZ ADSL - http://www.unixathome.org/adsl/ NZ Broadband - http://www.unixathome.org/broadband/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 10:22:57 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 10:22:53 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id 2508537B400; Mon, 18 Dec 2000 10:22:52 -0800 (PST) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id HAA18724; Tue, 19 Dec 2000 07:22:45 +1300 (NZDT) Message-Id: <200012181822.HAA18724@ducky.nz.freebsd.org> From: "Dan Langille" Organization: langille.org To: Vivek Khera Date: Tue, 19 Dec 2000 07:23:11 +1300 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: processing incoming mail messages (FreshPorts 2) Reply-To: dan@langille.org Cc: freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Priority: normal In-reply-to: <14910.20578.512135.887887@onceler.kciLink.com> References: X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 18 Dec 2000, at 12:58, Vivek Khera wrote: > >>>>> "JSF" == Joseph Scott writes: > > JSF> If you don't want to process a message the instant it comes in > JSF> (via feeding it to a perl script or what ever) you'll need to setup some > JSF> sort of queue, then have a cron job come through and process the > JSF> queue. > > Or, you could use a mailer system that does it for you. You can > configure postfix to deliver at most N messages to a specific local > destination at once, the rest getting queued in the local mail spool. > If you set this limit to 1, you'd avoid the need for any additional > file locking as well. Thanks. Offline, someone also suggested exim, which contains a perl interpreter. But I would rather develop an MTA independent solution. -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ NZ ADSL - http://www.unixathome.org/adsl/ NZ Broadband - http://www.unixathome.org/broadband/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 10:28:23 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 10:28:20 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mothra.ecs.csus.edu (unknown [130.86.76.220]) by hub.freebsd.org (Postfix) with ESMTP id ED73F37B400; Mon, 18 Dec 2000 10:28:19 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by mothra.ecs.csus.edu (8.11.1/8.11.1) with ESMTP id eBIJs6X48953; Mon, 18 Dec 2000 11:54:06 -0800 (PST) (envelope-from joseph@randomnetworks.com) Date: Mon, 18 Dec 2000 11:54:05 -0800 (PST) From: Joseph Scott X-Sender: scottj@mothra.ecs.csus.edu To: Vivek Khera Cc: Joseph Scott , Dan Langille , freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: processing incoming mail messages (FreshPorts 2) In-Reply-To: <14910.20578.512135.887887@onceler.kciLink.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 18 Dec 2000, Vivek Khera wrote: # >>>>> "JSF" == Joseph Scott writes: # # JSF> If you don't want to process a message the instant it comes in # JSF> (via feeding it to a perl script or what ever) you'll need to setup some # JSF> sort of queue, then have a cron job come through and process the # JSF> queue. # # Or, you could use a mailer system that does it for you. You can # configure postfix to deliver at most N messages to a specific local # destination at once, the rest getting queued in the local mail spool. # If you set this limit to 1, you'd avoid the need for any additional # file locking as well. How does postfix determine that a message has been delivered though? From reading Dan's first message, my though was the problem was doing the processing of the commit, all the db stuff, which would happen after the perl script had already accepted delivery of the message. *********************************************************** * Joseph Scott The Office Of Water Programs * * joseph@randomnetworks.com joseph.scott@owp.csus.edu * *********************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 10:30: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 10:30:05 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3EDD337B400 for ; Mon, 18 Dec 2000 10:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIIU3K13609; Mon, 18 Dec 2000 10:30:03 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Dec 2000 10:30:03 -0800 (PST) Message-Id: <200012181830.eBIIU3K13609@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Nevermind Subject: Re: ports/23589: update net/licq Reply-To: Nevermind Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23589; it has been noted by GNATS. From: Nevermind To: Dirk Meyer Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/23589: update net/licq Date: Mon, 18 Dec 2000 20:26:44 +0200 Hello, Dirk Meyer! On Mon, Dec 18, 2000 at 06:50:25PM +0100, you wrote: > > > Dirk, licq-1.0 have some instability running on FreeBSD, that's why some time > > ago it was downgraded to 0.85: > > > > --- Makefile,v --- > > 1.25 > > log > > @Revert to 0.85 as several people report instability with the new version, > > and I notice it sometimes, too. > > @ > > --- Makefile,v --- > > But licq-0.85 crash if you try to authorize somebody. > Thas was the reason I tried the update. My licq's uptime now is about month. I authorise persons and nothing bad happens. > > I see the unstabilities too, > this looks like a problem in libc_r. And with licq-1.0 I've got my licq crashed one a hour. > Somebody with more experience sould loook into this. I hope. -- Alexandr P. Kovalenko http://nevermind.kiev.ua/ NEVE-RIPE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 10:31:21 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 10:31:18 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from nil.science-factory.com (Sciencefactory-atm1-181.piro.net [195.135.137.205]) by hub.freebsd.org (Postfix) with ESMTP id 90F9437B698 for ; Mon, 18 Dec 2000 10:31:05 -0800 (PST) Received: (from mvw@localhost) by nil.science-factory.com (8.11.1/8.11.1) id eBIITme45024; Mon, 18 Dec 2000 19:29:48 +0100 (CET) (envelope-from marc.vanwoerkom@science-factory.com) Date: Mon, 18 Dec 2000 19:29:48 +0100 (CET) Message-Id: <200012181829.eBIITme45024@nil.science-factory.com> X-Authentication-Warning: nil.science-factory.com: mvw set sender to marc.vanwoerkom@science-factory.com using -f From: Marc van Woerkom To: roam@orbitel.bg Cc: marc.vanwoerkom@science-factory.com, freebsd-ports@FreeBSD.org In-reply-to: <20001218190921.A5461@ringworld.oblivion.bg> (message from Peter Pentchev on Mon, 18 Dec 2000 19:09:21 +0200) Subject: Re: ports/23507: new port: linux-q3ademo References: <200012181620.eBIGK2n91729@freefall.freebsd.org> <20001218190921.A5461@ringworld.oblivion.bg> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Yep, "don't worry about it" as in "leave it just as it says, CVS shall supply > appropriate contents". CVS likes an empty $FreeBSD$ line the first time, > as I'm sure the portlint utility available in the devel/portlint port > could have told you :) I used portlint. But it didn't complain: #head Makefile # New ports collection makefile for: linux-q3ademo # Date created: 11 December 2000 # Whom: Marc van Woerkom <3d@freebsd.org> # # - inspired by linux realplayer 7 port # - special thanks to the Emacs key board macro # # $FreeBSD:$ # # portlint OK: checking /usr/ports/games/linux-q3ademo.mvw/pkg-comment. OK: checking /usr/ports/games/linux-q3ademo.mvw/pkg-descr. OK: checking Makefile. WARN: no MASTER_SITES found. is it ok? WARN: using hyphen in PORTNAME. consider using PKGNAMEPREFIX and/or PKGNAMESUFFIX. OK: checking /usr/ports/games/linux-q3ademo.mvw/distinfo. 0 fatal errors and 2 warnings found. > Look at /usr/ports/Mk/bsd.port.mk, search for 'RESTRICTED'. You can > use one or more of RESTRICTED, NO_CDROM and NO_PACKAGE. Thanks! > Not yet, unfortunately; you could take a look at the www/comclear port > as an example. > > Hope that helped a bit :) Yes, thank you very much! Regards, Marc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 10:37:32 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 10:37:26 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mothra.ecs.csus.edu (unknown [130.86.76.220]) by hub.freebsd.org (Postfix) with ESMTP id CE7EE37B69D; Mon, 18 Dec 2000 10:37:25 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by mothra.ecs.csus.edu (8.11.1/8.11.1) with ESMTP id eBIK3JX52805; Mon, 18 Dec 2000 12:03:19 -0800 (PST) (envelope-from joseph@randomnetworks.com) Date: Mon, 18 Dec 2000 12:03:19 -0800 (PST) From: Joseph Scott X-Sender: scottj@mothra.ecs.csus.edu To: Dan Langille Cc: freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: processing incoming mail messages (FreshPorts 2) In-Reply-To: <200012181820.HAA18715@ducky.nz.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 19 Dec 2000, Dan Langille wrote: # > If you don't want to process a message the instant it comes in # > (via feeding it to a perl script or what ever) you'll need to setup some # > sort of queue, then have a cron job come through and process the queue. # # Thanks. Since posting my original message, the proposed design has # drifted to this strategy (which I posted to the FreshPorts develop list last # night): # # On Mon, 18 Dec 2000, Dan Langille wrote: # # > ok folks, brain pick time: I'm thinking about redoing the FreshPorts # > mail-database interface. At present, each incoming email from cvs-all # > initiates a separate perl script. Not nice if you get say 100 emails all # > in 1 minute for some reason. Now I'm thinking of using procmail to # > dump each email to a separate file on disk. Then processing each # > file thus freeing up the MTA ASAP. Sound good so far? # > # > Suggestions? Ideas? # # As for processing the files once they are on disk, I like the idea of # processing the messages ASAP. Therefore, I'd like to have a daemon / # script sitting there running all the time. This process is notified when a # new message arrives (in the above case, that would be part of the # procmail delivery process). This process would then "wake up" and # process all available message files one at a time. Perhaps moving each # processed file to an archive. When there are no more message files, it # would stop and wait to be notified again. # # > If the problem is load then another approach would be to heavily # > nice(1) the perl script the is launched when a commit mail comes in. # # That's already done. It's just the volume which can occur. If a large # number of messages arrive at once. Starting up 50 perl jobs on the box # can stress it a bit. It also makes better sense to process the # messages in the order in which they arrive rather than concurrently. A # side effect will be less change of database lockouts or conflicts during # updates. On item that may help on this then is checking two things every time you add something to the queue to help balance things out, the amount of time since the last time the queue was processed and the number of items in the queue. Let's say, at a minimum you want the queue to run every 30 minutes. However, if there are a large number of commits in the queue, you may want to be able ramp up to queue processing as quickly as every 5 minutes. If there's only two items in the queue though, there's really no reason to run it every 5 minutes. Just some thoughts. *********************************************************** * Joseph Scott The Office Of Water Programs * * joseph@randomnetworks.com joseph.scott@owp.csus.edu * *********************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 10:43:18 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 10:43:13 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id A845D37B400; Mon, 18 Dec 2000 10:43:12 -0800 (PST) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id HAA18856; Tue, 19 Dec 2000 07:43:06 +1300 (NZDT) Message-Id: <200012181843.HAA18856@ducky.nz.freebsd.org> From: "Dan Langille" Organization: langille.org To: Joseph Scott Date: Tue, 19 Dec 2000 07:43:29 +1300 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: processing incoming mail messages (FreshPorts 2) Reply-To: dan@langille.org Cc: freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Priority: normal References: <200012181820.HAA18715@ducky.nz.freebsd.org> In-reply-to: X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 18 Dec 2000, at 12:03, Joseph Scott wrote: > Let's say, at a minimum you want the queue to run every 30 > minutes. However, if there are a large number of commits in the queue, > you may want to be able ramp up to queue processing as quickly as every 5 > minutes. If there's only two items in the queue though, there's really no > reason to run it every 5 minutes. I would rather process the queue as soon as a new message arrives. Rather than have a message sit there. Hence, the "notification" of a waiting process: OI! you got mail.... > Just some thoughts. appreciated. -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ NZ ADSL - http://www.unixathome.org/adsl/ NZ Broadband - http://www.unixathome.org/broadband/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 10:45:35 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 10:45:32 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mothra.ecs.csus.edu (unknown [130.86.76.220]) by hub.freebsd.org (Postfix) with ESMTP id 75ABD37B400; Mon, 18 Dec 2000 10:45:32 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by mothra.ecs.csus.edu (8.11.1/8.11.1) with ESMTP id eBIKBQX52848; Mon, 18 Dec 2000 12:11:26 -0800 (PST) (envelope-from joseph@randomnetworks.com) Date: Mon, 18 Dec 2000 12:11:26 -0800 (PST) From: Joseph Scott X-Sender: scottj@mothra.ecs.csus.edu To: Dan Langille Cc: freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: processing incoming mail messages (FreshPorts 2) In-Reply-To: <200012181843.HAA18856@ducky.nz.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 19 Dec 2000, Dan Langille wrote: # On 18 Dec 2000, at 12:03, Joseph Scott wrote: # # > Let's say, at a minimum you want the queue to run every 30 # > minutes. However, if there are a large number of commits in the queue, # > you may want to be able ramp up to queue processing as quickly as every 5 # > minutes. If there's only two items in the queue though, there's really no # > reason to run it every 5 minutes. # # I would rather process the queue as soon as a new message arrives. # Rather than have a message sit there. Hence, the "notification" of a # waiting process: OI! you got mail.... Then my original answer should have simply been, find a box that will host FreshPorts that can take the load of processing 5000 commit mails in a minute. :-) # # > Just some thoughts. # # appreciated. *********************************************************** * Joseph Scott The Office Of Water Programs * * joseph@randomnetworks.com joseph.scott@owp.csus.edu * *********************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 10:50:12 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 10:50:06 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B8D1E37B69E for ; Mon, 18 Dec 2000 10:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIIo1N15714; Mon, 18 Dec 2000 10:50:01 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 10:50:01 -0800 (PST) Resent-Message-Id: <200012181850.eBIIo1N15714@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, larse@isi.edu Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D973437B400 for ; Mon, 18 Dec 2000 10:49:08 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIIn8X15594; Mon, 18 Dec 2000 10:49:08 -0800 (PST) (envelope-from nobody) Message-Id: <200012181849.eBIIn8X15594@freefall.freebsd.org> Date: Mon, 18 Dec 2000 10:49:08 -0800 (PST) From: larse@isi.edu Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23619: xscreensaver port fails to install some binaries Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23619 >Category: ports >Synopsis: xscreensaver port fails to install some binaries >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 10:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Lars Eggert >Release: 4.2-STABLE >Organization: >Environment: FreeBSD hbo.isi.edu 4.2-STABLE FreeBSD 4.2-STABLE #1: Fri Dec 15 14:07:18 PST 2000 larse@hbo.isi.edu:/usr/src-idprio/sys/compile/IDPRIO i386 >Description: The xscreensaver port fails to install either driver/xscreensaver-demo-Gtk or driver/xscreensaver-demo-Xm as /usr/X11R6/bin/xscreensaver-demo, causing execution to fail. >How-To-Repeat: cd /usr/ports/x11/xscreensaver && make install >Fix: cp /usr/ports/x11/xscreensaver/work/xscreensaver-3.26/driver/xscreensaver-demo-Gtk /usr/X11R6/bin/xscreensaver-demo >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 10:50:15 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 10:50:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0FAE537B69B for ; Mon, 18 Dec 2000 10:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIIo0O15696; Mon, 18 Dec 2000 10:50:00 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 10:50:00 -0800 (PST) Resent-Message-Id: <200012181850.eBIIo0O15696@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, mi@freebsd.org Received: from minime.privatelabs.com (unknown [63.114.185.241]) by hub.freebsd.org (Postfix) with ESMTP id 12F2A37B400 for ; Mon, 18 Dec 2000 10:43:22 -0800 (PST) Received: (from mi@localhost) by minime.privatelabs.com (8.11.0/8.11.0) id eBIIhL733956; Mon, 18 Dec 2000 13:43:21 -0500 (EST) (envelope-from mi) Message-Id: <200012181843.eBIIhL733956@minime.privatelabs.com> Date: Mon, 18 Dec 2000 13:43:21 -0500 (EST) From: Mikhail Teterin Reply-To: mi@freebsd.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23617: new port: www/mod_layout Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23617 >Category: ports >Synopsis: new port: www/mod_layout >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 10:50:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Mikhail Teterin >Release: FreeBSD 4.1.1-STABLE i386 >Organization: Virtual Estates, Inc. >Environment: >Description: The version, that comes with the www/apache-contrib is very old. This port installs the latest stable version, and, unless NOPORTDOCS is set, the software's faq.html >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # Makefile # distinfo # pkg-comment # pkg-descr # pkg-plist # echo x - Makefile sed 's/^X//' >Makefile << 'END-of-Makefile' X# New ports collection makefile for: mod_gzip Apache module X# Date created: Dec 18 2000 X# Whom: Mikhail Teterin X# X# $FreeBSD$ X# X XPORTNAME= mod_layout XPORTVERSION= 2.8.2 XCATEGORIES= www XMASTER_SITES= ftp://ftp.tangent.org/pub/apache/ \ X http://www.tangent.org/mod_layout/ X XMAINTAINER= mi@aldan.algebra.com X XBUILD_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 XRUN_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13 X Xdo-build: X cd ${WRKSRC} && ${LOCALBASE}/sbin/apxs -c *.c X Xdo-install: X cd ${WRKSRC} && ${LOCALBASE}/sbin/apxs -A -i ${PORTNAME}.so X X.if !defined(NOPORTDOCS) XPLIST_SUB+= DOC='' X Xpost-install: X @${MKDIR} ${PREFIX}/share/doc/${PORTNAME} X @${INSTALL_DATA} ${WRKSRC}/*.html \ X ${PREFIX}/share/doc/${PORTNAME} X X.else XPLIST_SUB+= DOC='@comment ' X.endif X X.include END-of-Makefile echo x - distinfo sed 's/^X//' >distinfo << 'END-of-distinfo' XMD5 (mod_layout-2.8.2.tar.gz) = f786c566c7107e1da63201162489d774 END-of-distinfo echo x - pkg-comment sed 's/^X//' >pkg-comment << 'END-of-pkg-comment' XAn Apache module that provides for prepending/appending HTML pages served END-of-pkg-comment echo x - pkg-descr sed 's/^X//' >pkg-descr << 'END-of-pkg-descr' XFrom the software's FAQ list: X So what is Mod Layout? X X Mod layout wraps a page, by saying this I mean that it can place X information at both the beginning and the end of a document. This X allows you do create a single look and feel throughout a website X without using server side includes to "automagically" add content X in either of these two locations. You can use it to add standard X disclaimers to all of the pages on a server or to place banner X adds on the top of all pages (I know, banner adds, ick...). I've X even seen people use the header and footer to place the entire X contents of a given server inside of tables. There are many X possibilities. X XWWW: http://www.tangent.org/mod_layout/ END-of-pkg-descr echo x - pkg-plist sed 's/^X//' >pkg-plist << 'END-of-pkg-plist' Xlibexec/apache/mod_layout.so X%%DOC%%share/doc/mod_layout/faq.html X%%DOC%%@dirrm share/doc/mod_layout X@exec ${PKG_PREFIX}/sbin/apxs -e -A -n layout mod_layout.so; echo " enable the mod_layout in Apache's config manually" X@unexec ${PKG_PREFIX}/sbin/apxs -e -A -n layout mod_layout.so || echo " remove the mod_layout from Apache's config manually" END-of-pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 10:50:17 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 10:50:12 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7700A37B69C for ; Mon, 18 Dec 2000 10:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIIo1E15705; Mon, 18 Dec 2000 10:50:01 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 10:50:01 -0800 (PST) Resent-Message-Id: <200012181850.eBIIo1E15705@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, O.Hodson@cs.ucl.ac.uk Received: from adelie.btinteractive.net (host212-140-200-211.btinteractive.net [212.140.200.211]) by hub.freebsd.org (Postfix) with ESMTP id 31D9537B402 for ; Mon, 18 Dec 2000 10:47:11 -0800 (PST) Received: (from oh@localhost) by adelie.btinteractive.net (8.11.1/8.11.1) id eBIIkw218048; Mon, 18 Dec 2000 18:46:58 GMT (envelope-from oh) Message-Id: <200012181846.eBIIkw218048@adelie.btinteractive.net> Date: Mon, 18 Dec 2000 18:46:58 GMT From: oh@btinternet.com Sender: oh@adelie.btinteractive.net Reply-To: O.Hodson@cs.ucl.ac.uk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23618: update port: mbone/vat to (better) support newpcm Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23618 >Category: ports >Synopsis: Updates for newpcm duplex probing and AC97-like mixers. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 10:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Orion Hodson >Release: FreeBSD 4.2-RELEASE i386 >Organization: >Environment: Machine running newpcm. >Description: The existing code detects full-duplex cards as half-duplex under newpcm. It also assumes SB-style mixer input, most new cards are AC97 style. >How-To-Repeat: >Fix: Patch enclosed that updates full duplex probing to work properly with newpcm and adds RECLEV to input gain fn for AC97 style mixers. Thanks - Orion. diff -urN vat-orig/files/patch-ak vat/files/patch-ak --- vat-orig/files/patch-ak Thu Jan 1 01:00:00 1970 +++ vat/files/patch-ak Mon Dec 18 18:23:23 2000 @@ -0,0 +1,44 @@ +--- audio-voxware-pre-oh-patch.cc Mon Dec 18 17:24:46 2000 ++++ audio-voxware.cc Mon Dec 18 18:18:31 2000 +@@ -251,13 +251,26 @@ + int + VoxWare::HalfDuplex() const + { +- int i; +- if (is_half_duplex) { ++ int i, probed_duplex = 0; ++ ++ /* newpcm style */ ++#ifdef SNDCTL_DSP_GETCAPS ++ ioctl(fd, SNDCTL_DSP_GETCAPS, &i); ++ probed_duplex |= (i & DSP_CAP_DUPLEX); ++#endif /* SNDCTL_DSP_GETCAPS */ ++ ++ /* pcm style */ ++#ifdef SNDCTL_DSP_GETFMTS ++ ioctl(fd, SNDCTL_DSP_GETFMTS, &i); ++ probed_duplex |= (i & AFMT_FULLDUPLEX); ++#endif /* SNDCTL_DSP_GETFMTS */ ++ ++ if (is_half_duplex || (probed_duplex == 0)) { + fprintf(stderr, "HalfDuplex returns 1\n"); + return 1 ; + } +- ioctl(fd, SNDCTL_DSP_GETFMTS, &i); +- return (i & AFMT_FULLDUPLEX) ? 0 : 1 ; ++ ++ return 0; + } + + void VoxWare::Release() +@@ -399,7 +412,9 @@ + printf("failed to set mic volume \n"); + break; + } +- if (ioctl(fd, MIXER_WRITE(SOUND_MIXER_IGAIN), &foo) == -1) ++ /* IGAIN tends to be found on SB-like mixers, RECLEV on AC97 */ ++ if ((ioctl(fd, MIXER_WRITE(SOUND_MIXER_IGAIN), &foo) == -1) && ++ (ioctl(fd, MIXER_WRITE(SOUND_MIXER_RECLEV), &foo) == -1)) + printf("failed set input line volume \n"); + rgain = level; + } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 10:53:38 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 10:53:35 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id F289C37B404; Mon, 18 Dec 2000 10:53:33 -0800 (PST) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id HAA18954; Tue, 19 Dec 2000 07:53:27 +1300 (NZDT) Message-Id: <200012181853.HAA18954@ducky.nz.freebsd.org> From: "Dan Langille" Organization: langille.org To: Joseph Scott Date: Tue, 19 Dec 2000 07:53:51 +1300 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: processing incoming mail messages (FreshPorts 2) Reply-To: dan@langille.org Cc: freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Priority: normal References: <200012181843.HAA18856@ducky.nz.freebsd.org> In-reply-to: X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 18 Dec 2000, at 12:11, Joseph Scott wrote: > > On Tue, 19 Dec 2000, Dan Langille wrote: > > # On 18 Dec 2000, at 12:03, Joseph Scott wrote: > # > # > Let's say, at a minimum you want the queue to run every 30 > # > minutes. However, if there are a large number of commits in the queue, > # > you may want to be able ramp up to queue processing as quickly as every 5 > # > minutes. If there's only two items in the queue though, there's really no > # > reason to run it every 5 minutes. > # > # I would rather process the queue as soon as a new message arrives. > # Rather than have a message sit there. Hence, the "notification" of a > # waiting process: OI! you got mail.... > > Then my original answer should have simply been, find a box that > will host FreshPorts that can take the load of processing 5000 commit > mails in a minute. :-) Good idea! Sorry, but after reading my own message, I've seen it's ambiguous. In my previous message, by "process the queue as soon as a new message arrives", I was referring to the procmail scenario mentioned in a prior message. That is, have procmail deliever each email to a separate file, and process *that* file into FreshPorts as soon as it arrives. In that context, the "queue" is the files on disk. With this strategy, I'm sure a P100 could handle things. -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ NZ ADSL - http://www.unixathome.org/adsl/ NZ Broadband - http://www.unixathome.org/broadband/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 11: 0:36 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 11:00:15 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C16FD37B402 for ; Mon, 18 Dec 2000 11:00:15 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIJ0EE17085 for freebsd-ports@freebsd.org; Mon, 18 Dec 2000 11:00:14 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 18 Dec 2000 11:00:14 -0800 (PST) Message-Id: <200012181900.eBIJ0EE17085@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Subject: Current unassigned ports problem reports Sender: owner-bugmaster@freebsd.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2000/12/09] ports/23405 ports ports/www/linux-netscape6 has expired o [2000/12/13] ports/23525 ports pgsql 7.0.3 port REMOVES data dir when tr 2 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2000/08/12] ports/20564 ports [PATCH] nethack-gtk md5 correction, typo o [2000/08/13] ports/20581 ports current cdrecord port fails to install o [2000/08/17] ports/20679 ports Port of Tcpview-1.0 o [2000/08/17] ports/20680 ports ports that don't have man pages with NO_I o [2000/08/18] ports/20705 ports xwave port fails to build o [2000/08/24] ports/20819 ports XFMail 1.4.0 dumps core w/signal 6 when c o [2000/09/08] ports/21116 ports vmware2 does not compile on -current f [2000/09/08] ports/21126 ports httpd warnings regarding attempts to free o [2000/09/16] ports/21306 ports New ports: GB2JIS, a tool to convert GB t o [2000/09/16] ports/21319 ports ports submission - wmx10 o [2000/09/18] ports/21360 ports kaffe port's PLIST file is inaccurate o [2000/09/18] ports/21386 ports compile fails on -current o [2000/09/20] ports/21417 ports ports/news/trn/pkg/PLIST misses bin/inews o [2000/09/21] ports/21448 ports msql2d.sh doesn't start the daemon o [2000/09/25] ports/21548 ports libcoro.a (ports) should use MAP_STACK wh o [2000/09/29] ports/21656 ports PGP6 port based on pgp-6.5.8 o [2000/10/05] ports/21774 ports upgrading Boehm's Garbage Collector port o [2000/10/08] ports/21838 ports Updated port devel/sip o [2000/10/08] ports/21839 ports Updated port x11-toolkits/py-qt o [2000/10/13] ports/21951 ports ports/databases/db3: cannot configure o [2000/10/16] ports/22035 ports configure problem o [2000/10/16] ports/22036 ports StarOffice 5.2 CDROM install still fails o [2000/10/16] ports/22037 ports Missing shared xpm lib prevents windowmak o [2000/10/20] ports/22148 ports Can't make chipmunk port o [2000/10/20] ports/22172 ports freetds port does not work to access MS-S o [2000/10/21] ports/22194 ports Update Makefile for misc/heyu o [2000/10/22] ports/22227 ports boehm-gc don't work correctly in leak det o [2000/10/23] ports/22239 ports Image-Magic ports make error o [2000/10/26] ports/22311 ports upgrade of www/cadaver to the latest 1.15 o [2000/10/26] ports/22323 ports audio/lame can't fetch its source code o [2000/10/26] ports/22328 ports new port -- print/ttf2pt1 o [2000/10/27] ports/22368 ports new port x11-fonts/koi8u-monaco; new cate o [2000/10/30] ports/22421 ports New port: Enhydra 3.1 beta 1 o [2000/11/07] ports/22663 ports vmware2-2.0.3.799 fails in patch o [2000/11/07] ports/22665 ports o [2000/11/07] ports/22671 ports new port: security/sst -- yet another SSL o [2000/11/08] ports/22695 ports MAKEDEV has no entry for cfs0, the device o [2000/11/08] ports/22697 ports WARNING: driver Coda should register devi o [2000/11/08] ports/22705 ports The port textproc/jade comes with wrong d o [2000/11/10] ports/22750 ports Update port: x11-fm/mfm to mtoolsfm 1.6 o [2000/11/10] ports/22751 ports Update port: x11-wm/evilwm o [2000/11/10] ports/22757 ports new port www/mod_auth_pgsql o [2000/11/11] ports/22769 ports New port: XML::XPath - a set of modules f o [2000/11/12] ports/22792 ports xpm-3.4k does not build/install libXpm.so o [2000/11/12] ports/22802 ports convert in ImageMagic does not work in co o [2000/11/12] ports/22803 ports Update port: XML::XPath - a set of module o [2000/11/12] ports/22804 ports New port: sablotron - Sablotron is an XSL o [2000/11/12] ports/22805 ports New port: XML::Sablotron - a Perl interfa o [2000/11/14] ports/22839 ports x11-servers/XFree86-4-Server port hangs o [2000/11/16] ports/22899 ports kaffe needs to use libtool from ports rat o [2000/11/18] ports/22939 ports 44bsd-more port does not compile under re o [2000/11/20] ports/22977 ports kmp3 has a problem o [2000/11/20] ports/23001 ports StarOffice52 port cannot connect to non-l o [2000/11/26] ports/23125 ports Successful emulation of StarOffice depend o [2000/12/03] ports/23255 ports ports/net/SSLtelnet broken ? o [2000/12/04] ports/23268 ports New port: lang/t3x-680 o [2000/12/06] ports/23338 ports BitchX port compile time error o [2000/12/07] ports/23357 ports New port: java/jakarta-regexp o [2000/12/07] ports/23358 ports New port: java/jakarta-oro o [2000/12/09] ports/23401 ports NetHack 3.3.1 with GNOME support o [2000/12/11] ports/23487 ports Rel. 4.1.1 w/ an IPFW NAT implementation o [2000/12/12] ports/23511 ports New port: sdf (Simple Document Format) o [2000/12/12] ports/23513 ports openldap-1.2.11_1 defaults its data direc o [2000/12/13] ports/23532 ports graphics/gimp-manual-* errouneously requi o [2000/12/13] ports/23534 ports postgres7 package install creates pgsql u o [2000/12/14] ports/23554 ports stunnel-3.8.4 creates pid files in /var/r o [2000/12/15] ports/23564 ports games/omega and print/teTeX both install o [2000/12/16] ports/23588 ports Bug in mod_php4+PostgreSQL build when pos o [2000/12/18] ports/23615 ports Unable to rebuild XFree86-4-libraries o [2000/12/18] ports/23619 ports xscreensaver port fails to install some b 70 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1999/09/22] ports/13898 ports New port: misc/dictd o [1999/12/14] ports/15477 ports wwwstat-2.01 port is not Y2K compliant: 1 o [2000/03/19] ports/17489 ports Zephyr port is broken with Kerberos enabl a [2000/05/17] ports/18633 ports New port pyncurses-0.3 o [2000/06/05] ports/19038 ports The qpopper port accepts empty X-UIDL: he o [2000/06/11] ports/19212 ports New port py-amk-crypto-0.13 o [2000/06/12] ports/19227 ports Installation problem: apache13-ssl port o [2000/06/13] misc/19246 ports Poor error message when fetching files wi o [2000/06/20] ports/19403 ports portsifying of the glide3 source for dri o [2000/06/29] ports/19591 ports ssh2 port ignores 'ignorenologin' from lo o [2000/08/01] ports/20344 ports [PATCH] Port for QDraw-0.7.tar.gz o [2000/08/07] ports/20464 ports Port update of grace to 5.1.1 (included u o [2000/08/08] ports/20491 ports AbiWord-0.7.10 fails to compile on FreeBS o [2000/08/13] ports/20587 ports Update port: upsd-2.0.1.6 o [2000/08/13] ports/20588 ports New port: upsd100-2.0.1.6(sysutils/upsd10 o [2000/08/14] ports/20601 ports DESTDIR and /etc/shells o [2000/08/14] ports/20610 ports New port of cgoban2 o [2000/08/16] ports/20644 ports Installation of port DAP requires compat3 o [2000/08/16] ports/20662 ports New port of viewkit f [2000/08/16] ports/20665 ports [PATCH] Update PORTVERSION for JadeTeX po o [2000/08/22] ports/20793 ports (socket-server) of clisp does not create o [2000/08/30] ports/20941 ports Port Update: *-rtems-gdb o [2000/08/31] ports/20964 ports New port: databases/hypersonicsql o [2000/08/31] ports/20975 ports update math/grace f [2000/09/02] ports/20997 ports [PATCH] Man page, install enhancements fo f [2000/09/02] ports/21003 ports New Port, modification of tcopy a [2000/09/04] ports/21021 ports graphics/quickpics bogus colorspace error o [2000/09/15] ports/21291 ports New port: Free EcmaScript Interpreter (fe o [2000/09/15] ports/21293 ports An emacs major mode for editing SGML and f [2000/09/16] ports/21313 ports vmwarIPv6 and vmware2 panic: Fatal trap 1 f [2000/09/18] ports/21346 ports ports/biology/platon o [2000/09/18] ports/21356 ports New port: mbone/rat30 (rat-3.0.35), the s o [2000/09/18] ports/21389 ports g2c libraries and compatibility for DJGPP o [2000/09/19] ports/21401 ports Update port sysutils/wmtop to 0.83 with f o [2000/09/20] ports/21422 ports msql install fails looking for startup sc o [2000/09/20] ports/21435 ports New port Jakarta Ant (A Java based build o [2000/09/20] ports/21441 ports FIX: devel/pcre to install a working pgre f [2000/09/21] ports/21455 ports update graphics/giram to 0.1.7 o [2000/09/22] ports/21477 ports New port: xmms-crossfade o [2000/09/23] ports/21504 ports New port: korean/tin o [2000/09/23] ports/21513 ports stunnel port should be compiled using non o [2000/09/24] ports/21515 ports pine4 complains about wrong permissions o o [2000/09/24] ports/21516 ports New FreeBSD port for Fuzz o [2000/09/24] ports/21517 ports start|stop script for upsd (/usr/local/et o [2000/09/24] ports/21520 ports Configure the synaptics touchpad. o [2000/09/24] ports/21532 ports No formal mechanism in place for discussi o [2000/09/24] ports/21533 ports A homebrewer's recipe calculator o [2000/09/25] ports/21541 ports Replacement for pr 21538 o [2000/09/25] ports/21545 ports emulators/vmware broken... o [2000/09/26] ports/21558 ports Skill fails to ID os and fails build o [2000/09/26] ports/21584 ports mpd whines if kernel has option NETGRAPH o [2000/09/27] ports/21598 ports port of wm x10 controller o [2000/09/27] ports/21602 ports misc/sls port lost distfile (by maintaine o [2000/09/27] ports/21604 ports new port: java/jad o [2000/09/30] ports/21664 ports port of gmail gnome email-client o [2000/10/01] ports/21681 ports the startup elisp file of PSGML port has o [2000/10/02] ports/21705 ports CSCOPE writes incorrect offset into index o [2000/10/02] ports/21720 ports Update port to use ADNS. o [2000/10/04] ports/21759 ports New port: py-BisonGen-0.5.0 o [2000/10/06] ports/21785 ports Update of audio/linux-realplayer o [2000/10/07] ports/21815 ports lftp port has missing dependency o [2000/10/07] ports/21825 ports slib-2c7 fails to compile in the ports co o [2000/10/07] ports/21828 ports New port: larswm, Tiling Window Manager f f [2000/10/09] ports/21875 ports Update german/webalizer (by maintainer) o [2000/10/09] ports/21878 ports Make fvwm2-beta GNOME-compliant o [2000/10/10] ports/21902 ports New port: textproc/dico - 1.1 o [2000/10/10] ports/21905 ports ports/net/bpft suggests 'pseudo-device bp o [2000/10/11] ports/21917 ports rblsmtpd needs a patch to work with relay o [2000/10/11] ports/21919 ports port update of grace to verion 5.1.2 o [2000/10/12] ports/21941 ports MPI programs compiled with NAG F95 die wi o [2000/10/12] ports/21942 ports Update nethack3 port to 3.3.1 o [2000/10/13] ports/21953 ports New port: astro/SETISupport o [2000/10/14] ports/21985 ports port update o [2000/10/16] ports/22019 ports Ports collection update to TiK o [2000/10/16] ports/22020 ports apache13-modssl dies on alloc.c o [2000/10/16] ports/22027 ports New port: ccdoc v0.7a o [2000/10/16] ports/22039 ports /usr/ports/devel/commoncpp only builds as f [2000/10/17] ports/22047 ports New port: lang/t3x-680 o [2000/10/17] ports/22048 ports New port: devel/TIDE o [2000/10/18] ports/22104 ports Port of software to pull data from the re o [2000/10/19] ports/22107 ports New port: japanese/emacs20-emcws o [2000/10/19] ports/22109 ports New port: gtk+licq-0.39.1 o [2000/10/19] ports/22121 ports stunnel leaves zombie childes when launch o [2000/10/19] ports/22127 ports New port: A image viewer with thumbnail-b o [2000/10/20] ports/22164 ports Update port: mail/xmail o [2000/10/20] ports/22173 ports New Port: net/fidelio o [2000/10/21] ports/22203 ports new port: deskutils/loserjabber o [2000/10/21] ports/22205 ports /ports/misc/moviedb core dumps when Title f [2000/10/23] ports/22260 ports Update for tkgate port o [2000/10/25] ports/22288 ports mod_perl dependancy missing from p5-HTML- o [2000/10/25] ports/22295 ports lua 4.0 beta port o [2000/10/25] ports/22296 ports New port: cannadic - Dictionary of Canna o [2000/10/25] ports/22303 ports New port: urlendec. Contains urlencode an o [2000/10/26] ports/22326 ports update of the mail/minimalist o [2000/10/26] ports/22336 ports New port: scrot-0.1 o [2000/10/27] ports/22346 ports Incorrect plist for ports/net/nocol o [2000/10/28] ports/22370 ports emulators/bochs don't build f [2000/10/28] ports/22379 ports New port: libudbc f [2000/10/28] ports/22381 ports New port: misc/mango o [2000/10/29] ports/22393 ports New port: Ipe-5.0: Interactive Picture Ed o [2000/10/30] ports/22431 ports New Port: o [2000/11/01] ports/22493 ports Fails to build if GMAKE not set to full p o [2000/11/01] ports/22495 ports [UPDATE] ports/net/ppxp to use Tcl8.3 an o [2000/11/02] ports/22542 ports New port: devel/py-mxProxy o [2000/11/02] ports/22546 ports Update port: games/pentix o [2000/11/03] ports/22571 ports install fails o [2000/11/03] ports/22576 ports New port: audio/xmms-crossfade o [2000/11/03] ports/22584 ports Port fix: audio/id3lib o [2000/11/03] ports/22591 ports Update port: audio/timidity++ o [2000/11/03] ports/22592 ports Update port: audio/timidity++-emacs o [2000/11/04] ports/22605 ports xmcd port depends on mailx port o [2000/11/04] ports/22608 ports The port needs g++ 2.95.2 o [2000/11/04] ports/22611 ports New port: audio/gdrdao o [2000/11/05] ports/22616 ports new port of GQmpeg (devel version) o [2000/11/05] ports/22619 ports Fix mail/sendmail (by maintainer) o [2000/11/05] ports/22632 ports New port: textproc/gsed - 3.02 o [2000/11/06] ports/22638 ports typo in ports/misc/seisedesktop/pkg-comme o [2000/11/06] ports/22646 ports SAINT doesn't install correctly o [2000/11/06] ports/22653 ports [PATCH] devel/amulet doesn't compile o [2000/11/06] ports/22655 ports [patch] update of the AbiWord port to ver o [2000/11/07] ports/22682 ports [PATCH] java/jdk-tutorial fix o [2000/11/07] ports/22683 ports New port net/dnip-update o [2000/11/08] ports/22688 ports genpw-port does not build o [2000/11/08] ports/22704 ports cyrus and cyrus-sasl both install pwcheck o [2000/11/08] ports/22706 ports Update driver o [2000/11/09] ports/22716 ports [PATCH] ports/net/ucd-snmp o [2000/11/09] ports/22732 ports netscape47-communicator port uses old lay o [2000/11/10] ports/22735 ports KGhostView doesn't recognize spaces in fi o [2000/11/10] ports/22752 ports remove qclock port o [2000/11/11] ports/22773 ports Port of GNU Eiffel compiler SmallEiffel o [2000/11/11] ports/22776 ports New port: Tcl Tutorial o [2000/11/12] ports/22791 ports [PATCH] ports/mail/cyrus update o [2000/11/12] ports/22794 ports New port: ccdoc 0.7a (second try) o [2000/11/12] ports/22795 ports ports/lang/gnat-glade wrong path for MAST o [2000/11/12] ports/22797 ports New port: graphics/giblib o [2000/11/12] ports/22798 ports New port: gom-0.1 o [2000/11/13] ports/22807 ports Update port: lang/gnat-glade o [2000/11/13] ports/22827 ports NEW PORT: converters/p5-Convert-TNEF o [2000/11/13] ports/22829 ports NEW PORT: archivers/p5-Archive-Tar o [2000/11/14] ports/22848 ports New port: devel/binutils-arm o [2000/11/14] ports/22849 ports New port: devel/gcc-arm o [2000/11/14] ports/22853 ports NEW PORT: graphics/blender o [2000/11/15] ports/22865 ports New port: devel/omniORBpy o [2000/11/15] ports/22867 ports new port: mail/p5-Mail-IMAPClient o [2000/11/15] ports/22876 ports new port: security/pam_pgsql o [2000/11/15] ports/22878 ports piewm doesn't build o [2000/11/15] ports/22879 ports new port: textproc/TclExpat o [2000/11/15] ports/22880 ports mtools-3.9.6 - symlinks changed from abso o [2000/11/16] ports/22887 ports icqmail don'nt compile on 4.x systems o [2000/11/16] ports/22903 ports New port: games/smm++ o [2000/11/18] ports/22938 ports New port: litestream mp3 streaming system f [2000/11/18] ports/22950 ports NEW PORT: mad - High-quality MPEG audio d o [2000/11/18] ports/22952 ports NEW PORT : eggdrop o [2000/11/19] ports/22957 ports NEW PORT : 6tunnel o [2000/11/20] ports/22970 ports New Port : textproc/py2html o [2000/11/20] ports/22976 ports New port: mimelib, C++ class fro encoding o [2000/11/20] ports/22985 ports NEW PORT : 6tunnel (2) o [2000/11/20] ports/22986 ports Update port: patchkit for fixing broken c o [2000/11/20] ports/22997 ports New Port: misc/ftree o [2000/11/21] ports/23003 ports Add new-port phpMyAdmin o [2000/11/21] ports/23005 ports New port - netmask-2.3.3 - Tool for gener o [2000/11/21] ports/23015 ports NEW devel/p5-File-Tail o [2000/11/21] ports/23016 ports NEW PORT security/swatch3 o [2000/11/22] ports/23024 ports blender is moved from commerce to ports s o [2000/11/22] ports/23025 ports NEW PORT: converters/p5-Convert-UUlib o [2000/11/22] ports/23026 ports NEW PORT: sysutils/p5-Unix-Syslog o [2000/11/22] ports/23038 ports New Port: py-4Suite-0.9.2 o [2000/11/23] ports/23044 ports update: www/gnujsp to 1.0.1 o [2000/11/23] ports/23053 ports New devel port, cppadvio; request for loc o [2000/11/27] ports/23142 ports New: astro/jday o [2000/11/28] ports/23151 ports NEW PORT : sysutils/wake-on-lan o [2000/11/28] ports/23158 ports new port: e3 text editor o [2000/11/29] ports/23181 ports [NEW PORT] net/sendip o [2000/11/29] ports/23185 ports Missing distfile for py-kde o [2000/11/29] ports/23186 ports The py-qt port fails to compile a [2000/12/02] ports/23232 ports gettext/xview port collision o [2000/12/02] ports/23245 ports new port o [2000/12/04] ports/23265 ports New port: IP Accounting Daemon, version 1 o [2000/12/04] ports/23267 ports New port submittion: devel/lxr (lxr-0.3) o [2000/12/04] ports/23273 ports Update port: graphics/ImageMagick to 5.2. o [2000/12/04] ports/23289 ports Patches to ports/irc/bitchx to support SO o [2000/12/05] ports/23294 ports new port: deskutils/kdepim o [2000/12/05] ports/23298 ports New port: lame-devel 3.87 o [2000/12/05] ports/23301 ports ports/graphics/opendx does not compile du o [2000/12/05] ports/23305 ports Use native threads in OCAML, use TK 83 o [2000/12/05] ports/23310 ports maintainer upgrade: www/tclhttpd o [2000/12/05] ports/23313 ports new port: ukrainian/ispell o [2000/12/05] ports/23318 ports New port: loserjabber (a deskutil to allo o [2000/12/06] ports/23330 ports description states not clearly if complet o [2000/12/06] ports/23333 ports [NEW PORT] www/webresolve o [2000/12/06] ports/23337 ports [NEW PORT] net/balance o [2000/12/06] ports/23340 ports New port: devel/p5-Term-Size o [2000/12/06] ports/23346 ports Add missing dependency for unzip to the x o [2000/12/07] ports/23373 ports Update Port: graphics/linux-bmrt o [2000/12/08] ports/23392 ports New port: Alec Muffett's cracklib (passwo o [2000/12/09] ports/23407 ports New port addition o [2000/12/10] ports/23420 ports fix: audio/wsoundprefs X manpage error wi o [2000/12/10] ports/23421 ports fix: cad/pcb X manpage error with XFree86 o [2000/12/10] ports/23422 ports fix: deskutils/wmpinboard X manpage error o [2000/12/10] ports/23423 ports fix: emulators/xsystem35 X manpage error o [2000/12/10] ports/23426 ports fix: games/sxsame X manpage error with XF o [2000/12/10] ports/23427 ports fix: games/xchomp X manpage error with XF o [2000/12/10] ports/23428 ports fix: games/xpuyo X manpage error with XFr o [2000/12/10] ports/23429 ports fix: games/xinfocom X manpage error with o [2000/12/10] ports/23430 ports fix: games/xeyesplus X manpage error with o [2000/12/10] ports/23431 ports fix: games/xmj X manpage error with XFree o [2000/12/10] ports/23432 ports fix: games/xscavenger X manpage error wit o [2000/12/10] ports/23433 ports fix: misc/xquote X manpage error with XFr o [2000/12/10] ports/23434 ports fix: graphics/xpx X manpage error with XF o [2000/12/10] ports/23435 ports fix: games/xsoldier X manpage error with o [2000/12/10] ports/23436 ports fix: graphics/xfpovray X manpage error wi o [2000/12/10] ports/23437 ports fix: sysutils/xwipower X manpage error wi o [2000/12/10] ports/23438 ports fix: x11-clocks/mlclock X manpage error w o [2000/12/10] ports/23439 ports fix: sysutils/wmmount X manpage error wit o [2000/12/10] ports/23440 ports fix: x11-clocks/wmdate X manpage error wi o [2000/12/10] ports/23441 ports fix: x11/xfedor X manpage error with XFre o [2000/12/10] ports/23443 ports fix: mail/ml X manpage error with XFree86 o [2000/12/10] ports/23444 ports fix: x11/tycoon X manpage error with XFre o [2000/12/10] ports/23445 ports fix: graphics/plotmtv X manpage error wit o [2000/12/11] ports/23467 ports New Port: audio/p5-Xmms o [2000/12/11] ports/23471 ports fix: x11/xfishtank X manpage error with X o [2000/12/11] ports/23473 ports [PATCH] fvwm2-beta upgrade o [2000/12/11] ports/23474 ports [PATCH] postfix upgrade o [2000/12/11] ports/23481 ports fix: audio/wmcdplay X manpage error with o [2000/12/11] ports/23484 ports New Port: textproc/p5-dTemplate o [2000/12/12] ports/23499 ports [NEW PORT]: Two LaTeX macro package ports o [2000/12/12] ports/23507 ports new port: linux-q3ademo o [2000/12/12] ports/23508 ports fix: x11-clocks/wmtime X manpage error wi o [2000/12/12] ports/23510 ports fix: audio/xtuner X manpage error with XF o [2000/12/13] ports/23533 ports New port for xevil-2.02 (improved repost o [2000/12/14] ports/23550 ports [PORT UPDATE] - graphics/gifsicle 1.20->1 o [2000/12/14] ports/23558 ports no equivalent of "make replace" in postfi o [2000/12/15] ports/23570 ports Update port: x11-wm/icewm to 1.0.5 o [2000/12/15] ports/23574 ports cscope would not compile (ncurses link is o [2000/12/15] ports/23575 ports ksh93 port no longer specifies current AT o [2000/12/15] ports/23577 ports New port biology/gaussian98 o [2000/12/15] ports/23581 ports Updates to bsd.port.mk to detect changing o [2000/12/15] ports/23582 ports Update www/asp2php o [2000/12/16] ports/23589 ports update net/licq o [2000/12/16] ports/23594 ports Update graphics/scrot to 0.5 (MAINTAINER) o [2000/12/17] ports/23596 ports New Port: editors/pico o [2000/12/17] ports/23597 ports new ports: devel/p5-Term-Screen o [2000/12/17] ports/23599 ports rblsmtpd port should be removed, it is pa o [2000/12/17] ports/23601 ports Update www/hypermail o [2000/12/17] ports/23605 ports games/wolfpack port update o [2000/12/18] ports/23608 ports cclient-maildir does not install headers o [2000/12/18] ports/23610 ports pine 4.31 port doesn't compile pine o [2000/12/18] ports/23611 ports palm/pose coredumps o [2000/12/18] ports/23613 ports MAINTAINER UPGRADE: graphics/xine 0.3.1-> o [2000/12/18] ports/23614 ports new ports: devel/p5-Term-Screen o [2000/12/18] ports/23617 ports new port: www/mod_layout o [2000/12/18] ports/23618 ports Updates for newpcm duplex probing and AC9 252 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 11: 0:58 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 11:00:54 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mothra.ecs.csus.edu (unknown [130.86.76.220]) by hub.freebsd.org (Postfix) with ESMTP id 7234937B6B6 for ; Mon, 18 Dec 2000 11:00:36 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by mothra.ecs.csus.edu (8.11.1/8.11.1) with ESMTP id eBIKQUX52912; Mon, 18 Dec 2000 12:26:30 -0800 (PST) (envelope-from joseph@randomnetworks.com) Date: Mon, 18 Dec 2000 12:26:30 -0800 (PST) From: Joseph Scott X-Sender: scottj@mothra.ecs.csus.edu To: Dan Langille Cc: freebsd-ports@FreeBSD.ORG Subject: Re: processing incoming mail messages (FreshPorts 2) In-Reply-To: <200012181853.HAA18954@ducky.nz.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've trimed -hackers from this thread. On Tue, 19 Dec 2000, Dan Langille wrote: # > Then my original answer should have simply been, find a box that # > will host FreshPorts that can take the load of processing 5000 commit # > mails in a minute. :-) # # Good idea! # # Sorry, but after reading my own message, I've seen it's ambiguous. # # In my previous message, by "process the queue as soon as a new # message arrives", I was referring to the procmail scenario mentioned in # a prior message. That is, have procmail deliever each email to a # separate file, and process *that* file into FreshPorts as soon as it # arrives. In that context, the "queue" is the files on disk. With this # strategy, I'm sure a P100 could handle things. Sounds like you are saying that the MTA is the problem then. From my original reading and ideas of what FreshPorts does, the problem was having 100 copies of the import perl script running at the same time. In the situation where you are still processing as they come, only files instead of from the MTA, you will still end up with 100 copies of the import script running at once. *********************************************************** * Joseph Scott The Office Of Water Programs * * joseph@randomnetworks.com joseph.scott@owp.csus.edu * *********************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 11: 2:25 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 11:02:22 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from dayspring.firedrake.org (dayspring.firedrake.org [195.82.105.251]) by hub.freebsd.org (Postfix) with ESMTP id C784737B400; Mon, 18 Dec 2000 11:02:21 -0800 (PST) Received: from float by dayspring.firedrake.org with local (Exim 3.12 #1 (Debian)) id 1485Xq-0003lT-00; Mon, 18 Dec 2000 19:01:58 +0000 Date: Mon, 18 Dec 2000 19:01:58 +0000 To: Joseph Scott Cc: Dan Langille , freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: processing incoming mail messages (FreshPorts 2) Message-ID: <20001218190158.B14040@firedrake.org> References: <200012161822.HAA03654@ducky.nz.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from joseph@randomnetworks.com on Mon, Dec 18, 2000 at 11:22:58AM -0800 From: void Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Dec 18, 2000 at 11:22:58AM -0800, Joseph Scott wrote: > > If the problem is load then another approach would be to heavily > nice(1) the perl script the is launched when a commit mail comes in. I could be wrong, but I think there's a potential problem with this strategy -- namely, when processes are niced, they don't get to run as often, so they stick around longer, and they tend to pile up in memory. -- Ben 220 go.ahead.make.my.day ESMTP Postfix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 11: 3:51 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 11:03:49 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id 79D6C37B400 for ; Mon, 18 Dec 2000 11:03:48 -0800 (PST) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id IAA19036; Tue, 19 Dec 2000 08:03:43 +1300 (NZDT) Message-Id: <200012181903.IAA19036@ducky.nz.freebsd.org> From: "Dan Langille" Organization: langille.org To: Joseph Scott Date: Tue, 19 Dec 2000 08:04:09 +1300 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: processing incoming mail messages (FreshPorts 2) Reply-To: dan@langille.org Cc: freebsd-ports@FreeBSD.ORG Priority: normal References: <200012181853.HAA18954@ducky.nz.freebsd.org> In-reply-to: X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 18 Dec 2000, at 12:26, Joseph Scott wrote: > On Tue, 19 Dec 2000, Dan Langille wrote: > > # > Then my original answer should have simply been, find a box that > # > will host FreshPorts that can take the load of processing 5000 commit > # > mails in a minute. :-) > # > # Good idea! > # > # Sorry, but after reading my own message, I've seen it's ambiguous. > # > # In my previous message, by "process the queue as soon as a new > # message arrives", I was referring to the procmail scenario mentioned in > # a prior message. That is, have procmail deliever each email to a > # separate file, and process *that* file into FreshPorts as soon as it > # arrives. In that context, the "queue" is the files on disk. With this > # strategy, I'm sure a P100 could handle things. > > Sounds like you are saying that the MTA is the problem then. From > my original reading and ideas of what FreshPorts does, the problem was > having 100 copies of the import perl script running at the same time. In > the situation where you are still processing as they come, only files > instead of from the MTA, you will still end up with 100 copies of the > import script running at once. Not in the planned scenario. After procmail delivers the message to file, it notifies a process that there's a new msg in the queue (I'm told kqueue might help here). That process (the Mail Munger) will process the messages one at a time. Only one instance of the Mail Munger occurs. -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ NZ ADSL - http://www.unixathome.org/adsl/ NZ Broadband - http://www.unixathome.org/broadband/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 11: 9: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 11:09:04 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mothra.ecs.csus.edu (unknown [130.86.76.220]) by hub.freebsd.org (Postfix) with ESMTP id 2C33637B400 for ; Mon, 18 Dec 2000 11:09:04 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by mothra.ecs.csus.edu (8.11.1/8.11.1) with ESMTP id eBIKYrX52996; Mon, 18 Dec 2000 12:34:54 -0800 (PST) (envelope-from joseph@randomnetworks.com) Date: Mon, 18 Dec 2000 12:34:53 -0800 (PST) From: Joseph Scott X-Sender: scottj@mothra.ecs.csus.edu To: Dan Langille Cc: Joseph Scott , freebsd-ports@FreeBSD.ORG Subject: Re: processing incoming mail messages (FreshPorts 2) In-Reply-To: <200012181903.IAA19036@ducky.nz.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 19 Dec 2000, Dan Langille wrote: # On 18 Dec 2000, at 12:26, Joseph Scott wrote: # # > On Tue, 19 Dec 2000, Dan Langille wrote: # > # > # > Then my original answer should have simply been, find a box that # > # > will host FreshPorts that can take the load of processing 5000 commit # > # > mails in a minute. :-) # > # # > # Good idea! # > # # > # Sorry, but after reading my own message, I've seen it's ambiguous. # > # # > # In my previous message, by "process the queue as soon as a new # > # message arrives", I was referring to the procmail scenario mentioned in # > # a prior message. That is, have procmail deliever each email to a # > # separate file, and process *that* file into FreshPorts as soon as it # > # arrives. In that context, the "queue" is the files on disk. With this # > # strategy, I'm sure a P100 could handle things. # > # > Sounds like you are saying that the MTA is the problem then. From # > my original reading and ideas of what FreshPorts does, the problem was # > having 100 copies of the import perl script running at the same time. In # > the situation where you are still processing as they come, only files # > instead of from the MTA, you will still end up with 100 copies of the # > import script running at once. # # Not in the planned scenario. # # After procmail delivers the message to file, it notifies a process that # there's a new msg in the queue (I'm told kqueue might help here). That # process (the Mail Munger) will process the messages one at a time. # Only one instance of the Mail Munger occurs. Ok, so you'll have an import daemon out there, taking care of these one at a time. That certainly makes sense, but it make sure it processes them commits in order it will have to pass some data to the import daemon, like the name of the file for that commit, so that it can be added to the queue in the import script. *********************************************************** * Joseph Scott The Office Of Water Programs * * joseph@randomnetworks.com joseph.scott@owp.csus.edu * *********************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 11:11:43 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 11:11:39 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from gershwin.tera.com (gershwin.cray.com [207.224.230.28]) by hub.freebsd.org (Postfix) with ESMTP id 9C9FF37B400; Mon, 18 Dec 2000 11:11:38 -0800 (PST) Received: from thought.org (tao.sea.tera.com [207.108.223.55]) by gershwin.tera.com (8.9.3/8.9.3) with ESMTP id LAA03170; Mon, 18 Dec 2000 11:11:35 -0800 (PST) Received: (from kline@localhost) by thought.org (8.11.0/8.11.0) id eBIJBaD72122; Mon, 18 Dec 2000 11:11:36 -0800 (PST) (envelope-from kline) Date: Mon, 18 Dec 2000 11:11:34 -0800 From: Gary Kline To: Dan Langille Cc: Vivek Khera , freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: processing incoming mail messages (FreshPorts 2) Message-ID: <20001218111134.C71210@tao.thought.org> References: <14910.20578.512135.887887@onceler.kciLink.com> <200012181822.HAA18724@ducky.nz.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200012181822.HAA18724@ducky.nz.freebsd.org>; from dan@langille.org on Tue, Dec 19, 2000 at 07:23:11AM +1300 X-Organization: Thought Unlimited. Public service Unix since 1986. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Dec 19, 2000 at 07:23:11AM +1300, Dan Langille wrote: > On 18 Dec 2000, at 12:58, Vivek Khera wrote: > > > >>>>> "JSF" == Joseph Scott writes: > > > > JSF> If you don't want to process a message the instant it comes in > > JSF> (via feeding it to a perl script or what ever) you'll need to setup some > > JSF> sort of queue, then have a cron job come through and process the > > JSF> queue. > > > > Or, you could use a mailer system that does it for you. You can > > configure postfix to deliver at most N messages to a specific local > > destination at once, the rest getting queued in the local mail spool. > > If you set this limit to 1, you'd avoid the need for any additional > > file locking as well. > > Thanks. Offline, someone also suggested exim, which contains a perl > interpreter. But I would rather develop an MTA independent solution. > Hi Dan, elm used to have a program /usr/local/bin/filter that did what you want to do, I think. There were concise examples in the elm documentation and it worked well if the load wasn't extremely heavy. I used the filter binary for years; the bad news is that this binary seems to be missing from elm-2.5. No such feature in mutt.... gary -- Gary D. Kline kline@tao.thought.org Public service Unix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 11:13:27 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 11:13:25 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id 260EB37B400 for ; Mon, 18 Dec 2000 11:13:24 -0800 (PST) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id IAA19088; Tue, 19 Dec 2000 08:13:18 +1300 (NZDT) Message-Id: <200012181913.IAA19088@ducky.nz.freebsd.org> From: "Dan Langille" Organization: langille.org To: Joseph Scott Date: Tue, 19 Dec 2000 08:13:35 +1300 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: processing incoming mail messages (FreshPorts 2) Reply-To: dan@langille.org Cc: freebsd-ports@FreeBSD.ORG Priority: normal References: <200012181903.IAA19036@ducky.nz.freebsd.org> In-reply-to: X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 18 Dec 2000, at 12:34, Joseph Scott wrote: > Ok, so you'll have an import daemon out there, taking care of > these one at a time. That certainly makes sense, but it make sure it > processes them commits in order it will have to pass some data to the > import daemon, like the name of the file for that commit, so that it can > be added to the queue in the import script. The queue is implicit. I will have a dedicated directory for the queue. Each file in that directory is part of the queue. The file names will be of the forum date/time/process id. Thus processing the files in alphabetical order ensures they are consumed in the correct order. -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ NZ ADSL - http://www.unixathome.org/adsl/ NZ Broadband - http://www.unixathome.org/broadband/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 11:15:25 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 11:15:22 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id 5DECA37B402; Mon, 18 Dec 2000 11:15:21 -0800 (PST) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id IAA19117; Tue, 19 Dec 2000 08:15:12 +1300 (NZDT) Message-Id: <200012181915.IAA19117@ducky.nz.freebsd.org> From: "Dan Langille" Organization: langille.org To: Gary Kline Date: Tue, 19 Dec 2000 08:15:39 +1300 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: processing incoming mail messages (FreshPorts 2) Reply-To: dan@langille.org Cc: freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Priority: normal In-reply-to: <20001218111134.C71210@tao.thought.org> References: <200012181822.HAA18724@ducky.nz.freebsd.org>; from dan@langille.org on Tue, Dec 19, 2000 at 07:23:11AM +1300 X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 18 Dec 2000, at 11:11, Gary Kline wrote: > elm used to have a program /usr/local/bin/filter that did > what you want to do, I think. There were concise examples > in the elm documentation and it worked well if the load wasn't > extremely heavy. I used the filter binary for years; the > bad news is that this binary seems to be missing from elm-2.5. > > No such feature in mutt.... Thanks. Always interesting to know. BTW folks, the thread has moved to freebsd-ports, unless someone can suggest a more appropriate list. -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ NZ ADSL - http://www.unixathome.org/adsl/ NZ Broadband - http://www.unixathome.org/broadband/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 11:20: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 11:20:05 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mothra.ecs.csus.edu (unknown [130.86.76.220]) by hub.freebsd.org (Postfix) with ESMTP id 5B5D737B402 for ; Mon, 18 Dec 2000 11:20:00 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by mothra.ecs.csus.edu (8.11.1/8.11.1) with ESMTP id eBIKjoX53067; Mon, 18 Dec 2000 12:45:50 -0800 (PST) (envelope-from joseph@randomnetworks.com) Date: Mon, 18 Dec 2000 12:45:49 -0800 (PST) From: Joseph Scott X-Sender: scottj@mothra.ecs.csus.edu To: Dan Langille Cc: freebsd-ports@FreeBSD.ORG Subject: Re: processing incoming mail messages (FreshPorts 2) In-Reply-To: <200012181913.IAA19088@ducky.nz.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 19 Dec 2000, Dan Langille wrote: # # > Ok, so you'll have an import daemon out there, taking care of # > these one at a time. That certainly makes sense, but it make sure it # > processes them commits in order it will have to pass some data to the # > import daemon, like the name of the file for that commit, so that it can # > be added to the queue in the import script. # # The queue is implicit. I will have a dedicated directory for the queue. # Each file in that directory is part of the queue. The file names will be of # the forum date/time/process id. Thus processing the files in # alphabetical order ensures they are consumed in the correct order. Cool, so are you just going to have procmail send a signal with kill(1) or something each time it dumps a message in the queue? Another question, totally different topic, are there any plans to open source the FreshPorts code? *********************************************************** * Joseph Scott The Office Of Water Programs * * joseph@randomnetworks.com joseph.scott@owp.csus.edu * *********************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 11:28:30 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 11:28:28 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id 9217D37B400 for ; Mon, 18 Dec 2000 11:28:27 -0800 (PST) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id IAA19193; Tue, 19 Dec 2000 08:28:21 +1300 (NZDT) Message-Id: <200012181928.IAA19193@ducky.nz.freebsd.org> From: "Dan Langille" Organization: langille.org To: Joseph Scott Date: Tue, 19 Dec 2000 08:28:48 +1300 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: processing incoming mail messages (FreshPorts 2) Reply-To: dan@langille.org Cc: freebsd-ports@FreeBSD.ORG Priority: normal References: <200012181913.IAA19088@ducky.nz.freebsd.org> In-reply-to: X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 18 Dec 2000, at 12:45, Joseph Scott wrote: > Cool, so are you just going to have procmail send a signal with > kill(1) or something each time it dumps a message in the queue? Something like that. I don't actually know. > Another question, totally different topic, are there any plans to > open source the FreshPorts code? It won't be before I get version 2 of the code running. I want to process all of the source tree before considering that. BTW: adding NetBSD or OpenBSD to FreshPorts does not require FreshPorts to be open source. All it requires is for someone to write a script to parse their logs. -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ NZ ADSL - http://www.unixathome.org/adsl/ NZ Broadband - http://www.unixathome.org/broadband/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 11:30: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 11:30:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 81BB637B402 for ; Mon, 18 Dec 2000 11:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIJU3C23803; Mon, 18 Dec 2000 11:30:03 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Dec 2000 11:30:03 -0800 (PST) Message-Id: <200012181930.eBIJU3C23803@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: Re: ports/23507: new port: linux-q3ademo Reply-To: Will Andrews Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23507; it has been noted by GNATS. From: Will Andrews To: Marc van Woerkom Cc: will@physics.purdue.edu, FreeBSD-gnats-submit@FreeBSD.org, 3d@FreeBSD.org Subject: Re: ports/23507: new port: linux-q3ademo Date: Mon, 18 Dec 2000 12:50:22 -0500 On Mon, Dec 18, 2000 at 05:13:28PM +0100, Marc van Woerkom wrote: > That's hard for me (have not earned commit rights yet :) > > OK, next time I submit a port via send-pr, I put such trivia not in the > shar archive's Makefile but in the PR intro. That's the right thing to do. ;-) > Perhaps I would know that myself, if I had read freebsd-ports > more regulary. Hmm, I was pretty sure portlint caught that kind of thing.. > So for me it would be very helpful, if you guys could keep that > handbook very up to date and easy to understand. It would be nice if someone would help us, since we are good at ports, not documentation. :-) Usually someone on the team blows their pipe and someone else has to do it anyway. > I see, one bumps that, after a revision of something existing. > So there is no initial revision (PORTSREVISION=0 ?). Well, think of it this way: what's the point of having an "initial revision" if 99% (nearly 4,200 ports) would require this line? Remember, PORTREVISION is for when we make local changes after an upgrade (usually things like security fixes or changes to the packing list to include more documentation or another binary).. it should say something like that in the handbook. > "graphics" slipped into it, because personally I see this app rather as > a demo of FreeBSD's Linux emulation and graphics capabilities, than as > a game. (Yes, I am a lousy q3a player and loose a lot :-) It's a game.. any fairly good game requires nice graphics. Let's just say putting "graphics" category in there because of that is not acceptable. > What would a indirect use be? NO_CDROM, RESTRICTED, etc. etc. > Or rather: what would be the correct setting to indicate that the > distribution archive should not be include on the FreeBSD distribution > CD-ROM? Well, you know, there is NO_CDROM for this purpose. There are plenty of examples in the tree, and I believe these special variables are described in the porter's handbook. Another definitive resource for information is the first 500 lines or so of ports/Mk/bsd.port.mk. > A related topic is the creation of a DVD player port. > > This one would conflict with US law (DCMA?), but might be > legal in other states, like the Netherlands, for example. > > Could someone more informed, perhaps some crypto veteran, > contact me about how to handle this case? There may be legal problems in the U.S., so I would mark it RESTRICTED for legal problems. I don't see a problem having a DVD player port. In fact, I am sure many people would use it, and they would probably thank you a lot for it. I would be glad to commit it too. > If it doesn't, it is perhaps some simple string mismatch > problem in your glx version. No worries, I don't have a GeForce2 on my computer yet, and I'm not sure I will.. I'm more interested in a TV card than a supercool gaming card. > On the nvidia developers list over at xfree86.org, there > were some updates for the id strings of the latest nvidia > cards. These cards are usually downwards compatible and > should run that simple driver. Hmm, you mean nvidia actually helps write opensource drivers for their cards? > Hmm.. new to me. Has this been stated in the porters handbook yet? Well, I'll just say that it's not new to ports, but the reason it's not documented anywhere except in certain ports is because nobody's taken the time to standardize variables for the use in bsd.port.mk yet, even though the discussion regarding this kind of thing occurred about six months ago. However, it is a very simple concept involving PLIST_SUB and a simple if-else-endif conditional in the port Makefile. It sure saves a lot of grief.. somebody ought to do that soon. Too bad my todo list is already quite stocked up. > It should run, but perhaps slow. Users of Matrox or Glide cards, where > faster XFree86 drivers are available than for nvidia cards, > might have even more fun. :-) > What is RT2? Railroad Tycoon II, another game Loki makes for Linux. I haven't bought my copy yet, but I'm not done with the demo yet either (I did buy the original Windows version and tried to get it exchanged for Loki's version but they told me they have no such arrangement available). -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 11:32:30 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 11:32:28 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mothra.ecs.csus.edu (unknown [130.86.76.220]) by hub.freebsd.org (Postfix) with ESMTP id DDD0137B400 for ; Mon, 18 Dec 2000 11:32:27 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by mothra.ecs.csus.edu (8.11.1/8.11.1) with ESMTP id eBIKwLX53117; Mon, 18 Dec 2000 12:58:21 -0800 (PST) (envelope-from joseph@randomnetworks.com) Date: Mon, 18 Dec 2000 12:58:21 -0800 (PST) From: Joseph Scott X-Sender: scottj@mothra.ecs.csus.edu To: Dan Langille Cc: freebsd-ports@FreeBSD.ORG Subject: Re: processing incoming mail messages (FreshPorts 2) In-Reply-To: <200012181928.IAA19193@ducky.nz.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 19 Dec 2000, Dan Langille wrote: # On 18 Dec 2000, at 12:45, Joseph Scott wrote: # # > Cool, so are you just going to have procmail send a signal with # > kill(1) or something each time it dumps a message in the queue? # # Something like that. I don't actually know. # # > Another question, totally different topic, are there any plans to # > open source the FreshPorts code? # # It won't be before I get version 2 of the code running. I want to process # all of the source tree before considering that. Cool. # BTW: adding NetBSD or OpenBSD to FreshPorts does not require # FreshPorts to be open source. All it requires is for someone to write a # script to parse their logs. Very true. Ideally the import daemon would be modular enough people could simply write perl modules (functions, objects, whatever) that could easily be plugged into the import daemon. *********************************************************** * Joseph Scott The Office Of Water Programs * * joseph@randomnetworks.com joseph.scott@owp.csus.edu * *********************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 11:34:52 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 11:34:49 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id 8701337B400 for ; Mon, 18 Dec 2000 11:34:48 -0800 (PST) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id IAA19246; Tue, 19 Dec 2000 08:34:43 +1300 (NZDT) Message-Id: <200012181934.IAA19246@ducky.nz.freebsd.org> From: "Dan Langille" Organization: langille.org To: Joseph Scott Date: Tue, 19 Dec 2000 08:35:09 +1300 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: processing incoming mail messages (FreshPorts 2) Reply-To: dan@langille.org Cc: freebsd-ports@FreeBSD.ORG Priority: normal References: <200012181928.IAA19193@ducky.nz.freebsd.org> In-reply-to: X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 18 Dec 2000, at 12:58, Joseph Scott wrote: > # BTW: adding NetBSD or OpenBSD to FreshPorts does not require > # FreshPorts to be open source. All it requires is for someone to write a > # script to parse their logs. > > Very true. Ideally the import daemon would be modular enough > people could simply write perl modules (functions, objects, whatever) that > could easily be plugged into the import daemon. There will be an XML template for imports. All that people have to do is supply a script which will translate the log file into the XML template. -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ NZ ADSL - http://www.unixathome.org/adsl/ NZ Broadband - http://www.unixathome.org/broadband/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 11:46:12 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 11:46:09 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from hub.lovett.com (hub.lovett.com [216.60.121.161]) by hub.freebsd.org (Postfix) with ESMTP id DEDBB37B402; Mon, 18 Dec 2000 11:46:08 -0800 (PST) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 1486ET-0001U7-00; Mon, 18 Dec 2000 13:46:01 -0600 Date: Mon, 18 Dec 2000 13:46:01 -0600 From: Ade Lovett To: Dag-Erling Smorgrav Cc: jmz@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: XFree86-4 Port Message-ID: <20001218134601.A5634@FreeBSD.org> References: <20001217004251.A47353@external.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Mon, Dec 18, 2000 at 12:09:32PM +0100 Sender: ade@lovett.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Dec 18, 2000 at 12:09:32PM +0100, Dag-Erling Smorgrav wrote: > Another bug in the XFree86 4 support: ports that need X depend on the > XFree86-4-libraries port. If you installed the XFree86-4 port instead, > you don't need (or want) that port, but packages that need X will > require it, and install it unless you specifically ask pkg_add not to > install dependencies (in which case you have to install all the > *other* dependencies manually...) The (apparent) solution is to have > the XFree86-4 port register empty packages for all the components it > installs that have a separate port. The real solution is for x11/XFree86-4 to be completely gutted and turned into a meta-port, depending on all of the other XFree86-4 components. This was the original goal, and I have no idea (nor does it cease to amaze me) why it hasn't been done. The metaport itself would take about a minute to write, followed by a week or so of pain whilst all those patches that are in the main port but not the little pieces, and vice versa, are sorted out. With "a while" before the next release, this would seem to be an ideal time to fix this particular bogon. -aDe -- Ade Lovett, Austin, TX. ade@FreeBSD.org FreeBSD: The Power to Serve http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 11:46:35 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 11:46:34 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from thor.afnetinc.com (thor.afnetinc.com [206.40.232.1]) by hub.freebsd.org (Postfix) with ESMTP id 2B60137B402; Mon, 18 Dec 2000 11:46:34 -0800 (PST) Received: from 206-40-232-131-csc-0.afnetinc.com ([206.40.232.131] helo=SCIENCE1) by thor.afnetinc.com with smtp (Exim 2.05 #1) id 1486El-0007cR-00; Mon, 18 Dec 2000 12:46:19 -0700 From: Elliot Finley To: sheldonh@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: exim-3.16 Date: Mon, 18 Dec 2000 12:47:06 -0700 Organization: System Hog (www.systemhog.com) Reply-To: efinley@efinley.com Message-ID: X-Mailer: Forte Agent 1.8/32.548 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org What is the time frame for updating the Exim port to the latest release? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 11:49:26 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 11:49:24 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from elvis.mu.org (elvis.mu.org [207.154.226.10]) by hub.freebsd.org (Postfix) with ESMTP id A9F3B37B400 for ; Mon, 18 Dec 2000 11:49:23 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1098) id 380122B232; Mon, 18 Dec 2000 13:49:13 -0600 (CST) Date: Mon, 18 Dec 2000 13:49:13 -0600 From: Bill Fumerola To: lewst Cc: Will Andrews , ports@FreeBSD.ORG Subject: Re: where is KDE 2.0.1 ?!? Message-ID: <20001218134912.E72273@elvis.mu.org> References: <20001218174234.3825.qmail@web2104.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001218174234.3825.qmail@web2104.mail.yahoo.com>; from lewst@yahoo.com on Mon, Dec 18, 2000 at 09:42:34AM -0800 X-Operating-System: FreeBSD 4.2-FEARSOME-20001103 i386 Sender: billf@elvis.mu.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Dec 18, 2000 at 09:42:34AM -0800, lewst wrote: > > Nobody seems to be interested in paying a FreeBSD guy to do that. > > When the going gets tough, the tough gets going Will. Making > excuses instead of outperforming the competition under adversity > is a losing attitude. I must defer to the wisdom of Jonny Greenwood: "May your next shit be a porcupine." -- Bill Fumerola - security yahoo / Yahoo! inc. - fumerola@yahoo-inc.com / billf@FreeBSD.org PS. Send patches next time. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 12: 0:22 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 12:00:15 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D4C237B404 for ; Mon, 18 Dec 2000 12:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIK04Z27502; Mon, 18 Dec 2000 12:00:04 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 12:00:04 -0800 (PST) Resent-Message-Id: <200012182000.eBIK04Z27502@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4DEE637B400 for ; Mon, 18 Dec 2000 11:59:52 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIJxqw27428; Mon, 18 Dec 2000 11:59:52 -0800 (PST) (envelope-from nobody) Message-Id: <200012181959.eBIJxqw27428@freefall.freebsd.org> Date: Mon, 18 Dec 2000 11:59:52 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23622: Update port: games/xdemineur Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23622 >Category: ports >Synopsis: Update port: games/xdemineur >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 12:00:03 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Add MASTER_SITE_XCONTRIB to MASTER_SITES >How-To-Repeat: >Fix: diff -urN /usr/ports/games/xdemineur/Makefile games/xdemineur/Makefile --- /usr/ports/games/xdemineur/Makefile Thu Aug 3 21:13:41 2000 +++ games/xdemineur/Makefile Tue Dec 19 01:19:58 2000 @@ -1,14 +1,16 @@ -# New ports collection makefile for: xdemineur -# Date created: 13 Feb 1998 -# Whom: Thomas Gellekum +# New ports collection makefile for: xdemineur +# Date created: 13 Feb 1998 +# Whom: Thomas Gellekum # # $FreeBSD: ports/games/xdemineur/Makefile,v 1.8 2000/08/03 09:24:04 asami Exp $ # -PORTNAME= xdemineur +PORTNAME= xdemineur PORTVERSION= 2.1.1 CATEGORIES= games -MASTER_SITES= ftp://ftp.babafou.eu.org/pub/babafou/ +MASTER_SITES= ${MASTER_SITE_XCONTRIB} \ + ftp://ftp.babafou.eu.org/pub/babafou/ +MASTER_SITE_SUBDIR= games MAINTAINER= ports@FreeBSD.org >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 12: 0:22 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 12:00:04 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C17037B699 for ; Mon, 18 Dec 2000 12:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIK03627493; Mon, 18 Dec 2000 12:00:03 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 12:00:03 -0800 (PST) Resent-Message-Id: <200012182000.eBIK03627493@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD0AC37B400 for ; Mon, 18 Dec 2000 11:59:07 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIJx7p27345; Mon, 18 Dec 2000 11:59:07 -0800 (PST) (envelope-from nobody) Message-Id: <200012181959.eBIJx7p27345@freefall.freebsd.org> Date: Mon, 18 Dec 2000 11:59:07 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23621: Update port: audio/rosegarden Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23621 >Category: ports >Synopsis: Update port: audio/rosegarden >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 12:00:03 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update MASTER_SITES - Support PREFIX properly - Fix configure error under XFree86 4.x New file: files/patch-af No response from maintainer. >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/rosegarden/Makefile audio/rosegarden/Makefile --- /usr/ports/audio/rosegarden/Makefile Fri Jun 9 21:02:03 2000 +++ audio/rosegarden/Makefile Thu Dec 14 02:17:09 2000 @@ -8,29 +8,29 @@ PORTNAME= rosegarden PORTVERSION= 2.1.2 CATEGORIES= audio -MASTER_SITES= http://www.all-day-breakfast.com/rosegarden/patches/ +MASTER_SITES= http://www.cannam.demon.co.uk/rosegarden/distribution/ DISTNAME= ${PORTNAME}-2.1pl2 MAINTAINER= shanee@augusta.de -BUILD_DEPENDS= ${LOCALBASE}/lib/tclmidi/tclmidi31.so:$(PORTSDIR)/audio/tclmidi -RUN_DEPENDS= ${LOCALBASE}/lib/tclmidi/tclmidi31.so:$(PORTSDIR)/audio/tclmidi +BUILD_DEPENDS= ${LOCALBASE}/lib/tclmidi/tclmidi31.so:${PORTSDIR}/audio/tclmidi +RUN_DEPENDS= ${LOCALBASE}/lib/tclmidi/tclmidi31.so:${PORTSDIR}/audio/tclmidi -GNU_CONFIGURE= yes -USE_AUTOCONF= yes USE_X_PREFIX= yes -CONFIGURE_ARGS= --with-tclincl=${LOCALBASE}/include/tcl8.2/ -CONFIGURE_ENV= LIBS="-L${PREFIX}/lib" +USE_AUTOCONF= yes +CONFIGURE_ENV= MAKEDEPEND=${TRUE} +CONFIGURE_ARGS= --with-tclincl=${LOCALBASE}/include/tcl8.2 + +post-patch: + @${CP} ${FILESDIR}/rosegarden ${WRKSRC}/rosegarden.sh +.for file in Rosegarden rosegarden.sh + @${PERL} -pi -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/${file} +.endfor do-install: - @${MKDIR} ${PREFIX}/lib/X11/app-defaults @( \ cd ${WRKSRC} ; ${SETENV} PREFIX="${PREFIX}" ./do-install \ ) - -post-install: - ${MV} ${PREFIX}/bin/rosegarden ${PREFIX}/bin/rosegarden-bin - ${SED} s-%%PREFIX%%-${PREFIX}-g ${FILESDIR}/rosegarden >${WRKDIR}/rosegarden - ${INSTALL_SCRIPT} ${WRKDIR}/rosegarden ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/rosegarden.sh ${PREFIX}/bin/rosegarden .include diff -urN /usr/ports/audio/rosegarden/files/patch-aa audio/rosegarden/files/patch-aa --- /usr/ports/audio/rosegarden/files/patch-aa Mon Nov 29 03:31:42 1999 +++ audio/rosegarden/files/patch-aa Thu Dec 14 02:14:29 2000 @@ -1,21 +1,6 @@ ---- configure.in.orig Wed Oct 15 13:42:59 1997 -+++ configure.in Sat Sep 18 16:15:13 1999 -@@ -4,6 +4,14 @@ - - AC_CONFIG_HEADER(config.h) - -+AC_ARG_WITH(tcl, -+ [--with-tclincl Set tcl iclude Path], -+ [ with_tcl=$withval ], -+ [ with_tcl=/usr/local/include ], -+) -+ -+CFLAGS="${CFLAGS} -I ${with_tcl}" -+ - dnl Checks for programs. - AC_PROG_CC - AC_PROG_LN_S -@@ -67,11 +75,11 @@ +--- configure.in.orig Tue Sep 21 20:25:38 1999 ++++ configure.in Thu Dec 14 02:14:00 2000 +@@ -67,11 +67,11 @@ Petal=Petal @@ -29,7 +14,7 @@ if test -n "$TCLSH" then # Check Tcl version: -@@ -88,7 +96,7 @@ +@@ -88,7 +88,7 @@ then # Check for TclMIDI AC_CHECKING(if TclMIDI is installed) @@ -38,14 +23,30 @@ if test -n "$TCL_MIDI_CHECK" then Petal="" -@@ -153,8 +161,8 @@ +@@ -153,7 +153,7 @@ *freebsd*) defines="-DNO_SYS_ERRLIST" AC_CHECK_HEADER(machine/soundcard.h, sound_system="-DSYSTEM_OSS") - extra_libs="-lmalloc" -- # LDFLAGS="-L/usr/lib -L/usr/X11R6/lib" + # extra_libs="-lmalloc" -+ LDFLAGS="-L/usr/lib -L/usr/X11R6/lib" + # LDFLAGS="-L/usr/lib -L/usr/X11R6/lib" PETAL_LD=ld - PETAL_CFLAGS="-fPIC" +@@ -181,6 +181,17 @@ + + #x_includes="-I$x_includes" + #x_libraries="-L$x_libraries" ++ ++AC_MSG_CHECKING(Tcl include Path) ++AC_ARG_WITH(tclincl, ++ [ --with-tclincl Set tcl include Path], ++ with_tclincl=$withval, ++ with_tclincl=no) ++AC_MSG_RESULT($with_tclincl) ++ ++if test "$with_tclincl" != "no"; then ++ PETAL_CFLAGS="${PETAL_CFLAGS} -I ${with_tclincl}" ++fi + + AC_SUBST(rosegarden) + diff -urN /usr/ports/audio/rosegarden/files/patch-ab audio/rosegarden/files/patch-ab --- /usr/ports/audio/rosegarden/files/patch-ab Mon Nov 29 03:31:43 1999 +++ audio/rosegarden/files/patch-ab Thu Dec 14 02:14:54 2000 @@ -1,6 +1,6 @@ ---- /tmp/rosegarden-2.1/petal/Makefile.in Sat Oct 18 11:43:27 1997 -+++ ./petal/Makefile.in Fri May 14 17:29:54 1999 -@@ -7,7 +7,7 @@ +--- petal/Makefile.in.orig Wed Oct 8 07:40:55 1997 ++++ petal/Makefile.in Thu Dec 14 02:14:42 2000 +@@ -7,13 +7,13 @@ pkgIndex.tcl : Petal.so Petal.tcl @echo "The error message for Petal.tcl is normal" @@ -8,13 +8,12 @@ + echo "pkg_mkIndex . Petal.so Petal.tcl" | tclsh8.2 petaleditor/pkgIndex.tcl : petaleditor/PetalEditor.tcl - cd petaleditor; make -@@ -19,7 +19,7 @@ - $(LD) $(LDFLAGS) Petal.o -o Petal.so +- cd petaleditor; make ++ cd petaleditor; $(MAKE) - Petal.o : Petal.c -- $(CC) $(CFLAGS) -c -o Petal.o Petal.c -+ $(CC) $(CFLAGS) -I/usr/local/include -c -o Petal.o Petal.c + petalmidi/pkgIndex.tcl : petalmidi/PetalMidi.tcl +- cd petalmidi; make ++ cd petalmidi; $(MAKE) - clean : - rm -f Petal.o Petal.so + Petal.so : Petal.o + $(LD) $(LDFLAGS) Petal.o -o Petal.so diff -urN /usr/ports/audio/rosegarden/files/patch-ad audio/rosegarden/files/patch-ad --- /usr/ports/audio/rosegarden/files/patch-ad Mon Nov 29 03:31:43 1999 +++ audio/rosegarden/files/patch-ad Wed Dec 13 03:31:35 2000 @@ -1,5 +1,6 @@ -Index: do-install -@@ -1,27 +1,23 @@ +--- do-install.orig Wed Oct 22 06:20:43 1997 ++++ do-install Wed Dec 13 03:31:28 2000 +@@ -1,34 +1,30 @@ #!/bin/sh -BINDIR=/usr/local/bin @@ -40,6 +41,14 @@ ROSELIBDIR=$LIBDIR/rosegarden + ( set -x + + $install -d $BINDIR +-$install -s -c ./bin/rosegarden $BINDIR ++$install -s -c ./bin/rosegarden $BINDIR/rosegarden-bin + + $install -d $ROSELIBDIR/bin + $install -s -c ./bin/sequencer $ROSELIBDIR/bin @@ -46,20 +42,20 @@ $install -c -m 644 ./common/help/rosehelp.hnx $ROSELIBDIR/help diff -urN /usr/ports/audio/rosegarden/files/patch-af audio/rosegarden/files/patch-af --- /usr/ports/audio/rosegarden/files/patch-af Mon Nov 29 03:31:45 1999 +++ audio/rosegarden/files/patch-af Thu Jan 1 09:00:00 1970 @@ -1,11 +0,0 @@ ---- /tmp/rosegarden-2.1/petal/Petal.c Sun Mar 2 20:03:31 1997 -+++ ./petal/Petal.c Fri May 14 17:25:50 1999 -@@ -2,7 +2,7 @@ - #include - #include - #include --#include -+#include - - #define NB_MODES 7 - #define NB_TONALITIES 17 /* names, actually */ diff -urN /usr/ports/audio/rosegarden/files/patch-ai audio/rosegarden/files/patch-ai --- /usr/ports/audio/rosegarden/files/patch-ai Mon Jul 12 05:52:13 1999 +++ audio/rosegarden/files/patch-ai Wed Dec 13 02:42:15 2000 @@ -1,5 +1,5 @@ ---- /tmp/rosegarden-2.1/Rosegarden Wed Oct 22 22:16:41 1997 -+++ ./Rosegarden Fri May 14 19:58:16 1999 +--- Rosegarden.orig Thu Oct 23 05:14:54 1997 ++++ Rosegarden Wed Dec 13 02:41:20 2000 @@ -8,15 +8,15 @@ !!! Paths, edit these @@ -9,16 +9,16 @@ -Rosegarden*helpFile: /usr/local/lib/rosegarden/help/rosehelp.info -Rosegarden*midiFmPatchFile: /usr/local/lib/rosegarden/synth-patches/std.sb -Rosegarden*midiFmDrumPFile: /usr/local/lib/rosegarden/synth-patches/drums.sb -+Rosegarden*editorName: /usr/X11R6/lib/rosegarden/bin/editor -+Rosegarden*sequencerName: /usr/X11R6/lib/rosegarden/bin/sequencer -+Rosegarden*helpFile: /usr/X11R6/lib/rosegarden/help/rosehelp.info -+Rosegarden*midiFmPatchFile: /usr/X11R6/lib/rosegarden/synth-patches/std.sb -+Rosegarden*midiFmDrumPFile: /usr/X11R6/lib/rosegarden/synth-patches/drums.sb ++Rosegarden*editorName: %%PREFIX%%/lib/rosegarden/bin/editor ++Rosegarden*sequencerName: %%PREFIX%%/lib/rosegarden/bin/sequencer ++Rosegarden*helpFile: %%PREFIX%%/lib/rosegarden/help/rosehelp.info ++Rosegarden*midiFmPatchFile: %%PREFIX%%/lib/rosegarden/synth-patches/std.sb ++Rosegarden*midiFmDrumPFile: %%PREFIX%%/lib/rosegarden/synth-patches/drums.sb !!! directory for Petal filters. ~/.rosepetal-filters will also be searched -Rosegarden*filtersDirectory: /usr/local/lib/rosegarden/rosepetal-filters -+Rosegarden*filtersDirectory: /usr/X11R6/lib/rosegarden/rosepetal-filters ++Rosegarden*filtersDirectory: %%PREFIX%%/lib/rosegarden/rosepetal-filters !!! this is the default directory used for file dialogs: @@ -27,7 +27,7 @@ !!! this is for the sequencer's "Play through Slave": -Rosegarden*externalPlayer: /usr/local/bin/xplaymidi -+Rosegarden*externalPlayer: /usr/X11R6/bin/xplaymidi ++Rosegarden*externalPlayer: %%PREFIX%%/bin/xplaymidi !!! midi device location !!! for OSS this is normally /dev/sequencer, for ZILOG it's >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 12:10:11 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 12:10:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A0B537B400 for ; Mon, 18 Dec 2000 12:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIKA2D30757; Mon, 18 Dec 2000 12:10:02 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 12:10:02 -0800 (PST) Resent-Message-Id: <200012182010.eBIKA2D30757@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C3A337B400 for ; Mon, 18 Dec 2000 12:01:45 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIK1j727683; Mon, 18 Dec 2000 12:01:45 -0800 (PST) (envelope-from nobody) Message-Id: <200012182001.eBIK1j727683@freefall.freebsd.org> Date: Mon, 18 Dec 2000 12:01:45 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23624: Update port: graphics/gifsicle to 1.23 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23624 >Category: ports >Synopsis: Update port: graphics/gifsicle to 1.23 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 12:10:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.23 No response from maintainer. >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/gifsicle/Makefile graphics/gifsicle/Makefile --- /usr/ports/graphics/gifsicle/Makefile Tue Jul 4 19:01:08 2000 +++ graphics/gifsicle/Makefile Tue Dec 19 01:20:54 2000 @@ -1,21 +1,25 @@ -# New ports collection makefile for: gifsicle -# Date created: 19 December 1998 -# Whom: Brad Hendrickse +# New ports collection makefile for: gifsicle +# Date created: 19 December 1998 +# Whom: Brad Hendrickse # # $FreeBSD: ports/graphics/gifsicle/Makefile,v 1.10 2000/07/04 04:40:33 will Exp $ # PORTNAME= gifsicle -PORTVERSION= 1.20 +PORTVERSION= 1.23 CATEGORIES= graphics MASTER_SITES= http://www.lcdf.org/gifsicle/ MAINTAINER= bradh@uunet.co.za +USE_XLIB= yes +GNU_CONFIGURE= yes + MAN1= gifdiff.1 gifsicle.1 gifview.1 -GNU_CONFIGURE= yes -USE_XLIB= yes +.if !defined(HAVE_UNISYS_LICENSE) +CONFIGURE_ARGS+= --enable-ungif +.endif post-install: .if !defined(NOPORTDOCS) diff -urN /usr/ports/graphics/gifsicle/distinfo graphics/gifsicle/distinfo --- /usr/ports/graphics/gifsicle/distinfo Tue Jul 4 13:40:33 2000 +++ graphics/gifsicle/distinfo Thu Dec 14 03:05:55 2000 @@ -1 +1 @@ -MD5 (gifsicle-1.20.tar.gz) = ac80d69dc9bceb754075f80d753c53c3 +MD5 (gifsicle-1.23.tar.gz) = 9196038c5f42e7594d62d52cf67c7724 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 12:10:13 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 12:10:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4308C37B402 for ; Mon, 18 Dec 2000 12:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIKA2f30748; Mon, 18 Dec 2000 12:10:02 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 12:10:02 -0800 (PST) Resent-Message-Id: <200012182010.eBIKA2f30748@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 06CA137B400 for ; Mon, 18 Dec 2000 12:00:48 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIK0lF27567; Mon, 18 Dec 2000 12:00:47 -0800 (PST) (envelope-from nobody) Message-Id: <200012182000.eBIK0lF27567@freefall.freebsd.org> Date: Mon, 18 Dec 2000 12:00:47 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23623: Update port: graphics/ImageMagick to 5.2.6 (fix ports/23273) Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23623 >Category: ports >Synopsis: Update port: graphics/ImageMagick to 5.2.6 (fix ports/23273) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 12:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 5.2.6 This PR supersedes ports/23273. No response from maintainer. >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/ImageMagick/Makefile graphics/ImageMagick/Makefile --- /usr/ports/graphics/ImageMagick/Makefile Tue Oct 3 22:48:57 2000 +++ graphics/ImageMagick/Makefile Mon Dec 11 23:28:40 2000 @@ -6,16 +6,15 @@ # PORTNAME= ImageMagick -PORTVERSION= 5.2.3 +PORTVERSION= 5.2.6 CATEGORIES= graphics perl5 -MASTER_SITES= ${MASTER_SITE_LOCAL} \ - ftp://ftp.wizards.dupont.com/pub/ImageMagick/ \ +MASTER_SITES= ftp://ftp.simplesystems.org/pub/ImageMagick/ \ + ftp://ftp.cdrom.com/pub/ImageMagick/ \ ftp://ftp.u-aizu.ac.jp/pub/graphics/image/ImageMagick/ \ ftp://ftp.fifi.org/pub/ImageMagick/ \ ftp://gd.tuwien.ac.at/pub/graphics/ImageMagick/ \ ftp://ftp.ms.mff.cuni.cz/MIRRORS/ftp.wizards.dupont.com/pub/ImageMagick/ \ ftp://ftp.oce.nl/pub/Internet/audio+video/ImageMagick/ -MASTER_SITE_SUBDIR= jseger MAINTAINER= jseger@FreeBSD.org @@ -24,7 +23,8 @@ jbig.1:${PORTSDIR}/graphics/jbigkit \ jpeg.9:${PORTSDIR}/graphics/jpeg \ png.4:${PORTSDIR}/graphics/png \ - tiff.4:${PORTSDIR}/graphics/tiff + tiff.4:${PORTSDIR}/graphics/tiff \ + freetype.6:${PORTSDIR}/print/freetype2 BUILD_DEPENDS= gs:${PORTSDIR}/print/ghostscript55 \ mpeg2decode:${PORTSDIR}/graphics/mpeg2codec \ picttoppm:${PORTSDIR}/graphics/netpbm \ @@ -36,14 +36,18 @@ USE_PERL5= yes USE_XLIB= yes -USE_FREETYPE= yes USE_LIBTOOL= yes USE_AUTOCONF= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --enable-shared --enable-16bit-pixel --without-modules \ +CONFIGURE_ARGS= --enable-shared --without-modules \ + --with-threads --without-magick-plus-plus \ --with-perl=${PERL5} --without-xml INSTALLS_SHLIB= yes + +.if defined(WITH_16BIT_PIXEL) +CONFIGURE_ARGS+= --enable-16bit-pixel +.endif .if defined(HAVE_UNISYS_LICENSE) CONFIGURE_ARGS+= --enable-lzw diff -urN /usr/ports/graphics/ImageMagick/distinfo graphics/ImageMagick/distinfo --- /usr/ports/graphics/ImageMagick/distinfo Thu Aug 24 06:20:20 2000 +++ graphics/ImageMagick/distinfo Mon Dec 11 20:28:27 2000 @@ -1 +1 @@ -MD5 (ImageMagick-5.2.3.tar.gz) = 98d1a57c155aa017ed67505b6ca36a86 +MD5 (ImageMagick-5.2.6.tar.gz) = 77421faaa1b99c4d832c74fa8492b7c6 diff -urN /usr/ports/graphics/ImageMagick/files/patch-al graphics/ImageMagick/files/patch-al --- /usr/ports/graphics/ImageMagick/files/patch-al Thu Jan 1 09:00:00 1970 +++ graphics/ImageMagick/files/patch-al Tue Dec 5 02:43:22 2000 @@ -0,0 +1,16 @@ +--- configure.in.orig Fri Dec 1 02:14:22 2000 ++++ configure.in Tue Dec 5 02:43:13 2000 +@@ -471,10 +471,10 @@ + LIB_THREAD='' + if test "$with_threads" != 'no' + then +- AC_CHECK_LIB(pthread,pthread_attr_init, ++ AC_CHECK_LIB(c_r,pthread_attr_init, + [AC_DEFINE(HasPTHREADS,,Define if you have Posix thread methods.) +- LIB_THREAD="-lpthread" +- DEF_THREAD="-D_REENTRANT"],,) ++ LIB_THREAD="-pthread" ++ DEF_THREAD="-D_THREAD_SAFE"],,) + LIBS="$LIB_THREAD $LIBS" + CPPFLAGS="$DEF_THREAD $CPPFLAGS" + fi diff -urN /usr/ports/graphics/ImageMagick/pkg-plist graphics/ImageMagick/pkg-plist --- /usr/ports/graphics/ImageMagick/pkg-plist Wed Jul 19 22:08:38 2000 +++ graphics/ImageMagick/pkg-plist Mon Dec 11 23:29:13 2000 @@ -1,10 +1,12 @@ bin/Magick-config bin/animate +bin/cgimagick bin/combine bin/convert bin/display bin/identify bin/import +bin/iptcutil bin/mogrify bin/montage include/magick/PreRvIcccm.h @@ -17,6 +19,7 @@ include/magick/compress.h include/magick/config.h include/magick/delegates.h +include/magick/draw.h include/magick/error.h include/magick/gems.h include/magick/image.h >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 12:10:24 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 12:10:12 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A4EA37B404 for ; Mon, 18 Dec 2000 12:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIKA2c30766; Mon, 18 Dec 2000 12:10:02 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 12:10:02 -0800 (PST) Resent-Message-Id: <200012182010.eBIKA2c30766@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 49FD937B400 for ; Mon, 18 Dec 2000 12:02:30 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIK2Uj27774; Mon, 18 Dec 2000 12:02:30 -0800 (PST) (envelope-from nobody) Message-Id: <200012182002.eBIK2Uj27774@freefall.freebsd.org> Date: Mon, 18 Dec 2000 12:02:30 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23625: Update port: graphics/libwmf to 0.1.21 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23625 >Category: ports >Synopsis: Update port: graphics/libwmf to 0.1.21 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 12:10:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 0.1.21 >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/libwmf/Makefile graphics/libwmf/Makefile --- /usr/ports/graphics/libwmf/Makefile Mon Nov 13 20:25:36 2000 +++ graphics/libwmf/Makefile Mon Dec 18 23:15:48 2000 @@ -6,7 +6,7 @@ # PORTNAME= libwmf -PORTVERSION= 0.1.20 +PORTVERSION= 0.1.21 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= wvware @@ -20,14 +20,13 @@ USE_XLIB= yes USE_XPM= yes USE_FREETYPE= yes -INSTALLS_SHLIB= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include/freetype \ - -I${LOCALBASE}/include" \ +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" +INSTALLS_SHLIB= yes pre-configure: - (cd ${WRKSRC}; ${LN} -s xgd-1.7.3 xgd) - (cd ${WRKSRC}/libdib; ${LN} -s ../bytelevel.c) + (cd ${WRKSRC}; ${LN} -sf xgd-1.7.3 xgd) + (cd ${WRKSRC}/libdib; ${LN} -sf ../bytelevel.c) .include diff -urN /usr/ports/graphics/libwmf/distinfo graphics/libwmf/distinfo --- /usr/ports/graphics/libwmf/distinfo Mon Nov 13 20:25:36 2000 +++ graphics/libwmf/distinfo Mon Dec 18 23:15:37 2000 @@ -1 +1 @@ -MD5 (libwmf-0.1.20.tar.gz) = 5f1b9cce9cce6ce60e061722a73eea79 +MD5 (libwmf-0.1.21.tar.gz) = d9db1ec2a1264245e7808d42bc686b97 diff -urN /usr/ports/graphics/libwmf/files/patch-aa graphics/libwmf/files/patch-aa --- /usr/ports/graphics/libwmf/files/patch-aa Mon Nov 13 20:25:44 2000 +++ graphics/libwmf/files/patch-aa Mon Dec 18 22:33:52 2000 @@ -1,5 +1,5 @@ ---- Makefile.in.orig Wed Oct 11 04:16:15 2000 -+++ Makefile.in Sat Nov 4 19:52:07 2000 +--- Makefile.in.orig Tue Nov 14 19:32:08 2000 ++++ Makefile.in Mon Dec 18 22:28:07 2000 @@ -19,6 +19,7 @@ SHELL=/bin/sh @@ -8,14 +8,7 @@ INSTALL_DATA = @INSTALL_DATA@ INCLUDEDIR = @includedir@ -@@ -30,13 +31,13 @@ - libdir = @libdir@ - mandir = @mandir@ - --CFLAGS = @CFLAGS@ @DEFS@ -I. @XPM_CFLAGS@ -I./libxfig -I./libdib -I./xgd-1.7.3 @TTF_CFLAGS@ -+CFLAGS = @CFLAGS@ @DEFS@ -I. @XPM_CFLAGS@ -I./libxfig -I./libdib -I./xgd-1.7.3 @TTF_CFLAGS@ @CPPFLAGS@ - - MKINSTALLDIRS = $(srcdir)/mkinstalldirs +@@ -36,7 +37,7 @@ SHELL = /bin/sh diff -urN /usr/ports/graphics/libwmf/files/patch-ab graphics/libwmf/files/patch-ab --- /usr/ports/graphics/libwmf/files/patch-ab Mon Nov 13 20:25:44 2000 +++ graphics/libwmf/files/patch-ab Mon Dec 18 22:33:52 2000 @@ -1,19 +1,11 @@ ---- xgd-1.7.3/Makefile.in.orig Wed Oct 11 04:16:16 2000 -+++ xgd-1.7.3/Makefile.in Sat Nov 4 20:01:31 2000 -@@ -29,14 +29,14 @@ - - #If you don't have FreeType and/or Xpm installed, including the - #header files, uncomment this (default). --CFLAGS=@CFLAGS@ @DEFS@ -I../ @PNG_CFLAGS@ @ZLIB_CFLAGS@ @TTF_CFLAGS@ @XPM_CFLAGS@ -+CFLAGS=@CFLAGS@ @DEFS@ -I../ @PNG_CFLAGS@ @ZLIB_CFLAGS@ @TTF_CFLAGS@ @XPM_CFLAGS@ @CPPFLAGS@ - #If you do have FreeType and/or Xpm fully installed, uncomment a - #variation of this and comment out the line above. See also LIBS below. - #CFLAGS=-O -DHAVE_XPM -DHAVE_LIBTTF +--- xgd-1.7.3/Makefile.in.orig Tue Nov 14 19:32:11 2000 ++++ xgd-1.7.3/Makefile.in Mon Dec 18 22:29:49 2000 +@@ -36,7 +36,7 @@ #If you don't have FreeType and/or Xpm fully installed, uncomment this #(default). -LIBS= -lxgd @PNG_LIBS@ @ZLIB_LIBS@ @TTF_LIBS@ @XPM_LIBS@ @X_LIBS@ @X11@ @X_EXTRA_LIBS@ -lm -+LIBS= -lxgd @PNG_LIBS@ @ZLIB_LIBS@ @TTF_LIBS@ @XPM_LIBS@ @X_LIBS@ @X11@ @X_EXTRA_LIBS@ @LIBS@ -lm ++LIBS=@LIBS@ -lxgd @PNG_LIBS@ @ZLIB_LIBS@ @TTF_LIBS@ @XPM_LIBS@ @X_LIBS@ @X11@ @X_EXTRA_LIBS@ -lm #If you do have FreeType and/or Xpm fully installed, uncomment a #variation of this and comment out the line above. Note that diff -urN /usr/ports/graphics/libwmf/files/patch-ad graphics/libwmf/files/patch-ad --- /usr/ports/graphics/libwmf/files/patch-ad Mon Nov 13 20:25:45 2000 +++ graphics/libwmf/files/patch-ad Mon Dec 18 23:25:37 2000 @@ -1,11 +1,11 @@ ---- libdib/Makefile.in.orig Fri Sep 22 04:14:36 2000 -+++ libdib/Makefile.in Sat Nov 4 20:27:35 2000 +--- libdib/Makefile.in.orig Tue Nov 14 19:32:10 2000 ++++ libdib/Makefile.in Mon Dec 18 22:33:23 2000 @@ -22,30 +22,34 @@ libdir = @libdir@ mandir = @mandir@ --CFLAGS = @CFLAGS@ @DEFS@ -I. -+CFLAGS = @CFLAGS@ @DEFS@ -I. -I.. +-CFLAGS = @CPPFLAGS@ @CFLAGS@ @DEFS@ -I. ++CFLAGS = @CPPFLAGS@ @CFLAGS@ @DEFS@ -I. -I.. MKINSTALLDIRS = $(srcdir)/mkinstalldirs >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 12:10:24 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 12:10:13 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B5B6837B69B for ; Mon, 18 Dec 2000 12:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIKA2530775; Mon, 18 Dec 2000 12:10:02 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 12:10:02 -0800 (PST) Resent-Message-Id: <200012182010.eBIKA2530775@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9655437B404 for ; Mon, 18 Dec 2000 12:03:14 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIK3EV27863; Mon, 18 Dec 2000 12:03:14 -0800 (PST) (envelope-from nobody) Message-Id: <200012182003.eBIK3EV27863@freefall.freebsd.org> Date: Mon, 18 Dec 2000 12:03:14 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23626: Update port: misc/diction to 0.9 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23626 >Category: ports >Synopsis: Update port: misc/diction to 0.9 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 12:10:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 0.9 New file: files/patch-ab >How-To-Repeat: >Fix: diff -urN /usr/ports/misc/diction/Makefile misc/diction/Makefile --- /usr/ports/misc/diction/Makefile Sat Apr 15 00:28:20 2000 +++ misc/diction/Makefile Tue Dec 19 01:21:46 2000 @@ -1,22 +1,19 @@ -# New ports collection makefile for: diction +# New ports collection makefile for: diction # Date created: 2 August 1998 # Whom: J Han # # $FreeBSD: ports/misc/diction/Makefile,v 1.6 2000/04/14 08:45:36 asami Exp $ # -PORTNAME= diction -PORTVERSION= 0.8 -CATEGORIES= misc -MASTER_SITES= ftp://cantor.informatik.rwth-aachen.de/pub/unix/ +PORTNAME= diction +PORTVERSION= 0.9 +CATEGORIES= misc +MASTER_SITES= http://www.moria.de/~michael/diction/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= ports@FreeBSD.org -GNU_CONFIGURE= yes -USE_GMAKE= yes +USE_AUTOCONF= yes -MAKE_ENV= MKDIR="$(MKDIR)" - -MAN1= diction.1 style.1 +MAN1= diction.1 style.1 .include diff -urN /usr/ports/misc/diction/distinfo misc/diction/distinfo --- /usr/ports/misc/diction/distinfo Sat Mar 20 01:08:13 1999 +++ misc/diction/distinfo Tue Dec 19 00:17:43 2000 @@ -1 +1 @@ -MD5 (diction-0.8.tar.gz) = 0765745433bfa6bdc303db81acded9a1 +MD5 (diction-0.9.tar.gz) = 948e9c4b9001e8f06e6154231fbd06d7 diff -urN /usr/ports/misc/diction/files/patch-aa misc/diction/files/patch-aa --- /usr/ports/misc/diction/files/patch-aa Wed Aug 5 02:04:18 1998 +++ misc/diction/files/patch-aa Tue Dec 19 00:32:40 2000 @@ -1,20 +1,39 @@ ---- Makefile.in.orig Tue Aug 4 12:55:19 1998 -+++ Makefile.in Tue Aug 4 12:55:52 1998 -@@ -29,14 +29,14 @@ - sed -e s+/usr/share+$(SHAREDIR)+ diction.1.in >$@ +--- Makefile.in.orig Tue May 16 03:10:04 2000 ++++ Makefile.in Tue Dec 19 00:32:28 2000 +@@ -3,6 +3,10 @@ + prefix= @prefix@ + exec_prefix= @exec_prefix@ + ++INSTALL= @INSTALL@ ++INSTALL_PROGRAM= @INSTALL_PROGRAM@ ++INSTALL_DATA= @INSTALL_DATA@ ++ + CC= @CC@ + CFLAGS= @CFLAGS@ + CPPFLAGS= @CPPFLAGS@ -DSHAREDIR=\"@datadir@\" +@@ -20,16 +24,16 @@ + getopt.o getopt1.o $(LIBM) $(LIBS) install: all -- $(INSTALL) -m 755 -d $(BINDIR) -+ $(MKDIR) $(BINDIR) - $(INSTALL_PROGRAM) -s diction $(BINDIR)/diction - $(INSTALL_PROGRAM) -s style $(BINDIR)/style -- $(INSTALL) -m 755 -d $(SHAREDIR)/diction -+ $(MKDIR) $(SHAREDIR)/diction - $(INSTALL_DATA) de $(SHAREDIR)/diction/de - $(INSTALL_DATA) en $(SHAREDIR)/diction/en - (cd $(SHAREDIR)/diction; rm -f C; ln en C) -- $(INSTALL) -m 755 -d $(MANDIR)/man1 -+ $(MKDIR) $(MANDIR)/man1 - $(INSTALL_DATA) diction.1 $(MANDIR)/man1/diction.1 - $(INSTALL_DATA) style.1 $(MANDIR)/man1/style.1 +- @INSTALL@ -m 755 -d @bindir@ +- @INSTALL@ diction @bindir@/diction +- @INSTALL@ style @bindir@/style +- @INSTALL@ -m 755 -d @datadir@/diction +- @INSTALL@ -m 644 de @datadir@/diction/de +- @INSTALL@ -m 644 en @datadir@/diction/en ++ -mkdir -p @bindir@ ++ $(INSTALL_PROGRAM) diction @bindir@/diction ++ $(INSTALL_PROGRAM) style @bindir@/style ++ -mkdir -p @datadir@/diction ++ $(INSTALL_DATA) de @datadir@/diction/de ++ $(INSTALL_DATA) en @datadir@/diction/en + (cd @datadir@/diction; rm -f C; ln en C) +- @INSTALL@ -m 755 -d @mandir@/man1 +- @INSTALL@ -m 644 diction.1 @mandir@/man1/diction.1 +- @INSTALL@ -m 644 style.1 @mandir@/man1/style.1 ++ -mkdir -p @mandir@/man1 ++ $(INSTALL_DATA) diction.1 @mandir@/man1/diction.1 ++ $(INSTALL_DATA) style.1 @mandir@/man1/style.1 + install.msg: + gencat -o @datadir@/locale/en_US/LC_MESSAGES/diction.cat diction-en.msg sent-en.msg diff -urN /usr/ports/misc/diction/files/patch-ab misc/diction/files/patch-ab --- /usr/ports/misc/diction/files/patch-ab Thu Jan 1 09:00:00 1970 +++ misc/diction/files/patch-ab Tue Dec 19 00:26:44 2000 @@ -0,0 +1,14 @@ +--- configure.in.orig Tue May 16 03:08:09 2000 ++++ configure.in Tue Dec 19 00:26:35 2000 +@@ -19,11 +19,6 @@ + fi + + AC_PROG_CC +-if test "$GCC" = yes +-then +- CFLAGS="${CFLAGS} ${PIPE}-Wmissing-prototypes -Wstrict-prototypes -Wcast-qual -Wpointer-arith -Wcast-align -Wwrite-strings -Wmissing-declarations -Wnested-externs -pedantic -fno-common" +- LDFLAGS='-g' +-fi + + AC_PROG_INSTALL + AC_CHECK_FUNCS(strerror) diff -urN /usr/ports/misc/diction/pkg-descr misc/diction/pkg-descr --- /usr/ports/misc/diction/pkg-descr Mon May 3 14:37:12 1999 +++ misc/diction/pkg-descr Tue Dec 19 00:14:41 2000 @@ -1,17 +1,17 @@ -This is the snapshot release 0.6 beta of GNU diction and style, free -implementations of old standard unix commands. For some reason, -many modern systems lack them. Diction prints wordy and commonly -misused phrases. Style analyses surface characteristics of a document, -e.g. sentence length and various readability measures. +This is the GNU diction and style, free implementations of old standard +unix commands. For some reason, many modern systems lack them. Diction +prints wordy and commonly misused phrases. Style analyses surface +characteristics of a document, e.g. sentence length and various +readability measures. Both commands support English and German documents. -- -WWW: http://www.fsf.org/software/diction/diction.html +WWW: http://www.gnu.org/software/diction/diction.html GNU style and diction are written by Michael Haardt -http://cantor.informatik.rwth-aachen.de/~michael/ +http://www.moria.de/~michael/ -- J Han >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 12:10:34 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 12:10:25 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E068437B69C for ; Mon, 18 Dec 2000 12:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIKA2w30784; Mon, 18 Dec 2000 12:10:02 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 12:10:02 -0800 (PST) Resent-Message-Id: <200012182010.eBIKA2w30784@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 521A237B400 for ; Mon, 18 Dec 2000 12:04:05 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIK45W28149; Mon, 18 Dec 2000 12:04:05 -0800 (PST) (envelope-from nobody) Message-Id: <200012182004.eBIK45W28149@freefall.freebsd.org> Date: Mon, 18 Dec 2000 12:04:05 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23627: Update port: misc/yaunc to 0.05 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23627 >Category: ports >Synopsis: Update port: misc/yaunc to 0.05 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 12:10:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 0.05 New file: files/patch-ac files/patch-ad files/patch-ae Remove file: files/patch-ab >How-To-Repeat: >Fix: diff -urN /usr/ports/misc/yaunc/Makefile misc/yaunc/Makefile --- /usr/ports/misc/yaunc/Makefile Mon Dec 11 20:36:02 2000 +++ misc/yaunc/Makefile Tue Dec 19 01:22:29 2000 @@ -1,28 +1,29 @@ -# New ports collection makefile for: yaunc -# Date created: 5 March 2000 -# Whom: nsayer@freebsd.org +# New ports collection makefile for: yaunc +# Date created: 5 March 2000 +# Whom: nsayer@freebsd.org # # $FreeBSD: ports/misc/yaunc/Makefile,v 1.3 2000/12/09 00:04:27 nsayer Exp $ # PORTNAME= yaunc -PORTVERSION= 0.02 +PORTVERSION= 0.05 CATEGORIES= misc MASTER_SITES= http://www.redterror.net/code/yaunc/ -MAINTAINER= ports@freebsd.org - -WRKSRC= ${WRKDIR}/yaunc +MAINTAINER= ports@FreeBSD.org +ALL_TARGET= bsd MAN1= yaunc.1 +post-patch: + @${PERL} -pi -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/yaunc.1 + do-install: - ( cd ${WRKSRC} ;\ - ${INSTALL_PROGRAM} yaunc ${PREFIX}/bin ;\ - ${INSTALL_DATA} -m 600 yaunc.conf ${PREFIX}/etc/yaunc.conf.sample ;\ - ${INSTALL_MAN} yaunc.man ${PREFIX}/man/man1/yaunc.1 ;\ - ${SED} s+%%PREFIX%%+${PREFIX}+g < ${FILESDIR}/startup > \ - ${PREFIX}/etc/rc.d/yaunc.sh ;\ - chmod 755 ${PREFIX}/etc/rc.d/yaunc.sh ) + ${INSTALL_PROGRAM} ${WRKSRC}/yaunc ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/yaunc.1 ${MANPREFIX}/man/man1 + ${INSTALL_DATA} -m 600 ${WRKSRC}/yaunc.conf ${PREFIX}/etc/yaunc.conf.sample + ${SED} -e "s:%%PREFIX%%:${PREFIX}:g" ${FILESDIR}/startup > \ + ${PREFIX}/etc/rc.d/yaunc.sh + ${CHMOD} 755 ${PREFIX}/etc/rc.d/yaunc.sh .include diff -urN /usr/ports/misc/yaunc/distinfo misc/yaunc/distinfo --- /usr/ports/misc/yaunc/distinfo Fri Mar 10 03:11:12 2000 +++ misc/yaunc/distinfo Sat Dec 16 16:28:01 2000 @@ -1 +1 @@ -MD5 (yaunc-0.02.tar.gz) = a5c9bf1e1e72064c80dc5c3d66292863 +MD5 (yaunc-0.05.tar.gz) = 9f84d4f0bf065e9b4a49d3b871cb951d diff -urN /usr/ports/misc/yaunc/files/patch-aa misc/yaunc/files/patch-aa --- /usr/ports/misc/yaunc/files/patch-aa Fri Mar 10 03:05:48 2000 +++ misc/yaunc/files/patch-aa Sat Dec 16 16:45:13 2000 @@ -1,50 +1,24 @@ ---- Makefile.orig Sun Mar 5 11:18:06 2000 -+++ Makefile Sun Mar 5 11:29:57 2000 -@@ -1,6 +1,9 @@ +--- Makefile.orig Sun Aug 13 16:12:37 2000 ++++ Makefile Sat Dec 16 16:45:06 2000 +@@ -1,15 +1,15 @@ # Compiler, flags, etc... -CC = gcc --CFLAGS = -ansi -pedantic -Wall -O3 #-DDEBUG2 -DDEBUG1 -+#CC = gcc -+#CFLAGS = -ansi -pedantic -Wall -O3 #-DDEBUG2 -DDEBUG1 -+CFLAGS+= -DETCDIR=\"$(PREFIX)/etc/\" -+ -+all: bsd +-CFLAGS = -Wall -O3 #-g -DDEBUG2 -DDEBUG1 ++CC ?= gcc ++CFLAGS += -DDEFAULT_CONF_PATH=\"$(CONFPATH)/$(CONFFILE)\" + + # program variables + LINKNAME = yaunc +-FILENAME = yaunc-`cat VERSION` +-FILEPATH = /usr/local/bin ++FILENAME = yaunc ++FILEPATH = ${PREFIX}/bin + MANPAGE = yaunc.1 +-MANPATH = /usr/local/man/man1 ++MANPATH = ${PREFIX}/man/man1 + CONFFILE = yaunc.conf +-CONFPATH = /etc ++CONFPATH = ${PREFIX}/etc # platform dependant stuff has the appropriate suffix :) OBJ1 = read_conf.o usage.o unp_error.o encode.o unp_sock_wrappers.o \ -@@ -24,23 +27,23 @@ - linux_funcs.o get_ut_proc.o get_ut_bsd.o : yaunc.h my_hdrs.h - - # housekeeping --.PHONY : clean distclean install uninstall package backup --clean : -- rm -f *.o core --distclean : clean -- rm -f yaunc -+#.PHONY : clean distclean install uninstall package backup -+#clean : -+# rm -f *.o core -+#distclean : clean -+# rm -f yaunc - - install : -- cp yaunc /usr/local/bin ; \ -- cp yaunc.1 /usr/local/man/man1 ; \ -- cp yaunc.conf /etc/ -+ ${INSTALL_PROGRAM} yaunc $(PREFIX)/bin -+ ${INSTALL_MAN} yaunc.1 $(PREFIX)/man/man1 -+ ${INSTALL_DATA} yaunc.conf $(PREFIX)/etc - - uninstall : - rm /usr/local/bin/yaunc ; \ - rm /usr/local/man/man1/yaunc.1 ; \ - rm /etc/yaunc.conf - --package : distclean -- cd .. ; tar -cf - yaunc | gzip -9 > yaunc-`cat yaunc/VERSION`.tar.gz --backup : distclean -- cp -a . ../src_backup -+#package : distclean -+# cd .. ; tar -cf - yaunc | gzip -9 > yaunc-`cat yaunc/VERSION`.tar.gz -+#backup : distclean -+# cp -a . ../src_backup diff -urN /usr/ports/misc/yaunc/files/patch-ab misc/yaunc/files/patch-ab --- /usr/ports/misc/yaunc/files/patch-ab Fri Mar 10 03:05:48 2000 +++ misc/yaunc/files/patch-ab Thu Jan 1 09:00:00 1970 @@ -1,11 +0,0 @@ ---- main.c.orig Sun Mar 5 11:26:38 2000 -+++ main.c Sun Mar 5 11:26:57 2000 -@@ -13,7 +13,7 @@ - struct utsname sys_info; - struct info info; - time_t uptime; -- char * path = "/etc/yaunc.conf"; -+ char * path = ETCDIR"yaunc.conf"; - char * data_ptr; - - /* read data from the conf file */ diff -urN /usr/ports/misc/yaunc/files/patch-ac misc/yaunc/files/patch-ac --- /usr/ports/misc/yaunc/files/patch-ac Thu Jan 1 09:00:00 1970 +++ misc/yaunc/files/patch-ac Sat Dec 16 16:58:51 2000 @@ -0,0 +1,14 @@ +--- usage.c.orig Wed Jul 26 09:38:02 2000 ++++ usage.c Sat Dec 16 16:51:31 2000 +@@ -10,9 +10,9 @@ + fprintf(stderr, "\n"); + fprintf(stderr, "Options:\n"); + fprintf(stderr, "\t-f - use the specified config file instead of \n"); +- fprintf(stderr, "\t of /etc/yaunc.conf\n"); ++ fprintf(stderr, "\t " DEFAULT_CONF_PATH "\n"); + fprintf(stderr, "\t-d <0/1> - turn daemon mode off/on\n"); +- fprintf(stderr, "\t-l <0/1> - specify logging off/on"); ++ fprintf(stderr, "\t-l <0/1> - specify logging off/on\n"); + fprintf(stderr, "\t-h - display this help\n"); + fprintf(stderr, "\n"); + exit(0); diff -urN /usr/ports/misc/yaunc/files/patch-ad misc/yaunc/files/patch-ad --- /usr/ports/misc/yaunc/files/patch-ad Thu Jan 1 09:00:00 1970 +++ misc/yaunc/files/patch-ad Sat Dec 16 16:40:12 2000 @@ -0,0 +1,11 @@ +--- yaunc.1.origt Fri Mar 17 17:38:45 2000 ++++ yaunc.1 Sat Dec 16 16:40:02 2000 +@@ -25,7 +25,7 @@ + \fIYauc\fP accepts the following options: + .TP 8 + .B \-f conf_file +-Specify an alternate configuration file. Default is /etc/yaunc.conf. ++Specify an alternate configuration file. Default is %%PREFIX%%/etc/yaunc.conf. + .B \-h + Display usage information. + . diff -urN /usr/ports/misc/yaunc/files/patch-ae misc/yaunc/files/patch-ae --- /usr/ports/misc/yaunc/files/patch-ae Thu Jan 1 09:00:00 1970 +++ misc/yaunc/files/patch-ae Sat Dec 16 16:35:41 2000 @@ -0,0 +1,12 @@ +--- yaunc.h.orig Wed Jul 26 09:44:51 2000 ++++ yaunc.h Sat Dec 16 16:35:31 2000 +@@ -33,7 +33,9 @@ + #define LOG_PRIORITY LOG_INFO + + #define NAME "yaunc" ++#ifndef DEFAULT_CONF_PATH + #define DEFAULT_CONF_PATH "/etc/yaunc.conf" ++#endif + #define OPTION_STRING "hd:l:f:" + + /* program settings */ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 12:10:40 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 12:10:35 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ADE7337B698 for ; Mon, 18 Dec 2000 12:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIKA3e30802; Mon, 18 Dec 2000 12:10:03 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 12:10:03 -0800 (PST) Resent-Message-Id: <200012182010.eBIKA3e30802@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C9F7B37B400 for ; Mon, 18 Dec 2000 12:05:34 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIK5Yi30299; Mon, 18 Dec 2000 12:05:34 -0800 (PST) (envelope-from nobody) Message-Id: <200012182005.eBIK5Yi30299@freefall.freebsd.org> Date: Mon, 18 Dec 2000 12:05:34 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23629: Update port: print/rtf2latex Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23629 >Category: ports >Synopsis: Update port: print/rtf2latex >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 12:10:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Use MASTER_SITE_TEX_CTAN to MASTER_SITES >How-To-Repeat: >Fix: diff -urN /usr/ports/print/rtf2latex/Makefile print/rtf2latex/Makefile --- /usr/ports/print/rtf2latex/Makefile Mon Apr 10 21:00:36 2000 +++ print/rtf2latex/Makefile Tue Dec 19 01:23:42 2000 @@ -1,6 +1,6 @@ # New ports collection makefile for: rtf2LaTeX -# Date created: 25 Jan 1995 -# Whom: Thomas Gellekum +# Date created: 25 Jan 1995 +# Whom: Thomas Gellekum # # $FreeBSD: ports/print/rtf2latex/Makefile,v 1.11 2000/04/09 17:50:35 cpiazza Exp $ # @@ -8,12 +8,14 @@ PORTNAME= rtf2latex PORTVERSION= 1.5 CATEGORIES= print -MASTER_SITES= ftp://ftp.dante.de/pub/tex/support/rtf2latex/ -DISTNAME= rtf2LaTeX.1.5 +MASTER_SITES= ${MASTER_SITE_TEX_CTAN} +MASTER_SITE_SUBDIR= support/rtf2latex +DISTNAME= rtf2LaTeX.${PORTVERSION} MAINTAINER= ports@FreeBSD.org WRKSRC= ${WRKDIR}/rtf2LaTeX + MAN1= rtf2LaTeX.1 post-extract: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 12:10:41 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 12:10:31 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0620237B699 for ; Mon, 18 Dec 2000 12:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIKA2M30793; Mon, 18 Dec 2000 12:10:02 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 12:10:02 -0800 (PST) Resent-Message-Id: <200012182010.eBIKA2M30793@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D21EF37B400 for ; Mon, 18 Dec 2000 12:04:53 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIK4rt28270; Mon, 18 Dec 2000 12:04:53 -0800 (PST) (envelope-from nobody) Message-Id: <200012182004.eBIK4rt28270@freefall.freebsd.org> Date: Mon, 18 Dec 2000 12:04:53 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23628: Update port: net/tn5250 to 0.16.0 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23628 >Category: ports >Synopsis: Update port: net/tn5250 to 0.16.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 12:10:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 0.16.0 New file: files/patch-ac >How-To-Repeat: >Fix: diff -urN /usr/ports/net/tn5250/Makefile net/tn5250/Makefile --- /usr/ports/net/tn5250/Makefile Sat Jun 17 08:53:50 2000 +++ net/tn5250/Makefile Sat Dec 16 15:22:21 2000 @@ -6,15 +6,33 @@ # PORTNAME= tn5250 -PORTVERSION= 0.15.8 +PORTVERSION= 0.16.0 CATEGORIES= net -MASTER_SITES= ftp://cvs.cleveland.lug.net/pub/tn5250/ +MASTER_SITES= http://cvs.cleveland.lug.net/downloads/tn5250/ MAINTAINER= ports@FreeBSD.org +USE_AUTOMAKE= yes +AUTOMAKE_ARGS= --include-deps USE_LIBTOOL= yes INSTALLS_SHLIB= yes MAN1= scs2ascii.1 scs2pdf.1 tn5250.1 lp5250d.1 + +.if defined(WITH_SLANG) +LIB_DEPENDS= slang.1:${PORTSDIR}/devel/libslang +PKGNAMESUFFIX= -slang +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS+= --with-slang +.endif + +.if !defined(WITH_SLANG) +pre-everything: + @${ECHO_MSG} + @${ECHO_MSG} "If you want to compile with S/Lang support," + @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_SLANG=yes\"" + @${ECHO_MSG} +.endif .include diff -urN /usr/ports/net/tn5250/distinfo net/tn5250/distinfo --- /usr/ports/net/tn5250/distinfo Tue Apr 18 09:09:56 2000 +++ net/tn5250/distinfo Sat Dec 16 10:18:13 2000 @@ -1 +1 @@ -MD5 (tn5250-0.15.8.tar.gz) = f76d29013ffdb36edff1679589ece0f4 +MD5 (tn5250-0.16.0.tar.gz) = 5046ea32027b76263801287e644d57b8 diff -urN /usr/ports/net/tn5250/files/patch-ac net/tn5250/files/patch-ac --- /usr/ports/net/tn5250/files/patch-ac Thu Jan 1 09:00:00 1970 +++ net/tn5250/files/patch-ac Sat Dec 16 14:59:07 2000 @@ -0,0 +1,30 @@ +--- configure.in.orig Wed Nov 1 04:09:17 2000 ++++ configure.in Sat Dec 16 14:58:58 2000 +@@ -56,6 +56,7 @@ + if test "$with_slang" != "no" + then + USE_SLANG=1 ++ AC_DEFINE_UNQUOTED(USE_CURSES,1) + AC_DEFINE_UNQUOTED(USE_SLANG,1) + else + USE_CURSES=1 +@@ -65,7 +66,7 @@ + USE_CURSES=1 + AC_DEFINE_UNQUOTED(USE_CURSES,1) + ]) +-if test "$USE_CURSES" = "1" ++if test "$USE_CURSES" = "1" -o "$USE_SLANG" = "1" + then + AC_CHECK_LIB(ncurses, initscr) + if test "$ac_cv_lib_ncurses_initscr" != "yes" +@@ -103,7 +104,9 @@ + AC_DEFINE_UNQUOTED(attr_t,int) + fi + AC_MSG_RESULT($HAVE_ATTR_T) +-else ++fi ++if test "$USE_SLANG" = "1" ++then + AC_CHECK_LIB(slang, SLang_init_tty) + if test "$ac_cv_lib_slang_SLang_init_tty" != "yes" + then diff -urN /usr/ports/net/tn5250/pkg-plist net/tn5250/pkg-plist --- /usr/ports/net/tn5250/pkg-plist Fri Jun 16 01:43:52 2000 +++ net/tn5250/pkg-plist Sat Dec 16 10:42:01 2000 @@ -1,17 +1,22 @@ bin/lp5250d bin/scs2ascii +bin/tn3270d bin/tn5250 bin/tn5250-config +bin/tn5250d bin/xt5250 -include/tn5250.h include/tn5250/buffer.h +include/tn5250/codes3270.h include/tn5250/codes5250.h +include/tn5250/conf.h include/tn5250/config.h include/tn5250/cursesterm.h include/tn5250/dbuffer.h include/tn5250/debug.h include/tn5250/display.h include/tn5250/field.h +include/tn5250/host3270.h +include/tn5250/host5250.h include/tn5250/printsession.h include/tn5250/record.h include/tn5250/scs.h @@ -19,8 +24,11 @@ include/tn5250/slangterm.h include/tn5250/stream.h include/tn5250/terminal.h +include/tn5250/tn3270d.h +include/tn5250/tn5250d.h include/tn5250/utility.h include/tn5250/wtd.h +include/tn5250.h lib/lib5250.a lib/lib5250.so lib/lib5250.so.0 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 12:10:53 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 12:10:41 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E91B037B69F for ; Mon, 18 Dec 2000 12:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIKA3n30823; Mon, 18 Dec 2000 12:10:03 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 12:10:03 -0800 (PST) Resent-Message-Id: <200012182010.eBIKA3n30823@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A7B737B402 for ; Mon, 18 Dec 2000 12:06:44 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIK6ik30395; Mon, 18 Dec 2000 12:06:44 -0800 (PST) (envelope-from nobody) Message-Id: <200012182006.eBIK6ik30395@freefall.freebsd.org> Date: Mon, 18 Dec 2000 12:06:44 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23630: Update port: www/nscache to 0.4 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23630 >Category: ports >Synopsis: Update port: www/nscache to 0.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 12:10:03 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 0.4 New file: files/patch-ac >How-To-Repeat: >Fix: diff -urN /usr/ports/www/nscache/Makefile www/nscache/Makefile --- /usr/ports/www/nscache/Makefile Thu Oct 5 23:08:39 2000 +++ www/nscache/Makefile Tue Dec 19 04:08:04 2000 @@ -6,21 +6,30 @@ # PORTNAME= nscache -PORTVERSION= 0.2p2 +PORTVERSION= 0.4 CATEGORIES= www -MASTER_SITES= http://www.idata.sk/~ondrej/sw/ -DISTNAME= nscache-0.2pl2 +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ + http://www.idata.sk/~ondrej/sw/ +MASTER_SITE_SUBDIR= ${PORTNAME} EXTRACT_SUFX= .tgz MAINTAINER= kris@FreeBSD.org +USE_X_PREFIX= yes USE_GTK= yes +WANT_GNOME= yes USE_AUTOMAKE= yes -AUTOMAKE= automake -a -i -CONFIGURE_ENV= CPPFALGS="-I${LOCALBASE}/include" \ +AUTOMAKE_ARGS= --include-deps +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --with-gtk-config=${GTK_CONFIG} -pre-configure: - @cd ${WRKSRC}; aclocal -I ${X11BASE}/share/aclocal +.include -.include +.if defined(HAVE_GNOME) +USE_GNOME= yes +.else +CONFIGURE_ARGS+= --disable-gnome +.endif + +.include diff -urN /usr/ports/www/nscache/distinfo www/nscache/distinfo --- /usr/ports/www/nscache/distinfo Sun Mar 5 19:15:03 2000 +++ www/nscache/distinfo Wed Dec 6 04:27:11 2000 @@ -1 +1 @@ -MD5 (nscache-0.2pl2.tgz) = e95b59b90d7e1f567e2263853be26f7b +MD5 (nscache-0.4.tgz) = 08f731c5f9c80f67920e4a1fca474536 diff -urN /usr/ports/www/nscache/files/patch-aa www/nscache/files/patch-aa --- /usr/ports/www/nscache/files/patch-aa Sat Jul 8 04:59:14 2000 +++ www/nscache/files/patch-aa Tue Dec 19 04:01:00 2000 @@ -1,22 +1,32 @@ ---- configure.in.orig Sun Jan 16 02:40:55 2000 -+++ configure.in Sat Jul 1 19:10:54 2000 -@@ -41,17 +41,11 @@ +--- configure.in.orig Tue Dec 19 03:56:05 2000 ++++ configure.in Tue Dec 19 03:59:15 2000 +@@ -50,7 +50,7 @@ AC_CHECK_LIB(c, gettext, CFLAGS="$CFLAGS -DHAVE_GETTEXT -DNLS_DIR=\"\\\"\$(prefix)/share/locale\\\"\"";MSUBDIRS="po", AC_CHECK_LIB(intl, gettext, LIBS="$LIBS -lintl";CFLAGS="$CFLAGS -DHAVE_GETTEXT -DNLS_DIR=\"\\\"\$(prefix)/share/locale\\\"\"";MSUBDIRS="po")) -AC_CHECK_LIB(db1, dbopen, CFLAGS="$CFLAGS -DHAVE_DBOPEN";LIBS="$LIBS -ldb1", AC_CHECK_LIB(db, dbopen, CFLAGS="$CFLAGS -DHAVE_DBOPEN";LIBS="$LIBS -ldb", AC_MSG_ERROR("NScache can\'t work withou clasical Berkeley DB libraries"))) +AC_CHECK_LIB(db1, dbopen, CFLAGS="$CFLAGS -DHAVE_DBOPEN";LIBS="$LIBS -ldb1", AC_CHECK_LIB(c, dbopen, CFLAGS="$CFLAGS -DHAVE_DBOPEN", AC_MSG_ERROR("NScache can\'t work withou clasical Berkeley DB libraries"))) - AC_CHECK_HEADER(db1/db.h, CFLAGS="$CFLAGS -DHAVE_DB1_H", AC_CHECK_HEADER(db.h, CFLAGS="$CFLAGS -DHAVE_DB_H")) + AC_CHECK_HEADER(db1/db.h, CFLAGS="$CFLAGS -DHAVE_DB1_H",AC_CHECK_HEADER(db_185.h, CFLAGS="$CFLAGS -DHAVE_DB185_H", AC_CHECK_HEADER(db.h, CFLAGS="$CFLAGS -DHAVE_DB_H"))) --AC_CHECK_PROG(GTK_CONFIG, gtk-config, "yes", "no") --if eval "test x$GTK_CONFIG = xyes"; then -- CFLAGS="$CFLAGS `gtk-config --cflags`" -- LIBS="$LIBS `gtk-config --libs`" --else -- AC_MSG_ERROR("Unable to find \"gtk-config\" program") --fi -+AM_PATH_GTK(1.2.0, , AC_MSG_ERROR(GTK+ is not installed or badly configured on your system...)) +@@ -69,13 +69,15 @@ + fi - AC_SUBST(CFLAGS) - AC_SUBST(LIBS) + if eval "test x$WITH_GNOME = xyes"; then +- AC_CHECK_PROG(GNOME_CONFIG, gnome-config, "yes", "no") +- if eval "test x$GNOME_CONFIG = xyes"; then +- GNOME_PREFIX=`gnome-config --prefix` ++ AC_PATH_PROG(GNOME_CONFIG, gnome-config, "no") ++ if eval "test x$GNOME_CONFIG = xno"; then ++ GNOME_PREFIX= ++ else ++ GNOME_PREFIX=`$GNOME_CONFIG --prefix` + AC_WARN("Will install Gnome things to $GNOME_PREFIX") + if eval "test x$WITH_GNOME = xyes"; then +- GNOME_LIBS=`gnome-config --libs gnomeui` +- GNOME_CFLAGS=`gnome-config --cflags gnomeui` ++ GNOME_LIBS=`$GNOME_CONFIG --libs gnomeui` ++ GNOME_CFLAGS=`$GNOME_CONFIG --cflags gnomeui` + GNOME_CFLAGS="$GNOME_CFLAGS -DHAVE_GNOME" + fi + fi diff -urN /usr/ports/www/nscache/files/patch-ab www/nscache/files/patch-ab --- /usr/ports/www/nscache/files/patch-ab Sat Jul 8 04:59:14 2000 +++ www/nscache/files/patch-ab Tue Dec 19 04:16:11 2000 @@ -1,19 +1,25 @@ ---- Makefile.am.orig Tue Jan 18 04:49:06 2000 -+++ Makefile.am Sat Jul 1 20:03:06 2000 -@@ -1,5 +1,7 @@ - SUBDIRS = @MSUBDIRS@ +--- Makefile.am.orig Thu Sep 28 04:32:08 2000 ++++ Makefile.am Tue Dec 19 04:16:02 2000 +@@ -6,16 +6,16 @@ -+INCLUDES = $(GTK_CFLAGS) -+ - bin_PROGRAMS = nscache + install-data-local: + if test -n "$(GNOME_PREFIX)"; then \ +- $(mkinstalldirs) $(DESTDIR)$(GNOME_PREFIX)/share/gnome/apps/Internet; \ +- $(INSTALL_DATA) $(srcdir)/nscache.desktop $(DESTDIR)$(GNOME_PREFIX)/share/gnome/apps/Internet; \ +- $(mkinstalldirs) $(DESTDIR)$(GNOME_PREFIX)/share/pixmaps; \ +- $(INSTALL_DATA) $(srcdir)/nscache.xpm $(DESTDIR)$(GNOME_PREFIX)/share/pixmaps; \ ++ $(mkinstalldirs) $(DESTDIR)$(datadir)/apps/Internet; \ ++ $(INSTALL_DATA) $(srcdir)/nscache.desktop $(DESTDIR)$(datadir)/apps/Internet; \ ++ $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps; \ ++ $(INSTALL_DATA) $(srcdir)/nscache.xpm $(DESTDIR)$(datadir)/pixmaps; \ + fi + + uninstall-local: + if test -n "$(GNOME_PREFIX)"; then \ +- rm -f $(DESTDIR)$(GNOME_PREFIX)/share/gnome/apps/Internat/nscache.desktop; \ +- rm -f $(DESTDIR)$(GNOME_PREFIX)/share/pixmaps/nscache.xpm; \ ++ rm -f $(DESTDIR)$(datadir)/apps/Internat/nscache.desktop; \ ++ rm -f $(DESTDIR)$(datadir)/pixmaps/nscache.xpm; \ + fi - nscache_SOURCES = \ -@@ -12,6 +14,8 @@ - indexdb.h \ - nls.h \ - setup.c -+ -+nscache_LDADD = $(GTK_LIBS) - nscache.pot: $(nscache_SOURCES) - xgettext --default-domain=nscache -n -E -o $@ $(nscache_SOURCES) diff -urN /usr/ports/www/nscache/files/patch-ac www/nscache/files/patch-ac --- /usr/ports/www/nscache/files/patch-ac Thu Jan 1 09:00:00 1970 +++ www/nscache/files/patch-ac Wed Dec 6 05:02:46 2000 @@ -0,0 +1,20 @@ +--- src/gui.c.orig Thu Oct 5 04:35:01 2000 ++++ src/gui.c Wed Dec 6 05:02:27 2000 +@@ -1856,6 +1856,8 @@ + + if (cmd_setup(argc, argv)) return 1; + ++ gtk_set_locale(); ++ + gtk_init(&argc , &argv); + + load_rc(); +@@ -1867,8 +1869,6 @@ + #endif + textdomain(PACKAGE); + #endif +- gtk_set_locale(); +- + tl = gtk_window_new(GTK_WINDOW_TOPLEVEL); + gtk_window_set_title(GTK_WINDOW(tl), gettext("NScache")); + gtk_window_set_policy(GTK_WINDOW(tl), TRUE, TRUE, TRUE); diff -urN /usr/ports/www/nscache/pkg-descr www/nscache/pkg-descr --- /usr/ports/www/nscache/pkg-descr Sun Mar 5 19:15:05 2000 +++ www/nscache/pkg-descr Wed Dec 6 04:26:51 2000 @@ -19,4 +19,4 @@ The viewers you can assign to any MIME type. You can also copy selected URL to clipboard. -WWW: http://www.idata.sk/~ondrej/ +WWW: http://www.idata.sk/~ondrej/nscache/ diff -urN /usr/ports/www/nscache/pkg-plist www/nscache/pkg-plist --- /usr/ports/www/nscache/pkg-plist Sat Jul 8 04:59:14 2000 +++ www/nscache/pkg-plist Tue Dec 19 04:14:14 2000 @@ -1,4 +1,9 @@ bin/nscache share/locale/de/LC_MESSAGES/nscache.mo +share/locale/fr/LC_MESSAGES/nscache.mo share/locale/it/LC_MESSAGES/nscache.mo +share/locale/ja/LC_MESSAGES/nscache.mo +share/locale/pt_BR/LC_MESSAGES/nscache.mo share/locale/sk/LC_MESSAGES/nscache.mo +%%GNOME:%%share/gnome/apps/Internet/nscache.desktop +%%GNOME:%%share/gnome/pixmaps/nscache.xpm >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 12:11:35 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 12:11:33 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from kci.kciLink.com (kci.kciLink.com [204.117.82.1]) by hub.freebsd.org (Postfix) with ESMTP id D527137B404; Mon, 18 Dec 2000 12:11:25 -0800 (PST) Received: from yertle.kciLink.com (yertle.kciLink.com [208.184.13.195]) by kci.kciLink.com (Postfix) with ESMTP id 17BE0C9BD; Mon, 18 Dec 2000 15:11:25 -0500 (EST) Received: from onceler.kciLink.com (onceler.kciLink.com [208.184.13.196]) by yertle.kciLink.com (Postfix) with ESMTP id 9FA632E443; Mon, 18 Dec 2000 15:11:16 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.1/8.11.1) id eBIKBGk05220; Mon, 18 Dec 2000 15:11:16 -0500 (EST) (envelope-from khera) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14910.28516.525214.162735@onceler.kciLink.com> Date: Mon, 18 Dec 2000 15:11:16 -0500 To: Joseph Scott Cc: Dan Langille , freebsd-hackers@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: processing incoming mail messages (FreshPorts 2) In-Reply-To: References: <14910.20578.512135.887887@onceler.kciLink.com> X-Mailer: VM 6.86 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "JS" == Joseph Scott writes: JS> How does postfix determine that a message has been delivered JS> though? From reading Dan's first message, my though was the problem was JS> doing the processing of the commit, all the db stuff, which would happen JS> after the perl script had already accepted delivery of the message. You configure your program as a transport agent. Then it can do things like returning the error codes from sysexits.h like EX_TEMPFAIL and EX_OK to communicate back to postfix the status of the operations. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 12:37:16 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 12:37:14 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from eccles.ee.ryerson.ca (eccles.ee.ryerson.ca [141.117.1.2]) by hub.freebsd.org (Postfix) with ESMTP id DD1A237B698 for ; Mon, 18 Dec 2000 12:37:13 -0800 (PST) Received: from www.ee.ryerson.ca (dmagda@www [172.16.1.117] (may be forged)) by eccles.ee.ryerson.ca (8.9.0/8.9.0) with ESMTP id PAA01103 for ; Mon, 18 Dec 2000 15:37:05 -0500 (EST) Date: Mon, 18 Dec 2000 15:37:06 -0500 (EST) From: David Magda To: ports@freebsd.org Subject: pine4 and cclient ports Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The MAINTAINER tag gives this as an e-mail address so I'm sending this here. This is just an inquiry as to who I should send e-mail to about the pine4 and cclient ports. I think I've been able to SSL capabilities to them and am wondering who I should talk to this about. I've contacted the pine4-ssl maintainter and he suggested I should inquire with the cclient maintainer about somehow adding an option to enable the inclusion of SSL into the build process. (It's rather straight forward with c-client 4.8 now.) -- David Magda , 3rd Year Electrical Eng. Vimes pulled out his watch and stared at it. It was turning out to be one of those days...the sort that you got every day. -- Terry Pratchett, _The_Fifth_Elephant_ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 12:42: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 12:42:07 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 340AA37B400; Mon, 18 Dec 2000 12:42:07 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIKg7O35831; Mon, 18 Dec 2000 12:42:07 -0800 (PST) (envelope-from roam) Date: Mon, 18 Dec 2000 12:42:07 -0800 (PST) From: Message-Id: <200012182042.eBIKg7O35831@freefall.freebsd.org> To: ijliao@terry.dragon2.net, roam@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23597: new ports: devel/p5-Term-Screen Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new ports: devel/p5-Term-Screen State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Mon Dec 18 12:41:40 PST 2000 State-Changed-Why: Superseded by ports/23614. http://www.freebsd.org/cgi/query-pr.cgi?pr=23597 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 14:50:47 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 14:50:12 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7E9BB37B402 for ; Mon, 18 Dec 2000 14:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIMo2W56368; Mon, 18 Dec 2000 14:50:02 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 14:50:02 -0800 (PST) Resent-Message-Id: <200012182250.eBIMo2W56368@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, eserte@cs.tu-berlin.de Received: from mail.cs.tu-berlin.de (mail.cs.tu-berlin.de [130.149.17.13]) by hub.freebsd.org (Postfix) with ESMTP id 787C637B400; Mon, 18 Dec 2000 14:45:16 -0800 (PST) Received: (from eserte@localhost) by mail.cs.tu-berlin.de (8.9.3/8.9.3) id XAA11287; Mon, 18 Dec 2000 23:39:27 +0100 (MET) Received: (from eserte@localhost) by vran.herceg.de (8.9.3/8.9.3) id XAA05715; Mon, 18 Dec 2000 23:37:28 +0100 (CET) (envelope-from eserte) Message-Id: <200012182237.XAA05715@vran.herceg.de> Date: Mon, 18 Dec 2000 23:37:28 +0100 (CET) From: Slaven Rezic Sender: eserte@cs.tu-berlin.de Reply-To: eserte@cs.tu-berlin.de To: FreeBSD-gnats-submit@freebsd.org Cc: wosch@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23631: update of german/BBBike port Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23631 >Category: ports >Synopsis: update of german/BBBike port >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 14:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Slaven Rezic >Release: FreeBSD 3.5-STABLE i386 >Organization: Private FreeBSD site, Berlin, Germany >Environment: >Description: Here's an update from 2.xx to 3.01. >How-To-Repeat: >Fix: diff -ru /usr/ports/german/BBBike/Makefile BBBike/Makefile --- /usr/ports/german/BBBike/Makefile Mon Apr 17 23:30:21 2000 +++ BBBike/Makefile Mon Dec 18 23:28:50 2000 @@ -6,16 +6,15 @@ # PORTNAME= BBBike -PORTVERSION= 2.48 +PORTVERSION= 3.01 CATEGORIES= german MASTER_SITES= http://pub.cs.tu-berlin.de/src/BBBike/ -MAINTAINER= eserte@cs.tu-berlin.de +MAINTAINER= eserte@onlineoffice.de -BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Tk.pm:${PORTSDIR}/x11-toolkits/p5-Tk +RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Tk.pm:${PORTSDIR}/x11-toolkits/p5-Tk -USE_PERL5= YES -PERLEXE= perl5 +USE_PERL5= YES POD2MAN= pod2man MAN1= bbbike.1 @@ -23,16 +22,26 @@ MYDESTDIR= ${PREFIX}/BBBike do-build: - cd ${WRKSRC}/ext/BBBikeXS; ${PERLEXE} Makefile.PL; make all install clean; $(RM) Makefile.old - cd ${WRKSRC}/ext/VirtArray; ${PERLEXE} Makefile.PL; make all install clean; $(RM) Makefile.old + cd ${WRKSRC}/ext/BBBikeXS; ${PERL5} Makefile.PL; make all install clean; ${RM} Makefile.old + cd ${WRKSRC}/ext/VirtArray; ${PERL5} Makefile.PL; make all install clean; ${RM} Makefile.old cd ${WRKSRC}; ${POD2MAN} --lax bbbike.pod > bbbike.1 + ${MV} ${WRKSRC}/bbbike ${WRKSRC}/bbbike.tmp + ${ECHO} "#! ${PERL}" > ${WRKSRC}/bbbike + ${CAT} ${WRKSRC}/bbbike.tmp >> ${WRKSRC}/bbbike + ${RM} -f ${WRKSRC}/bbbike.tmp + ${CHMOD} 0755 ${WRKSRC}/bbbike + +BBBIKEEXE= bbbike cbbbike bbbikeclient cmdbbbike do-install: -${RM} -rf ${MYDESTDIR} ${CP} -r ${WRKSRC} ${MYDESTDIR} - -${RM} -f ${PREFIX}/bin/bbbike ${PREFIX}/bin/cbbbike - ${LN} -s ${MYDESTDIR}/bbbike ${PREFIX}/bin/bbbike - ${LN} -s ${MYDESTDIR}/cbbbike ${PREFIX}/bin/cbbbike + find ${MYDESTDIR} -exec ${CHMOD} ugo+r {} \; + find ${MYDESTDIR} -perm -u=x -exec ${CHMOD} go+x {} \; +.for f in ${BBBIKEEXE} + -${RM} -f ${PREFIX}/bin/$f + ${LN} -s ${MYDESTDIR}/$f ${PREFIX}/bin/$f +.endfor ${INSTALL_MAN} ${WRKSRC}/bbbike.1 ${PREFIX}/man/man1 .include diff -ru /usr/ports/german/BBBike/distinfo BBBike/distinfo --- /usr/ports/german/BBBike/distinfo Wed Aug 26 11:55:38 1998 +++ BBBike/distinfo Mon Dec 18 23:28:51 2000 @@ -1 +1 @@ -MD5 (BBBike-2.48.tar.gz) = db8a775c0d8832e8d5072ee5c795a4bf +MD5 (BBBike-3.01.tar.gz) = 11b3775af9d7e323b74bc8cf8fede229 diff -ru /usr/ports/german/BBBike/pkg-descr BBBike/pkg-descr --- /usr/ports/german/BBBike/pkg-descr Wed Mar 22 00:44:10 2000 +++ BBBike/pkg-descr Mon Dec 18 23:28:51 2000 @@ -6,17 +6,19 @@ BBBike liefert unter anderem die Antwort auf folgende Fragen: * Wie lang ist die Strecke von A nach B? + * Wie schnell komme ich von A nach B, wenn ich durchschnittlich 15 km/h schnell fahre? + * Wie lange brauche ich von A nach B, wenn ich mit 100 Watt Leistung fahre, mit Beruecksichtigung des aktuellen Windes und von Steigungen auf der Strecke? + * Auf welchen Strassen fahre ich, wenn ich von A nach B kommen will? + * Wo habe ich Gegenwind- und Rueckenwindstrecken? -* Wo gibt es Steigungen und Gefaelle? ---- -There is also a CGI script version available -http://user.cs.tu-berlin.de/~eserte/bbbike/cgi/bbbike.cgi +* Wo gibt es Steigungen und Gefaelle? -WWW: http://user.cs.tu-berlin.de/~eserte/bbbike/cgi/bbbike.cgi +There is also a CGI script version available: +WWW: http://www.bbbike.de diff -ru /usr/ports/german/BBBike/pkg-plist BBBike/pkg-plist --- /usr/ports/german/BBBike/pkg-plist Mon May 31 07:01:41 1999 +++ BBBike/pkg-plist Mon Dec 18 23:28:50 2000 @@ -1,59 +1,129 @@ +BBBike/Ampelschaltung.pm +BBBike/BBBikeAdvanced.pm +BBBike/BBBikeAlarm.pm +BBBike/BBBikeExp.pm +BBBike/BBBikeCalc.pm BBBike/BBBikeDraw.pm +BBBike/BBBikeEdit.pm +BBBike/BBBikeMail.pm +BBBike/BBBikeMenubar.pm +BBBike/BBBikePalm.pm +BBBike/BBBikePrint.pm +BBBike/BBBikeProfil.pm +BBBike/BBBikeServer.pm +BBBike/BBBikeTrans.pm BBBike/BBBikeUtil.pm +BBBike/BBBikeVar.pm BBBike/Bundle/BBBike.pm +BBBike/Bundle/BBBike_small.pm BBBike/Fahrinfo.pm +BBBike/FURadar.pm +BBBike/Geography.pm +BBBike/Geography/Berlin_DE.pm BBBike/GfxConvert.pm +BBBike/GIS/Globe.pm +BBBike/GIS/NSD.pm +BBBike/GIS/globe_to_bbd.pl +BBBike/Hooks.pm BBBike/Karte.pm BBBike/Karte/Berlinmap1996.pm BBBike/Karte/Berlinmap1997.pm BBBike/Karte/Berlinmap1998.pm +BBBike/Karte/Berlinmap1999.pm +BBBike/Karte/Berlinmap2000.pm +BBBike/Karte/FURadar.pm +BBBike/Karte/FURadar2.pm +BBBike/Karte/GDF.pm BBBike/Karte/GIS.pm BBBike/Karte/GISmap.pm +BBBike/Karte/GPS.pm BBBike/Karte/Polar.pm BBBike/Karte/Satmap.pm BBBike/Karte/SatmapGIF.pm BBBike/Karte/Standard.pm +BBBike/Karte/T99.pm BBBike/MANIFEST +BBBike/MasterPunkte.pm +BBBike/MasterStrassen.pm BBBike/PLZ.pm +BBBike/PointEdit.pm +BBBike/Radwege.pm BBBike/README +BBBike/README.english +BBBike/README.html +BBBike/README.en.html BBBike/Route.pm +BBBike/Salesman.pm BBBike/Strassen.pm BBBike/Telefonbuch.pm +BBBike/Telefonbuch98.pm +BBBike/Telefonbuch99.pm +BBBike/Update.pm +BBBike/Way.pm +BBBike/Way/Metric.pm +BBBike/Wizards.pm BBBike/bbbike @exec ln -fs %D/%F %D/bin/bbbike @unexec rm -f %D/bin/bbbike BBBike/bbbike-fast.bat BBBike/bbbike.bat BBBike/bbbike.pod +BBBike/bbbike.html +BBBike/bbbikeclient +@exec ln -fs %D/%F %D/bin/bbbikeclient +@unexec rm -f %D/bin/bbbikeclient BBBike/cbbbike @exec ln -fs %D/%F %D/bin/cbbbike @unexec rm -f %D/bin/cbbbike BBBike/cbbbike.bat +BBBike/cmdbbbike BBBike/cgi/bbbike.cgi -BBBike/data/Berlin.small.data +BBBike/cgi/berlinmap.cgi +BBBike/cgi/wapbbbike.cgi +BBBike/cgi/README +BBBike/cgi/runbbbikecgi +BBBike/cgi/httpi +BBBike/data/.modified +BBBike/data/Berlin.coords.data BBBike/data/ampeln +BBBike/data/ampelschaltung BBBike/data/berlin +BBBike/data/comments BBBike/data/faehren BBBike/data/flaechen BBBike/data/gesperrt BBBike/data/hoehe +BBBike/data/kinos +BBBike/data/kneipen +BBBike/data/kneipen-info +BBBike/data/label BBBike/data/landstrassen BBBike/data/landstrassen2 BBBike/data/multi_bez_str +BBBike/data/obst BBBike/data/orte BBBike/data/orte2 +BBBike/data/orte_city +BBBike/data/plaetze BBBike/data/plz +BBBike/data/qualitaet_s +BBBike/data/qualitaet_l +BBBike/data/radwege +BBBike/data/radwege_exact BBBike/data/rbahn BBBike/data/rbahnhof +BBBike/data/restaurants BBBike/data/sbahn BBBike/data/sbahnhof BBBike/data/sehenswuerdigkeit BBBike/data/strassen BBBike/data/ubahn BBBike/data/ubahnhof +BBBike/data/umsteigebhf BBBike/data/wasserstrassen BBBike/data/wasserumland BBBike/data/wasserumland2 +BBBike/data/vorfahrt BBBike/ext/BBBikeXS/BBBikeXS.pm BBBike/ext/BBBikeXS/BBBikeXS.xs BBBike/ext/BBBikeXS/MANIFEST @@ -68,44 +138,183 @@ BBBike/ext/VirtArray/VirtArray.xs BBBike/ext/VirtArray/test.pl BBBike/ext/VirtArray/typemap +BBBike/gnome/BBBikeDoc.tmpl +BBBike/gnome/BBBikeWWW +BBBike/gnome/bbbike.keys +BBBike/gnome/bbbike.mime +BBBike/html/allstreet.html +BBBike/html/empty.html +BBBike/html/legende.html +BBBike/html/pleasewait.html +BBBike/images/abc.gif +BBBike/images/abc_hi.gif +BBBike/images/add_ptr.xbm BBBike/images/ampel.gif BBBike/images/ampel_klein.gif +BBBike/images/ampel_klein2.gif +BBBike/images/ampel_klein_grey.xpm +BBBike/images/ampel_klein.png +BBBike/images/ampel_klein2.png BBBike/images/andreaskr.gif BBBike/images/andreaskr_klein.gif +BBBike/images/andreaskr_klein2.gif +BBBike/images/andreaskr_klein.png +BBBike/images/andreaskr_klein2.png +BBBike/images/apfel.gif +BBBike/images/bbbike_splash.gif +BBBike/images/bbbike_splash_oo.gif BBBike/images/berlin_overview_small.gif +BBBike/images/berlin_small.gif +BBBike/images/berlin_small_hi.gif BBBike/images/bicycle.gif +BBBike/images/birne.gif +BBBike/images/bw_hleft.wbmp +BBBike/images/bw_hright.wbmp +BBBike/images/bw_left.wbmp +BBBike/images/bw_right.wbmp +BBBike/images/bw_straight.wbmp +BBBike/images/cgi_legende.gif BBBike/images/click.gif BBBike/images/cross.gif +BBBike/images/delnet_ptr.xbm +BBBike/images/delnet_ptr_mask.xbm +BBBike/images/essen.gif +BBBike/images/essen.xpm +BBBike/images/essen_klein.gif +BBBike/images/essen_klein.xpm +BBBike/images/exit.gif BBBike/images/flaechen.gif BBBike/images/flag2_bl.gif +BBBike/images/flag2_bl.png BBBike/images/flag_ziel.gif +BBBike/images/flag_ziel.png +BBBike/images/glas.gif +BBBike/images/glas.xpm +BBBike/images/glas_klein.gif +BBBike/images/glas_klein.xpm BBBike/images/haltestelle.gif +BBBike/images/help.gif BBBike/images/info.gif +BBBike/images/info_ptr.xbm +BBBike/images/info_ptr_mask.xbm +BBBike/images/kino_klein.gif +BBBike/images/kino_klein.xpm +BBBike/images/kirsche.gif BBBike/images/koord.gif BBBike/images/landstrasse.gif +BBBike/images/map.gif BBBike/images/menupfeil.gif BBBike/images/open.gif +BBBike/images/opt.gif BBBike/images/ort.gif +BBBike/images/pflaume.gif BBBike/images/printer.gif BBBike/images/rbahn.gif BBBike/images/rueckweg.gif +BBBike/images/salesman.gif +BBBike/images/salesman.xpm +BBBike/images/salesman_ptr.xbm +BBBike/images/salesman_ptr_mask.xbm BBBike/images/save.gif BBBike/images/sbahn.gif BBBike/images/search.gif BBBike/images/srtbike.gif BBBike/images/srtbike.xpm +BBBike/images/srtbike.xbm +BBBike/images/srtbike.ico BBBike/images/srtbike_mini.xpm +BBBike/images/srtbike_solid.gif +BBBike/images/srtbike_www.xpm +BBBike/images/srtbike_www.ico +BBBike/images/srtbike16.gif +BBBike/images/srtbike32.gif +BBBike/images/strlist.gif +BBBike/images/start.gif BBBike/images/start_ptr.xbm BBBike/images/start_ptr_mask.xbm BBBike/images/stip.xbm BBBike/images/strasse.gif BBBike/images/ubahn.gif +BBBike/images/usercross.gif +BBBike/images/usercross.xpm +BBBike/images/via.gif +BBBike/images/viewmag-.gif +BBBike/images/viewmag+.gif +BBBike/images/vorfahrt.gif BBBike/images/wasser.gif BBBike/images/windrose.gif BBBike/images/windrose2.gif +BBBike/images/ziel.gif BBBike/images/ziel_ptr.xbm BBBike/images/ziel_ptr_mask.xbm +BBBike/images/abc.xpm +BBBike/images/abc_hi.xpm +BBBike/images/ampel.xpm +BBBike/images/ampel_klein.xpm +BBBike/images/ampel_klein2.xpm +BBBike/images/andreaskr.xpm +BBBike/images/andreaskr_klein.xpm +BBBike/images/andreaskr_klein2.xpm +BBBike/images/apfel.xpm +BBBike/images/berlin_overview_small.xpm +BBBike/images/berlin_small.xpm +BBBike/images/berlin_small_hi.xpm +BBBike/images/bicycle.xpm +BBBike/images/birne.xpm +BBBike/images/cgi_legende.xpm +BBBike/images/click.xpm +BBBike/images/cross.xpm +BBBike/images/exit.xpm +BBBike/images/flaechen.xpm +BBBike/images/flag2_bl.xpm +BBBike/images/flag_ziel.xpm +BBBike/images/haltestelle.xpm +BBBike/images/help.xpm +BBBike/images/info.xpm +BBBike/images/kirsche.xpm +BBBike/images/koord.xpm +BBBike/images/landstrasse.xpm +BBBike/images/map.xpm +BBBike/images/menupfeil.xpm +BBBike/images/open.xpm +BBBike/images/opt.xpm +BBBike/images/ort.xpm +BBBike/images/pflaume.xpm +BBBike/images/printer.xpm +BBBike/images/rbahn.xpm +BBBike/images/rueckweg.xpm +BBBike/images/save.xpm +BBBike/images/sbahn.xpm +BBBike/images/search.xpm +BBBike/images/srtbike.jpg +BBBike/images/srtbike.png +BBBike/images/srtbike16.xpm +BBBike/images/srtbike32.xpm +BBBike/images/srtbike_solid.xpm +BBBike/images/start.xpm +BBBike/images/strasse.xpm +BBBike/images/strlist.xpm +BBBike/images/ubahn.xpm +BBBike/images/via.xpm +BBBike/images/viewmag+.xpm +BBBike/images/viewmag-.xpm +BBBike/images/vorfahrt.xpm +BBBike/images/wasser.xpm +BBBike/images/windrose.xpm +BBBike/images/windrose2.xpm +BBBike/images/ziel.xpm +BBBike/install.bat +BBBike/install.pl +BBBike/install.pl.config +BBBike/kde/BBBike.kdelnk.tmpl +BBBike/kde/BBBikeDoc.kdelnk.tmpl +BBBike/kde/BBBikeWWW.kdelnk +BBBike/kde/x-bbbike-route.kdelnk +BBBike/kde/x-bbbike-data.kdelnk +BBBike/kde/x-gpstrack.kdelnk +BBBike/lib/AutoInstall/Tk.pm BBBike/lib/BikePower.pm +BBBike/lib/BikePower/HTML.pm BBBike/lib/BikePower/Tk.pm BBBike/lib/BikePower/change_wind.xpm BBBike/lib/BikePower/crouch.xpm @@ -116,10 +325,18 @@ BBBike/lib/BikePower/tuck.xpm BBBike/lib/BikePower/up_down.xpm BBBike/lib/BikePower/upright.xpm +BBBike/lib/BrowserInfo.pm +BBBike/lib/Devel/WidgetDump.pm BBBike/lib/EasySound.pm +BBBike/lib/Geometry.pm +BBBike/lib/Http.pm +BBBike/lib/KDEUtil.pm BBBike/lib/Met/Wind.pm BBBike/lib/MyFile.pm +BBBike/lib/Tk/Arrow.pm +BBBike/lib/Tk/Autoscroll.pm BBBike/lib/Tk/CanvasBalloon.pm +BBBike/lib/Tk/CanvasExt.pm BBBike/lib/Tk/ContextHelp.pm BBBike/lib/Tk/context_help.xbm BBBike/lib/Tk/context_help_mask.xbm @@ -128,12 +345,46 @@ BBBike/lib/Tk/Enscript.pm BBBike/lib/Tk/enscript.cfg BBBike/lib/Tk/FileDialogExt.pm +BBBike/lib/Tk/FlatCheckbox.pm +BBBike/lib/Tk/Getopt.pm +BBBike/lib/Tk/KListbox.pm +BBBike/lib/Tk/K2Listbox.pm +BBBike/lib/Tk/LayerEditor.pm +BBBike/lib/Tk/LayerEditorCore.pm +BBBike/lib/Tk/LayerEditorToplevel.pm +BBBike/lib/Tk/LogScale.pm +BBBike/lib/Tk/layereye.gif BBBike/lib/Tk/UnderlineAll.pm +BBBike/lib/Tk/Splash.pm +BBBike/lib/Tk/FastSplash.pm +BBBike/lib/Tk/RotFont.pm +BBBike/lib/Tk/StippleLine.pm +BBBike/lib/Tk/grid000.xbm +BBBike/lib/Tk/grid045.xbm +BBBike/lib/Tk/grid090.xbm +BBBike/lib/Tk/grid135.xbm +BBBike/lib/Tk/resizeButton.pm +BBBike/lib/Tk/SRTProgress.pm +BBBike/lib/Tk/TextProgress.pm +BBBike/lib/Tk/WidgetDump.pm +BBBike/lib/Tk/BreakMenu.pm +BBBike/lib/Tk/RaisedButton.pm +BBBike/lib/Tk/SRTScrollbar.pm +BBBike/lib/Tk/WListbox.pm +BBBike/lib/TkChange.pm BBBike/lib/TkCompat.pm +BBBike/lib/UnixUtil.pm +BBBike/lib/Waitproc.pm +BBBike/lib/Win32Util.pm BBBike/lib/WinCompat.pm +BBBike/lib/WWWBrowser.pm BBBike/lib/click.au BBBike/lib/click.wav BBBike/lib/wettermeldung2 +BBBike/lib/savevars.pm +BBBike/smsbbbike +BBBike/tkbikepwr +BBBike/tmp/.keep_me BBBike/lib/%%PERL_ARCH%%/auto/BBBikeXS/BBBikeXS.so BBBike/lib/%%PERL_ARCH%%/auto/BBBikeXS/BBBikeXS.bs BBBike/lib/%%PERL_ARCH%%/auto/VirtArray/VirtArray.so @@ -141,20 +392,29 @@ BBBike/lib/%%PERL_ARCH%%/BBBikeXS.pm BBBike/lib/%%PERL_ARCH%%/VirtArray.pm BBBike/bbbike.1 -@dirrm BBBike/lib/BikePower -@dirrm BBBike/lib/Met -@dirrm BBBike/ext/BBBikeXS -@dirrm BBBike/lib/Tk -@dirrm BBBike/ext/VirtArray -@dirrm BBBike/ext @dirrm BBBike/lib/%%PERL_ARCH%%/auto/VirtArray -@dirrm BBBike/Bundle @dirrm BBBike/lib/%%PERL_ARCH%%/auto/BBBikeXS @dirrm BBBike/lib/%%PERL_ARCH%%/auto +@dirrm BBBike/lib/AutoInstall +@dirrm BBBike/ext/VirtArray +@dirrm BBBike/lib/Tk @dirrm BBBike/lib/%%PERL_ARCH%% -@dirrm BBBike/Karte -@dirrm BBBike/lib -@dirrm BBBike/images -@dirrm BBBike/cgi +@dirrm BBBike/ext/BBBikeXS +@dirrm BBBike/lib/Devel +@dirrm BBBike/lib/Met +@dirrm BBBike/lib/BikePower +@dirrm BBBike/Bundle +@dirrm BBBike/GIS @dirrm BBBike/data +@dirrm BBBike/cgi +@dirrm BBBike/kde +@dirrm BBBike/Geography +@dirrm BBBike/html +@dirrm BBBike/images +@dirrm BBBike/gnome +@dirrm BBBike/lib +@dirrm BBBike/Karte +@dirrm BBBike/ext +@dirrm BBBike/tmp +@dirrm BBBike/Way @dirrm BBBike >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 15: 3:20 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 15:03:18 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from proxy.outblaze.com (proxy.outblaze.com [202.77.223.120]) by hub.freebsd.org (Postfix) with SMTP id C1F9737B402 for ; Mon, 18 Dec 2000 15:03:17 -0800 (PST) Received: (qmail 35041 invoked from network); 18 Dec 2000 23:03:16 -0000 Received: from unknown (HELO yusufg.portal2.com) (202.77.181.217) by proxy.outblaze.com with SMTP; 18 Dec 2000 23:03:16 -0000 Received: (qmail 12882 invoked by uid 500); 18 Dec 2000 23:03:15 -0000 Date: Tue, 19 Dec 2000 07:03:15 +0800 From: Yusuf Goolamabbas To: freebsd-ports@freebsd.org Subject: Request to upgrade libmcrypt to 2.4.7 and package mcrypt as a port Message-ID: <20001219070315.A12857@outblaze.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Currently libmcrypt 2.2.6 is packaged as a port in /usr/ports/security/libmcrypt. The latest version is libmcrypt 2.4.7. Also, there is a userland tool mcrypt [2.5.5] which uses libmcrypt All these programs are available here http://mcrypt.hellug.gr/ Can libmcrypt be upgraded to 2.4.7 and mcrypt be packaged as a port Regards, Yusuf -- Yusuf Goolamabbas yusufg@outblaze.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 15:30: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 15:30:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 36B1F37B402 for ; Mon, 18 Dec 2000 15:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBINU1p71020; Mon, 18 Dec 2000 15:30:01 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 15:30:01 -0800 (PST) Resent-Message-Id: <200012182330.eBINU1p71020@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, cyberwin@mail.ru Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7376137B402 for ; Mon, 18 Dec 2000 15:20:58 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBINKwn69845; Mon, 18 Dec 2000 15:20:58 -0800 (PST) (envelope-from nobody) Message-Id: <200012182320.eBINKwn69845@freefall.freebsd.org> Date: Mon, 18 Dec 2000 15:20:58 -0800 (PST) From: cyberwin@mail.ru Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23632: QuakeForge --with-svga= not works Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23632 >Category: ports >Synopsis: QuakeForge --with-svga= not works >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 15:30:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Kovirshin Alexey >Release: 4.1-RELEASE >Organization: single freebsd user >Environment: FreeBSD orb.ru 4.1-RELEASE FreeBSD 4.1-RELEASE #5: Sun Oct 22 16:04:52 MSD 2000 root@orb.ru:/usr/src/sys/compile/HOME i386 >Description: it's about quakeforge in configure shell script at line 3228: SVGA_CFLAGS="$SVGA_CFLAGS= -I$withval/include" >How-To-Repeat: >Fix: SVGA_CFLAGS="$SVGA_CFLAGS -I$withval/include" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 15:40:10 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 15:40:05 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B6A137B404 for ; Mon, 18 Dec 2000 15:40:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBINe5d72199; Mon, 18 Dec 2000 15:40:05 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 15:40:05 -0800 (PST) Resent-Message-Id: <200012182340.eBINe5d72199@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, George Reid Received: from mta02-svc.ntlworld.com (mta02-svc.ntlworld.com [62.253.162.42]) by hub.freebsd.org (Postfix) with ESMTP id 2D4FC37B400 for ; Mon, 18 Dec 2000 15:37:48 -0800 (PST) Received: from sobek.openirc.co.uk ([62.252.12.175]) by mta02-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001218233741.NHQK23225.mta02-svc.ntlworld.com@sobek.openirc.co.uk> for ; Mon, 18 Dec 2000 23:37:41 +0000 Message-Id: Date: Mon, 18 Dec 2000 23:40:53 +0000 (GMT) From: George Reid To: FreeBSD-gnats-submit@freebsd.org Subject: ports/23633: New port: FreeSCI: A portable interpreter for SCI games, such as the Space Quest series. Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23633 >Category: ports >Synopsis: New port: FreeSCI: A portable interpreter for SCI games >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 15:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD UK User Group >Environment: FreeBSD 5.0-CURRENT >Description: FreeSCI is a portable interpreter for SCI games, such as the Space Quest series (starting with SQ3) or Leisure Suit Larry (2 and sequels). This release has the following limitations (plus some bugs): - Only SCI0 games are supported - The SCI debug functions aren't fully supported (and probably never will be, since we're using our own debug functions). - Sound is not supported yet - Graphics are slow, especially on displays not using 8bpp color index mode. >How-To-Repeat: n/a >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # . # ./pkg-plist # ./pkg-descr # ./pkg-comment # ./distinfo # ./Makefile # echo c - . mkdir -p . > /dev/null 2>&1 echo x - ./pkg-plist sed 's/^X//' >./pkg-plist << 'END-of-./pkg-plist' Xbin/sciunpack Xbin/scriptdump Xbin/vocabdump Xbin/classes Xbin/sciconsole Xbin/scidisasm Xbin/listwords Xbin/sciv Xlib/libscisound.a Xshare/freesci/sci.sgml X@dirrm share/freesci END-of-./pkg-plist echo x - ./pkg-descr sed 's/^X//' >./pkg-descr << 'END-of-./pkg-descr' XFreeSCI is a portable interpreter for SCI games, such as the Space Quest Xseries (starting with SQ3) or Leisure Suit Larry (2 and sequels). X XThis release has the following limitations (plus some bugs): X X- Only SCI0 games are supported X- The SCI debug functions aren't fully supported (and probably never will be, X since we're using our own debug functions). X- Sound is not supported yet X- Graphics are slow, especially on displays not using 8bpp color index mode. X X- George Reid Xgreid@ukug.uk.freebsd.org END-of-./pkg-descr echo x - ./pkg-comment sed 's/^X//' >./pkg-comment << 'END-of-./pkg-comment' XA portable interpreter for SCI games, such as the Space Quest series. END-of-./pkg-comment echo x - ./distinfo sed 's/^X//' >./distinfo << 'END-of-./distinfo' XMD5 (freesci-0.3.0.tar.gz) = 71fa6c95a6fcebe3c818e53e6561721a END-of-./distinfo echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection makefile for: freesci X# Date created: 17 December 2000 X# Whom: George Reid X# X# $FreeBSD$ X# X XPORTNAME= freesci XPORTVERSION= 0.3.0 XCATEGORIES= emulators XMASTER_SITES= ftp://ftp.linuxgames.com/freesci/ X XMAINTAINER= greid@ukug.uk.freebsd.org X XLIB_DEPENDS= ggi.2:${PORTSDIR}/graphics/libggi \ X png.4:${PORTSDIR}/graphics/png X XHAS_CONFIGURE= yes X X.include X XCONFIGURE_ENV= CFLAGS="-I${LOCALBASE}/include" \ X LDFLAGS="-L${LOCALBASE}/lib" X XUSE_GLIB= yes X Xpost-install: X @${MKDIR} ${PREFIX}/share/freesci X @${INSTALL_DATA} ${WRKSRC}/doc/sci.sgml ${PREFIX}/share/freesci X X.include END-of-./Makefile exit >Release-Note: >Audit-Trail: >Unformatted: (e.g. Space Quest) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 16: 0: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 16:00:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E4DC337B402 for ; Mon, 18 Dec 2000 16:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ001f74540; Mon, 18 Dec 2000 16:00:01 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 16:00:01 -0800 (PST) Resent-Message-Id: <200012190000.eBJ001f74540@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, cyberwin@mail.ru Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E9E737B402 for ; Mon, 18 Dec 2000 15:55:27 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBINtRb74026; Mon, 18 Dec 2000 15:55:27 -0800 (PST) (envelope-from nobody) Message-Id: <200012182355.eBINtRb74026@freefall.freebsd.org> Date: Mon, 18 Dec 2000 15:55:27 -0800 (PST) From: cyberwin@mail.ru Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23634: QuakeForge --with-svga= not works Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23634 >Category: ports >Synopsis: QuakeForge --with-svga= not works >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 16:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Kovirshin Alexey >Release: 4.1-RELEASE >Organization: single freebsd user >Environment: FreeBSD orb.ru 4.1-RELEASE FreeBSD 4.1-RELEASE #5: Sun Oct 22 16:04:52 MSD 2000 root@orb.ru:/usr/src/sys/compile/HOME i386 >Description: it's about quakeforge in common/vid_svgalib.c function outb is absent in svgalib-1.4.2_1 >How-To-Repeat: >Fix: but _outb is in svgalib-1.4.2_1 replace all outb to _outb in common/vid_svgalib.c >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 16:41:52 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 16:41:51 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E5C5F37B402; Mon, 18 Dec 2000 16:41:50 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ0foE86882; Mon, 18 Dec 2000 16:41:50 -0800 (PST) (envelope-from okazaki) Date: Mon, 18 Dec 2000 16:41:50 -0800 (PST) From: Message-Id: <200012190041.eBJ0foE86882@freefall.freebsd.org> To: tkato@prontomail.ne.jp, okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23273: Update port: graphics/ImageMagick to 5.2.6 (fix ports/22423) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/ImageMagick to 5.2.6 (fix ports/22423) State-Changed-From-To: open->closed State-Changed-By: okazaki State-Changed-When: Mon Dec 18 16:38:47 PST 2000 State-Changed-Why: Superseded by: ports/23623 http://www.freebsd.org/cgi/query-pr.cgi?pr=23273 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 16:51: 0 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 16:50:59 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1088F37B400; Mon, 18 Dec 2000 16:50:59 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ0owk88486; Mon, 18 Dec 2000 16:50:58 -0800 (PST) (envelope-from okazaki) Date: Mon, 18 Dec 2000 16:50:58 -0800 (PST) From: Message-Id: <200012190050.eBJ0owk88486@freefall.freebsd.org> To: lonewolf@atlantis.fukt.hk-r.se, okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22027: New port: ccdoc v0.7a Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: ccdoc v0.7a State-Changed-From-To: open->closed State-Changed-By: okazaki State-Changed-When: Mon Dec 18 16:49:06 PST 2000 State-Changed-Why: Superseded by: ports/22794 http://www.freebsd.org/cgi/query-pr.cgi?pr=22027 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 16:57:43 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 16:57:42 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C2B837B402; Mon, 18 Dec 2000 16:57:42 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ0vfk89647; Mon, 18 Dec 2000 16:57:41 -0800 (PST) (envelope-from okazaki) Date: Mon, 18 Dec 2000 16:57:41 -0800 (PST) From: Message-Id: <200012190057.eBJ0vfk89647@freefall.freebsd.org> To: vt@bsdjeunz.org, okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22957: NEW PORT : 6tunnel Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NEW PORT : 6tunnel State-Changed-From-To: open->closed State-Changed-By: okazaki State-Changed-When: Mon Dec 18 16:56:16 PST 2000 State-Changed-Why: Superseded by: ports/22985 http://www.freebsd.org/cgi/query-pr.cgi?pr=22957 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 17:19:18 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 17:19:17 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3607A37B400; Mon, 18 Dec 2000 17:19:17 -0800 (PST) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ1JHQ94541; Mon, 18 Dec 2000 17:19:17 -0800 (PST) (envelope-from jedgar) Date: Mon, 18 Dec 2000 17:19:17 -0800 (PST) From: Message-Id: <200012190119.eBJ1JHQ94541@freefall.freebsd.org> To: darius@dons.net.au, jedgar@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23605: games/wolfpack port update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: games/wolfpack port update State-Changed-From-To: open->closed State-Changed-By: jedgar State-Changed-When: Mon Dec 18 17:19:04 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23605 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 18:24:13 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 18:24:11 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 54D5337B400; Mon, 18 Dec 2000 18:24:11 -0800 (PST) Received: (from kbyanc@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ2OBf04855; Mon, 18 Dec 2000 18:24:11 -0800 (PST) (envelope-from kbyanc) Date: Mon, 18 Dec 2000 18:24:11 -0800 (PST) From: Message-Id: <200012190224.eBJ2OBf04855@freefall.freebsd.org> To: aaron-fbsd@mutex.org, kbyanc@FreeBSD.org, freebsd-ports@FreeBSD.org, kbyanc@FreeBSD.org Subject: Re: ports/23608: cclient-maildir does not install headers needed by imap-uw port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: cclient-maildir does not install headers needed by imap-uw port State-Changed-From-To: open->feedback State-Changed-By: kbyanc State-Changed-When: Mon Dec 18 18:19:37 PST 2000 State-Changed-Why: I just updated the cclient port to the latest version. The cclient-maildir patches are fairly out-of-sync with the current cclient codebase and no one seems to be maintaining them. Given those conditions, I felt the future of the -maildir port was doomed and removed it. Sorry. However, if you are interested in maintaining the -maildir patches against the most recent cclient, I'll gladly reinstate the cclient-maildir port. Responsible-Changed-From-To: freebsd-ports->kbyanc Responsible-Changed-By: kbyanc Responsible-Changed-When: Mon Dec 18 18:19:37 PST 2000 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=23608 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 18:33:23 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 18:33:21 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from earth.backplane.com (placeholder-dcat-1076843399.broadbandoffice.net [64.47.83.135]) by hub.freebsd.org (Postfix) with ESMTP id 2A2E737B402 for ; Mon, 18 Dec 2000 18:33:21 -0800 (PST) Received: from localhost (kbyanc@localhost) by earth.backplane.com (8.11.1/8.9.3) with ESMTP id eBJ2XKR53044; Mon, 18 Dec 2000 18:33:20 -0800 (PST) (envelope-from kbyanc@backplane.com) Date: Mon, 18 Dec 2000 18:33:20 -0800 (PST) From: Kelly Yancey To: David Magda Cc: Subject: Re: pine4 and cclient ports Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > The MAINTAINER tag gives this as an e-mail address so I'm sending this > here. > > This is just an inquiry as to who I should send e-mail to about the > pine4 and cclient ports. I think I've been able to SSL capabilities to > them and am wondering who I should talk to this about. > > I've contacted the pine4-ssl maintainter and he suggested I should > inquire with the cclient maintainer about somehow adding an option to > enable the inclusion of SSL into the build process. (It's rather > straight forward with c-client 4.8 now.) Yes, Nick Sayer has already filed a PR with some patches against, I believe, pine4.21. I must admit that I haven't looked at them yet as I am not very familiar with using pine with SSL and have been too strapped on time to figure it out. However, if you can submit patches against 4.31 and/or point me in the right direction, I'll gladly see to getting the pine4-ssl port back in action. Thanks, Kelly To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 20:10: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 20:10:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F40D37B402 for ; Mon, 18 Dec 2000 20:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ4A1x20371; Mon, 18 Dec 2000 20:10:01 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 20:10:01 -0800 (PST) Resent-Message-Id: <200012190410.eBJ4A1x20371@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 3030337B400 for ; Mon, 18 Dec 2000 20:04:21 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 0) id AA5A7177E8F; Mon, 18 Dec 2000 22:05:10 -0600 (CST) Message-Id: <20001219040510.AA5A7177E8F@leviathan.inethouston.com> Date: Mon, 18 Dec 2000 22:05:10 -0600 (CST) From: dwcjr@inethouston.net Sender: root@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23636: Update net/gatekeeper Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23636 >Category: ports >Synopsis: Update net/gatekeeper >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 20:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Upgrade checksum and port to version 0.14 Version 0.14 fixes an important bug, but can't find out what it is Need someone who uses it to test, couldn't compile because it requires xwindows >How-To-Repeat: >Fix: diff -urN gatekeeper.orig/Makefile gatekeeper/Makefile --- gatekeeper.orig/Makefile Mon Dec 18 21:47:09 2000 +++ gatekeeper/Makefile Mon Dec 18 21:51:03 2000 @@ -6,11 +6,11 @@ # PORTNAME= gatekeeper -PORTVERSION= 0.12 -PORTREVISION= 1 +PORTVERSION= 0.14 CATEGORIES= net MASTER_SITES= http://www.willamowius.de/download/ -DISTNAME= gk012 +DISTNAME= gk014 +EXTRACT_SUFX= .tgz MAINTAINER= roger@FreeBSD.org diff -urN gatekeeper.orig/distinfo gatekeeper/distinfo --- gatekeeper.orig/distinfo Mon Dec 18 21:47:09 2000 +++ gatekeeper/distinfo Mon Dec 18 21:51:07 2000 @@ -1 +1 @@ -MD5 (gk012.tar.gz) = efa4b378efcd9408494851349ecb190f +MD5 (gk014.tgz) = 9a6656265f40d8bd5472920aedc74157 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 20:30: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 20:30:04 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A7CF37B400 for ; Mon, 18 Dec 2000 20:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ4U3C22435; Mon, 18 Dec 2000 20:30:03 -0800 (PST) (envelope-from gnats) Date: Mon, 18 Dec 2000 20:30:03 -0800 (PST) Message-Id: <200012190430.eBJ4U3C22435@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "David W. Chapman Jr." Subject: Re: ports/23601: Update www/hypermail Reply-To: "David W. Chapman Jr." Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23601; it has been noted by GNATS. From: "David W. Chapman Jr." To: , Cc: Subject: Re: ports/23601: Update www/hypermail Date: Mon, 18 Dec 2000 22:26:50 -0600 also the pkg-plist should have a @dirrm share/apache/htdocs and while its at it @dirrm share/apache too? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 20:40: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 20:40:04 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B289937B402 for ; Mon, 18 Dec 2000 20:40:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ4e4623019; Mon, 18 Dec 2000 20:40:04 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 20:40:04 -0800 (PST) Resent-Message-Id: <200012190440.eBJ4e4623019@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id C6C9637B400 for ; Mon, 18 Dec 2000 20:35:29 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 0) id A1205177E8F; Mon, 18 Dec 2000 22:36:19 -0600 (CST) Message-Id: <20001219043619.A1205177E8F@leviathan.inethouston.com> Date: Mon, 18 Dec 2000 22:36:19 -0600 (CST) From: dwcjr@inethouston.net Sender: root@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23637: Update ftp/proftpd update pkg-plist Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23637 >Category: ports >Synopsis: Update ftp/proftpd update pkg-plist >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 20:40:04 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: on uninstall proftpd.conf stays there, here is a fix to compare it to the default config >How-To-Repeat: >Fix: --- pkg-plist.orig Mon Dec 18 22:31:43 2000 +++ pkg-plist Mon Dec 18 22:33:02 2000 @@ -8,3 +8,4 @@ share/doc/proftpd/Configuration.html share/doc/proftpd/FAQ-config.html @dirrm share/doc/proftpd +@unexec if cmp -s %D/etc/proftpd.conf %D/etc/proftpd.conf.default; then rm -f %D/etc/proftpd.conf; fi >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 21: 0: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 21:00:04 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1BE6E37B402 for ; Mon, 18 Dec 2000 21:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ504N26611; Mon, 18 Dec 2000 21:00:04 -0800 (PST) (envelope-from gnats) Resent-Date: Mon, 18 Dec 2000 21:00:04 -0800 (PST) Resent-Message-Id: <200012190500.eBJ504N26611@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, kosmos@bowhill.yi.org Received: from bowhill.yi.org (bowhill.yi.org [216.122.158.78]) by hub.freebsd.org (Postfix) with ESMTP id 5798537B400 for ; Mon, 18 Dec 2000 20:52:11 -0800 (PST) Received: (from kosmos@localhost) by bowhill.yi.org (8.11.1/8.11.1) id eBJ4q6I93335; Mon, 18 Dec 2000 20:52:06 -0800 (PST) (envelope-from kosmos) Message-Id: <200012190452.eBJ4q6I93335@bowhill.yi.org> Date: Mon, 18 Dec 2000 20:52:06 -0800 (PST) From: Allan Bowhill Reply-To: kosmos@bowhill.yi.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23638: Add turbine-pool.jar to Cocoon CLASSPATH Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23638 >Category: ports >Synopsis: Add turbine-pool.jar to Cocoon CLASSPATH >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Dec 18 21:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Allan Bowhill >Release: FreeBSD 4.2-STABLE i386 >Organization: none >Environment: Ports installation from /usr/ports/textproc/cocoon >Description: Installation of Cocoon 1.8 causes the following error when the test page Cocoon.xml is called up: ------------------------------------ Cocoon 1.8 Publishing Engine could not be initialized. java.lang.RuntimeException: Error creating org.apache.cocoon.processor.xsp.XSPProcessor: make sure the needed classes can be found in +the classpath (org/apache/turbine/services/resources/TurbineResourceService) ------------------------------------ >How-To-Repeat: 1. Install Cocoon 2. With a web browser, address the Cocoon diagnostic test page (http://localhost/Cocoon.xml) >Fix: 1. Add turbine-pool.jar to the list of jarfiles listed in LIBS= varable in the Makefile, so it installs in /usr/local/share/java/classes 2. Add following line to pkg-message under item two: (Add following lines into jserv.properties.) "wrapper.classpath=/usr/local/share/java/classes/turbine-pool.jar" 3. Add an entry for turbine-pool.jar in pkg-plist >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 21:43: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 21:43:03 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from xena.gsicomp.on.ca (cr677933-a.ktchnr1.on.wave.home.com [24.43.230.149]) by hub.freebsd.org (Postfix) with ESMTP id 3B8DE37B400 for ; Mon, 18 Dec 2000 21:43:02 -0800 (PST) Received: from hermes (hermes.gsicomp.on.ca [192.168.0.18]) by xena.gsicomp.on.ca (8.9.3/8.9.3) with SMTP id AAA96855; Tue, 19 Dec 2000 00:42:52 -0500 (EST) (envelope-from matt@gsicomp.on.ca) Message-ID: <001401c0697e$6a5f2530$1200a8c0@gsicomp.on.ca> From: "Matthew Emmerton" To: "David W. Chapman Jr." , References: <200012190430.eBJ4U3C22435@freefall.freebsd.org> Subject: Re: ports/23601: Update www/hypermail Date: Tue, 19 Dec 2000 00:42:02 -0500 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 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > The following reply was made to PR ports/23601; it has been noted by GNATS. > > From: "David W. Chapman Jr." > To: , > Cc: > Subject: Re: ports/23601: Update www/hypermail > Date: Mon, 18 Dec 2000 22:26:50 -0600 > > also the pkg-plist should have a @dirrm share/apache/htdocs and while its at > it @dirrm share/apache too? No. Those directories are created by Apache, not Hypermail, and as a result Hypermail shouldn't have @dirrm lines for them. In fact, I'm not sure if Hypermail should be installing to share/apache/htdocs in the first place. I can see the benefit of doing so, but it causes inter-mingling of data which causes problems. (ie, what happens if you make custom mods to hypermail.html, and then deinstall Apache? Say goodbye to everything in share/apache, including Hypermail!) The better solution would be to install Hypermail's HTML and CGI scripts to share/hypermail. This way, data doesn't "cross-pollinate". If this route is chosen, a pkg-message file should be created informing users of where the files have been installed, and instruct users to copy them into their cgi-bin and content areas. -- Matt Emmerton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 21:43:16 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 21:43:14 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mail.gmx.net (pop.gmx.net [194.221.183.20]) by hub.freebsd.org (Postfix) with SMTP id 9357E37B400 for ; Mon, 18 Dec 2000 21:43:13 -0800 (PST) Received: (qmail 12837 invoked by uid 0); 19 Dec 2000 05:43:12 -0000 Received: from pd90013c4.dip.t-dialin.net (HELO sparky) (217.0.19.196) by mail.gmx.net (mail02) with SMTP; 19 Dec 2000 05:43:12 -0000 Message-ID: <000801c0697e$c4863760$0a0a10ac@mega.jp> From: "sparky" To: Subject: BSD and RAID 0 Softwarearrays?? Date: Tue, 19 Dec 2000 06:44:32 +0100 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C06987.251C7FA0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C06987.251C7FA0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, I would like to implement FreeBSD into my system. But before doing that = i need to know, whether there is the possibility to create (and use) = RAID 0 Soft Arrays?? I did it under Linux via mdtools. It's no problem = to port these tools, but the kernel needs SoftRAID support. Does the = FreeBSD Kernel support this feature? If not, how can i add it manually? = (would it be possible to port some parts of the Linux kernel??) Ciao and thanx in advance Frank Thomas ------=_NextPart_000_0005_01C06987.251C7FA0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi,
 
I would like to implement FreeBSD into my system. = But before=20 doing that i need to know, whether there is the possibility to create = (and use)=20 RAID 0 Soft Arrays?? I did it under Linux via mdtools. It's no problem = to port=20 these tools, but the kernel needs SoftRAID support. Does the FreeBSD = Kernel=20 support this feature? If not, how can i add it manually? (would it be = possible=20 to port some parts of the Linux kernel??)
 
Ciao and thanx in advance
 
Frank Thomas <sparky25@gmx.at>
------=_NextPart_000_0005_01C06987.251C7FA0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 21:56:51 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 21:56:49 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mail-green.research.att.com (H-135-207-30-103.research.att.com [135.207.30.103]) by hub.freebsd.org (Postfix) with ESMTP id 4DDBD37B400 for ; Mon, 18 Dec 2000 21:56:49 -0800 (PST) Received: from alliance.research.att.com (alliance.research.att.com [135.207.26.26]) by mail-green.research.att.com (Postfix) with ESMTP id 874E91E018 for ; Tue, 19 Dec 2000 00:56:44 -0500 (EST) Received: from windsor.research.att.com (windsor.research.att.com [135.207.26.46]) by alliance.research.att.com (8.8.7/8.8.7) with ESMTP id AAA28399 for ; Tue, 19 Dec 2000 00:56:43 -0500 (EST) Received: from windsor.research.att.com (localhost [127.0.0.1]) by windsor.research.att.com (8.8.8+Sun/8.8.5) with ESMTP id AAA25422 for ; Tue, 19 Dec 2000 00:56:42 -0500 (EST) Resent-Message-Id: <200012190556.AAA25422@windsor.research.att.com> Matched: Tue, 19 Dec 2000 00:40:40 -0500 Received: from mail-green.research.att.com (mail-green.research.att.com [135.207.30.103]) by alliance.research.att.com (8.8.7/8.8.7) with ESMTP id AAA28030 for ; Tue, 19 Dec 2000 00:40:38 -0500 (EST) Received: by mail-green.research.att.com (Postfix) id C8F771E032; Tue, 19 Dec 2000 00:40:37 -0500 (EST) Delivered-To: fenner@research.att.com Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by mail-green.research.att.com (Postfix) with ESMTP id 8C29A1E024 for ; Tue, 19 Dec 2000 00:40:37 -0500 (EST) Received: from hub.freebsd.org (hub.FreeBSD.org [216.136.204.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BFF86E2BAD for ; Mon, 18 Dec 2000 21:40:37 -0800 (PST) Received: by hub.freebsd.org (Postfix) id 316F837B402; Mon, 18 Dec 2000 21:40:37 -0800 (PST) Delivered-To: fenner@freebsd.org Received: from irc-s.darktech.org (alpha7413.kingwoodcable.com [63.77.74.13]) by hub.freebsd.org (Postfix) with ESMTP id 8FE7737B400 for ; Mon, 18 Dec 2000 21:40:36 -0800 (PST) Received: from localhost (root@localhost) by irc-s.darktech.org (8.9.3/8.9.3) with ESMTP id XAA00330 for ; Mon, 18 Dec 2000 23:42:18 -0600 (CST) (envelope-from root@irc-s.darktech.org) Date: Mon, 18 Dec 2000 23:42:18 -0600 (CST) From: Charlie ROOT To: fenner@freebsd.org Subject: note about pine in new ports tarball Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Resent-To: ports@freebsd.org Resent-Date: Mon, 18 Dec 2000 21:56:42 -0800 Resent-From: Bill Fenner Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I noticed when compiling the new pine v 4.31 that the path from the files pine/init.c and pine/mailcmd.c to the imap4r1.h file was incorrect and needs to be changed to ../imap/src/c-client/imap4r1.h to compile correctly Thankyou. If you are not the person responsible for the ports tarball accessible from the ported applications index page please forward the pertinent information to that person. Again Thankyou. Sincerely Raymond Mouton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Dec 18 23:43:12 2000 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 18 23:43:11 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EBCD137B400; Mon, 18 Dec 2000 23:43:10 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ7hAS53940; Mon, 18 Dec 2000 23:43:10 -0800 (PST) (envelope-from will) Date: Mon, 18 Dec 2000 23:43:10 -0800 (PST) From: Message-Id: <200012190743.eBJ7hAS53940@freefall.freebsd.org> To: hollywar@holywar.net, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22683: New port net/dnip-update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port net/dnip-update State-Changed-From-To: open->feedback State-Changed-By: will State-Changed-When: Mon Dec 18 23:35:17 PST 2000 State-Changed-Why: I have some objections about this port. While it's nice that you've created a service for many people to use, there's some problems. First, your port requires someone to edit the file if they have weird proxy problems that keeps your server from figuring out their IP address automatically. That's not a good idea. Second, since you are not a committer, the source shouldn't be maintained in the ports tree. I would suggest putting a gzip'd copy of your shell script up somewhere and using MASTER_SITES. The shell script is rather ugly, if you ask me, because of various spelling mistakes, and because of its rather inflexible state. http://www.freebsd.org/cgi/query-pr.cgi?pr=22683 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 0: 1:21 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 00:01:20 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 467DD37B402; Tue, 19 Dec 2000 00:01:20 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ81KC56789; Tue, 19 Dec 2000 00:01:20 -0800 (PST) (envelope-from sobomax) Date: Tue, 19 Dec 2000 00:01:20 -0800 (PST) From: Message-Id: <200012190801.eBJ81KC56789@freefall.freebsd.org> To: sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org, kris@FreeBSD.org Subject: Re: ports/23630: Update port: www/nscache to 0.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: www/nscache to 0.4 Responsible-Changed-From-To: freebsd-ports->kris Responsible-Changed-By: sobomax Responsible-Changed-When: Tue Dec 19 00:00:48 PST 2000 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=23630 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 0:17:53 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 00:17:52 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 58C0337B400; Tue, 19 Dec 2000 00:17:52 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ8GmZ61019; Tue, 19 Dec 2000 00:16:48 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 00:16:48 -0800 (PST) From: Message-Id: <200012190816.eBJ8GmZ61019@freefall.freebsd.org> To: clefevre@citeweb.net, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22632: New port: textproc/gsed - 3.02 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: textproc/gsed - 3.02 State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 00:16:42 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22632 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 0:25: 2 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 00:25:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E76837B402; Tue, 19 Dec 2000 00:25:01 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ8P1q62184; Tue, 19 Dec 2000 00:25:01 -0800 (PST) (envelope-from sobomax) Date: Tue, 19 Dec 2000 00:25:01 -0800 (PST) From: Message-Id: <200012190825.eBJ8P1q62184@freefall.freebsd.org> To: sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org, jseger@FreeBSD.org Subject: Re: ports/23623: Update port: graphics/ImageMagick to 5.2.6 (fix ports/23273) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/ImageMagick to 5.2.6 (fix ports/23273) Responsible-Changed-From-To: freebsd-ports->jseger Responsible-Changed-By: sobomax Responsible-Changed-When: Tue Dec 19 00:24:41 PST 2000 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=23623 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 0:28: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 00:28:08 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (poynting.physics.purdue.edu [128.210.146.58]) by hub.freebsd.org (Postfix) with ESMTP id D114937B400 for ; Tue, 19 Dec 2000 00:28:07 -0800 (PST) Received: from altair.firepipe.net (pm006-013.dialup.bignet.net [64.79.80.253]) by puck.firepipe.net (Postfix) with ESMTP id 2B0141A0A for ; Tue, 19 Dec 2000 03:28:07 -0500 (EST) Received: by altair.firepipe.net (Postfix, from userid 1000) id 95D1519C9; Tue, 19 Dec 2000 02:23:42 -0500 (EST) Date: Tue, 19 Dec 2000 02:23:42 -0500 From: Will Andrews To: ports@FreeBSD.org Subject: Y2K lines in Makefiles Message-ID: <20001219022342.D1119@altair.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , ports@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: will@altair.firepipe.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi all, I recently committed gsed to the tree. It had a Y2K line in the original submission. I would like to remove all Y2K lines from the ports tree around January 1, 2001. It's obvious they serve no purpose anymore. Objections? -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 0:35:50 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 00:35:49 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4966337B400; Tue, 19 Dec 2000 00:35:49 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ8ZnF63669; Tue, 19 Dec 2000 00:35:49 -0800 (PST) (envelope-from sobomax) Date: Tue, 19 Dec 2000 00:35:49 -0800 (PST) From: Message-Id: <200012190835.eBJ8ZnF63669@freefall.freebsd.org> To: tkato@prontomail.ne.jp, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23621: Update port: audio/rosegarden Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: audio/rosegarden State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23621 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 0:36:11 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 00:36:09 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3542537B6AB; Tue, 19 Dec 2000 00:36:06 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ8a6Y63820; Tue, 19 Dec 2000 00:36:06 -0800 (PST) (envelope-from sobomax) Date: Tue, 19 Dec 2000 00:36:06 -0800 (PST) From: Message-Id: <200012190836.eBJ8a6Y63820@freefall.freebsd.org> To: tkato@prontomail.ne.jp, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23622: Update port: games/xdemineur Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/xdemineur State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23621 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23622 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 0:36:21 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 00:36:19 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8357F37B400; Tue, 19 Dec 2000 00:36:19 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ8aJX63906; Tue, 19 Dec 2000 00:36:19 -0800 (PST) (envelope-from sobomax) Date: Tue, 19 Dec 2000 00:36:19 -0800 (PST) From: Message-Id: <200012190836.eBJ8aJX63906@freefall.freebsd.org> To: tkato@prontomail.ne.jp, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23624: Update port: graphics/gifsicle to 1.23 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/gifsicle to 1.23 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23621 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23622 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23624 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 0:36:32 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 00:36:30 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B05CA37B400; Tue, 19 Dec 2000 00:36:30 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ8aUx63979; Tue, 19 Dec 2000 00:36:30 -0800 (PST) (envelope-from sobomax) Date: Tue, 19 Dec 2000 00:36:30 -0800 (PST) From: Message-Id: <200012190836.eBJ8aUx63979@freefall.freebsd.org> To: tkato@prontomail.ne.jp, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23625: Update port: graphics/libwmf to 0.1.21 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/libwmf to 0.1.21 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23621 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23622 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23624 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23625 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 0:36:52 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 00:36:48 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E150A37B404; Tue, 19 Dec 2000 00:36:47 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ8alm64061; Tue, 19 Dec 2000 00:36:47 -0800 (PST) (envelope-from sobomax) Date: Tue, 19 Dec 2000 00:36:47 -0800 (PST) From: Message-Id: <200012190836.eBJ8alm64061@freefall.freebsd.org> To: tkato@prontomail.ne.jp, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23626: Update port: misc/diction to 0.9 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: misc/diction to 0.9 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23621 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23622 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23624 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23625 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23626 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 0:37: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 00:37:04 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 17B0437B400; Tue, 19 Dec 2000 00:37:04 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ8b3I64166; Tue, 19 Dec 2000 00:37:03 -0800 (PST) (envelope-from sobomax) Date: Tue, 19 Dec 2000 00:37:03 -0800 (PST) From: Message-Id: <200012190837.eBJ8b3I64166@freefall.freebsd.org> To: tkato@prontomail.ne.jp, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23627: Update port: misc/yaunc to 0.05 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: misc/yaunc to 0.05 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23621 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23622 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23624 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23625 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23626 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23627 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 0:37:12 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 00:37:09 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CBA2237B400; Tue, 19 Dec 2000 00:37:09 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ8b9A64255; Tue, 19 Dec 2000 00:37:09 -0800 (PST) (envelope-from sobomax) Date: Tue, 19 Dec 2000 00:37:09 -0800 (PST) From: Message-Id: <200012190837.eBJ8b9A64255@freefall.freebsd.org> To: tkato@prontomail.ne.jp, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23628: Update port: net/tn5250 to 0.16.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: net/tn5250 to 0.16.0 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23621 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23622 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23624 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23625 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23626 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23627 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23628 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 0:37:30 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 00:37:29 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EC21037B404; Tue, 19 Dec 2000 00:37:28 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ8bSd64372; Tue, 19 Dec 2000 00:37:28 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 00:37:28 -0800 (PST) From: Message-Id: <200012190837.eBJ8bSd64372@freefall.freebsd.org> To: roman@xpert.com, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22827: NEW PORT: converters/p5-Convert-TNEF Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NEW PORT: converters/p5-Convert-TNEF State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 00:36:58 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22827 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 0:37:36 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 00:37:33 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5589737B400; Tue, 19 Dec 2000 00:37:33 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ8bXG64399; Tue, 19 Dec 2000 00:37:33 -0800 (PST) (envelope-from sobomax) Date: Tue, 19 Dec 2000 00:37:33 -0800 (PST) From: Message-Id: <200012190837.eBJ8bXG64399@freefall.freebsd.org> To: tkato@prontomail.ne.jp, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23629: Update port: print/rtf2latex Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: print/rtf2latex State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23621 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23622 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23624 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23625 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23626 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23627 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23628 State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Tue Dec 19 00:35:37 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23629 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 0:43:18 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 00:43:16 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C2BC337B400; Tue, 19 Dec 2000 00:43:16 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ8hGX65207; Tue, 19 Dec 2000 00:43:16 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 00:43:16 -0800 (PST) From: Message-Id: <200012190843.eBJ8hGX65207@freefall.freebsd.org> To: ishmael27@home.com, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22797: New port: graphics/giblib Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: graphics/giblib State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 00:43:05 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22797 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 0:46:29 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 00:46:27 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 67B8137B400 for ; Tue, 19 Dec 2000 00:46:24 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eBJ8k9f25268; Tue, 19 Dec 2000 10:46:12 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.1/8.9.3) with ESMTP id eBJ8jul89069; Tue, 19 Dec 2000 10:45:56 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A3F2042.868404ED@FreeBSD.org> Date: Tue, 19 Dec 2000 10:45:54 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: sparky Cc: ports@FreeBSD.org Subject: Re: BSD and RAID 0 Softwarearrays?? References: <000801c0697e$c4863760$0a0a10ac@mega.jp> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org sparky wrote: > Hi, I would like to implement FreeBSD into my system. But before doing that i > need to know, whether there is the possibility to create (and use) RAID 0 > Soft Arrays?? I did it under Linux via mdtools. It's no problem to port these > tools, but the kernel needs SoftRAID support. Does the FreeBSD Kernel support > this feature? If not, how can i add it manually? (would it be possible to > port some parts of the Linux kernel??) RTFM vinum(4)? -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 0:47:16 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 00:47:14 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3CBF137B6C5; Tue, 19 Dec 2000 00:47:14 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ8lEk65842; Tue, 19 Dec 2000 00:47:14 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 00:47:14 -0800 (PST) From: Message-Id: <200012190847.eBJ8lEk65842@freefall.freebsd.org> To: ishmael27@home.com, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22798: New port: gom-0.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: gom-0.1 State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 00:47:08 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22798 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 1:13: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 01:13:07 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C1E6337B400; Tue, 19 Dec 2000 01:13:07 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ9D7g70865; Tue, 19 Dec 2000 01:13:07 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 01:13:07 -0800 (PST) From: Message-Id: <200012190913.eBJ9D7g70865@freefall.freebsd.org> To: jeremy@external.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23596: New Port: editors/pico Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New Port: editors/pico State-Changed-From-To: open->analyzed State-Changed-By: will State-Changed-When: Tue Dec 19 01:12:21 PST 2000 State-Changed-Why: Awaiting feedback from the Ports Wraith regarding whether a repocopy is needed on patches and perhaps other parts of the port. Other than that, this port is ready. http://www.freebsd.org/cgi/query-pr.cgi?pr=23596 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 1:25:50 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 01:25:48 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 928AE37B400; Tue, 19 Dec 2000 01:25:47 -0800 (PST) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id KAA00971; Tue, 19 Dec 2000 10:25:46 +0100 (CET) (envelope-from des@ofug.org) Sender: des@ofug.org X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Ade Lovett Cc: jmz@FreeBSD.org, ports@FreeBSD.org Subject: Re: XFree86-4 Port References: <20001217004251.A47353@external.org> <20001218134601.A5634@FreeBSD.org> From: Dag-Erling Smorgrav Date: 19 Dec 2000 10:25:46 +0100 In-Reply-To: Ade Lovett's message of "Mon, 18 Dec 2000 13:46:01 -0600" Message-ID: Lines: 20 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ade Lovett writes: > The real solution is for x11/XFree86-4 to be completely gutted and > turned into a meta-port, depending on all of the other XFree86-4 > components. No. > This was the original goal, and I have no idea (nor does it cease > to amaze me) why it hasn't been done. Because until XFree86 get a grip and start distributing their sources in a more reasonable format, each of the subports would need to unpack the entire 200-megabyte XFree86 source code and build significant portions of it - and if you have five subports, you end up with five copies of the source code (totalling one gigabyte!) plus assorted binaries before you get the chance to 'make clean'. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 1:40: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 01:40:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 90D3837B402 for ; Tue, 19 Dec 2000 01:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ9e1K74279; Tue, 19 Dec 2000 01:40:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 01:40:01 -0800 (PST) Resent-Message-Id: <200012190940.eBJ9e1K74279@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, ishmael27@home.com Received: from babylon.merseine.nu (c418236-a.clmba1.mo.home.com [24.12.203.134]) by hub.freebsd.org (Postfix) with ESMTP id B150B37B400 for ; Tue, 19 Dec 2000 01:30:29 -0800 (PST) Received: (from ishmael@localhost) by babylon.merseine.nu (8.11.1/8.11.1) id eBJ9Vnl65354; Tue, 19 Dec 2000 03:31:49 -0600 (CST) (envelope-from ishmael) Message-Id: <200012190931.eBJ9Vnl65354@babylon.merseine.nu> Date: Tue, 19 Dec 2000 03:31:49 -0600 (CST) From: ishmael27@home.com Sender: ishmael@babylon.merseine.nu Reply-To: ishmael27@home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23639: Update graphics/giblib to 1.1.0 (MAINTAINER) Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23639 >Category: ports >Synopsis: Update graphics/giblib to 1.1.0 (MAINTAINER) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 01:40:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jeremy Norris >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: FreeBSD babylon.merseine.nu 4.2-STABLE FreeBSD 4.2-STABLE #0: Fri Dec 15 07:53:17 CST 2000 ishmael@babylon.merseine.nu:/usr/src/sys/compile/BABYLON i386 >Description: Update graphics/giblib from 1.0.1 to 1.1.0 >How-To-Repeat: >Fix: diff -urN ../giblib.orig/Makefile ./Makefile --- ../giblib.orig/Makefile Tue Dec 19 03:26:21 2000 +++ ./Makefile Tue Dec 19 03:22:35 2000 @@ -6,7 +6,7 @@ # PORTNAME= giblib -PORTVERSION= 1.0.1 +PORTVERSION= 1.1.0 CATEGORIES= graphics MASTER_SITES= http://www.linuxbrit.co.uk/downloads/ diff -urN ../giblib.orig/distinfo ./distinfo --- ../giblib.orig/distinfo Tue Dec 19 03:26:44 2000 +++ ./distinfo Tue Dec 19 03:22:41 2000 @@ -1 +1 @@ -MD5 (giblib-1.0.1.tar.gz) = 90f97b9c637595f7bb1e9c7333a4c5f7 +MD5 (giblib-1.1.0.tar.gz) = 91bc09b8b84c79966695b3509a14666c diff -urN ../giblib.orig/pkg-plist ./pkg-plist --- ../giblib.orig/pkg-plist Tue Dec 19 03:26:38 2000 +++ ./pkg-plist Tue Dec 19 03:25:15 2000 @@ -1,6 +1,9 @@ bin/giblib-config +include/giblib/gib_btree.h +include/giblib/gib_hash.h include/giblib/gib_imlib.h include/giblib/gib_list.h +include/giblib/gib_stack.h include/giblib/gib_style.h include/giblib/gib_utils.h include/giblib/giblib.h >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 1:41:44 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 01:41:41 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (poynting.physics.purdue.edu [128.210.146.58]) by hub.freebsd.org (Postfix) with ESMTP id 1EB4E37B6A0; Tue, 19 Dec 2000 01:41:37 -0800 (PST) Received: from altair.firepipe.net (pm006-013.dialup.bignet.net [64.79.80.253]) by puck.firepipe.net (Postfix) with ESMTP id 17FA81A13; Tue, 19 Dec 2000 04:41:36 -0500 (EST) Received: by altair.firepipe.net (Postfix, from userid 1000) id 887D919C9; Tue, 19 Dec 2000 03:37:10 -0500 (EST) Date: Tue, 19 Dec 2000 03:37:10 -0500 From: Will Andrews To: Dag-Erling Smorgrav Cc: Ade Lovett , jmz@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: XFree86-4 Port Message-ID: <20001219033710.F1119@altair.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Dag-Erling Smorgrav , Ade Lovett , jmz@FreeBSD.ORG, ports@FreeBSD.ORG References: <20001217004251.A47353@external.org> <20001218134601.A5634@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Tue, Dec 19, 2000 at 10:25:46AM +0100 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: will@altair.firepipe.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Dec 19, 2000 at 10:25:46AM +0100, Dag-Erling Smorgrav wrote: > Because until XFree86 get a grip and start distributing their sources > in a more reasonable format, each of the subports would need to unpack > the entire 200-megabyte XFree86 source code and build significant > portions of it - and if you have five subports, you end up with five > copies of the source code (totalling one gigabyte!) plus assorted > binaries before you get the chance to 'make clean'. It seems to me that the number one problem we encounter these days is poor release engineering on the part of others. I really really wish folks in other projects (cf. XFree86, GNOME, gd, various GNU stuff, and so forth). Okay, I know I'm stating the obvious and we don't live in a perfect world. I'm just saying it's an apparent problem evident in the open source world that really needs to be addressed sometime. ;-( *deep sigh* -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 1:41:46 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 01:41:43 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C374737B699; Tue, 19 Dec 2000 01:41:41 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ9ffl74745; Tue, 19 Dec 2000 01:41:41 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 01:41:41 -0800 (PST) From: Message-Id: <200012190941.eBJ9ffl74745@freefall.freebsd.org> To: jeremy@external.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23467: New Port: audio/p5-Xmms Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New Port: audio/p5-Xmms State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 01:41:33 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23467 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 1:45:20 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 01:45:19 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B9EE37B400; Tue, 19 Dec 2000 01:45:19 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ9jJn75489; Tue, 19 Dec 2000 01:45:19 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 01:45:19 -0800 (PST) From: Message-Id: <200012190945.eBJ9jJn75489@freefall.freebsd.org> To: jeremy@external.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23484: New Port: textproc/p5-dTemplate Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New Port: textproc/p5-dTemplate State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 01:45:12 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23484 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 1:49: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 01:49:08 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1EB2037B400; Tue, 19 Dec 2000 01:49:08 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ9n8X76387; Tue, 19 Dec 2000 01:49:08 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 01:49:08 -0800 (PST) From: Message-Id: <200012190949.eBJ9n8X76387@freefall.freebsd.org> To: roman@xpert.com, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22829: NEW PORT: archivers/p5-Archive-Tar Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NEW PORT: archivers/p5-Archive-Tar State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 01:48:24 PST 2000 State-Changed-Why: Committed, thanks. I forgot to say with the last PR (and it applies to this one as well): you do not need the CC/CCFLAGS overriding for a perl module port that doesn't have any C code. http://www.freebsd.org/cgi/query-pr.cgi?pr=22829 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 1:57:34 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 01:57:32 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B9DB837B400; Tue, 19 Dec 2000 01:57:32 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJ9vWi77521; Tue, 19 Dec 2000 01:57:32 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 01:57:32 -0800 (PST) From: Message-Id: <200012190957.eBJ9vWi77521@freefall.freebsd.org> To: olgeni@uli.it, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22853: NEW PORT: graphics/blender Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NEW PORT: graphics/blender State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 01:57:21 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22853 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 2: 0: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 02:00:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AD6BD37B402 for ; Tue, 19 Dec 2000 02:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJA01H77762; Tue, 19 Dec 2000 02:00:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 02:00:01 -0800 (PST) Resent-Message-Id: <200012191000.eBJA01H77762@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, kappa@zombie.antar.bryansk.ru Received: from zombie.antar.bryansk.ru (zombie.antar.bryansk.ru [195.239.214.68]) by hub.freebsd.org (Postfix) with ESMTP id 4B3AF37B400 for ; Tue, 19 Dec 2000 01:51:25 -0800 (PST) Received: (from kappa@localhost) by zombie.antar.bryansk.ru (8.11.1/8.11.1) id eBJ9pFA92672; Tue, 19 Dec 2000 12:51:16 +0300 (MSK) (envelope-from kappa) Message-Id: <200012190951.eBJ9pFA92672@zombie.antar.bryansk.ru> Date: Tue, 19 Dec 2000 12:51:16 +0300 (MSK) From: Alex Kapranoff Reply-To: kappa@zombie.antar.bryansk.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23640: [port update] www/p5-HTML-Embperl update to 1.3.0 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23640 >Category: ports >Synopsis: [port update] www/p5-HTML-Embperl update to 1.3.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 02:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Alex Kapranoff >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: >How-To-Repeat: >Fix: diff -ru /usr/ports/www/p5-HTML-Embperl/Makefile ./Makefile --- /usr/ports/www/p5-HTML-Embperl/Makefile Thu Nov 9 08:03:37 2000 +++ ./Makefile Tue Dec 19 12:38:58 2000 @@ -6,20 +6,19 @@ # PORTNAME= HTML-Embperl -PORTVERSION= 1.3b2 +PORTVERSION= 1.3.0 CATEGORIES= www perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= HTML PKGNAMEPREFIX= p5- -MAINTAINER= ports@FreeBSD.org +MAINTAINER= kapr@crosswinds.net BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/mod_perl.pm:${PORTSDIR}/www/p5-Apache -IS_INTERACTIVE= yes USE_PERL5= yes -MAN3= HTML::Embperl.3 HTML::EmbperlD.3 +MAN3= HTML::Embperl.3 HTML::EmbperlD.3 HTML::EmbperlObject.3 MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} do-configure: diff -ru /usr/ports/www/p5-HTML-Embperl/distinfo ./distinfo --- /usr/ports/www/p5-HTML-Embperl/distinfo Sun Mar 19 08:47:29 2000 +++ ./distinfo Tue Dec 19 11:37:20 2000 @@ -1 +1 @@ -MD5 (HTML-Embperl-1.3b2.tar.gz) = d49cc9040f7ad6c78c19615ec668ce59 +MD5 (HTML-Embperl-1.3.0.tar.gz) = d62c04100c70161733c9ff38602ee528 diff -ru /usr/ports/www/p5-HTML-Embperl/files/patch-aa ./files/patch-aa --- /usr/ports/www/p5-HTML-Embperl/files/patch-aa Sun Mar 19 08:47:29 2000 +++ ./files/patch-aa Tue Dec 19 12:09:52 2000 @@ -1,15 +1,15 @@ ---- Makefile.PL.orig Sat Feb 12 06:18:23 2000 -+++ Makefile.PL Sun Mar 19 13:19:43 2000 -@@ -24,7 +24,7 @@ +--- Makefile.PL.orig Mon Nov 13 10:14:28 2000 ++++ Makefile.PL Tue Dec 19 12:09:13 2000 +@@ -26,7 +26,7 @@ %neededmodules = ( 'mod_perl.c' => { name => 'perl_module', -- path => ['$apache_src/modules/perl/libperl.so', '$EPBINDIR/modules/libperl.so'], -+ path => ['/usr/local/libexec/apache/libperl.so', '$apache_src/modules/perl/libperl.so', '$EPBINDIR/modules/libperl.so'], - win32path => ['$EPBINDIR/modules/apachemoduleperl.dll'], - win32path => ['$mpdll'], +- path => ['$apache_src/modules/perl/libperl.so', '$EPBINDIR/modules/libperl.so', '$apache_src/mod_perl.so'], ++ path => ['/usr/local/libexec/apache/libperl.so', '$EPBINDIR/modules/libperl.so', '$apache_src/mod_perl.so'], + win32path => ['$mpdll', '$mpdll/apachemoduleperl.dll', '$EPBINDIR/modules/apachemoduleperl.dll'], file => 'libperl.so', -@@ -385,18 +385,7 @@ + win32file => 'apachemoduleperl.dll', +@@ -468,23 +468,7 @@ #### look in which subdir the include files resides #### @@ -25,7 +25,12 @@ - { - $inc_dir = "$apache_src/include" ; - } -+ $inc_dir = "/usr/local/include/apache"; - +- elsif (-e "$ENV{APACHE_HDR}/httpd.h") +- { +- $inc_dir = "$ENV{APACHE_HDR}" ; +- } +- ++ $inc_dir = "/usr/local/include/apache"; if ($win32) + { diff -ru /usr/ports/www/p5-HTML-Embperl/pkg-descr ./pkg-descr --- /usr/ports/www/p5-HTML-Embperl/pkg-descr Sun Mar 19 08:47:29 2000 +++ ./pkg-descr Tue Dec 19 12:47:29 2000 @@ -3,4 +3,4 @@ Online documentation of this module as well as related modules can be found at: -WWW: http://search.cpan.org/doc/GRICHTER/HTML-Embperl-1.3b2/EmbperlD.pod +WWW: http://perl.apache.org/embperl/ diff -ru /usr/ports/www/p5-HTML-Embperl/pkg-plist ./pkg-plist --- /usr/ports/www/p5-HTML-Embperl/pkg-plist Sun Mar 19 08:47:29 2000 +++ ./pkg-plist Tue Dec 19 12:34:40 2000 @@ -1,20 +1,18 @@ lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/HTML/Embperl/Embperl.so lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/HTML/Embperl/Embperl.bs +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/Features.pod lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/IntroD.pod -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/embpcgi.pl +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/Embperl.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/FeaturesD.pod lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/Embperl/Mail.pm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/Embperl/Session.pm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/Embperl/Module.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/Embperl.pod lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/INSTALL.pod -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/Faq.pod lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/EmbperlObject.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/Faq.pod lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/Changes.pod -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/embpcgi.test.pl -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/Features.pod -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/Embperl.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/embpexec.pl -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/FeaturesD.pod -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/Embperl.pod lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/EmbperlD.pod lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/Intro.pod +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/HTML/NEWS.pod lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/HTML/Embperl/.packlist >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 2: 2:29 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 02:02:27 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BAE2337B699; Tue, 19 Dec 2000 02:02:27 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJA2R178134; Tue, 19 Dec 2000 02:02:27 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 02:02:27 -0800 (PST) From: Message-Id: <200012191002.eBJA2R178134@freefall.freebsd.org> To: aaron@mutex.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22938: New port: litestream mp3 streaming system Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: litestream mp3 streaming system State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 02:02:20 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22938 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 2: 2:35 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 02:02:33 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from babylon.merseine.nu (c418236-a.clmba1.mo.home.com [24.12.203.134]) by hub.freebsd.org (Postfix) with ESMTP id A651737B402 for ; Tue, 19 Dec 2000 02:02:32 -0800 (PST) Received: (from ishmael@localhost) by babylon.merseine.nu (8.11.1/8.11.1) id eBJA3Ii65571; Tue, 19 Dec 2000 04:03:18 -0600 (CST) (envelope-from ishmael) Date: Tue, 19 Dec 2000 04:03:18 -0600 From: Jeremy Norris To: Dag-Erling Smorgrav Cc: ports@FreeBSD.ORG Subject: Re: XFree86-4 Port Message-ID: <20001219040318.B7935@babylon.merseine.nu> References: <20001217004251.A47353@external.org> <20001218134601.A5634@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Tue, Dec 19, 2000 at 10:25:46AM +0100 Sender: ishmael@babylon.merseine.nu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org What about doing the following in each of the XFree86-4-subports: MASTERDIR=${PORTSDIR}/x11/XFree86-4 WRKDIR=${MASTERDIR}/work Then make XFree86-4 like other meta-ports, except have it fetch the distfiles. Thus all the XFree86-4-subports could share the same working directory, no? Jeremy On Tue, Dec 19, 2000 at 10:25:46AM +0100, Dag-Erling Smorgrav wrote: > Ade Lovett writes: > > The real solution is for x11/XFree86-4 to be completely gutted and > > turned into a meta-port, depending on all of the other XFree86-4 > > components. > > No. > > > This was the original goal, and I have no idea (nor does it cease > > to amaze me) why it hasn't been done. > > Because until XFree86 get a grip and start distributing their sources > in a more reasonable format, each of the subports would need to unpack > the entire 200-megabyte XFree86 source code and build significant > portions of it - and if you have five subports, you end up with five > copies of the source code (totalling one gigabyte!) plus assorted > binaries before you get the chance to 'make clean'. > > DES > -- > Dag-Erling Smorgrav - des@ofug.org > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 2:14:10 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 02:14:09 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4501037B402; Tue, 19 Dec 2000 02:14:09 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJAE6u81258; Tue, 19 Dec 2000 02:14:06 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 02:14:06 -0800 (PST) From: Message-Id: <200012191014.eBJAE6u81258@freefall.freebsd.org> To: perky@python.or.kr, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22970: New Port : textproc/py2html Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New Port : textproc/py2html State-Changed-From-To: open->feedback State-Changed-By: will State-Changed-When: Tue Dec 19 02:13:03 PST 2000 State-Changed-Why: I can't seem to fetch this tarball...: >> py2html-0.6.tar.gz doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from http://freebsd-kr.org/pub/FreeBSD/ports/distfiles/. fetch: py2html-0.6.tar.gz: Not Found >> Attempting to fetch from ftp://python.or.kr/pub/FreeBSD/ports/distfiles/. fetch: py2html-0.6.tar.gz: Undefined error: 0 Some investigation shows that "python.or.kr" doesn't exist. http://www.freebsd.org/cgi/query-pr.cgi?pr=22970 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 2:16:57 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 02:16:55 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A262E37B400; Tue, 19 Dec 2000 02:16:55 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJAGtR81597; Tue, 19 Dec 2000 02:16:55 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 02:16:55 -0800 (PST) From: Message-Id: <200012191016.eBJAGtR81597@freefall.freebsd.org> To: vt@bsdjeunz.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22985: NEW PORT : 6tunnel (2) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NEW PORT : 6tunnel (2) State-Changed-From-To: open->feedback State-Changed-By: will State-Changed-When: Tue Dec 19 02:15:35 PST 2000 State-Changed-Why: What purpose does this program serve that you can't use with the base KAME tools in 4.x? I've never had trouble tunnelling IPv6 over IPv4 via gifconfig. http://www.freebsd.org/cgi/query-pr.cgi?pr=22985 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 2:20:59 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 02:20:58 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0141D37B69B; Tue, 19 Dec 2000 02:20:54 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJAKsc82133; Tue, 19 Dec 2000 02:20:54 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 02:20:54 -0800 (PST) From: Message-Id: <200012191020.eBJAKsc82133@freefall.freebsd.org> To: sluggo@unknown.nu, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22997: New Port: misc/ftree Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New Port: misc/ftree State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 02:20:49 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22997 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 2:31:31 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 02:31:27 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9EDD037B698; Tue, 19 Dec 2000 02:31:27 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJAVRJ83892; Tue, 19 Dec 2000 02:31:27 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 02:31:27 -0800 (PST) From: Message-Id: <200012191031.eBJAVRJ83892@freefall.freebsd.org> To: mike@urgle.com, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23005: New port - netmask-2.3.3 - Tool for generating terse netmasks. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port - netmask-2.3.3 - Tool for generating terse netmasks. State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 02:29:42 PST 2000 State-Changed-Why: Committed, thanks. A couple comments: Be careful not to let stray spaces into your Makefile, that can screw up the variable assignments and such. Also, you can use ${PORTVERSION} in DISTNAME then substitute the _ for - in WRKSRC. That simplifies things somewhat. Finally, we don't allow names in MAINTAINER, to my knowledge. Thanks for your work. http://www.freebsd.org/cgi/query-pr.cgi?pr=23005 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 2:38: 2 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 02:38:00 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 52A0737B402 for ; Tue, 19 Dec 2000 02:37:59 -0800 (PST) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id LAA01291; Tue, 19 Dec 2000 11:37:54 +0100 (CET) (envelope-from des@ofug.org) Sender: des@ofug.org X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Jeremy Norris Cc: ports@FreeBSD.ORG Subject: Re: XFree86-4 Port References: <20001217004251.A47353@external.org> <20001218134601.A5634@FreeBSD.org> <20001219040318.B7935@babylon.merseine.nu> From: Dag-Erling Smorgrav Date: 19 Dec 2000 11:37:53 +0100 In-Reply-To: Jeremy Norris's message of "Tue, 19 Dec 2000 04:03:18 -0600" Message-ID: Lines: 17 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jeremy Norris writes: > What about doing the following in each of the XFree86-4-subports: > MASTERDIR=${PORTSDIR}/x11/XFree86-4 > WRKDIR=${MASTERDIR}/work > Then make XFree86-4 like other meta-ports, except have it fetch the > distfiles. > > Thus all the XFree86-4-subports could share the same working directory, no? No, because the ports system keeps metadata in WRKDIR. You might be able to get away with WRKSRC=${MASTERDIR}/work/xc though. But it'd be very tricky to get all the targets (especially the fetch, extract and patch targets) for each port right. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 2:40:14 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 02:40:09 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 755AF37B698 for ; Tue, 19 Dec 2000 02:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJAe3A85059; Tue, 19 Dec 2000 02:40:03 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Dec 2000 02:40:03 -0800 (PST) Message-Id: <200012191040.eBJAe3A85059@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jeremy Norris Subject: Re: ports/23639: Update graphics/giblib to 1.1.0 (MAINTAINER) Reply-To: Jeremy Norris Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23639; it has been noted by GNATS. From: Jeremy Norris To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/23639: Update graphics/giblib to 1.1.0 (MAINTAINER) Date: Tue, 19 Dec 2000 04:39:02 -0600 I messed that patch up, please use this one instead. diff -urN ../giblib.orig/Makefile ./Makefile --- ../giblib.orig/Makefile Tue Dec 19 03:26:21 2000 +++ ./Makefile Tue Dec 19 03:22:35 2000 @@ -6,7 +6,7 @@ # PORTNAME= giblib -PORTVERSION= 1.0.1 +PORTVERSION= 1.1.0 CATEGORIES= graphics MASTER_SITES= http://www.linuxbrit.co.uk/downloads/ diff -urN ../giblib.orig/distinfo ./distinfo --- ../giblib.orig/distinfo Tue Dec 19 03:26:44 2000 +++ ./distinfo Tue Dec 19 03:22:41 2000 @@ -1 +1 @@ -MD5 (giblib-1.0.1.tar.gz) = 90f97b9c637595f7bb1e9c7333a4c5f7 +MD5 (giblib-1.1.0.tar.gz) = 91bc09b8b84c79966695b3509a14666c diff -urN ../giblib.orig/pkg-plist ./pkg-plist --- ../giblib.orig/pkg-plist Tue Dec 19 03:26:38 2000 +++ ./pkg-plist Tue Dec 19 03:25:15 2000 @@ -1,6 +1,9 @@ bin/giblib-config +include/giblib/gib_btree.h +include/giblib/gib_hash.h include/giblib/gib_imlib.h include/giblib/gib_list.h +include/giblib/gib_queue.h +include/giblib/gib_stack.h include/giblib/gib_style.h include/giblib/gib_utils.h include/giblib/giblib.h On Tue, Dec 19, 2000 at 01:40:01AM -0800, gnats-admin@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/23639'. > The individual assigned to look at your > report is: freebsd-ports. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=23639 > > >Category: ports > >Responsible: freebsd-ports > >Synopsis: Update graphics/giblib to 1.1.0 (MAINTAINER) > >Arrival-Date: Tue Dec 19 01:40:00 PST 2000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 2:41:12 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 02:41:11 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4E82F37B400; Tue, 19 Dec 2000 02:41:11 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJAfAR85235; Tue, 19 Dec 2000 02:41:10 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 02:41:10 -0800 (PST) From: Message-Id: <200012191041.eBJAfAR85235@freefall.freebsd.org> To: blaz@medinet.si, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23025: NEW PORT: converters/p5-Convert-UUlib Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NEW PORT: converters/p5-Convert-UUlib State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 02:40:12 PST 2000 State-Changed-Why: Committed, thanks. A couple comments: First, please remember to tabify your port Makefile headers. Second, remember that a perl module that compiles C code must respect CC/CFLAGS through the environment variables. Other than that, good job. http://www.freebsd.org/cgi/query-pr.cgi?pr=23025 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 2:46:14 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 02:46:12 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D83437B404; Tue, 19 Dec 2000 02:46:12 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJAkCI85686; Tue, 19 Dec 2000 02:46:12 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 02:46:12 -0800 (PST) From: Message-Id: <200012191046.eBJAkCI85686@freefall.freebsd.org> To: blaz@medinet.si, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23026: NEW PORT: sysutils/p5-Unix-Syslog Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NEW PORT: sysutils/p5-Unix-Syslog State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 02:45:21 PST 2000 State-Changed-Why: Committed, thanks. The same things apply to this port as from p5-Convert-UUlib, but also (and this applies to UUlib port too), don't forget that the $FreeBSD$ string can't have that ": " extraneous stuff in there. http://www.freebsd.org/cgi/query-pr.cgi?pr=23026 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 2:46:49 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 02:46:48 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from babylon.merseine.nu (c418236-a.clmba1.mo.home.com [24.12.203.134]) by hub.freebsd.org (Postfix) with ESMTP id AF84837B698 for ; Tue, 19 Dec 2000 02:46:47 -0800 (PST) Received: (from ishmael@localhost) by babylon.merseine.nu (8.11.1/8.11.1) id eBJAlZm69835; Tue, 19 Dec 2000 04:47:35 -0600 (CST) (envelope-from ishmael) Date: Tue, 19 Dec 2000 04:47:35 -0600 From: Jeremy Norris To: Dag-Erling Smorgrav Cc: ports@FreeBSD.ORG Subject: Re: XFree86-4 Port Message-ID: <20001219044735.D7935@babylon.merseine.nu> References: <20001217004251.A47353@external.org> <20001218134601.A5634@FreeBSD.org> <20001219040318.B7935@babylon.merseine.nu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Tue, Dec 19, 2000 at 11:37:53AM +0100 Sender: ishmael@babylon.merseine.nu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org What about a post-install target that removes the metadata from WRKDIR? This way each port along the chain is fooled. Then the only problem is the extract/patch targets. (If you hardcode WRKSRC, you don't let people set the working dir outside of the ports hierarchy). I'm fiddling around with this idea right now, although it may prove in the end unfeasible. I'll post patches if I think I get something workable together. Jeremy On Tue, Dec 19, 2000 at 11:37:53AM +0100, Dag-Erling Smorgrav wrote: > Jeremy Norris writes: > > What about doing the following in each of the XFree86-4-subports: > > MASTERDIR=${PORTSDIR}/x11/XFree86-4 > > WRKDIR=${MASTERDIR}/work > > Then make XFree86-4 like other meta-ports, except have it fetch the > > distfiles. > > > > Thus all the XFree86-4-subports could share the same working directory, no? > > No, because the ports system keeps metadata in WRKDIR. You might be > able to get away with WRKSRC=${MASTERDIR}/work/xc though. But it'd be > very tricky to get all the targets (especially the fetch, extract and > patch targets) for each port right. > > DES > -- > Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 2:49:15 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 02:49:14 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BE28237B400; Tue, 19 Dec 2000 02:49:14 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJAnC586099; Tue, 19 Dec 2000 02:49:12 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 02:49:12 -0800 (PST) From: Message-Id: <200012191049.eBJAnC586099@freefall.freebsd.org> To: perky@python.or.kr, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23151: NEW PORT : sysutils/wake-on-lan Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NEW PORT : sysutils/wake-on-lan State-Changed-From-To: open->feedback State-Changed-By: will State-Changed-When: Tue Dec 19 02:48:19 PST 2000 State-Changed-Why: Hi again! I'm having trouble with this port of yours as well.. I can't get the distfile on any of the sites in the MASTER_SITES list in this port either. What's going on here? http://www.freebsd.org/cgi/query-pr.cgi?pr=23151 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 2:56:33 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 02:56:30 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F63F37B402; Tue, 19 Dec 2000 02:56:30 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJAuTY86790; Tue, 19 Dec 2000 02:56:29 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 02:56:29 -0800 (PST) From: Message-Id: <200012191056.eBJAuTY86790@freefall.freebsd.org> To: dnelson@emsphone.com, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23158: new port: e3 text editor Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: e3 text editor State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 02:55:55 PST 2000 State-Changed-Why: This port was committed about 14 hours ago by demon. http://www.freebsd.org/cgi/query-pr.cgi?pr=23158 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 3: 1:21 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 03:01:20 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 88D2C37B400 for ; Tue, 19 Dec 2000 03:01:19 -0800 (PST) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id MAA01399; Tue, 19 Dec 2000 12:01:13 +0100 (CET) (envelope-from des@ofug.org) Sender: des@ofug.org X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Jeremy Norris Cc: ports@FreeBSD.ORG Subject: Re: XFree86-4 Port References: <20001217004251.A47353@external.org> <20001218134601.A5634@FreeBSD.org> <20001219040318.B7935@babylon.merseine.nu> <20001219044735.D7935@babylon.merseine.nu> From: Dag-Erling Smorgrav Date: 19 Dec 2000 12:01:12 +0100 In-Reply-To: Jeremy Norris's message of "Tue, 19 Dec 2000 04:47:35 -0600" Message-ID: Lines: 8 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jeremy Norris writes: > What about a post-install target that removes the metadata from WRKDIR? No. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 3: 2:24 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 03:02:23 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 517C637B400; Tue, 19 Dec 2000 03:02:23 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJB2N187801; Tue, 19 Dec 2000 03:02:23 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 03:02:23 -0800 (PST) From: Message-Id: <200012191102.eBJB2N187801@freefall.freebsd.org> To: joseph@randomnetworks.com, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23181: [NEW PORT] net/sendip Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [NEW PORT] net/sendip State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 03:02:12 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23181 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 3:15: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 03:15:07 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 38D2A37B400; Tue, 19 Dec 2000 03:15:07 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJBF7o91144; Tue, 19 Dec 2000 03:15:07 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 03:15:07 -0800 (PST) From: Message-Id: <200012191115.eBJBF7o91144@freefall.freebsd.org> To: simon@comsys.ntu-kpi.kiev.ua, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23265: New port: IP Accounting Daemon, version 1.0.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: IP Accounting Daemon, version 1.0.1 State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 03:12:28 PST 2000 State-Changed-Why: Committed, thanks! Next time, please use a sane formatting in your Makefile. Also, remember to check for structure changes in the ports system - your port's structure was 2-3 months old. I also removed one of the extra WWW lines in the descr. http://www.freebsd.org/cgi/query-pr.cgi?pr=23265 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 3:18:22 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 03:18:20 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AD62737B400; Tue, 19 Dec 2000 03:18:20 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJBIH591529; Tue, 19 Dec 2000 03:18:17 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 03:18:17 -0800 (PST) From: Message-Id: <200012191118.eBJBIH591529@freefall.freebsd.org> To: sada@bsdclub.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org, sada@FreeBSD.org Subject: Re: ports/23267: New port submittion: devel/lxr (lxr-0.3) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port submittion: devel/lxr (lxr-0.3) State-Changed-From-To: open->feedback State-Changed-By: will State-Changed-When: Tue Dec 19 03:16:27 PST 2000 State-Changed-Why: SADA-san, I think you should commit this port, with one minor modification: mention how you aliased lxr in your httpd.conf in ${PKGMESSAGE} so people can do it for their own apache installation. Other than that, I see no problem with this port going into the tree as-is. Responsible-Changed-From-To: freebsd-ports->sada Responsible-Changed-By: will Responsible-Changed-When: Tue Dec 19 03:16:27 PST 2000 Responsible-Changed-Why: SADA-san made this port. http://www.freebsd.org/cgi/query-pr.cgi?pr=23267 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 3:28:43 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 03:28:42 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F3E0737B400; Tue, 19 Dec 2000 03:28:41 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJBSfE92634; Tue, 19 Dec 2000 03:28:41 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 03:28:41 -0800 (PST) From: Message-Id: <200012191128.eBJBSfE92634@freefall.freebsd.org> To: nmh@t3x.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23268: New port: lang/t3x-680 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: lang/t3x-680 State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 03:27:15 PST 2000 State-Changed-Why: Committed, thanks. Next time please conform your port to the current structure of the tree. Also, I found your scripts/configure script unnecessary, since you can use a do-configure target in the port Makefile to do the equivalent job. Additionally, I put your port in the tree as ports/lang/t3x instead of ports/lang/t3x-681. http://www.freebsd.org/cgi/query-pr.cgi?pr=23268 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 3:37:54 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 03:37:53 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0EDE537B400; Tue, 19 Dec 2000 03:37:53 -0800 (PST) Received: (from wosch@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJBbqM94731; Tue, 19 Dec 2000 03:37:52 -0800 (PST) (envelope-from wosch) Date: Tue, 19 Dec 2000 03:37:52 -0800 (PST) From: Message-Id: <200012191137.eBJBbqM94731@freefall.freebsd.org> To: eserte@cs.tu-berlin.de, wosch@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23631: update of german/BBBike port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update of german/BBBike port State-Changed-From-To: open->closed State-Changed-By: wosch State-Changed-When: Tue Dec 19 03:37:37 PST 2000 State-Changed-Why: patch applied, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23631 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 3:45:23 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 03:45:22 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 59A9537B400; Tue, 19 Dec 2000 03:45:22 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJBjLD95766; Tue, 19 Dec 2000 03:45:21 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 03:45:21 -0800 (PST) From: Message-Id: <200012191145.eBJBjLD95766@freefall.freebsd.org> To: ryan@manunkind.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23318: New port: loserjabber (a deskutil to allow livejournal.com users to update their journals) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: loserjabber (a deskutil to allow livejournal.com users to update their journals) State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 03:45:16 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23318 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 3:47:23 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 03:46:58 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from nevermind.kiev.ua (unknown [212.109.53.33]) by hub.freebsd.org (Postfix) with ESMTP id 3D5DD37B400 for ; Tue, 19 Dec 2000 03:46:52 -0800 (PST) Received: (from never@localhost) by nevermind.kiev.ua (8.11.1/8.11.1) id eBJBkk559658 for freebsd-ports@freebsd.org; Tue, 19 Dec 2000 13:46:46 +0200 (EET) (envelope-from never) Date: Tue, 19 Dec 2000 13:46:46 +0200 From: Nevermind To: freebsd-ports@freebsd.org Subject: Minor patch to xmms's ru.po Message-ID: <20001219134646.G55545@nevermind.kiev.ua> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="NDin8bjvE/0mNLFQ" Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --NDin8bjvE/0mNLFQ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello! I've just sent patch to xmms/po/ru.po to xmms developers, because previous translation was very bad, a lot of mistakes in grammatics/punctuation/stylistic. Russian-speaking porters, I'm attaching patch, maybe you will find more mistakes than I've found. -- Alexandr P. Kovalenko http://nevermind.kiev.ua/ NEVE-RIPE --NDin8bjvE/0mNLFQ Content-Type: text/plain; charset=koi8-r Content-Disposition: attachment; filename="ru.po.patch" Content-Transfer-Encoding: 8bit --- xmms.orig/po/ru.po Tue Dec 19 11:22:56 2000 +++ xmms/po/ru.po Tue Dec 19 13:40:17 2000 @@ -1,5 +1,6 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) 1999 Free Software Foundation, Inc. +# Alexandr P. Kovalenko # Koshelev Maxim , 2000 # Aleksey Smirnov , 2000 # @@ -16,7 +17,7 @@ #: Effect/voice/about.c:31 msgid "About Voice Removal Plugin" -msgstr "ï ÐÌÕÇÉÎÅ ÕÄÁÌÅÎÉÑ ÇÏÌÏÓÁ" +msgstr "ï ÐÌÁÇÉÎÅ ÕÄÁÌÅÎÉÑ ÇÏÌÏÓÁ" #: Effect/voice/about.c:32 msgid "" @@ -24,7 +25,7 @@ "\n" "A simple voice removal plugin by Anders Carlsson " msgstr "" -"òÁÓÛÉÒÅÎÉÅ ÄÌÑ XMMS õÄÁÌÅÎÉÅ çÏÌÓÁ\n" +"òÁÓÛÉÒÅÎÉÅ ÄÌÑ XMMS õÄÁÌÅÎÉÅ çÏÌÏÓÁ\n" "ðÒÏÓÔÏÅ ÒÁÓÛÉÒÅÎÉÅ õÄÁÌÅÎÉÅ çÏÌÏÓÁ ÎÁÐÉÓÁÎ Anders'ÏÍ Carlsson'ÏÍ " "" @@ -52,12 +53,12 @@ #: Effect/voice/voice.c:23 #, c-format msgid "Voice removal plugin %s" -msgstr "ï ÐÌÕÇÉÎÅ ÕÄÁÌÅÎÉÑ ÇÏÌÏÓÁ %s" +msgstr "ï ÐÌÁÇÉÎÅ ÕÄÁÌÅÎÉÑ ÇÏÌÏÓÁ %s" #: Effect/echo_plugin/echo.c:43 #, c-format msgid "Echo Plugin %s" -msgstr "ï ÐÌÕÇÉÎÅ üÈÏ %s" +msgstr "ï ÐÌÁÇÉÎÅ üÈÏ %s" #: Effect/echo_plugin/gui.c:8 msgid "" @@ -66,7 +67,7 @@ "\n" "Surround echo by Carl van Schaik 1999" msgstr "" -"üÈÏ ÐÌÕÇÉÎ\n" +"üÈÏ ÐÌÁÇÉÎ\n" "\n" " Johan Levin 1999." @@ -80,7 +81,7 @@ #: Effect/echo_plugin/gui.c:87 msgid "Delay: (ms)" -msgstr "úÁÄÅÒÛËÁ: (× ÍÉÌÉÓÅËÕÎÄÁÈ)" +msgstr "úÁÄÅÒÖËÁ: (× ÍÉÌÉÓÅËÕÎÄÁÈ)" #: Effect/echo_plugin/gui.c:92 msgid "Feedback: (%)" @@ -126,11 +127,11 @@ #: Effect/stereo_plugin/stereo.c:35 #, c-format msgid "Extra Stereo Plugin %s" -msgstr "ï üËÓÔÒÁ óÔÅÒÅÏ ÐÌÕÇÉÎÅ %s" +msgstr "ï üËÓÔÒÁ óÔÅÒÅÏ ÐÌÁÇÉÎÅ %s" #: Effect/stereo_plugin/stereo.c:55 msgid "About Extra Stereo Plugin" -msgstr "ï üËÓÔÒÁ óÔÅÒÅÏ ÐÌÕÇÉÎÅ" +msgstr "ï üËÓÔÒÁ óÔÅÒÅÏ ÐÌÁÇÉÎÅ" #: Effect/stereo_plugin/stereo.c:97 msgid "Configure Extra Stereo" @@ -245,7 +246,7 @@ #: General/ir/configure.c:135 #, c-format msgid "`%s' Button Setup" -msgstr "îÁÓÔÒÏÊËÁ ËÎÏÐËÉ`%s'" +msgstr "îÁÓÔÒÏÊËÁ ËÎÏÐËÉ `%s'" #: General/ir/configure.c:145 msgid "Enter code or use remote" @@ -253,7 +254,7 @@ #: General/ir/configure.c:244 msgid "XMMS IRman Configuration" -msgstr "îÁÓÔÒÏÉËÁ XMMS IRman" +msgstr "îÁÓÔÒÏÊËÁ XMMS IRman" #: General/ir/configure.c:258 Input/cdaudio/configure.c:106 #: Input/cdaudio/configure.c:115 @@ -270,7 +271,7 @@ #: General/ir/configure.c:318 msgid "Playlists:" -msgstr "óÐÉÓÏËÉ ÐÅÓÅÎ:" +msgstr "óÐÉÓËÉ ÐÅÓÅÎ:" #: General/ir/configure.c:347 msgid "General" @@ -293,7 +294,7 @@ msgstr "" "óÏÚÄÁÎ Charles Sielski \n" "õÐÒÁ×ÌÑÊÔÅ XMMS Ó×ÏÉÍ ÐÕÌØÔÏÍ ÏÔ ÔÅÌÅ×ÉÚÏÒÁ!\n" -"óÔÒÁÎÉÃÁ IRman - http:\t//www.evation.com/irman/" +"óÔÒÁÎÉÃÁ IRman - http://www.evation.com/irman/" #: General/joystick/joy.c:58 #, c-format @@ -433,7 +434,7 @@ #: General/song_change/song_change.c:129 msgid "Song Change Configuration" -msgstr "Configuration du Changement de Titre" +msgstr "ëÏÎÆÉÇÕÒÁÃÉÑ ÓÍÅÎÙ ÐÅÓÎÉ" #: General/song_change/song_change.c:137 msgid "Song change" @@ -448,7 +449,7 @@ "Shell-command to run when xmms changes song. It can optionally include the " "string %%s which will be replaced by the new song title." msgstr "" -"ëÏÍÍÁÎÄÁ ÄÌÑ ÚÁÐÕÓËÁ ËÏÇÄÁ xxms ÍÅÎÑÅÔ ÐÅÓÎÀ. íÏÖÅÔ ÏÂÃÉÏÎÁÌØÎÏ ×ËÌÀÞÁÔØ " +"ëÏÍÍÁÎÄÁ, ÚÁÐÕÓËÁÅÍÁÑ ËÏÇÄÁ xmms ÓÍÅÎÑÅÔ ÐÅÓÎÀ. íÏÖÅÔ ÏÐÃÉÏÎÁÌØÎÏ ×ËÌÀÞÁÔØ " "ÓÔÒÏËÕ %%s ËÏÔÏÒÁÑ ÂÕÄÅÔ ÚÁÍÅÝÅÎÁ ÎÁÚ×ÁÎÉÅÍ ÐÅÓÎÉ." #: General/song_change/song_change.c:168 General/song_change/song_change.c:192 @@ -457,7 +458,7 @@ #: General/song_change/song_change.c:181 msgid "Shell-command to run when xmms reaches the end of the playlist." -msgstr "ëÏÍÁÎÄÁ ÄÌÑ ÚÁÐÕÓËÁ ËÏÇÄÁ xmms ÄÏÓÔÉÇÁÅÔ ËÏÎÃÁ ÓÐÉÓËÁ ÐÅÓÅÎ." +msgstr "ëÏÍÁÎÄÁ, ÚÁÐÕÓËÁÅÍÁÑ ËÏÇÄÁ xmms ÄÏÓÔÉÇÁÅÔ ËÏÎÃÁ ÓÐÉÓËÁ ÐÅÓÅÎ." #: Input/wav/wav.c:56 #, c-format @@ -518,7 +519,7 @@ #: Input/mpg123/mpg123.c:35 msgid "Pop" -msgstr "ðÏÐÓÁ" +msgstr "ðÏÐ" #: Input/mpg123/mpg123.c:35 msgid "R&B" @@ -530,7 +531,7 @@ #: Input/mpg123/mpg123.c:35 msgid "Reggae" -msgstr "òÅÇÉ" +msgstr "òÅÇÇÉ" #: Input/mpg123/mpg123.c:36 msgid "Rock" @@ -542,7 +543,7 @@ #: Input/mpg123/mpg123.c:36 msgid "Industrial" -msgstr "ðÒÏÍÙÛÌÅÎÎÙÊ" +msgstr "éÎÄÁÓÔÒÉÁÌ" #: Input/mpg123/mpg123.c:36 msgid "Alternative" @@ -554,7 +555,7 @@ #: Input/mpg123/mpg123.c:37 msgid "Death Metal" -msgstr "óÍÅÒÔÅÌØÎÙÊ íÅÔÁÌ" +msgstr "Death íÅÔÁÌ" #: Input/mpg123/mpg123.c:37 msgid "Pranks" @@ -586,7 +587,7 @@ #: Input/mpg123/mpg123.c:39 msgid "Fusion" -msgstr "Fusion" +msgstr "òÁÓÔ×ÏÒÅÎÉÅ" #: Input/mpg123/mpg123.c:39 msgid "Trance" @@ -610,11 +611,11 @@ #: Input/mpg123/mpg123.c:40 msgid "Game" -msgstr "éÇÒÁ" +msgstr "éÚ ÉÇÒÙ" #: Input/mpg123/mpg123.c:41 msgid "Sound Clip" -msgstr "íÕÚÙËÁÌØÎÙÊ ËÌÉÐ" +msgstr "ïÔÒÙ×ÏË" #: Input/mpg123/mpg123.c:41 msgid "Gospel" @@ -634,7 +635,7 @@ #: Input/mpg123/mpg123.c:42 msgid "Soul" -msgstr "äÕÛÁ" +msgstr "óÏÕÌ" #: Input/mpg123/mpg123.c:42 msgid "Punk" @@ -650,7 +651,7 @@ #: Input/mpg123/mpg123.c:43 msgid "Instrumental Pop" -msgstr "éÓÔÒÕÍÅÎÔÁÌØÎÁÑ ÐÏÐÓÁ" +msgstr "éÓÔÒÕÍÅÎÔÁÌØÎÙÊ ÐÏÐ" #: Input/mpg123/mpg123.c:44 msgid "Instrumental Rock" @@ -678,7 +679,7 @@ #: Input/mpg123/mpg123.c:46 msgid "Pop-Folk" -msgstr "îÁÒÏÄÎÁÑ ÐÏÐÓÁ" +msgstr "îÁÒÏÄÎÙÊ ÐÏÐ" #: Input/mpg123/mpg123.c:46 msgid "Eurodance" @@ -686,7 +687,7 @@ #: Input/mpg123/mpg123.c:46 msgid "Dream" -msgstr "óÏÎ" +msgstr "äÒÉÍ" #: Input/mpg123/mpg123.c:47 msgid "Southern Rock" @@ -714,7 +715,7 @@ #: Input/mpg123/mpg123.c:49 msgid "Pop/Funk" -msgstr "ðÏÐÓÁ/æÁÎË" +msgstr "ðÏÐ/æÁÎË" #: Input/mpg123/mpg123.c:49 msgid "Jungle" @@ -802,7 +803,7 @@ #: Input/mpg123/mpg123.c:55 msgid "Fast-Fusion" -msgstr "Fast-Fusion" +msgstr "âÙÓÔÒÏÅ ÒÁÓÔ×ÏÒÅÎÉÅ" #: Input/mpg123/mpg123.c:55 msgid "Bebob" @@ -882,7 +883,7 @@ #: Input/mpg123/mpg123.c:61 msgid "Chamber Music" -msgstr "ëÏÍÎÁÔÁ ÍÕÚÙËÉ" +msgstr "ëÁÍÅÒÎÁÑ ÍÕÚÙËÁ" #: Input/mpg123/mpg123.c:61 msgid "Sonata" @@ -938,7 +939,7 @@ #: Input/mpg123/mpg123.c:65 msgid "Rhythmic Soul" -msgstr "äÕÛÅ×ÎÁÑ ÒÉÔÍÉËÁ" +msgstr "òÉÔÍÉÞÅÓËÉÊ ÓÏÕÌ" #: Input/mpg123/mpg123.c:65 msgid "Freestyle" @@ -982,7 +983,7 @@ #: Input/mpg123/mpg123.c:68 msgid "Hardcore" -msgstr "îÁÒÄËÏÒ" +msgstr "èÁÒÄËÏÒ" #: Input/mpg123/mpg123.c:69 msgid "Terror" @@ -1022,7 +1023,7 @@ #: Input/mpg123/mpg123.c:71 msgid "Crossover" -msgstr "ðÅÒÅÈÏÄÎÙÊ" +msgstr "ëÒÏÓÓÏ×ÅÒ" #: Input/mpg123/mpg123.c:72 msgid "Contemporary Christian" @@ -1099,15 +1100,15 @@ #: Input/mikmod/plugin.c:493 Input/mpg123/configure.c:381 msgid "1:1 (44 kHz)" -msgstr "1:1 (44 kHz)" +msgstr "1:1 (44 ËçÃ)" #: Input/mikmod/plugin.c:502 Input/mpg123/configure.c:387 msgid "1:2 (22 kHz)" -msgstr "1:2 (22 kHz)" +msgstr "1:2 (22 ËçÃ)" #: Input/mikmod/plugin.c:510 Input/mpg123/configure.c:393 msgid "1:4 (11 kHz)" -msgstr "1:4 (11 kHz)" +msgstr "1:4 (11 ËçÃ)" #: Input/mpg123/configure.c:432 #, fuzzy @@ -1116,15 +1117,15 @@ #: Input/mpg123/configure.c:439 msgid "Enable Automatic detection" -msgstr "" +msgstr "÷ËÌÀÞÉÔØ Á×ÔÏÍÁÔÉÞÅÓËÏÅ ÒÁÓÐÏÚÎÁ×ÁÎÉÅ" #: Input/mpg123/configure.c:446 msgid "use 3DNow! optimized decoder" -msgstr "" +msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ 3DNow! ÉÎÓÔÒÕËÃÉÉ × ÄÅËÏÄÅÒÅ" #: Input/mpg123/configure.c:455 msgid "use FPU decoder" -msgstr "" +msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ ÉÎÓÔÒÕËÃÉÉ ÓÏÐÒÏÃÅÓÓÏÒÁ × ÄÅËÏÄÅÒÅ" #: Input/mikmod/plugin.c:567 Input/mpg123/configure.c:471 #: xmms/equalizer.c:1454 xmms/equalizer.c:1490 xmms/prefswin.c:767 @@ -1261,7 +1262,7 @@ msgstr "" "%2 = îÁÚ×ÁÎÉÅ\n" "%4 = çÏÄ\n" -"%6 = îÁÐÒÁ×ÌÅÎÉÅ\n" +"%6 = óÔÉÌØ\n" "%8 = ðÕÔØ" #: Input/mpg123/configure.c:721 @@ -1276,7 +1277,7 @@ #: Input/mpg123/fileinfo.c:107 Input/mpg123/fileinfo.c:113 msgid "Couldn't write tag!" -msgstr "îÅÍÏÇÕ ÚÁÐÉÓÁÔØ ÔÜÇ!" +msgstr "îÅ ÍÏÇÕ ÚÁÐÉÓÁÔØ ÔÜÇ!" #: Input/mpg123/fileinfo.c:147 Input/mpg123/fileinfo.c:156 msgid "Couldn't remove tag!" @@ -1296,7 +1297,7 @@ #: Input/mpg123/fileinfo.c:173 msgid "Dual channel" -msgstr "ä×ÏÊÎÏÅ ÓÔÅÒÅÏ" +msgstr "ä×Á ËÁÎÁÌÁ" #: Input/mpg123/fileinfo.c:173 msgid "Single channel" @@ -1362,7 +1363,7 @@ #: Input/mpg123/fileinfo.c:286 msgid "Genre:" -msgstr "îÁÐÒÁ×ÌÅÎÉÅ:" +msgstr "óÔÉÌØ:" #: Input/mpg123/fileinfo.c:308 msgid "Save" @@ -1411,7 +1412,7 @@ "%d frames\n" "Filesize: %lu B" msgstr "" -"%d ÞÁÓÔÅÊ\n" +"%d ËÁÄÒÏ×\n" "òÁÚÍÅÒ: %lu â" #: Input/mpg123/http.c:207 Output/disk_writer/disk_writer.c:127 @@ -1426,7 +1427,7 @@ #: Input/mpg123/http.c:365 #, c-format msgid "Couldn't look up host %s" -msgstr "îÅÍÏÇÕ ÎÁÊÔÉ ÈÏÓÔ %s" +msgstr "îÅ ÍÏÇÕ ÎÁÊÔÉ ÈÏÓÔ %s" #: Input/mpg123/http.c:378 #, c-format @@ -1459,7 +1460,7 @@ #. mpg123_ip.set_info(title, -1, mpg123_bitrate * 1000, mpg123_frequency, mpg123_stereo); #: Input/mpg123/http.c:804 msgid "Message" -msgstr "" +msgstr "óÏÏÂÝÅÎÉÅ" #: Input/mpg123/id3_frame_content.c:74 msgid " (Remix)" @@ -1479,7 +1480,7 @@ #: Input/mikmod/plugin.c:88 msgid "About mikmod plugin" -msgstr "ï ÒÁÓÛÉÒÅÎÉÉ mikmod" +msgstr "ï ÐÌÁÇÉÎÅ mikmod" #: Input/mikmod/plugin.c:112 msgid "" @@ -1487,9 +1488,9 @@ "http://www.multimania.com/miodrag/mikmod/\n" "Ported to xmms by J. Nick Koston" msgstr "" -"òÁÓÛÉÒÅÎÉÅ Mikmod\n" +"ðÌÁÇÉÎ Mikmod\n" "http://www.multimania.com/miodrag/mikmod/\n" -"ðÏÒÔÉÒÏ×ÁÌ ÎÁ xmms: J. Nick Koston" +"ðÏÒÔÉÒÏ×ÁÌ ÄÌÑ xmms: J. Nick Koston" #: Input/mikmod/plugin.c:181 #, c-format @@ -1506,7 +1507,7 @@ #: Input/mikmod/plugin.c:522 msgid "Look for hidden patterns in modules " -msgstr "éÓËÁÔØ ÓËÒÙÔÙÅ ÛÁÂÌÏÎÙ × ÍÏÄÕÌÑÈ " +msgstr "éÓËÁÔØ ÓËÒÙÔÙÅ ÛÁÂÌÏÎÙ × ÍÏÄÕÌÑÈ " #: Input/mikmod/plugin.c:529 msgid "Use surround mixing" @@ -1555,7 +1556,7 @@ #: Input/cdaudio/configure.c:150 msgid "OSS Mixer" -msgstr "OSS ÍÉËÓÅÒ" +msgstr "OSS ÍÉËÛÅÒ" #: Input/cdaudio/configure.c:159 msgid "CDROM drive" @@ -1576,7 +1577,7 @@ #: Input/cdaudio/configure.c:192 msgid "Get server list" -msgstr "÷ÚÑÔØ ÓÐÉÓÏË ÓÅÒ×ÅÒÏ×" +msgstr "ðÏÌÕÞÉÔØ ÓÐÉÓÏË ÓÅÒ×ÅÒÏ×" #: Input/cdaudio/configure.c:194 msgid "Show network window" @@ -1653,7 +1654,7 @@ #: Input/idcin/idcin.c:106 msgid "Huffman decode error.\n" -msgstr "ïÛÉÂËÁ ÐÒÉ ÒÁÓÐÁËÏ×ËÁ ÍÅÔÏÄÏÍ ÈÁÆÍÁÎÁ.\n" +msgstr "ïÛÉÂËÁ ÐÒÉ ÒÁÓÐÁËÏ×ËÁ ÍÅÔÏÄÏÍ èÁÆÆÍÁÎÁ.\n" #: Input/idcin/idcin.c:200 #, c-format @@ -1679,9 +1680,9 @@ "To use it, add a URL: tone://frequency\n" "e.g. tone://2000 to play a 2000Hz tone" msgstr "" -"óÍÎÕÓÏÉÄÁÌØÎÙÊ ÔÏÎÏÇÅÎÅÒÁÔÏÒ, Á×ÔÏÒ: HEvard KvElen ,havard@xmms.org.äÌÑ " -"ÉÓÐÏÌØÚÏ×ÁÎÉÑ ÄÏÂÁ×ÔÅ URL: tone//ÞÁÓÔÏÔÁ\n" -"ÎÁÐÒÉÍÅÒ tone://2000 ÞÔÏÂÙ ÕÓÄÙÛÁÔØ 2000 çà Ú×ÕË" +"óÍÎÕÓÏÉÄÁÌØÎÙÊ ÔÏÎÏÇÅÎÅÒÁÔÏÒ, Á×ÔÏÒ: HEvard KvElen \n" +"äÌÑ ÉÓÐÏÌØÚÏ×ÁÎÉÑ ÄÏÂÁ×ØÔÅ URL: tone//ÞÁÓÔÏÔÁ\n" +"ÎÁÐÒÉÍÅÒ tone://2000 ÞÔÏÂÙ ÕÓÌÙÛÁÔØ 2000 çà Ú×ÕË" #: Input/tonegen/tonegen.c:110 Input/tonegen/tonegen.c:147 #, c-format @@ -1721,6 +1722,21 @@ "Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n" "USA." msgstr "" +"XMMS OSS äÒÁÊ×ÅÒ\n" +"\n" +" üÔÁ ÐÒÏÇÒÁÍÍÁ ÂÅÓÐÌÁÔÎÁÑ; ×Ù ÍÏÖÅÔÅ ÅÅ ÒÁÓÐÒÏÓÔÒÁÎÑÔØ É/ÉÌÉ ÉÚÍÅÎÑÔØ\n" +"× ÓÏÏÔ×ÅÔÓÔ×ÉÉ Ó ìÉÃÅÎÚÉÅÊ GNU General Public License ÏÐÕÂÌÉËÏ×ÁÎÎÏÊ\n" +"æÕÎÄÁÃÉÅÊ ÂÅÓÐÌÁÔÎÏÇÏ ÐÒÏÇÒÁÍÍÎÏÇÏ ÏÂÅÓÐÅÞÅÎÉÑ; ×Ù ÍÏÖÅÔÅ ÒÕËÏ×ÏÄÓÔ×Ï×ÁÔØÓÑ\n" +"×ÅÒÓÉÅÊ 2 ÜÔÏÊ ìÉÃÅÎÚÉÉ ÉÌÉ (ÎÁ ×ÁÛ ×ÙÂÏÒ) ÂÏÌÅÅ ÐÏÚÄÎÅÊ ×ÅÒÓÉÅÊ.\n" +"\n" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +"÷Ù ÄÏÌÖÎÙ ÂÙÌÉ ÐÏÌÕÞÉÔØ ËÏÐÉÀ ìÉÃÅÎÚÉÉ GNU General Publice License\n" +"×ÍÅÓÔÅ Ó ÜÔÏÊ ÐÒÏÇÒÁÍÍÏÊ; ÅÓÌÉ ÎÅÔ, ÎÁÐÉÛÉÔÅ ÐÏ ÁÄÒÅÓÕ: Free Software\n" +"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\nUSA" #: Output/OSS/configure.c:113 #, c-format @@ -1745,7 +1761,7 @@ #: Output/OSS/configure.c:204 msgid "Mixer device:" -msgstr "õÓÔÒÏÊÓÔ×Ï ÍÉËÓÅÒÁ:" +msgstr "õÓÔÒÏÊÓÔ×Ï ÍÉËÛÅÒÁ:" #: Output/OSS/configure.c:217 msgid "Devices" @@ -1774,11 +1790,11 @@ #: Output/esd/esd.c:45 #, c-format msgid "eSound Output Plugin %s" -msgstr "ðÌÕÇÉÎ ×Ù×ÏÄÁ eSound %s" +msgstr "ðÌÁÇÉÎ ×Ù×ÏÄÁ eSound %s" #: Output/esd/about.c:29 msgid "About ESounD Plugin" -msgstr "ï ÐÌÕÇÉÎÅ ESounD" +msgstr "ï ÐÌÁÇÉÎÅ ESounD" #: Output/esd/about.c:30 msgid "" @@ -1799,6 +1815,21 @@ "Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n" "USA." msgstr "" +"XMMS ESounD ðÌÁÇÉÎ\n" +"\n" +" üÔÁ ÐÒÏÇÒÁÍÍÁ ÂÅÓÐÌÁÔÎÁÑ; ×Ù ÍÏÖÅÔÅ ÅÅ ÒÁÓÐÒÏÓÔÒÁÎÑÔØ É/ÉÌÉ ÉÚÍÅÎÑÔØ\n" +"× ÓÏÏÔ×ÅÔÓÔ×ÉÉ Ó ìÉÃÅÎÚÉÅÊ GNU General Public License ÏÐÕÂÌÉËÏ×ÁÎÎÏÊ\n" +"æÕÎÄÁÃÉÅÊ ÂÅÓÐÌÁÔÎÏÇÏ ÐÒÏÇÒÁÍÍÎÏÇÏ ÏÂÅÓÐÅÞÅÎÉÑ; ×Ù ÍÏÖÅÔÅ ÒÕËÏ×ÏÄÓÔ×Ï×ÁÔØÓÑ\n" +"×ÅÒÓÉÅÊ 2 ÜÔÏÊ ìÉÃÅÎÚÉÉ ÉÌÉ (ÎÁ ×ÁÛ ×ÙÂÏÒ) ÂÏÌÅÅ ÐÏÚÄÎÅÊ ×ÅÒÓÉÅÊ.\n" +"\n" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +"÷Ù ÄÏÌÖÎÙ ÂÙÌÉ ÐÏÌÕÞÉÔØ ËÏÐÉÀ ìÉÃÅÎÚÉÉ GNU General Publice License\n" +"×ÍÅÓÔÅ Ó ÜÔÏÊ ÐÒÏÇÒÁÍÍÏÊ; ÅÓÌÉ ÎÅÔ, ÎÁÐÉÛÉÔÅ ÐÏ ÁÄÒÅÓÕ: Free Software\n" +"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\nUSA" #: Output/esd/configure.c:83 msgid "ESD Plugin configuration" @@ -1815,7 +1846,7 @@ #: Output/disk_writer/disk_writer.c:96 #, c-format msgid "Disk Writer Plugin %s" -msgstr "ðÌÕÇÉÎ úÁÐÉÓÉ îÁ äÉÓË %s" +msgstr "ðÌÁÇÉÎ úÁÐÉÓÉ îÁ äÉÓË %s" #: Output/disk_writer/disk_writer.c:128 msgid "" @@ -1901,7 +1932,7 @@ #: wmxmms/getopt.c:632 xmms/getopt.c:632 #, c-format msgid "%s: option `%s' is ambiguous\n" -msgstr "%s: ÐÁÒÁÍÅÔÒ `%s' ÎÅÏÐÒÅÄÅÌÅÎÁ\n" +msgstr "%s: ÐÁÒÁÍÅÔÒ `%s' ÎÅÏÐÒÅÄÅÌÅÎ\n" #: wmxmms/getopt.c:656 xmms/getopt.c:656 #, c-format @@ -2150,7 +2181,7 @@ #: xmms/main.c:158 xmms/main.c:2120 xmms/main.c:2564 msgid "/Autoscroll Songname" -msgstr "/á×ÔÏÓËÒÏÌ ÎÁÚ×ÁÎÉÑ ÐÅÓÎÉ" +msgstr "/á×ÔÏÐÒÏËÒÕÔËÁ ÎÁÚ×ÁÎÉÑ ÐÅÓÎÉ" #: xmms/main.c:180 msgid "/Visualization Mode" @@ -2158,7 +2189,7 @@ #: xmms/main.c:181 xmms/main.c:182 xmms/main.c:183 msgid "/Visualization Mode/Analyzer" -msgstr "/òÅÖÉÍ ×ÉÚÕÁÌÉÚÁÃÉÉ/áÎÁÌÉÚÅÒ" +msgstr "/òÅÖÉÍ ×ÉÚÕÁÌÉÚÁÃÉÉ/áÎÁÌÉÚÁÔÏÒ" #: xmms/main.c:182 msgid "/Visualization Mode/Scope" @@ -2170,35 +2201,35 @@ #: xmms/main.c:184 msgid "/Analyzer Mode" -msgstr "/òÅÖÉÍ áÎÁÌÉÚÅÒÁ" +msgstr "/òÅÖÉÍ áÎÁÌÉÚÁÔÏÒÁ" #: xmms/main.c:185 xmms/main.c:186 xmms/main.c:187 msgid "/Analyzer Mode/Normal" -msgstr "/òÅÖÉÍ áÎÁÌÉÚÅÒÁ/ïÂÙÞÎÙÊ" +msgstr "/òÅÖÉÍ áÎÁÌÉÚÁÔÏÒÁ/ïÂÙÞÎÙÊ" #: xmms/main.c:186 msgid "/Analyzer Mode/Fire" -msgstr "/òÅÖÉÍ áÎÁÌÉÚÅÒÁ/ðÌÁÍÑ" +msgstr "/òÅÖÉÍ áÎÁÌÉÚÁÔÏÒÁ/ðÌÁÍÑ" #: xmms/main.c:187 msgid "/Analyzer Mode/Vertical Lines" -msgstr "/òÅÖÉÍ áÎÁÌÉÚÅÒÁ/÷ÅÒÔÉËÁÌØÎÙÅ ìÉÎÉÉ" +msgstr "/òÅÖÉÍ áÎÁÌÉÚÁÔÏÒÁ/÷ÅÒÔÉËÁÌØÎÙÅ ìÉÎÉÉ" #: xmms/main.c:188 xmms/main.c:191 msgid "/Analyzer Mode/-" -msgstr "/òÅÖÉÍ áÎÁÌÉÚÅÒÁ/-" +msgstr "/òÅÖÉÍ áÎÁÌÉÚÁÔÏÒÁ/-" #: xmms/main.c:189 xmms/main.c:190 msgid "/Analyzer Mode/Lines" -msgstr "/òÅÖÉÍ áÎÁÌÉÚÅÒÁ/ìÉÎÉÉ" +msgstr "/òÅÖÉÍ áÎÁÌÉÚÁÔÏÒÁ/ìÉÎÉÉ" #: xmms/main.c:190 msgid "/Analyzer Mode/Bars" -msgstr "/òÅÖÉÍ áÎÁÌÉÚÅÒÁ/ðÏÌÏÓËÉ" +msgstr "/òÅÖÉÍ áÎÁÌÉÚÁÔÏÒÁ/ðÏÌÏÓËÉ" #: xmms/main.c:192 msgid "/Analyzer Mode/Peaks" -msgstr "/òÅÖÉÍ áÎÁÌÉÚÅÒÁ/ðÉËÉ" +msgstr "/òÅÖÉÍ áÎÁÌÉÚÁÔÏÒÁ/ðÉËÉ" #: xmms/main.c:193 msgid "/Scope Mode" @@ -2250,28 +2281,28 @@ #: xmms/main.c:205 msgid "/Analyzer Falloff" -msgstr "/ðÁÄÅÎÉÅ áÎÁÌÉÚÅÒÁ" +msgstr "/ðÁÄÅÎÉÅ áÎÁÌÉÚÁÔÏÒÁ" #: xmms/main.c:206 xmms/main.c:207 xmms/main.c:208 xmms/main.c:209 #: xmms/main.c:210 msgid "/Analyzer Falloff/Slowest" -msgstr "/ðÁÄÅÎÉÅ áÎÁÌÉÚÅÒÁ/óÁÍÏÅ ÍÅÄÌÅÎÎÏÅ" +msgstr "/ðÁÄÅÎÉÅ áÎÁÌÉÚÁÔÏÒÁ/óÁÍÏÅ ÍÅÄÌÅÎÎÏÅ" #: xmms/main.c:207 msgid "/Analyzer Falloff/Slow" -msgstr "/ðÁÄÅÎÉÅ áÎÁÌÉÚÅÒÁ/íÅÄÌÅÎÎÏÅ" +msgstr "/ðÁÄÅÎÉÅ áÎÁÌÉÚÁÔÏÒÁ/íÅÄÌÅÎÎÏÅ" #: xmms/main.c:208 msgid "/Analyzer Falloff/Medium" -msgstr "/ðÁÄÅÎÉÅ áÎÁÌÉÚÅÒÁ/óÒÅÄÎÅÅ" +msgstr "/ðÁÄÅÎÉÅ áÎÁÌÉÚÁÔÏÒÁ/óÒÅÄÎÅÅ" #: xmms/main.c:209 msgid "/Analyzer Falloff/Fast" -msgstr "/ðÁÄÅÎÉÅ áÎÁÌÉÚÅÒÁ/âÙÓÔÒÏÅ" +msgstr "/ðÁÄÅÎÉÅ áÎÁÌÉÚÁÔÏÒÁ/âÙÓÔÒÏÅ" #: xmms/main.c:210 msgid "/Analyzer Falloff/Fastest" -msgstr "/ðÁÄÅÎÉÅ áÎÁÌÉÚÅÒÁ/âÙÓÔÒÅÅ ÎÅËÕÄÁ" +msgstr "/ðÁÄÅÎÉÅ áÎÁÌÉÚÁÔÏÒÁ/îÁÉÂÏÌÅÅ ÂÙÓÔÒÏÅ" #: xmms/main.c:211 msgid "/Peaks Falloff" @@ -2296,7 +2327,7 @@ #: xmms/main.c:216 msgid "/Peaks Falloff/Fastest" -msgstr "/ðÁÄÅÎÉÅ ÐÉËÏ×/âÙÓÔÒÅÊ ÎÅËÕÄÁ" +msgstr "/ðÁÄÅÎÉÅ ÐÉËÏ×/îÁÉÂÏÌÅÅ ÂÙÓÔÒÏÅ" #: xmms/main.c:217 msgid "/Visualization plugins" @@ -2550,7 +2581,7 @@ "-n, --session\t\tSelect óÅÓÓÉÑ XMMS (ðÏ ÕÍÏÞÁÎÉÀ: 0)\n" "-r, --rew ïÔËÁÔ ÎÁÚÁÄ × ÓÐÉÓËÅ ÐÅÓÅÎ\n" "-p, --play\t\tîÁÞÁÔØ ÉÇÒÁÔØ ÔÅËÕÝÉÊ ÓÐÉÓÏË ÐÅÓÅÎ\n" -"-u, --pause\t\tMet la chanson actuelle en pause\n" +"-u, --pause\t\tðÒÉÏÓÔÁÎÏ×ÉÔØ ÔÅËÕÝÕÀ ÐÅÓÎÀ\n" "-s, --stop\t\tïÓÔÁÎÏ×ÉÔØ ÔÅËÕÝÕÀ ÐÅÓÎÀ\n" "-f, --fwd ÷ÐÅÒÅÄ × ÓÐÉÓËÅ ÐÅÓÅÎ\n" "-e, --enqueue\t\tîÅ ÏÞÉÝÁÔØ ÓÐÉÓÏË ÐÅÓÅÎ\n" @@ -2602,11 +2633,11 @@ #: xmms/skinwin.c:45 msgid "Skins" -msgstr "ûËÕÒÙ" +msgstr "óËÉÎÙ" #: xmms/skinwin.c:49 msgid "Skin selector" -msgstr "÷ÙÂÏÒ ÛËÕÒ" +msgstr "÷ÙÂÏÒ ÓËÉÎÏ×" #: xmms/skinwin.c:78 msgid "Select random skin on play" @@ -2629,8 +2660,8 @@ "restart XMMS." msgstr "" "ðÒÉÏÒÉÔÅÔ ÒÅÁÌØÎÏÇÏ ×ÒÅÍÅÎÉ ÜÔÏ ÓÐÏÓÏ ÄÌÑ XMMS ×ÓÅÇÄÁ\n" -"ÂÒÁÔØ ÓÔÏÌØËÏ ÐÒÏÃÅÓÓÏÒÎÏÇÏ ×ÒÅÍÅÎÉ ÓËÏÌØËÏ ÎÕÖÎÏ ÄÌÑ\n" -"ÄÅËÏÄÉÒÏ×ÁÎÉÑ ÁÕÄÉÏ ÆÁÊÌÏ× ÂÅÚ ×ÓÑËÉÈ ÁÒÔÅÆÁËÔÏ×\n" +"ÂÒÁÔØ ÓÔÏÌØËÏ ÐÒÏÃÅÓÓÏÒÎÏÇÏ ×ÒÅÍÅÎÉ, ÓËÏÌØËÏ ÎÕÖÎÏ ÄÌÑ\n" +"ÄÅËÏÄÉÒÏ×ÁÎÉÑ ÁÕÄÉÏ ÆÁÊÌÏ× ÂÅÚ ×ÓÑËÉÈ \"ÐÒÏÐÕÓËÏ×\"\n" "\n" "üÔÏ ÔÒÅÂÕÅÔ ÞÔÏÂÙ XMMS ÂÙÌ ÚÁÐÕÝÅÎ Ó ÐÒÉ×ÉÌÅÇÉÑÍÉ\n" "ÓÕÐÅÒÐÏÌØÚÏ×ÁÔÅÌÑ É ÍÏÖÅÔ ÉÎÏÇÄÁ ÂÌÏËÉÒÏ×ÁÔØ ËÏÍÐØÀÔÅÒ\n" @@ -2655,7 +2686,7 @@ "\n" "You have been warned, to activate this you need to restart XMMS." msgstr "" -"DGA ÄÏÓÔÕÐ - ÜÔÏ ÓÐÏÓÏ ÄÌÑ ÐÌÕÇÉÎÏ× ÐÉÓÁÔØ ÐÒÑÍÏ × ÐÁÍÑÔØ ÇÒÁÆÉÞÅÓËÏÊ\n" +"DGA ÄÏÓÔÕÐ - ÜÔÏ ÓÐÏÓÏ ÄÌÑ ÐÌÁÇÉÎÏ× ÐÉÓÁÔØ ÐÒÑÍÏ × ÐÁÍÑÔØ ÇÒÁÆÉÞÅÓËÏÊ\n" "ËÁÒÔÙ É ËÁË ÒÅÚÕÌØÔÁÔ - ÇÏÒÁÚÄÏ ÂÏÌØÛÁÑ ÞÁÓÔÏÔÁ ËÁÄÒÏ×. îÏ × ÎÅËÏÔÏÒÙÈ\n" "X ÓÅÒ×ÅÒÁÈ ÅÓÔØ ÏÛÉÂËÁ ÐÒÉ×ÏÄÑÝÁÑ xmms Ë ËÒÁÈÕ ÐÒÉ ÚÁÐÕÓËÅ ÅÓÌÉ ×Ù ×ËÌÀÞÉÔÅ\n" "ÜÔÕ ÏÐÃÉÀ. åÓÌÉ ÜÔÏ ÓÌÕÞÉÌÏÓØ ÐÏÍÅÎÑÊÔÅ ÓÔÒÏÞËÕ ebable_dga = TRUE\n" @@ -2677,15 +2708,15 @@ #: xmms/prefswin.c:532 msgid "Input plugins" -msgstr "ðÌÕÇÉÎÙ ÄÌÑ ××ÏÄÁ" +msgstr "ðÌÁÇÉÎÙ ÄÌÑ ××ÏÄÁ" #: xmms/prefswin.c:533 msgid "General plugins" -msgstr "ïÂÝÉÅ ÐÌÕÇÉÎÙ" +msgstr "ïÂÝÉÅ ÐÌÁÇÉÎÙ" #: xmms/prefswin.c:534 msgid "Visualization plugins" -msgstr "ðÌÕÇÉÎÙ ×ÉÚÕÁÌÉÚÁÃÉÉ" +msgstr "ðÌÁÇÉÎÙ ×ÉÚÕÁÌÉÚÁÃÉÉ" #: xmms/prefswin.c:542 msgid "Preferences" @@ -2696,7 +2727,7 @@ #. #: xmms/prefswin.c:564 msgid "Input Plugins" -msgstr "ðÌÕÇÉÎÙ ÄÌÑ ××ÏÄÁ" +msgstr "ðÌÁÇÉÎÙ ÄÌÑ ××ÏÄÁ" #: xmms/prefswin.c:593 xmms/prefswin.c:625 xmms/prefswin.c:662 #: xmms/prefswin.c:702 xmms/prefswin.c:748 @@ -2712,18 +2743,18 @@ #. #: xmms/prefswin.c:608 msgid "Output Plugin" -msgstr "ðÌÕÇÉÎÙ ÄÌÑ ×Ù×ÏÄÁ" +msgstr "ðÌÁÇÉÎÙ ÄÌÑ ×Ù×ÏÄÁ" #: xmms/prefswin.c:633 msgid "Audio I/O Plugins" -msgstr "áÕÄÉÏ ÷/÷ ÐÌÕÇÉÎ" +msgstr "áÕÄÉÏ ÷/÷ ÐÌÁÇÉÎ" #. #. * Effect plugins #. #: xmms/prefswin.c:645 msgid "Effect Plugins" -msgstr "ðÌÕÇÉÎÙ ÜÆÆÅËÔÏ×" +msgstr "ðÌÁÇÉÎÙ ÜÆÆÅËÔÏ×" #: xmms/prefswin.c:670 msgid "Use plugins" @@ -2734,15 +2765,15 @@ #. #: xmms/prefswin.c:677 msgid "General Plugins" -msgstr "ïÂÝÉÅ ÐÌÕÇÉÎÙ" +msgstr "ïÂÝÉÅ ÐÌÁÇÉÎÙ" #: xmms/prefswin.c:714 msgid "Effect/General Plugins" -msgstr "üÆÆÅËÔÙ/ïÂÝÉÅ ÐÌÕÇÉÎÙ" +msgstr "üÆÆÅËÔÙ/ïÂÝÉÅ ÐÌÁÇÉÎÙ" #: xmms/prefswin.c:722 xmms/prefswin.c:760 msgid "Visualization Plugins" -msgstr "ðÌÕÇÉÎÙ ×ÉÚÕÁÌÉÚÁÃÉÉ" +msgstr "ðÌÁÇÉÎÙ ×ÉÚÕÁÌÉÚÁÃÉÉ" #: xmms/prefswin.c:775 msgid "Read info on" @@ -2750,7 +2781,7 @@ #: xmms/prefswin.c:778 msgid "demand" -msgstr "ÔÒÅÂÏ×ÁÎÉÀ" +msgstr "ÔÒÅÂÏ×ÁÎÉÉ" #: xmms/prefswin.c:781 msgid "load" @@ -2849,11 +2880,11 @@ #: xmms/prefswin.c:896 msgid "Use X font" -msgstr "" +msgstr "éÓÐÏÌØÚÏ×ÁÔØ ÛÒÉÆÔ X" #: xmms/prefswin.c:908 msgid "Fonts" -msgstr "" +msgstr "ûÒÉÆÔÙ" #: xmms/prefswin.c:1097 xmms/prefswin.c:1127 msgid " (enabled)" @@ -2897,11 +2928,11 @@ #: xmms/playlistwin.c:92 msgid "/Randomize List" -msgstr "/òÁÓÓÏÒÔÉÒÏ×ÁÔØ ÓÐÉÓÏË" +msgstr "/óÌÕÞÁÊÎÙÊ ÐÏÒÑÄÏË × ÓÐÉÓËÅ" #: xmms/playlistwin.c:93 msgid "/Reverse List" -msgstr "/ðÅÒÅ×ÅÒÎÕÔØ ÓÐÉÓÏË" +msgstr "/ïÂÒÁÔÎÙÊ ÐÏÒÑÄÏË × ÓÐÉÓËÅ" #: xmms/playlistwin.c:105 msgid "/Remove Dead Files" @@ -2929,11 +2960,11 @@ #: xmms/equalizer.c:80 msgid "/Load/Preset" -msgstr "/úÁÇÒÕÚÉÔØ/ðÒÅÕÓÔÁÎÏ×ÌÅÎÎÏÅ" +msgstr "/úÁÇÒÕÚÉÔØ/ðÒÅÄÕÓÔÁÎÏ×ÌÅÎÎÏÅ" #: xmms/equalizer.c:81 msgid "/Load/Auto-load preset" -msgstr "/úÁÇÒÕÚÉÔØ/á×ÔÏ-ÚÁÇÒÕÚËÁ" +msgstr "/úÁÇÒÕÚÉÔØ/á×ÔÏÚÁÇÒÕÚËÁ" #: xmms/equalizer.c:82 msgid "/Load/Default" @@ -2961,11 +2992,11 @@ #: xmms/equalizer.c:89 msgid "/Save/Preset" -msgstr "/úÁÐÉÓÁÔØ/ðÒÅÕÓÔÁÎÏ×ÌÅÎÎÏÅ" +msgstr "/úÁÐÉÓÁÔØ/ðÒÅÄÕÓÔÁÎÏ×ÌÅÎÎÏÅ" #: xmms/equalizer.c:90 msgid "/Save/Auto-load preset" -msgstr "/úÁÐÉÓÁÔØ/á×ÔÏ-ÚÁÇÒÕÚËÁ" +msgstr "/úÁÐÉÓÁÔØ/á×ÔÏÚÁÇÒÕÚËÁ" #: xmms/equalizer.c:91 msgid "/Save/Default" @@ -2989,11 +3020,11 @@ #: xmms/equalizer.c:96 msgid "/Delete/Preset" -msgstr "/õÄÁÌÉÔØ/ðÒÅÕÓÔÁÎÏ×ÌÅÎÎÏÅ" +msgstr "/õÄÁÌÉÔØ/ðÒÅÄÕÓÔÁÎÏ×ÌÅÎÎÏÅ" #: xmms/equalizer.c:97 msgid "/Delete/Auto-load preset" -msgstr "/õÄÁÌÉÔØ/á×ÔÏ-ÚÁÇÒÕÚËÁ" +msgstr "/õÄÁÌÉÔØ/á×ÔÏÚÁÇÒÕÚËÁ" #: xmms/equalizer.c:98 msgid "/Configure Equalizer" @@ -3005,11 +3036,11 @@ #: xmms/equalizer.c:1102 msgid "Presets" -msgstr "ðÒÅÕÓÔÁÎÏ×ÌÅÎÎÏÅ" +msgstr "ðÒÅÄÕÓÔÁÎÏ×ÌÅÎÎÏÅ" #: xmms/equalizer.c:1191 msgid "Load preset" -msgstr "úÁÇÒÕÚÉÔØ ÐÒÅÕÓÔÁÎÏ×ÌÅÎÎÏÅ" +msgstr "úÁÇÒÕÚÉÔØ ÐÒÅÄÕÓÔÁÎÏ×ÌÅÎÎÏÅ" #: xmms/equalizer.c:1197 msgid "Load auto-preset" @@ -3021,7 +3052,7 @@ #: xmms/equalizer.c:1245 msgid "Save preset" -msgstr "úÁÐÉÓÁÔØ ÐÒÅÕÓÔÁÎÏ×ÌÅÎÎÏÅ" +msgstr "úÁÐÉÓÁÔØ ÐÒÅÄÕÓÔÁÎÏ×ÌÅÎÎÏÅ" #: xmms/equalizer.c:1254 msgid "Save auto-preset" @@ -3033,7 +3064,7 @@ #: xmms/equalizer.c:1308 msgid "Delete preset" -msgstr "õÄÁÌÉÔØ ÐÒÅÕÓÔÁÎÏ×ÌÅÎÎÏÅ" +msgstr "õÄÁÌÉÔØ ÐÒÅÄÕÓÔÁÎÏ×ÌÅÎÎÏÅ" #: xmms/equalizer.c:1308 xmms/equalizer.c:1312 msgid "Delete" @@ -3041,7 +3072,7 @@ #: xmms/equalizer.c:1312 msgid "Delete auto-preset" -msgstr "õÄÁÌÉÔØ Á×ÔÏ-ÚÁÇÒÕÚËÕ" +msgstr "õÄÁÌÉÔØ Á×ÔÏÚÁÇÒÕÚËÕ" #: xmms/equalizer.c:1442 msgid "Configure Equalizer" @@ -3066,11 +3097,11 @@ "4: Finally, try to load the \"default\" preset" msgstr "" "åÓÌÉ ÜË×ÁÌÁÊÚÅÒ ×ËÌÀÞÅÎ × ÒÅÖÉÍ \"á×ÔÏ\", xmms ÂÕÄÅÔ ÐÙÔÁÔØÓÑ ÚÁÇÒÕÚÉÔØ " -"ÐÒÅÄÕÓÔÁÎÏ×ËÕ ÐÏ ÓÌÅÄÕÀÝÅÍÕ ÁÌÇÏÒÉÔÍÕ:\n" -"1: óÎÁÞÁÌÁ ÉÝÅÔ ÐÒÅÄÕÓÔÁÎÏ×ËÕ × ÄÉÒÅËÔÏÒÉÉ Ó ÐÒÏÉÇÒÙ×ÁÅÍÙÍ ÆÁÊÌÏÍ.\n" -"2: úÁÔÅÍ × ÄÉÒÅËÔÏÒÉÉ Ó ÄÒÕÇÉÍÉ ÐÒÅÄÕÓÔÁÎÏ×ËÁÍÉ.\n" -"3: úÁÔÅÍ ÉÝÅÔÓÑ ÐÒÅÄÕÓÔÁÎÏ×ËÁ ÚÁÐÉÓÁÎÁÑ Ó \"Á×ÔÏ-ÚÁÇÒÕÚËÏÊ\".\n" -"4: é ÎÁËÏÎÅà ÐÙÔÁÅÔÓÑ ÚÁÇÒÕÚÉÔØ ÐÒÅÄÕÓÔÁÎÏ×ËÕ \"ÐÏ ÕÍÏÌÞÁÎÉÀ\"" +"ÎÁÓÔÒÏÊËÕ ÐÏ ÓÌÅÄÕÀÝÅÍÕ ÁÌÇÏÒÉÔÍÕ:\n" +"1: óÎÁÞÁÌÁ ÉÝÅÔ ÎÁÓÔÒÏÊËÕ × ÄÉÒÅËÔÏÒÉÉ Ó ÐÒÏÉÇÒÙ×ÁÅÍÙÍ ÆÁÊÌÏÍ.\n" +"2: úÁÔÅÍ × ÄÉÒÅËÔÏÒÉÉ Ó ÄÒÕÇÉÍÉ ÎÁÓÔÒÏÊËÁÍÉ ÜË×ÁÌÁÊÚÅÒÁ.\n" +"3: úÁÔÅÍ ÉÝÅÔÓÑ ÎÁÓÔÒÏÊËÁ ÚÁÐÉÓÁÎÁÑ Ó \"Á×ÔÏÚÁÇÒÕÚËÏÊ\".\n" +"4: é ÎÁËÏÎÅà ÐÙÔÁÅÔÓÑ ÚÁÇÒÕÚÉÔØ ÎÁÓÔÒÏÊËÕ \"ÐÏ ÕÍÏÌÞÁÎÉÀ\"" #: xmms/about.c:27 msgid "Main Programming:" @@ -3095,7 +3126,7 @@ #: xmms/about.c:35 msgid "With Additional Help:" -msgstr "ó ÄÏÐÏÌÎÉÔÅÌØÎÏÊ ÐÏÍÏÝØÀ:" +msgstr "äÏÐÏÌÎÉÔÅÌØÎÁÑ ÐÏÍÏÝØ:" #: xmms/about.c:36 msgid "Sean Atkinson" @@ -3107,15 +3138,15 @@ #: xmms/about.c:38 msgid "Anders Carlsson (effect plugins)" -msgstr "Anders Carlsson (ÐÌÕÇÉÎ ÅÆÆÅËÔÁ)" +msgstr "Anders Carlsson (ÐÌÁÇÉÎ ÅÆÆÅËÔÁ)" #: xmms/about.c:39 msgid "Chun-Chung Chen (xfont patch)" -msgstr "" +msgstr "Chun-Chung Chen (ÉÓÐÒÁ×ÌÅÎÉÅ ÄÌÑ xfont)" #: xmms/about.c:40 msgid "Tim Ferguson (joystick plugin)" -msgstr "Tim Ferguson (ÐÌÕÇÉÎ ÄÖÏÊÓÔÉËÁ)" +msgstr "Tim Ferguson (ÐÌÁÇÉÎ ÄÖÏÊÓÔÉËÁ)" #: xmms/about.c:41 msgid "Ben Gertzfield" @@ -3139,16 +3170,16 @@ #: xmms/about.c:46 msgid "Michael Hipp and others (MPG123 engine)" -msgstr "Michael Hipp É ÄÒÕÇÉÅ (MPG123 Ä×ÉÖÏË)" +msgstr "Michael Hipp É ÄÒÕÇÉÅ (Ä×ÉÖÏË MPG123)" #. for languages that can't display 'adiaeresis' (ä) replace it with "ae" #: xmms/about.c:48 msgid "Olle Hällnäs (compiling fixes)" -msgstr "Olle H. (ÐÒÏÂÌÅÍÙ ËÏÍÐÉÌÑÃÉÉ)" +msgstr "Olle H. (ÉÓÐÒÁ×ÌÅÎÉÅ ÐÒÏÂÌÅÍ ËÏÍÐÉÌÑÃÉÉ)" #: xmms/about.c:49 msgid "Osamu Kayasono (3DNow!)" -msgstr "" +msgstr "Osamu Kayasono (ÐÏÄÄÅÒÖËÁ ÉÎÓÔÒÕËÃÉÊ 3DNow!)" #: xmms/about.c:50 msgid "Lyle B Kempler" @@ -3156,7 +3187,7 @@ #: xmms/about.c:51 msgid "J. Nick Koston (MikMod plugin)" -msgstr "J. Nick Koston (MikMod ÐÌÕÇÉÎ)" +msgstr "J. Nick Koston (MikMod ÐÌÁÇÉÎ)" #: xmms/about.c:52 msgid "Aaron Lehmann" @@ -3164,7 +3195,7 @@ #: xmms/about.c:53 msgid "Johan Levin (echo + stereo plugin)" -msgstr "Johan Levin (ÜÈÏ + ÜËÓÔÒÁ ÓÔÅÒÅÏ ÐÌÕÇÉÎ)" +msgstr "Johan Levin (ÜÈÏ + ÜËÓÔÒÁ ÓÔÅÒÅÏ ÐÌÁÇÉÎ)" #: xmms/about.c:54 msgid "Eric Lindvall" @@ -3184,7 +3215,7 @@ #: xmms/about.c:58 msgid "Carl van Schaik (pro logic plugin)" -msgstr "Carl van Schaik (ÐÒÏ-ÌÏÄÖÉË ÐÌÕÇÉÎ)" +msgstr "Carl van Schaik (ÐÒÏ-ÌÏÄÖÉË ÐÌÁÇÉÎ)" #. for languages that can't display 'odiaeresis' (ö) replace it with "oe" #: xmms/about.c:60 @@ -3193,7 +3224,7 @@ #: xmms/about.c:61 msgid "Charles Sielski (irman plugin)" -msgstr "Charles Sielski (ÐÌÕÇÉÎ ÉÎÆÒÁËÒÁÓÎÏÇÏ ÐÏÒÔÁ)" +msgstr "Charles Sielski (ÐÌÁÇÉÎ ÉÎÆÒÁËÒÁÓÎÏÇÏ ÐÏÒÔÁ)" #: xmms/about.c:62 msgid "Espen Skoglund" @@ -3201,7 +3232,7 @@ #: xmms/about.c:63 msgid "Kimura Takuhiro (3DNow!)" -msgstr "" +msgstr "Kimura Takuhiro (ÐÏÄÄÅÒÖËÁ ÉÎÓÔÒÕËÃÉÊ 3DNow!)" #: xmms/about.c:64 msgid "Zinx Verituse" @@ -3209,7 +3240,7 @@ #: xmms/about.c:65 msgid "Ryan Weaver (RedHat RPMs among other things)" -msgstr "Ryan Weaver (RPM ÆÁÊÌÙ ÄÌÑ RedHat É ÍÎÏÇÏ ÄÒÕÇÏÅ)" +msgstr "Ryan Weaver (RPM ÆÁÊÌÙ ÄÌÑ RedHat É ÍÎÏÇÏÅ ÄÒÕÇÏÅ)" #: xmms/about.c:66 msgid "Chris Wilson" @@ -3259,4 +3290,4 @@ #: xmms/about.c:174 msgid "Credits" -msgstr "õÞÁÓÔÎÉËÉ" +msgstr "âÌÁÇÏÄÁÒÎÏÓÔÉ" --NDin8bjvE/0mNLFQ-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 4: 0:55 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 04:00:53 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 678CC37B400; Tue, 19 Dec 2000 04:00:53 -0800 (PST) Received: (from sada@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJC0rW97645; Tue, 19 Dec 2000 04:00:53 -0800 (PST) (envelope-from sada) Date: Tue, 19 Dec 2000 04:00:53 -0800 (PST) From: Message-Id: <200012191200.eBJC0rW97645@freefall.freebsd.org> To: sada@FreeBSD.org, freebsd-ports@FreeBSD.org, issei@FreeBSD.org Subject: Re: ports/19591: ssh2 port ignores 'ignorenologin' from login.conf Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ssh2 port ignores 'ignorenologin' from login.conf Responsible-Changed-From-To: freebsd-ports->issei Responsible-Changed-By: sada Responsible-Changed-When: Tue Dec 19 04:00:19 PST 2000 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=19591 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 4: 3: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 04:03:06 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 500AF37B400; Tue, 19 Dec 2000 04:03:06 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJC36q00438; Tue, 19 Dec 2000 04:03:06 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 04:03:06 -0800 (PST) From: Message-Id: <200012191203.eBJC36q00438@freefall.freebsd.org> To: ishmael27@home.com, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23639: Update graphics/giblib to 1.1.0 (MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update graphics/giblib to 1.1.0 (MAINTAINER) State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 04:03:00 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23639 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 4:11:50 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 04:11:48 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9AE5537B698; Tue, 19 Dec 2000 04:11:48 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJCBms03627; Tue, 19 Dec 2000 04:11:48 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 04:11:48 -0800 (PST) From: Message-Id: <200012191211.eBJCBms03627@freefall.freebsd.org> To: joseph@randomnetworks.com, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23333: [NEW PORT] www/webresolve Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [NEW PORT] www/webresolve State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 04:10:54 PST 2000 State-Changed-Why: Committed, thanks. This port's Makefile had to be cleaned up in order for it to work. Be careful not to mangle the tabs when you submit your ports. http://www.freebsd.org/cgi/query-pr.cgi?pr=23333 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 4:18: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 04:18:07 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F33AA37B400; Tue, 19 Dec 2000 04:18:06 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJCI6304497; Tue, 19 Dec 2000 04:18:06 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 04:18:06 -0800 (PST) From: Message-Id: <200012191218.eBJCI6304497@freefall.freebsd.org> To: joseph@randomnetworks.com, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23337: [NEW PORT] net/balance Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [NEW PORT] net/balance State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 04:17:44 PST 2000 State-Changed-Why: Committed, thanks. Yet another mangled Makefile though. :( http://www.freebsd.org/cgi/query-pr.cgi?pr=23337 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 4:20:25 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 04:20:19 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4769037B69C for ; Tue, 19 Dec 2000 04:20:09 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJCK9604707; Tue, 19 Dec 2000 04:20:09 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 04:20:09 -0800 (PST) Resent-Message-Id: <200012191220.eBJCK9604707@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, casantos@cpmet.ufpel.tche.br Received: from gate.cpmet.ufpel.tche.br (gate.cpmet.ufpel.tche.br [200.248.148.33]) by hub.freebsd.org (Postfix) with ESMTP id 02F5B37B402 for ; Tue, 19 Dec 2000 04:11:18 -0800 (PST) Received: (from casantos@localhost) by gate.cpmet.ufpel.tche.br (8.11.1/8.11.1) id eBJCEbO06476; Tue, 19 Dec 2000 12:14:37 GMT (envelope-from casantos) Message-Id: <200012191214.eBJCEbO06476@gate.cpmet.ufpel.tche.br> Date: Tue, 19 Dec 2000 12:14:37 GMT From: casantos@cpmet.ufpel.tche.br Sender: casantos@gate.cpmet.ufpel.tche.br Reply-To: casantos@cpmet.ufpel.tche.br To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23641: ports upgrade LyX Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23641 >Category: ports >Synopsis: Upgrade LyX to version 1.1.5-fix2 >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 04:20:03 PST 2000 >Closed-Date: >Last-Modified: >Originator: Carlos A. M. dos Santos >Release: FreeBSD 4.2-RELEASE i386 >Organization: Federal University of Pelotas Meteorological Research Center Pelotas, RS, Brasil >Environment: FreeBSD 4.2-RELEASE i386 >Description: The current port of LyX, the documento processor is a little bit outdated. The attached file contains an updated version that inludes the second official fix distributed by the LyX team. >How-To-Repeat: :-) nothing here >Fix: Just replace the current tree by the one contained in the attached file. begin 644 lyx-1.1.5.2.tar.gz M'XL(`*=./SH``^U<:W/;.);-5_-78-WY$$]"2J1>ML=VV;$51]-^C:6,TU5; MI8)(2$*+)-@`:$F=R7_?"Y)Z6029[1J[=V:-\D/$.??B`A?`!2B"_GQ6>?/, M"=6KK48#O4$J59_\SRY0R[%;S7JS46\A9%>K=NL-:CRW82K%0F*.T!O.F"SB M3<>$^"]AT,LF'_Q_C2=D2'WR7&6`.YOUNM;_3J/>2/U?MVVGT03_VY#U!E6? MRZ#U]/_<_S^A&S)%$>-2()?Y/G$E92$*LBZ!AHP?[D`G,7Y"%U@2Y'("_[S# MG9TN!DU9A-Z",N/N]KYW[Q3E*4<7W6[;7O^]U.3^4-9718J,_!)!?VWL;/&$IYP+>+%"8W),>$:\LBS9#RE)+2P:V&I^#X58QJ.*I+, MUH6,BTYW50TSL1SJ=M8[_[RP\NVW=:N_I^"GSE52*RS=<2HUI#/;&OV.-K,< MR,K4J9+ZW=Y]Y^YXQXQL`QJC<].#W_;]\8YJV]/,.ZHE#./CE\[51?^B?=>^ MN8"2?.@7L\.WWU1#=R\Z]]\SYTG2(U^-^R\W/TJUZ!!YX.N0>.\>.KW/_4[W MKGUUM;>NX_WQ#A41\?T-+:!51IRYE10S+!)Z=&A<=3ZNRIY!CPZ$5=T0G-FV M*1GS)Q3Z7,I(G`5&^9:]0?7((_$K(R)588;QI=ON7UZ?_0SNF1.17)Y]Z=V> MW]Y\6N5\O;M>7=RT'R[/SU?7=^W[J\;J$HSMW=Y>I1E*3>?RRSTHO;\$XTUS M2N78A)(Y-GTZ.-Y]^^VK;7\\Z[:_5^`:O?UV=7M^=K7,V$VJL2%&0W=##*[] MV".;HEGF+G2!&_MX1W4]RT:<7,V_6M`QE(O^*]='$2?FD$`'.S1V3M]^:Y]_ MONU?=R^_H]W.$,U9C*8XE$B.J4A&.!K$U)=(F8<2GR%W3-P)X4C$D2)\0+$` M,Y[H4M,36BOW&!IK=^%N(V)"FDDO!R/>N1Y4[>'^Y^[]^?>_PL?>[9?SS]_1 M8CZQ:(C^4EF_$MRMN"PZXR2N(_QD4AN MAQ#H0.%[.,&L0^< M5M5I8;O5L`GV6D//=O?_+P^F?\.DQG\T&9FP`@M(6#@"_G`J&_\P]A%JMFH- MM05LU-6RTK'KK^/_)=(%*36340(QA$L>@@?8I=X:5R^PK`J0^]"@KD_ M1P^_=#L/OUSNO8[#_XBT&/\>$2Y_IC+*QG^SJ?;_58CYL`1HU9/XWWJ-_R^2 M8$&/8"V.D?>#$\$'-!U3=XQ&])$(-(!-+JSFB0'[>6*RH0FK=<2&H&_*N+=4 M]0'!GE_QT-`G,SJ@/I7S)"]B4UCL,]BD*>668?P]QH*:V2RS,N$#"G`XS^8B M(><^%*[D?0R;"@F?8\D"+*F+?7]NC$A(N+I/8:%N1(@G4!PA'R:P$';8F1(E MK?81ZKY'$/D@"?R%/E6?U$"P(*82*FLE=TJ&!,N8@]!BI9_L6LQDUP*Z/Z06 MAUC=1<&^X8XQQZY:)_V?AW'$`7]W\;C5IR_Z_5[9Y?MKI*S`O:$(DHI7KD6 MCY122'E!)"ZE#&DYA9=2QN7FCLMMH;*4$OKE%%9*B'FE1;DM MXK&4(LM]-"WJ=3`))IV_TB,S65&!*`JVL(\0F%QU`RP'.X?@$FKDKK"0&C%U MV^F.$QQ``,C#[V';>PX[,X@,(A^'SY_H""*2%NYAC?)_$#Z`6!/D8VSB^OV=OM\N>QN-\SGLQMH[_P"K(AY6XB8AQ+/+(\,<>S+-3B])P=5 MS3[&:?+V=;&C(KQ!J@[ONZ/A;" M\L6Z>1%V)WA$GF;#=.I5!IQA;XKGEKIZ"KHQSLWW2!\69+'(!4F`W7QD2`O$ MAKP`'#-8.TT9\_+1N$`4EE[C?$`K$LD"?<*E:@&9CST6",YR&\;U:82YA)D/ MRWD$HB1:=RFL?9/>:ZU%O"S['-8'+*"_)XNR'/R"1"3T-D=)DL_V$DK.<_&2!>Y[UZC+4HN$3PN)F^)/L=-A; MBSL&28L\I9`AX21T\ZK=NSW/RX5U.Z?8SX&^",(O8^KE*7-%/U^?`O0J84AI M_`Q(F:N!4N`A0/.=!(#.3P`5&UO4!$1H]1)=ZY#"UB$"MC'<](67,SY(K"\N MUA47%Q4'P*J*P^@_/(4H"]OK*_!6%<#*K4R`&EE"JP(V(#F3D"AKRT* MH/RB%*`O*M)KC'0:HQ*-VODSTK=4I&LISK0R`.7+"'VEA*Y2HK!2$$^T&A]U M&A]U&K,UAZA\8M07.K`C"=(K`6A%8SP=7YFZ@DX$'MA).71R:CC4)<*1!&U?18 M+L()F>0!8S+@9)J'3!C=-WD>`@Z=8YYO7H;EFI=B>4@(LW5>?L34DYOY")>Q MNB.4@W$&K4#S&T(,F;;D>&6I`IPAL%8'[3\'LV[I*I]UNJTI9:48.`^-L^:DG0`2< M%>#I\A-F7UI43,H2Y+ MI;24F.D+)N"XKGI/'PG&?XG4]`1:(T&:N7\@H;BL@*`\6U`(84)&B>@C8 M4H2X2`7%@5]8U60O4>`*\?@K&Y5/L31T\VFUF**! MEYU2.2W2D>:S['Y)/LX&@H&[B`8&U>G70UJX4+N07J&X]+*/!81T-M#C5!2) MB_0,4!%#8OXC+!Z[4H]+*GUM(SZJ*/`$E&H##MY;C_<;VZ`581GNM7@:[37P M*L;I"-D]F46.EK@>CDHH1%^=M1"A82PCD09?1!`=7"*=Q8_2ZBYFTT*XKL47 M,]`3>+9:EKC^D^]B%^N%;6#5:-O8HKFVD:P&"CCU*.0V`&V\G;G8^V\CZ;YU.Q\6S=N9BT?;MH!E^^=!LZW,UR=__X.2\722O_I\=Q\.!?7T;9\]^-1@W\;U?K MU5JS65/G_YU&\_7Y[Q=)IFFBB*V??U0_ZCCCSC4+T=]PB.P6G!HHX2,[0,3I- M/T$6F1&WO\I?NP30PQ)#%`+@[;LTG'6.[OHW*NST:>&F3[FMR!E`GO9 MTW_&^TUXH2.+:2D'C<+XAVCIV5_!W7Q>AEGW_P\ND(^7U$^,HV8R=H-Z8H.R0/[I+ M7@IQOGHIQ+OEVQCVCBJI@'&DOO0_.1K;9;*[2^%=D%9\^*MDT=&8@YX!\^8G MAG$4G?S"8@3C"(5LBFB8G!J!,01Z&)^K]U$D..G0./TJ]"H M3O.LZ*OW@Z2E&KWE,7Y.?HNI.A:3>>&=V$.[7U5OV&^:-:MF-?OUY(R.>M;6 M="R[MIA&S:IE5ZU:`XW481S@M@XL&_ETH-['`"ZL6?5^/LP9<]*YUIVUX#(%CXTCU5N2K]TXH9QG_-(JRelease-Note: >Audit-Trail: >Unformatted: Carlos A. M. dos Santos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 4:25: 2 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 04:25:00 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2553937B404; Tue, 19 Dec 2000 04:25:00 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJCP0f05300; Tue, 19 Dec 2000 04:25:00 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 04:25:00 -0800 (PST) From: Message-Id: <200012191225.eBJCP0f05300@freefall.freebsd.org> To: brad@kazrak.com, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23340: New port: devel/p5-Term-Size Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: devel/p5-Term-Size State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 04:24:39 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23340 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 4:28:51 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 04:28:50 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from gate.cpmet.ufpel.tche.br (gate.cpmet.ufpel.tche.br [200.248.148.33]) by hub.freebsd.org (Postfix) with ESMTP id 2D04637B402 for ; Tue, 19 Dec 2000 04:28:49 -0800 (PST) Received: from localhost (casantos@localhost) by gate.cpmet.ufpel.tche.br (8.11.1/8.11.1) with ESMTP id eBJCWEl06642 for ; Tue, 19 Dec 2000 12:32:15 GMT (envelope-from casantos@cpmet.ufpel.tche.br) X-Authentication-Warning: gate.cpmet.ufpel.tche.br: casantos owned process doing -bs Date: Tue, 19 Dec 2000 12:32:14 +0000 (GMT) From: Carlos A M dos Santos To: FreeBSD ports mailing list Subject: Re: ports/23641: ports upgrade LyX In-Reply-To: <200012191214.eBJCEbO06476@gate.cpmet.ufpel.tche.br> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org BTW, why is LyX under "ports/print"? It's an editor, not a printing tool. -- Carlos A. M. dos Santos Federal University of Pelotas Meteorological Research Center Av. Ildefonso Simoes Lopes 2791 Pelotas, RS, Brasil, CEP 96060-290 WWW: http://www.cpmet.ufpel.tche.br RENPAC (X.25): 153231641 Phone: +55 53 277-6767 FAX: +55 53 277-6722 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 4:40:59 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 04:40:57 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5727F37B404; Tue, 19 Dec 2000 04:40:57 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJCeuM06920; Tue, 19 Dec 2000 04:40:56 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 04:40:56 -0800 (PST) From: Message-Id: <200012191240.eBJCeuM06920@freefall.freebsd.org> To: greid@dogma.freebsd-uk.eu.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23633: New port: FreeSCI: A portable interpreter for SCI games Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: FreeSCI: A portable interpreter for SCI games State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 04:39:43 PST 2000 State-Changed-Why: Committed, thanks. Next time please make your shars put their contents in a separate directory relative to the current one. Also be careful about Makefile mangling. http://www.freebsd.org/cgi/query-pr.cgi?pr=23633 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 4:45:55 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 04:45:53 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 82FB037B699; Tue, 19 Dec 2000 04:45:53 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJCjrj07563; Tue, 19 Dec 2000 04:45:53 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 04:45:53 -0800 (PST) From: Message-Id: <200012191245.eBJCjrj07563@freefall.freebsd.org> To: mi@freebsd.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23617: new port: www/mod_layout Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: www/mod_layout State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 04:45:43 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23617 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 4:56:36 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 04:56:34 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AEC6037B404; Tue, 19 Dec 2000 04:56:34 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJCuY408840; Tue, 19 Dec 2000 04:56:34 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 04:56:34 -0800 (PST) From: Message-Id: <200012191256.eBJCuY408840@freefall.freebsd.org> To: ajk@iu.edu, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23392: New port: Alec Muffett's cracklib (password checking library) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: Alec Muffett's cracklib (password checking library) State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 04:55:52 PST 2000 State-Changed-Why: Committed, thanks! The only change I made was moving the patch's filename to files/patch-Makefile instead, to make it more obvious. http://www.freebsd.org/cgi/query-pr.cgi?pr=23392 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 5: 3:23 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 05:03:22 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 47F3737B400; Tue, 19 Dec 2000 05:03:22 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJD3Lw09561; Tue, 19 Dec 2000 05:03:21 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 05:03:21 -0800 (PST) From: Message-Id: <200012191303.eBJD3Lw09561@freefall.freebsd.org> To: kaoru@kaisei.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22867: new port: mail/p5-Mail-IMAPClient Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: mail/p5-Mail-IMAPClient State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 05:02:56 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22867 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 5:15:25 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 05:15:24 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A991037B404; Tue, 19 Dec 2000 05:15:23 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJDF8812815; Tue, 19 Dec 2000 05:15:08 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 05:15:08 -0800 (PST) From: Message-Id: <200012191315.eBJDF8812815@freefall.freebsd.org> To: skv@protey.ru, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22804: New port: sablotron - Sablotron is an XSL processor fully implemented in C++ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: sablotron - Sablotron is an XSL processor fully implemented in C++ State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 05:14:53 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22804 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 5:18:31 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 05:18:29 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (poynting.physics.purdue.edu [128.210.146.58]) by hub.freebsd.org (Postfix) with ESMTP id B44F737B400; Tue, 19 Dec 2000 05:18:29 -0800 (PST) Received: from altair.firepipe.net (pm005-044.dialup.bignet.net [64.79.80.236]) by puck.firepipe.net (Postfix) with ESMTP id CDFF11A2D; Tue, 19 Dec 2000 08:18:28 -0500 (EST) Received: by altair.firepipe.net (Postfix, from userid 1000) id 3F85319CB; Tue, 19 Dec 2000 07:13:57 -0500 (EST) Date: Tue, 19 Dec 2000 07:13:57 -0500 From: Will Andrews To: will@FreeBSD.org Cc: skv@protey.ru, freebsd-ports@FreeBSD.org Subject: Re: ports/22804: New port: sablotron - Sablotron is an XSL processor fully implemented in C++ Message-ID: <20001219071356.L1119@altair.firepipe.net> Reply-To: Will Andrews References: <200012191315.eBJDF8812815@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200012191315.eBJDF8812815@freefall.freebsd.org>; from will@FreeBSD.org on Tue, Dec 19, 2000 at 05:15:08AM -0800 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: will@altair.firepipe.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Dec 19, 2000 at 05:15:08AM -0800, will@FreeBSD.org wrote: > Committed, thanks. BTW, I forgot to say: I changed the names of your patchfiles so they make more sense. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 5:22: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 05:22:07 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E6DD37B402; Tue, 19 Dec 2000 05:22:07 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJDM7H14085; Tue, 19 Dec 2000 05:22:07 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 05:22:07 -0800 (PST) From: Message-Id: <200012191322.eBJDM7H14085@freefall.freebsd.org> To: skv@protey.ru, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22805: New port: XML::Sablotron - a Perl interface to the Sablotron XSLT processor Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: XML::Sablotron - a Perl interface to the Sablotron XSLT processor State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 05:21:32 PST 2000 State-Changed-Why: Committed, thanks. I modified your Makefile to make the build respect CC/CFLAGS, and changed the name of your patchfile. http://www.freebsd.org/cgi/query-pr.cgi?pr=22805 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 5:28:58 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 05:28:56 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9873437B402; Tue, 19 Dec 2000 05:28:56 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJDSuY14909; Tue, 19 Dec 2000 05:28:56 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 05:28:56 -0800 (PST) From: Message-Id: <200012191328.eBJDSuY14909@freefall.freebsd.org> To: skv@protey.ru, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22769: New port: XML::XPath - a set of modules for parsing and evaluating XPath statements Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: XML::XPath - a set of modules for parsing and evaluating XPath statements State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 05:28:48 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22769 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 5:32:52 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 05:32:51 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F1CEE37B400; Tue, 19 Dec 2000 05:32:50 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJDWoO15305; Tue, 19 Dec 2000 05:32:50 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 05:32:50 -0800 (PST) From: Message-Id: <200012191332.eBJDWoO15305@freefall.freebsd.org> To: ijliao@terry.dragon2.net, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23614: new ports: devel/p5-Term-Screen Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new ports: devel/p5-Term-Screen State-Changed-From-To: open->feedback State-Changed-By: will State-Changed-When: Tue Dec 19 05:32:16 PST 2000 State-Changed-Why: I'm having trouble with this one: ===> Extracting for p5-Term-Screen-1.00 >> Checksum OK for Screen-1.00.tar.gz. ===> Patching for p5-Term-Screen-1.00 ===> Configuring for p5-Term-Screen-1.00 ===> Building for p5-Term-Screen-1.00 /usr/bin/pod2man: Improper man page - no dash in NAME header in paragraph 4 of /usr/home/will/ports/devel/p5-Term-Screen/work/Screen-1.00/Screen.pm ?? http://www.freebsd.org/cgi/query-pr.cgi?pr=23614 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 5:37:46 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 05:37:45 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DDAC737B400; Tue, 19 Dec 2000 05:37:44 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJDbi216058; Tue, 19 Dec 2000 05:37:44 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 05:37:44 -0800 (PST) From: Message-Id: <200012191337.eBJDbi216058@freefall.freebsd.org> To: kew@icehouse.net, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23245: new port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 05:36:43 PST 2000 State-Changed-Why: Committed, thanks! Next time remember to make your shars properly so they create the port's directory first. It would be nice if there was a patch to make this program use getopt() instead of hardcoding the long/lat into it. http://www.freebsd.org/cgi/query-pr.cgi?pr=23245 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 5:42:27 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 05:42:26 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DFCCE37B402; Tue, 19 Dec 2000 05:42:25 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJDgPL16629; Tue, 19 Dec 2000 05:42:25 -0800 (PST) (envelope-from will) Date: Tue, 19 Dec 2000 05:42:25 -0800 (PST) From: Message-Id: <200012191342.eBJDgPL16629@freefall.freebsd.org> To: ryan@manunkind.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22203: new port: deskutils/loserjabber Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: deskutils/loserjabber State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Tue Dec 19 05:42:13 PST 2000 State-Changed-Why: I committed this port a few hours ago. http://www.freebsd.org/cgi/query-pr.cgi?pr=22203 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 7:36:25 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 07:36:23 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mothra.ecs.csus.edu (mothra.ecs.csus.edu [130.86.76.220]) by hub.freebsd.org (Postfix) with ESMTP id 542B137B400; Tue, 19 Dec 2000 07:36:23 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by mothra.ecs.csus.edu (8.11.1/8.11.1) with ESMTP id eBJH58F09459; Tue, 19 Dec 2000 09:05:08 -0800 (PST) (envelope-from joseph@randomnetworks.com) Date: Tue, 19 Dec 2000 09:05:08 -0800 (PST) From: Joseph Scott X-X-Sender: To: Cc: Subject: Re: ports/23337: [NEW PORT] net/balance In-Reply-To: <200012191218.eBJCI6304497@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 19 Dec 2000 will@FreeBSD.ORG wrote: # Synopsis: [NEW PORT] net/balance # # State-Changed-From-To: open->closed # State-Changed-By: will # State-Changed-When: Tue Dec 19 04:17:44 PST 2000 # State-Changed-Why: # Committed, thanks. Yet another mangled Makefile though. :( I will try to do better next time, honest! *********************************************************** * Joseph Scott The Office Of Water Programs * * joseph@randomnetworks.com joseph.scott@owp.csus.edu * *********************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 7:41:40 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 07:41:37 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4232C37B404; Tue, 19 Dec 2000 07:41:36 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJFfaB39161; Tue, 19 Dec 2000 07:41:36 -0800 (PST) (envelope-from lioux) Date: Tue, 19 Dec 2000 07:41:36 -0800 (PST) From: Message-Id: <200012191541.eBJFfaB39161@freefall.freebsd.org> To: jason-freebsd@mastaler.com, lioux@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22950: NEW PORT: mad - High-quality MPEG audio decoder Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NEW PORT: mad - High-quality MPEG audio decoder State-Changed-From-To: feedback->closed State-Changed-By: lioux State-Changed-When: Tue Dec 19 07:41:05 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=22950 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 7:48:31 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 07:48:29 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id F0CF737B402 for ; Tue, 19 Dec 2000 07:48:25 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eBJFmJf03522 for ; Tue, 19 Dec 2000 17:48:22 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.1/8.9.3) with ESMTP id eBJFmHl53760 for ; Tue, 19 Dec 2000 17:48:17 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A3F833D.A5D7D69B@FreeBSD.org> Date: Tue, 19 Dec 2000 17:48:13 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: ports@FreeBSD.org Subject: Re: cvs commit: ports/graphics/xmps Makefile distinfo pkg-plistports/graphics/xmps/files patch-af patch-aa patch-ad patch-ae References: <200012191541.eBJFfYF39143@freefall.freebsd.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Maxim Sobolev wrote: > sobomax 2000/12/19 07:41:34 PST > > Modified files: > graphics/xmps Makefile distinfo pkg-plist > graphics/xmps/files patch-aa patch-ad patch-ae > Added files: > graphics/xmps/files patch-af > Log: > Update to 0.1.3. > > Prompted by: MANY Thanks to all who were poking me on that. I have this update in my local tree since late August, but did not commit it because this crap didn't work for me at all (crash at startup). With smpeg-0.4.2 things improved a bit - at least it starts-up, but still segfaults when I'm trying to play anything. So use it at your own risk ;). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 8: 5:43 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 08:05:40 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mailout02.sul.t-online.com (mailout02.sul.t-online.com [194.25.134.17]) by hub.freebsd.org (Postfix) with ESMTP id C3ACF37B69B; Tue, 19 Dec 2000 08:05:39 -0800 (PST) Received: from fwd07.sul.t-online.com by mailout02.sul.t-online.com with smtp id 148PGk-0008Fm-08; Tue, 19 Dec 2000 17:05:38 +0100 Received: from neutron.cichlids.com (520050424122-0001@[62.225.192.124]) by fmrl07.sul.t-online.com with esmtp id 148PGJ-2CAVYOC; Tue, 19 Dec 2000 17:05:11 +0100 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id DE618AB0C; Tue, 19 Dec 2000 17:05:11 +0100 (CET) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id 3960F14A5E; Tue, 19 Dec 2000 17:05:11 +0100 (CET) Date: Tue, 19 Dec 2000 17:05:11 +0100 To: Maxim Sobolev Cc: ports@FreeBSD.ORG Subject: Re: cvs commit: ports/graphics/xmps Makefile distinfo pkg-plistports/graphics/xmps/files patch-af patch-aa patch-ad patch-ae Message-ID: <20001219170511.A32751@cichlids.cichlids.com> Mail-Followup-To: alex@cichlids.cichlids.com, Maxim Sobolev , ports@FreeBSD.ORG References: <200012191541.eBJFfYF39143@freefall.freebsd.org> <3A3F833D.A5D7D69B@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A3F833D.A5D7D69B@FreeBSD.org>; from sobomax@FreeBSD.ORG on Tue, Dec 19, 2000 at 05:48:13PM +0200 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. From: alex@big.endian.de (Alexander Langer) X-Sender: 520050424122-0001@t-dialin.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Maxim Sobolev (sobomax@FreeBSD.ORG): > starts-up, but still segfaults when I'm trying to play anything. So use it at > your own risk ;). did you merge my patches? I works just wonderful here... Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 8:10:18 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 08:10:17 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A81D737B404 for ; Tue, 19 Dec 2000 08:10:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJGA4W59050; Tue, 19 Dec 2000 08:10:04 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Dec 2000 08:10:04 -0800 (PST) Message-Id: <200012191610.eBJGA4W59050@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Matthew Emmerton" Subject: Re: ports/23601: Update www/hypermail Reply-To: "Matthew Emmerton" Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23601; it has been noted by GNATS. From: "Matthew Emmerton" To: , Cc: Subject: Re: ports/23601: Update www/hypermail Date: Tue, 19 Dec 2000 11:02:39 -0500 Since Hypermail doesn't create share/apache and share/apache/htdocs, it should not remove them. Furthermore, Hypermail should be installing its HTML and CGI into ${PREFIX}/share/hypermail, in order to keep things nicely separated. (After all, what if someone's not using Apache?) It should also display a pkg-message informing people that they have to copy the files into their document/CGI webspaces in order to use Hypermail. (If anything, this could be construed as a security feature.) I would also recommend that HAS_CONFIGURE=yes be changed to GNU_CONFIGURE=yes, and that CONFIGURE_ARGS be changed to CONFIGURE_ARGS += --with-httpddir=${PREFIX}/share/hypermail (When GNU_CONFIGURE is set, CONFIGURE_ARGS already has the PREFIX stuff, as well as a whole host of other niceties.) -- Matt Emmerton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 8:10:42 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 08:10:41 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 2C15C37B400 for ; Tue, 19 Dec 2000 08:10:38 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eBJGATf04056; Tue, 19 Dec 2000 18:10:31 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.1/8.9.3) with ESMTP id eBJGAVl66227; Tue, 19 Dec 2000 18:10:31 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A3F8871.3B8D31FA@FreeBSD.org> Date: Tue, 19 Dec 2000 18:10:26 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Alexander Langer Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/graphics/xmps Makefile distinfo pkg-plistports/graphics/xmps/files patch-af patch-aa patch-ad patch-ae References: <200012191541.eBJFfYF39143@freefall.freebsd.org> <3A3F833D.A5D7D69B@FreeBSD.org> <20001219170511.A32751@cichlids.cichlids.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Alexander Langer wrote: > Thus spake Maxim Sobolev (sobomax@FreeBSD.ORG): > > > starts-up, but still segfaults when I'm trying to play anything. So use it at > > your own risk ;). > > did you merge my patches? My patches are basically the same as yours, so no merge was necessary. > I works just wonderful here... What is your config (video h/w and XFree version)? -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 8:15:58 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 08:15:57 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mailout06.sul.t-online.com (mailout06.sul.t-online.com [194.25.134.19]) by hub.freebsd.org (Postfix) with ESMTP id 4529E37B400; Tue, 19 Dec 2000 08:15:56 -0800 (PST) Received: from fwd02.sul.t-online.com by mailout06.sul.t-online.com with smtp id 148PQg-0007xm-00; Tue, 19 Dec 2000 17:15:54 +0100 Received: from neutron.cichlids.com (520050424122-0001@[62.225.192.124]) by fmrl02.sul.t-online.com with esmtp id 148PQV-2GiMgSC; Tue, 19 Dec 2000 17:15:43 +0100 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id B15EAAB0C; Tue, 19 Dec 2000 17:15:43 +0100 (CET) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id 8AC6114A5E; Tue, 19 Dec 2000 17:15:39 +0100 (CET) Date: Tue, 19 Dec 2000 17:15:39 +0100 From: Alexander Langer To: Maxim Sobolev Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/graphics/xmps Makefile distinfo pkg-plistports/graphics/xmps/files patch-af patch-aa patch-ad patch-ae Message-ID: <20001219171539.A44718@cichlids.cichlids.com> Mail-Followup-To: Alexander Langer , Maxim Sobolev , ports@FreeBSD.org References: <200012191541.eBJFfYF39143@freefall.freebsd.org> <3A3F833D.A5D7D69B@FreeBSD.org> <20001219170511.A32751@cichlids.cichlids.com> <3A3F8871.3B8D31FA@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A3F8871.3B8D31FA@FreeBSD.org>; from sobomax@FreeBSD.org on Tue, Dec 19, 2000 at 06:10:26PM +0200 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. X-Sender: 520050424122-0001@t-dialin.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Maxim Sobolev (sobomax@FreeBSD.org): > What is your config (video h/w and XFree version)? RivaTNT I card (Elsa Erazor, 16 MB), XFree 4.0.1 I'm using the SDL backend for Output. X11 works too (same speed). OpenGL does not (black output only) resizing the play-window works great now in this version. I get a gdk-error if I use the GTK frontend about 1 second after the movie starts to play: Gdk-ERROR **: BadLength (poly request too large or internal Xlib length erro serial 30 error_code 16 request_code 5 minor_code 0 but the custom frontend works. Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 8:19:22 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 08:19:21 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id DF1A537B402 for ; Tue, 19 Dec 2000 08:19:06 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eBJGJ2f04293; Tue, 19 Dec 2000 18:19:02 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.1/8.9.3) with ESMTP id eBJGIxl71480; Tue, 19 Dec 2000 18:18:59 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A3F8A6D.5BDA8744@FreeBSD.org> Date: Tue, 19 Dec 2000 18:18:54 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Alexander Langer Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/graphics/xmps Makefile distinfo pkg-plistports/graphics/xmps/files patch-af patch-aa patch-ad patch-ae References: <200012191541.eBJFfYF39143@freefall.freebsd.org> <3A3F833D.A5D7D69B@FreeBSD.org> <20001219170511.A32751@cichlids.cichlids.com> <3A3F8871.3B8D31FA@FreeBSD.org> <20001219171539.A44718@cichlids.cichlids.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Alexander Langer wrote: > Thus spake Maxim Sobolev (sobomax@FreeBSD.org): > > > What is your config (video h/w and XFree version)? > > RivaTNT I card (Elsa Erazor, 16 MB), XFree 4.0.1 > > I'm using the SDL backend for Output. X11 works too (same speed). > OpenGL does not (black output only) > > resizing the play-window works great now in this version. > > I get a gdk-error if I use the GTK frontend about 1 second after the > movie starts to play: > > Gdk-ERROR **: BadLength (poly request too large or internal Xlib > length erro serial 30 error_code 16 request_code 5 minor_code 0 > > but the custom frontend works. Hmm, interesting. What do you mean "custom frontend"? -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 8:20: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 08:20:05 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 66CC437B400 for ; Tue, 19 Dec 2000 08:20:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJGK5O90606; Tue, 19 Dec 2000 08:20:05 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Dec 2000 08:20:05 -0800 (PST) Message-Id: <200012191620.eBJGK5O90606@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Hye-Shik Chang" Subject: Re: ports/22970: New Port : textproc/py2html Reply-To: "Hye-Shik Chang" Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22970; it has been noted by GNATS. From: "Hye-Shik Chang" To: , Cc: Subject: Re: ports/22970: New Port : textproc/py2html Date: Wed, 20 Dec 2000 01:12:03 +0900 SSdtIHNvcnJ5Lg0KVGhlIHNpdGUgJ2h0dHA6Ly9mcmVlYnNkLWtyLm9yZycgd2FzIGNoYW5nZWQg Zm9yIGtvcmVhbiBtaXJyb3Igb2Ygd3d3LkZyZWVCU0Qub3JnIC4NCg0KVGhpcyBpcyBmaXhlZCBz aGFyIDogIChidXQgJ2Z0cDIucHl0aG9uLm9yLmtyJyB3aWxsIGJlIG9rIGFmdGVyIFRUTCg4NjQw MCBzZWNzKSBmcm9tIG5vdykNCg0KLS0tIHB5Mmh0bWwuc2hhci5vcmlnICAgV2VkIERlYyAyMCAw MTowNDoyNyAyMDAwDQorKysgcHkyaHRtbC5zaGFyICAgICAgICBXZWQgRGVjIDIwIDAxOjA0OjUy IDIwMDANCkBAIC0zMSw4ICszMSw4IEBADQogWFBPUlROQU1FPSAgICAgcHkyaHRtbA0KIFhQT1JU VkVSU0lPTj0gIDAuNg0KIFhDQVRFR09SSUVTPSAgIHRleHRwcm9jIHd3dyBweXRob24NCi1YTUFT VEVSX1NJVEVTPSBodHRwOi8vZnJlZWJzZC1rci5vcmcvcHViL0ZyZWVCU0QvcG9ydHMvZGlzdGZp bGVzLyBcDQotWCAgICAgICAgICAgICAgZnRwOi8vcHl0aG9uLm9yLmtyL3B1Yi9GcmVlQlNEL3Bv cnRzL2Rpc3RmaWxlcy8NCitYTUFTVEVSX1NJVEVTPSBodHRwOi8vZGlzdC5mcmVlYnNkLWtyLm9y Zy9wdWIvRnJlZUJTRC9wb3J0cy9kaXN0ZmlsZXMvIFwNCitYICAgICAgICAgICAgICBmdHA6Ly9m dHAyLnB5dGhvbi5vci5rci9wdWIvRnJlZUJTRC9wb3J0cy9kaXN0ZmlsZXMvDQogWA0KIFhNQUlO VEFJTkVSPSAgIHBlcmt5QHB5dGhvbi5vci5rcg0KIFgNCg0KDQpNZXJyeSBDaHJpc3RtYXMhICA6 KQ0KDQo= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 8:20:10 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 08:20:09 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C46F37B400 for ; Tue, 19 Dec 2000 08:20:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJGK7d90641; Tue, 19 Dec 2000 08:20:07 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Dec 2000 08:20:07 -0800 (PST) Message-Id: <200012191620.eBJGK7d90641@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Hye-Shik Chang" Subject: Re: ports/23151: NEW PORT : sysutils/wake-on-lan Reply-To: "Hye-Shik Chang" Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23151; it has been noted by GNATS. From: "Hye-Shik Chang" To: , Cc: Subject: Re: ports/23151: NEW PORT : sysutils/wake-on-lan Date: Wed, 20 Dec 2000 01:19:22 +0900 SGkgYWdhaW4hDQoNCnNhbWUgcHJvYmxlbSB3aXRoIG15IHB5Mmh0bWwgcG9ydC4NCg0KVGhpcyBp cyB0aGUgcGF0Y2ggZm9yIHRoZSBwYXN0IFBSLg0KDQotLS0gd2FrZS1vbi1sYW4uc2hhci5vcmln ICAgICAgIFdlZCBEZWMgMjAgMDE6MTM6NDcgMjAwMA0KKysrIHdha2Utb24tbGFuLnNoYXIgICAg V2VkIERlYyAyMCAwMToxNDo0NyAyMDAwDQpAQCAtMjYsOSArMjYsOCBAQA0KIFhQT1JUTkFNRT0g ICAgIHdha2Utb24tbGFuDQogWFBPUlRWRVJTSU9OPSAgMS4xDQogWENBVEVHT1JJRVM9ICAgc3lz dXRpbHMgbmV0DQotWE1BU1RFUl9TSVRFUz0gaHR0cDovL2ZyZWVic2QubnR0bWNsLmNvbTo4MDAw L35hYi8gXA0KLVggICAgICAgICAgICAgIGh0dHA6Ly9mcmVlYnNkLWtyLm9yZy9wdWIvRnJlZUJT RC9wb3J0cy9kaXN0ZmlsZXMvIFwNCi1YICAgICAgICAgICAgICBmdHA6Ly9weXRob24ub3Iua3Iv cHViL0ZyZWVCU0QvcG9ydHMvZGlzdGZpbGVzLw0KK1hNQVNURVJfU0lURVM9IGh0dHA6Ly9kaXN0 LmZyZWVic2Qta3Iub3JnL3B1Yi9GcmVlQlNEL3BvcnRzL2Rpc3RmaWxlcy8gXA0KK1ggICAgICAg ICAgICAgIGZ0cDovL2Z0cDIucHl0aG9uLm9yLmtyL3B1Yi9GcmVlQlNEL3BvcnRzL2Rpc3RmaWxl cy8NCiBYDQogWE1BSU5UQUlORVI9ICAgcGVya3lAcHl0aG9uLm9yLmtyDQogWA0KDQpUaGFueCEN Cg0K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 8:22:25 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 08:22:21 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 7A10537B400; Tue, 19 Dec 2000 08:22:12 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eBJGLmf04340; Tue, 19 Dec 2000 18:21:50 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.1/8.9.3) with ESMTP id eBJGLpl76187; Tue, 19 Dec 2000 18:21:51 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A3F8B1B.CF6ABDD5@FreeBSD.org> Date: Tue, 19 Dec 2000 18:21:47 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Satoshi - Ports Wraith - Asami Cc: bmah@FreeBSD.org, nbm@mithrandr.moria.org, knu@idaemons.org, freebsd-ports@FreeBSD.org, will@FreeBSD.org Subject: Re: PROPOSAL: Use @comment PLIST variable to track where installedpackages came from [Was: Enhancement of pkg_version's version comparisonroutine] References: <86k8by6eis.wl@archon.local.idaemons.org> <20000927002401.A73341@mithrandr.moria.org> <39D9D006.652DC258@FreeBSD.org> <20001003161027.B67542@mithrandr.moria.org> <39D9EE01.7A880665@FreeBSD.org> <200010031657.e93Gvtg10718@bmah-freebsd-0.cisco.com> <39DB17BB.12805565@FreeBSD.org> <200010060426.e964Qvx70814@bmah-freebsd-0.cisco.com> <39DE1A48.C7C8C9CF@FreeBSD.org> <39E84F54.257664E5@FreeBSD.org> <39ED7741.BE909115@FreeBSD.org> <39EFEACA.F6215581@FreeBSD.org> <39F3E490.33CCCC61@FreeBSD.org> <200010251737.e9PHb0389114@bmah-freebsd-0.cisco.com> <39F71CD6.C7B5C8A9@FreeBSD.org> <200010251856.e9PIugC91054@bmah-freebsd-0.cisco.com> <39F83E4D.AB979DF0@FreeBSD.org> <200011301206.eAUC6ko84206@silvia.hip.berkeley.edu> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Satoshi - Ports Wraith - Asami wrote: > Hi Maxim and gang, > > * From: Maxim Sobolev > > Sorry for taking so long. Here is my proposed patch. I'll first > quote the last one I got from Maxim so you can compare. > > * With this message I attaching what is supposed to be a "latest version" of my patch. > * > * -Maxim > > * --------------7E7AC84E84CDA334197F7933 > * Content-Type: text/plain; charset=koi8-r; > * name="bsd.port.mk-origin.patch" > * Content-Transfer-Encoding: 7bit > * Content-Disposition: inline; > * filename="bsd.port.mk-origin.patch" > * > * --- bsd.port.mk.orig Thu Oct 26 17:14:32 2000 > * +++ bsd.port.mk Thu Oct 26 17:19:36 2000 > * @@ -1026,6 +1026,17 @@ > * PKGREQ?= ${PKGDIR}/pkg-req > * PKGMESSAGE?= ${PKGDIR}/pkg-message > * > * +BASENAME?= /usr/bin/basename > * + > * +.if ${OSVERSION} > 500012 > * +.for _CATEGORY in ${CATEGORIES} > * +PKGCATEGORY?= ${_CATEGORY} > * +.endfor > * +_PORTDIRNAME!= ${BASENAME} ${.CURDIR} > * +PORTDIRNAME?= ${_PORTDIRNAME} > * +PKGORIGIN?= ${PKGCATEGORY}/${PORTDIRNAME} > * +.endif > * + > * TMPPLIST?= ${WRKDIR}/.PLIST.mktmp > * > * PKG_CMD?= /usr/sbin/pkg_create > * @@ -1048,6 +1059,9 @@ > * .if !defined(NO_MTREE) > * PKG_ARGS+= -m ${MTREE_FILE} > * .endif > * +.if defined(PKGORIGIN) && ${OSVERSION} > 500012 > * +PKG_ARGS+= -o ${PKGORIGIN} > * +.endif > * .endif > * .if defined(PKG_NOCOMPRESS) > * PKG_SUFX?= .tar > * @@ -1067,7 +1081,6 @@ > * .endif > * > * AWK?= /usr/bin/awk > * -BASENAME?= /usr/bin/basename > * CAT?= /bin/cat > * CHMOD?= /bin/chmod > * CHOWN?= /usr/sbin/chown > * > * --------------7E7AC84E84CDA334197F7933-- > > === > Index: bsd.port.mk > =================================================================== > RCS file: /usr/cvs/ports/Mk/bsd.port.mk,v > retrieving revision 1.360 > diff -u -r1.360 bsd.port.mk > --- bsd.port.mk 2000/11/16 13:06:25 1.360 > +++ bsd.port.mk 2000/11/30 12:00:00 > @@ -1046,6 +1046,15 @@ > > TMPPLIST?= ${WRKDIR}/.PLIST.mktmp > > +.if ${OSVERSION} >= 400000 > +.for _CATEGORY in ${CATEGORIES} > +PKGCATEGORY?= ${_CATEGORY} > +.endfor > +_PORTDIRNAME!= ${BASENAME} ${.CURDIR} > +PORTDIRNAME?= ${_PORTDIRNAME} > +PKGORIGIN?= ${PKGCATEGORY}/${PORTDIRNAME} > +.endif > + > PKG_CMD?= /usr/sbin/pkg_create > PKG_DELETE?= /usr/sbin/pkg_delete > PKG_INFO?= /usr/sbin/pkg_info > @@ -1066,6 +1075,9 @@ > .if !defined(NO_MTREE) > PKG_ARGS+= -m ${MTREE_FILE} > .endif > +.if defined(PKGORIGIN) > +PKG_ARGS+= -o ${PKGORIGIN} > +.endif > .endif > .if defined(PKG_NOCOMPRESS) > PKG_SUFX?= .tar > @@ -1382,7 +1394,7 @@ > > .if ${OSVERSION} >= 300000 > # You need an upgrade kit or make world newer than this > -BSDPORTMKVERSION= 20000201 > +BSDPORTMKVERSION= 20001103 > .if exists(/var/db/port.mkversion) > VERSIONFILE= /var/db/port.mkversion > .else > === > > I noticed you didn't merge the changes back to 3-stable (actually, you > should) so I put in a check for 4.0 and higher. I took out the test > from the PKG_ARGS part since PKGORIGIN won't be set if the earlier > test fails. > > The merge to 4-stable was on October 31 so a port.mkversion of > November 3rd should pretty much cover the worst possible mirror delay. Any progress yet? -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 8:22:58 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 08:22:56 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from nevermind.kiev.ua (unknown [212.109.53.33]) by hub.freebsd.org (Postfix) with ESMTP id BF7B137B69D for ; Tue, 19 Dec 2000 08:22:53 -0800 (PST) Received: (from never@localhost) by nevermind.kiev.ua (8.11.1/8.11.1) id eBJGMA562821; Tue, 19 Dec 2000 18:22:10 +0200 (EET) (envelope-from never) Date: Tue, 19 Dec 2000 18:22:10 +0200 From: Nevermind To: Hye-Shik Chang Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/23151: NEW PORT : sysutils/wake-on-lan Message-ID: <20001219182210.C55545@nevermind.kiev.ua> References: <200012191620.eBJGK7d90641@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200012191620.eBJGK7d90641@freefall.freebsd.org>; from perky@python.or.kr on Tue, Dec 19, 2000 at 08:20:07AM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, Hye-Shik Chang! On Tue, Dec 19, 2000 at 08:20:07AM -0800, you wrote: Korean? > The following reply was made to PR ports/23151; it has been noted by GNATS. > > From: "Hye-Shik Chang" > To: , > Cc: > Subject: Re: ports/23151: NEW PORT : sysutils/wake-on-lan > Date: Wed, 20 Dec 2000 01:19:22 +0900 > > SGkgYWdhaW4hDQoNCnNhbWUgcHJvYmxlbSB3aXRoIG15IHB5Mmh0bWwgcG9ydC4NCg0KVGhpcyBp > cyB0aGUgcGF0Y2ggZm9yIHRoZSBwYXN0IFBSLg0KDQotLS0gd2FrZS1vbi1sYW4uc2hhci5vcmln > ICAgICAgIFdlZCBEZWMgMjAgMDE6MTM6NDcgMjAwMA0KKysrIHdha2Utb24tbGFuLnNoYXIgICAg > V2VkIERlYyAyMCAwMToxNDo0NyAyMDAwDQpAQCAtMjYsOSArMjYsOCBAQA0KIFhQT1JUTkFNRT0g > ICAgIHdha2Utb24tbGFuDQogWFBPUlRWRVJTSU9OPSAgMS4xDQogWENBVEVHT1JJRVM9ICAgc3lz > dXRpbHMgbmV0DQotWE1BU1RFUl9TSVRFUz0gaHR0cDovL2ZyZWVic2QubnR0bWNsLmNvbTo4MDAw > L35hYi8gXA0KLVggICAgICAgICAgICAgIGh0dHA6Ly9mcmVlYnNkLWtyLm9yZy9wdWIvRnJlZUJT > RC9wb3J0cy9kaXN0ZmlsZXMvIFwNCi1YICAgICAgICAgICAgICBmdHA6Ly9weXRob24ub3Iua3Iv > cHViL0ZyZWVCU0QvcG9ydHMvZGlzdGZpbGVzLw0KK1hNQVNURVJfU0lURVM9IGh0dHA6Ly9kaXN0 > LmZyZWVic2Qta3Iub3JnL3B1Yi9GcmVlQlNEL3BvcnRzL2Rpc3RmaWxlcy8gXA0KK1ggICAgICAg > ICAgICAgIGZ0cDovL2Z0cDIucHl0aG9uLm9yLmtyL3B1Yi9GcmVlQlNEL3BvcnRzL2Rpc3RmaWxl > cy8NCiBYDQogWE1BSU5UQUlORVI9ICAgcGVya3lAcHl0aG9uLm9yLmtyDQogWA0KDQpUaGFueCEN > Cg0K -- Alexandr P. Kovalenko http://nevermind.kiev.ua/ NEVE-RIPE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 8:24: 2 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 08:24:01 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mailout01.sul.t-online.com (mailout01.sul.t-online.com [194.25.134.80]) by hub.freebsd.org (Postfix) with ESMTP id 6B04E37B402; Tue, 19 Dec 2000 08:23:56 -0800 (PST) Received: from fwd00.sul.t-online.com by mailout01.sul.t-online.com with smtp id 148PYQ-00023U-03; Tue, 19 Dec 2000 17:23:54 +0100 Received: from neutron.cichlids.com (520050424122-0001@[62.225.192.124]) by fmrl00.sul.t-online.com with esmtp id 148PXw-0psk7MC; Tue, 19 Dec 2000 17:23:24 +0100 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id B5C82AB0C; Tue, 19 Dec 2000 17:23:24 +0100 (CET) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id 6132E14A5E; Tue, 19 Dec 2000 17:23:23 +0100 (CET) Date: Tue, 19 Dec 2000 17:23:23 +0100 From: Alexander Langer To: Maxim Sobolev Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/graphics/xmps Makefile distinfo pkg-plistports/graphics/xmps/files patch-af patch-aa patch-ad patch-ae Message-ID: <20001219172323.A582@cichlids.cichlids.com> Mail-Followup-To: Alexander Langer , Maxim Sobolev , ports@FreeBSD.org References: <200012191541.eBJFfYF39143@freefall.freebsd.org> <3A3F833D.A5D7D69B@FreeBSD.org> <20001219170511.A32751@cichlids.cichlids.com> <3A3F8871.3B8D31FA@FreeBSD.org> <20001219171539.A44718@cichlids.cichlids.com> <3A3F8A6D.5BDA8744@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A3F8A6D.5BDA8744@FreeBSD.org>; from sobomax@FreeBSD.org on Tue, Dec 19, 2000 at 06:18:54PM +0200 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. X-Sender: 520050424122-0001@t-dialin.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Maxim Sobolev (sobomax@FreeBSD.org): > Hmm, interesting. What do you mean "custom frontend"? You can switch between two frontends (GUI, that is, the thing with the play/stop/forward/rewind/etc buttons :): GTK and "personal" GUI. Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 8:24:11 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 08:24:10 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 3F38237B402; Tue, 19 Dec 2000 08:24:03 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eBJGNxf04378; Tue, 19 Dec 2000 18:23:59 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.1/8.9.3) with ESMTP id eBJGO1l79111; Tue, 19 Dec 2000 18:24:01 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A3F8B9D.B3AAF1CA@FreeBSD.org> Date: Tue, 19 Dec 2000 18:23:57 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: GNU Texinfo pages handling patch, revised References: <3A23C53C.67C84A71@FreeBSD.org> <3A2B6048.3E8D130D@FreeBSD.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Maxim Sobolev wrote: > Maxim Sobolev wrote: > > > Hi -ports & PW, > > > > Some time ago I submitted a patch for bsd.port.mk to automate handling of info > > pages and was told that it should be extended to allow specify number of pieces > > page being split onto (i.e. bar.info, bar.info-1, bar.info-2 etc.). I extended > > my patch to handle this and attaching it with this message. Also I'm attaching > > diffs for two ports, which should have you an idea how it's supposed to work. > > > > [Patch omitted] > > > Huh, it seems that my mail path is broken somehow, as I have not received any comments/flames/loveletters etc. in reply to my proposal. Would you folks be > so kind to resend your postings again. > Satoshi, Please say something, your deathly silence drives me mad! -madmax To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 8:30: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 08:30:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C8F6737B400 for ; Tue, 19 Dec 2000 08:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJGU3P23791; Tue, 19 Dec 2000 08:30:03 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Dec 2000 08:30:03 -0800 (PST) Message-Id: <200012191630.eBJGU3P23791@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Hye-Shik Chang Subject: Re: ports/22970: New Port : textproc/py2html Reply-To: Hye-Shik Chang Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22970; it has been noted by GNATS. From: Hye-Shik Chang To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/22970: New Port : textproc/py2html Date: Wed, 20 Dec 2000 01:28:43 +0900 excuse me for my mistake ------ I'm sorry. The site 'http://freebsd-kr.org' was changed for korean mirror of www.FreeBSD.org . This is fixed shar : (but 'ftp2.python.or.kr' will be ok after TTL(86400 secs) from now) --- py2html.shar.orig Wed Dec 20 01:04:27 2000 +++ py2html.shar Wed Dec 20 01:04:52 2000 @@ -31,8 +31,8 @@ XPORTNAME= py2html XPORTVERSION= 0.6 XCATEGORIES= textproc www python -XMASTER_SITES= http://freebsd-kr.org/pub/FreeBSD/ports/distfiles/ \ -X ftp://python.or.kr/pub/FreeBSD/ports/distfiles/ +XMASTER_SITES= http://dist.freebsd-kr.org/pub/FreeBSD/ports/distfiles/ \ +X ftp://ftp2.python.or.kr/pub/FreeBSD/ports/distfiles/ X XMAINTAINER= perky@python.or.kr X Merry Christmas! :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 8:40: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 08:40:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7701737B400 for ; Tue, 19 Dec 2000 08:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJGe3h25306; Tue, 19 Dec 2000 08:40:03 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Dec 2000 08:40:03 -0800 (PST) Message-Id: <200012191640.eBJGe3h25306@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Hye-Shik Chang Subject: Re: ports/23151: NEW PORT : sysutils/wake-on-lan Reply-To: Hye-Shik Chang Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23151; it has been noted by GNATS. From: Hye-Shik Chang To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/23151: NEW PORT : sysutils/wake-on-lan Date: Wed, 20 Dec 2000 01:31:51 +0900 excuse me for my mistake ------ Hi again! same problem with my py2html port. This is the patch for the past PR. --- wake-on-lan.shar.orig Wed Dec 20 01:13:47 2000 +++ wake-on-lan.shar Wed Dec 20 01:14:47 2000 @@ -26,9 +26,8 @@ XPORTNAME= wake-on-lan XPORTVERSION= 1.1 XCATEGORIES= sysutils net -XMASTER_SITES= http://freebsd.nttmcl.com:8000/~ab/ \ -X http://freebsd-kr.org/pub/FreeBSD/ports/distfiles/ \ -X ftp://python.or.kr/pub/FreeBSD/ports/distfiles/ +XMASTER_SITES= http://dist.freebsd-kr.org/pub/FreeBSD/ports/distfiles/ \ +X ftp://ftp2.python.or.kr/pub/FreeBSD/ports/distfiles/ X XMAINTAINER= perky@python.or.kr X Thanx! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 9: 7:13 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 09:07:11 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 9154937B402 for ; Tue, 19 Dec 2000 09:07:08 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eBJH72f05279; Tue, 19 Dec 2000 19:07:05 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.1/8.9.3) with ESMTP id eBJH76l09251; Tue, 19 Dec 2000 19:07:06 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A3F95B5.572B409C@FreeBSD.org> Date: Tue, 19 Dec 2000 19:07:02 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Alexander Langer Cc: ports@FreeBSD.org Subject: Re: cvs commit: ports/graphics/xmps Makefile distinfo pkg-plistports/graphics/xmps/files patch-af patch-aa patch-ad patch-ae References: <200012191541.eBJFfYF39143@freefall.freebsd.org> <3A3F833D.A5D7D69B@FreeBSD.org> <20001219170511.A32751@cichlids.cichlids.com> <3A3F8871.3B8D31FA@FreeBSD.org> <20001219171539.A44718@cichlids.cichlids.com> <3A3F8A6D.5BDA8744@FreeBSD.org> <20001219172323.A582@cichlids.cichlids.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Alexander Langer wrote: > Thus spake Maxim Sobolev (sobomax@FreeBSD.org): > > > Hmm, interesting. What do you mean "custom frontend"? > > You can switch between two frontends (GUI, that is, the thing with the > play/stop/forward/rewind/etc buttons :): GTK and "personal" GUI. Ah, OK. I'll try that. BTW, I've just commited smpeg-xmms, so you may want to try it out also. ;) -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 9:25:58 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 09:25:56 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id A243E37B400; Tue, 19 Dec 2000 09:25:52 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eBJHPlf05639; Tue, 19 Dec 2000 19:25:49 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.1/8.9.3) with ESMTP id eBJHPol09559; Tue, 19 Dec 2000 19:25:50 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A3F9A19.5F1803ED@FreeBSD.org> Date: Tue, 19 Dec 2000 19:25:45 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: ports@FreeBSD.org Cc: knu@FreeBSD.org Subject: Porting Plex86 to FreeBSD Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi folks, I have a plan to start porting Plex86 (GPL'ed vmware clone available at www.plex86.org) for FreeBSD, so if anybody has any work already done or want to collaborate please let me know. Recently this thing was ported over to NetBSD, so I think we have a good chances to succeed with it in reasonable amount of time. I there are any porters willing to join me I would propose to create appropriate project at SourceForge to use their cvs repo for collaboration. Thanks! -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 9:40:15 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 09:40:09 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2DA7837B400 for ; Tue, 19 Dec 2000 09:40:09 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJHe9B36285; Tue, 19 Dec 2000 09:40:09 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 09:40:09 -0800 (PST) Resent-Message-Id: <200012191740.eBJHe9B36285@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, quinot@inf.enst.fr Received: from infres.enst.fr (infres-192.enst.fr [137.194.192.1]) by hub.freebsd.org (Postfix) with ESMTP id 4CB8237B404 for ; Tue, 19 Dec 2000 09:36:52 -0800 (PST) Received: from shalmaneser.enst.fr (shalmaneser.enst.fr [137.194.160.128]) by infres.enst.fr (Postfix) with ESMTP id 04C5F45443 for ; Tue, 19 Dec 2000 18:36:47 +0100 (MET) Received: by shalmaneser.enst.fr (Postfix, from userid 11117) id EF96511347; Tue, 19 Dec 2000 18:36:46 +0100 (CET) Message-Id: <20001219173646.EF96511347@shalmaneser.enst.fr> Date: Tue, 19 Dec 2000 18:36:46 +0100 (CET) From: quinot@inf.enst.fr Reply-To: quinot@inf.enst.fr To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23645: Updated port: devel/asis 3.13p Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23645 >Category: ports >Synopsis: Updated port: devel/asis 3.13p >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 09:40:05 PST 2000 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD shalmaneser.enst.fr 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Thu Nov 30 15:10:10 CET 2000 root@shalmaneser.enst.fr:/usr/obj/usr/src/sys/SHALMANESER i386 >Description: >How-To-Repeat: >Fix: diff -ur asis.old/Makefile asis/Makefile --- asis.old/Makefile Mon Aug 28 11:38:35 2000 +++ asis/Makefile Tue Dec 19 18:29:04 2000 @@ -6,7 +6,7 @@ # PORTNAME= asis -PORTVERSION= 3.12p +PORTVERSION= 3.13p CATEGORIES= devel MASTER_SITES= \ ftp://ftp.lip6.fr/pub/gnat/${PORTVERSION}/asis/ \ @@ -37,10 +37,10 @@ .if !defined(NOPORTDOCS) @ ${MKDIR} ${PREFIX}/share/doc/asis || true @ ${INSTALL_DATA} ${WRKSRC}/documentation/* ${PREFIX}/share/doc/asis - @ ${INSTALL_DATA} ${WRKSRC}/asistant/asistant.ug ${PREFIX}/share/doc/asis/README.asistant @ ${INSTALL_DATA} ${WRKSRC}/examples/ds/README ${PREFIX}/share/doc/asis/README.ds - @ ${INSTALL_DATA} ${WRKSRC}/examples/gnatelim/README ${PREFIX}/share/doc/asis/README.gnatelim - @ ${INSTALL_DATA} ${WRKSRC}/examples/gnatstub/README ${PREFIX}/share/doc/asis/README.gnatstub + @ ${INSTALL_DATA} ${WRKSRC}/tools/asistant/asistant.ug ${PREFIX}/share/doc/asis/README.asistant + @ ${INSTALL_DATA} ${WRKSRC}/tools/gnatelim/README ${PREFIX}/share/doc/asis/README.gnatelim + @ ${INSTALL_DATA} ${WRKSRC}/tools/gnatstub/README ${PREFIX}/share/doc/asis/README.gnatstub .endif .include diff -ur asis.old/distinfo asis/distinfo --- asis.old/distinfo Tue Aug 1 12:00:31 2000 +++ asis/distinfo Tue Dec 19 18:08:01 2000 @@ -1 +1 @@ -MD5 (asis-3.12p-src.tar.gz) = c5ab95b720c6ab6e923a6904b6d2e183 +MD5 (asis-3.13p-src.tar.gz) = 1686a3846ea09e7d14a72684732de839 diff -ur asis.old/files/Makefile.bsd asis/files/Makefile.bsd --- asis.old/files/Makefile.bsd Tue Aug 1 12:00:31 2000 +++ asis/files/Makefile.bsd Tue Dec 19 18:21:56 2000 @@ -7,13 +7,13 @@ ${LN} -sf libasis-${PORTVERSION}.so.1 libasis-${PORTVERSION}.so ${GMAKE} -C obj clean libasis.a CFLAGS="${CFLAGS}" CC=adagcc chmod a-w obj/*.ali - cd asistant && \ - gnatmake ${CFLAGS} -o ../asistant.prg asistant-driver -I../asis -I../gnat -I../obj -largs -L.. -lasis-${PORTVERSION} cd examples/ds && \ gnatmake ${CFLAGS} -o ../../display_source display_source ${ASISPROGFLAGS} - cd examples/gnatelim && \ + cd tools/asistant && \ + gnatmake ${CFLAGS} -o ../../asistant.prg asistant-driver ${ASISPROGFLAGS} + cd tools/gnatelim && \ gnatmake ${CFLAGS} -o ../../gnatelim gnatelim-driver ${ASISPROGFLAGS} - cd examples/gnatstub && \ + cd tools/gnatstub && \ gnatmake ${CFLAGS} -o ../../gnatstub gnatstub-driver ${ASISPROGFLAGS} clean: diff -ur asis.old/files/patch-ab asis/files/patch-ab --- asis.old/files/patch-ab Tue Aug 1 12:00:31 2000 +++ asis/files/patch-ab Tue Dec 19 18:24:12 2000 @@ -1,27 +1,30 @@ -#PATCHOPTIONS: -p0 ---- examples/ds/display_source.adb.dist Wed Sep 1 17:16:01 1999 -+++ examples/ds/display_source.adb Fri May 26 19:02:05 2000 -@@ -311,7 +311,7 @@ - Asis.Ada_Environments.Dissociate ( The_DS_Context ); - Asis.Implementation.Finalize (""); +--- obj/Makefile.dist Wed Jul 19 21:09:05 2000 ++++ obj/Makefile Tue Dec 19 18:16:57 2000 +@@ -18,11 +18,11 @@ + endif -- -- let's delete the *.at? and *.ali files -+ -- let's delete the *.adt and *.ali files - declare - To_Erase : String := Ada.Command_Line.Argument (Command_File) ; - File : File_Type ; -@@ -320,12 +320,12 @@ - To_Erase (To_Erase'Last - 3 .. To_Erase'Last - 1 ) = ".AD" - then - -- tree file -- To_Erase ( To_Erase'Last - 1 ) := 't' ; -+ To_Erase ( To_Erase'Last ) := 't' ; - Open ( File , Out_File , To_Erase ) ; - Delete ( File ) ; + bld-objs: +- gcc -c $(GNATMAKE_FLAGS) -I$(GNAT_DIR) -I$(ASIS_DIR) install_asis.adb ++ $(CC) -c $(GNATMAKE_FLAGS) -I$(GNAT_DIR) -I$(ASIS_DIR) install_asis.adb + # install_asis.adb is not '-gnatg-compilable' + ifeq "$(findstring hppa, $(host))" "hppa" + # this file has problems when compiled with optimization see 7418-013 +- gcc -c -I$(GNAT_DIR) $(CFLAGS) -O0 $(ASIS_DIR)/a4g-a_sinput.adb ++ $(CC) -c -I$(GNAT_DIR) $(CFLAGS) -O0 $(ASIS_DIR)/a4g-a_sinput.adb + endif + gnatmake -c $(GNATMAKE_FLAGS) -aI$(GNAT_DIR) -aI$(ASIS_DIR) $(CFLAGS)\ + install_asis.adb \ +@@ -31,11 +31,11 @@ - -- ali file -- To_Erase (To_Erase'Last -2 .. To_Erase'Last) := "ali"; -+ To_Erase (To_Erase'Last - 2 .. To_Erase'Last) := "ali"; - Open ( File , Out_File , To_Erase ) ; - Delete ( File ) ; + libasis$(soext): clean + $(MAKE) -e bld-objs CFLAGS="$(CFLAGS) -fPIC" +- gcc -shared -o libasis$(soext) *$(objext) ++ $(CC) -shared -o libasis$(soext) *$(objext) + clean: + $(RM) *$(objext) + $(RM) *.ali + $(RM) *$(arext) + $(RM) *$(soext) +- $(RM) *~ ++ $(RM) *~ diff -ur asis.old/pkg-plist asis/pkg-plist --- asis.old/pkg-plist Tue Aug 1 12:00:31 2000 +++ asis/pkg-plist Tue Dec 19 18:32:48 2000 @@ -19,6 +19,8 @@ lib/asis/a4g-a_sinput.ads lib/asis/a4g-a_types.adb lib/asis/a4g-a_types.ads +lib/asis/a4g-asis_tables.adb +lib/asis/a4g-asis_tables.ads lib/asis/a4g-c_u_info.adb lib/asis/a4g-c_u_info.ads lib/asis/a4g-contt-dp.adb @@ -72,6 +74,8 @@ lib/asis/a4g-span_beginning.ads lib/asis/a4g-span_end.adb lib/asis/a4g-span_end.ads +lib/asis/a4g-stand.adb +lib/asis/a4g-stand.ads lib/asis/a4g-tree_rec.ads lib/asis/a4g-u_conv.adb lib/asis/a4g-u_conv.ads @@ -95,6 +99,8 @@ lib/asis/asis-compilation_units.ads lib/asis/asis-data_decomposition-aux.adb lib/asis/asis-data_decomposition-aux.ads +lib/asis/asis-data_decomposition-extensions.adb +lib/asis/asis-data_decomposition-extensions.ads lib/asis/asis-data_decomposition-debug.adb lib/asis/asis-data_decomposition-debug.ads lib/asis/asis-data_decomposition-set_get.adb @@ -203,6 +209,7 @@ lib/asis/a4g-a_sem.ali lib/asis/a4g-a_sinput.ali lib/asis/a4g-a_types.ali +lib/asis/a4g-asis_tables.ali lib/asis/a4g-c_u_info.ali lib/asis/a4g-contt-dp.ali lib/asis/a4g-contt-sd.ali @@ -231,6 +238,7 @@ lib/asis/a4g-skip_tb.ali lib/asis/a4g-span_beginning.ali lib/asis/a4g-span_end.ali +lib/asis/a4g-stand.ali lib/asis/a4g-tree_rec.ali lib/asis/a4g-u_conv.ali lib/asis/a4g-unit_rec.ali @@ -243,6 +251,7 @@ lib/asis/asis-compilation_units-times.ali lib/asis/asis-compilation_units.ali lib/asis/asis-data_decomposition-aux.ali +lib/asis/asis-data_decomposition-extensions.ali lib/asis/asis-data_decomposition-set_get.ali lib/asis/asis-data_decomposition-vcheck.ali lib/asis/asis.ali @@ -294,8 +303,8 @@ lib/asis/widechar.ali lib/libasis.a -lib/libasis-3.12p.so -lib/libasis-3.12p.so.1 +lib/libasis-3.13p.so +lib/libasis-3.13p.so.1 @exec /sbin/ldconfig -m %D/lib @unexec /sbin/ldconfig -R >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 9:50:18 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 09:50:12 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BBE0237B699 for ; Tue, 19 Dec 2000 09:50:12 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJHoCT37450; Tue, 19 Dec 2000 09:50:12 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 09:50:12 -0800 (PST) Resent-Message-Id: <200012191750.eBJHoCT37450@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, stevedav@pacbell.net Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D47437B402 for ; Tue, 19 Dec 2000 09:42:27 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJHgRv36558; Tue, 19 Dec 2000 09:42:27 -0800 (PST) (envelope-from nobody) Message-Id: <200012191742.eBJHgRv36558@freefall.freebsd.org> Date: Tue, 19 Dec 2000 09:42:27 -0800 (PST) From: stevedav@pacbell.net Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23646: Staroffice 5.2 fails to install on FreeBSD 4.1.1-RELEASE Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23646 >Category: ports >Synopsis: Staroffice 5.2 fails to install on FreeBSD 4.1.1-RELEASE >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 09:50:12 PST 2000 >Closed-Date: >Last-Modified: >Originator: Steve Davidson >Release: 4.1.1-RELEASE >Organization: >Environment: FreeBSD 4.1.1-RELEASE >Description: Staroffice 5.2 fails to install on FreeBSD 4.1.1-RELEASE. Also Staroffice fails to install from the CDROM, even when mounted to /cdrom and using: make WITH_CDROM=yes >How-To-Repeat: cd /usr/ports/editor/staroffice52 make NO_CHECKSUM=yes make install ===> Installing for staroffice-5.2 StarOffice 5.2 Personal Install How-To Written by: Darren Wiebe and Martin Blapp You will very shortly have finished a network install of StarOffice 5.2. Once that is done exit X11 and run it again as the user that you usually use. Then run "make install-user" and do a standard workstation install. Change the install path to $HOME/office52. Then add $HOME/office52/ to your path. It will now be ready to use. Good Luck glibc version: 2.1.2 /usr/ports/editors/staroffice52/work/tmp/sv001.tmp/setup.bin: error in loading shared libraries: libvos1GCC.so: cannot open shared object file: No such file or directory *** Error code 1 (ignored) An error occured during StarOffice5.2 install. Please send a mail with debug-output and some information about your FreeBSD-environment to mb@imp.ch. Thanks. *** Error code 1 Stop in /usr/ports/editors/staroffice52. *** Error code 1 Stop in /usr/ports/editors/staroffice52. *** Error code 1 Stop in /usr/ports/editors/staroffice52. >Fix: Fix the port. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 10:20:10 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 10:20:05 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9B91637B699 for ; Tue, 19 Dec 2000 10:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJIK3J42887; Tue, 19 Dec 2000 10:20:03 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Dec 2000 10:20:03 -0800 (PST) Message-Id: <200012191820.eBJIK3J42887@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Bryan K. Ogawa" Subject: Re: ports/23610: pine 4.31 port doesn't compile pine Reply-To: "Bryan K. Ogawa" Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23610; it has been noted by GNATS. From: "Bryan K. Ogawa" To: freebsd-gnats-submit@FreeBSD.org, buchanon@mlss15.cl.msu.edu Cc: Subject: Re: ports/23610: pine 4.31 port doesn't compile pine Date: Tue, 19 Dec 2000 10:10:39 -0800 (PST) Mike, I just tried compiling the latest port and it seemed to work OK for me. I'm not sure why, but my init.c line reads as follows: #include "c-client/imap4r1.h" /* for LEVELSTATUS() */ I'm presuming that somewhere the Makefile passes -I to gcc to point this to wherever c-client's header files are stored. -- bryan k ogawa http://www.primenet.com/~bkogawa/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 10:30:11 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 10:30:06 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 034BE37B402 for ; Tue, 19 Dec 2000 10:30:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJIU5144238; Tue, 19 Dec 2000 10:30:05 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Dec 2000 10:30:05 -0800 (PST) Message-Id: <200012191830.eBJIU5144238@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Jose Marques Subject: Re: ports/23611: palm/pose coredumps Reply-To: Jose Marques Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23611; it has been noted by GNATS. From: Jose Marques To: FreeBSD-gnats-submit@freebsd.org Cc: GNATS Management Subject: Re: ports/23611: palm/pose coredumps Date: Tue, 19 Dec 2000 18:20:33 +0000 (GMT) On Mon, 18 Dec 2000, Jose Marques wrote: > >Description: > > The palm/pose port now coredumps when I try to start emulation. [Snip] I've re-built pose with debugging enabled and obtained the following stack trace: 0x807a122 in CPU::StopThread (this=0x830bc00, wasStopped=@0xbfbff430, isStopped=@0xbfbff4bc, how=2) at ./../SrcShared/CPU_MT.cpp:339 It looks like the problem is threads related, the problem also seems to be recent. Using the package version of pose that comes with FreeBSD 4.1.1-RELEASE no coredumps occur. Using the package that comes with FreeBSD 4.2-RELEASE results in coredumps. -- Jose Marques To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 10:30:12 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 10:30:06 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5464537B698 for ; Tue, 19 Dec 2000 10:30:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJIU6L44250; Tue, 19 Dec 2000 10:30:06 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 10:30:06 -0800 (PST) Resent-Message-Id: <200012191830.eBJIU6L44250@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, joseph@randomnetworks.com Received: from rodan.water-programs.com (unknown [130.86.77.19]) by hub.freebsd.org (Postfix) with ESMTP id BAE9637B402 for ; Tue, 19 Dec 2000 10:25:24 -0800 (PST) Received: (from scottj@localhost) by rodan.water-programs.com (8.11.1/8.11.1) id eBJINwd03352; Tue, 19 Dec 2000 10:23:58 -0800 (PST) (envelope-from scottj) Message-Id: <200012191823.eBJINwd03352@rodan.water-programs.com> Date: Tue, 19 Dec 2000 10:23:58 -0800 (PST) From: joseph@randomnetworks.com Sender: scottj@rodan.water-programs.com Reply-To: joseph@randomnetworks.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23648: [PORT UPDATE] editors/nano 0.9.21 -> 0.9.24 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23648 >Category: ports >Synopsis: [PORT UPDATE] editors/nano 0.9.21 -> 0.9.24 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 10:30:05 PST 2000 >Closed-Date: >Last-Modified: >Originator: Joseph Scottj >Release: FreeBSD 4.2-STABLE i386 >Organization: randomnetworks.com >Environment: ports collection >Description: [PORT UPDATE] editors/nano 0.9.21 -> 0.9.24 >How-To-Repeat: This diff was generated by : diff -ruN nano nano.new From : /usr/ports/editors ----------------------------------------------------------- diff -ruN nano/Makefile nano.new/Makefile --- nano/Makefile Thu Dec 7 21:02:13 2000 +++ nano.new/Makefile Tue Dec 19 10:20:38 2000 @@ -6,7 +6,7 @@ # PORTNAME= nano -PORTVERSION= 0.9.21 +PORTVERSION= 0.9.24 CATEGORIES= editors MASTER_SITES= http://www.asty.org/nano/dist/ \ ${MASTER_SITE_SOURCEFORGE} diff -ruN nano/distinfo nano.new/distinfo --- nano/distinfo Thu Dec 7 21:02:13 2000 +++ nano.new/distinfo Tue Dec 19 10:11:16 2000 @@ -1 +1 @@ -MD5 (nano-0.9.21.tar.gz) = 6dfccd2cc07edad732cc07727eaeaf06 +MD5 (nano-0.9.24.tar.gz) = 4063f0121745784e20ad7efbe42567cc >Fix: see above diff >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 10:30:31 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 10:30:29 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 9CEF137B698 for ; Tue, 19 Dec 2000 10:30:28 -0800 (PST) Received: from localhost (doug@localhost) by fledge.watson.org (8.11.1/8.11.1) with SMTP id eBJIUP896283 for ; Tue, 19 Dec 2000 13:30:26 -0500 (EST) (envelope-from doug@safeport.com) X-Authentication-Warning: fledge.watson.org: doug owned process doing -bs Date: Tue, 19 Dec 2000 13:30:24 -0500 (EST) From: Doug Denault X-Sender: doug@fledge.watson.org To: ports@freebsd.org Subject: kde2 package install Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I was attempting to install the KDE 2.0.1 package from on o fthe recent snapshots. It fails trying to install Mesa 3.1. So I installed that port. It then failed on qt-2.2.2. So I installed the port qt22. This it turns out is qt-2.2.3 so the package still fails. I am now (un)happily doing a make on kde2, should fnish before Christmas :) My question: is there a work around to get the package install to go? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 10:58:14 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 10:58:10 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mail.rdc1.kt.home.ne.jp (ha2.rdc1.kt.home.ne.jp [203.165.9.243]) by hub.freebsd.org (Postfix) with ESMTP id DD7A837B400; Tue, 19 Dec 2000 10:58:09 -0800 (PST) Received: from daemon.local.idaemons.org ([203.165.161.10]) by mail.rdc1.kt.home.ne.jp (InterMail vM.4.01.02.00 201-229-116) with ESMTP id <20001219185808.ENYG10418.mail.rdc1.kt.home.ne.jp@daemon.local.idaemons.org>; Tue, 19 Dec 2000 10:58:08 -0800 Received: by daemon.local.idaemons.org (8.11.1/3.7W) id eBJIw2g76036; Wed, 20 Dec 2000 03:58:02 +0900 (JST) Date: Wed, 20 Dec 2000 03:58:02 +0900 Message-ID: <86bsu8b5mt.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Maxim Sobolev Cc: ports@FreeBSD.org, emulation@FreeBSD.org, takawata@FreeBSD.org Subject: Re: Porting Plex86 to FreeBSD In-Reply-To: <3A3F9A19.5F1803ED@FreeBSD.org> References: <3A3F9A19.5F1803ED@FreeBSD.org> User-Agent: Wanderlust/2.5.4 (Smooth) SEMI/1.14.0 (Iburihashi) FLIM/1.14.0 (Ninokuchi) APEL/10.2 MULE XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.0 - "Iburihashi") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Tue, 19 Dec 2000 19:25:45 +0200, sobomax wrote: > I have a plan to start porting Plex86 (GPL'ed vmware clone available at > www.plex86.org) for FreeBSD, so if anybody has any work already done or want to > collaborate please let me know. Recently this thing was ported over to NetBSD, > so I think we have a good chances to succeed with it in reasonable amount of > time. > > I there are any porters willing to join me I would propose to create > appropriate project at SourceForge to use their cvs repo for collaboration. Contact takawata-san (now Cc'd). I heard he'd done some early porting work on it. He perhaps does not have much interest in it anymore, but will at least give you some hint. P.S. You'd better have sent the mail also to emulation lists (now Cc'd), since those talents in porting something like Plex86 must be there. -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 11: 0: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 11:00:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 928C637B402 for ; Tue, 19 Dec 2000 11:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJJ01v48107; Tue, 19 Dec 2000 11:00:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 11:00:01 -0800 (PST) Resent-Message-Id: <200012191900.eBJJ01v48107@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, rsimmons@spamcop.net Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D202637B400 for ; Tue, 19 Dec 2000 10:50:53 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJIori46876; Tue, 19 Dec 2000 10:50:53 -0800 (PST) (envelope-from nobody) Message-Id: <200012191850.eBJIori46876@freefall.freebsd.org> Date: Tue, 19 Dec 2000 10:50:53 -0800 (PST) From: rsimmons@spamcop.net Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23649: the port of mod_php4 does not install correctly with the apache/mod_ssl port Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23649 >Category: ports >Synopsis: the port of mod_php4 does not install correctly with the apache/mod_ssl port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 11:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Rob Simmons >Release: 4.2-STABLE >Organization: >Environment: FreeBSD chef.wlcg.com 4.2-STABLE FreeBSD 4.2-STABLE #0: Tue Dec 19 16:25:00 EST 2000 rsimmons@chef.wlcg.com:/usr/obj/usr/src/sys/CHEF i386 >Description: After installing the port apache+mod_ssl-1.3.14+2.7.1_1 then installing the port mod_php-4.0.3pl1 the LoadModule directive in httpd.conf for loading the php module gets put inside the IfDefine SSL. I am not actually running SSL at the moment and putting this directive in this particular place makes it dependant on SSL. The AddModule directive is also in a similar IfDefine. >How-To-Repeat: Install apache+mod_ssl-1.3.14+2.7.1_1 then install mod_php-4.0.3pl1 then look in /usr/local/etc/apache/httpd.conf >Fix: Change the script that merges the php4_mod into the httpd.conf file so that it adds the module right after the last normal module and before the IfDefines. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 11:10: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 11:10:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6672437B402 for ; Tue, 19 Dec 2000 11:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJJA1W51723; Tue, 19 Dec 2000 11:10:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 11:10:01 -0800 (PST) Resent-Message-Id: <200012191910.eBJJA1W51723@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, joseph@randomnetworks.com Received: from rodan.water-programs.com (unknown [130.86.77.19]) by hub.freebsd.org (Postfix) with ESMTP id 88B8537B400 for ; Tue, 19 Dec 2000 11:02:49 -0800 (PST) Received: (from scottj@localhost) by rodan.water-programs.com (8.11.1/8.11.1) id eBJJ1Nx04711; Tue, 19 Dec 2000 11:01:23 -0800 (PST) (envelope-from scottj) Message-Id: <200012191901.eBJJ1Nx04711@rodan.water-programs.com> Date: Tue, 19 Dec 2000 11:01:23 -0800 (PST) From: joseph@randomnetworks.com Sender: scottj@rodan.water-programs.com Reply-To: joseph@randomnetworks.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23650: [PORT - UPDATE] graphics/pngcrush 1.5.1 -> 1.5.3 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23650 >Category: ports >Synopsis: [PORT - UPDATE] graphics/pngcrush 1.5.1 -> 1.5.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 11:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Joseph Scottj >Release: FreeBSD 4.2-STABLE i386 >Organization: randomnetworks.com >Environment: ports collection >Description: [PORT - UPDATE] graphics/pngcrush 1.5.1 -> 1.5.3 >How-To-Repeat: This diff was generated by : diff -ruN pngcrush pngcrush.new From : /usr/ports/graphics -------------------------------------------------------------------- diff -ruN pngcrush/Makefile pngcrush.new/Makefile --- pngcrush/Makefile Sat Jul 29 11:23:14 2000 +++ pngcrush.new/Makefile Tue Dec 19 10:55:05 2000 @@ -6,7 +6,7 @@ # PORTNAME= pngcrush -PORTVERSION= 1.5.1 +PORTVERSION= 1.5.3 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= pmt diff -ruN pngcrush/distinfo pngcrush.new/distinfo --- pngcrush/distinfo Sat Jul 29 11:23:15 2000 +++ pngcrush.new/distinfo Tue Dec 19 10:55:26 2000 @@ -1 +1 @@ -MD5 (pngcrush-1.5.1.tar.gz) = 1e8ec3aa21e403a9b2f34a3f5a7b584f +MD5 (pngcrush-1.5.3.tar.gz) = 292b1fa5804009e609c717fd297e01fa >Fix: see above diff >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 11:12:53 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 11:12:51 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from kci.kciLink.com (kci.kciLink.com [204.117.82.1]) by hub.freebsd.org (Postfix) with ESMTP id 0DC6437B402 for ; Tue, 19 Dec 2000 11:12:51 -0800 (PST) Received: from yertle.kciLink.com (yertle.kciLink.com [208.184.13.195]) by kci.kciLink.com (Postfix) with ESMTP id 928BDC9B1; Tue, 19 Dec 2000 14:12:49 -0500 (EST) Received: from onceler.kciLink.com (onceler.kciLink.com [208.184.13.196]) by yertle.kciLink.com (Postfix) with ESMTP id 139AC2E451; Tue, 19 Dec 2000 14:12:49 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.1/8.11.1) id eBJJCnW75604; Tue, 19 Dec 2000 14:12:49 -0500 (EST) (envelope-from khera) From: Vivek Khera MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14911.45872.864206.879399@onceler.kciLink.com> Date: Tue, 19 Dec 2000 14:12:48 -0500 To: Jose Marques Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/23611: palm/pose coredumps In-Reply-To: <200012191830.eBJIU5144238@freefall.freebsd.org> References: <200012191830.eBJIU5144238@freefall.freebsd.org> X-Mailer: VM 6.88 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "JM" == Jose Marques writes: JM> It looks like the problem is threads related, the problem also seems to be JM> recent. Using the package version of pose that comes with FreeBSD JM> 4.1.1-RELEASE no coredumps occur. Using the package that comes with JM> FreeBSD 4.2-RELEASE results in coredumps. I just did a quick test, and I can make a freshly compiled pose coredump within a few clicks, but the binary I have built on November 10, 2000, works fine. Both are built from a local port of pose 3.0a7 (/usr/ports/palm/pose is 3.0a6) from the same source copy. It does seem to be pthreads related. -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Vivek Khera, Ph.D. Khera Communications, Inc. Internet: khera@kciLink.com Rockville, MD +1-240-453-8497 AIM: vivekkhera Y!: vivek_khera http://www.khera.org/~vivek/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 11:20: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 11:20:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 64D0337B402 for ; Tue, 19 Dec 2000 11:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJJK1b52823; Tue, 19 Dec 2000 11:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 11:20:01 -0800 (PST) Resent-Message-Id: <200012191920.eBJJK1b52823@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, olgeni@uli.it Received: from vega.uli.it (vega.uli.it [62.212.0.2]) by hub.freebsd.org (Postfix) with ESMTP id E71C837B400 for ; Tue, 19 Dec 2000 11:14:57 -0800 (PST) Received: from olgeni.localdomain.net (olgeni.uli.it [62.212.0.22]) by vega.uli.it (Postfix) with ESMTP id D4BD132E93 for ; Tue, 19 Dec 2000 20:14:41 +0100 (CET) Received: (from olgeni@localhost) by olgeni.localdomain.net (8.11.1/8.11.1) id eBJJEXW16190; Tue, 19 Dec 2000 20:14:33 +0100 (CET) (envelope-from olgeni) Message-Id: <200012191914.eBJJEXW16190@olgeni.localdomain.net> Date: Tue, 19 Dec 2000 20:14:33 +0100 (CET) From: olgeni@uli.it Reply-To: olgeni@uli.it To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23651: mail/cclient pkg-plist needs fix (library version bumped) Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23651 >Category: ports >Synopsis: mail/cclient pkg-plist needs fix (library version bumped) >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 11:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jimmy Olgeni >Release: FreeBSD 4.2-STABLE i386 >Organization: Colby >Environment: FreeBSD olgeni.localdomain.net 4.2-STABLE FreeBSD 4.2-STABLE #0: Tue Dec 19 03:31:59 CET 2000 olgeni@olgeni.localdomain.net:/usr/local/storage/obj/usr/src/sys/BSDBOX i386 >Description: mail/cclient pkg-plist references an old file. Changes: pkg-plist: * lib/libc-client4.so.7 became lib/libc-client4.so.8 in the new release. >How-To-Repeat: >Fix: diff -ruN cclient.orig/pkg-plist cclient/pkg-plist --- cclient.orig/pkg-plist Mon Dec 18 21:26:13 2000 +++ cclient/pkg-plist Tue Dec 19 20:07:43 2000 @@ -20,6 +20,6 @@ include/c-client/tcp.h include/c-client/utf8.h lib/libc-client4.a -lib/libc-client4.so.7 lib/libc-client4.so +lib/libc-client4.so.8 @dirrm include/c-client >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 11:30: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 11:30:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4816037B698 for ; Tue, 19 Dec 2000 11:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJJU3053905; Tue, 19 Dec 2000 11:30:03 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 11:30:03 -0800 (PST) Resent-Message-Id: <200012191930.eBJJU3053905@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, olgeni@uli.it Received: from vega.uli.it (vega.uli.it [62.212.0.2]) by hub.freebsd.org (Postfix) with ESMTP id 0BFB437B400 for ; Tue, 19 Dec 2000 11:23:42 -0800 (PST) Received: from olgeni.localdomain.net (olgeni.uli.it [62.212.0.22]) by vega.uli.it (Postfix) with ESMTP id 5CAF432E93 for ; Tue, 19 Dec 2000 20:23:36 +0100 (CET) Received: (from olgeni@localhost) by olgeni.localdomain.net (8.11.1/8.11.1) id eBJJNeH17532; Tue, 19 Dec 2000 20:23:40 +0100 (CET) (envelope-from olgeni) Message-Id: <200012191923.eBJJNeH17532@olgeni.localdomain.net> Date: Tue, 19 Dec 2000 20:23:40 +0100 (CET) From: olgeni@uli.it Reply-To: olgeni@uli.it To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23652: mail/pine4 pkg-plist support for NOPORTDOCS Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23652 >Category: ports >Synopsis: mail/pine4 pkg-plist support for NOPORTDOCS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 11:30:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jimmy Olgeni >Release: FreeBSD 4.2-STABLE i386 >Organization: Colby >Environment: FreeBSD olgeni.localdomain.net 4.2-STABLE FreeBSD 4.2-STABLE #0: Tue Dec 19 03:31:59 CET 2000 olgeni@olgeni.localdomain.net:/usr/local/storage/obj/usr/src/sys/BSDBOX i386 >Description: Pine's pkg-plist should support the NOPORTDOCS option. Makefile: * add support for NOPORTDOCS (PLIST_SUB variable) pkg-plist: * add %%NOPORTDOCS%% prefix to documentation files >How-To-Repeat: >Fix: diff -ruN pine4.orig/Makefile pine4/Makefile --- pine4.orig/Makefile Tue Dec 19 20:15:07 2000 +++ pine4/Makefile Tue Dec 19 20:18:45 2000 @@ -22,6 +22,12 @@ LIB_DEPENDS= c-client4.8:${PORTSDIR}/mail/cclient +.if defined(NOPORTDOCS) +NODOCS= "@comment " +.endif + +PLIST_SUB= NOPORTDOCS=${NODOCS} + # Define "WITH_LDAP" to include ldap support. # If the ldap port is installed somewhere other than /usr/local, define # LDAP_PREFIX as well. diff -ruN pine4.orig/pkg-plist pine4/pkg-plist --- pine4.orig/pkg-plist Tue Dec 19 20:15:56 2000 +++ pine4/pkg-plist Tue Dec 19 20:18:03 2000 @@ -10,16 +10,16 @@ etc/dot.pinerc.pgp.sample @exec %D/bin/pine -P %D/etc/pine.conf -conf >%D/etc/pine.conf.tmp @exec /bin/mv %D/etc/pine.conf.tmp %D/etc/pine.conf -share/doc/pine/brochure.txt -share/doc/pine/tech-notes.txt -share/doc/pine/tech-notes/background.html -share/doc/pine/tech-notes/cmd-line.html -share/doc/pine/tech-notes/config-notes.html -share/doc/pine/tech-notes/config.html -share/doc/pine/tech-notes/index.html -share/doc/pine/tech-notes/installation.html -share/doc/pine/tech-notes/introduction.html -share/doc/pine/tech-notes/low-level.html -share/doc/pine/tech-notes/porting.html -@dirrm share/doc/pine/tech-notes -@dirrm share/doc/pine +%%NOPORTDOCS%%share/doc/pine/brochure.txt +%%NOPORTDOCS%%share/doc/pine/tech-notes.txt +%%NOPORTDOCS%%share/doc/pine/tech-notes/background.html +%%NOPORTDOCS%%share/doc/pine/tech-notes/cmd-line.html +%%NOPORTDOCS%%share/doc/pine/tech-notes/config-notes.html +%%NOPORTDOCS%%share/doc/pine/tech-notes/config.html +%%NOPORTDOCS%%share/doc/pine/tech-notes/index.html +%%NOPORTDOCS%%share/doc/pine/tech-notes/installation.html +%%NOPORTDOCS%%share/doc/pine/tech-notes/introduction.html +%%NOPORTDOCS%%share/doc/pine/tech-notes/low-level.html +%%NOPORTDOCS%%share/doc/pine/tech-notes/porting.html +%%NOPORTDOCS%%@dirrm share/doc/pine/tech-notes +%%NOPORTDOCS%%@dirrm share/doc/pine >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 11:30:45 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 11:30:42 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from nettaxi.com (modem161.dock.net [207.113.51.18]) by hub.freebsd.org (Postfix) with SMTP id 349A437B72D for ; Tue, 19 Dec 2000 11:30:37 -0800 (PST) From: Benefitsall@nettaxi.com Reply-To: Benefitsall@nettaxi.com To: ports@freebsd.org Subject: Donation to your organization 121900 Message-Id: <20001219193037.349A437B72D@hub.freebsd.org> Date: Tue, 19 Dec 2000 11:30:37 -0800 (PST) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dear Friend Help your organization raise money in a painless way Cash rebates of up to 30% from BenefitsAll become welcome donations to your organization when your members shop online with Lands End, Disney, Dell, Gap, Esprit and 300 plus retailers through our web site. Widely endorsed, socially responsible site offers no obligation, free rebate program for members. See how easy it is for your charity to earn substantial cash back for every online, shopping purchase made. To find out more information from BenefitsAll click on reply and we will contact you shortly. Please put "MORE INFO" in the subject box. If you prefer call us toll free at 866 961 2468. Ask for customer service extension 1 To remove you from this list type " REMOVE" in the subject box and click reply. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 11:35:42 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 11:35:40 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id C51FD37B400; Tue, 19 Dec 2000 11:35:35 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eBJJZZi19091; Tue, 19 Dec 2000 11:35:35 -0800 (PST) Date: Tue, 19 Dec 2000 11:35:35 -0800 From: Alfred Perlstein To: asami@FreeBSD.org Cc: ports@FreeBSD.org Subject: ports lockfile? Message-ID: <20001219113535.Q19572@fw.wintelcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: bright@fw.wintelcom.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm pretty sure I've mentioned this before, I got a lot of approval for the idea, but I don't have the time and familiarity with the ports mk files to do what I propose. Usually when doing an install I'll start building several ports in at the same time The problem is that frequently the ports will recurse into the same dependancy, and the two builds will clobber each other. I tried to figure out some way for the ports to use the 'lockf' utility on the port makefile in order to protect it, but I can't seem to figure out how and where to use lockf. We'd need some pre-pre-pre make step to do this I imagine, anyone want to try to do this? Is it a good idea? -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 11:50: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 11:50:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CBECD37B402 for ; Tue, 19 Dec 2000 11:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJJo1556322; Tue, 19 Dec 2000 11:50:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 11:50:01 -0800 (PST) Resent-Message-Id: <200012191950.eBJJo1556322@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, joseph@randomnetworks.com Received: from rodan.water-programs.com (unknown [130.86.77.19]) by hub.freebsd.org (Postfix) with ESMTP id 9FA6E37B402 for ; Tue, 19 Dec 2000 11:41:18 -0800 (PST) Received: (from scottj@localhost) by rodan.water-programs.com (8.11.1/8.11.1) id eBJJdqi08019; Tue, 19 Dec 2000 11:39:52 -0800 (PST) (envelope-from scottj) Message-Id: <200012191939.eBJJdqi08019@rodan.water-programs.com> Date: Tue, 19 Dec 2000 11:39:52 -0800 (PST) From: joseph@randomnetworks.com Sender: scottj@rodan.water-programs.com Reply-To: joseph@randomnetworks.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23653: [PORT - UPDATE] audio/opennap 0.37 -> 0.38 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23653 >Category: ports >Synopsis: [PORT - UPDATE] audio/opennap 0.37 -> 0.38 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 11:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Joseph Scottj >Release: FreeBSD 4.2-STABLE i386 >Organization: randomnetworks.com >Environment: ports collection >Description: [PORT - UPDATE] audio/opennap 0.37 -> 0.38 Also fix the plist >How-To-Repeat: This diff was generated by : diff -ruN opennap opennap.new From : /usr/ports/audio -------------------------------------------------------------- diff -ruN opennap/Makefile opennap.new/Makefile --- opennap/Makefile Thu Dec 7 21:00:50 2000 +++ opennap.new/Makefile Tue Dec 19 11:08:38 2000 @@ -6,7 +6,7 @@ # PORTNAME= opennap -PORTVERSION= 0.37 +PORTVERSION= 0.38 CATEGORIES= audio net MASTER_SITES= ftp://download.sourceforge.net/pub/sourceforge/opennap/ \ ftp://ftp.darenet.dk/mirrors/mirror.linuxberg.com/files/console/servers/ \ diff -ruN opennap/distinfo opennap.new/distinfo --- opennap/distinfo Thu Dec 7 21:00:50 2000 +++ opennap.new/distinfo Tue Dec 19 11:09:58 2000 @@ -1 +1 @@ -MD5 (opennap-0.37.tar.gz) = 258034161c434f1c236bdc94c09fb99b +MD5 (opennap-0.38.tar.gz) = 3d3b5b5238e430fc50111984e9ad435d diff -ruN opennap/pkg-plist opennap.new/pkg-plist --- opennap/pkg-plist Mon Jul 31 23:56:52 2000 +++ opennap.new/pkg-plist Tue Dec 19 11:36:44 2000 @@ -1,10 +1,10 @@ -bin/opennap -bin/mkpass -bin/metaserver -bin/setup +sbin/opennap +sbin/metaserver +sbin/setup share/opennap/users share/opennap/examples/sample.channels share/opennap/examples/sample.conf +share/opennap/examples/sample.filter share/opennap/examples/sample.motd share/opennap/examples/sample.servers share/opennap/examples/sample.users >Fix: see above diff >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 12:20: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 12:20:04 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2947337B402 for ; Tue, 19 Dec 2000 12:20:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJKK4u62147; Tue, 19 Dec 2000 12:20:04 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Dec 2000 12:20:04 -0800 (PST) Message-Id: <200012192020.eBJKK4u62147@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Chris Faulhaber Subject: Re: ports/23646: Staroffice 5.2 fails to install on FreeBSD 4.1.1-RELEASE Reply-To: Chris Faulhaber Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23646; it has been noted by GNATS. From: Chris Faulhaber To: stevedav@pacbell.net Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/23646: Staroffice 5.2 fails to install on FreeBSD 4.1.1-RELEASE Date: Tue, 19 Dec 2000 15:12:18 -0500 On Tue, Dec 19, 2000 at 09:42:27AM -0800, stevedav@pacbell.net wrote: > > >Number: 23646 > >Category: ports > >Synopsis: Staroffice 5.2 fails to install on FreeBSD 4.1.1-RELEASE > *snip* > > glibc version: 2.1.2 > /usr/ports/editors/staroffice52/work/tmp/sv001.tmp/setup.bin: error in loading shared libraries: libvos1GCC.so: cannot open shared object file: No such file or directory > *** Error code 1 (ignored) > > An error occured during StarOffice5.2 install. Please send a mail with debug-output and > some information about your FreeBSD-environment to mb@imp.ch. Thanks. > And have you sent the above email to the maintainer? -- Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org -------------------------------------------------------- FreeBSD: The Power To Serve - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 12:50: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 12:50:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F5A837B404 for ; Tue, 19 Dec 2000 12:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJKo1B65428; Tue, 19 Dec 2000 12:50:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 12:50:01 -0800 (PST) Resent-Message-Id: <200012192050.eBJKo1B65428@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, joseph@randomnetworks.com Received: from rodan.water-programs.com (unknown [130.86.77.19]) by hub.freebsd.org (Postfix) with ESMTP id 61AD937B400 for ; Tue, 19 Dec 2000 12:44:23 -0800 (PST) Received: (from scottj@localhost) by rodan.water-programs.com (8.11.1/8.11.1) id eBJKguh50436; Tue, 19 Dec 2000 12:42:56 -0800 (PST) (envelope-from scottj) Message-Id: <200012192042.eBJKguh50436@rodan.water-programs.com> Date: Tue, 19 Dec 2000 12:42:56 -0800 (PST) From: joseph@randomnetworks.com Sender: scottj@rodan.water-programs.com Reply-To: joseph@randomnetworks.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23654: [PORT - UPDATE] net/naim 0.9.6.2010 -> 0.10.1 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23654 >Category: ports >Synopsis: [PORT - UPDATE] net/naim 0.9.6.2010 -> 0.10.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 12:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Joseph Scottj >Release: FreeBSD 4.2-STABLE i386 >Organization: randomnetworks.com >Environment: ports collection >Description: [PORT - UPDATE] net/naim 0.9.6.2010 -> 0.10.1 >How-To-Repeat: This diff was generated by : diff -ruN naim naim.new From : /usr/ports/net ----------------------------------------------------------- diff -ruN naim.orig/Makefile naim/Makefile --- naim.orig/Makefile Tue Dec 19 12:33:51 2000 +++ naim/Makefile Tue Dec 19 12:36:34 2000 @@ -6,16 +6,14 @@ # PORTNAME= naim -PORTVERSION= 0.9.6.2010 +PORTVERSION= 0.10.1 CATEGORIES= net MASTER_SITES= http://dev.n.ml.org/ \ ftp://ftp.netmug.org/pub/FreeBSD/distfiles/ -DISTNAME= naim-0.9.6-2000-06-30-2010 MAINTAINER= mharo@FreeBSD.org GNU_CONFIGURE= yes -WRKSRC= ${WRKDIR}/naim-0.9.6 # Manpage is empty #MAN1= naim.1 diff -ruN naim.orig/distinfo naim/distinfo --- naim.orig/distinfo Tue Dec 19 12:33:51 2000 +++ naim/distinfo Tue Dec 19 12:36:47 2000 @@ -1 +1 @@ -MD5 (naim-0.9.6-2000-06-30-2010.tar.gz) = f0065a77c0878c5e8e8cb38e84d18d46 +MD5 (naim-0.10.1.tar.gz) = eeb8092664e6c060387add291242bb93 >Fix: see the diff above >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 12:53:21 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 12:53:20 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0F3B937B400; Tue, 19 Dec 2000 12:53:20 -0800 (PST) Received: (from demon@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJKrJq65974; Tue, 19 Dec 2000 12:53:19 -0800 (PST) (envelope-from demon) Date: Tue, 19 Dec 2000 12:53:19 -0800 (PST) From: Message-Id: <200012192053.eBJKrJq65974@freefall.freebsd.org> To: demon@FreeBSD.org, freebsd-ports@FreeBSD.org, hoek@FreeBSD.org Subject: Re: ports/22939: 44bsd-more port does not compile under recent 4.1.1-STABLEs Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 44bsd-more port does not compile under recent 4.1.1-STABLEs Responsible-Changed-From-To: freebsd-ports->hoek Responsible-Changed-By: demon Responsible-Changed-When: Tue Dec 19 12:52:24 PST 2000 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=22939 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 13:20:16 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 13:20:12 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mothra.ecs.csus.edu (mothra.ecs.csus.edu [130.86.76.220]) by hub.freebsd.org (Postfix) with ESMTP id 97C4537B400; Tue, 19 Dec 2000 13:20:12 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by mothra.ecs.csus.edu (8.11.1/8.11.1) with ESMTP id eBJMmjF10543; Tue, 19 Dec 2000 14:48:48 -0800 (PST) (envelope-from joseph@randomnetworks.com) Date: Tue, 19 Dec 2000 14:48:45 -0800 (PST) From: Joseph Scott X-X-Sender: To: Alfred Perlstein Cc: , Subject: Re: ports lockfile? In-Reply-To: <20001219113535.Q19572@fw.wintelcom.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 19 Dec 2000, Alfred Perlstein wrote: # I'm pretty sure I've mentioned this before, I got a lot of approval # for the idea, but I don't have the time and familiarity with the # ports mk files to do what I propose. # # Usually when doing an install I'll start building several ports in # at the same time The problem is that frequently the ports will # recurse into the same dependancy, and the two builds will clobber # each other. # # I tried to figure out some way for the ports to use the 'lockf' # utility on the port makefile in order to protect it, but I can't # seem to figure out how and where to use lockf. # # We'd need some pre-pre-pre make step to do this I imagine, anyone # want to try to do this? Is it a good idea? I don't know the insides of the ports collections to know where to look for this, but I have run into the same exact problem. I end up having install one port at a time. You get my vote for it being a good idea. *********************************************************** * Joseph Scott The Office Of Water Programs * * joseph@randomnetworks.com joseph.scott@owp.csus.edu * *********************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 13:30: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 13:30:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E24A737B404 for ; Tue, 19 Dec 2000 13:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJLU1j72250; Tue, 19 Dec 2000 13:30:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 13:30:01 -0800 (PST) Resent-Message-Id: <200012192130.eBJLU1j72250@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tech-god2@home.com Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A8F7837B400 for ; Tue, 19 Dec 2000 13:24:44 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJLOiI71555; Tue, 19 Dec 2000 13:24:44 -0800 (PST) (envelope-from nobody) Message-Id: <200012192124.eBJLOiI71555@freefall.freebsd.org> Date: Tue, 19 Dec 2000 13:24:44 -0800 (PST) From: tech-god2@home.com Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23656: kernel:psmintr out of sync (00c8 ! = 0000). Error Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23656 >Category: ports >Synopsis: kernel:psmintr out of sync (00c8 ! = 0000). Error >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 13:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Mike Vaught >Release: 4.0 >Organization: >Environment: 4.0 release free bsd 4.0-release #0 generic i386 >Description: keep getting this error when trying to configure and test mouse daemon kernel:psmintr out of sync (00c8 ! = 0000). Error causes system to move cursor to right lower corner and stays there happens with all ps/2 mice. generic socket 7 mother board with via chipset. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 13:51:40 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 13:51:39 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E6A3137B400; Tue, 19 Dec 2000 13:51:38 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJLpcq74405; Tue, 19 Dec 2000 13:51:38 -0800 (PST) (envelope-from okazaki) Date: Tue, 19 Dec 2000 13:51:38 -0800 (PST) From: Message-Id: <200012192151.eBJLpcq74405@freefall.freebsd.org> To: okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org, okazaki@FreeBSD.org Subject: Re: ports/23651: mail/cclient pkg-plist needs fix (library version bumped) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mail/cclient pkg-plist needs fix (library version bumped) Responsible-Changed-From-To: freebsd-ports->okazaki Responsible-Changed-By: okazaki Responsible-Changed-When: Tue Dec 19 13:50:41 PST 2000 Responsible-Changed-Why: I'll handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=23651 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 14:17:33 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 14:17:31 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (poynting.physics.purdue.edu [128.210.146.58]) by hub.freebsd.org (Postfix) with ESMTP id 181D737B400 for ; Tue, 19 Dec 2000 14:17:31 -0800 (PST) Received: from altair.firepipe.net (pm005-039.dialup.bignet.net [64.79.80.231]) by puck.firepipe.net (Postfix) with ESMTP id 3462F1AF4; Tue, 19 Dec 2000 17:17:30 -0500 (EST) Received: by altair.firepipe.net (Postfix, from userid 1000) id D6AE619CC; Tue, 19 Dec 2000 16:13:03 -0500 (EST) Date: Tue, 19 Dec 2000 16:13:03 -0500 From: Will Andrews To: Doug Denault Cc: ports@FreeBSD.ORG Subject: Re: kde2 package install Message-ID: <20001219161303.A1119@altair.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Doug Denault , ports@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from doug@safeport.com on Tue, Dec 19, 2000 at 01:30:24PM -0500 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: will@altair.firepipe.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Dec 19, 2000 at 01:30:24PM -0500, Doug Denault wrote: > I am now (un)happily doing a make on kde2, should fnish before Christmas > :) ;-) Sometimes we can't avoid this sort of thing.. I'm not sure why you can't use QT 2.2.3 with KDE 2.0.1, but that's probably another matter. > My question: is there a work around to get the package install to go? Maybe it just fails due to wrong numbering in the kde ports.. they might still be looking for 2.2.2... that can happen if you caught the qt package before the kde ones were rebuilt. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 14:19:18 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 14:19:16 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (poynting.physics.purdue.edu [128.210.146.58]) by hub.freebsd.org (Postfix) with ESMTP id A248937B402; Tue, 19 Dec 2000 14:19:16 -0800 (PST) Received: from altair.firepipe.net (pm005-039.dialup.bignet.net [64.79.80.231]) by puck.firepipe.net (Postfix) with ESMTP id C4BFF1AC4; Tue, 19 Dec 2000 17:19:15 -0500 (EST) Received: by altair.firepipe.net (Postfix, from userid 1000) id F3DED19CC; Tue, 19 Dec 2000 16:14:49 -0500 (EST) Date: Tue, 19 Dec 2000 16:14:49 -0500 From: Will Andrews To: Alfred Perlstein Cc: asami@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: ports lockfile? Message-ID: <20001219161449.B1119@altair.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Alfred Perlstein , asami@FreeBSD.ORG, ports@FreeBSD.ORG References: <20001219113535.Q19572@fw.wintelcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001219113535.Q19572@fw.wintelcom.net>; from bright@wintelcom.net on Tue, Dec 19, 2000 at 11:35:35AM -0800 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: will@altair.firepipe.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Dec 19, 2000 at 11:35:35AM -0800, Alfred Perlstein wrote: > Usually when doing an install I'll start building several ports in > at the same time The problem is that frequently the ports will > recurse into the same dependancy, and the two builds will clobber > each other. > > I tried to figure out some way for the ports to use the 'lockf' > utility on the port makefile in order to protect it, but I can't > seem to figure out how and where to use lockf. > > We'd need some pre-pre-pre make step to do this I imagine, anyone > want to try to do this? Is it a good idea? Yes, this is a good idea.. perhaps if I get time sometime soon I'll take a shot at it. I am familiar enough with ports/Mk/*.mk to try it. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 14:25:12 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 14:25:11 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2757437B400; Tue, 19 Dec 2000 14:25:11 -0800 (PST) Received: (from dan@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJMPBl80300; Tue, 19 Dec 2000 14:25:11 -0800 (PST) (envelope-from dan) Date: Tue, 19 Dec 2000 14:25:11 -0800 (PST) From: Message-Id: <200012192225.eBJMPBl80300@freefall.freebsd.org> To: dan@FreeBSD.org, dan@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22927: ports/misc/sshbuddy MASTERSITE seems to no longer exist Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/misc/sshbuddy MASTERSITE seems to no longer exist Responsible-Changed-From-To: dan->freebsd-ports Responsible-Changed-By: dan Responsible-Changed-When: Tue Dec 19 14:24:26 PST 2000 Responsible-Changed-Why: Set this PR back to freebsd-ports. I give up on this port. :) http://www.freebsd.org/cgi/query-pr.cgi?pr=22927 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 14:40:11 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 14:40:05 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 965DA37B404 for ; Tue, 19 Dec 2000 14:40:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJMe4K82004; Tue, 19 Dec 2000 14:40:04 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Dec 2000 14:40:04 -0800 (PST) Message-Id: <200012192240.eBJMe4K82004@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Steve Davidson Subject: Re: ports/23646: Staroffice 5.2 fails to install on FreeBSD 4.1.1-RELEASE Reply-To: Steve Davidson Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23646; it has been noted by GNATS. From: Steve Davidson To: Chris Faulhaber , mb@imp.ch Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/23646: Staroffice 5.2 fails to install on FreeBSD 4.1.1-RELEASE Date: Tue, 19 Dec 2000 15:41:20 -0800 (PST) Yes. Two days ago. No reply yet. What confuses me most is that I can't be the only person experiencing this so... what do other people do whan a port doesn't work? I do a cvsup and then a make. If it fails then I usually file a bug report on the ports category. Is this correct? --- Chris Faulhaber wrote: > On Tue, Dec 19, 2000 at 09:42:27AM -0800, stevedav@pacbell.net wrote: > > > > >Number: 23646 > > >Category: ports > > >Synopsis: Staroffice 5.2 fails to install on FreeBSD > 4.1.1-RELEASE > > > *snip* > > > > glibc version: 2.1.2 > > /usr/ports/editors/staroffice52/work/tmp/sv001.tmp/setup.bin: error > in loading shared libraries: libvos1GCC.so: cannot open shared object > file: No such file or directory > > *** Error code 1 (ignored) > > > > An error occured during StarOffice5.2 install. Please send a mail > with debug-output and > > some information about your FreeBSD-environment to mb@imp.ch. > Thanks. > > > > And have you sent the above email to the maintainer? > > -- > Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org > -------------------------------------------------------- > FreeBSD: The Power To Serve - http://www.FreeBSD.org __________________________________________________ Do You Yahoo!? Yahoo! Shopping - Thousands of Stores. Millions of Products. http://shopping.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 14:48:55 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 14:48:53 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from filer.fr.clara.net (filer.fr.clara.net [212.43.194.74]) by hub.freebsd.org (Postfix) with ESMTP id 8324437B404; Tue, 19 Dec 2000 14:48:52 -0800 (PST) Received: from mail3.freesurf.fr (bastille.freesurf.fr [212.43.206.2]) by filer.fr.clara.net (Postfix) with ESMTP id 30D0C3160; Tue, 19 Dec 2000 23:53:47 +0100 (CET) Received: from nmp.bsdjeunz.org (du-227-233.nat.dialup.freesurf.fr [212.43.227.233]) by mail3.freesurf.fr (Postfix) with ESMTP id D63BB19007; Tue, 19 Dec 2000 23:48:39 +0100 (CET) Received: (from vt@localhost) by nmp.bsdjeunz.org (8.11.1/8.11.1/Vassili Tchersky) id eBJMmnB00678; Tue, 19 Dec 2000 23:48:49 +0100 (CET) (envelope-from vt) Date: Tue, 19 Dec 2000 23:48:33 +0100 From: Vassili Tchersky To: will@FreeBSD.org Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/22985: NEW PORT : 6tunnel (2) Message-ID: <20001219234832.A621@nmp.bsdjeunz.org> Reply-To: vt@bsdjeunz.org References: <200012191016.eBJAGtR81597@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <200012191016.eBJAGtR81597@freefall.freebsd.org>; from will@FreeBSD.org on Tue, Dec 19, 2000 at 02:16:55AM -0800 X-GSM: +33 6 12 85 16 49 X-Operating-System: FreeBSD 4.2-STABLE X-Country: France X-ICQ#: 22654705 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Le Tue, Dec 19, 2000 at 02:16:55AM -0800, will@FreeBSD.org a écrit: > Synopsis: NEW PORT : 6tunnel (2) > What purpose does this program serve that you can't use with the > base KAME tools in 4.x? I've never had trouble tunnelling IPv6 > over IPv4 via gifconfig. This program simply does TCP over IPv4 to TCP over IPv6 translating ( proxying in that case ). For example, if you want to use a IPv6 only irc server with xchat which doesn't support IPv6 natively, you may use 6tunnel like this : 6tunnel 6667 , and then, in xchat: /server localhost. By the way you may also see IPv6 only WWW site with Netscape. -- Vassili Tchersky (lbg@IRC) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 15: 5:41 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 15:05:39 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from sol.cc.u-szeged.hu (sol.cc.u-szeged.hu [160.114.8.24]) by hub.freebsd.org (Postfix) with ESMTP id 2C46637B402; Tue, 19 Dec 2000 15:05:38 -0800 (PST) Received: from petra.hos.u-szeged.hu by sol.cc.u-szeged.hu (8.9.3+Sun/SMI-SVR4) id AAA22476; Wed, 20 Dec 2000 00:05:36 +0100 (MET) Received: from sziszi by petra.hos.u-szeged.hu with local (Exim 3.12 #1 (Debian)) id 148VpA-0007H3-00; Wed, 20 Dec 2000 00:05:36 +0100 Date: Wed, 20 Dec 2000 00:05:36 +0100 From: Szilveszter Adam To: freebsd-ports@freebsd.org Cc: obrien@freebsd.org Subject: lsof broken Message-ID: <20001220000536.A26246@petra.hos.u-szeged.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello everybody! I do not know if this known... but on a -CURRENT system built from sources from today, and with a ports collection also refreshed today, the lsof port is broken, most probably by an interface change in the vm system. Sorry, I do not know for how long it has been like that. Output: (cd lib; make DEBUG="-O" CFGF="-pipe -DFREEBSDV=500 -DHASFDESCFS=2 -DHASPROCFS - DHAS9660FS -DHASIPv6 -DLSOF_VSTR=\"5.0-CURRENT\"") cc -pipe -DFREEBSDV=500 -DHASFDESCFS=2 -DHASPROCFS -DHAS9660FS -DHASIPv6 -DLSOF _VSTR=\"5.0-CURRENT\" -I/usr/include -I/usr/src/sys -O -c dnode.c dnode.c: In function `getmemsz': dnode.c:65: structure has no member named `kp_proc' dnode.c:66: structure has no member named `kp_proc' dnode.c:67: structure has no member named `kp_proc' *** Error code 1 Stop in /usr/ports/sysutils/lsof/work/lsof_4.54B.freebsd. Sorry, no fix this time:-( -- Regards: Szilveszter ADAM Szeged University Szeged Hungary To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 15: 7:38 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 15:07:37 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id EE3C237B400 for ; Tue, 19 Dec 2000 15:07:36 -0800 (PST) Received: from dwcjr (DWCJR.inethouston.net [216.118.21.147]) by leviathan.inethouston.com (Postfix) with ESMTP id D4445177EC2 for ; Tue, 19 Dec 2000 17:08:35 -0600 (CST) Message-ID: <008c01c06a10$9bc565c0$931576d8@inethouston.net> From: "David W. Chapman Jr." To: Subject: pkg-message Date: Tue, 19 Dec 2000 17:08:32 -0600 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 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org what's the proper way of refering to ${PREFIX} in pkg-message audio/juke does this, is it correct? PKGMESSAGE= ${WRKSRC}/MESSAGE post-install: ${INSTALL_DATA} ${WRKSRC}/juke.conf ${PREFIX}/etc/juke.conf.sample @${SED} 's,PREFIX,${PREFIX},' ${PKGDIR}/pkg-message > ${WRKSRC}/MESSAGE @${CAT} ${PKGMESSAGE} To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 15:14: 4 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 15:14:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A83437B402; Tue, 19 Dec 2000 15:14:02 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJNE1Z88244; Tue, 19 Dec 2000 15:14:01 -0800 (PST) (envelope-from okazaki) Date: Tue, 19 Dec 2000 15:14:01 -0800 (PST) From: Message-Id: <200012192314.eBJNE1Z88244@freefall.freebsd.org> To: skv@protey.ru, okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22803: Update port: XML::XPath - a set of modules for parsing and evaluating XPath statements Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: XML::XPath - a set of modules for parsing and evaluating XPath statements State-Changed-From-To: open->closed State-Changed-By: okazaki State-Changed-When: Tue Dec 19 14:59:41 PST 2000 State-Changed-Why: Will Andrews handled your PR based on ports/22769, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=22803 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 15:20:10 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 15:20:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ADB6A37B404 for ; Tue, 19 Dec 2000 15:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJNK3J88910; Tue, 19 Dec 2000 15:20:03 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 15:20:03 -0800 (PST) Resent-Message-Id: <200012192320.eBJNK3J88910@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 3E9DC37B69C for ; Tue, 19 Dec 2000 15:15:32 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 0) id 025DC177EC2; Tue, 19 Dec 2000 17:16:31 -0600 (CST) Message-Id: <20001219231631.025DC177EC2@leviathan.inethouston.com> Date: Tue, 19 Dec 2000 17:16:31 -0600 (CST) From: dwcjr@inethouston.net Sender: root@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23659: Update security/portsentry add portsentry.conf to pkg-plist Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23659 >Category: ports >Synopsis: Update security/portsentry add portsentry.conf to pkg-plist >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 15:20:03 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Detect if portsentry.conf hasn't been changed and delete on uninstall if true >How-To-Repeat: >Fix: --- pkg-plist.orig Tue Dec 19 17:14:48 2000 +++ pkg-plist Tue Dec 19 17:14:55 2000 @@ -1,4 +1,5 @@ bin/portsentry +@unexec if cmp -s %D/etc/portsentry.conf %D/etc/portsentry.conf.default; then rm -f %D/etc/portsentry.conf; fi etc/portsentry.conf.default @exec if [ ! -f %D/etc/portsentry.conf ] ; then cp -p %D/%F %B/portsentry.conf; fi etc/portsentry.ignore >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 15:20:11 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 15:20:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6BF5637B402 for ; Tue, 19 Dec 2000 15:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJNK3v88892; Tue, 19 Dec 2000 15:20:03 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 15:20:03 -0800 (PST) Resent-Message-Id: <200012192320.eBJNK3v88892@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 5031837B402 for ; Tue, 19 Dec 2000 15:10:35 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 0) id BDB4E177EC2; Tue, 19 Dec 2000 17:11:34 -0600 (CST) Message-Id: <20001219231134.BDB4E177EC2@leviathan.inethouston.com> Date: Tue, 19 Dec 2000 17:11:34 -0600 (CST) From: dwcjr@inethouston.net Sender: root@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23657: Update audio/juke add man page to Makefile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23657 >Category: ports >Synopsis: Update audio/juke add man page to Makefile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 15:20:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Makefile doesn't include the man page that juke installs >How-To-Repeat: >Fix: --- Makefile.orig Tue Dec 19 16:53:33 2000 +++ Makefile Tue Dec 19 17:10:19 2000 @@ -15,6 +15,8 @@ GNU_CONFIGURE= yes PKGMESSAGE= ${WRKSRC}/MESSAGE +MAN1= juke.1 + post-install: ${INSTALL_DATA} ${WRKSRC}/juke.conf ${PREFIX}/etc/juke.conf.sample @${SED} 's,PREFIX,${PREFIX},' ${PKGDIR}/pkg-message > ${WRKSRC}/MESSAGE >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 15:20:17 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 15:20:10 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E81F637B698 for ; Tue, 19 Dec 2000 15:20:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJNK4788915; Tue, 19 Dec 2000 15:20:04 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Dec 2000 15:20:04 -0800 (PST) Message-Id: <200012192320.eBJNK4788915@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "David W. Chapman Jr." Subject: Re: ports/23637: Update ftp/proftpd update pkg-plist Reply-To: "David W. Chapman Jr." Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23637; it has been noted by GNATS. From: "David W. Chapman Jr." To: Cc: Subject: Re: ports/23637: Update ftp/proftpd update pkg-plist Date: Tue, 19 Dec 2000 17:18:58 -0600 oops, can't detect if proftpd.conf.sample is the same as proftpd.conf after the sample has been deleted begin 644 proftpd.patch M+2TM('!K9RUP;&ES="YO&5C(&EF(%L@(2`M9B`E1"]E=&,O<')O9G1P9"YC M;VYF(%T@.R!T:&5N(&-P("UP("5$+R5&("5"+W!R;V9T<&0N8V]N9CL@9FD* ` end To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 15:20:21 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 15:20:12 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 871A037B400 for ; Tue, 19 Dec 2000 15:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJNK3688901; Tue, 19 Dec 2000 15:20:03 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 15:20:03 -0800 (PST) Resent-Message-Id: <200012192320.eBJNK3688901@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, roman@xpert.com Received: from mailgw1.netvision.net.il (mailgw1.netvision.net.il [194.90.1.14]) by hub.freebsd.org (Postfix) with ESMTP id 3C5E737B400 for ; Tue, 19 Dec 2000 15:13:41 -0800 (PST) Received: from alchemy.oven.org (ras2-p153.hfa.netvision.net.il [62.0.97.153]) by mailgw1.netvision.net.il (8.9.3/8.9.3) with ESMTP id BAA28763 for ; Wed, 20 Dec 2000 01:13:36 +0200 (IST) Received: (from mapc@localhost) by alchemy.oven.org (8.11.1/8.11.1) id eBJNERU05132; Wed, 20 Dec 2000 01:14:27 +0200 (IST) (envelope-from mapc) Message-Id: <200012192314.eBJNERU05132@alchemy.oven.org> Date: Wed, 20 Dec 2000 01:14:27 +0200 (IST) From: roman@xpert.com Sender: mapc@alchemy.oven.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23658: NEW PORT: net/cryptcat - twofish armored netcat reincarnation Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23658 >Category: ports >Synopsis: NEW PORT: net/cryptcat - twofish armored netcat reincarnation >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 15:20:03 PST 2000 >Closed-Date: >Last-Modified: >Originator: Roman Shterenzon >Release: FreeBSD 4.2-RELEASE i386 >Organization: >Environment: >Description: This is the usual netcat with added value. read/write functions were replaced by their crypto cousins. I almost blindly copied O'Briens (thanks David) port for netcat and done just minor modifications. It works fine. The only annoying issue is that wrong key is not reported; I'll fix that later. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # cryptcat # cryptcat/distinfo # cryptcat/files # cryptcat/files/patch-aa # cryptcat/Makefile # cryptcat/pkg-comment # cryptcat/pkg-descr # cryptcat/pkg-plist # echo c - cryptcat mkdir -p cryptcat > /dev/null 2>&1 echo x - cryptcat/distinfo sed 's/^X//' >cryptcat/distinfo << 'END-of-cryptcat/distinfo' XMD5 (cryptcat_linux.tar) = 5cf484a201128c233712f68fdaf3fa7c END-of-cryptcat/distinfo echo c - cryptcat/files mkdir -p cryptcat/files > /dev/null 2>&1 echo x - cryptcat/files/patch-aa sed 's/^X//' >cryptcat/files/patch-aa << 'END-of-cryptcat/files/patch-aa' X--- Makefile.orig Wed Dec 20 00:57:35 2000 X+++ Makefile Wed Dec 20 00:59:15 2000 X@@ -10,12 +10,12 @@ X # debugging X # DFLAGS = -DTEST -DDEBUG X DFLAGS = -DGAPING_SECURITY_HOLE X-CFLAGS = -O X+CFLAGS ?= -O X XFLAGS = # xtra cflags, set by systype targets X XLIBS = # xtra libs if necessary? X # -Bstatic for sunos, -static for gcc, etc. You want this, trust me. X STATIC = X-CC = cc $(CFLAGS) X+CC ?= cc X LD = $(CC) -s # linker; defaults to stripped executables X o = o # object extension X X@@ -29,7 +29,7 @@ X ### HARD TARGETS X X cryptcat: netcat.c farm9crypt.o twofish2.o X- $(LD) $(DFLAGS) $(XFLAGS) $(STATIC) -o cryptcat netcat.c farm9crypt.o twofish2.o $(XLIBS) X+ $(LD) $(CFLAGS) $(DFLAGS) $(XFLAGS) $(STATIC) -o cryptcat netcat.c farm9crypt.o twofish2.o $(XLIBS) X X nc-dos: X @echo "DOS?! Maybe someday, but not now" X@@ -82,7 +82,7 @@ X X # virtually the same as netbsd/bsd44lite/whatever X freebsd: X- make -e $(ALL) $(MFLAGS) XFLAGS='-DFREEBSD' STATIC=-static X+ make -e $(ALL) $(MFLAGS) XFLAGS='-DFREEBSD -DGAPING_SECURITY_HOLE -DTELNET' STATIC=-static X X bsdi: X make -e $(ALL) $(MFLAGS) XFLAGS='-DBSDI' STATIC=-Bstatic END-of-cryptcat/files/patch-aa echo x - cryptcat/Makefile sed 's/^X//' >cryptcat/Makefile << 'END-of-cryptcat/Makefile' X# Ports collection makefile for: cryptcat X# Date created: 20 Dec 2000 X# Whom: Roman Shterenzon X# X# $FreeBSD$ X# X XPORTNAME= cryptcat XPORTVERSION= 0.0 XCATEGORIES= net XMASTER_SITES= http://farm9.com/content/Free_Tools/ XDISTNAME= cryptcat_linux XEXTRACT_SUFX= .tar X XMAINTAINER= roman@xpert.com X XWRKSRC= ${WRKDIR}/${PORTNAME} XALL_TARGET= freebsd X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/cryptcat ${PREFIX}/bin X.if !defined(NOPORTDOCS) X @${MKDIR} ${PREFIX}/share/doc/cryptcat \ X && ${CHMOD} 755 ${PREFIX}/share/doc/cryptcat X ${INSTALL_DATA} ${WRKSRC}/README.cryptcat ${PREFIX}/share/doc/cryptcat X.endif X X.include END-of-cryptcat/Makefile echo x - cryptcat/pkg-comment sed 's/^X//' >cryptcat/pkg-comment << 'END-of-cryptcat/pkg-comment' XStandard netcat enhanced with twofish encryption END-of-cryptcat/pkg-comment echo x - cryptcat/pkg-descr sed 's/^X//' >cryptcat/pkg-descr << 'END-of-cryptcat/pkg-descr' XCryptcat is the standard netcat enhanced with twofish encryption. X XTwofish is courtesy of counterpane, and cryptix. We started with the XJava version of twofish from cryptix, converted it to C++ (don't ask why), Xand enhanced it by adding CBC mode and the ciphertext stealing technique Xfrom Applied Cryptography (pg. 196) X XHow do you use it? X X Machine A: cryptcat -l -p 1234 < testfile X Machine B: cryptcat 1234 X XThis is identical to the normal netcat options for doing exactly the Xsame thing. However, in this case the data transferred is encrypted. X XFor more information about netcat see net/netcat port. X XWWW: http://farm9.com/content/Free_Tools/Cryptcat/ X XRoman Shterenzon END-of-cryptcat/pkg-descr echo x - cryptcat/pkg-plist sed 's/^X//' >cryptcat/pkg-plist << 'END-of-cryptcat/pkg-plist' Xbin/cryptcat Xshare/doc/cryptcat/README.cryptcat X@dirrm share/doc/cryptcat END-of-cryptcat/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 15:30: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 15:30:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 07D5337B402 for ; Tue, 19 Dec 2000 15:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJNU1A89975; Tue, 19 Dec 2000 15:30:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 15:30:01 -0800 (PST) Resent-Message-Id: <200012192330.eBJNU1A89975@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id CD54437B400 for ; Tue, 19 Dec 2000 15:20:59 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 0) id B7276177EC2; Tue, 19 Dec 2000 17:21:59 -0600 (CST) Message-Id: <20001219232159.B7276177EC2@leviathan.inethouston.com> Date: Tue, 19 Dec 2000 17:21:59 -0600 (CST) From: dwcjr@inethouston.net Sender: root@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23660: Update russian/elm.language update pkg-plist Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23660 >Category: ports >Synopsis: Update russian/elm.language update pkg-plist >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 15:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Missing bin/nfrm from pkg-plist >How-To-Repeat: >Fix: --- pkg-plist.orig Tue Dec 19 17:20:10 2000 +++ pkg-plist Tue Dec 19 17:20:16 2000 @@ -1 +1,2 @@ +bin/nfrm lib/elm.rc >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 15:40: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 15:40:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A389B37B698 for ; Tue, 19 Dec 2000 15:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJNe2a91310; Tue, 19 Dec 2000 15:40:02 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 15:40:02 -0800 (PST) Resent-Message-Id: <200012192340.eBJNe2a91310@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 73B5C37B402 for ; Tue, 19 Dec 2000 15:31:31 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 0) id 472A9177EC2; Tue, 19 Dec 2000 17:32:31 -0600 (CST) Message-Id: <20001219233231.472A9177EC2@leviathan.inethouston.com> Date: Tue, 19 Dec 2000 17:32:31 -0600 (CST) From: dwcjr@inethouston.net Sender: root@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23661: Update mail/zmailer update pkg-plist Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23661 >Category: ports >Synopsis: Update mail/zmailer update pkg-plist >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 15:40:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Missing directories from pkg-plist >How-To-Repeat: >Fix: --- pkg-plist.orig Tue Dec 19 17:30:46 2000 +++ pkg-plist Tue Dec 19 17:31:19 2000 @@ -161,6 +161,7 @@ @exec mkdir -p /var/spool/postoffice/transport/X @exec mkdir -p /var/spool/postoffice/transport/Y @exec mkdir -p /var/spool/postoffice/transport/Z +@dirrm bin/vacation @dirrm etc/zmailer/db/proto @dirrm etc/zmailer/db @dirrm etc/zmailer/lists @@ -173,6 +174,7 @@ @dirrm etc/zmailer/cf/fc @dirrm etc/zmailer/cf @dirrm etc/zmailer +@dirrm sbin/bak @dirrm sbin/ta @cwd /var/spool @dirrm postoffice/transport/Z >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 15:40:10 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 15:40:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7628537B402 for ; Tue, 19 Dec 2000 15:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJNe2R91301; Tue, 19 Dec 2000 15:40:02 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Dec 2000 15:40:02 -0800 (PST) Message-Id: <200012192340.eBJNe2R91301@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Vassili Tchersky Subject: Re: ports/22985: NEW PORT : 6tunnel (2) Reply-To: Vassili Tchersky Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/22985; it has been noted by GNATS. From: Vassili Tchersky To: freebsd-gnats-submit@FreeBSD.org, vt@bsdjeunz.org Cc: Subject: Re: ports/22985: NEW PORT : 6tunnel (2) Date: Wed, 20 Dec 2000 00:31:00 +0100 Le Tue, Dec 19, 2000 at 02:16:55AM -0800, will@FreeBSD.org a écrit: > Synopsis: NEW PORT : 6tunnel (2) > What purpose does this program serve that you can't use with the > base KAME tools in 4.x? I've never had trouble tunnelling IPv6 > over IPv4 via gifconfig. This program simply does TCP over IPv4 to TCP over IPv6 translating ( proxying in that case ). For example, if you want to use a IPv6 only irc server with xchat which doesn't support IPv6 natively, you may use 6tunnel like this : 6tunnel 6667 , and then, in xchat: /server localhost. By the way you may also see IPv6 only WWW site with Netscape. -- Vassili Tchersky (lbg@IRC) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 15:40:11 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 15:40:07 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 17F3537B404 for ; Tue, 19 Dec 2000 15:40:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJNe3q91317; Tue, 19 Dec 2000 15:40:03 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Dec 2000 15:40:03 -0800 (PST) Message-Id: <200012192340.eBJNe3q91317@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "David W. Chapman Jr." Subject: Re: ports/23660: Update russian/elm.language update pkg-plist Reply-To: "David W. Chapman Jr." Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23660; it has been noted by GNATS. From: "David W. Chapman Jr." To: , "David W Chapman Jr." Cc: Subject: Re: ports/23660: Update russian/elm.language update pkg-plist Date: Tue, 19 Dec 2000 17:33:21 -0600 oops again :( forgot a file, I'll get it right one of these days begin 644 elm.language.patch M+2TM('!K9RUP;&ES="YO Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2A0C537B402 for ; Tue, 19 Dec 2000 15:50:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBJNo4092165; Tue, 19 Dec 2000 15:50:04 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 15:50:04 -0800 (PST) Resent-Message-Id: <200012192350.eBJNo4092165@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 1BCCB37B400 for ; Tue, 19 Dec 2000 15:43:34 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 0) id A5681177EC2; Tue, 19 Dec 2000 17:44:33 -0600 (CST) Message-Id: <20001219234433.A5681177EC2@leviathan.inethouston.com> Date: Tue, 19 Dec 2000 17:44:33 -0600 (CST) From: dwcjr@inethouston.net Sender: root@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23663: Update chineese/cxterm update pkg-plist and Makefile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23663 >Category: ports >Synopsis: Update chineese/cxterm update pkg-plist and Makefile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 15:50:03 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Missing directories and files from pkg-plist Missing Manpages from Makefile >How-To-Repeat: >Fix: --- Makefile.orig Tue Dec 19 17:36:12 2000 +++ Makefile Tue Dec 19 17:40:22 2000 @@ -19,6 +19,9 @@ PATCHFILES= cxterm-5.0.p3-color.patch.gz # cxterm-5.0-hz-patch.gz PATCH_DIST_STRIP= -p1 +MAN1= cxterm.1 tit2cit.1 cit2tit.1 hzimctrl.1 +MANCOMPRESSED= yes + MAINTAINER= obrien@FreeBSD.org WRKSRC= ${WRKDIR}/cxterm-5.0 --- pkg-plist.orig Tue Dec 19 17:41:06 2000 +++ pkg-plist Tue Dec 19 17:42:31 2000 @@ -40,6 +40,10 @@ lib/X11/cxterm.dic/ks/HANJA.cit lib/X11/cxterm.dic/ks/Punct.cit lib/X11/cxterm.dic/ks/QJ.cit +lib/X11/doc/html/cxterm.1.html +lib/X11/doc/html/tit2cit.1.html +lib/X11/doc/html/cit2tit.1.html +lib/X11/doc/html/hzimctrl.1.html lib/X11/fonts/chinese/hku16et.pcf.gz lib/X11/fonts/chinese/fonts.dir lib/X11/fonts/chinese/fonts.alias @@ -47,3 +51,5 @@ lib/X11/cxterm.dic/CXterm.ad share/doc/cxterm/CXTERM.FAQ share/doc/cxterm/input.doc +@dirrm lib/X11/cxterm.dic +@dirrm share/doc/cxterm >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 16: 0:10 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 16:00:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 202C037B402 for ; Tue, 19 Dec 2000 16:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK002v93333; Tue, 19 Dec 2000 16:00:02 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 16:00:02 -0800 (PST) Resent-Message-Id: <200012200000.eBK002v93333@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 54E6737B402 for ; Tue, 19 Dec 2000 15:54:35 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 0) id 657F7177EC2; Tue, 19 Dec 2000 17:55:35 -0600 (CST) Message-Id: <20001219235535.657F7177EC2@leviathan.inethouston.com> Date: Tue, 19 Dec 2000 17:55:35 -0600 (CST) From: dwcjr@inethouston.net Sender: root@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23665: Update editors/vim5 update pkg-plist Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23665 >Category: ports >Synopsis: Update editors/vim5 update pkg-plist >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 16:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Missing files from pkg-plist >How-To-Repeat: >Fix: --- pkg-plist.orig Tue Dec 19 17:53:13 2000 +++ pkg-plist Tue Dec 19 17:54:32 2000 @@ -1,4 +1,7 @@ @comment $FreeBSD: ports/editors/vim5/pkg-plist,v 1.24 2000/10/09 18:13:08 obrien Exp $ +bin/gview +bin/rgvim +bin/rgview bin/vim bin/vimtutor bin/ctags >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 16: 0:11 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 16:00:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F410637B698 for ; Tue, 19 Dec 2000 16:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK001l93322; Tue, 19 Dec 2000 16:00:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 16:00:01 -0800 (PST) Resent-Message-Id: <200012200000.eBK001l93322@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id E2D1437B400 for ; Tue, 19 Dec 2000 15:51:00 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 0) id 17FB9177EC2; Tue, 19 Dec 2000 17:52:01 -0600 (CST) Message-Id: <20001219235201.17FB9177EC2@leviathan.inethouston.com> Date: Tue, 19 Dec 2000 17:52:01 -0600 (CST) From: dwcjr@inethouston.net Sender: root@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23664: Update emulators/wine update pkg-plist and Makefile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23664 >Category: ports >Synopsis: Update emulators/wine update pkg-plist and Makefile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 16:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Missing files from pkg-plist Missing Manpages from Makefile >How-To-Repeat: >Fix: diff -urN wine.orig/Makefile wine/Makefile --- wine.orig/Makefile Tue Dec 19 17:47:21 2000 +++ wine/Makefile Tue Dec 19 17:47:42 2000 @@ -21,7 +21,7 @@ CONFIGURE_ENV= LIBS=-Wl,-rpath,${PREFIX}/lib/wine INSTALLS_SHLIB= yes LDCONFIG_DIRS= %%PREFIX%%/lib/wine -MAN1= wine.1 +MAN1= wine.1 wmc.1 wrc.1 MAN5= wine.conf.5 ONLY_FOR_ARCHS= i386 USE_XPM= yes diff -urN wine.orig/pkg-plist wine/pkg-plist --- wine.orig/pkg-plist Tue Dec 19 17:47:21 2000 +++ wine/pkg-plist Tue Dec 19 17:49:46 2000 @@ -1,9 +1,14 @@ +bin/dosmod +bin/fnt2bdf bin/wine bin/winebuild bin/wineclipsrv bin/winedbg bin/wineserver +bin/wmc +bin/wrc bin/regSet.sh +@unexec if cmp -s %D/etc/wine.conf %D/etc/wine.conf.sample; then rm -f %D/etc/wine.conf; fi etc/wine.conf.sample include/wine/basetsd.h include/wine/cderr.h >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 16:10:11 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 16:10:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 484E937B404 for ; Tue, 19 Dec 2000 16:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK0A2T96346; Tue, 19 Dec 2000 16:10:02 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 16:10:02 -0800 (PST) Resent-Message-Id: <200012200010.eBK0A2T96346@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 687D137B400 for ; Tue, 19 Dec 2000 16:05:43 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 0) id 8222B177EC2; Tue, 19 Dec 2000 18:06:43 -0600 (CST) Message-Id: <20001220000643.8222B177EC2@leviathan.inethouston.com> Date: Tue, 19 Dec 2000 18:06:43 -0600 (CST) From: dwcjr@inethouston.net Sender: root@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23667: Update x11-wm/uwm update pkg-plist Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23667 >Category: ports >Synopsis: Update x11-wm/uwm update pkg-plist >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 16:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Missing file from pkg-plist >How-To-Repeat: >Fix: --- pkg-plist.orig Tue Dec 19 18:05:05 2000 +++ pkg-plist Tue Dec 19 18:05:32 2000 @@ -1,4 +1,5 @@ @comment $NetBSD: PLIST,v 1.1.1.1 1999/12/23 03:10:59 itohy Exp $ bin/uwm +lib/X11/doc/html/uwm.1.html lib/X11/uwm/system.uwmrc @dirrm lib/X11/uwm >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 16:10:13 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 16:10:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6DE5437B402 for ; Tue, 19 Dec 2000 16:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK0A1V96336; Tue, 19 Dec 2000 16:10:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 16:10:01 -0800 (PST) Resent-Message-Id: <200012200010.eBK0A1V96336@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 5831437B400 for ; Tue, 19 Dec 2000 16:02:57 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 1001) id 58514177EC2; Tue, 19 Dec 2000 18:03:57 -0600 (CST) Message-Id: <20001220000357.58514177EC2@leviathan.inethouston.com> Date: Tue, 19 Dec 2000 18:03:57 -0600 (CST) From: dwcjr@inethouston.net Sender: poseiden@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23666: Update editors/vim6 update pkg-plist Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23666 >Category: ports >Synopsis: Update editors/vim6 update pkg-plist >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 16:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Missing files and directory from pkg-plist >How-To-Repeat: >Fix: --- pkg-plist.orig Tue Dec 19 17:57:56 2000 +++ pkg-plist Tue Dec 19 18:01:55 2000 @@ -109,6 +109,7 @@ share/vim/%%VIM_VER%%/ftplugin/mail/default.vim share/vim/%%VIM_VER%%/ftplugin/make/default.vim share/vim/%%VIM_VER%%/ftplugin/man/default.vim +share/vim/%%VIM_VER%%/ftpplugin/vim/default.vim share/vim/%%VIM_VER%%/ftplugin/xs/default.vim share/vim/%%VIM_VER%%/ftplugof.vim share/vim/%%VIM_VER%%/gvimrc_example.vim @@ -152,6 +153,7 @@ share/vim/%%VIM_VER%%/plugin/gzip.vim share/vim/%%VIM_VER%%/plugin/netrw.vim share/vim/%%VIM_VER%%/scripts.vim +share/vim/%%VIM_VER%%/syntax/README.txt share/vim/%%VIM_VER%%/syntax/2html.vim share/vim/%%VIM_VER%%/syntax/abaqus.vim share/vim/%%VIM_VER%%/syntax/abc.vim @@ -181,6 +183,7 @@ share/vim/%%VIM_VER%%/syntax/blank.vim share/vim/%%VIM_VER%%/syntax/btm.vim share/vim/%%VIM_VER%%/syntax/c.vim +share/vim/%%VIM_VER%%/syntax/catalog.vim share/vim/%%VIM_VER%%/syntax/cf.vim share/vim/%%VIM_VER%%/syntax/ch.vim share/vim/%%VIM_VER%%/syntax/change.vim @@ -191,6 +194,7 @@ share/vim/%%VIM_VER%%/syntax/conf.vim share/vim/%%VIM_VER%%/syntax/config.vim share/vim/%%VIM_VER%%/syntax/cpp.vim +share/vim/%%VIM_VER%%/syntax/csc.vim share/vim/%%VIM_VER%%/syntax/csh.vim share/vim/%%VIM_VER%%/syntax/csp.vim share/vim/%%VIM_VER%%/syntax/css.vim @@ -204,6 +208,7 @@ share/vim/%%VIM_VER%%/syntax/def.vim share/vim/%%VIM_VER%%/syntax/diff.vim share/vim/%%VIM_VER%%/syntax/diva.vim +share/vim/%%VIM_VER%%/syntax/docbk.vim share/vim/%%VIM_VER%%/syntax/dosbatch.vim share/vim/%%VIM_VER%%/syntax/dosini.vim share/vim/%%VIM_VER%%/syntax/dracula.vim @@ -243,6 +248,7 @@ share/vim/%%VIM_VER%%/syntax/ishd.vim share/vim/%%VIM_VER%%/syntax/iss.vim share/vim/%%VIM_VER%%/syntax/ist.vim +share/vim/%%VIM_VER%%/syntax/jam.vim share/vim/%%VIM_VER%%/syntax/java.vim share/vim/%%VIM_VER%%/syntax/javacc.vim share/vim/%%VIM_VER%%/syntax/javascript.vim @@ -296,6 +302,7 @@ share/vim/%%VIM_VER%%/syntax/openroad.vim share/vim/%%VIM_VER%%/syntax/opl.vim share/vim/%%VIM_VER%%/syntax/ora.vim +share/vim/%%VIM_VER%%/syntax/pap.vim share/vim/%%VIM_VER%%/syntax/pascal.vim share/vim/%%VIM_VER%%/syntax/pcap.vim share/vim/%%VIM_VER%%/syntax/pccts.vim @@ -312,6 +319,7 @@ share/vim/%%VIM_VER%%/syntax/pov.vim share/vim/%%VIM_VER%%/syntax/procmail.vim share/vim/%%VIM_VER%%/syntax/prolog.vim +share/vim/%%VIM_VER%%/syntax/psf.vim share/vim/%%VIM_VER%%/syntax/ptcap.vim share/vim/%%VIM_VER%%/syntax/purifylog.vim share/vim/%%VIM_VER%%/syntax/python.vim @@ -381,6 +389,7 @@ share/vim/%%VIM_VER%%/syntax/viminfo.vim share/vim/%%VIM_VER%%/syntax/virata.vim share/vim/%%VIM_VER%%/syntax/vrml.vim +share/vim/%%VIM_VER%%/syntax/vsejcl.vim share/vim/%%VIM_VER%%/syntax/wdiff.vim share/vim/%%VIM_VER%%/syntax/web.vim share/vim/%%VIM_VER%%/syntax/webmacro.vim @@ -428,6 +437,7 @@ @dirrm share/vim/%%VIM_VER%%/ftplugin/mail @dirrm share/vim/%%VIM_VER%%/ftplugin/make @dirrm share/vim/%%VIM_VER%%/ftplugin/man +@dirrm share/vim/%%VIM_VER%%/ftplugin/vim @dirrm share/vim/%%VIM_VER%%/ftplugin/xs @dirrm share/vim/%%VIM_VER%%/ftplugin @dirrm share/vim/%%VIM_VER%%/indent >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 16:10:17 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 16:10:11 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8547337B698 for ; Tue, 19 Dec 2000 16:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK0A2R96355; Tue, 19 Dec 2000 16:10:02 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 16:10:02 -0800 (PST) Resent-Message-Id: <200012200010.eBK0A2R96355@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id F128937B402 for ; Tue, 19 Dec 2000 16:08:25 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 0) id 5AE09177EC2; Tue, 19 Dec 2000 18:09:26 -0600 (CST) Message-Id: <20001220000926.5AE09177EC2@leviathan.inethouston.com> Date: Tue, 19 Dec 2000 18:09:26 -0600 (CST) From: dwcjr@inethouston.net Sender: root@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23668: Update graphics/utah-glx update pkg-plist Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23668 >Category: ports >Synopsis: Update graphics/utah-glx update pkg-plist >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 16:10:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Detect unchanged glx.conf and delete on uninstall >How-To-Repeat: >Fix: --- pkg-plist.orig Tue Dec 19 18:08:13 2000 +++ pkg-plist Tue Dec 19 18:08:21 2000 @@ -1,3 +1,4 @@ +@unexec if cmp -s %D/etc/glx.conf %D/etc/glx.conf.default; then rm -f %D/etc/glx.conf; fi etc/glx.conf.default include/GL/gl.h include/GL/glu.h >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 16:20: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 16:20:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B6A3237B402 for ; Tue, 19 Dec 2000 16:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK0K2u97860; Tue, 19 Dec 2000 16:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 16:20:02 -0800 (PST) Resent-Message-Id: <200012200020.eBK0K2u97860@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id BAA5337B400 for ; Tue, 19 Dec 2000 16:13:30 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 0) id 1AA93177EC2; Tue, 19 Dec 2000 18:14:31 -0600 (CST) Message-Id: <20001220001431.1AA93177EC2@leviathan.inethouston.com> Date: Tue, 19 Dec 2000 18:14:31 -0600 (CST) From: dwcjr@inethouston.net Sender: root@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23669: Update mail/tkrat2 update Makefile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23669 >Category: ports >Synopsis: Update mail/tkrat2 update Makefile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 16:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Makefile is missing the man page for tkrat2 >How-To-Repeat: >Fix: --- Makefile.orig Tue Dec 19 18:11:54 2000 +++ Makefile Tue Dec 19 18:12:37 2000 @@ -18,6 +18,8 @@ tk82:${PORTSDIR}/x11-toolkits/tk82 \ c-client4.7:${PORTSDIR}/mail/cclient +MAN1= tkrat.1 + GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-tcl-config=${PREFIX}/lib/tcl8.2 \ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 16:20:14 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 16:20:09 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BB09037B400 for ; Tue, 19 Dec 2000 16:20:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK0K5s97903; Tue, 19 Dec 2000 16:20:05 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Dec 2000 16:20:05 -0800 (PST) Message-Id: <200012200020.eBK0K5s97903@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Martin Blapp Subject: Re: ports/23646: Staroffice 5.2 fails to install on FreeBSD 4.1.1-RELEASE Reply-To: Martin Blapp Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23646; it has been noted by GNATS. From: Martin Blapp To: Steve Davidson Cc: Chris Faulhaber , freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/23646: Staroffice 5.2 fails to install on FreeBSD 4.1.1-RELEASE Date: Wed, 20 Dec 2000 01:18:08 +0100 (CET) Hi, Since I'm busy with rpc stuff you have not heard from me. I know this error, but have never been able to track it down. I never had it myself (about 20 installations of SO). About 200 sucessful insallations I know, and about 20 failed, exactly with the same error. Can you send me everything as output you can get ? - Linux Lib versions (/compat/linux/sbin/ldconfig -p) - The ENV variables you've set in the shell - Are you installing under X ? - Do you use NFS mounts for the ports-dir ? - Which shell do you use ? Martin Martin Blapp, mb@imp.ch ------------------------------------------------ Improware AG, UNIX solution and service provider Zurlindenstrasse 29, 4133 Pratteln, Switzerland Phone: +41 79 370 26 05, Fax: +41 61 826 93 01 ------------------------------------------------ On Tue, 19 Dec 2000, Steve Davidson wrote: > Yes. Two days ago. No reply yet. > What confuses me most is that I can't be the only > person experiencing this so... > what do other people do whan a port doesn't work? > > I do a cvsup and then a make. > If it fails then I usually file a bug report on the > ports category. > > Is this correct? > > --- Chris Faulhaber wrote: > > On Tue, Dec 19, 2000 at 09:42:27AM -0800, stevedav@pacbell.net wrote: > > > > > > >Number: 23646 > > > >Category: ports > > > >Synopsis: Staroffice 5.2 fails to install on FreeBSD > > 4.1.1-RELEASE > > > > > *snip* > > > > > > glibc version: 2.1.2 > > > /usr/ports/editors/staroffice52/work/tmp/sv001.tmp/setup.bin: error > > in loading shared libraries: libvos1GCC.so: cannot open shared object > > file: No such file or directory > > > *** Error code 1 (ignored) > > > > > > An error occured during StarOffice5.2 install. Please send a mail > > with debug-output and > > > some information about your FreeBSD-environment to mb@imp.ch. > > Thanks. > > > > > > > And have you sent the above email to the maintainer? > > > > -- > > Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org > > -------------------------------------------------------- > > FreeBSD: The Power To Serve - http://www.FreeBSD.org > > > __________________________________________________ > Do You Yahoo!? > Yahoo! Shopping - Thousands of Stores. Millions of Products. > http://shopping.yahoo.com/ > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 16:20:15 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 16:20:06 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CF42937B698 for ; Tue, 19 Dec 2000 16:20:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK0K5897920; Tue, 19 Dec 2000 16:20:05 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 16:20:05 -0800 (PST) Resent-Message-Id: <200012200020.eBK0K5897920@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, roman@xpert.com Received: from mailgw1.netvision.net.il (mailgw1.netvision.net.il [194.90.1.14]) by hub.freebsd.org (Postfix) with ESMTP id 2C75D37B400 for ; Tue, 19 Dec 2000 16:17:09 -0800 (PST) Received: from alchemy.oven.org (ras2-p153.hfa.netvision.net.il [62.0.97.153]) by mailgw1.netvision.net.il (8.9.3/8.9.3) with ESMTP id CAA02586 for ; Wed, 20 Dec 2000 02:17:05 +0200 (IST) Received: (from mapc@localhost) by alchemy.oven.org (8.11.1/8.11.1) id eBK0HuQ08585; Wed, 20 Dec 2000 02:17:56 +0200 (IST) (envelope-from mapc) Message-Id: <200012200017.eBK0HuQ08585@alchemy.oven.org> Date: Wed, 20 Dec 2000 02:17:56 +0200 (IST) From: roman@xpert.com Sender: mapc@alchemy.oven.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23670: NEW PORT: sysutils/p5-Unix-Syslog Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23670 >Category: ports >Synopsis: sysutils/p5-Unix-Syslog >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 16:20:05 PST 2000 >Closed-Date: >Last-Modified: >Originator: Roman Shterenzon >Release: FreeBSD 4.2-RELEASE i386 >Organization: >Environment: >Description: This is a perl module for logging to the machine's syslogd. I need it for the upcoming amavis-perl antivirus for sendmail (and other MTAa) >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Unix-Syslog # p5-Unix-Syslog/Makefile # p5-Unix-Syslog/distinfo # p5-Unix-Syslog/pkg-plist # p5-Unix-Syslog/pkg-comment # p5-Unix-Syslog/pkg-descr # echo c - p5-Unix-Syslog mkdir -p p5-Unix-Syslog > /dev/null 2>&1 echo x - p5-Unix-Syslog/Makefile sed 's/^X//' >p5-Unix-Syslog/Makefile << 'END-of-p5-Unix-Syslog/Makefile' X# New ports collection makefile for: p5-Unix-Syslog X# Date created: Dec 20 2000 X# Whom: Roman Shterenzon X# X# $FreeBSD$ X# X XPORTNAME= Unix-Syslog XPORTVERSION= 0.94 XCATEGORIES= sysutils perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Unix XPKGNAMEPREFIX= p5- XDISTNAME= Syslog-${PORTVERSION} X XMAINTAINER= roman@xpert.com X XUSE_PERL5= YES X XMAN3= Unix::Syslog.3 XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} X Xdo-configure: X @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL X X.include END-of-p5-Unix-Syslog/Makefile echo x - p5-Unix-Syslog/distinfo sed 's/^X//' >p5-Unix-Syslog/distinfo << 'END-of-p5-Unix-Syslog/distinfo' XMD5 (Syslog-0.94.tar.gz) = 4575cf5482121d0ed626fa6ea73f1ffe END-of-p5-Unix-Syslog/distinfo echo x - p5-Unix-Syslog/pkg-plist sed 's/^X//' >p5-Unix-Syslog/pkg-plist << 'END-of-p5-Unix-Syslog/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Unix/Syslog.pm Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unix/Syslog/Syslog.so Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unix/Syslog/Syslog.bs Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unix/Syslog/autosplit.ix Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unix/Syslog/.packlist X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unix/Syslog X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Unix 2>/dev/null || true X@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Unix 2>/dev/null || true END-of-p5-Unix-Syslog/pkg-plist echo x - p5-Unix-Syslog/pkg-comment sed 's/^X//' >p5-Unix-Syslog/pkg-comment << 'END-of-p5-Unix-Syslog/pkg-comment' XPerl5 module which uses syslogd to log events END-of-p5-Unix-Syslog/pkg-comment echo x - p5-Unix-Syslog/pkg-descr sed 's/^X//' >p5-Unix-Syslog/pkg-descr << 'END-of-p5-Unix-Syslog/pkg-descr' XThis Module provides access to the system logger available on most XUNIX system via Perl's XSUBs (Perl's C interface). X XThis package uses system specific functions. Programs that uses this Xpackage may not be portable in any case. If you plan to write portable Xcode using this package, please consult the manuals of the systems you Xwish to run the software on. Then modify your program accordingly. X XThis module is better than Sys::Syslog in several things: X o LOG_PERROR works. X X o works with perl -Tw without warnings and problems due to X tainted data as it is the case for Sys::Syslog in some X special applications. [Especially when running a script X as root] X XHowever, Unix::Syslog only logs to your local syslog daemon which in Xturn may be configured to distribute the message over the network. X XRoman Shterenzon END-of-p5-Unix-Syslog/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 16:22:45 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 16:22:44 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from jamus.xpert.com (jamus.xpert.com [199.203.132.17]) by hub.freebsd.org (Postfix) with ESMTP id 20D2B37B400; Tue, 19 Dec 2000 16:22:42 -0800 (PST) Received: from roman (helo=localhost) by jamus.xpert.com with local-esmtp (Exim 3.12 #5) id 148X1q-0005MM-00; Wed, 20 Dec 2000 02:22:46 +0200 Date: Wed, 20 Dec 2000 02:22:46 +0200 (IST) From: Roman Shterenzon To: , Subject: Re: ports/23670: sysutils/p5-Unix-Syslog In-Reply-To: <200012200020.eBK0K5P97916@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Oh, I'm a complete idiot, I just noticed that someone already brought this into ports. My pkg-plist is better though :) Please close this PR. ..is it all, just wasted time ... (c)Skid Row On Tue, 19 Dec 2000 gnats-admin@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/23670'. > The individual assigned to look at your > report is: freebsd-ports. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=23670 > > >Category: ports > >Responsible: freebsd-ports > >Synopsis: sysutils/p5-Unix-Syslog > >Arrival-Date: Tue Dec 19 16:20:05 PST 2000 > --Roman Shterenzon, UNIX System Administrator and Consultant [ Xpert UNIX Systems Ltd., Herzlia, Israel. Tel: +972-9-9522361 ] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 16:23: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 16:23:06 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from smtp.gscyclone.com (server2.gscyclone.com [209.36.53.41]) by hub.freebsd.org (Postfix) with ESMTP id 0C59B37B400 for ; Tue, 19 Dec 2000 16:23:04 -0800 (PST) Received: (apparently) from dragon.gscyclone.com ([12.25.142.165]) by smtp.gscyclone.com with Microsoft SMTPSVC(5.5.1875.185.18); Tue, 19 Dec 2000 19:19:41 -0500 Message-Id: <5.0.2.1.2.20001219192202.00a231e0@pop.gscyclone.com> X-Sender: ancient@pop.gscyclone.com X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Tue, 19 Dec 2000 19:22:58 -0500 To: freebsd-ports@FreeBSD.org From: Storms of Perfection Subject: Webmin Port Update Request Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Anyone mind updating Webmin to 0.83 ? It's mostly bug fixes with bind8 (creating zone files with invalid characters) -G To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 16:30: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 16:30:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 247AC37B400 for ; Tue, 19 Dec 2000 16:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK0U3j99537; Tue, 19 Dec 2000 16:30:03 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Dec 2000 16:30:03 -0800 (PST) Message-Id: <200012200030.eBK0U3j99537@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Roman Shterenzon Subject: Re: ports/23670: sysutils/p5-Unix-Syslog Reply-To: Roman Shterenzon Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23670; it has been noted by GNATS. From: Roman Shterenzon To: , Cc: Subject: Re: ports/23670: sysutils/p5-Unix-Syslog Date: Wed, 20 Dec 2000 02:22:46 +0200 (IST) Oh, I'm a complete idiot, I just noticed that someone already brought this into ports. My pkg-plist is better though :) Please close this PR. ..is it all, just wasted time ... (c)Skid Row On Tue, 19 Dec 2000 gnats-admin@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/23670'. > The individual assigned to look at your > report is: freebsd-ports. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=23670 > > >Category: ports > >Responsible: freebsd-ports > >Synopsis: sysutils/p5-Unix-Syslog > >Arrival-Date: Tue Dec 19 16:20:05 PST 2000 > --Roman Shterenzon, UNIX System Administrator and Consultant [ Xpert UNIX Systems Ltd., Herzlia, Israel. Tel: +972-9-9522361 ] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 16:40: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 16:40:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5059137B698 for ; Tue, 19 Dec 2000 16:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK0e1X00820; Tue, 19 Dec 2000 16:40:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 16:40:01 -0800 (PST) Resent-Message-Id: <200012200040.eBK0e1X00820@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, rsimmons@spamcop.net Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BFEE537B400 for ; Tue, 19 Dec 2000 16:33:37 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK0XbX99927; Tue, 19 Dec 2000 16:33:37 -0800 (PST) (envelope-from nobody) Message-Id: <200012200033.eBK0XbX99927@freefall.freebsd.org> Date: Tue, 19 Dec 2000 16:33:37 -0800 (PST) From: rsimmons@spamcop.net Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23672: imap-uw/cclient/pine are broken in the ports collection Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23672 >Category: ports >Synopsis: imap-uw/cclient/pine are broken in the ports collection >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 16:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Rob Simmons >Release: 4.2-STABLE >Organization: >Environment: FreeBSD mail.wlcg.com 4.2-STABLE FreeBSD 4.2-STABLE #0: Mon Dec 18 17:31:07 EST 2000 rsimmons@mail.wlcg.com:/usr/obj/usr/src/sys/WASABI i386 >Description: cclient-4.8, imap-uw-4.8 and pine-4.31 have a couple of problems: First, the imap port seems to have been updated but the checksum has not. After running make it fails the checksum and asks me if I want to do a NO_CHECKSUM. :( Also, when the cclient installs, it does fine, but doing a pkg_delete -f it tried to delete the library from the old cclient, libc-client4.so.7, and it left the new cclient library, libc-client4.so.8 laying around my machine in /usr/local/lib. >How-To-Repeat: Install pine-4.21_1, cclient-4.7c, and imap-uw-4.7c. Then make sure the ports collection is up to date. make the new versions of these ports. When you make the imap one you will encounter the checksum problem. When you install the cclient then pkg_delete it you will run into the second problem. >Fix: Install the older versions of the ports by going into /stand/sysinstall and telling it that your machine is 4.1.1-RELEASE and grabbing the old versions of these ports and installing them. You could also go to the ftp site and grab the old ports from there. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 16:40:11 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 16:40:06 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8EF7F37B404 for ; Tue, 19 Dec 2000 16:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK0e1T00830; Tue, 19 Dec 2000 16:40:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 16:40:01 -0800 (PST) Resent-Message-Id: <200012200040.eBK0e1T00830@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 5EDF137B400 for ; Tue, 19 Dec 2000 16:39:34 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 0) id 00706177EC2; Tue, 19 Dec 2000 18:40:34 -0600 (CST) Message-Id: <20001220004034.00706177EC2@leviathan.inethouston.com> Date: Tue, 19 Dec 2000 18:40:34 -0600 (CST) From: dwcjr@inethouston.net Sender: root@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23673: Update sysutils/webmin update to version 0.83 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23673 >Category: ports >Synopsis: Update sysutils/webmin update to version 0.83 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 16:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Request for update, should just have to update version number since there isn't any compiling >How-To-Repeat: >Fix: diff -urN webmin.orig/Makefile webmin/Makefile --- webmin.orig/Makefile Tue Dec 19 18:34:44 2000 +++ webmin/Makefile Tue Dec 19 18:34:52 2000 @@ -6,7 +6,7 @@ # PORTNAME= webmin -PORTVERSION= 0.82 +PORTVERSION= 0.83 CATEGORIES= sysutils MASTER_SITES= http://www.webmin.com/webmin/download/ diff -urN webmin.orig/distinfo webmin/distinfo --- webmin.orig/distinfo Tue Dec 19 18:34:44 2000 +++ webmin/distinfo Tue Dec 19 18:35:50 2000 @@ -1 +1 @@ -MD5 (webmin-0.82.tar.gz) = 79917588893ac82aeb995192c93ea9c5 +MD5 (webmin-0.83.tar.gz) = 55f599d512cdf9a6212bf8c0b242f30e >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 16:40:15 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 16:40:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 245B637B402 for ; Tue, 19 Dec 2000 16:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK0e1C00811; Tue, 19 Dec 2000 16:40:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 16:40:01 -0800 (PST) Resent-Message-Id: <200012200040.eBK0e1C00811@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 719B637B400 for ; Tue, 19 Dec 2000 16:32:37 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 0) id 66120177EC2; Tue, 19 Dec 2000 18:33:37 -0600 (CST) Message-Id: <20001220003337.66120177EC2@leviathan.inethouston.com> Date: Tue, 19 Dec 2000 18:33:37 -0600 (CST) From: dwcjr@inethouston.net Sender: root@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23671: Update lang/gpc update Makefile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23671 >Category: ports >Synopsis: Update lang/gpc update Makefile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 16:40:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Makefile is missing man pages pkg-plist is missing files and directories >How-To-Repeat: >Fix: not sure if some of those directories are needed and should not be deleted, let me know if someone knows diff -urN gpc.orig/Makefile gpc/Makefile --- gpc.orig/Makefile Tue Dec 19 18:23:11 2000 +++ gpc/Makefile Tue Dec 19 18:24:35 2000 @@ -21,7 +21,7 @@ ALL_TARGET= bootstrap INSTALL_TARGET= pascal.install -MAN1= gpc.1 +MAN1= bpc.1 epc.1 gpc.1 pc.1 .include diff -urN gpc.orig/pkg-plist gpc/pkg-plist --- gpc.orig/pkg-plist Tue Dec 19 18:23:12 2000 +++ gpc/pkg-plist Tue Dec 19 18:30:40 2000 @@ -1,6 +1,10 @@ +bin/bpc +bin/epc bin/gpc +bin/pc lib/gcc-lib/%%GNUHOST%%/2.8.1/gpc-cpp lib/gcc-lib/%%GNUHOST%%/2.8.1/gpc1 +lib/gcc-lib/%%GNUHOST%%/2.8.1/libgcc.a lib/gcc-lib/%%GNUHOST%%/2.8.1/libgpc.a lib/gcc-lib/%%GNUHOST%%/2.8.1/units/crt.inc lib/gcc-lib/%%GNUHOST%%/2.8.1/units/crt.pas @@ -66,6 +70,10 @@ info/gpc.info-8 info/gpc.info-9 @dirrm lib/gcc-lib/%%GNUHOST%%/2.8.1/units +@dirrm lib/gcc-lib/%%GNUHOST%%/2.8.1/include/objc +@dirrm lib/gcc-lib/%%GNUHOST%%/2.8.1/include +@dirrm lib/gcc-lib/%%GNUHOST%%/2.8.1 +@dirrm lib-gcc-lib/%%GNUHOST%% @exec install-info %D/info/gpc.info %D/info/dir @exec install-info %D/info/gpc.info-1 %D/info/dir @exec install-info %D/info/gpc.info-10 %D/info/dir >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 16:50: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 16:50:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0668737B402 for ; Tue, 19 Dec 2000 16:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK0o1203070; Tue, 19 Dec 2000 16:50:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 16:50:01 -0800 (PST) Resent-Message-Id: <200012200050.eBK0o1203070@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, ancient@gscyclone.com Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 994BC37B404 for ; Tue, 19 Dec 2000 16:41:48 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK0fmE01039; Tue, 19 Dec 2000 16:41:48 -0800 (PST) (envelope-from nobody) Message-Id: <200012200041.eBK0fmE01039@freefall.freebsd.org> Date: Tue, 19 Dec 2000 16:41:48 -0800 (PST) From: ancient@gscyclone.com Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23674: Update Request: Webmin to 0.83 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23674 >Category: ports >Synopsis: Update Request: Webmin to 0.83 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 16:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Gary Stanley >Release: >Organization: >Environment: >Description: Newest version is 0.83. Changelog: Added System and Server Status module Added Perl Modules module Added support in the DHCPD module for option-nnn directives, DDNS, and hosts inside subnets Numerous bugfixes, particularly in the BIND DNS Server module >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 17: 0: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 17:00:05 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E7D6637B404 for ; Tue, 19 Dec 2000 17:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK104u06344; Tue, 19 Dec 2000 17:00:04 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Dec 2000 17:00:04 -0800 (PST) Message-Id: <200012200100.eBK104u06344@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "David W. Chapman Jr." Subject: Re: ports/23674: Update Request: Webmin to 0.83 Reply-To: "David W. Chapman Jr." Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23674; it has been noted by GNATS. From: "David W. Chapman Jr." To: , Cc: Subject: Re: ports/23674: Update Request: Webmin to 0.83 Date: Tue, 19 Dec 2000 18:53:46 -0600 Already addressed in pr 23674 with a patch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 17: 0: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 17:00:04 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A77FC37B402 for ; Tue, 19 Dec 2000 17:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK103Y06339; Tue, 19 Dec 2000 17:00:03 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Dec 2000 17:00:03 -0800 (PST) Message-Id: <200012200100.eBK103Y06339@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Scot W. Hetzel" Subject: Re: ports/23649: the port of mod_php4 does not install correctly with the apache/mod_ssl port Reply-To: "Scot W. Hetzel" Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23649; it has been noted by GNATS. From: "Scot W. Hetzel" To: , Cc: Subject: Re: ports/23649: the port of mod_php4 does not install correctly with the apache/mod_ssl port Date: Tue, 19 Dec 2000 18:50:29 -0600 From: > > After installing the port apache+mod_ssl-1.3.14+2.7.1_1 then installing the port mod_php-4.0.3pl1 the LoadModule directive in httpd.conf for loading the php module gets put inside the IfDefine SSL. I am not actually running SSL at the moment and putting this directive in this particular place makes it dependant on SSL. The AddModule directive is also in a similar IfDefine. > >How-To-Repeat: > Install apache+mod_ssl-1.3.14+2.7.1_1 then install mod_php-4.0.3pl1 then look in /usr/local/etc/apache/httpd.conf > >Fix: > Change the script that merges the php4_mod into the httpd.conf file so that it adds the module right after the last normal module and before the IfDefines. > This isn't an easy fix, when you have an AddModule.. as the last entry in the AddModule list. A better solution is to remove the from the AddModule/LoadModule lists and comment out the appropriate module line. Then change the remaining into . Then when you wish to turn a module on or off you use the apxs program or remove the "#" from the modules AddModule/LoadModule directive. Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 18:20:10 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 18:20:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E40E37B699 for ; Tue, 19 Dec 2000 18:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK2K2o19794; Tue, 19 Dec 2000 18:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 18:20:02 -0800 (PST) Resent-Message-Id: <200012200220.eBK2K2o19794@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 485EB37B699 for ; Tue, 19 Dec 2000 18:17:50 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 0) id 742BA177E3F; Tue, 19 Dec 2000 20:18:51 -0600 (CST) Message-Id: <20001220021851.742BA177E3F@leviathan.inethouston.com> Date: Tue, 19 Dec 2000 20:18:51 -0600 (CST) From: dwcjr@inethouston.net Sender: root@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23675: Update x11/kdebase2 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23675 >Category: ports >Synopsis: Update x11/kdebase2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 18:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: pkg-plist has files that aren't apparently in the tars according to bento >How-To-Repeat: >Fix: --- pkg-plist.orig Tue Dec 19 20:14:05 2000 +++ pkg-plist Tue Dec 19 20:15:06 2000 @@ -421,11 +421,6 @@ share/applnk/Utilities/klipper.desktop share/applnk/Utilities/kpager.desktop share/applnk/Utilities/passwd.desktop -share/applnk/Utilities/xclipboard.desktop -share/applnk/Utilities/xclock.desktop -share/applnk/Utilities/xconsole.desktop -share/applnk/Utilities/xmag.desktop -share/applnk/Utilities/xterm.desktop share/apps/clockapplet/pics/lcd.png share/apps/drkonqi/debuggers/gdbrc share/apps/drkonqi/pics/konqi.png @@ -1463,8 +1458,6 @@ share/fonts/9x15.pcf.gz share/fonts/console8x16.pcf.gz share/fonts/console8x8.pcf.gz -share/fonts/fonts.dir -share/fonts/override/fonts.dir share/icons/hicolor/22x22/actions/view_choose.png share/icons/hicolor/22x22/actions/view_detailed.png share/icons/hicolor/22x22/actions/view_icon.png >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 19:17:49 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 19:17:47 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id A61D437B400; Tue, 19 Dec 2000 19:17:46 -0800 (PST) Received: from localhost (trevor@localhost) by blues.jpj.net (8.11.1/8.10.0) with ESMTP id eBK3Heb29190; Tue, 19 Dec 2000 22:17:40 -0500 (EST) Date: Tue, 19 Dec 2000 22:17:40 -0500 (EST) From: Trevor Johnson To: Dan Moschuk Cc: , Subject: Re: Proposed bsd.port.mk patch In-Reply-To: <20001219135257.A16295@spirit.jaded.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dan Moschuk wrote: > > The following patch changes the test that checks for old port layouts. For > those of us that use cvs for ports and forget to supply the -P flag when > checking out, it will still let us build ports. > > You could also add somewhere a check to see if ${MASTERDIR}/files exists but > is empty, and print a note that -P should be used from now on when checking > out/updating. > > Index: bsd.port.mk > =================================================================== > RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v > retrieving revision 1.360 > diff -u -r1.360 bsd.port.mk > --- bsd.port.mk 2000/11/16 13:06:25 1.360 > +++ bsd.port.mk 2000/12/19 18:48:49 > @@ -620,9 +620,8 @@ > PACKAGES?= ${PORTSDIR}/packages > TEMPLATES?= ${PORTSDIR}/Templates > > -.if (!defined(PATCHDIR) && exists(${MASTERDIR}/patches)) || \ > - (!defined(PKGDIR) && exists(${MASTERDIR}/pkg)) || \ > - (!defined(MD5_FILE) && exists(${MASTERDIR}/files/md5)) > +.if (!defined(MD5_FILE) && exists(${MASTERDIR}/files/md5)) || \ > + (!defined(PATCHDIR) && !exists(${MASTERDIR}/pkg-plist)) Neither of these files (md5 nor pkg-plist) were required in the old layout. However, the pkg/DESCR file was required. I've submitted a patch to check for that (http://www.freebsd.org/cgi/query-pr.cgi?pr=21885) which has been rejected for unclear reasons. -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 19:28: 3 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 19:28:02 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id 9552837B400; Tue, 19 Dec 2000 19:28:01 -0800 (PST) Received: from localhost (trevor@localhost) by blues.jpj.net (8.11.1/8.10.0) with ESMTP id eBK3OEw29349; Tue, 19 Dec 2000 22:24:14 -0500 (EST) Date: Tue, 19 Dec 2000 22:24:13 -0500 (EST) From: Trevor Johnson To: Marcel Moolenaar Cc: Dan Moschuk , , Subject: Re: Proposed bsd.port.mk patch In-Reply-To: <3A3FB351.F42BE665@cup.hp.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Marcel Moolenaar wrote: > I don't think the test is bad; It's bad because: - it's inconsistent with the tests elsewhere which determine whether the old layout will actually be used. - it needlessly creates a FAQ. > it tells you to use -P Not explicitly, it doesn't. Doing so would be a good idea. > or to cleanup the mess you made :-) "Trevor, clean up your mess!" would make a nice motd. :) -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 19:49:54 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 19:49:52 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from spirit.jaded.net (d226-59-226.home.cgocable.net [24.226.59.226]) by hub.freebsd.org (Postfix) with ESMTP id CA29337B400; Tue, 19 Dec 2000 19:49:51 -0800 (PST) Received: (from dan@localhost) by spirit.jaded.net (8.11.1/8.11.1) id eBK3iIg60354; Tue, 19 Dec 2000 22:44:19 -0500 (EST) (envelope-from dan) Date: Tue, 19 Dec 2000 22:44:17 -0500 From: Dan Moschuk To: Trevor Johnson Cc: Marcel Moolenaar , asami@FreeBSD.org, ports@FreeBSD.org Subject: Re: Proposed bsd.port.mk patch Message-ID: <20001219224416.A58234@spirit.jaded.net> References: <3A3FB351.F42BE665@cup.hp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from trevor@jpj.net on Tue, Dec 19, 2000 at 10:24:13PM -0500 Sender: dan@spirit.jaded.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org | It's bad because: | | - it's inconsistent with the tests elsewhere which determine whether the | old layout will actually be used. Hence the reason for the patch in the first place. The old tests were ineffectual in the case that -P was forgotten. | > it tells you to use -P | | Not explicitly, it doesn't. Doing so would be a good idea. Yes, before I commit it I will add a quick message. Something to the effect of: .if (exists(${MASTERDIR}/pkg) && !exists(${MASTERDIR}/pkg/DESCR)) echo "Stale directories from the old ports layout still exist!" echo "You will need to add -P to each checkout/update" -Dan -- Man is a rational animal who always loses his temper when he is called upon to act in accordance with the dictates of reason. -- Oscar Wilde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 21:13:49 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 21:13:43 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from spirit.jaded.net (d226-59-226.home.cgocable.net [24.226.59.226]) by hub.freebsd.org (Postfix) with ESMTP id 445A337B400; Tue, 19 Dec 2000 21:13:43 -0800 (PST) Received: (from dan@localhost) by spirit.jaded.net (8.11.1/8.11.1) id eBK5DcE94366; Wed, 20 Dec 2000 00:13:38 -0500 (EST) (envelope-from dan) Date: Wed, 20 Dec 2000 00:13:38 -0500 From: Dan Moschuk To: developers@freebsd.org Cc: ports@freebsd.org, asami@freebsd.org Subject: New bsd.port.mk patch Message-ID: <20001220001338.A85396@spirit.jaded.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: dan@spirit.jaded.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've added Trevor Johnson's suggestions and added a nice informative message when the -P option was omitted. If no one has any problems with this, and if asami-san gives me the OK, I'd like to commit this in the next few days (with -STABLE following a few days afterwards). Index: bsd.port.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.360 diff -u -r1.360 bsd.port.mk --- bsd.port.mk 2000/11/16 13:06:25 1.360 +++ bsd.port.mk 2000/12/20 05:08:05 @@ -620,12 +620,21 @@ PACKAGES?= ${PORTSDIR}/packages TEMPLATES?= ${PORTSDIR}/Templates -.if (!defined(PATCHDIR) && exists(${MASTERDIR}/patches)) || \ - (!defined(PKGDIR) && exists(${MASTERDIR}/pkg)) || \ - (!defined(MD5_FILE) && exists(${MASTERDIR}/files/md5)) +.if (!defined(PKGDIR) && exists(${MASTERDIR}/pkg/DESCR)) || \ + (defined(PKGDIR) && exists(${PKGDIR}/DESCR)) pre-everything:: @${ECHO} "Error: your port uses an old layout. Please update it to match this bsd.port.mk." @${FALSE} +.endif +.if (!defined(PKGDIR) && exists(${MASTERDIR}/pkg) && \ + !exists(${MASTERDIR}/pkg/DESCR)) || \ + (defined(PKGDIR) && exists(${PKGDIR}) && !exists(${PKGDIR}/DESCR)) +pre-everything:: + @${ECHO} + @${ECHO} ">> This port contains stale directories from the old port layout! " + @${ECHO} ">> If you use cvs to update your ports collection, please make sure you update " + @${ECHO} ">> using the -P option from now on!" + @${ECHO} .endif PATCHDIR?= ${MASTERDIR}/files FILESDIR?= ${MASTERDIR}/files -Dan -- Man is a rational animal who always loses his temper when he is called upon to act in accordance with the dictates of reason. -- Oscar Wilde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 21:20:10 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 21:20:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B4BB937B402 for ; Tue, 19 Dec 2000 21:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK5K1K48980; Tue, 19 Dec 2000 21:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 19 Dec 2000 21:20:01 -0800 (PST) Resent-Message-Id: <200012200520.eBK5K1K48980@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id DC51437B400 for ; Tue, 19 Dec 2000 21:16:41 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 1001) id 3F29A177E3F; Tue, 19 Dec 2000 23:17:44 -0600 (CST) Message-Id: <20001220051744.3F29A177E3F@leviathan.inethouston.com> Date: Tue, 19 Dec 2000 23:17:44 -0600 (CST) From: dwcjr@inethouston.net Sender: poseiden@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23680: Update mail/cyrus update for portlint compliance Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23680 >Category: ports >Synopsis: Update mail/cyrus update for portlint compliance >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 19 21:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Erase extra blank lines in patches Change /usr/local in Makefile to ${PREFIX} USE ${CP}, ${MKDIR}, ${CHOWN} and ${CHMOD} Move Depends closer to top of Makefile Add man pages to Makefile >How-To-Repeat: >Fix: diff -urN cyrus.orig/Makefile cyrus/Makefile --- cyrus.orig/Makefile Tue Dec 19 23:01:43 2000 +++ cyrus/Makefile Tue Dec 19 23:11:36 2000 @@ -16,25 +16,25 @@ MAINTAINER= stb@FreeBSD.org -Y2K= http://asg.web.cmu.edu/cyrus/imapd/y2k.html - LIB_DEPENDS= tcl82.1:${PORTSDIR}/lang/tcl82 BUILD_DEPENDS= makedepend:${PORTSDIR}/devel/makedepend \ ${LOCALBASE}/sbin/pwcheck:${PORTSDIR}/security/cyrus-sasl +Y2K= http://asg.web.cmu.edu/cyrus/imapd/y2k.html + GNU_CONFIGURE= YES CONFIGURE_ARGS= --with-cyrus-prefix=${PREFIX}/cyrus \ --with-cyrus-group=cyrus \ - --with-sasldir=/usr/local \ + --with-sasldir=${PREFIX} \ --with-tclsh=${PREFIX}/bin/tclsh8.2 \ --with-auth=unix \ --with-com-err -MAN1= cyradm.1 +MAN1= cyradm.1 imtest.1 installsieve.1 MAN3= imclient.3 MAN5= imapd.conf.5 -MAN8= arbitron.8 collectnews.8 cyrquota.8 deliver.8 imapd.8 \ - pop3d.8 reconstruct.8 rmnews.8 syncnews.8 +MAN8= arbitron.8 collectnews.8 cyrquota.8 deliver.8 fud.8 imapd.8 \ + mbpath.8 pop3d.8 reconstruct.8 rmnews.8 syncnews.8 timsieved.8 post-configure: @ ${SETENV} ${MAKE_ENV} perl -pi -e 's|%%PREFIX%%|${PREFIX}|' ${WRKSRC}/imap/config.c ${WRKSRC}/imap/krbck .c @@ -79,22 +79,22 @@ ${INSTALL} -d -m 700 -o cyrus -g cyrus /var/pwcheck ${TOUCH} ${PREFIX}/etc/imap/mailboxes ${CHMOD} 640 ${PREFIX}/etc/imap/mailboxes - chown cyrus:cyrus ${PREFIX}/etc/imap/mailboxes - @${ECHO} "@exec mkdir %D/etc/imap" >>${TMPPLIST} + ${CHOWN} cyrus:cyrus ${PREFIX}/etc/imap/mailboxes + @${ECHO} "@exec ${MKDIR} %D/etc/imap" >>${TMPPLIST} .for dir in user quota proc log msg - @${ECHO} "@exec mkdir %D/etc/imap/${dir}" >>${TMPPLIST} + @${ECHO} "@exec ${MKDIR} %D/etc/imap/${dir}" >>${TMPPLIST} @${ECHO} "@dirrm etc/imap/${dir}" >>${TMPPLIST} .endfor - @${ECHO} "@exec cp /dev/null %D/etc/imap/mailboxes" >>${TMPPLIST} - @${ECHO} "@exec chown -R cyrus:cyrus %D/etc/imap" >>${TMPPLIST} - @${ECHO} "@exec chmod -R g-w,o= %D/etc/imap" >>${TMPPLIST} + @${ECHO} "@exec ${CP} /dev/null %D/etc/imap/mailboxes" >>${TMPPLIST} + @${ECHO} "@exec ${CHOWN} -R cyrus:cyrus %D/etc/imap" >>${TMPPLIST} + @${ECHO} "@exec ${CHMOD} -R g-w,o= %D/etc/imap" >>${TMPPLIST} @${ECHO} "@mode u=rwx,go=" >>${TMPPLIST} - @${ECHO} "@exec mkdir /var/pwcheck" >>${TMPPLIST} - @${ECHO} "@exec chown cyrus:cyrus /var/pwcheck" >>${TMPPLIST} - @${ECHO} "@exec chmod go= /var/pwcheck" >>${TMPPLIST} - @${ECHO} "@exec mkdir /var/spool/imap" >>${TMPPLIST} - @${ECHO} "@exec chown cyrus:cyrus /var/spool/imap" >>${TMPPLIST} - @${ECHO} "@exec chmod g-w,o= /var/spool/imap" >>${TMPPLIST} + @${ECHO} "@exec ${MKDIR} /var/pwcheck" >>${TMPPLIST} + @${ECHO} "@exec ${CHOWN} cyrus:cyrus /var/pwcheck" >>${TMPPLIST} + @${ECHO} "@exec ${CHMOD} go= /var/pwcheck" >>${TMPPLIST} + @${ECHO} "@exec ${MKDIR} /var/spool/imap" >>${TMPPLIST} + @${ECHO} "@exec ${CHOWN} cyrus:cyrus /var/spool/imap" >>${TMPPLIST} + @${ECHO} "@exec ${CHMOD} g-w,o= /var/spool/imap" >>${TMPPLIST} + @${ECHO} "@exec ${CHMOD} g-w,o= /var/spool/imap" >>${TMPPLIST} @${ECHO} "@cwd /var" >>${TMPPLIST} @${ECHO} "@dirrm pwcheck" >>${TMPPLIST} @${ECHO} "@dirrm spool/imap" >>${TMPPLIST} diff -urN cyrus.orig/files/patch-aa cyrus/files/patch-aa --- cyrus.orig/files/patch-aa Tue Dec 19 23:01:42 2000 +++ cyrus/files/patch-aa Tue Dec 19 23:02:45 2000 @@ -7,6 +7,4 @@ - $(srcdir)/fud.8 $(srcdir)/imapd.8 $(srcdir)/pop3d.8 $(srcdir)/quota.8 \ + $(srcdir)/fud.8 $(srcdir)/imapd.8 $(srcdir)/pop3d.8 $(srcdir)/cyrquota.8 \ $(srcdir)/reconstruct.8 $(srcdir)/rmnews.8 $(srcdir)/syncnews.8 \ - $(srcdir)/mbpath.8 $(srcdir)/timsieved.8 - - + $(srcdir)/mbpath.8 $(srcdir)/timsieved.8 diff -urN cyrus.orig/files/patch-ac cyrus/files/patch-ac --- cyrus.orig/files/patch-ac Tue Dec 19 23:01:42 2000 +++ cyrus/files/patch-ac Tue Dec 19 23:02:21 2000 @@ -7,5 +7,4 @@ - SASLFLAGS="-I$sasldir/include" + SASLFLAGS="-I$sasldir/include/sasl" - fi - + fi diff -urN cyrus.orig/files/patch-bh cyrus/files/patch-bh --- cyrus.orig/files/patch-bh Tue Dec 19 23:01:42 2000 +++ cyrus/files/patch-bh Tue Dec 19 23:02:13 2000 @@ -7,5 +7,4 @@ -CPPFLAGS = -I. -I$(srcdir) -I$(srcdir)/../sieve -I$(srcdir)/../lib @COM_ERR_CPPFLAGS@ @CPPFLAGS@ +CPPFLAGS = -I. -I$(srcdir) -I$(srcdir)/../sieve -I$(srcdir)/../lib @COM_ERR_CPPFLAGS@ @CPPFLAGS@ @SASLFLAGS@ CFLAGS = @CFLAGS@ - LDFLAGS = @LDFLAGS@ - + LDFLAGS = @LDFLAGS@ diff -urN cyrus.orig/files/patch-bi cyrus/files/patch-bi --- cyrus.orig/files/patch-bi Tue Dec 19 23:01:42 2000 +++ cyrus/files/patch-bi Tue Dec 19 23:01:57 2000 @@ -7,5 +7,4 @@ -CPPFLAGS = -I. -I$(srcdir) -I$(srcdir)/../lib @CPPFLAGS@ +CPPFLAGS = -I. -I$(srcdir) -I$(srcdir)/../lib @CPPFLAGS@ @SASLFLAGS@ CFLAGS = @CFLAGS@ - LDFLAGS = @LDFLAGS@ - + LDFLAGS = @LDFLAGS@ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 22: 0: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 22:00:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 400AE37B402 for ; Tue, 19 Dec 2000 22:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK603A56033; Tue, 19 Dec 2000 22:00:03 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Dec 2000 22:00:03 -0800 (PST) Message-Id: <200012200600.eBK603A56033@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "David W. Chapman Jr." Subject: Re: ports/23671: Update lang/gpc update Makefile Reply-To: "David W. Chapman Jr." Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23671; it has been noted by GNATS. From: "David W. Chapman Jr." To: Cc: Subject: Re: ports/23671: Update lang/gpc update Makefile Date: Tue, 19 Dec 2000 23:54:34 -0600 Just realized that the new man pages are just links so instead of adding them MLINKS should be used, but I'm not entirely sure how to use it as the example only has one man linked to another and all of them are linked to the main man page. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 23:10: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 23:10:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F110137B402 for ; Tue, 19 Dec 2000 23:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK7A2H72004; Tue, 19 Dec 2000 23:10:02 -0800 (PST) (envelope-from gnats) Date: Tue, 19 Dec 2000 23:10:02 -0800 (PST) Message-Id: <200012200710.eBK7A2H72004@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Matthew Emmerton" Subject: Re: ports/23601: Update www/hypermail Reply-To: "Matthew Emmerton" Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23601; it has been noted by GNATS. From: "Matthew Emmerton" To: , Cc: Subject: Re: ports/23601: Update www/hypermail Date: Wed, 20 Dec 2000 02:01:03 -0500 Here's a new patch which does the following: 1) updates to 2b30 (as per original) 2) installs to share/hypermail instead of apache/htdocs and tweaks configure arguments --- hypermail/Makefile.orig Sun Apr 9 20:05:26 2000 +++ hypermail/Makefile Wed Dec 20 01:46:38 2000 @@ -6,14 +6,16 @@ # PORTNAME= hypermail -PORTVERSION= 2b28 +PORTVERSION= 2b30 CATEGORIES= www -MASTER_SITES= ftp://ftp.landfield.com/hypermail/ \ - ftp://ftp.faqs.org/hypermail/ +MASTER_SITES= ftp://ftp.landfield.com/hypermail/%SUBDIR%/ \ + ftp://ftp.faqs.org/hypermail/%SUBDIR%/ +MASTER_SITE_SUBDIR= . development MAINTAINER= veers@disturbed.net -HAS_CONFIGURE= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --with-htmldir=${PREFIX}/share/hypermail MAN1= hypermail.1 MAN4= hmrc.4 --- hypermail/distinfo.orig Wed Dec 20 01:38:05 2000 +++ hypermail/distinfo Wed Dec 20 01:36:24 2000 @@ -1 +1 @@ -MD5 (hypermail-2b28.tar.gz) = 1ec78d8b6ea22dd4b2486b10424482c4 +MD5 (hypermail-2b30.tar.gz) = 5baf7d89bd3bd80ca7e0dff5a6ed98f9 --- hypermail/files/patch-ac.orig Wed Dec 20 01:38:42 2000 +++ hypermail/files/patch-ac Wed Dec 20 01:39:15 2000 @@ -8,4 +8,3 @@ +CFLAGS?=@CFLAGS@ $(WARNINGS) LIBS=@LIBS@ LDFLAGS=@LDFLAGS@ - --- hypermail/files/patch-ae.orig Wed Dec 20 01:39:21 2000 +++ hypermail/files/patch-ae Wed Dec 20 01:39:40 2000 @@ -17,4 +17,3 @@ +install: @if [ ! -d $(bindir) ]; then mkdir -p $(bindir); fi $(INSTALL_PROG) -s -c -m 0755 hypermail$(SUFFIX) $(bindir) - --- hypermail/pkg-plist.orig Wed Dec 20 01:40:40 2000 +++ hypermail/pkg-plist Wed Dec 20 01:40:20 2000 @@ -1,7 +1,7 @@ bin/hypermail -apache/htdocs/hypermail/hr.yellow.gif -apache/htdocs/hypermail/hypermail.gif -apache/htdocs/hypermail/hypermail.html -apache/htdocs/hypermail/customizing.html -apache/htdocs/hypermail/hmrc.html -@dirrm apache/htdocs/hypermail +share/hypermail/hr.yellow.gif +share/hypermail/hypermail.gif +share/hypermail/hypermail.html +share/hypermail/customizing.html +share/hypermail/hmrc.html +@dirrm share/hypermail -- Matt Emmerton To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 23:39:12 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 23:39:10 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from smtp.gwi.net (smtp.gwi.net [207.5.128.11]) by hub.freebsd.org (Postfix) with ESMTP id D86F337B400 for ; Tue, 19 Dec 2000 23:39:09 -0800 (PST) Received: from adam (150-110.suscom-maine.net [207.5.150.110]) by smtp.gwi.net (8.10.1/8.10.1) with SMTP id eBK7d8J16798 for ; Wed, 20 Dec 2000 02:39:09 -0500 (EST) From: "Adam Herzog" To: Subject: p5-Apache-1.24 Date: Wed, 20 Dec 2000 02:39:06 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm having a problem loading DBI under mod_perl; I think it's related to the mod_perl port, but I'm not entirely sure. I'm using 3.5S (as of a couple days ago), apache-1.3.14, p5-Apache-1.24, and p5-DBI-1.14. When I try to use 'PerlModule DBI' in my httpd conf, apachectl config test returns the following: [root@jupiter ~]$ apachectl configtest Syntax error on line 1117 of /usr/local/etc/apache/httpd.conf: Can't load '/usr/local/lib/perl5/site_perl/5.005/i386-freebsd/auto/DBI/DBI.so' for module DBI: /usr/local/lib/perl5/site_perl/5.005/i386-freebsd/auto/DBI/DBI.so: Undefined symbol "PL_dowarn" at /usr/libdata/perl/5.00503/DynaLoader.pm line 169. at /usr/local/lib/perl5/site_perl/5.005/i386-freebsd/DBI.pm line 182 BEGIN failed--compilation aborted at /usr/local/lib/perl5/site_perl/5.005/i386-freebsd/DBI.pm line 182. From what I've been able to read, it appears that there is a version conflict between the modules and perl. I just can't seem to pinpoint it. Anyone have any ideas? TIA -Adam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 23:43:30 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 23:43:27 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.189]) by hub.freebsd.org (Postfix) with SMTP id 6E40D37B400 for ; Tue, 19 Dec 2000 23:43:19 -0800 (PST) Received: (qmail 2053 invoked by uid 1000); 20 Dec 2000 07:41:57 -0000 Date: Wed, 20 Dec 2000 09:41:57 +0200 From: Peter Pentchev To: Alfred Perlstein Cc: asami@FreeBSD.org, ports@FreeBSD.org Subject: Re: ports lockfile? Message-ID: <20001220094157.C644@ringworld.oblivion.bg> Mail-Followup-To: Alfred Perlstein , asami@FreeBSD.org, ports@FreeBSD.org References: <20001219113535.Q19572@fw.wintelcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001219113535.Q19572@fw.wintelcom.net>; from bright@wintelcom.net on Tue, Dec 19, 2000 at 11:35:35AM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Dec 19, 2000 at 11:35:35AM -0800, Alfred Perlstein wrote: > I'm pretty sure I've mentioned this before, I got a lot of approval > for the idea, but I don't have the time and familiarity with the > ports mk files to do what I propose. > > Usually when doing an install I'll start building several ports in > at the same time The problem is that frequently the ports will > recurse into the same dependancy, and the two builds will clobber > each other. FWIW, yes, I verily support this idea :) > I tried to figure out some way for the ports to use the 'lockf' > utility on the port makefile in order to protect it, but I can't > seem to figure out how and where to use lockf. > > We'd need some pre-pre-pre make step to do this I imagine, anyone > want to try to do this? Is it a good idea? There seems to already be a pre-everything target, which is invoked for old port layouts and for bad utilities version; there also is a default pre-everything target, with nothing but a DO_NADA there. This would seem like a good place for acquiring the lock. G'luck, Peter -- I am the meaning of this sentence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 23:51: 3 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 23:51:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA3EB37B400; Tue, 19 Dec 2000 23:51:01 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK7p1R77111; Tue, 19 Dec 2000 23:51:01 -0800 (PST) (envelope-from roam) Date: Tue, 19 Dec 2000 23:51:01 -0800 (PST) From: Message-Id: <200012200751.eBK7p1R77111@freefall.freebsd.org> To: roman@xpert.com, roam@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23670: sysutils/p5-Unix-Syslog Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: sysutils/p5-Unix-Syslog State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Tue Dec 19 23:50:31 PST 2000 State-Changed-Why: Closed at originator's request - already committed. Thanks for your time though :) http://www.freebsd.org/cgi/query-pr.cgi?pr=23670 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 23:52:52 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 23:52:51 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 31B1F37B400; Tue, 19 Dec 2000 23:52:51 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK7qor77535; Tue, 19 Dec 2000 23:52:50 -0800 (PST) (envelope-from roam) Date: Tue, 19 Dec 2000 23:52:50 -0800 (PST) From: Message-Id: <200012200752.eBK7qor77535@freefall.freebsd.org> To: ancient@gscyclone.com, roam@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23674: Update Request: Webmin to 0.83 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update Request: Webmin to 0.83 State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Tue Dec 19 23:52:30 PST 2000 State-Changed-Why: Already addressed in ports/23673 with a patch. http://www.freebsd.org/cgi/query-pr.cgi?pr=23674 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Dec 19 23:57:53 2000 From owner-freebsd-ports@FreeBSD.ORG Tue Dec 19 23:57:51 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 46C7A37B400; Tue, 19 Dec 2000 23:57:51 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eBK7voj10563; Tue, 19 Dec 2000 23:57:50 -0800 (PST) Date: Tue, 19 Dec 2000 23:57:50 -0800 From: Alfred Perlstein To: asami@FreeBSD.org, ports@FreeBSD.org Subject: Re: ports lockfile? Message-ID: <20001219235750.I19572@fw.wintelcom.net> References: <20001219113535.Q19572@fw.wintelcom.net> <20001220094157.C644@ringworld.oblivion.bg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001220094157.C644@ringworld.oblivion.bg>; from roam@orbitel.bg on Wed, Dec 20, 2000 at 09:41:57AM +0200 Sender: bright@fw.wintelcom.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Peter Pentchev [001219 23:43] wrote: > On Tue, Dec 19, 2000 at 11:35:35AM -0800, Alfred Perlstein wrote: > > I'm pretty sure I've mentioned this before, I got a lot of approval > > for the idea, but I don't have the time and familiarity with the > > ports mk files to do what I propose. > > > > Usually when doing an install I'll start building several ports in > > at the same time The problem is that frequently the ports will > > recurse into the same dependancy, and the two builds will clobber > > each other. > > FWIW, yes, I verily support this idea :) > > > I tried to figure out some way for the ports to use the 'lockf' > > utility on the port makefile in order to protect it, but I can't > > seem to figure out how and where to use lockf. > > > > We'd need some pre-pre-pre make step to do this I imagine, anyone > > want to try to do this? Is it a good idea? > > There seems to already be a pre-everything target, which is invoked > for old port layouts and for bad utilities version; there also is > a default pre-everything target, with nothing but a DO_NADA there. > This would seem like a good place for acquiring the lock. Well here's the very tricky part that I really haven't worked out how to do this, the lockf program runs a program with the lock, so I need to make the lockf program run make again. If I define something when re-running the make then any recursive makes will have this defined right? So I won't be able to lock the dependancy makes. It'd be interesting to add an option to make so that it will lock the initial makefile used. That sounds pretty hackish so any alternative ideas would be welcome and helpful. thanks, -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 0:23: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 00:23:06 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5140437B402; Wed, 20 Dec 2000 00:23:06 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK8N6i83052; Wed, 20 Dec 2000 00:23:06 -0800 (PST) (envelope-from roam) Date: Wed, 20 Dec 2000 00:23:06 -0800 (PST) From: Message-Id: <200012200823.eBK8N6i83052@freefall.freebsd.org> To: roam@FreeBSD.org, freebsd-ports@FreeBSD.org, jedgar@FreeBSD.org Subject: Re: ports/23650: [PORT - UPDATE] graphics/pngcrush 1.5.1 -> 1.5.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PORT - UPDATE] graphics/pngcrush 1.5.1 -> 1.5.3 Responsible-Changed-From-To: freebsd-ports->jedgar Responsible-Changed-By: roam Responsible-Changed-When: Wed Dec 20 00:22:44 PST 2000 Responsible-Changed-Why: Over to maintainer; the patch works fine for me. http://www.freebsd.org/cgi/query-pr.cgi?pr=23650 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 1:10: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 01:10:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C64537B404 for ; Wed, 20 Dec 2000 01:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBK9A2l91141; Wed, 20 Dec 2000 01:10:02 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 20 Dec 2000 01:10:02 -0800 (PST) Resent-Message-Id: <200012200910.eBK9A2l91141@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, kappa@zombie.antar.bryansk.ru Received: from zombie.antar.bryansk.ru (zombie.antar.bryansk.ru [195.239.214.68]) by hub.freebsd.org (Postfix) with ESMTP id 5984F37B400 for ; Wed, 20 Dec 2000 01:08:07 -0800 (PST) Received: (from kappa@localhost) by zombie.antar.bryansk.ru (8.11.1/8.11.1) id eBK989t14304; Wed, 20 Dec 2000 12:08:09 +0300 (MSK) (envelope-from kappa) Message-Id: <200012200908.eBK989t14304@zombie.antar.bryansk.ru> Date: Wed, 20 Dec 2000 12:08:09 +0300 (MSK) From: Alex Kapranoff Reply-To: kappa@zombie.antar.bryansk.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23682: [port update] Update devel/p5-Date-Manip to 5.39 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23682 >Category: ports >Synopsis: [port update] Update devel/p5-Date-Manip to 5.39 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 20 01:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Alex Kapranoff >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: Update Date::Manip and also claim maintainership. >How-To-Repeat: >Fix: diff -ru /usr/ports/devel/p5-Date-Manip/Makefile ./Makefile --- /usr/ports/devel/p5-Date-Manip/Makefile Wed Oct 25 10:34:45 2000 +++ ./Makefile Wed Dec 20 11:47:31 2000 @@ -6,14 +6,14 @@ # PORTNAME= Date-Manip -PORTVERSION= 5.38 +PORTVERSION= 5.39 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Date PKGNAMEPREFIX= p5- DISTNAME= DateManip-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= kapr@crosswinds.net USE_PERL5= YES diff -ru /usr/ports/devel/p5-Date-Manip/distinfo ./distinfo --- /usr/ports/devel/p5-Date-Manip/distinfo Sat Jul 22 14:44:46 2000 +++ ./distinfo Wed Dec 20 11:47:50 2000 @@ -1 +1 @@ -MD5 (DateManip-5.38.tar.gz) = 3197bc4eef4cc33aa43dd2ba96e27c66 +MD5 (DateManip-5.39.tar.gz) = b1839b58c6913937f57a4d8571de0190 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 1:16:23 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 01:16:20 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 8677737B400; Wed, 20 Dec 2000 01:16:16 -0800 (PST) Received: from dragon.nuxi.com (Ipittythefoolthattrustsident@trang.nuxi.com [209.152.133.57]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id BAA12278; Wed, 20 Dec 2000 01:16:15 -0800 (PST) (envelope-from obrien@NUXI.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.1/8.11.1) id eBK9GDM42461; Wed, 20 Dec 2000 01:16:13 -0800 (PST) (envelope-from obrien) Date: Wed, 20 Dec 2000 01:16:13 -0800 From: "David O'Brien" To: Dan Moschuk Cc: developers@freebsd.org, ports@freebsd.org Subject: Re: New bsd.port.mk patch Message-ID: <20001220011613.A42430@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <20001220001338.A85396@spirit.jaded.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001220001338.A85396@spirit.jaded.net>; from dan@freebsd.org on Wed, Dec 20, 2000 at 12:13:38AM -0500 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: obrien@NUXI.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Dec 20, 2000 at 12:13:38AM -0500, Dan Moschuk wrote: > like to commit this in the next few days (with -STABLE following a few > days afterwards). There are no branches in /usr/ports. Thus a single commit gets both -current and -stable. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 2:10:53 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 02:10:51 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8361937B400; Wed, 20 Dec 2000 02:10:51 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKAAl600579; Wed, 20 Dec 2000 02:10:47 -0800 (PST) (envelope-from roam) Date: Wed, 20 Dec 2000 02:10:47 -0800 (PST) From: Message-Id: <200012201010.eBKAAl600579@freefall.freebsd.org> To: kappa@zombie.antar.bryansk.ru, roam@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23682: [port update] Update devel/p5-Date-Manip to 5.39 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [port update] Update devel/p5-Date-Manip to 5.39 State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Wed Dec 20 02:10:12 PST 2000 State-Changed-Why: Committed, submitter is now maintainer. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23682 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 2:17:49 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 02:17:47 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.189]) by hub.freebsd.org (Postfix) with SMTP id BADC737B404 for ; Wed, 20 Dec 2000 02:17:40 -0800 (PST) Received: (qmail 5105 invoked by uid 1000); 20 Dec 2000 10:16:41 -0000 Date: Wed, 20 Dec 2000 12:16:41 +0200 From: Peter Pentchev To: Alfred Perlstein Cc: asami@FreeBSD.org, ports@FreeBSD.org Subject: Re: ports lockfile? Message-ID: <20001220121640.E644@ringworld.oblivion.bg> Mail-Followup-To: Alfred Perlstein , asami@FreeBSD.org, ports@FreeBSD.org References: <20001219113535.Q19572@fw.wintelcom.net> <20001220094157.C644@ringworld.oblivion.bg> <20001219235750.I19572@fw.wintelcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001219235750.I19572@fw.wintelcom.net>; from bright@wintelcom.net on Tue, Dec 19, 2000 at 11:57:50PM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Dec 19, 2000 at 11:57:50PM -0800, Alfred Perlstein wrote: > * Peter Pentchev [001219 23:43] wrote: > > On Tue, Dec 19, 2000 at 11:35:35AM -0800, Alfred Perlstein wrote: > > > I'm pretty sure I've mentioned this before, I got a lot of approval > > > for the idea, but I don't have the time and familiarity with the > > > ports mk files to do what I propose. > > > > > > Usually when doing an install I'll start building several ports in > > > at the same time The problem is that frequently the ports will > > > recurse into the same dependancy, and the two builds will clobber > > > each other. > > > > FWIW, yes, I verily support this idea :) > > > > > I tried to figure out some way for the ports to use the 'lockf' > > > utility on the port makefile in order to protect it, but I can't > > > seem to figure out how and where to use lockf. > > > > > > We'd need some pre-pre-pre make step to do this I imagine, anyone > > > want to try to do this? Is it a good idea? > > > > There seems to already be a pre-everything target, which is invoked > > for old port layouts and for bad utilities version; there also is > > a default pre-everything target, with nothing but a DO_NADA there. > > This would seem like a good place for acquiring the lock. > > Well here's the very tricky part that I really haven't worked out > how to do this, the lockf program runs a program with the lock, so > I need to make the lockf program run make again. > > If I define something when re-running the make then any recursive > makes will have this defined right? So I won't be able to lock > the dependancy makes. > > It'd be interesting to add an option to make so that it will lock > the initial makefile used. That sounds pretty hackish so any > alternative ideas would be welcome and helpful. I'm thinking along the lines of having a LOCKDIRS variable, listing all locked dirs from all ports in the build process, then having bsd.port.mk check for it *outside any targets*, if that is possible. (most probably not.. just thinking out loud, please ignore the static ;) If it is not defined, bsd.port.mk should do something like lockf Makefile make ${MAKEFLAGS} LOCKDIRS="${LOCKDIRS} ${.CURDIR}" I hope what I've written is at least vaguely understandable; fact is, I myself am not very clear on what I mean :) Got no time to play around with this right now, unfortunately :( Just tossing out a wild idea.. G'luck, Peter -- If I were you, who would be reading this sentence? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 2:34:28 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 02:34:25 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.189]) by hub.freebsd.org (Postfix) with SMTP id A59B337B400 for ; Wed, 20 Dec 2000 02:34:22 -0800 (PST) Received: (qmail 5259 invoked by uid 1000); 20 Dec 2000 10:33:27 -0000 Date: Wed, 20 Dec 2000 12:33:26 +0200 From: Peter Pentchev To: Alfred Perlstein Cc: asami@FreeBSD.org, ports@FreeBSD.org Subject: Re: ports lockfile? Message-ID: <20001220123326.F644@ringworld.oblivion.bg> Mail-Followup-To: Alfred Perlstein , asami@FreeBSD.org, ports@FreeBSD.org References: <20001219113535.Q19572@fw.wintelcom.net> <20001220094157.C644@ringworld.oblivion.bg> <20001219235750.I19572@fw.wintelcom.net> <20001220121640.E644@ringworld.oblivion.bg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001220121640.E644@ringworld.oblivion.bg>; from roam@orbitel.bg on Wed, Dec 20, 2000 at 12:16:41PM +0200 Sender: roam@ringworld.nanolink.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Dec 20, 2000 at 12:16:41PM +0200, Peter Pentchev wrote: > On Tue, Dec 19, 2000 at 11:57:50PM -0800, Alfred Perlstein wrote: [snip] > > > > Well here's the very tricky part that I really haven't worked out > > how to do this, the lockf program runs a program with the lock, so > > I need to make the lockf program run make again. > > > > If I define something when re-running the make then any recursive > > makes will have this defined right? So I won't be able to lock > > the dependancy makes. > > > > It'd be interesting to add an option to make so that it will lock > > the initial makefile used. That sounds pretty hackish so any > > alternative ideas would be welcome and helpful. > > I'm thinking along the lines of having a LOCKDIRS variable, listing > all locked dirs from all ports in the build process, then having > bsd.port.mk check for it *outside any targets*, if that is possible. > (most probably not.. just thinking out loud, please ignore the static ;) > If it is not defined, bsd.port.mk should do something like > > lockf Makefile make ${MAKEFLAGS} LOCKDIRS="${LOCKDIRS} ${.CURDIR}" > > I hope what I've written is at least vaguely understandable; fact is, > I myself am not very clear on what I mean :) Got no time to play > around with this right now, unfortunately :( Just tossing out > a wild idea.. More random thoughts about 'checking outside of any targets'. I think bsd.port.mk could perform a check for ${.CURDIR} being listed in ${LOCKDIRS} as near the start as possible, and set an appropriate flag variable. Later, all targets check this flag, and if there is no lock obtained, they simply revert to no-ops. This should avoid a possible problem with: make w/o lock - check for lock (LOCKDIRS), find none - flock make, adding .CURDIR to LOCKDIRS --- check for lock, detect one --- build --- exit releasing lock - proceed with build - oops! :) Now.. is there a way to do variable substitution so that we S// out a whole (whitespace-delimited) word (in this case, ${.CURDIR}) out of a variable (in this case, LOCKDIRS) ? The lock-check would then become something like .if ${LOCKDIR} == ${LOCKDIR:S,something about ${.CURDIR},,} # no lock - the S// substituted nothing # set a 'do the lockf and noop everything else' flag .else # set a 'locked, proceed as usual' flag (or just do not set the other one :) .endif G'luck, Peter -- If I were you, who would be reading this sentence? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 3: 3:43 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 03:03:40 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.189]) by hub.freebsd.org (Postfix) with SMTP id AA4D437B402 for ; Wed, 20 Dec 2000 03:03:36 -0800 (PST) Received: (qmail 5797 invoked by uid 1000); 20 Dec 2000 11:02:41 -0000 Date: Wed, 20 Dec 2000 13:02:41 +0200 From: Peter Pentchev To: Alfred Perlstein , asami@FreeBSD.org, ports@FreeBSD.org Subject: Re: ports lockfile? Message-ID: <20001220130240.G644@ringworld.oblivion.bg> Mail-Followup-To: Alfred Perlstein , asami@FreeBSD.org, ports@FreeBSD.org References: <20001219113535.Q19572@fw.wintelcom.net> <20001220094157.C644@ringworld.oblivion.bg> <20001219235750.I19572@fw.wintelcom.net> <20001220121640.E644@ringworld.oblivion.bg> <20001220123326.F644@ringworld.oblivion.bg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001220123326.F644@ringworld.oblivion.bg>; from roam@orbitel.bg on Wed, Dec 20, 2000 at 12:33:26PM +0200 Sender: roam@ringworld.nanolink.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org (and yes, I love talking to myself ;) On Wed, Dec 20, 2000 at 12:33:26PM +0200, Peter Pentchev wrote: > On Wed, Dec 20, 2000 at 12:16:41PM +0200, Peter Pentchev wrote: > > On Tue, Dec 19, 2000 at 11:57:50PM -0800, Alfred Perlstein wrote: > [snip] > > > > > > Well here's the very tricky part that I really haven't worked out > > > how to do this, the lockf program runs a program with the lock, so > > > I need to make the lockf program run make again. > > > > > > If I define something when re-running the make then any recursive > > > makes will have this defined right? So I won't be able to lock > > > the dependancy makes. > > > > > > It'd be interesting to add an option to make so that it will lock > > > the initial makefile used. That sounds pretty hackish so any > > > alternative ideas would be welcome and helpful. > > > > I'm thinking along the lines of having a LOCKDIRS variable, listing > > all locked dirs from all ports in the build process, then having > > bsd.port.mk check for it *outside any targets*, if that is possible. > > (most probably not.. just thinking out loud, please ignore the static ;) > > If it is not defined, bsd.port.mk should do something like > > > > lockf Makefile make ${MAKEFLAGS} LOCKDIRS="${LOCKDIRS} ${.CURDIR}" > > > > I hope what I've written is at least vaguely understandable; fact is, > > I myself am not very clear on what I mean :) Got no time to play > > around with this right now, unfortunately :( Just tossing out > > a wild idea.. > > More random thoughts about 'checking outside of any targets'. > > I think bsd.port.mk could perform a check for ${.CURDIR} being > listed in ${LOCKDIRS} as near the start as possible, and set > an appropriate flag variable. Later, all targets check this flag, > and if there is no lock obtained, they simply revert to no-ops. > This should avoid a possible problem with: > > make w/o lock > - check for lock (LOCKDIRS), find none > - flock make, adding .CURDIR to LOCKDIRS > > --- check for lock, detect one > --- build > --- exit releasing lock > > - proceed with build - oops! :) > > Now.. is there a way to do variable substitution so that we S// out > a whole (whitespace-delimited) word (in this case, ${.CURDIR}) > out of a variable (in this case, LOCKDIRS) ? The lock-check > would then become something like > > .if ${LOCKDIR} == ${LOCKDIR:S,something about ${.CURDIR},,} > # no lock - the S// substituted nothing > # set a 'do the lockf and noop everything else' flag > .else > # set a 'locked, proceed as usual' flag (or just do not set the other one :) > .endif OK, so S// *can* substitute whole words. However, apparently I'm missing something in make's '.if' syntax. Anybody, hit me with a cluebar, hit me hard, tell me why should the attached complain about a malformed conditional in the LOCKDIRS != :S// test.. G'luck, Peter -- This sentence would be seven words long if it were six words shorter. .if ("${LOCKDIRS}" != "${LOCKDIRS:S,^${.CURDIR}$,,}") LOCKED= yes .else # set it explicitly to avoid inheriting a 'yes' LOCKED= no .endif pre-everything: .if ${LOCKED} != "yes" @${ECHO} "Attempting to acquire a lock on ${.CURDIR}/Makefile.." # I wonder if the following would result in a funny chain of LOCKDIRS # in a multi-port build make invocations.. @${ECHO} lockf ${.CURDIR}/Makefile make ${MAKEFLAGS} LOCKDIRS="${LOCKDIRS} ${.CURDIR}" .endif do-build: .if ${LOCKED} == "yes" @${ECHO} "the real build" .endif .include To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 3: 5:54 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 03:05:53 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from nemesis.worldnet.net (nemesis.worldnet.net [195.3.3.18]) by hub.freebsd.org (Postfix) with ESMTP id 2818A37B698 for ; Wed, 20 Dec 2000 03:05:52 -0800 (PST) Received: from m2.worldnet.net (m2.worldnet.net [195.3.3.6]) by nemesis.worldnet.net (8.9.3/8.9.3) with ESMTP id MAA48942 for ; Wed, 20 Dec 2000 12:08:37 +0100 (CET) Received: from greatoak.home (p14-001.province.worldnet.fr [195.3.14.1]) by m2.worldnet.net (8.9.3/8.9.3) with ESMTP id MAA04379 for ; Wed, 20 Dec 2000 12:05:28 +0100 (CET) Received: (from pcasidy@localhost) by greatoak.home (8.11.1/8.11.1) id eBKAlwL04216 for freebsd-ports@freebsd.org; Wed, 20 Dec 2000 11:47:58 +0100 (CET) (envelope-from pcasidy) Message-Id: <200012201047.eBKAlwL04216@greatoak.home> Date: Wed, 20 Dec 2000 11:47:58 +0100 (CET) From: Philippe CASIDY Subject: devel/ORBit uncleaned or CVS misbehavior ? To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi! While tracking which port categories I still have to update to the new layout, I found that the port devel/ORBIT has still have old pkg/* files! I cvsuped devel categories last night and I update my ports using : cvs -q update -d -P I alwayes use this command and it worked greats for all other ports I have already updated: audio, archivers, ... Strange, in the repository, I only have /home/ncvs/ports/devel/ORBit/pkg/Attic Anyone has noticed this behavior? Thanks Phil. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 3:13:31 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 03:13:30 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.189]) by hub.freebsd.org (Postfix) with SMTP id 9B4A737B400 for ; Wed, 20 Dec 2000 03:13:25 -0800 (PST) Received: (qmail 5861 invoked by uid 1000); 20 Dec 2000 11:12:29 -0000 Date: Wed, 20 Dec 2000 13:12:29 +0200 From: Peter Pentchev To: Philippe CASIDY Cc: freebsd-ports@freebsd.org Subject: Re: devel/ORBit uncleaned or CVS misbehavior ? Message-ID: <20001220131228.H644@ringworld.oblivion.bg> Mail-Followup-To: Philippe CASIDY , freebsd-ports@freebsd.org References: <200012201047.eBKAlwL04216@greatoak.home> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200012201047.eBKAlwL04216@greatoak.home>; from pcasidy@casidy.com on Wed, Dec 20, 2000 at 11:47:58AM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Dec 20, 2000 at 11:47:58AM +0100, Philippe CASIDY wrote: > Hi! > > While tracking which port categories I still have to update to the new > layout, I found that the port devel/ORBIT has still have old pkg/* > files! > > I cvsuped devel categories last night and I update my ports using : > cvs -q update -d -P > > I alwayes use this command and it worked greats for all other ports I > have already updated: > audio, archivers, ... > > Strange, in the repository, I only have > /home/ncvs/ports/devel/ORBit/pkg/Attic > > Anyone has noticed this behavior? Are there any files in that pkg/ directory? As has been mentioned several times on this list, cvs update -P only removes empty dirs - empty both in the repository *and* on your local disk. I have found non-removed pkg/ and especially patches/ subdirs as a result of leftover .rej and .orig files from failed patches of my own. Hope that helps. G'luck, Peter -- If you think this sentence is confusing, then change one pig. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 3:20:32 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 03:20:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9BE4937B402 for ; Wed, 20 Dec 2000 03:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKBK2u14013; Wed, 20 Dec 2000 03:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 20 Dec 2000 03:20:02 -0800 (PST) Resent-Message-Id: <200012201120.eBKBK2u14013@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, olgeni@uli.it Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ED5EB37B400 for ; Wed, 20 Dec 2000 03:14:15 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKBEFI13203; Wed, 20 Dec 2000 03:14:15 -0800 (PST) (envelope-from nobody) Message-Id: <200012201114.eBKBEFI13203@freefall.freebsd.org> Date: Wed, 20 Dec 2000 03:14:15 -0800 (PST) From: olgeni@uli.it Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23683: maintainer update: sysutils/webmin 0.82 -> 0.83 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23683 >Category: ports >Synopsis: maintainer update: sysutils/webmin 0.82 -> 0.83 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 20 03:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jimmy Olgeni >Release: 4.2-STABLE (i386) >Organization: Colby >Environment: FreeBSD dev1.localdomain.net 4.2-STABLE FreeBSD 4.2-STABLE #0: Tue Dec 12 11:20:03 CET 2000 root@dev1.localdomain.net:/usr/obj/usr/src/sys/BSDBOX i386 >Description: This patch updates sysutils/webmin to release 0.83. Makefile: * Bumped PORTVERSION distinfo: * New tarball pkg-plist: * Added new files, and sorted the PLIST >How-To-Repeat: >Fix: diff -ruN webmin.orig/Makefile webmin/Makefile --- webmin.orig/Makefile Mon Nov 27 12:14:59 2000 +++ webmin/Makefile Wed Dec 20 11:22:18 2000 @@ -6,7 +6,7 @@ # PORTNAME= webmin -PORTVERSION= 0.82 +PORTVERSION= 0.83 CATEGORIES= sysutils MASTER_SITES= http://www.webmin.com/webmin/download/ diff -ruN webmin.orig/distinfo webmin/distinfo --- webmin.orig/distinfo Thu Nov 2 00:26:10 2000 +++ webmin/distinfo Wed Dec 20 11:24:57 2000 @@ -1 +1 @@ -MD5 (webmin-0.82.tar.gz) = 79917588893ac82aeb995192c93ea9c5 +MD5 (webmin-0.83.tar.gz) = 55f599d512cdf9a6212bf8c0b242f30e diff -ruN webmin.orig/pkg-plist webmin/pkg-plist --- webmin.orig/pkg-plist Thu Nov 2 00:26:13 2000 +++ webmin/pkg-plist Wed Dec 20 11:48:02 2000 @@ -9,6 +9,8 @@ etc/webmin/bsdexports/admin.acl etc/webmin/bsdexports/config etc/webmin/config +etc/webmin/cpan/admin.acl +etc/webmin/cpan/config etc/webmin/cron/admin.acl etc/webmin/cron/config etc/webmin/custom/admin.acl @@ -78,6 +80,8 @@ etc/webmin/squid/admin.acl etc/webmin/squid/config etc/webmin/start +etc/webmin/status/admin.acl +etc/webmin/status/config etc/webmin/stop etc/webmin/syslog/admin.acl etc/webmin/syslog/config @@ -389,6 +393,7 @@ lib/webmin/bind8/images/AAAA.gif lib/webmin/bind8/images/CNAME.gif lib/webmin/bind8/images/HINFO.gif +lib/webmin/bind8/images/LOC.gif lib/webmin/bind8/images/MX.gif lib/webmin/bind8/images/NS.gif lib/webmin/bind8/images/PTR.gif @@ -490,6 +495,20 @@ lib/webmin/config.cgi lib/webmin/config_save.cgi lib/webmin/copyconfig.pl +lib/webmin/cpan/config +lib/webmin/cpan/config.info +lib/webmin/cpan/cpan-lib.pl +lib/webmin/cpan/cpan.cgi +lib/webmin/cpan/download.cgi +lib/webmin/cpan/edit_mod.cgi +lib/webmin/cpan/images/.xvpics/icon.gif +lib/webmin/cpan/images/cat.gif +lib/webmin/cpan/images/icon.gif +lib/webmin/cpan/images/mod.gif +lib/webmin/cpan/index.cgi +lib/webmin/cpan/install.cgi +lib/webmin/cpan/lang/en +lib/webmin/cpan/module.info lib/webmin/cron/acl_security.pl lib/webmin/cron/config-aix lib/webmin/cron/config-cobalt-linux @@ -619,6 +638,7 @@ lib/webmin/custom/module.info lib/webmin/custom/run.cgi lib/webmin/custom/save_cmd.cgi +lib/webmin/date_chooser.cgi lib/webmin/defaultacl lib/webmin/dfsadmin/config-openserver lib/webmin/dfsadmin/config-solaris @@ -726,10 +746,16 @@ lib/webmin/dfsadmin/help/suid.sv.html lib/webmin/dfsadmin/help/suid.zh_TW.Big5.html lib/webmin/dfsadmin/images/icon.gif +lib/webmin/dfsadmin/images/share.gif lib/webmin/dfsadmin/index.cgi lib/webmin/dfsadmin/lang/en +lib/webmin/dfsadmin/lang/sv lib/webmin/dfsadmin/lang/tr lib/webmin/dfsadmin/log_parser.pl +lib/webmin/dfsadmin/low.risk +lib/webmin/dfsadmin/low.skill +lib/webmin/dfsadmin/medium.risk +lib/webmin/dfsadmin/medium.skill lib/webmin/dfsadmin/module.info lib/webmin/dfsadmin/restart_sharing.cgi lib/webmin/dfsadmin/save_share.cgi @@ -768,11 +794,13 @@ lib/webmin/dhcpd/edit_group.cgi lib/webmin/dhcpd/edit_host.cgi lib/webmin/dhcpd/edit_options.cgi +lib/webmin/dhcpd/edit_pool.cgi lib/webmin/dhcpd/edit_shared.cgi lib/webmin/dhcpd/edit_subnet.cgi lib/webmin/dhcpd/images/group.gif lib/webmin/dhcpd/images/host.gif lib/webmin/dhcpd/images/icon.gif +lib/webmin/dhcpd/images/pool.gif lib/webmin/dhcpd/images/shared.gif lib/webmin/dhcpd/images/subnet.gif lib/webmin/dhcpd/index.cgi @@ -795,6 +823,7 @@ lib/webmin/dhcpd/save_group.cgi lib/webmin/dhcpd/save_host.cgi lib/webmin/dhcpd/save_options.cgi +lib/webmin/dhcpd/save_pool.cgi lib/webmin/dhcpd/save_shared.cgi lib/webmin/dhcpd/save_subnet.cgi lib/webmin/dhcpd/start.cgi @@ -845,6 +874,7 @@ lib/webmin/dnsadmin/images/icon.gif lib/webmin/dnsadmin/index.cgi lib/webmin/dnsadmin/lang/en +lib/webmin/dnsadmin/lang/sv lib/webmin/dnsadmin/log_parser.pl lib/webmin/dnsadmin/master_form.cgi lib/webmin/dnsadmin/module.info @@ -972,6 +1002,7 @@ lib/webmin/exports/help/squash_uids.pl.html lib/webmin/exports/help/squash_uids.sv.html lib/webmin/exports/help/squash_uids.zh_TW.Big5.html +lib/webmin/exports/images/export.gif lib/webmin/exports/images/icon.gif lib/webmin/exports/index.cgi lib/webmin/exports/lang/de @@ -986,6 +1017,10 @@ lib/webmin/exports/lang/zh_CN lib/webmin/exports/lang/zh_TW.Big5 lib/webmin/exports/log_parser.pl +lib/webmin/exports/low.risk +lib/webmin/exports/low.skill +lib/webmin/exports/medium.risk +lib/webmin/exports/medium.skill lib/webmin/exports/module.info lib/webmin/exports/restart_mountd.cgi lib/webmin/exports/save_export.cgi @@ -1313,6 +1348,8 @@ lib/webmin/hpuxexports/module.info lib/webmin/hpuxexports/restart_exporting.cgi lib/webmin/hpuxexports/save_export.cgi +lib/webmin/images/.xvpics/eazel.gif +lib/webmin/images/.xvpics/lc2.gif lib/webmin/images/back.gif lib/webmin/images/binary.gif lib/webmin/images/dir.gif @@ -1613,9 +1650,12 @@ lib/webmin/init/lang/zh_CN lib/webmin/init/lang/zh_TW.Big5 lib/webmin/init/log_parser.pl +lib/webmin/init/low.risk +lib/webmin/init/medium.risk lib/webmin/init/module.info lib/webmin/init/reboot.cgi lib/webmin/init/save_action.cgi +lib/webmin/init/save_bootup.cgi lib/webmin/init/save_local.cgi lib/webmin/init/shutdown.cgi lib/webmin/init/start_stop.cgi @@ -1675,7 +1715,6 @@ lib/webmin/inittab/new_inittab.cgi lib/webmin/inittab/save_inittab.cgi lib/webmin/install-type -lib/webmin/lang/big5 lib/webmin/lang/de lib/webmin/lang/en lib/webmin/lang/es @@ -1752,6 +1791,7 @@ lib/webmin/lpadmin/config.info.de lib/webmin/lpadmin/config.info.es lib/webmin/lpadmin/config.info.fr +lib/webmin/lpadmin/config.info.hu lib/webmin/lpadmin/config.info.pl lib/webmin/lpadmin/config.info.ru_SU lib/webmin/lpadmin/config.info.sv @@ -1772,6 +1812,7 @@ lib/webmin/lpadmin/lang/en lib/webmin/lpadmin/lang/es lib/webmin/lpadmin/lang/fr +lib/webmin/lpadmin/lang/hu lib/webmin/lpadmin/lang/it lib/webmin/lpadmin/lang/pl lib/webmin/lpadmin/lang/pt @@ -1849,6 +1890,7 @@ lib/webmin/majordomo/images/subs.gif lib/webmin/majordomo/index.cgi lib/webmin/majordomo/lang/en +lib/webmin/majordomo/lang/sv lib/webmin/majordomo/lang/tr lib/webmin/majordomo/log_parser.pl lib/webmin/majordomo/majordomo-lib.pl @@ -1968,7 +2010,33 @@ lib/webmin/mount/help/help.sv.html lib/webmin/mount/help/help.zh_TW.Big5.html lib/webmin/mount/hpux-lib.pl +lib/webmin/mount/images/auto.gif +lib/webmin/mount/images/autofs.gif +lib/webmin/mount/images/cachefs.gif +lib/webmin/mount/images/ext.gif +lib/webmin/mount/images/ext2.gif +lib/webmin/mount/images/fat.gif +lib/webmin/mount/images/hpfs.gif +lib/webmin/mount/images/hsfs.gif lib/webmin/mount/images/icon.gif +lib/webmin/mount/images/iso9660.gif +lib/webmin/mount/images/lofs.gif +lib/webmin/mount/images/minix.gif +lib/webmin/mount/images/msdos.gif +lib/webmin/mount/images/nfs.gif +lib/webmin/mount/images/pcfs.gif +lib/webmin/mount/images/reiserfs.gif +lib/webmin/mount/images/rumba.gif +lib/webmin/mount/images/smbfs.gif +lib/webmin/mount/images/star.gif +lib/webmin/mount/images/swap.gif +lib/webmin/mount/images/sysv.gif +lib/webmin/mount/images/tmpfs.gif +lib/webmin/mount/images/udfs.gif +lib/webmin/mount/images/ufs.gif +lib/webmin/mount/images/umsdos.gif +lib/webmin/mount/images/vfat.gif +lib/webmin/mount/images/xmemfs.gif lib/webmin/mount/index.cgi lib/webmin/mount/irix-lib.pl lib/webmin/mount/lang/de @@ -1985,6 +2053,10 @@ lib/webmin/mount/lfs-linux-lib.pl lib/webmin/mount/linux-lib.pl lib/webmin/mount/log_parser.pl +lib/webmin/mount/low.risk +lib/webmin/mount/low.skill +lib/webmin/mount/medium.risk +lib/webmin/mount/medium.skill lib/webmin/mount/module.info lib/webmin/mount/mount-lib.pl lib/webmin/mount/nfs_export.cgi @@ -2179,6 +2251,8 @@ lib/webmin/mysql/stop.cgi lib/webmin/mysql/table_form.cgi lib/webmin/mysql/view_table.cgi +lib/webmin/net/cobalt-linux-lib.pl +lib/webmin/net/config-cobalt-linux lib/webmin/net/config-debian-linux lib/webmin/net/config-freebsd lib/webmin/net/config-lfs-linux @@ -2266,6 +2340,7 @@ lib/webmin/pap/index.cgi lib/webmin/pap/lang/en lib/webmin/pap/lang/pl +lib/webmin/pap/lang/sv lib/webmin/pap/log_parser.pl lib/webmin/pap/module.info lib/webmin/pap/pap-lib.pl @@ -2613,7 +2688,9 @@ lib/webmin/postgresql/config-redhat-linux lib/webmin/postgresql/config-redhat-linux-7.0 lib/webmin/postgresql/config-suse-linux +lib/webmin/postgresql/config-suse-linux-7.0 lib/webmin/postgresql/config.info +lib/webmin/postgresql/config.info.sv lib/webmin/postgresql/create_table.cgi lib/webmin/postgresql/defaultacl lib/webmin/postgresql/drop_dbase.cgi @@ -2649,6 +2726,7 @@ lib/webmin/postgresql/images/users.gif lib/webmin/postgresql/index.cgi lib/webmin/postgresql/lang/en +lib/webmin/postgresql/lang/sv lib/webmin/postgresql/list_grants.cgi lib/webmin/postgresql/list_groups.cgi lib/webmin/postgresql/list_hosts.cgi @@ -2851,7 +2929,10 @@ lib/webmin/proc/lang/zh_TW.Big5 lib/webmin/proc/linux-lib.pl lib/webmin/proc/log_parser.pl +lib/webmin/proc/low.skill lib/webmin/proc/macos-lib.pl +lib/webmin/proc/medium.risk +lib/webmin/proc/medium.skill lib/webmin/proc/module.info lib/webmin/proc/osf-lib.pl lib/webmin/proc/proc-lib.pl @@ -3442,6 +3523,7 @@ lib/webmin/sendmail/view_mail.cgi lib/webmin/sendmail/view_mailq.cgi lib/webmin/sendmail/virtusers-lib.pl +lib/webmin/servers/acl_security.pl lib/webmin/servers/config lib/webmin/servers/config.info lib/webmin/servers/config.info.de @@ -3451,6 +3533,7 @@ lib/webmin/servers/config.info.sv lib/webmin/servers/config.info.tr lib/webmin/servers/config.info.zh_TW.Big5 +lib/webmin/servers/defaultacl lib/webmin/servers/edit_serv.cgi lib/webmin/servers/find.cgi lib/webmin/servers/images/cal_spin.gif @@ -3631,6 +3714,8 @@ lib/webmin/squid/acl.cgi lib/webmin/squid/acl_save.cgi lib/webmin/squid/acl_security.pl +lib/webmin/squid/always.cgi +lib/webmin/squid/always_save.cgi lib/webmin/squid/cachemgr.cgi lib/webmin/squid/calamaris.cgi lib/webmin/squid/chown.cgi @@ -3682,6 +3767,8 @@ lib/webmin/squid/edit_nuser.cgi lib/webmin/squid/edit_ports.cgi lib/webmin/squid/edit_progs.cgi +lib/webmin/squid/edit_smem.cgi +lib/webmin/squid/edit_sports.cgi lib/webmin/squid/edit_user.cgi lib/webmin/squid/help/edit_acl.html lib/webmin/squid/help/edit_acl.pl.html @@ -3744,6 +3831,8 @@ lib/webmin/squid/images/nauth.gif lib/webmin/squid/images/ports.gif lib/webmin/squid/images/progs.gif +lib/webmin/squid/images/smem.gif +lib/webmin/squid/images/sports.gif lib/webmin/squid/images/up.gif lib/webmin/squid/index.cgi lib/webmin/squid/init_cache.cgi @@ -3757,9 +3846,17 @@ lib/webmin/squid/lang/zh_CN lib/webmin/squid/lang/zh_TW.Big5 lib/webmin/squid/log_parser.pl +lib/webmin/squid/low.risk +lib/webmin/squid/low.skill +lib/webmin/squid/medium.risk +lib/webmin/squid/medium.skill lib/webmin/squid/module.info +lib/webmin/squid/move_always.cgi lib/webmin/squid/move_http.cgi lib/webmin/squid/move_icp.cgi +lib/webmin/squid/move_never.cgi +lib/webmin/squid/never.cgi +lib/webmin/squid/never_save.cgi lib/webmin/squid/parser-lib.pl lib/webmin/squid/restart.cgi lib/webmin/squid/save_admin.cgi @@ -3773,10 +3870,68 @@ lib/webmin/squid/save_nuser.cgi lib/webmin/squid/save_ports.cgi lib/webmin/squid/save_progs.cgi +lib/webmin/squid/save_smem.cgi +lib/webmin/squid/save_sports.cgi lib/webmin/squid/save_user.cgi lib/webmin/squid/squid-lib.pl lib/webmin/squid/start.cgi lib/webmin/squid/stop.cgi +lib/webmin/status/apache-monitor.pl +lib/webmin/status/bind8-monitor.pl +lib/webmin/status/config +lib/webmin/status/config-corel-linux +lib/webmin/status/config-debian-linux +lib/webmin/status/config-freebsd +lib/webmin/status/config-hpux +lib/webmin/status/config-open-linux +lib/webmin/status/config-redhat-linux +lib/webmin/status/config-slackware-linux +lib/webmin/status/config-solaris +lib/webmin/status/config-suse-linux +lib/webmin/status/config-turbo-linux +lib/webmin/status/config.info +lib/webmin/status/dhcpd-monitor.pl +lib/webmin/status/dnsadmin-monitor.pl +lib/webmin/status/edit_mon.cgi +lib/webmin/status/edit_sched.cgi +lib/webmin/status/exec-monitor.pl +lib/webmin/status/http-monitor.pl +lib/webmin/status/images/down.gif +lib/webmin/status/images/icon.gif +lib/webmin/status/images/not.gif +lib/webmin/status/images/quest.gif +lib/webmin/status/images/up.gif +lib/webmin/status/index.cgi +lib/webmin/status/inetd-monitor.pl +lib/webmin/status/lang/en +lib/webmin/status/module.info +lib/webmin/status/monitor.pl +lib/webmin/status/mysql-monitor.pl +lib/webmin/status/nfs-monitor.pl +lib/webmin/status/ping-monitor.pl +lib/webmin/status/postgresql-monitor.pl +lib/webmin/status/proc-monitor.pl +lib/webmin/status/samba-monitor.pl +lib/webmin/status/save_mon.cgi +lib/webmin/status/save_sched.cgi +lib/webmin/status/sendmail-monitor.pl +lib/webmin/status/services/apache.serv +lib/webmin/status/services/bind8.serv +lib/webmin/status/services/dhcpd.serv +lib/webmin/status/services/dnsadmin.serv +lib/webmin/status/services/inetd.serv +lib/webmin/status/services/mysql.serv +lib/webmin/status/services/nfs.serv +lib/webmin/status/services/postgresql.serv +lib/webmin/status/services/samba.serv +lib/webmin/status/services/sendmail.serv +lib/webmin/status/services/squid.serv +lib/webmin/status/services/xinetd.serv +lib/webmin/status/squid-monitor.pl +lib/webmin/status/status-lib.pl +lib/webmin/status/tcp-monitor.pl +lib/webmin/status/xinetd-monitor.pl +lib/webmin/switch_skill.cgi lib/webmin/switch_user.cgi lib/webmin/syslog/config-aix lib/webmin/syslog/config-cobalt-linux @@ -3796,6 +3951,7 @@ lib/webmin/syslog/config.info lib/webmin/syslog/config.info.de lib/webmin/syslog/config.info.es +lib/webmin/syslog/config.info.hu lib/webmin/syslog/config.info.pl lib/webmin/syslog/config.info.ru_SU lib/webmin/syslog/config.info.sv @@ -3808,6 +3964,7 @@ lib/webmin/syslog/lang/de lib/webmin/syslog/lang/en lib/webmin/syslog/lang/es +lib/webmin/syslog/lang/hu lib/webmin/syslog/lang/pl lib/webmin/syslog/lang/ru_SU lib/webmin/syslog/lang/sv @@ -3815,7 +3972,10 @@ lib/webmin/syslog/lang/zh_CN lib/webmin/syslog/lang/zh_TW.Big5 lib/webmin/syslog/log_parser.pl +lib/webmin/syslog/low.risk +lib/webmin/syslog/low.skill lib/webmin/syslog/m4.cgi +lib/webmin/syslog/medium.risk lib/webmin/syslog/module.info lib/webmin/syslog/restart.cgi lib/webmin/syslog/save_log.cgi @@ -4193,7 +4353,9 @@ lib/webmin/useradmin/help/warn.sv.html lib/webmin/useradmin/help/warn.zh_TW.Big5.html lib/webmin/useradmin/hpux-lib.pl +lib/webmin/useradmin/images/group.gif lib/webmin/useradmin/images/icon.gif +lib/webmin/useradmin/images/user.gif lib/webmin/useradmin/index.cgi lib/webmin/useradmin/irix-lib.pl lib/webmin/useradmin/lang/de @@ -4211,9 +4373,15 @@ lib/webmin/useradmin/linux-lib.pl lib/webmin/useradmin/list_logins.cgi lib/webmin/useradmin/log_parser.pl +lib/webmin/useradmin/low.risk +lib/webmin/useradmin/low.skill lib/webmin/useradmin/many_create.cgi lib/webmin/useradmin/many_form.cgi +lib/webmin/useradmin/medium.risk +lib/webmin/useradmin/medium.skill lib/webmin/useradmin/module.info +lib/webmin/useradmin/my_group_chooser.cgi +lib/webmin/useradmin/my_user_chooser.cgi lib/webmin/useradmin/open-linux-lib.pl lib/webmin/useradmin/openbsd-lib.pl lib/webmin/useradmin/osf1-lib.pl @@ -4242,6 +4410,7 @@ lib/webmin/webmin/change_session.cgi lib/webmin/webmin/change_ssl.cgi lib/webmin/webmin/change_startpage.cgi +lib/webmin/webmin/change_theme.cgi lib/webmin/webmin/change_ui.cgi lib/webmin/webmin/clone_mod.cgi lib/webmin/webmin/delete_mod.cgi @@ -4258,8 +4427,11 @@ lib/webmin/webmin/edit_session.cgi lib/webmin/webmin/edit_ssl.cgi lib/webmin/webmin/edit_startpage.cgi +lib/webmin/webmin/edit_themes.cgi lib/webmin/webmin/edit_ui.cgi lib/webmin/webmin/edit_upgrade.cgi +lib/webmin/webmin/images/.xvpics/session.gif +lib/webmin/webmin/images/.xvpics/themes.gif lib/webmin/webmin/images/access.gif lib/webmin/webmin/images/assignment.gif lib/webmin/webmin/images/bind.gif @@ -4274,10 +4446,12 @@ lib/webmin/webmin/images/session.gif lib/webmin/webmin/images/ssl.gif lib/webmin/webmin/images/startpage.gif +lib/webmin/webmin/images/themes.gif lib/webmin/webmin/images/ui.gif lib/webmin/webmin/images/upgrade.gif lib/webmin/webmin/index.cgi lib/webmin/webmin/install_mod.cgi +lib/webmin/webmin/install_theme.cgi lib/webmin/webmin/lang/de lib/webmin/webmin/lang/en lib/webmin/webmin/lang/es @@ -4293,6 +4467,10 @@ lib/webmin/webmin/lang/zh_CN lib/webmin/webmin/lang/zh_TW.Big5 lib/webmin/webmin/log_parser.pl +lib/webmin/webmin/low.risk +lib/webmin/webmin/low.skill +lib/webmin/webmin/medium.risk +lib/webmin/webmin/medium.skill lib/webmin/webmin/module.info lib/webmin/webmin/save_assignment.cgi lib/webmin/webmin/save_categories.cgi @@ -4305,6 +4483,7 @@ lib/webmin/webminlog/lang/en lib/webmin/webminlog/lang/hu lib/webmin/webminlog/lang/pl +lib/webmin/webminlog/lang/sv lib/webmin/webminlog/lang/tr lib/webmin/webminlog/module.info lib/webmin/webminlog/search.cgi @@ -4456,12 +4635,14 @@ lib/webmin/xinetd/config-suse-linux lib/webmin/xinetd/config.info lib/webmin/xinetd/config.info.pl +lib/webmin/xinetd/config.info.sv lib/webmin/xinetd/edit_defaults.cgi lib/webmin/xinetd/edit_serv.cgi lib/webmin/xinetd/images/icon.gif lib/webmin/xinetd/index.cgi lib/webmin/xinetd/lang/en lib/webmin/xinetd/lang/pl +lib/webmin/xinetd/lang/sv lib/webmin/xinetd/log_parser.pl lib/webmin/xinetd/module.info lib/webmin/xinetd/restart.cgi @@ -4469,208 +4650,220 @@ lib/webmin/xinetd/save_serv.cgi lib/webmin/xinetd/start.cgi lib/webmin/xinetd/xinetd-lib.pl -@dirrm etc/webmin/acl -@dirrm etc/webmin/apache -@dirrm etc/webmin/bind8 -@dirrm etc/webmin/bsdexports -@dirrm etc/webmin/cron -@dirrm etc/webmin/custom -@dirrm etc/webmin/dfsadmin -@dirrm etc/webmin/dhcpd -@dirrm etc/webmin/dnsadmin -@dirrm etc/webmin/exports -@dirrm etc/webmin/fdisk -@dirrm etc/webmin/file -@dirrm etc/webmin/format -@dirrm etc/webmin/help -@dirrm etc/webmin/hpuxexports -@dirrm etc/webmin/inetd -@dirrm etc/webmin/init -@dirrm etc/webmin/inittab -@dirrm etc/webmin/lilo -@dirrm etc/webmin/lpadmin -@dirrm etc/webmin/majordomo -@dirrm etc/webmin/man -@dirrm etc/webmin/mount -@dirrm etc/webmin/mysql -@dirrm etc/webmin/net -@dirrm etc/webmin/pap -@dirrm etc/webmin/postfix -@dirrm etc/webmin/postgresql -@dirrm etc/webmin/proc -@dirrm etc/webmin/quota -@dirrm etc/webmin/raid -@dirrm etc/webmin/samba -@dirrm etc/webmin/sendmail -@dirrm etc/webmin/servers -@dirrm etc/webmin/software -@dirrm etc/webmin/squid -@dirrm etc/webmin/syslog -@dirrm etc/webmin/telnet -@dirrm etc/webmin/time -@dirrm etc/webmin/useradmin -@dirrm etc/webmin/webmin -@dirrm etc/webmin/webminlog -@dirrm etc/webmin/wuftpd -@dirrm etc/webmin/xinetd -@dirrm etc/webmin -@dirrm lib/webmin/quota/help -@dirrm lib/webmin/quota/lang +@dirrm lib/webmin/fdisk/lang +@dirrm lib/webmin/fdisk/images +@dirrm lib/webmin/fdisk/help +@dirrm lib/webmin/majordomo/lang +@dirrm lib/webmin/majordomo/images +@dirrm lib/webmin/man/help +@dirrm lib/webmin/man/lang +@dirrm lib/webmin/man/images +@dirrm lib/webmin/lilo/images +@dirrm lib/webmin/lilo/lang +@dirrm lib/webmin/inittab/images +@dirrm lib/webmin/inittab/lang +@dirrm lib/webmin/inittab/help +@dirrm lib/webmin/mount/help +@dirrm lib/webmin/mount/images +@dirrm lib/webmin/mount/lang +@dirrm lib/webmin/mysql/images +@dirrm lib/webmin/mysql/help +@dirrm lib/webmin/mysql/lang +@dirrm lib/webmin/net/images +@dirrm lib/webmin/net/lang +@dirrm lib/webmin/init/images +@dirrm lib/webmin/init/help +@dirrm lib/webmin/init/lang +@dirrm lib/webmin/inetd/lang +@dirrm lib/webmin/inetd/images +@dirrm lib/webmin/inetd/help +@dirrm lib/webmin/images/.xvpics +@dirrm lib/webmin/images/letters +@dirrm lib/webmin/hpuxexports/images +@dirrm lib/webmin/hpuxexports/help +@dirrm lib/webmin/pap/images +@dirrm lib/webmin/pap/lang +@dirrm lib/webmin/help/lang +@dirrm lib/webmin/help/help +@dirrm lib/webmin/help/images +@dirrm lib/webmin/postfix/help +@dirrm lib/webmin/postfix/lang +@dirrm lib/webmin/postfix/images +@dirrm lib/webmin/postgresql/help +@dirrm lib/webmin/postgresql/lang +@dirrm lib/webmin/postgresql/images +@dirrm lib/webmin/proc/help +@dirrm lib/webmin/proc/lang +@dirrm lib/webmin/proc/images @dirrm lib/webmin/quota/images -@dirrm lib/webmin/quota -@dirrm lib/webmin/acl/lang -@dirrm lib/webmin/acl/images -@dirrm lib/webmin/acl -@dirrm lib/webmin/apache/lang -@dirrm lib/webmin/apache/images -@dirrm lib/webmin/apache -@dirrm lib/webmin/bind8/lang -@dirrm lib/webmin/bind8/images -@dirrm lib/webmin/bind8 -@dirrm lib/webmin/webmin/lang -@dirrm lib/webmin/webmin/images -@dirrm lib/webmin/webmin -@dirrm lib/webmin/bsdexports/images -@dirrm lib/webmin/bsdexports -@dirrm lib/webmin/cron/help -@dirrm lib/webmin/cron/lang -@dirrm lib/webmin/cron/images -@dirrm lib/webmin/cron -@dirrm lib/webmin/useradmin/images -@dirrm lib/webmin/useradmin/help -@dirrm lib/webmin/useradmin/lang -@dirrm lib/webmin/useradmin -@dirrm lib/webmin/custom/help -@dirrm lib/webmin/custom/lang -@dirrm lib/webmin/custom/images -@dirrm lib/webmin/custom -@dirrm lib/webmin/time/images -@dirrm lib/webmin/time/lang -@dirrm lib/webmin/time/help -@dirrm lib/webmin/time -@dirrm lib/webmin/dfsadmin/help -@dirrm lib/webmin/dfsadmin/images -@dirrm lib/webmin/dfsadmin/lang -@dirrm lib/webmin/dfsadmin -@dirrm lib/webmin/telnet/images -@dirrm lib/webmin/telnet/lang -@dirrm lib/webmin/telnet -@dirrm lib/webmin/syslog/lang -@dirrm lib/webmin/syslog/images -@dirrm lib/webmin/syslog +@dirrm lib/webmin/quota/lang +@dirrm lib/webmin/quota/help +@dirrm lib/webmin/raid/images +@dirrm lib/webmin/raid/lang +@dirrm lib/webmin/format/help +@dirrm lib/webmin/format/images +@dirrm lib/webmin/format/lang +@dirrm lib/webmin/file/images +@dirrm lib/webmin/file/lang +@dirrm lib/webmin/samba/lang +@dirrm lib/webmin/samba/images +@dirrm lib/webmin/samba/help +@dirrm lib/webmin/sendmail/images +@dirrm lib/webmin/sendmail/help +@dirrm lib/webmin/sendmail/lang +@dirrm lib/webmin/lpadmin/lang +@dirrm lib/webmin/lpadmin/images +@dirrm lib/webmin/xinetd/lang +@dirrm lib/webmin/xinetd/images +@dirrm lib/webmin/exports/lang +@dirrm lib/webmin/exports/images +@dirrm lib/webmin/exports/help +@dirrm lib/webmin/dnsadmin/lang +@dirrm lib/webmin/dnsadmin/images +@dirrm lib/webmin/dnsadmin/help +@dirrm lib/webmin/software/help +@dirrm lib/webmin/software/images +@dirrm lib/webmin/software/lang @dirrm lib/webmin/squid/lang @dirrm lib/webmin/squid/help @dirrm lib/webmin/squid/images -@dirrm lib/webmin/squid -@dirrm lib/webmin/software/help -@dirrm lib/webmin/software/lang -@dirrm lib/webmin/software/images -@dirrm lib/webmin/software +@dirrm lib/webmin/status/lang +@dirrm lib/webmin/status/images +@dirrm lib/webmin/status/services @dirrm lib/webmin/dhcpd/lang @dirrm lib/webmin/dhcpd/images -@dirrm lib/webmin/dhcpd +@dirrm lib/webmin/dfsadmin/help +@dirrm lib/webmin/dfsadmin/lang +@dirrm lib/webmin/dfsadmin/images +@dirrm lib/webmin/syslog/images +@dirrm lib/webmin/syslog/lang +@dirrm lib/webmin/telnet/lang +@dirrm lib/webmin/telnet/images +@dirrm lib/webmin/custom/lang +@dirrm lib/webmin/custom/help +@dirrm lib/webmin/custom/images +@dirrm lib/webmin/time/help +@dirrm lib/webmin/time/lang +@dirrm lib/webmin/time/images +@dirrm lib/webmin/cron/help +@dirrm lib/webmin/cron/images +@dirrm lib/webmin/cron/lang +@dirrm lib/webmin/useradmin/images +@dirrm lib/webmin/useradmin/lang +@dirrm lib/webmin/useradmin/help +@dirrm lib/webmin/cpan/images/.xvpics +@dirrm lib/webmin/cpan/images +@dirrm lib/webmin/cpan/lang +@dirrm lib/webmin/bsdexports/images +@dirrm lib/webmin/webmin/images/.xvpics +@dirrm lib/webmin/webmin/lang +@dirrm lib/webmin/webmin/images +@dirrm lib/webmin/bind8/images +@dirrm lib/webmin/bind8/lang +@dirrm lib/webmin/apache/lang +@dirrm lib/webmin/apache/images +@dirrm lib/webmin/acl/images +@dirrm lib/webmin/acl/lang +@dirrm lib/webmin/webminlog/lang +@dirrm lib/webmin/webminlog/images +@dirrm lib/webmin/wuftpd/images @dirrm lib/webmin/wuftpd/lang @dirrm lib/webmin/wuftpd/help -@dirrm lib/webmin/wuftpd/images -@dirrm lib/webmin/wuftpd -@dirrm lib/webmin/servers/lang @dirrm lib/webmin/servers/images -@dirrm lib/webmin/servers -@dirrm lib/webmin/sendmail/images -@dirrm lib/webmin/sendmail/help -@dirrm lib/webmin/sendmail/lang -@dirrm lib/webmin/sendmail -@dirrm lib/webmin/samba/help -@dirrm lib/webmin/samba/lang -@dirrm lib/webmin/samba/images -@dirrm lib/webmin/samba -@dirrm lib/webmin/raid/lang -@dirrm lib/webmin/raid/images -@dirrm lib/webmin/raid -@dirrm lib/webmin/inittab/lang -@dirrm lib/webmin/inittab/help -@dirrm lib/webmin/inittab/images -@dirrm lib/webmin/inittab -@dirrm lib/webmin/proc/help -@dirrm lib/webmin/proc/images -@dirrm lib/webmin/proc/lang -@dirrm lib/webmin/proc -@dirrm lib/webmin/postfix/help -@dirrm lib/webmin/postfix/lang -@dirrm lib/webmin/postfix/images -@dirrm lib/webmin/postfix -@dirrm lib/webmin/exports/help -@dirrm lib/webmin/exports/images -@dirrm lib/webmin/exports/lang -@dirrm lib/webmin/exports -@dirrm lib/webmin/pap/images -@dirrm lib/webmin/pap/lang -@dirrm lib/webmin/pap -@dirrm lib/webmin/fdisk/help -@dirrm lib/webmin/fdisk/lang -@dirrm lib/webmin/fdisk/images +@dirrm lib/webmin/servers/lang @dirrm lib/webmin/fdisk -@dirrm lib/webmin/file/lang -@dirrm lib/webmin/file/images -@dirrm lib/webmin/file -@dirrm lib/webmin/format/images -@dirrm lib/webmin/format/help -@dirrm lib/webmin/format/lang -@dirrm lib/webmin/format -@dirrm lib/webmin/net/lang -@dirrm lib/webmin/net/images -@dirrm lib/webmin/net -@dirrm lib/webmin/mysql/images -@dirrm lib/webmin/mysql/lang -@dirrm lib/webmin/mysql/help -@dirrm lib/webmin/mysql -@dirrm lib/webmin/mount/images -@dirrm lib/webmin/mount/help -@dirrm lib/webmin/mount/lang -@dirrm lib/webmin/mount -@dirrm lib/webmin/help/lang -@dirrm lib/webmin/help/help -@dirrm lib/webmin/help/images -@dirrm lib/webmin/help -@dirrm lib/webmin/hpuxexports/help -@dirrm lib/webmin/hpuxexports/images -@dirrm lib/webmin/hpuxexports -@dirrm lib/webmin/images/letters -@dirrm lib/webmin/images -@dirrm lib/webmin/man/help -@dirrm lib/webmin/man/lang -@dirrm lib/webmin/man/images -@dirrm lib/webmin/man -@dirrm lib/webmin/majordomo/images -@dirrm lib/webmin/majordomo/lang @dirrm lib/webmin/majordomo -@dirrm lib/webmin/lpadmin/lang -@dirrm lib/webmin/lpadmin/images -@dirrm lib/webmin/lpadmin -@dirrm lib/webmin/inetd/help -@dirrm lib/webmin/inetd/lang -@dirrm lib/webmin/inetd/images -@dirrm lib/webmin/inetd -@dirrm lib/webmin/lilo/lang -@dirrm lib/webmin/lilo/images +@dirrm lib/webmin/man @dirrm lib/webmin/lilo -@dirrm lib/webmin/init/lang -@dirrm lib/webmin/init/help -@dirrm lib/webmin/init/images -@dirrm lib/webmin/init @dirrm lib/webmin/lang -@dirrm lib/webmin/dnsadmin/help -@dirrm lib/webmin/dnsadmin/images -@dirrm lib/webmin/dnsadmin/lang -@dirrm lib/webmin/dnsadmin -@dirrm lib/webmin/postgresql/help -@dirrm lib/webmin/postgresql/images -@dirrm lib/webmin/postgresql/lang +@dirrm lib/webmin/inittab +@dirrm lib/webmin/mount +@dirrm lib/webmin/mysql +@dirrm lib/webmin/net +@dirrm lib/webmin/init +@dirrm lib/webmin/inetd +@dirrm lib/webmin/images +@dirrm lib/webmin/hpuxexports +@dirrm lib/webmin/pap +@dirrm lib/webmin/help +@dirrm lib/webmin/postfix @dirrm lib/webmin/postgresql -@dirrm lib/webmin/webminlog/lang -@dirrm lib/webmin/webminlog/images -@dirrm lib/webmin/webminlog -@dirrm lib/webmin/xinetd/lang -@dirrm lib/webmin/xinetd/images +@dirrm lib/webmin/proc +@dirrm lib/webmin/quota +@dirrm lib/webmin/raid +@dirrm lib/webmin/format +@dirrm lib/webmin/file +@dirrm lib/webmin/samba +@dirrm lib/webmin/sendmail +@dirrm lib/webmin/lpadmin @dirrm lib/webmin/xinetd +@dirrm lib/webmin/exports +@dirrm lib/webmin/dnsadmin +@dirrm lib/webmin/software +@dirrm lib/webmin/squid +@dirrm lib/webmin/status +@dirrm lib/webmin/dhcpd +@dirrm lib/webmin/dfsadmin +@dirrm lib/webmin/syslog +@dirrm lib/webmin/telnet +@dirrm lib/webmin/custom +@dirrm lib/webmin/time +@dirrm lib/webmin/cron +@dirrm lib/webmin/useradmin +@dirrm lib/webmin/cpan +@dirrm lib/webmin/bsdexports +@dirrm lib/webmin/webmin +@dirrm lib/webmin/bind8 +@dirrm lib/webmin/apache +@dirrm lib/webmin/acl +@dirrm lib/webmin/webminlog +@dirrm lib/webmin/wuftpd +@dirrm lib/webmin/servers @dirrm lib/webmin +@dirrm etc/webmin/xinetd +@dirrm etc/webmin/wuftpd +@dirrm etc/webmin/webminlog +@dirrm etc/webmin/webmin +@dirrm etc/webmin/useradmin +@dirrm etc/webmin/time +@dirrm etc/webmin/telnet +@dirrm etc/webmin/syslog +@dirrm etc/webmin/status +@dirrm etc/webmin/squid +@dirrm etc/webmin/software +@dirrm etc/webmin/servers +@dirrm etc/webmin/sendmail +@dirrm etc/webmin/samba +@dirrm etc/webmin/raid +@dirrm etc/webmin/quota +@dirrm etc/webmin/proc +@dirrm etc/webmin/postgresql +@dirrm etc/webmin/postfix +@dirrm etc/webmin/pap +@dirrm etc/webmin/net +@dirrm etc/webmin/mysql +@dirrm etc/webmin/mount +@dirrm etc/webmin/man +@dirrm etc/webmin/majordomo +@dirrm etc/webmin/lpadmin +@dirrm etc/webmin/lilo +@dirrm etc/webmin/inittab +@dirrm etc/webmin/init +@dirrm etc/webmin/inetd +@dirrm etc/webmin/hpuxexports +@dirrm etc/webmin/help +@dirrm etc/webmin/format +@dirrm etc/webmin/file +@dirrm etc/webmin/fdisk +@dirrm etc/webmin/exports +@dirrm etc/webmin/dnsadmin +@dirrm etc/webmin/dhcpd +@dirrm etc/webmin/dfsadmin +@dirrm etc/webmin/custom +@dirrm etc/webmin/cron +@dirrm etc/webmin/cpan +@dirrm etc/webmin/bsdexports +@dirrm etc/webmin/bind8 +@dirrm etc/webmin/apache +@dirrm etc/webmin/acl +@dirrm etc/webmin >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 3:42: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 03:42:08 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 60A4A37B400; Wed, 20 Dec 2000 03:42:08 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKBg8x17214; Wed, 20 Dec 2000 03:42:08 -0800 (PST) (envelope-from roam) Date: Wed, 20 Dec 2000 03:42:08 -0800 (PST) From: Message-Id: <200012201142.eBKBg8x17214@freefall.freebsd.org> To: olgeni@uli.it, roam@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23683: maintainer update: sysutils/webmin 0.82 -> 0.83 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: maintainer update: sysutils/webmin 0.82 -> 0.83 State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Wed Dec 20 03:41:54 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23683 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 3:43:23 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 03:43:22 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BB27437B402; Wed, 20 Dec 2000 03:43:22 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKBhMv17526; Wed, 20 Dec 2000 03:43:22 -0800 (PST) (envelope-from roam) Date: Wed, 20 Dec 2000 03:43:22 -0800 (PST) From: Message-Id: <200012201143.eBKBhMv17526@freefall.freebsd.org> To: dwcjr@inethouston.net, roam@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23673: Update sysutils/webmin update to version 0.83 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update sysutils/webmin update to version 0.83 State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Wed Dec 20 03:42:15 PST 2000 State-Changed-Why: I've just committed the maintainer's ports/23683, which also included pkg-plist changes (turns out changing the version and checksum was not enough after all :) http://www.freebsd.org/cgi/query-pr.cgi?pr=23673 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 4:20: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 04:20:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2723137B400 for ; Wed, 20 Dec 2000 04:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKCK2l26386; Wed, 20 Dec 2000 04:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 20 Dec 2000 04:20:02 -0800 (PST) Resent-Message-Id: <200012201220.eBKCK2l26386@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, martti.kuparinen@piuha.net Received: from morse.home.net (ppp115.piuha.net [195.165.196.115]) by hub.freebsd.org (Postfix) with ESMTP id B9C1737B400 for ; Wed, 20 Dec 2000 04:19:04 -0800 (PST) Received: (from martti@localhost) by morse.home.net (8.11.1/8.11.1) id eBKCJva01980; Wed, 20 Dec 2000 14:19:57 +0200 (EET) (envelope-from martti) Message-Id: <200012201219.eBKCJva01980@morse.home.net> Date: Wed, 20 Dec 2000 14:19:57 +0200 (EET) From: martti.kuparinen@piuha.net Sender: martti@morse.home.net Reply-To: martti.kuparinen@piuha.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23684: [PATCH] stunnel upgrade Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23684 >Category: ports >Synopsis: [PATCH] stunnel upgrade >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 20 04:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Martti Kuparinen >Release: FreeBSD 4.2-RELEASE i386 >Organization: piuha.net >Environment: >Description: Here's an update to the stunnel package. Version 3.10 was release only few days after 3.9 (http://stunnel.mirt.net/) According to the release notes this should fix the zombie problems described in ports/22121 (but I haven't verified this). >How-To-Repeat: >Fix: diff -ru /usr/ports/security/stunnel/Makefile stunnel/Makefile --- /usr/ports/security/stunnel/Makefile Wed Dec 20 13:43:39 2000 +++ stunnel/Makefile Wed Dec 20 13:59:11 2000 @@ -6,7 +6,7 @@ # PORTNAME= stunnel -PORTVERSION= 3.9 +PORTVERSION= 3.10 CATEGORIES= security MASTER_SITES= http://www.stunnel.org/download/stunnel/src/ \ ftp://opensores.thebunker.net/pub/mirrors/stunnel/ \ diff -ru /usr/ports/security/stunnel/distinfo stunnel/distinfo --- /usr/ports/security/stunnel/distinfo Wed Dec 20 13:43:39 2000 +++ stunnel/distinfo Wed Dec 20 13:59:37 2000 @@ -1 +1 @@ -MD5 (stunnel-3.9.tar.gz) = 3c73fe4db1944af05afcca233ac4b700 +MD5 (stunnel-3.10.tar.gz) = eca047987da225a6e4e7bd705a81f2aa >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 4:23:26 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 04:23:25 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id EC6F337B400; Wed, 20 Dec 2000 04:23:23 -0800 (PST) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id NAA07433; Wed, 20 Dec 2000 13:23:19 +0100 (CET) (envelope-from des@ofug.org) Sender: des@ofug.org X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Alfred Perlstein Cc: asami@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: ports lockfile? References: <20001219113535.Q19572@fw.wintelcom.net> From: Dag-Erling Smorgrav Date: 20 Dec 2000 13:23:18 +0100 In-Reply-To: Alfred Perlstein's message of "Tue, 19 Dec 2000 11:35:35 -0800" Message-ID: Lines: 12 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Alfred Perlstein writes: > Usually when doing an install I'll start building several ports in > at the same time The problem is that frequently the ports will > recurse into the same dependancy, and the two builds will clobber > each other. Use porteasy and specify all the ports you want to build on the command line, then go have lunch. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 4:25:36 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 04:25:34 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 8711C37B400; Wed, 20 Dec 2000 04:25:33 -0800 (PST) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id NAA07450; Wed, 20 Dec 2000 13:25:30 +0100 (CET) (envelope-from des@ofug.org) Sender: des@ofug.org X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Alfred Perlstein Cc: asami@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: ports lockfile? References: <20001219113535.Q19572@fw.wintelcom.net> <20001220094157.C644@ringworld.oblivion.bg> <20001219235750.I19572@fw.wintelcom.net> From: Dag-Erling Smorgrav Date: 20 Dec 2000 13:25:29 +0100 In-Reply-To: Alfred Perlstein's message of "Tue, 19 Dec 2000 23:57:50 -0800" Message-ID: Lines: 11 User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Alfred Perlstein writes: > Well here's the very tricky part that I really haven't worked out > how to do this, the lockf program runs a program with the lock, so > I need to make the lockf program run make again. Use a directory as lock file: mkdir will fail if the directory exists, allowing you to either abort or sleep and loop back. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 4:26:15 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 04:26:13 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 4C77837B400; Wed, 20 Dec 2000 04:26:13 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eBKCQAb18928; Wed, 20 Dec 2000 04:26:10 -0800 (PST) Date: Wed, 20 Dec 2000 04:26:10 -0800 From: Alfred Perlstein To: Dag-Erling Smorgrav Cc: asami@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: ports lockfile? Message-ID: <20001220042610.Q19572@fw.wintelcom.net> References: <20001219113535.Q19572@fw.wintelcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Wed, Dec 20, 2000 at 01:23:18PM +0100 Sender: bright@fw.wintelcom.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Dag-Erling Smorgrav [001220 04:23] wrote: > Alfred Perlstein writes: > > Usually when doing an install I'll start building several ports in > > at the same time The problem is that frequently the ports will > > recurse into the same dependancy, and the two builds will clobber > > each other. > > Use porteasy and specify all the ports you want to build on the > command line, then go have lunch. Sorry... I thought ports by themselves should be easy enough. :) I'll check out porteasy though, thanks. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 4:27:29 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 04:27:27 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 454A337B400; Wed, 20 Dec 2000 04:27:27 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id eBKCROP18950; Wed, 20 Dec 2000 04:27:24 -0800 (PST) Date: Wed, 20 Dec 2000 04:27:24 -0800 From: Alfred Perlstein To: Dag-Erling Smorgrav Cc: asami@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: ports lockfile? Message-ID: <20001220042724.R19572@fw.wintelcom.net> References: <20001219113535.Q19572@fw.wintelcom.net> <20001220094157.C644@ringworld.oblivion.bg> <20001219235750.I19572@fw.wintelcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Wed, Dec 20, 2000 at 01:25:29PM +0100 Sender: bright@fw.wintelcom.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Dag-Erling Smorgrav [001220 04:25] wrote: > Alfred Perlstein writes: > > Well here's the very tricky part that I really haven't worked out > > how to do this, the lockf program runs a program with the lock, so > > I need to make the lockf program run make again. > > Use a directory as lock file: mkdir will fail if the directory exists, > allowing you to either abort or sleep and loop back. It's a good idea, but ensuring cleanup is a real problem when you do that. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 4:59:30 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 04:59:29 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DBA9737B400; Wed, 20 Dec 2000 04:59:28 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKCxSL30764; Wed, 20 Dec 2000 04:59:28 -0800 (PST) (envelope-from roam) Date: Wed, 20 Dec 2000 04:59:28 -0800 (PST) From: Message-Id: <200012201259.eBKCxSL30764@freefall.freebsd.org> To: martti.kuparinen@piuha.net, roam@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23684: [PATCH] stunnel upgrade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] stunnel upgrade State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Wed Dec 20 04:59:15 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23684 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 5:10:11 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 05:10:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B0D4C37B404 for ; Wed, 20 Dec 2000 05:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKDA2n34072; Wed, 20 Dec 2000 05:10:02 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 20 Dec 2000 05:10:02 -0800 (PST) Resent-Message-Id: <200012201310.eBKDA2n34072@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, paulo@nlink.com.br Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ADAE837B400 for ; Wed, 20 Dec 2000 05:09:02 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKD92l33940; Wed, 20 Dec 2000 05:09:02 -0800 (PST) (envelope-from nobody) Message-Id: <200012201309.eBKD92l33940@freefall.freebsd.org> Date: Wed, 20 Dec 2000 05:09:02 -0800 (PST) From: paulo@nlink.com.br Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23685: Fxtv always starts with apectlock true Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23685 >Category: ports >Synopsis: Fxtv always starts with apectlock true >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 20 05:10:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Paulo Fragoso >Release: 4.2-RELEASE >Organization: Nlink ISP >Environment: FreeBSD seneca.nlink.com.br 4.2-RELEASE FreeBSD 4.2-RELEASE #0: Tue Dec 19 10:18:47 BRST 2000 root@seneca.nlink.com.br:/usr/src/sys/compile/KERNEL4 i386 >Description: Fxtv always starts with aspectlock, we can't use comand line like fxtv -geometry 344x259-1-46. It's starting with 4:3 ratio (aspectlock) and there isn't any option to chage this (I think). >How-To-Repeat: fxtv -geometry 344x259-1-46 >Fix: If we do a small change in source code, we can start using a command line like: fxtv -geometry 344x259-1-46 -aspectlock 0 Now it's working fine. Our changes was: *** app_rsrc.h Wed Dec 20 10:57:39 2000 --- app_rsrc-orig.h Wed Dec 20 10:57:13 2000 *************** *** 249,255 **** { "-debug" , RNdebug , XrmoptionSepArg, NULL }, { "-deviceNumber" , RNdeviceNumber , XrmoptionSepArg, NULL }, { "-inputFormat" , RNinputFormat , XrmoptionSepArg, NULL }, ! { "-aspectlock" , RNaspectLock , XrmoptionNoArg , pFALSE }, { "-tunerMode" , RNtunerMode , XrmoptionSepArg, NULL }, { "-defaultChannel" , RNdefaultChannel , XrmoptionSepArg, NULL }, { "-defaultInput" , RNdefaultInput , XrmoptionSepArg, NULL }, --- 249,255 ---- { "-debug" , RNdebug , XrmoptionSepArg, NULL }, { "-deviceNumber" , RNdeviceNumber , XrmoptionSepArg, NULL }, { "-inputFormat" , RNinputFormat , XrmoptionSepArg, NULL }, ! { "-aspectlock" , RNaspectLock , XrmoptionNoArg , pTRUE }, { "-tunerMode" , RNtunerMode , XrmoptionSepArg, NULL }, { "-defaultChannel" , RNdefaultChannel , XrmoptionSepArg, NULL }, { "-defaultInput" , RNdefaultInput , XrmoptionSepArg, NULL }, >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 5:20: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 05:20:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B47F837B698 for ; Wed, 20 Dec 2000 05:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKDK1F35294; Wed, 20 Dec 2000 05:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 20 Dec 2000 05:20:01 -0800 (PST) Resent-Message-Id: <200012201320.eBKDK1F35294@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, zaks@prioris.mini.pw.edu.pl Received: from office.admaster.pl (office.admaster.pl [212.160.251.44]) by hub.freebsd.org (Postfix) with ESMTP id 55DB637B400 for ; Wed, 20 Dec 2000 05:12:03 -0800 (PST) Received: by office.admaster.pl (Postfix, from userid 1001) id 5918D85B02; Wed, 20 Dec 2000 14:12:04 +0100 (CET) Message-Id: <20001220131204.5918D85B02@office.admaster.pl> Date: Wed, 20 Dec 2000 14:12:04 +0100 (CET) From: zaks@prioris.mini.pw.edu.pl Sender: zaks@office.admaster.pl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23687: qt22 port for qt-2.2.3 fails to compile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23687 >Category: ports >Synopsis: qt22 port for qt-2.2.3 fails to compile >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 20 05:20:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Slawek Zak >Release: FreeBSD 4.2-STABLE i386 >Organization: Slawek Zak >Environment: XFree86-3.3.6, qt-2.2.3 >Description: qt22 port fails to compile - many errors regarding lack o qutil library, qt library, moc missing. It's all because of renaming those to libqt2 and moc2 >How-To-Repeat: Just type make build >Fix: Update generated Makefiles to contain -lqt2 and moc2 instead of -lqt and moc >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 5:20: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 05:20:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E404237B402 for ; Wed, 20 Dec 2000 05:20:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKDK0I35285; Wed, 20 Dec 2000 05:20:00 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 20 Dec 2000 05:20:00 -0800 (PST) Resent-Message-Id: <200012201320.eBKDK0I35285@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, mdharnois@home.com Received: from c1030098-a.wtrlo1.ia.home.com (c1030098-a.wtrlo1.ia.home.com [24.11.39.39]) by hub.freebsd.org (Postfix) with ESMTP id 8483937B400 for ; Wed, 20 Dec 2000 05:10:18 -0800 (PST) Received: by c1030098-a.wtrlo1.ia.home.com (Postfix, from userid 1001) id C21F814A70; Wed, 20 Dec 2000 07:10:12 -0600 (CST) Message-Id: <20001220131012.C21F814A70@c1030098-a.wtrlo1.ia.home.com> Date: Wed, 20 Dec 2000 07:10:12 -0600 (CST) From: mdharnois@home.com Sender: mdharnois@c1030098-a.wtrlo1.ia.home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23686: libgtop broken on -current Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23686 >Category: ports >Synopsis: libgtop broken on -current >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 20 05:20:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Michael Harnois >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD mharnois.workgroup.net 5.0-CURRENT FreeBSD 5.0-CURRENT #5: Mon Dec 18 07:13:09 CST 2000 toor@mharnois.workgroup.net:/usr/src/sys/compile/MYKERNEL i386 >Description: proclist.c: In function glibtop_get_proclist_p': proclist.c:90: structure has no member named kp_proc' proclist.c:93: structure has no member named kp_eproc' proclist.c:95: structure has no member named kp_proc' gmake[3]: *** [proclist.lo] Error 1 gmake[3]: Leaving directory /usr/ports/devel/libgtop/work/libgtop-1.0.10/sysdeps/freebsd' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory /usr/ports/devel/libgtop/work/libgtop-1.0.10/sysdeps' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory /usr/ports/devel/libgtop/work/libgtop-1.0.10' gmake: *** [all-recursive-am] Error 2 >How-To-Repeat: make >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 5:20:16 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 05:20:09 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BE8E337B699 for ; Wed, 20 Dec 2000 05:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKDK2w35303; Wed, 20 Dec 2000 05:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 20 Dec 2000 05:20:02 -0800 (PST) Resent-Message-Id: <200012201320.eBKDK2w35303@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, cj@vallcom.net Received: from 214.norrgarden.se (214.norrgarden.se [195.100.133.214]) by hub.freebsd.org (Postfix) with ESMTP id 4399437B400 for ; Wed, 20 Dec 2000 05:12:47 -0800 (PST) Received: (from root@localhost) by 214.norrgarden.se (8.11.1/8.11.1) id eBKDChF01738; Wed, 20 Dec 2000 14:12:43 +0100 (CET) (envelope-from cj) Message-Id: <200012201312.eBKDChF01738@214.norrgarden.se> Date: Wed, 20 Dec 2000 14:12:43 +0100 (CET) From: cj@vallcom.net Sender: cj@214.norrgarden.se Reply-To: cj@vallcom.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23688: update port: irc/bitchx Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23688 >Category: ports >Synopsis: update port: irc/bitchx >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 20 05:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Carl Johan Madestrand >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: Patch by Donald Burr to allow building with SOCKS5 support >How-To-Repeat: >Fix: diff -urN /usr/ports/irc/bitchx/Makefile bitchx/Makefile --- /usr/ports/irc/bitchx/Makefile Tue Dec 12 13:18:09 2000 +++ bitchx/Makefile Wed Dec 20 14:06:14 2000 @@ -2,7 +2,7 @@ # Date created: 26 Jan 1998 # Whom: griffin # -# $FreeBSD: ports/irc/bitchx/Makefile,v 1.26 2000/12/12 08:07:52 roam Exp $ +# $FreeBSD: ports/irc/bitchx/Makefile,v 1.25 2000/12/11 06:58:09 imp Exp $ # PORTNAME= BitchX @@ -44,13 +44,19 @@ .if defined(WITH_TCL) BUILD_DEPENDS+= ${LOCALBASE}/include/tcl8.3/tcl.h:${PORTSDIR}/lang/tcl83 CONFIGURE_ARGS+=--with-tcl \ - --with-tcl-includes=/usr/local/include/tcl8.3 \ - --with-tcl-libs=/usr/local/lib + --with-tcl-includes=${LOCALBASE}/include/tcl8.3 \ + --with-tcl-libs=${LOCALBASE}/lib CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/tcl8.3" post-extract: @uudecode -p ${FILESDIR}/tcl-freebsd.o.uu > ${WRKSRC}/source/tcl.o .endif +.if defined(WITH_SOCKS5) +BUILD_DEPENDS+= ${LOCALBASE}/lib/libsocks5.a${PORTSDIR}/net/socks5 +CONFIGURE_ARGS+=--with-socks5=${LOCALBASE} +CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" +.endif + .if defined(WITH_PLUGINS) CONFIGURE_ARGS+=--with-plugins=pkga,possum,encrypt,hint,abot,acro,amp,blowfish,scan,wavplay,qmail,fserv,nap,qbx PLIST_SUB+= PLUGINS:="" @@ -70,6 +76,7 @@ @${ECHO} "WITH_PLUGINS - Build the plugins" @${ECHO} "WITH_LATIN - Recommended if you are using an ISO-8859-1 display" @${ECHO} "WITH_TCL - Build BitchX with TCL scripting" + @${ECHO} "WITH_SOCKS5 - Build BitchX with SOCKS5 support" post-install: .if !defined(NOPORTDOCS) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 5:46:55 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 05:46:54 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 01A0B37B400; Wed, 20 Dec 2000 05:46:54 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKDkr039668; Wed, 20 Dec 2000 05:46:53 -0800 (PST) (envelope-from roam) Date: Wed, 20 Dec 2000 05:46:53 -0800 (PST) From: Message-Id: <200012201346.eBKDkr039668@freefall.freebsd.org> To: cj@vallcom.net, roam@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23688: update port: irc/bitchx Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: irc/bitchx State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Wed Dec 20 05:44:31 PST 2000 State-Changed-Why: Committed, with two changes: - no use trying to turn back time or revert $FreeBSD tags ;) - adding new functionality (SOCKS support) is a good time for a PORTREVISION bump. http://www.freebsd.org/cgi/query-pr.cgi?pr=23688 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 6:10:10 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 06:10:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3A27C37B400 for ; Wed, 20 Dec 2000 06:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKEA2244581; Wed, 20 Dec 2000 06:10:02 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 20 Dec 2000 06:10:02 -0800 (PST) Resent-Message-Id: <200012201410.eBKEA2244581@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, k5@cheerful.com Received: from m08.alpha-net.ne.jp (m08.alpha-net.ne.jp [210.229.64.38]) by hub.freebsd.org (Postfix) with ESMTP id 42F0B37B400 for ; Wed, 20 Dec 2000 06:01:52 -0800 (PST) Received: from kyoto-tc012-p143.alpha-net.ne.jp (kyoto-tc012-p143.alpha-net.ne.jp [210.237.118.177]) by m08.alpha-net.ne.jp (8.9.3/3.7W) with ESMTP id XAA19469 for ; Wed, 20 Dec 2000 23:01:36 +0900 (JST) Received: by kyoto-tc012-p143.alpha-net.ne.jp (Postfix, from userid 1001) id 5C42C5DD6; Wed, 20 Dec 2000 23:01:38 +0900 (JST) Message-Id: <20001220140138.5C42C5DD6@kyoto-tc012-p143.alpha-net.ne.jp> Date: Wed, 20 Dec 2000 23:01:38 +0900 (JST) From: k5@cheerful.com Sender: k5@kyoto-tc012-p143.alpha-net.ne.jp Reply-To: k5@cheerful.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23691: fix: games/xbloody X manpage error with XFree86-4 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23691 >Category: ports >Synopsis: fix: games/xbloody X manpage error with XFree86-4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 20 06:10:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: FUJISHIMA Satsuki >Release: FreeBSD 5.0-CURRENT i386 >Organization: N/A >Environment: ports-current with XFree86-4. >Description: fixing "X manpage" error with XFree86-4 on bento. approved by MAINTAINER. >How-To-Repeat: w3m -dump http://bento.freebsd.org/errorlogs/errorlogs/e.4.20001204/ \| grep 'X manpage' >Fix: new file: files/patch-aa diff -urN -xCVS /usr/ports/games/xbloody/Makefile games/xbloody/Makefile --- /usr/ports/games/xbloody/Makefile Fri Apr 14 21:27:04 2000 +++ games/xbloody/Makefile Wed Nov 1 09:36:03 2000 @@ -15,7 +15,6 @@ NO_WRKSUBDIR= yes USE_IMAKE= yes -NO_INSTALL_MANPAGES= yes post-install: .if !defined(NOPORTDOCS) diff -urN -xCVS /usr/ports/games/xbloody/files/patch-aa games/xbloody/files/patch-aa --- /usr/ports/games/xbloody/files/patch-aa Thu Jan 1 09:00:00 1970 +++ games/xbloody/files/patch-aa Wed Nov 1 09:31:12 2000 @@ -0,0 +1,11 @@ +--- Imakefile.orig Mon Oct 31 20:34:58 1994 ++++ Imakefile Wed Nov 1 09:30:59 2000 +@@ -8,7 +8,7 @@ + SRCS = xbloody.c + OBJS = xbloody.o + +-ComplexProgramTarget(xbloody) ++ComplexProgramTargetNoMan(xbloody) + + xbloody.tar.gz: + gtar zcvf - Imakefile README.sjis *.[hc] *.xbm > xbloody.tar.gz >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 6:10:10 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 06:10:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A99837B402 for ; Wed, 20 Dec 2000 06:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKEA2C44572; Wed, 20 Dec 2000 06:10:02 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 20 Dec 2000 06:10:02 -0800 (PST) Resent-Message-Id: <200012201410.eBKEA2C44572@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, k5@cheerful.com Received: from m08.alpha-net.ne.jp (m08.alpha-net.ne.jp [210.229.64.38]) by hub.freebsd.org (Postfix) with ESMTP id 50FDE37B400 for ; Wed, 20 Dec 2000 06:01:42 -0800 (PST) Received: from kyoto-tc012-p143.alpha-net.ne.jp (kyoto-tc012-p143.alpha-net.ne.jp [210.237.118.177]) by m08.alpha-net.ne.jp (8.9.3/3.7W) with ESMTP id XAA19468 for ; Wed, 20 Dec 2000 23:01:35 +0900 (JST) Received: by kyoto-tc012-p143.alpha-net.ne.jp (Postfix, from userid 1001) id BD6285E21; Wed, 20 Dec 2000 23:01:38 +0900 (JST) Message-Id: <20001220140138.BD6285E21@kyoto-tc012-p143.alpha-net.ne.jp> Date: Wed, 20 Dec 2000 23:01:38 +0900 (JST) From: k5@cheerful.com Sender: k5@kyoto-tc012-p143.alpha-net.ne.jp Reply-To: k5@cheerful.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23690: fix: sysutils/xloadface X manpage error with XFree86-4 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23690 >Category: ports >Synopsis: fix: sysutils/xloadface X manpage error with XFree86-4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 20 06:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: FUJISHIMA Satsuki >Release: FreeBSD 5.0-CURRENT i386 >Organization: N/A >Environment: ports-current with XFree86-4. >Description: fixing "X manpage" error with XFree86-4 on bento. approved by MAINTAINER. >How-To-Repeat: w3m -dump http://bento.freebsd.org/errorlogs/errorlogs/e.4.20001204/ \| grep 'X manpage' >Fix: diff -urN -xCVS /usr/ports/sysutils/xloadface/Makefile sysutils/xloadface/Makefile --- /usr/ports/sysutils/xloadface/Makefile Sat Apr 22 19:13:58 2000 +++ sysutils/xloadface/Makefile Wed Nov 1 21:01:28 2000 @@ -19,9 +19,12 @@ XLOADFACEDIR= $(X11BASE)/lib/X11/xloadface MAN1= xloadface.1 +MANLANG= ja + +pre-build: + ${LOCALBASE}/bin/nkf -e ${WRKSRC}/xloadface.1 > ${WRKSRC}/xloadface.man pre-install: - @nkf -e ${WRKSRC}/xloadface.1 > ${WRKSRC}/xloadface.man ${MKDIR} $(XLOADFACEDIR) ${INSTALL_DATA} ${WRKSRC}/README $(XLOADFACEDIR) ${INSTALL_DATA} ${WRKSRC}/host_org.sample $(XLOADFACEDIR) diff -urN -xCVS /usr/ports/sysutils/xloadface/files/patch-01 sysutils/xloadface/files/patch-01 --- /usr/ports/sysutils/xloadface/files/patch-01 Sat Dec 7 08:02:10 1996 +++ sysutils/xloadface/files/patch-01 Wed Nov 1 21:04:01 2000 @@ -1,7 +1,8 @@ ---- Imakefile.orig Tue Feb 18 17:59:43 1992 -+++ Imakefile Fri Dec 6 14:27:44 1996 -@@ -11,4 +11,3 @@ +--- Imakefile.orig Wed Feb 19 10:59:43 1992 ++++ Imakefile Wed Nov 1 21:03:59 2000 +@@ -11,4 +11,4 @@ SYS_LIBRARIES = -lm ComplexProgramTarget(xloadface) -InstallManPage(xloadface.1,$(MANDIR)/xalive.n) ++InstallManPage(xloadface,$(MANPATH)/ja/man1) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 6:37:50 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 06:37:48 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mail6.lig.bellsouth.net (mail6.lig.bellsouth.net [205.152.0.91]) by hub.freebsd.org (Postfix) with ESMTP id 47B5E37B400 for ; Wed, 20 Dec 2000 06:37:48 -0800 (PST) Received: from coastalgeology.org (adsl-20-127-74.chs.bellsouth.net [66.20.127.74]) by mail6.lig.bellsouth.net (3.3.5alt/0.75.2) with SMTP id JAA12462 for ; Wed, 20 Dec 2000 09:37:47 -0500 (EST) Received: (qmail 54479 invoked by uid 1000); 20 Dec 2000 14:57:49 -0000 Date: Wed, 20 Dec 2000 09:57:49 -0500 From: Jonathan Pennington To: freebsd-ports@freebsd.org Subject: ${PYTHON_VERSION} Message-ID: <20001220095749.A54467@coastalgeology.org> Reply-To: Jonathan Pennington Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Warning: Bill Gates Controls The Matrix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org A number of the py- ports require python1.5 explicity, and install themselves in ${libdir}/python1.5 vs python2.0. I this acceptable? It seems that USE_PYTHON and MAKE_ENV would be acceptable in all of these cases. I'm new to ports, so if this is acceptable I'll leave it alone, if it is not, I'll contact the individual maintainers with diff files. Cheers, -J -- Jonathan Pennington | http://coastalgeology.org Site Manager | Protection and stewardship CoastalGeology.Org (CGO) | through public education. john@coastalgeology.org | Join CGO, make a difference. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 6:45:50 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 06:45:47 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 8E23437B404 for ; Wed, 20 Dec 2000 06:45:43 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eBKEjPf29418; Wed, 20 Dec 2000 16:45:26 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.1/8.9.3) with ESMTP id eBKEjRl22586; Wed, 20 Dec 2000 16:45:27 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A40C606.69A0D8FF@FreeBSD.org> Date: Wed, 20 Dec 2000 16:45:26 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Jonathan Pennington Cc: freebsd-ports@FreeBSD.org Subject: Re: ${PYTHON_VERSION} References: <20001220095749.A54467@coastalgeology.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jonathan Pennington wrote: > A number of the py- ports require python1.5 explicity, and > install themselves in ${libdir}/python1.5 vs python2.0. I this > acceptable? It seems that USE_PYTHON and MAKE_ENV would be acceptable > in all of these cases. I'm new to ports, so if this is acceptable I'll > leave it alone, if it is not, I'll contact the individual maintainers > with diff files. Most likely that the respective maintainers for those ports do not care or are not aware of the fact that their ports need to be adjusted to comply with the new FreeBSD Python world order (aka bsd.python.mk). Thus, you are welcome to contact those maintainers with diffs and submit your patches using send-pr(1) if you will not have any response from some of them. Thanks! -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 7: 5: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 07:05:03 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from nemesis.worldnet.net (nemesis.worldnet.net [195.3.3.18]) by hub.freebsd.org (Postfix) with ESMTP id 0482B37B402 for ; Wed, 20 Dec 2000 07:05:01 -0800 (PST) Received: from m2.worldnet.net (m2.worldnet.net [195.3.3.6]) by nemesis.worldnet.net (8.9.3/8.9.3) with ESMTP id QAA14750; Wed, 20 Dec 2000 16:07:42 +0100 (CET) Received: from greatoak.home (p14-044.province.worldnet.fr [195.3.14.44]) by m2.worldnet.net (8.9.3/8.9.3) with ESMTP id QAA29806; Wed, 20 Dec 2000 16:04:53 +0100 (CET) Received: (from pcasidy@localhost) by greatoak.home (8.11.1/8.11.1) id eBKEBkE01454; Wed, 20 Dec 2000 15:11:46 +0100 (CET) (envelope-from pcasidy) Message-Id: <200012201411.eBKEBkE01454@greatoak.home> Date: Wed, 20 Dec 2000 15:11:45 +0100 (CET) From: Philippe CASIDY Subject: Re: devel/ORBit uncleaned or CVS misbehavior ? To: roam@orbitel.bg Cc: freebsd-ports@freebsd.org In-Reply-To: <20001220131228.H644@ringworld.oblivion.bg> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 20 Dec, Peter Pentchev wrote: > On Wed, Dec 20, 2000 at 11:47:58AM +0100, Philippe CASIDY wrote: >> Hi! >> >> While tracking which port categories I still have to update to the new >> layout, I found that the port devel/ORBIT has still have old pkg/* >> files! >> >> I cvsuped devel categories last night and I update my ports using : >> cvs -q update -d -P >> >> I alwayes use this command and it worked greats for all other ports I >> have already updated: >> audio, archivers, ... >> >> Strange, in the repository, I only have >> /home/ncvs/ports/devel/ORBit/pkg/Attic >> >> Anyone has noticed this behavior? > > Are there any files in that pkg/ directory? As has been mentioned > several times on this list, cvs update -P only removes empty dirs - > empty both in the repository *and* on your local disk. I have found > non-removed pkg/ and especially patches/ subdirs as a result of leftover > .rej and .orig files from failed patches of my own. > > Hope that helps. > > G'luck, > Peter > While trying to show you how weird it looked like to me I just found : bash-2.03$ cvs status DESCR =================================================================== File: DESCR Status: Up-to-date Working revision: 1.1.1.1 Wed Dec 20 14:06:00 2000 Repository revision: 1.1.1.1 /home/ncvs/ports/devel/ORBit/pkg/Attic/DESCR,v Sticky Tag: RELEASE_4_1_0 (revision: 1.1.1.1) Sticky Date: (none) Sticky Options: (none) I remember once I had to use this specific version instead of a more recent one... So now, I will use the following command to update my port : cvs -q update -d -P -A -A to reset sticky tags! Sorry for the noise! Have a nice day. Phil. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 7: 7:15 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 07:07:13 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from spirit.jaded.net (d226-59-226.home.cgocable.net [24.226.59.226]) by hub.freebsd.org (Postfix) with ESMTP id 6EF0837B699; Wed, 20 Dec 2000 07:07:12 -0800 (PST) Received: (from dan@localhost) by spirit.jaded.net (8.11.1/8.11.1) id eBKF6uE25435; Wed, 20 Dec 2000 10:06:56 -0500 (EST) (envelope-from dan) Date: Wed, 20 Dec 2000 10:06:56 -0500 From: Dan Moschuk To: "David O'Brien" Cc: developers@FreeBSD.org, ports@FreeBSD.org Subject: Re: New bsd.port.mk patch Message-ID: <20001220100656.A25068@spirit.jaded.net> References: <20001220001338.A85396@spirit.jaded.net> <20001220011613.A42430@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001220011613.A42430@dragon.nuxi.com>; from obrien@FreeBSD.org on Wed, Dec 20, 2000 at 01:16:13AM -0800 Sender: dan@spirit.jaded.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org | > like to commit this in the next few days (with -STABLE following a few | > days afterwards). | | There are no branches in /usr/ports. Thus a single commit gets both | -current and -stable. Er, of course. Lack of sleep tends to warp logical trains of thought. :-) -- Man is a rational animal who always loses his temper when he is called upon to act in accordance with the dictates of reason. -- Oscar Wilde To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 7:14:39 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 07:14:38 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2DE9137B400; Wed, 20 Dec 2000 07:14:38 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKFEcd56397; Wed, 20 Dec 2000 07:14:38 -0800 (PST) (envelope-from kevlo) Date: Wed, 20 Dec 2000 07:14:38 -0800 (PST) From: Message-Id: <200012201514.eBKFEcd56397@freefall.freebsd.org> To: roman@xpert.com, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23613: MAINTAINER UPGRADE: graphics/xine 0.3.1->0.3.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MAINTAINER UPGRADE: graphics/xine 0.3.1->0.3.2 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Wed Dec 20 07:14:11 PST 2000 State-Changed-Why: Committed, thanks. BTW, I fix MASTER_SITES. http://www.freebsd.org/cgi/query-pr.cgi?pr=23613 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 7:19:29 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 07:19:27 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id C505237B400; Wed, 20 Dec 2000 07:19:23 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eBKFJ6f30394; Wed, 20 Dec 2000 17:19:16 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.1/8.9.3) with ESMTP id eBKFJ8l22677; Wed, 20 Dec 2000 17:19:08 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A40CDEB.7D5D73F1@FreeBSD.org> Date: Wed, 20 Dec 2000 17:19:07 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: reg@FreeBSD.org Cc: ports@FreeBSD.org Subject: What's wrong with Mozilla 0.6? Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I noticed that Mozilla 0.6 was released about a week ago. Are there any reasons why we still do not have it in our ports tree? -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 7:27:43 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 07:27:41 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BEC8537B400; Wed, 20 Dec 2000 07:27:10 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKFRAM04215; Wed, 20 Dec 2000 07:27:10 -0800 (PST) (envelope-from kevlo) Date: Wed, 20 Dec 2000 07:27:10 -0800 (PST) From: Message-Id: <200012201527.eBKFRAM04215@freefall.freebsd.org> To: dwcjr@inethouston.net, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23675: Update x11/kdebase2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update x11/kdebase2 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Wed Dec 20 07:25:52 PST 2000 State-Changed-Why: You're wrong. Those files are in the tars. Please check again, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23675 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 7:33:30 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 07:33:29 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5539937B698; Wed, 20 Dec 2000 07:33:29 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKFXTS28789; Wed, 20 Dec 2000 07:33:29 -0800 (PST) (envelope-from kevlo) Date: Wed, 20 Dec 2000 07:33:29 -0800 (PST) From: Message-Id: <200012201533.eBKFXTS28789@freefall.freebsd.org> To: k5@cheerful.com, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23690: fix: sysutils/xloadface X manpage error with XFree86-4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix: sysutils/xloadface X manpage error with XFree86-4 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Wed Dec 20 07:33:16 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23690 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 7:38:42 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 07:38:41 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E214037B699; Wed, 20 Dec 2000 07:38:36 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKFcac33412; Wed, 20 Dec 2000 07:38:36 -0800 (PST) (envelope-from kevlo) Date: Wed, 20 Dec 2000 07:38:36 -0800 (PST) From: Message-Id: <200012201538.eBKFcac33412@freefall.freebsd.org> To: k5@cheerful.com, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23691: fix: games/xbloody X manpage error with XFree86-4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix: games/xbloody X manpage error with XFree86-4 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Wed Dec 20 07:38:20 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23691 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 7:50: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 07:50:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 876CB37B400 for ; Wed, 20 Dec 2000 07:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKFo2I35078; Wed, 20 Dec 2000 07:50:02 -0800 (PST) (envelope-from gnats) Date: Wed, 20 Dec 2000 07:50:02 -0800 (PST) Message-Id: <200012201550.eBKFo2I35078@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Scot W. Hetzel" Subject: Re: ports/23680: Update mail/cyrus update for portlint compliance Reply-To: "Scot W. Hetzel" Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23680; it has been noted by GNATS. From: "Scot W. Hetzel" To: , Cc: Subject: Re: ports/23680: Update mail/cyrus update for portlint compliance Date: Wed, 20 Dec 2000 09:41:01 -0600 From: This patch has one problem, the following is not needed in the Makefile, as the security/cyrus-sasl port owns the /var/pwcheck directory now. PR 22465 was submitted Nov 1st to fix this problem, but no action was taken, after it was assigned to the maintaner (stb@freebsd.org). > @${ECHO} "@mode u=rwx,go=" >>${TMPPLIST} > - @${ECHO} "@exec mkdir /var/pwcheck" >>${TMPPLIST} > - @${ECHO} "@exec chown cyrus:cyrus /var/pwcheck" >>${TMPPLIST} > - @${ECHO} "@exec chmod go= /var/pwcheck" >>${TMPPLIST} > - @${ECHO} "@exec mkdir /var/spool/imap" >>${TMPPLIST} > - @${ECHO} "@exec chown cyrus:cyrus /var/spool/imap" >>${TMPPLIST} > - @${ECHO} "@exec chmod g-w,o= /var/spool/imap" >>${TMPPLIST} > + @${ECHO} "@exec ${MKDIR} /var/pwcheck" >>${TMPPLIST} > + @${ECHO} "@exec ${CHOWN} cyrus:cyrus /var/pwcheck" >>${TMPPLIST} > + @${ECHO} "@exec ${CHMOD} go= /var/pwcheck" >>${TMPPLIST} > + @${ECHO} "@exec ${MKDIR} /var/spool/imap" >>${TMPPLIST} > + @${ECHO} "@exec ${CHOWN} cyrus:cyrus /var/spool/imap" >>${TMPPLIST} > + @${ECHO} "@exec ${CHMOD} g-w,o= /var/spool/imap" >>${TMPPLIST} > + @${ECHO} "@exec ${CHMOD} g-w,o= /var/spool/imap" >>${TMPPLIST} > @${ECHO} "@cwd /var" >>${TMPPLIST} > @${ECHO} "@dirrm pwcheck" >>${TMPPLIST} Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 8:11: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 08:11:04 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by hub.freebsd.org (Postfix) with ESMTP id 3BE3037B400; Wed, 20 Dec 2000 08:11:04 -0800 (PST) Received: by pcwin002.win.tue.nl (Postfix, from userid 1001) id CF3BC13488; Wed, 20 Dec 2000 17:10:59 +0100 (CET) Date: Wed, 20 Dec 2000 17:10:59 +0100 From: Stijn Hoop To: Maxim Sobolev Cc: ports@freebsd.org Subject: Re: What's wrong with Mozilla 0.6? Message-ID: <20001220171059.G4514@pcwin002.win.tue.nl> References: <3A40CDEB.7D5D73F1@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A40CDEB.7D5D73F1@FreeBSD.org>; from sobomax@freebsd.org on Wed, Dec 20, 2000 at 05:19:07PM +0200 Sender: stijn@pcwin002.win.tue.nl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Wed, Dec 20, 2000 at 05:19:07PM +0200, Maxim Sobolev wrote: > I noticed that Mozilla 0.6 was released about a week ago. Are there any > reasons why we still do not have it in our ports tree? Presumably because it doesn't run on 4-STABLE right now? See the thread on -stable (mozilla and 4.2-RELEASE). FWIW, the fixes from Daniel Eischen from message <977175292.3a3e82fcc5d68@webmail.harmonic.co.il> work for me as of the latest nightly (20001222), and boy, is the new mozilla *FAST*. But the fix hasn't gone into -STABLE yet (it might not even be the correct one), which means that mozilla-0.6 will coredump on -STABLE afaik. --Stijn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 8:12:46 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 08:12:45 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by hub.freebsd.org (Postfix) with ESMTP id 2BBF337B400; Wed, 20 Dec 2000 08:12:45 -0800 (PST) Received: by pcwin002.win.tue.nl (Postfix, from userid 1001) id 5FA0313488; Wed, 20 Dec 2000 17:12:41 +0100 (CET) Date: Wed, 20 Dec 2000 17:12:41 +0100 From: Stijn Hoop To: Maxim Sobolev Cc: ports@freebsd.org Subject: Re: What's wrong with Mozilla 0.6? Message-ID: <20001220171241.A50923@pcwin002.win.tue.nl> References: <3A40CDEB.7D5D73F1@FreeBSD.org> <20001220171059.G4514@pcwin002.win.tue.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001220171059.G4514@pcwin002.win.tue.nl>; from stijn@win.tue.nl on Wed, Dec 20, 2000 at 05:10:59PM +0100 Sender: stijn@pcwin002.win.tue.nl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Dec 20, 2000 at 05:10:59PM +0100, Stijn Hoop wrote: > as of the latest nightly (20001222), and boy, is the new mozilla *FAST*. ^^^^^^^^^^^^^^ 2000/12/20 of course... --Stijn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 8:30:12 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 08:30:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F6B637B699 for ; Wed, 20 Dec 2000 08:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKGU2h42468; Wed, 20 Dec 2000 08:30:02 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 20 Dec 2000 08:30:02 -0800 (PST) Resent-Message-Id: <200012201630.eBKGU2h42468@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, k5@cheerful.com Received: from m08.alpha-net.ne.jp (m08.alpha-net.ne.jp [210.229.64.38]) by hub.freebsd.org (Postfix) with ESMTP id 5C86637B404 for ; Wed, 20 Dec 2000 08:26:22 -0800 (PST) Received: from kyoto-tc012-p49.alpha-net.ne.jp (kyoto-tc012-p49.alpha-net.ne.jp [210.237.119.177]) by m08.alpha-net.ne.jp (8.9.3/3.7W) with ESMTP id BAA05889 for ; Thu, 21 Dec 2000 01:26:15 +0900 (JST) Received: by kyoto-tc012-p49.alpha-net.ne.jp (Postfix, from userid 1001) id 39AC65E6E; Thu, 21 Dec 2000 01:26:14 +0900 (JST) Message-Id: <20001220162614.39AC65E6E@kyoto-tc012-p49.alpha-net.ne.jp> Date: Thu, 21 Dec 2000 01:26:14 +0900 (JST) From: k5@cheerful.com Sender: k5@kyoto-tc012-p49.alpha-net.ne.jp Reply-To: k5@cheerful.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23695: fix: www/wmnetselect X manpage error with XFree86-4 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23695 >Category: ports >Synopsis: fix: www/wmnetselect X manpage error with XFree86-4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 20 08:30:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: FUJISHIMA Satsuki >Release: FreeBSD 5.0-CURRENT i386 >Organization: N/A >Environment: ports-current with XFree86-4. >Description: fixing "X manpage" error with XFree86-4 on bento. MAINTAINER does not respond for 10 days. >How-To-Repeat: w3m -dump http://bento.freebsd.org/errorlogs/errorlogs/e.4.20001204/ \| grep 'X manpage' >Fix: new file: files/patch-aa diff -urN -xCVS /usr/ports/www/wmnetselect/Makefile www/wmnetselect/Makefile --- /usr/ports/www/wmnetselect/Makefile Thu Aug 3 18:26:48 2000 +++ www/wmnetselect/Makefile Wed Nov 1 09:35:24 2000 @@ -14,7 +14,6 @@ USE_IMAKE= yes USE_XPM= yes -NO_INSTALL_MANPAGES= yes do-install: ${INSTALL_PROGRAM} ${WRKSRC}/wmnetselect ${X11BASE}/bin diff -urN -xCVS /usr/ports/www/wmnetselect/files/patch-aa www/wmnetselect/files/patch-aa --- /usr/ports/www/wmnetselect/files/patch-aa Thu Jan 1 09:00:00 1970 +++ www/wmnetselect/files/patch-aa Wed Nov 1 09:06:58 2000 @@ -0,0 +1,8 @@ +--- Imakefile.orig Sat Apr 17 23:10:44 1999 ++++ Imakefile Wed Nov 1 09:06:49 2000 +@@ -9,4 +9,4 @@ + SRCS = wmnetselect.c + OBJS = wmnetselect.o + +-ComplexProgramTarget(wmnetselect) ++ComplexProgramTargetNoMan(wmnetselect) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 8:30:12 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 08:30:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B48737B402 for ; Wed, 20 Dec 2000 08:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKGU1F42450; Wed, 20 Dec 2000 08:30:01 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 20 Dec 2000 08:30:01 -0800 (PST) Resent-Message-Id: <200012201630.eBKGU1F42450@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, k5@cheerful.com Received: from m08.alpha-net.ne.jp (m08.alpha-net.ne.jp [210.229.64.38]) by hub.freebsd.org (Postfix) with ESMTP id C12E837B400 for ; Wed, 20 Dec 2000 08:26:21 -0800 (PST) Received: from kyoto-tc012-p49.alpha-net.ne.jp (kyoto-tc012-p49.alpha-net.ne.jp [210.237.119.177]) by m08.alpha-net.ne.jp (8.9.3/3.7W) with ESMTP id BAA05888 for ; Thu, 21 Dec 2000 01:26:15 +0900 (JST) Received: by kyoto-tc012-p49.alpha-net.ne.jp (Postfix, from userid 1001) id 0EEFF5E21; Thu, 21 Dec 2000 01:26:14 +0900 (JST) Message-Id: <20001220162614.0EEFF5E21@kyoto-tc012-p49.alpha-net.ne.jp> Date: Thu, 21 Dec 2000 01:26:14 +0900 (JST) From: k5@cheerful.com Sender: k5@kyoto-tc012-p49.alpha-net.ne.jp Reply-To: k5@cheerful.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23693: fix: games/mindfocus X manpage error with XFree86-4 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23693 >Category: ports >Synopsis: fix: games/mindfocus X manpage error with XFree86-4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 20 08:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: FUJISHIMA Satsuki >Release: FreeBSD 5.0-CURRENT i386 >Organization: N/A >Environment: ports-current with XFree86-4. >Description: fixing "X manpage" error with XFree86-4 on bento. MAINTAINER does not respond for 10 days. >How-To-Repeat: w3m -dump http://bento.freebsd.org/errorlogs/errorlogs/e.4.20001204/ \| grep 'X manpage' >Fix: new file: files/patch-ac diff -urN -xCVS /usr/ports/games/mindfocus/Makefile games/mindfocus/Makefile --- /usr/ports/games/mindfocus/Makefile Thu Aug 3 18:23:38 2000 +++ games/mindfocus/Makefile Wed Nov 1 09:35:55 2000 @@ -15,7 +15,6 @@ USE_IMAKE= yes USE_XPM= yes -NO_INSTALL_MANPAGES= yes RESTRICTED= 'contains commercial character data' post-install: diff -urN -xCVS /usr/ports/games/mindfocus/files/patch-ac games/mindfocus/files/patch-ac --- /usr/ports/games/mindfocus/files/patch-ac Thu Jan 1 09:00:00 1970 +++ games/mindfocus/files/patch-ac Wed Nov 1 07:25:21 2000 @@ -0,0 +1,11 @@ +--- mindfocus/Imakefile.orig Wed Jun 14 20:00:24 2000 ++++ mindfocus/Imakefile Wed Nov 1 07:25:08 2000 +@@ -27,7 +27,7 @@ + + CFLAGS += $(CDEFINES) + +-ComplexProgramTarget(mindfocus) ++ComplexProgramTargetNoMan(mindfocus) + InstallNamedNonExec(../system.mindfocus,system.mindfocus,DATADIR) + + mindfocus.o:: ../lib/inifile/inifile.h mfc.h >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 8:30:26 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 08:30:12 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 22A5B37B400 for ; Wed, 20 Dec 2000 08:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKGU2142459; Wed, 20 Dec 2000 08:30:02 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 20 Dec 2000 08:30:02 -0800 (PST) Resent-Message-Id: <200012201630.eBKGU2142459@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, k5@cheerful.com Received: from m08.alpha-net.ne.jp (m08.alpha-net.ne.jp [210.229.64.38]) by hub.freebsd.org (Postfix) with ESMTP id D9D4737B402 for ; Wed, 20 Dec 2000 08:26:21 -0800 (PST) Received: from kyoto-tc012-p49.alpha-net.ne.jp (kyoto-tc012-p49.alpha-net.ne.jp [210.237.119.177]) by m08.alpha-net.ne.jp (8.9.3/3.7W) with ESMTP id BAA05887 for ; Thu, 21 Dec 2000 01:26:14 +0900 (JST) Received: by kyoto-tc012-p49.alpha-net.ne.jp (Postfix, from userid 1001) id CBC7E5DD6; Thu, 21 Dec 2000 01:26:14 +0900 (JST) Message-Id: <20001220162614.CBC7E5DD6@kyoto-tc012-p49.alpha-net.ne.jp> Date: Thu, 21 Dec 2000 01:26:14 +0900 (JST) From: k5@cheerful.com Sender: k5@kyoto-tc012-p49.alpha-net.ne.jp Reply-To: k5@cheerful.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23694: fix: audio/xmix X manpage error with XFree86-4 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23694 >Category: ports >Synopsis: fix: audio/xmix X manpage error with XFree86-4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 20 08:30:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: FUJISHIMA Satsuki >Release: FreeBSD 5.0-CURRENT i386 >Organization: N/A >Environment: ports-current with XFree86-4. >Description: fixing "X manpage" error with XFree86-4 on bento. MAINTAINER does not respond for 10 days. >How-To-Repeat: w3m -dump http://bento.freebsd.org/errorlogs/errorlogs/e.4.20001204/ \| grep 'X manpage' >Fix: files/patch-aa was splitted into patch-a[ab] new file: files/patch-ab diff -urN -xCVS /usr/ports/audio/xmix/Makefile audio/xmix/Makefile --- /usr/ports/audio/xmix/Makefile Sun Apr 9 06:24:54 2000 +++ audio/xmix/Makefile Wed Nov 1 10:26:21 2000 @@ -21,8 +21,10 @@ MAN1= xmix.1 -pre-install: +pre-build: ${CP} ${WRKSRC}/xmix.1 ${WRKSRC}/xmix.man + +pre-install: ${INSTALL_DATA} $(WRKSRC)/XMix ${PREFIX}/lib/X11/app-defaults .include diff -urN -xCVS /usr/ports/audio/xmix/files/patch-aa audio/xmix/files/patch-aa --- /usr/ports/audio/xmix/files/patch-aa Sat Jul 1 18:12:51 1995 +++ audio/xmix/files/patch-aa Wed Nov 1 10:26:46 2000 @@ -1,37 +1,10 @@ -diff -rc ../../xmix.orig/Imakefile ./Imakefile -*** ../../xmix.orig/Imakefile Fri Jun 30 18:49:35 1995 ---- ./Imakefile Fri Jun 30 20:11:30 1995 -*************** -*** 14,17 **** - - LOCAL_LIBRARIES = $(XAWLIB) $(XMULIB) $(XTOOLLIB) $(XLIB) - -! NormalProgramTarget(xmix,$(OBJS1),,$(LOCAL_LIBRARIES),) ---- 14,19 ---- - - LOCAL_LIBRARIES = $(XAWLIB) $(XMULIB) $(XTOOLLIB) $(XLIB) - -! PROGRAM = $(PROGRAMS) -! -! ComplexProgramTarget_1($(PROGRAM),$(LOCAL_LIBRARIES),) -Only in ./: Imakefile.orig -diff -rc ../../xmix.orig/xmix.c ./xmix.c -*** ../../xmix.orig/xmix.c Fri Jun 30 20:09:41 1995 ---- ./xmix.c Fri Jun 30 20:11:49 1995 -*************** -*** 77,83 **** - #include "square_empty.bit" - #include "square_with_x.bit" - -! #include - - #define SOUND_FULL_SCALE 100.0 - #define MAX_SOUND_VOL 95 ---- 77,83 ---- - #include "square_empty.bit" - #include "square_with_x.bit" - -! #include - - #define SOUND_FULL_SCALE 100.0 - #define MAX_SOUND_VOL 95 +--- Imakefile.orig Wed Feb 2 13:54:35 1994 ++++ Imakefile Wed Nov 1 10:25:40 2000 +@@ -14,4 +14,6 @@ + + LOCAL_LIBRARIES = $(XAWLIB) $(XMULIB) $(XTOOLLIB) $(XLIB) + +-NormalProgramTarget(xmix,$(OBJS1),,$(LOCAL_LIBRARIES),) ++PROGRAM = $(PROGRAMS) ++ ++ComplexProgramTarget_1($(PROGRAM),$(LOCAL_LIBRARIES),) diff -urN -xCVS /usr/ports/audio/xmix/files/patch-ab audio/xmix/files/patch-ab --- /usr/ports/audio/xmix/files/patch-ab Thu Jan 1 09:00:00 1970 +++ audio/xmix/files/patch-ab Wed Nov 1 10:30:22 2000 @@ -0,0 +1,11 @@ +--- xmix.c.orig Wed Nov 1 10:29:04 2000 ++++ xmix.c Wed Nov 1 10:29:04 2000 +@@ -77,7 +77,7 @@ + #include "square_empty.bit" + #include "square_with_x.bit" + +-#include ++#include + + #define SOUND_FULL_SCALE 100.0 + #define MAX_SOUND_VOL 95 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 8:51:40 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 08:51:39 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mail5.lig.bellsouth.net (mail5.lig.bellsouth.net [205.152.0.12]) by hub.freebsd.org (Postfix) with ESMTP id 4E37137B400 for ; Wed, 20 Dec 2000 08:51:35 -0800 (PST) Received: from coastalgeology.org (adsl-20-127-74.chs.bellsouth.net [66.20.127.74]) by mail5.lig.bellsouth.net (3.3.5alt/0.75.2) with SMTP id LAA22694 for ; Wed, 20 Dec 2000 11:51:30 -0500 (EST) Received: (qmail 59194 invoked by uid 1000); 20 Dec 2000 17:11:33 -0000 Date: Wed, 20 Dec 2000 12:11:33 -0500 From: Jonathan Pennington To: freebsd-ports@freebsd.org Subject: ${PYTHON_SITELIBDIR}/site-packages Message-ID: <20001220121132.A59161@coastalgeology.org> Reply-To: Jonathan Pennington Mail-Followup-To: Jonathan Pennington , freebsd-ports@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Warning: Bill Gates Controls The Matrix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Does the initial python install build ${PYTHON_SITELIBDIR}/site-packages? It seems counterproductive for all these packages to try to make that directory when it's needed by every other package. If the python install makes that dir in every case, I can remove this step in the diffs. Cheers, -J -- Jonathan Pennington | http://coastalgeology.org Site Manager | Protection and stewardship CoastalGeology.Org (CGO) | through public education. john@coastalgeology.org | Join CGO, make a difference. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 8:57: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 08:57:04 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from xram.ru (unknown [212.45.6.38]) by hub.freebsd.org (Postfix) with ESMTP id B39E337B69C for ; Wed, 20 Dec 2000 08:56:57 -0800 (PST) Received: from xram.ru ([127.0.0.1]) by xram.ru with Microsoft SMTPSVC(5.0.2172.1); Wed, 20 Dec 2000 19:55:31 +0300 From: "www.xram.ru" To: Subject: =?Windows-1251?Q?=CF=EE=E7=E4=F0=E0=E2=EB=FF=E5=EC=20?= =?Windows-1251?Q?=F1=20=CD=EE=E2=FB=EC=20=C3=EE=E4=EE=EC!?= Date: Wed, 20 Dec 2000 19:55:31 Ìîñêîâñêîå âðåìÿ (çèìà) MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1251" Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: xram.ru Message-ID: X-OriginalArrivalTime: 20 Dec 2000 16:55:32.0051 (UTC) FILETIME=[A9FDE230:01C06AA5] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ñåðäå÷íî ïîçäðàâëÿåì Âàñ ñ Íîâûì Ãîäîì!! Æåëàåì Âàì íà Íîâûé ãîä âñåõ ðàäîñòåé íà ñâåòå, Çäîðîâüÿ íà ñòî ëåò âïåðåä è Âàì, è Âàøèì äåòÿì! Ïóñòü ðàäîñòü â áóäóùåì ãîäó Âàì áóäåò ÷óäíûì äàðîì, À ñëåçû, ñêóêó è áåäó îñòàâüòå ëó÷øå â ñòàðîì! :)) ------------------------------------------------------------- Âñå ãîòîâÿòñÿ ê âñòðå÷å Íîâîãî Ãîäà. Ãîòîâÿò ïîäàðêè ñâîèì äðóçüÿì, ëþáèìûì, áëèçêèì è äåòÿì. Íî ïîðîé ëþäè çàáûâàþò, ÷òî â êàæäîé ñåìüå åñòü äåòè è ðàçíèöà ëèøü â òîì, ÷òî â îäíèõ ñåìüÿõ - äåòè, ñîãðåòûå çàáîòîé áëàãîïîëó÷íûõ ðîäèòåëåé - çäîðîâû è ñ÷àñòëèâû, â äðóãèõ - èíâàëèäû, áîëüíûå è ñèðîòû. Âîò óæå ïîëòîðà ãîäà ìû ïîìîãàåì îáëåã÷èòü îáåçäîëåííûì äåòÿì èõ íåëåãêóþ ñóäüáó. Ìû ïðîâîäèì áëàãîòâîðèòåëüíûé ìàðàôîí "Ãðàæäàíñêàÿ ïîçèöèÿ" â ïîääåðæêó äåòåé-èíâàëèäîâ, áîëüíûõ è ñèðîò. Çà ýòè ïîëòîðà ãîäà áëàãîäàðÿ Âàøåé ïîìîùè óäàëîñü ìíîãîãî äîñòè÷ü. Ìíîãèì äåòÿì ñîáðàíû ñðåäñòâà íà ëå÷åíèå, íà ïðîäóêòû ïèòàíèÿ è òåïëóþ îäåæäó. Çà ýòî îò èìåíè âñåõ äåòåé ãîâîðèì Âàì ÎÃÐÎÌÍÎÅ ×ÅËÎÂÅ×ÅÑÊÎÅ ÑÏÀÑÈÁÎ!! Ìû ðàäû, ÷òî ëþäè îñîçíàþò ñâîþ âåëè÷àéøóþ çíà÷èìîñòü â ñóäüáå îáåçäîëåííûõ äåòåé! Ìû ïðîñèì Âàñ â êàíóí Íîâîãî Ãîäà íå çàáûâàòü òâîðèòü âåëèêèå äåëà - ëþáèòü áëèæíèõ, ïîìîãàòü îáåçäîëåííûì. Ìû ïðèçûâàåì Âàñ ñäåëàòü äåòÿì âñòðå÷ó Íîâîãî 2001 Ãîäà íàñòîÿùèì ïðàçäíèêîì, âåäü ïðàçäíèêîâ â èõ æèçíè áûâàåò íå òàê ìíîãî! Ìû ïðèçûâàåì Âàñ ïîìî÷ü îáåçäîëåííûì äåòÿì è âíåñòè áëàãîòâîðèòåëüíûå âçíîñû â ìàðàôîí "Ãðàæäàíñêàÿ ïîçèöèÿ"! Ïåðå÷èñëåíèå áëàãîòâîðèòåëüíûõ ñðåäñòâ è äîáðîâîëüíûõ ïîæåðòâîâàíèé ìîæíî îñóùåñòâèòü ïî ñëåäóþùèì ðåêâèçèòàì: ------------------------------------------------------------- Ïîëó÷àòåëü: | ÎÎÎ "ÐÈÀ Ïðåññ-Öåíòð" ÈÍÍ ïîëó÷àòåëÿ: | 7716166144 Íàèìåíîâàíèå áàíêà: | Ìîñêâîðåöêîå îòä. 5284 ÌÁ ÀÊ ÑÁ ÐÔ ÁÈÊ: | 044525342 êîðð.ñ÷åò: | 30101810600000000342 ðàñ÷åòíûé ñ÷åò: | 40702810538310102549 Îñíîâàíèå ïëàòåæà: | Áëàãîòâîðèòåëüíûé âçíîñ ------------------------------------------------------------- Ïîäðîáíîñòè î áëàãîòâîðèòåëüíîì ìàðàôîíå "Ãðàæäàíñêàÿ ïîçèöèÿ" ìîæíî óçíàòü ïî àäðåñó http://kids.xram.ru, ïî ýëåêòðîííîé ïî÷òå help-kids@mail.ru èëè ïî òåëåôîíó (095) 202-8756 ------------------------------------------------------------- Äàâàéòå, è äàñòñÿ Âàì... Èáî êàêîþ ìåðîþ ìåðèòå, òàêîþ æå îòìåðèòñÿ è Âàì (Åâàíãåëèå îò Ëóêè 6:38) Áëàãîñëîâåíèå Áîæèå äà ïðåáóäåò íà âñåõ Âàñ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 9:10:32 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 09:10:28 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id C2B2637B400 for ; Wed, 20 Dec 2000 09:10:15 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eBKHA0f00901; Wed, 20 Dec 2000 19:10:03 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.1/8.9.3) with ESMTP id eBKHA4l23016; Wed, 20 Dec 2000 19:10:04 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A40E7EA.2F9575B8@FreeBSD.org> Date: Wed, 20 Dec 2000 19:10:02 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Jonathan Pennington Cc: freebsd-ports@FreeBSD.org Subject: Re: ${PYTHON_SITELIBDIR}/site-packages References: <20001220121132.A59161@coastalgeology.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jonathan Pennington wrote: > Does the initial python install build > ${PYTHON_SITELIBDIR}/site-packages? It seems counterproductive for all > these packages to try to make that directory when it's needed by every > other package. If the python install makes that dir in every case, I > can remove this step in the diffs. In fact package should create ${PREFIX}/lib/${PYTHON_VERSION}/site-packages, while ${PYTHON_SITELIBDIR}/site-packages == ${LOCALBASE}/lib/${PYTHON_VERSION}/site-packages - please note the difference (LOCALBASE may not be == PREFIX). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 9:19:32 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 09:19:30 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mail1.lig.bellsouth.net (mail1.lig.bellsouth.net [205.152.0.55]) by hub.freebsd.org (Postfix) with ESMTP id 0812737B400 for ; Wed, 20 Dec 2000 09:19:30 -0800 (PST) Received: from coastalgeology.org (adsl-20-127-74.chs.bellsouth.net [66.20.127.74]) by mail1.lig.bellsouth.net (3.3.5alt/0.75.2) with SMTP id MAA01831 for ; Wed, 20 Dec 2000 12:23:53 -0500 (EST) Received: (qmail 61113 invoked by uid 1000); 20 Dec 2000 17:39:29 -0000 Date: Wed, 20 Dec 2000 12:39:29 -0500 From: Jonathan Pennington To: freebsd-ports@FreeBSD.org Subject: Re: ${PYTHON_SITELIBDIR}/site-packages Message-ID: <20001220123929.A61106@coastalgeology.org> Reply-To: Jonathan Pennington Mail-Followup-To: Jonathan Pennington , freebsd-ports@FreeBSD.org References: <20001220121132.A59161@coastalgeology.org> <3A40E7EA.2F9575B8@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A40E7EA.2F9575B8@FreeBSD.org>; from sobomax@FreeBSD.org on Wed, Dec 20, 2000 at 07:10:02PM +0200 X-Warning: Bill Gates Controls The Matrix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Maxim Sobolev [001220 12:34]: > (LOCALBASE may not be == PREFIX). Yeah, I realize that, I just wasn't thinking about the distinction when I wrote that. I really just wanted to know if the site-packages subdir should be explicitly created with mkdir in every py- port. just seems counterproductive. -J -- Jonathan Pennington | http://coastalgeology.org Site Manager | Protection and stewardship CoastalGeology.Org (CGO) | through public education. john@coastalgeology.org | Join CGO, make a difference. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 9:20: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 09:20:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D310437B402 for ; Wed, 20 Dec 2000 09:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKHK2A51017; Wed, 20 Dec 2000 09:20:02 -0800 (PST) (envelope-from gnats) Date: Wed, 20 Dec 2000 09:20:02 -0800 (PST) Message-Id: <200012201720.eBKHK2A51017@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Vivek Khera Subject: Re: ports/23675: Update x11/kdebase2 Reply-To: Vivek Khera Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23675; it has been noted by GNATS. From: Vivek Khera To: dwcjr@inethouston.net Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/23675: Update x11/kdebase2 Date: Wed, 20 Dec 2000 12:10:59 -0500 >>>>> "d" == dwcjr writes: The share/applnk/Utilities/*.kdedesktop files you just removed *are* installed by the port. On my system, they all have the same timestamp as the other files listed in the pkg-plist for kdebase2, indicating that they were installed at that time. Ditto for the fonts files you just removed. I built from sources last Thursday. I think this patch should be backed out, as they do seem to be part of the installed set of files. d> --- pkg-plist.orig Tue Dec 19 20:14:05 2000 d> +++ pkg-plist Tue Dec 19 20:15:06 2000 d> @@ -421,11 +421,6 @@ d> share/applnk/Utilities/klipper.desktop d> share/applnk/Utilities/kpager.desktop d> share/applnk/Utilities/passwd.desktop d> -share/applnk/Utilities/xclipboard.desktop d> -share/applnk/Utilities/xclock.desktop d> -share/applnk/Utilities/xconsole.desktop d> -share/applnk/Utilities/xmag.desktop d> -share/applnk/Utilities/xterm.desktop d> share/apps/clockapplet/pics/lcd.png d> share/apps/drkonqi/debuggers/gdbrc d> share/apps/drkonqi/pics/konqi.png d> @@ -1463,8 +1458,6 @@ d> share/fonts/9x15.pcf.gz d> share/fonts/console8x16.pcf.gz d> share/fonts/console8x8.pcf.gz d> -share/fonts/fonts.dir d> -share/fonts/override/fonts.dir d> share/icons/hicolor/22x22/actions/view_choose.png d> share/icons/hicolor/22x22/actions/view_detailed.png d> share/icons/hicolor/22x22/actions/view_icon.png To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 9:26:27 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 09:26:26 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7FEC037B400; Wed, 20 Dec 2000 09:26:26 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKHQQl51786; Wed, 20 Dec 2000 09:26:26 -0800 (PST) (envelope-from ade) Date: Wed, 20 Dec 2000 09:26:26 -0800 (PST) From: Message-Id: <200012201726.eBKHQQl51786@freefall.freebsd.org> To: ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/23686: libgtop broken on -current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: libgtop broken on -current Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Wed Dec 20 09:25:54 PST 2000 Responsible-Changed-Why: libgtop is mine. http://www.freebsd.org/cgi/query-pr.cgi?pr=23686 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 9:45:41 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 09:45:40 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 92B2F37B402 for ; Wed, 20 Dec 2000 09:45:35 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eBKHjTf01770; Wed, 20 Dec 2000 19:45:32 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.1/8.9.3) with ESMTP id eBKHjWl23093; Wed, 20 Dec 2000 19:45:32 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A40F03B.28F0AAE3@FreeBSD.org> Date: Wed, 20 Dec 2000 19:45:31 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Jonathan Pennington Cc: freebsd-ports@FreeBSD.org Subject: Re: ${PYTHON_SITELIBDIR}/site-packages References: <20001220121132.A59161@coastalgeology.org> <3A40E7EA.2F9575B8@FreeBSD.org> <20001220123929.A61106@coastalgeology.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jonathan Pennington wrote: > * Maxim Sobolev [001220 12:34]: > > (LOCALBASE may not be == PREFIX). > > Yeah, I realize that, I just wasn't thinking about the distinction > when I wrote that. I really just wanted to know if the site-packages > subdir should be explicitly created with mkdir in every py- port. just > seems counterproductive. You can't guarantee that the PREFIX into which user installs package will already contain lib/${P_V}/site-packages. Remember - LOCALBASE, in which basic Python tree lives, may be different from ${PREFIX}, into which this particular port are being installed. Anyway superfluous call to mkdir will not cause catastrophic performance degradation ;). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 10: 0: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 10:00:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D69B337B402 for ; Wed, 20 Dec 2000 10:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKI02a56066; Wed, 20 Dec 2000 10:00:02 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 20 Dec 2000 10:00:02 -0800 (PST) Resent-Message-Id: <200012201800.eBKI02a56066@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, bdonor@westnet.com Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B7B1937B400 for ; Wed, 20 Dec 2000 09:58:43 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKHwhA55906; Wed, 20 Dec 2000 09:58:43 -0800 (PST) (envelope-from nobody) Message-Id: <200012201758.eBKHwhA55906@freefall.freebsd.org> Date: Wed, 20 Dec 2000 09:58:43 -0800 (PST) From: bdonor@westnet.com Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23698: Port "cdrecord" cannot scan the SCSI bus using cam Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23698 >Category: ports >Synopsis: Port "cdrecord" cannot scan the SCSI bus using cam >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 20 10:00:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Tim Mattison >Release: FreeBSD 4.2-STABLE as of December 17th, 2000 >Organization: >Environment: FreeBSD 4.2-STABLE as of December 17th, 2000 >Description: cdrecord cannot scan the SCSI bus and returns a cam error. camcontrol has no problem doing so. Here's the output: quark# camcontrol devlist -v scbus0 on ahc0 bus 0: at scbus0 target 3 lun 0 (pass0,cd0) < > at scbus0 target 3 lun -1 () at scbus0 target 4 lun 0 (pass1,cd1) < > at scbus0 target 4 lun -1 () at scbus0 target 6 lun 0 (pass2,sa0) < > at scbus0 target 6 lun -1 () < > at scbus0 target -1 lun -1 () scbus-1 on xpt0 bus 0: < > at scbus-1 target -1 lun -1 (xpt0) quark# cdrecord -scanbus Cdrecord 1.9 (i386-unknown-freebsd4.2) Copyright (C) 1995-2000 Jorg Schilling cdrecord: Operation not permitted. Error opening /dev/pass0 Cam error 'cam_real_open_device: couldn't open passthr. Cannot open SCSI driver. cdrecord: For possible targets try 'cdrecord -scanbus'. Make sure you are root. I was running both of these programs as root. >How-To-Repeat: Just run cdrecord -scanbus on my machine. :) I've been told that cdrecord works on FreeBSD up to 5.0-current and that this problem only exists on my machine. The author of cdrecord thought that this may be a bug in cam. I don't believe I'm qualified enough to testify either way. >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 10: 0: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 10:00:05 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 78A4A37B404 for ; Wed, 20 Dec 2000 10:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKI04T56072; Wed, 20 Dec 2000 10:00:04 -0800 (PST) (envelope-from gnats) Date: Wed, 20 Dec 2000 10:00:04 -0800 (PST) Message-Id: <200012201800.eBKI04T56072@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Marc van Woerkom Subject: Re: ports/23507: new port: linux-q3ademo Reply-To: Marc van Woerkom Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23507; it has been noted by GNATS. From: Marc van Woerkom To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/23507: new port: linux-q3ademo Date: Wed, 20 Dec 2000 18:59:03 +0100 (CET) Two updates: 1. I will send a corrected version for better compliance to the ports standards (your folk's improvements) later this day. 2. I am working on the linux-q3asdk port (based on linuxq3sdk-1.1.x86.run) - if someone has some experience with it, I would love to hear about it. I hope to get it finished today or tomorrow. Happy Christmas, Marc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 10: 2:21 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 10:02:18 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from plock.net (c884516-a.scllg1.pa.home.com [24.8.217.154]) by hub.freebsd.org (Postfix) with SMTP id C9E4537B400 for ; Wed, 20 Dec 2000 10:02:17 -0800 (PST) Received: (qmail 48275 invoked from network); 20 Dec 2000 18:05:24 -0000 Received: from telecom2-atm9-0.4.gw.psu.edu (HELO bigkong) (192.168.1.1) by 192.168.1.101 with SMTP; 20 Dec 2000 18:05:24 -0000 Message-ID: <004d01c06aaf$03d3ff20$6401a8c0@plock.net> From: "Justin Plock" To: Cc: Subject: FreeBSD Port: pspell-0.11.2 Date: Wed, 20 Dec 2000 13:02:28 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have never been able to successfully build this port. Here is the error I have been receiving: ltconfig: unrecognized option `--build=i386--freebsd4.2' Try `ltconfig --help' for more information. configure: error: libtool configure failed This is with FreeBSD 4.2-STABLE. Any help would be appreciated. Thanks. -Justin Plock To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 10: 2:21 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 10:02:18 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from plock.net (c884516-a.scllg1.pa.home.com [24.8.217.154]) by hub.freebsd.org (Postfix) with SMTP id CC04137B402 for ; Wed, 20 Dec 2000 10:02:17 -0800 (PST) Received: (qmail 48275 invoked from network); 20 Dec 2000 18:05:24 -0000 Received: from telecom2-atm9-0.4.gw.psu.edu (HELO bigkong) (192.168.1.1) by 192.168.1.101 with SMTP; 20 Dec 2000 18:05:24 -0000 Message-ID: <004d01c06aaf$03d3ff20$6401a8c0@plock.net> From: "Justin Plock" To: Cc: Subject: FreeBSD Port: pspell-0.11.2 Date: Wed, 20 Dec 2000 13:02:28 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have never been able to successfully build this port. Here is the error I have been receiving: ltconfig: unrecognized option `--build=i386--freebsd4.2' Try `ltconfig --help' for more information. configure: error: libtool configure failed This is with FreeBSD 4.2-STABLE. Any help would be appreciated. Thanks. -Justin Plock To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 10: 5: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 10:05:04 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 322F337B400 for ; Wed, 20 Dec 2000 10:04:59 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eBKI4df02277; Wed, 20 Dec 2000 20:04:39 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.1/8.9.3) with ESMTP id eBKI4hl23166; Wed, 20 Dec 2000 20:04:43 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A40F4B9.761A09CF@FreeBSD.org> Date: Wed, 20 Dec 2000 20:04:42 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Justin Plock Cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: pspell-0.11.2 References: <004d01c06aaf$03d3ff20$6401a8c0@plock.net> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Justin Plock wrote: > I have never been able to successfully build this port. > > Here is the error I have been receiving: > > ltconfig: unrecognized option `--build=i386--freebsd4.2' > Try `ltconfig --help' for more information. > configure: error: libtool configure failed > > This is with FreeBSD 4.2-STABLE. Any help would be appreciated. Thanks. Rebuild and reinstall libtool port from recently cvsup'ed sources. Look in mail archives of this list for details. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 10: 6:21 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 10:06:20 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from hub.lovett.com (hub.lovett.com [216.60.121.161]) by hub.freebsd.org (Postfix) with ESMTP id 2CB7F37B402 for ; Wed, 20 Dec 2000 10:06:16 -0800 (PST) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 148ncl-00059l-00; Wed, 20 Dec 2000 12:05:59 -0600 Date: Wed, 20 Dec 2000 12:05:59 -0600 From: Ade Lovett To: Justin Plock Cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: pspell-0.11.2 Message-ID: <20001220120559.D18576@FreeBSD.org> References: <004d01c06aaf$03d3ff20$6401a8c0@plock.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <004d01c06aaf$03d3ff20$6401a8c0@plock.net>; from justin@plock.net on Wed, Dec 20, 2000 at 01:02:28PM -0500 Sender: ade@lovett.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Dec 20, 2000 at 01:02:28PM -0500, Justin Plock wrote: > I have never been able to successfully build this port. > > Here is the error I have been receiving: > > ltconfig: unrecognized option `--build=i386--freebsd4.2' Ensure that your ports tree is up to date and reinstall your devel/libtool port - this was fixed "Heap Big Long Time Ago"[tm] -aDe -- Ade Lovett, Austin, TX. ade@FreeBSD.org FreeBSD: The Power to Serve http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 11:10:28 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 11:10:27 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 327A237B400; Wed, 20 Dec 2000 11:10:23 -0800 (PST) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id VAA76520; Wed, 20 Dec 2000 21:10:14 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id eBKJ83k11017; Wed, 20 Dec 2000 11:08:03 -0800 (PST) (envelope-from reg) Date: Wed, 20 Dec 2000 11:08:02 -0800 From: Jeremy Lea To: Maxim Sobolev Cc: ports@FreeBSD.org Subject: Re: What's wrong with Mozilla 0.6? Message-ID: <20001220110802.Q79112@shale.csir.co.za> References: <3A40CDEB.7D5D73F1@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A40CDEB.7D5D73F1@FreeBSD.org>; from sobomax@FreeBSD.org on Wed, Dec 20, 2000 at 05:19:07PM +0200 Sender: reg@shale.csir.co.za Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Wed, Dec 20, 2000 at 05:19:07PM +0200, Maxim Sobolev wrote: > I noticed that Mozilla 0.6 was released about a week ago. Are there > any reasons why we still do not have it in our ports tree? Three. I've been writing finals. There are reported problems with Mozilla on both -stable and -current over the past few weeks, and I've not been able to get any decent bug reports until today. And, finally, I will not be "upgrading" to mozilla-0.6 because it is from a different branch of their CVS tree (the branch from which Netscape 6 was released) and is not an upgrade to M18. They branched CVS at M6 if IIRC. Regards, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 11:40:12 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 11:40:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1BBF137B400 for ; Wed, 20 Dec 2000 11:40:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKJe3W72484; Wed, 20 Dec 2000 11:40:03 -0800 (PST) (envelope-from gnats) Date: Wed, 20 Dec 2000 11:40:03 -0800 (PST) Message-Id: <200012201940.eBKJe3W72484@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Steve Davidson Subject: Re: ports/23646: Staroffice 5.2 fails to install on FreeBSD 4.1.1-RELEASE Reply-To: Steve Davidson Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23646; it has been noted by GNATS. From: Steve Davidson To: Martin Blapp Cc: Chris Faulhaber , freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/23646: Staroffice 5.2 fails to install on FreeBSD 4.1.1-RELEASE Date: Wed, 20 Dec 2000 11:38:49 -0800 (PST) --- Martin Blapp wrote: > > Hi, > > Since I'm busy with rpc stuff you have not heard from me. > > I know this error, but have never been able to track it down. > I never had it myself (about 20 installations of SO). > > About 200 sucessful insallations I know, and about 20 failed, > exactly with the same error. > > Can you send me everything as output you can get ? Sure. Ok. First thing: I did a cvsup on the ports collection. Could this be the problem? > > - Linux Lib versions (/compat/linux/sbin/ldconfig -p) % /compat/linux/sbin/ldconfig -p 100 libs found in cache `/etc/ld.so.cache' (version 1.7.0) libz.so.1 (ELF) => /usr/i486-linux-libc5/lib/libz.so.1 libz.so.1 (libc6) => /usr/lib/libz.so.1 libvgagl.so.1 (libc5) => /usr/i486-linux-libc5/lib/libvgagl.so.1 libvga.so.1 (libc5) => /usr/i486-linux-libc5/lib/libvga.so.1 libutil.so.1 (libc6) => /lib/libutil.so.1 libtermcap.so.2 (libc5) => /usr/i486-linux-libc5/lib/libtermcap.so.2 libtermcap.so.2 (libc6) => /lib/libtermcap.so.2 libstdc++.so.27 (libc5) => /usr/i486-linux-libc5/lib/libstdc++.so.27 libstdc++.so.2.9 (libc6) => /usr/lib/libstdc++.so.2.9 libstdc++.so.2.8 (libc6) => /usr/lib/libstdc++.so.2.8 libstdc++.so.2.7.2 (libc6) => /usr/lib/libstdc++.so.2.7.2 libstdc++-libc6.1-1.so.2 (libc6) => /usr/lib/libstdc++-libc6.1-1.so.2 libslang.so.1 (libc6) => /usr/lib/libslang.so.1 librt.so.1 (libc6) => /lib/librt.so.1 librpmbuild.so.0 (libc6) => /usr/lib/librpmbuild.so.0 librpm.so.0 (libc6) => /usr/lib/librpm.so.0 libresolv.so.2 (libc6) => /lib/libresolv.so.2 libreadline.so.3 (libc6) => /usr/lib/libreadline.so.3 libpthread.so.0 (libc6) => /lib/libpthread.so.0 libpanel.so.4 (libc6) => /usr/lib/libpanel.so.4 libpanel.so.3.0 (libc5) => /usr/i486-linux-libc5/lib/libpanel.so.3.0 libopcodes.so (libc6) => /usr/lib/libopcodes.so libopcodes-2.9.1.0.24.so (libc6) => /usr/lib/libopcodes-2.9.1.0.24.so libnss1_nis.so.1 (libc6) => /lib/libnss1_nis.so.1 libnss1_files.so.1 (libc6) => /lib/libnss1_files.so.1 libnss1_dns.so.1 (libc6) => /lib/libnss1_dns.so.1 libnss1_db.so.1 (libc6) => /lib/libnss1_db.so.1 libnss1_compat.so.1 (libc6) => /lib/libnss1_compat.so.1 libnss_nisplus.so.2 (libc6) => /lib/libnss_nisplus.so.2 libnss_nis.so.2 (libc6) => /lib/libnss_nis.so.2 libnss_nis.so.1 (libc6) => /lib/libnss_nis.so.1 libnss_hesiod.so.2 (libc6) => /lib/libnss_hesiod.so.2 libnss_files.so.2 (libc6) => /lib/libnss_files.so.2 libnss_files.so.1 (libc6) => /lib/libnss_files.so.1 libnss_dns.so.2 (libc6) => /lib/libnss_dns.so.2 libnss_dns.so.1 (libc6) => /lib/libnss_dns.so.1 libnss_db.so.2 (libc6) => /lib/libnss_db.so.2 libnss_db.so.1 (libc6) => /lib/libnss_db.so.1 libnss_compat.so.2 (libc6) => /lib/libnss_compat.so.2 libnss_compat.so.1 (libc6) => /lib/libnss_compat.so.1 libnsl.so.1 (libc6) => /lib/libnsl.so.1 libncurses.so.4 (libc6) => /usr/lib/libncurses.so.4 libncurses.so.3.0 (libc5) => /usr/i486-linux-libc5/lib/libncurses.so.3.0 libmenu.so.4 (libc6) => /usr/lib/libmenu.so.4 libmenu.so.3.0 (libc5) => /usr/i486-linux-libc5/lib/libmenu.so.3.0 libm.so.6 (libc6) => /lib/libm.so.6 libm.so.5 (libc5) => /usr/i486-linux-libc5/lib/libm.so.5 libhistory.so.3 (libc6) => /usr/lib/libhistory.so.3 libgthread-1.2.so.0 (libc6) => /usr/lib/libgthread-1.2.so.0 libgmodule-1.2.so.0 (libc6) => /usr/lib/libgmodule-1.2.so.0 libglib-1.2.so.0 (libc6) => /usr/lib/libglib-1.2.so.0 libgdbm.so.2 (libc6) => /usr/lib/libgdbm.so.2 libgd.so.1 (libc6) => /usr/lib/libgd.so.1 libg++.so.27 (libc5) => /usr/i486-linux-libc5/lib/libg++.so.27 libg++.so.2.7.2 (libc6) => /usr/lib/libg++.so.2.7.2 libform.so.4 (libc6) => /usr/lib/libform.so.4 libform.so.3.0 (libc5) => /usr/i486-linux-libc5/lib/libform.so.3.0 libdl.so.2 (libc6) => /lib/libdl.so.2 libdl.so.1 (libc5) => /lib/libdl.so.1 libdb1.so.2 (libc6) => /lib/libdb1.so.2 libdb.so.3 (libc6) => /lib/libdb.so.3 libdb.so.2 (ELF) => /usr/i486-linux-libc5/lib/libdb.so.2 libdb.so.2 (libc6) => /lib/libdb.so.2 libcrypt.so.1 (libc6) => /lib/libcrypt.so.1 libc.so.6 (libc6) => /lib/libc.so.6 libc.so.5 (libc5) => /usr/i486-linux-libc5/lib/libc.so.5 libbfd.so (libc6) => /usr/lib/libbfd.so libbfd-2.9.1.0.24.so (libc6) => /usr/lib/libbfd-2.9.1.0.24.so libX11.so.6 (libc5) => /usr/i486-linux-libc5/lib/libX11.so.6 libX11.so.6 (libc6) => /usr/X11R6/lib/libX11.so.6 libXtst.so.6 (libc5) => /usr/i486-linux-libc5/lib/libXtst.so.6 libXtst.so.6 (libc6) => /usr/X11R6/lib/libXtst.so.6 libXt.so.6 (libc5) => /usr/i486-linux-libc5/lib/libXt.so.6 libXt.so.6 (libc6) => /usr/X11R6/lib/libXt.so.6 libXpm.so.4 (libc5) => /usr/i486-linux-libc5/lib/libXpm.so.4 libXpm.so.4 (libc6) => /usr/X11R6/lib/libXpm.so.4 libXp.so.6 (libc5) => /usr/i486-linux-libc5/lib/libXp.so.6 libXp.so.6 (libc6) => /usr/X11R6/lib/libXp.so.6 libXmu.so.6 (libc5) => /usr/i486-linux-libc5/lib/libXmu.so.6 libXmu.so.6 (libc6) => /usr/X11R6/lib/libXmu.so.6 libXi.so.6 (libc5) => /usr/i486-linux-libc5/lib/libXi.so.6 libXi.so.6 (libc6) => /usr/X11R6/lib/libXi.so.6 libXext.so.6 (libc5) => /usr/i486-linux-libc5/lib/libXext.so.6 libXext.so.6 (libc6) => /usr/X11R6/lib/libXext.so.6 libXaw3d.so.6 (ELF) => /usr/i486-linux-libc5/lib/libXaw3d.so.6 libXaw.so.6 (libc5) => /usr/i486-linux-libc5/lib/libXaw.so.6 libXaw.so.6 (libc6) => /usr/X11R6/lib/libXaw.so.6 libXIE.so.6 (libc5) => /usr/i486-linux-libc5/lib/libXIE.so.6 libXIE.so.6 (libc6) => /usr/X11R6/lib/libXIE.so.6 libSegFault.so (libc6) => /lib/libSegFault.so libSM.so.6 (libc5) => /usr/i486-linux-libc5/lib/libSM.so.6 libSM.so.6 (libc6) => /usr/X11R6/lib/libSM.so.6 libPEX5.so.6 (libc5) => /usr/i486-linux-libc5/lib/libPEX5.so.6 libPEX5.so.6 (libc6) => /usr/X11R6/lib/libPEX5.so.6 libNoVersion.so.1 (libc6) => /lib/libNoVersion.so.1 libICE.so.6 (libc5) => /usr/i486-linux-libc5/lib/libICE.so.6 libICE.so.6 (libc6) => /usr/X11R6/lib/libICE.so.6 libBrokenLocale.so.1 (libc6) => /lib/libBrokenLocale.so.1 ld-linux.so.2 (ELF) => /lib/ld-linux.so.2 ld-linux.so.1 (ELF) => /lib/ld-linux.so.1 > - The ENV variables you've set in the shell % env USER=sdn MACHTYPE=i386 MAIL=/var/mail/sdn TAPE=/dev/4mm VENDOR=intel SHLVL=3 HOME=/h/sdn LESS=-M -c -e -f GZIP=-9 LSCOLORS=0x0x0x0x0x464301060203 EXINIT=set smd ts=8 sw=8 shell=/usr/local/bin/tcsh | map g 1G | ab wxx w! /tmp/xx PAGER=xless VISUAL=/usr/bin/vi GROUP=sdn LOGNAME=sdn TERM=xterm BLOCKSIZE=K PAPERSIZE=letter PATH=/h/sdn/bin:/usr/local/bin:/usr/local/sbin:/sbin:/usr/sbin:/usr/bin:/bin:/usr/X11R6/bin:/usr/local/netscape:/usr/local/jdk/bin DISPLAY=:0.0 SHELL=/usr/local/bin/tcsh HOST=calico.sprintlabs.com OSTYPE=FreeBSD PWD=/h/sdn PRINTER=lp FTP_PASSIVE_MODE= HOSTTYPE=FreeBSD EDITOR=/usr/bin/vi WINDOWID=62914574 TERMCAP=xterm|vs100|xterm terminal emulator (X window system):li#76:kh=\EOH:@7=\EOF:kD=^?:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:km:is=\E>\E[?1;3;4;5l\E[?7;8h\E[1;65r\E[65;1H:rs=\E>\E[?1;3;4;5l\E[?7;8h:kI=\E[2~:kN=\E[6~:kP=\E[5~:k6=\E[17~:k7=\E[18~:k8=\E[19~:k9=\E[20~:k;=\E[21~:k5=\E[15~:ve=\E[?25h:vi=\E[?25l:k0@:im@:ei@:F1=\E[23~:F2=\E[24~:ic=\E[@:IC=\E[%d@:ec=\E[%dX:al=\E[L:dl=\E[M:mi:dc=\E[P:AL=\E[%dL:DL=\E[%dM:DC=\E[%dP:do=\E[B:cl=\E[H\E[J:sf=\ED:as=\E(0:ae=\E(B:cm=\E[%i%d;%dH:nd=\E[C:up=\E[A:nw=\EE:ce=\E[K:cd=\E[J:so=\E[7m:se=\E[m:us=\E[4m:ue=\E[m:md=\E[1m:mr=\ E[7m:mb=\E[5m:me=\E[m:sr=\EM:sc=\E7:rc=\E8:cs=\E[%i%d;%dr:UP=\E[%dA:DO=\E[%dB:RI=\E[%dC:LE=\E[%dD:ct=\E[3g:st=\EH:co#209:le=^H:bs:am:if=/usr/share/tabset/vt100:ho=\E[H:ac=llmmkkjjuuttvvwwqqxxnnpprr``aa:ks=\E[?1h\E=:ke=\E[?1l\E>:ku=\EOA:kd=\EOB:kr=\EOC:kl=\EOD:@8=\EOM:K1=\EOq:K2=\EOr:K3=\EOs:K4=\EOp:K5=\EOn:pt:vt#3:xn:ta=^I:ms:bl=^G:cr=^M:eo:it#8:ut:RA=\E[?7l:SA=\E[?7h::kb=\010 > - Are you installing under X ? Yes. > - Do you use NFS mounts for the ports-dir ? No. > - Which shell do you use ? tcsh > > Martin > > Martin Blapp, mb@imp.ch > ------------------------------------------------ > Improware AG, UNIX solution and service provider > Zurlindenstrasse 29, 4133 Pratteln, Switzerland > Phone: +41 79 370 26 05, Fax: +41 61 826 93 01 > ------------------------------------------------ > > On Tue, 19 Dec 2000, Steve Davidson wrote: > > > Yes. Two days ago. No reply yet. > > What confuses me most is that I can't be the only > > person experiencing this so... > > what do other people do whan a port doesn't work? > > > > I do a cvsup and then a make. > > If it fails then I usually file a bug report on the > > ports category. > > > > Is this correct? > > > > --- Chris Faulhaber wrote: > > > On Tue, Dec 19, 2000 at 09:42:27AM -0800, stevedav@pacbell.net > wrote: > > > > > > > > >Number: 23646 > > > > >Category: ports > > > > >Synopsis: Staroffice 5.2 fails to install on FreeBSD > > > 4.1.1-RELEASE > > > > > > > *snip* > > > > > > > > glibc version: 2.1.2 > > > > /usr/ports/editors/staroffice52/work/tmp/sv001.tmp/setup.bin: > error > > > in loading shared libraries: libvos1GCC.so: cannot open shared > object > > > file: No such file or directory > > > > *** Error code 1 (ignored) > > > > > > > > An error occured during StarOffice5.2 install. Please send a > mail > > > with debug-output and > > > > some information about your FreeBSD-environment to mb@imp.ch. > > > Thanks. > > > > > > > > > > And have you sent the above email to the maintainer? > > > > > > -- > > > Chris D. Faulhaber - jedgar@fxp.org - jedgar@FreeBSD.org > > > -------------------------------------------------------- > > > FreeBSD: The Power To Serve - http://www.FreeBSD.org > > > > > > __________________________________________________ > > Do You Yahoo!? > > Yahoo! Shopping - Thousands of Stores. Millions of Products. > > http://shopping.yahoo.com/ > > > __________________________________________________ Do You Yahoo!? Yahoo! Shopping - Thousands of Stores. Millions of Products. http://shopping.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 13:59:56 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 13:59:54 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from wormhole.bluestar.net (wormhole.bluestar.net [208.53.1.61]) by hub.freebsd.org (Postfix) with ESMTP id DC46937B400 for ; Wed, 20 Dec 2000 13:59:53 -0800 (PST) Received: from planetwe.com (admin.planetwe.com [64.182.69.146]) by wormhole.bluestar.net (8.10.1/8.10.1) with ESMTP id eBKLxnQ06335 for ; Wed, 20 Dec 2000 15:59:50 -0600 (CST) Message-ID: <3A412BD6.6050505@planetwe.com> Date: Wed, 20 Dec 2000 15:59:50 -0600 From: Drew Sanford User-Agent: Mozilla/5.0 (X11; U; Linux 2.2.12 i386; en-GB; m18) Gecko/20001107 Netscape6/6.0 X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: apache13-fp Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm attempting to install apache13-fp, as we have someone who wants to use frontpage extensions for some unknown reason. Every time we try to connect to the server using frontpage it tells us the server is not responding or may be too busy to answer - however a browser seems to do just fine pointed at the same web server. Is there something out of the ordinary that has to be done to get frontpage extensions to work? If the web server works properly, what else needs to be done to get frontpage extensions to work? -- Drew Sanford Systems Administrator Planetwe.com Email: drew@planetwe.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 14:30:12 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 14:30:05 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 377B537B404 for ; Wed, 20 Dec 2000 14:30:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBKMU5q00543; Wed, 20 Dec 2000 14:30:05 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 20 Dec 2000 14:30:05 -0800 (PST) Resent-Message-Id: <200012202230.eBKMU5q00543@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dgilbert@velocet.ca Received: from sabre.velocet.net (sabre.velocet.net [198.96.118.66]) by hub.freebsd.org (Postfix) with ESMTP id 16AC337B402 for ; Wed, 20 Dec 2000 14:28:09 -0800 (PST) Received: from office.tor.velocet.net (trooper.velocet.net [204.138.45.2]) by sabre.velocet.net (Postfix) with ESMTP id 30EC0137F40 for ; Wed, 20 Dec 2000 17:28:02 -0500 (EST) Received: (from root@localhost) by office.tor.velocet.net (8.9.3/8.9.3) id RAA79346; Wed, 20 Dec 2000 17:27:24 -0500 (EST) (envelope-from dgilbert) Message-Id: <200012202227.RAA79346@office.tor.velocet.net> Date: Wed, 20 Dec 2000 17:27:24 -0500 (EST) From: dgilbert@velocet.ca Sender: dgilbert@office.tor.velocet.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23701: XPostitPlus bogon Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23701 >Category: ports >Synopsis: XpostitPlus fails when height or width is 0 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 20 14:30:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: David Gilbert >Release: FreeBSD 4.1-RELEASE i386 >Organization: Velocet Communications >Environment: This probably happens on any platform and should be sent back to the maintainer, but in the meantime: >Description: When X fails in a certain way, XPostitPlus seems to get back very bogus information on the state of it's windows. If it ends up putting height and width of 0 into the files, it will then refuse to restart with the X error "Error: Shell widget PostItNote has zero width and/or height" >How-To-Repeat: Edit the first four numbers in a postit note "note1" file to 0, run xpostit+ >Fix: This patch can be installed as patch-ab in the files directory of the port and it fixes the problem. *** note.c.orig Wed Dec 20 17:15:34 2000 --- note.c Wed Dec 20 17:20:15 2000 *************** *** 359,364 **** --- 359,373 ---- } } + /* + * The problem is that texth == 0 or textw == 0 causes an ungraceful exit. + * In this case, we set them all to a standard size. + */ + if(texth == 0 || textw == 0) + { + texth = 169; + textw = 227; + } /* * Get the index number of this note. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 15: 9:23 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 15:09:21 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from shadowmere.student.utwente.nl (wit401305.student.utwente.nl [130.89.236.145]) by hub.freebsd.org (Postfix) with ESMTP id B37A237B400; Wed, 20 Dec 2000 15:09:20 -0800 (PST) Received: by shadowmere.student.utwente.nl (Postfix, from userid 1000) id 90CEE1FAF; Thu, 21 Dec 2000 00:09:19 +0100 (CET) Date: Thu, 21 Dec 2000 00:09:19 +0100 From: Pascal Hofstee To: Jeremy Lea Cc: Maxim Sobolev , ports@FreeBSD.org Subject: Re: What's wrong with Mozilla 0.6? Message-ID: <20001221000919.A15058@shadowmere.student.utwente.nl> Reply-To: daeron@shadowmere.student.utwente.nl References: <3A40CDEB.7D5D73F1@FreeBSD.org> <20001220110802.Q79112@shale.csir.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001220110802.Q79112@shale.csir.co.za>; from reg@FreeBSD.org on Wed, Dec 20, 2000 at 11:08:02AM -0800 Sender: daeron@wit401305.student.utwente.nl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Dec 20, 2000 at 11:08:02AM -0800, Jeremy Lea wrote: > Hi, > > On Wed, Dec 20, 2000 at 05:19:07PM +0200, Maxim Sobolev wrote: > > I noticed that Mozilla 0.6 was released about a week ago. Are there > > any reasons why we still do not have it in our ports tree? > > Three. I've been writing finals. There are reported problems with > Mozilla on both -stable and -current over the past few weeks, and I've > not been able to get any decent bug reports until today. And, finally, > I will not be "upgrading" to mozilla-0.6 because it is from a different > branch of their CVS tree (the branch from which Netscape 6 was released) > and is not an upgrade to M18. > > They branched CVS at M6 if IIRC. I am aware of the stability problems ... but there is one reasoning here i think is faulty. Mozilla 0.6 is NOT a branch from the M6 branch ... i mean .. why on Earth would they even Want to do that ... when they have worked their way up to M18. IIRC ... they changed Milestone numbering for the Mozilla project ... and Mozilla 0.6 is the follow up for M18 ... based on what is released to the world as Netscape 6.0 -- Pascal Hofstee < daeron @ shadowmere . student . utwente . nl > begin LOVE-LETTER-FOR-YOU.TXT.vbs I'm a signature virus. Please copy me and help me spread. end To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 15:34:24 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 15:34:22 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from sr14.nsw-remote.bigpond.net.au (sr14.nsw-remote.bigpond.net.au [24.192.3.29]) by hub.freebsd.org (Postfix) with ESMTP id 4B60237B400 for ; Wed, 20 Dec 2000 15:34:21 -0800 (PST) Received: from areilly.bpc-users.org (CPE-144-132-234-126.nsw.bigpond.net.au [144.132.234.126]) by sr14.nsw-remote.bigpond.net.au (Pro-8.9.3/8.9.3) with SMTP id KAA15012 for ; Thu, 21 Dec 2000 10:34:13 +1100 (EDT) Received: (qmail 76611 invoked by uid 1000); 20 Dec 2000 23:34:09 -0000 From: "Andrew Reilly" Date: Thu, 21 Dec 2000 10:34:09 +1100 To: freebsd-ports@freebsd.org Subject: Integration of ports and 3rd party anoncvs repositories? Message-ID: <20001221103408.A76507@gurney.reilly.home> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org There are some large and fairly rapidly evolving code bases out there at the moment. They aren't part of the base FreeBSD distribution, but are frequently installed via the ports collection: XFree86, Wine, mozilla, kde and gnome, probably openoffice soon. All of these are available through incremental means: anoncvs, CVSup, or inter-tarball diffs. Please correct me if I'm wrong here, but the current Ports facility is based on the notion of operating from distribution tarballs that wind up in /usr/ports/distfiles, one way or another. Some of these tarballs are now really big, which (for those of us who pay for our bandwidth by the megabyte) is a disincentive for staying current. I've managed to track Wine for a while by building my own tarballs incrementally, with the deltas. I'm just about to have a go at grabbing XFree86-4.0.2 by CVSup. Has anyone been thinking of tweaking the ports "extract" target to copy from a local copy of the original repository, rather than going straight for a tarball file? How could we standardise access to source repositories from different vendors, so that the ports makefiles could determine if they were present automagically? Would it be best to go for full local CVS repositories, and have the "extract" target do a cvs co, or could we get by with local "checked-out" trees? (I haven't really used CVS myself yet: I follow FreeBSD-stable with CVSup in "check out" mode.) -- Andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 16:40: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 16:40:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F43537B402 for ; Wed, 20 Dec 2000 16:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL0e1o20443; Wed, 20 Dec 2000 16:40:01 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 20 Dec 2000 16:40:01 -0800 (PST) Resent-Message-Id: <200012210040.eBL0e1o20443@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, naddy@mips.inka.de Received: from mail.inka.de (quechua.inka.de [212.227.14.2]) by hub.freebsd.org (Postfix) with ESMTP id 2274E37B400 for ; Wed, 20 Dec 2000 16:30:38 -0800 (PST) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with local-bsmtp id 148tcy-0005am-00; Thu, 21 Dec 2000 01:30:36 +0100 Received: (from naddy@localhost) by kemoauc.mips.inka.de (8.11.1/8.11.1) id eBL0MqS46693; Thu, 21 Dec 2000 01:22:52 +0100 (CET) (envelope-from naddy) Message-Id: <200012210022.eBL0MqS46693@kemoauc.mips.inka.de> Date: Thu, 21 Dec 2000 01:22:52 +0100 (CET) From: Christian Weisgerber Reply-To: naddy@mips.inka.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23702: devel/patch namespace conflict Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23702 >Category: ports >Synopsis: devel/patch namespace conflict >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 20 16:40:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Christian Weisgerber >Release: FreeBSD 5.0-CURRENT alpha >Organization: >Environment: System: FreeBSD kemoauc.mips.inka.de 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Thu Dec 7 17:54:55 CET 2000 naddy@kemoauc.mips.inka.de:/usr/obj/usr/src/sys/KEMOAUC alpha >Description: The devel/patch port installs GNU patch-2.5 as ${PREFIX}/bin/patch. This version of GNU patch differs notably from FreeBSD's native patch in usage and behavior. Users should not run into different programs under the same name depending on how their path is set. The port should install GNU patch under a different name, e.g. "gpatch" in line with previous GNU and ports tradition. >How-To-Repeat: >Fix: The patch set below - changes devel/patch to install with a 'g' prefix, - fixes the package description, - updates the japanese/postgresql7 and www/w3m ports, which have GNU patch as a build time dependency, to refer to "gpatch". Index: devel/patch/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/patch/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- devel/patch/Makefile 2000/04/11 21:30:03 1.4 +++ devel/patch/Makefile 2000/12/20 23:57:26 @@ -14,7 +14,8 @@ MAINTAINER= ache@FreeBSD.org GNU_CONFIGURE= yes +CONFIGURE_ARGS= --program-prefix=g -MAN1= patch.1 +MAN1= gpatch.1 .include Index: devel/patch/pkg-comment =================================================================== RCS file: /home/ncvs/ports/devel/patch/pkg-comment,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 pkg-comment --- devel/patch/pkg-comment 1998/01/21 07:05:20 1.1.1.1 +++ devel/patch/pkg-comment 2000/12/20 23:58:20 @@ -1 +1 @@ -GNU Patch Utility +GNU patch utility Index: devel/patch/pkg-descr =================================================================== RCS file: /home/ncvs/ports/devel/patch/pkg-descr,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 pkg-descr --- devel/patch/pkg-descr 1998/01/21 07:05:20 1.1.1.1 +++ devel/patch/pkg-descr 2000/12/21 00:00:02 @@ -1,4 +1,4 @@ -patch takes a patch file patchfile containing a difference -listing produced by the diff program and applies those -differences to one or more original files, producing -patched versions. +The patch program takes a patch file containing a difference +listing produced by the diff program and applies those +differences to one or more original files, producing patched +versions. Index: devel/patch/pkg-plist =================================================================== RCS file: /home/ncvs/ports/devel/patch/pkg-plist,v retrieving revision 1.2 diff -u -r1.2 pkg-plist --- devel/patch/pkg-plist 1998/08/12 01:55:30 1.2 +++ devel/patch/pkg-plist 2000/12/20 23:57:33 @@ -1 +1 @@ -bin/patch +bin/gpatch Index: japanese/postgresql7/Makefile =================================================================== RCS file: /home/ncvs/ports/japanese/postgresql7/Makefile,v retrieving revision 1.20 diff -u -r1.20 Makefile --- japanese/postgresql7/Makefile 2000/12/07 11:36:01 1.20 +++ japanese/postgresql7/Makefile 2000/12/21 00:06:48 @@ -64,7 +64,7 @@ WRKSRC= ${WRKDIR}/${DISTNAME}/src DOCDIR= ${WRKDIR}/${DISTNAME}/doc -PATCH= ${LOCALBASE}/bin/patch +PATCH= ${LOCALBASE}/bin/gpatch USE_GMAKE= YES MAKEFILE= GNUmakefile HAS_CONFIGURE= YES Index: www/w3m/Makefile =================================================================== RCS file: /home/ncvs/ports/www/w3m/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- www/w3m/Makefile 2000/12/10 16:05:14 1.23 +++ www/w3m/Makefile 2000/12/21 00:07:21 @@ -25,8 +25,8 @@ MAINTAINER= nobutaka@nobutaka.com BUILD_DEPENDS= ${LOCALBASE}/lib/libgc.a:${PORTSDIR}/devel/boehm-gc \ - ${LOCALBASE}/bin/patch:${PORTSDIR}/devel/patch -PATCH= ${LOCALBASE}/bin/patch + ${PATCH}:${PORTSDIR}/devel/patch +PATCH= ${LOCALBASE}/bin/gpatch W3M_VERSION= 0.1.11 W3M_PATCHLEVEL= 23 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 16:55:14 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 16:55:12 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from plock.net (c884516-a.scllg1.pa.home.com [24.8.217.154]) by hub.freebsd.org (Postfix) with SMTP id E7EFF37B400 for ; Wed, 20 Dec 2000 16:55:11 -0800 (PST) Received: (qmail 89475 invoked from network); 21 Dec 2000 00:58:21 -0000 Received: from telecom2-atm9-0.4.gw.psu.edu (HELO bigkong) (192.168.1.1) by 192.168.1.101 with SMTP; 21 Dec 2000 00:58:21 -0000 Message-ID: <000301c06ae8$b2784fc0$6401a8c0@plock.net> From: "Justin Plock" To: Cc: Subject: FreeBSD Port: aspell-0.32.5 Date: Wed, 20 Dec 2000 19:55:22 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In order for me to get this port to install correctly with the pspell port. I had to go into the /work folder in the pspell port after everything was installed and do: ./add-modules cd .. make make install which are the final steps of the pspell installation when doing a source code install. I'm not sure how to do this in the ports, but I just thought i'd let someone know. I discovered this while trying to install PHP4 with the --with-pspell option. -Justin Plock To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 16:55:18 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 16:55:15 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from plock.net (c884516-a.scllg1.pa.home.com [24.8.217.154]) by hub.freebsd.org (Postfix) with SMTP id 67CBA37B69B for ; Wed, 20 Dec 2000 16:55:15 -0800 (PST) Received: (qmail 89475 invoked from network); 21 Dec 2000 00:58:21 -0000 Received: from telecom2-atm9-0.4.gw.psu.edu (HELO bigkong) (192.168.1.1) by 192.168.1.101 with SMTP; 21 Dec 2000 00:58:21 -0000 Message-ID: <000301c06ae8$b2784fc0$6401a8c0@plock.net> From: "Justin Plock" To: Cc: Subject: FreeBSD Port: aspell-0.32.5 Date: Wed, 20 Dec 2000 19:55:22 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In order for me to get this port to install correctly with the pspell port. I had to go into the /work folder in the pspell port after everything was installed and do: ./add-modules cd .. make make install which are the final steps of the pspell installation when doing a source code install. I'm not sure how to do this in the ports, but I just thought i'd let someone know. I discovered this while trying to install PHP4 with the --with-pspell option. -Justin Plock To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 17:10:34 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 17:10:33 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from indigo.external.org (c1118643-b.chmpgn1.il.home.com [24.181.130.163]) by hub.freebsd.org (Postfix) with ESMTP id AE9E537B400 for ; Wed, 20 Dec 2000 17:10:32 -0800 (PST) Received: (from jeremy@localhost) by indigo.external.org (8.11.1/8.11.1) id eBL1A2M80945; Wed, 20 Dec 2000 19:10:02 -0600 (CST) (envelope-from jeremy) Date: Wed, 20 Dec 2000 19:10:01 -0600 From: Jeremy Shaffner To: Andrew Reilly Cc: ports@freebsd.org Subject: Re: Integration of ports and 3rd party anoncvs repositories? Message-ID: <20001220191001.C78848@external.org> References: <20001221103408.A76507@gurney.reilly.home> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001221103408.A76507@gurney.reilly.home>; from areilly@bigpond.net.au on Thu, Dec 21, 2000 at 10:34:09AM +1100 Sender: jeremy@indigo.external.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org An early incarnation of the OpenSSH port did a CVS checkout instead of an ftp fetch. Follow it's example. -- Jeremy --------------------------------------------------------------------- Jeremy Shaffner | This space for rent. jeremy@external.org | $ grep happiness life http://www.external.org/~jeremy/pgp.key | FreeBSD: The Power to Serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 17:13:41 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 17:13:39 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mail.westbend.net (ns1.westbend.net [209.224.254.131]) by hub.freebsd.org (Postfix) with ESMTP id 519C437B400 for ; Wed, 20 Dec 2000 17:13:39 -0800 (PST) Received: from admin.westbend.net (admin.westbend.net [209.224.254.141]) (authenticated) by mail.westbend.net (8.11.1/8.11.1) with ESMTP id eBL1DaO74001; Wed, 20 Dec 2000 19:13:37 -0600 (CST) (envelope-from hetzels@westbend.net) Message-ID: <011501c06aeb$22391900$8dfee0d1@westbend.net> From: "Scot W. Hetzel" To: "Drew Sanford" , References: <3A412BD6.6050505@planetwe.com> Subject: Re: apache13-fp Date: Wed, 20 Dec 2000 19:12:47 -0600 Organization: West Bend Interent 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 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From: "Drew Sanford" > I'm attempting to install apache13-fp, as we have someone who wants to > use frontpage extensions for some unknown reason. Every time we try to > connect to the server using frontpage it tells us the server is not > responding or may be too busy to answer - however a browser seems to do > just fine pointed at the same web server. Is there something out of the > ordinary that has to be done to get frontpage extensions to work? If the > web server works properly, what else needs to be done to get frontpage > extensions to work? > Check your httpd-error.log, it should contain the following lines: [Wed Dec 20 20:00:02 2000] [notice] Apache/1.3.14 (Unix) FrontPage/4.0.4.3 configured -- resuming normal operations [Wed Dec 20 20:00:02 2000] [notice] suEXEC mechanism enabled (wrapper: /usr/local/sbin/suexec) S If you don't see the FrontPage/4.0.4.3 in the httpd-error.log, then you have an older apache.sh script installed in PREFIX/etc/rc.d that doesn't use startfp. You should install the apache13-fp/files/apache.sh* file into etc/rc.d and make the appropriate PERL and PREFIX changes to the script. When fp_install.sh script was executed by the install procedure, did you use the default options? Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 18:20: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 18:20:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 54D0137B402 for ; Wed, 20 Dec 2000 18:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL2K2O36759; Wed, 20 Dec 2000 18:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 20 Dec 2000 18:20:02 -0800 (PST) Resent-Message-Id: <200012210220.eBL2K2O36759@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, hollywar@holywar.net Received: from alamis.holywar.net (alamis.holywar.net [211.232.152.20]) by hub.freebsd.org (Postfix) with ESMTP id C782937B400 for ; Wed, 20 Dec 2000 18:15:26 -0800 (PST) Received: (from hollywar@localhost) by alamis.holywar.net (8.11.1/8.11.1) id eBL2FO810120; Thu, 21 Dec 2000 11:15:24 +0900 (KST) (envelope-from hollywar) Message-Id: <200012210215.eBL2FO810120@alamis.holywar.net> Date: Thu, 21 Dec 2000 11:15:24 +0900 (KST) From: hollywar@holywar.net Sender: hollywar@alamis.holywar.net Reply-To: hollywar@holywar.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23703: Update korean/bitchx for security reason Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23703 >Category: ports >Synopsis: Update korean/bitchx for security reason >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 20 18:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: JunSeon Oh >Release: FreeBSD 4.2-STABLE i386 >Organization: holynet >Environment: bitchx allows remote code execution >Description: The bitchx port, versions prior to 1.0c17_1, contains a remote vulnerability. Through a stack overflow in the DNS parsing code, a malicious remote user in control of their reverse DNS records may crash a bitchx session, or cause arbitrary code to be executed by the user running bitchx. >How-To-Repeat: Please add this patch to korean/bitchx/files/patch-al >Fix: --- source/misc.c.orig Tue Jul 4 18:01:52 2000 +++ source/misc.c Thu Dec 21 11:03:09 2000 @@ -2427,6 +2427,8 @@ switch(type) { case T_A : + if (dlen != sizeof(struct in_addr)) + return 0; rptr->re_he.h_length = dlen; if (ans == 1) rptr->re_he.h_addrtype=(class == C_IN) ? @@ -2473,6 +2475,7 @@ *alias = NULL; break; default : + cp += dlen ; break; } } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 19: 0: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 19:00:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C391B37B402 for ; Wed, 20 Dec 2000 19:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL301541156; Wed, 20 Dec 2000 19:00:01 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 20 Dec 2000 19:00:01 -0800 (PST) Resent-Message-Id: <200012210300.eBL301541156@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dnpowers@swbell.net Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7593037B402 for ; Wed, 20 Dec 2000 18:55:25 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL2tPU40647; Wed, 20 Dec 2000 18:55:25 -0800 (PST) (envelope-from nobody) Message-Id: <200012210255.eBL2tPU40647@freefall.freebsd.org> Date: Wed, 20 Dec 2000 18:55:25 -0800 (PST) From: dnpowers@swbell.net Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23704: gnomevfs will not make with 4.2-STABLE Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23704 >Category: ports >Synopsis: gnomevfs will not make with 4.2-STABLE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Dec 20 19:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: David Powers >Release: 4.2-STABLE >Organization: >Environment: FreeBSD dave.swbell.net 4.2-STABLE FreeBSD 4.2-STABLE #0: Mon Dec 11 06:49:09 CST 2000 dave@dave.swbell.net:/usr/src/sys/compile/DAVE i386 >Description: ===> Building for gnomevfs-0.4.2_1 gmake all-recursive gmake[1]: Entering directory `/usr/ports/devel/gnomevfs/work/gnome-vfs-0.4.2' Making all in libgnomevfs gmake[2]: Entering directory `/usr/ports/devel/gnomevfs/work/gnome-vfs-0.4.2/libgnomevfs' /bin/sh ../libtool --mode=link cc -O -pipe -I/usr/X11R6/include -L/usr/X11R6/lib -o gnome-vfs-gen-mimedb -static gnome-vfs-gen-mimedb.o libgnomevfs.la -L/usr/local/lib cc -O -pipe -I/usr/X11R6/include -L/usr/X11R6/lib -o gnome-vfs-gen-mimedb gnome-vfs-gen-mimedb.o .libs/libgnomevfs.a -L/usr/local/lib -lgnome -lgnomesupport -lintl -lesd -laudiofile -lm -lglib12 -loaf -lORBitCosNaming -lORBit -lIIOP -lORBitutil -lglib12 -lm -lgconf-gtk-1 -lgconf-1 -loaf -lORBitCosNaming -lORBit -lIIOP -lORBitutil -lgtk12 -lgdk12 -lgmodule12 -lglib12 -lintl -lxpg4 -lXext -lX11 -lm -lgmodule12 -lgthread12 -lglib12 -pthread -L/usr/local/lib /usr/libexec/elf/ld: warning: libiconv.so.1, needed by /usr/X11R6/lib/libgconf-gtk-1.so, not found (try using --rpath) /usr/X11R6/lib/libgconf-1.so: undefined reference to `iconv_open' /usr/X11R6/lib/libgconf-1.so: undefined reference to `iconv_close' /usr/X11R6/lib/libgconf-1.so: undefined reference to `iconv' gmake[2]: *** [gnome-vfs-gen-mimedb] Error 1 gmake[2]: Leaving directory `/usr/ports/devel/gnomevfs/work/gnome-vfs-0.4.2/libgnomevfs' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/devel/gnomevfs/work/gnome-vfs-0.4.2' gmake: *** [all-recursive-am] Error 2 *** Error code 2 Stop in /usr/ports/devel/gnomevfs. *** Error code 1 >How-To-Repeat: cd /usr/ports/devel/gnomevfs make clean && make >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 20:15:27 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 20:15:26 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4AEA737B400; Wed, 20 Dec 2000 20:15:26 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL4FLj52668; Wed, 20 Dec 2000 20:15:21 -0800 (PST) (envelope-from will) Date: Wed, 20 Dec 2000 20:15:21 -0800 (PST) From: Message-Id: <200012210415.eBL4FLj52668@freefall.freebsd.org> To: gnb@itga.com.au, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21942: Update nethack3 port to 3.3.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update nethack3 port to 3.3.1 State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Wed Dec 20 20:14:37 PST 2000 State-Changed-Why: Committed, thanks. I modified your scheme for handling PORTVERSION and DISTNAME so it didn't use a separate variable. It seemed to work for me. http://www.freebsd.org/cgi/query-pr.cgi?pr=21942 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 20:20: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 20:20:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 05DFE37B402 for ; Wed, 20 Dec 2000 20:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL4K1M53163; Wed, 20 Dec 2000 20:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Wed, 20 Dec 2000 20:20:01 -0800 (PST) Resent-Message-Id: <200012210420.eBL4K1M53163@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, takemoto@shp.sony.co.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BA5037B402 for ; Wed, 20 Dec 2000 20:12:35 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL4CZK52342; Wed, 20 Dec 2000 20:12:35 -0800 (PST) (envelope-from nobody) Message-Id: <200012210412.eBL4CZK52342@freefall.freebsd.org> Date: Wed, 20 Dec 2000 20:12:35 -0800 (PST) From: takemoto@shp.sony.co.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23705: japanese zipcodes data is old at ports/japanese/zipcodes. Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23705 >Category: ports >Synopsis: japanese zipcodes data is old at ports/japanese/zipcodes. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 20 20:20:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Noriaki Takemoto >Release: FreeBSD 4.2-STABLE >Organization: >Environment: FreeBSD XXXXXXXX 4.2-STABLE FreeBSD 4.2-STABLE #4: Mon Dec 18 10:02:46 JST 2000 root@XXXXXXXXX:/usr/src/sys/compile/HDPC i386 (XXXXXXXXX is machine name) >Description: (I am not good at writing in English. I'm sorry about I often write unusual expressions in English.) ports/japanese/zipcodes uses zipcodes data at Oct.30, 1998. japanese zipcodes data was updated. And MASTER_SITES for ports/japanese/zipcodes is changed. If you can read Japanese language, see http://www.postal.mpt.go.jp/ It is official site for Ministry of Posts and Telecommunications in Japan. >How-To-Repeat: >Fix: % cd /usr/ports/japanese % cp -rp zipcodes zipcodes.bak (edit) zipcodes/Makefile (edit) zipcodes/distinfo % diff -ruN zipcodes.bak zipcodes diff -ruN zipcodes.bak/Makefile zipcodes/Makefile --- zipcodes.bak/Makefile Thu Apr 13 17:34:11 2000 +++ zipcodes/Makefile Thu Dec 21 10:45:41 2000 @@ -6,10 +6,9 @@ # PORTNAME= zipcodes -PORTVERSION= 19980130 +PORTVERSION= 20001001 CATEGORIES= japanese misc -MASTER_SITES= http://www.postal.mpt.go.jp/lzh/ \ - http://freefall.freebsd.org/~itojun/distfiles/ +MASTER_SITES= http://210.151.242.1/lzh/s/ EXTRACT_SUFX= .lzh DISTNAME= ken_all diff -ruN zipcodes.bak/distinfo zipcodes/distinfo --- zipcodes.bak/distinfo Sat Mar 7 09:17:07 1998 +++ zipcodes/distinfo Thu Dec 21 10:27:42 2000 @@ -1 +1 @@ -MD5 (ken_all.lzh) = 2c6efee911091b322f9dcc2e2f96a9f5 +MD5 (ken_all.lzh) = 6853247de61846ce8a1b21f6d989ae42 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 20:22:41 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 20:22:40 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 09F2337B400; Wed, 20 Dec 2000 20:22:40 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL4MaQ53530; Wed, 20 Dec 2000 20:22:36 -0800 (PST) (envelope-from will) Date: Wed, 20 Dec 2000 20:22:36 -0800 (PST) From: Message-Id: <200012210422.eBL4MaQ53530@freefall.freebsd.org> To: adsharma@sharmas.dhs.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21838: Updated port devel/sip Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Updated port devel/sip State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Wed Dec 20 20:21:34 PST 2000 State-Changed-Why: Appears to be a non-problem thanks to files/patch-aa. http://www.freebsd.org/cgi/query-pr.cgi?pr=21838 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 20:34:33 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 20:34:32 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (poynting.physics.purdue.edu [128.210.146.58]) by hub.freebsd.org (Postfix) with ESMTP id E1AB837B400; Wed, 20 Dec 2000 20:34:31 -0800 (PST) Received: from argon.firepipe.net (pm014-044.dialup.bignet.net [64.79.82.156]) by puck.firepipe.net (Postfix) with ESMTP id 1439E19D9; Wed, 20 Dec 2000 23:34:31 -0500 (EST) Received: by argon.firepipe.net (Postfix, from userid 1000) id AEAC419CF; Wed, 20 Dec 2000 23:30:10 -0500 (EST) Date: Wed, 20 Dec 2000 23:30:10 -0500 From: Will Andrews To: Dan Moschuk Cc: Trevor Johnson , Marcel Moolenaar , asami@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: Proposed bsd.port.mk patch Message-ID: <20001220233010.H319@argon.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Dan Moschuk , Trevor Johnson , Marcel Moolenaar , asami@FreeBSD.ORG, ports@FreeBSD.ORG References: <3A3FB351.F42BE665@cup.hp.com> <20001219224416.A58234@spirit.jaded.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001219224416.A58234@spirit.jaded.net>; from dan@FreeBSD.ORG on Tue, Dec 19, 2000 at 10:44:17PM -0500 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: will@argon.firepipe.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Dec 19, 2000 at 10:44:17PM -0500, Dan Moschuk wrote: > Yes, before I commit it I will add a quick message. Something to the effect You will not commit to ports/Mk/bsd.port.mk. Only Satoshi can do that. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 20:37:53 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 20:37:52 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2707A37B400; Wed, 20 Dec 2000 20:37:52 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL4bpA55024; Wed, 20 Dec 2000 20:37:51 -0800 (PST) (envelope-from will) Date: Wed, 20 Dec 2000 20:37:51 -0800 (PST) From: Message-Id: <200012210437.eBL4bpA55024@freefall.freebsd.org> To: jhp@freebsd.hanirc.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21401: Update port sysutils/wmtop to 0.83 with fix for current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port sysutils/wmtop to 0.83 with fix for current State-Changed-From-To: open->feedback State-Changed-By: will State-Changed-When: Wed Dec 20 20:37:30 PST 2000 State-Changed-Why: What did the maintainer think? http://www.freebsd.org/cgi/query-pr.cgi?pr=21401 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 21: 7:47 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 21:07:45 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mail.hiwaay.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (Postfix) with ESMTP id 38E1637B400 for ; Wed, 20 Dec 2000 21:07:44 -0800 (PST) Received: from bonsai.knology.net (user-24-214-88-8.knology.net [24.214.88.8]) by mail.hiwaay.net (8.11.0/8.11.0) with ESMTP id eBL57fu01391; Wed, 20 Dec 2000 23:07:41 -0600 (CST) Received: (from steve@localhost) by bonsai.knology.net (8.11.1/8.11.1) id eBL57ZY55975; Wed, 20 Dec 2000 23:07:35 -0600 (CST) (envelope-from steve) Date: Wed, 20 Dec 2000 23:07:34 -0600 From: Steve Price To: "Scot W. Hetzel" Cc: Drew Sanford , ports@FreeBSD.ORG Subject: Re: apache13-fp Message-ID: <20001220230734.A39219@bonsai.knology.net> References: <3A412BD6.6050505@planetwe.com> <011501c06aeb$22391900$8dfee0d1@westbend.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <011501c06aeb$22391900$8dfee0d1@westbend.net>; from hetzels@westbend.net on Wed, Dec 20, 2000 at 07:12:47PM -0600 X-Operating-System: FreeBSD 4.2-STABLE i386 Sender: steve@hiwaay.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Scot, Thanks for the response. I work with Drew. I took a look at it tonight before I made the two hour trek back home. After about 30 minutes of fiddling with it and a trip to CompUSA to get a copy of FrontPage 2000 to test it, I've got it working. The default install worked once I figured out how to answer all the questions (from fp_install.sh) but I still don't understand enough about root/user/virtual webs. It at least works now so I've bought us some time to research the rest of this. Thanks. -steve On Wed, Dec 20, 2000 at 07:12:47PM -0600, Scot W. Hetzel wrote: # Check your httpd-error.log, it should contain the following lines: # # [Wed Dec 20 20:00:02 2000] [notice] Apache/1.3.14 (Unix) FrontPage/4.0.4.3 # configured -- resuming normal operations # [Wed Dec 20 20:00:02 2000] [notice] suEXEC mechanism enabled (wrapper: # /usr/local/sbin/suexec) # S # # If you don't see the FrontPage/4.0.4.3 in the httpd-error.log, then you have # an older apache.sh script installed in PREFIX/etc/rc.d that doesn't use # startfp. You should install the apache13-fp/files/apache.sh* file into # etc/rc.d and make the appropriate PERL and PREFIX changes to the script. # # When fp_install.sh script was executed by the install procedure, did you use # the default options? # # Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 21:55:48 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 21:55:47 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1132A37B400; Wed, 20 Dec 2000 21:55:47 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL5tkY64417; Wed, 20 Dec 2000 21:55:46 -0800 (PST) (envelope-from will) Date: Wed, 20 Dec 2000 21:55:46 -0800 (PST) From: Message-Id: <200012210555.eBL5tkY64417@freefall.freebsd.org> To: adsharma@sharmas.dhs.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21839: Updated port x11-toolkits/py-qt Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Updated port x11-toolkits/py-qt State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Wed Dec 20 21:54:36 PST 2000 State-Changed-Why: From a sample compile of this port, it doesn't appear to have problems with the moc binary, although it has other problems to deal with. http://www.freebsd.org/cgi/query-pr.cgi?pr=21839 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 21:57:24 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 21:57:23 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C06D837B400; Wed, 20 Dec 2000 21:57:22 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL5vMD64610; Wed, 20 Dec 2000 21:57:22 -0800 (PST) (envelope-from will) Date: Wed, 20 Dec 2000 21:57:22 -0800 (PST) From: Message-Id: <200012210557.eBL5vMD64610@freefall.freebsd.org> To: di0nys0s@earthlink.net, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22019: Ports collection update to TiK Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Ports collection update to TiK State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Wed Dec 20 21:56:41 PST 2000 State-Changed-Why: I'm assuming this is a bogus PR since it says there's a new file but there is no patch or pointer to a patch. http://www.freebsd.org/cgi/query-pr.cgi?pr=22019 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 22: 1:34 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 22:01:33 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 051AB37B402; Wed, 20 Dec 2000 22:01:32 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL61WD65113; Wed, 20 Dec 2000 22:01:32 -0800 (PST) (envelope-from will) Date: Wed, 20 Dec 2000 22:01:32 -0800 (PST) From: Message-Id: <200012210601.eBL61WD65113@freefall.freebsd.org> To: yds@dppl.com, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21441: FIX: devel/pcre to install a working pgrep binary Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: FIX: devel/pcre to install a working pgrep binary State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Wed Dec 20 22:00:43 PST 2000 State-Changed-Why: James committed a fix to pcre similar to this awhile ago. http://www.freebsd.org/cgi/query-pr.cgi?pr=21441 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 22: 3:54 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 22:03:53 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 159DB37B400; Wed, 20 Dec 2000 22:03:45 -0800 (PST) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id IAA80845; Thu, 21 Dec 2000 08:03:28 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id eBL61Bc45300; Wed, 20 Dec 2000 22:01:11 -0800 (PST) (envelope-from reg) Date: Wed, 20 Dec 2000 22:01:11 -0800 From: Jeremy Lea To: Pascal Hofstee Cc: Maxim Sobolev , ports@FreeBSD.org Subject: Re: What's wrong with Mozilla 0.6? Message-ID: <20001220220111.R79112@shale.csir.co.za> References: <3A40CDEB.7D5D73F1@FreeBSD.org> <20001220110802.Q79112@shale.csir.co.za> <20001221000919.A15058@shadowmere.student.utwente.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001221000919.A15058@shadowmere.student.utwente.nl>; from daeron@wit401305.student.utwente.nl on Thu, Dec 21, 2000 at 12:09:19AM +0100 Sender: reg@shale.csir.co.za Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Thu, Dec 21, 2000 at 12:09:19AM +0100, Pascal Hofstee wrote: > IIRC ... they changed Milestone numbering for the Mozilla project ... > and Mozilla 0.6 is the follow up for M18 ... based on what is released > to the world as Netscape 6.0 No. Take a look at http://www.mozilla.org/roadmap.html. They even have pictures. Netscape's releases wer based off a fairly early Mxx, because they had to start merging in the security stuff (which they thought US export restrictions would prevent them from doing). Since then they have been doing their own 'merge from -current'. Regards, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 22:25:42 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 22:25:41 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0CFE137B400; Wed, 20 Dec 2000 22:25:41 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL6PeS74205; Wed, 20 Dec 2000 22:25:40 -0800 (PST) (envelope-from will) Date: Wed, 20 Dec 2000 22:25:40 -0800 (PST) From: Message-Id: <200012210625.eBL6PeS74205@freefall.freebsd.org> To: peterh@sapros.com, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21720: Update port to use ADNS. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port to use ADNS. State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Wed Dec 20 22:24:39 PST 2000 State-Changed-Why: Committed, thanks. I'm not happy that this requires rsaref lib (which is no longer part of the ports collection) or that it includes an ugly hack in the form of a patch to configure (instead of configure.in), but this will be your problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=21720 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 22:28:31 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 22:28:29 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 65B8D37B400; Wed, 20 Dec 2000 22:28:29 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL6SS774756; Wed, 20 Dec 2000 22:28:28 -0800 (PST) (envelope-from will) Date: Wed, 20 Dec 2000 22:28:28 -0800 (PST) From: Message-Id: <200012210628.eBL6SS774756@freefall.freebsd.org> To: tkato@prontomail.ne.jp, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22164: Update port: mail/xmail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: mail/xmail State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Wed Dec 20 22:28:23 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22164 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 22:32: 0 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 22:31:58 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D41E337B400; Wed, 20 Dec 2000 22:31:58 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL6Vwp75300; Wed, 20 Dec 2000 22:31:58 -0800 (PST) (envelope-from will) Date: Wed, 20 Dec 2000 22:31:58 -0800 (PST) From: Message-Id: <200012210631.eBL6Vwp75300@freefall.freebsd.org> To: plambert@plambert.net, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22194: Update Makefile for misc/heyu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update Makefile for misc/heyu State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Wed Dec 20 22:31:49 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22194 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 22:37:42 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 22:37:40 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8EDD337B400; Wed, 20 Dec 2000 22:37:40 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL6bdK76053; Wed, 20 Dec 2000 22:37:39 -0800 (PST) (envelope-from will) Date: Wed, 20 Dec 2000 22:37:39 -0800 (PST) From: Message-Id: <200012210637.eBL6bdK76053@freefall.freebsd.org> To: gmarco@giovannelli.it, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22326: update of the mail/minimalist Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update of the mail/minimalist State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Wed Dec 20 22:36:47 PST 2000 State-Changed-Why: Committed, thanks. BTW, I really don't like how this port breaks hier(7) with ${PREFIX}/minimalist instead of ${PREFIX}/share/minimalist. So if you could fix that next time, that'd be nice. http://www.freebsd.org/cgi/query-pr.cgi?pr=22326 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 22:48:24 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 22:48:23 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from taro.asahi-net.or.jp (taro.asahi-net.or.jp [202.224.39.47]) by hub.freebsd.org (Postfix) with ESMTP id 153EA37B400 for ; Wed, 20 Dec 2000 22:48:23 -0800 (PST) Received: from [192.168.1.102] (a24b25n231client132.hawaii.rr.com [24.25.231.132]) by taro.asahi-net.or.jp (8.8.8/3.7W) with ESMTP id PAA24277; Thu, 21 Dec 2000 15:46:56 +0900 (JST) User-Agent: Microsoft-Outlook-Express-Macintosh-Edition/5.02.2022 Date: Wed, 20 Dec 2000 20:45:21 -0600 Subject: FreeBSD Port: rtsp_proxy-1.0 From: Scott Poarch To: Cc: Message-ID: Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm trying to install Darwin Streaming Server on a FreeBSD virtual host. I downloaded the DSS code from apple, and uploaded it into usr/local, ran ./Install, and it didn't work. Obviously I'm clueless. Any clues? Thanks in advance. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 22:53:57 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 22:53:56 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 975DD37B400; Wed, 20 Dec 2000 22:53:56 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL6ruZ78116; Wed, 20 Dec 2000 22:53:56 -0800 (PST) (envelope-from will) Date: Wed, 20 Dec 2000 22:53:56 -0800 (PST) From: Message-Id: <200012210653.eBL6ruZ78116@freefall.freebsd.org> To: nosuzuki@e-mail.ne.jp, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22495: [UPDATE] ports/net/ppxp to use Tcl8.3 and Tk8.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [UPDATE] ports/net/ppxp to use Tcl8.3 and Tk8.3 State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Wed Dec 20 22:53:39 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22495 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 22:57: 3 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 22:57:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B8A7D37B69D; Wed, 20 Dec 2000 22:56:58 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL6uwK78509; Wed, 20 Dec 2000 22:56:58 -0800 (PST) (envelope-from will) Date: Wed, 20 Dec 2000 22:56:58 -0800 (PST) From: Message-Id: <200012210656.eBL6uwK78509@freefall.freebsd.org> To: andy@venus.sympad.net, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22546: Update port: games/pentix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/pentix State-Changed-From-To: open->feedback State-Changed-By: will State-Changed-When: Wed Dec 20 22:56:26 PST 2000 State-Changed-Why: Is there some reason why this functional change (not necessary for ports) can't be sent to the vendor and a new version generated with this patch? http://www.freebsd.org/cgi/query-pr.cgi?pr=22546 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 23: 7:57 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 23:07:56 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DE93937B400; Wed, 20 Dec 2000 23:07:55 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL77tR82003; Wed, 20 Dec 2000 23:07:55 -0800 (PST) (envelope-from will) Date: Wed, 20 Dec 2000 23:07:55 -0800 (PST) From: Message-Id: <200012210707.eBL77tR82003@freefall.freebsd.org> To: esk@ira.uka.de, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22584: Port fix: audio/id3lib Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port fix: audio/id3lib State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Wed Dec 20 23:07:49 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22584 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 23:29:11 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 23:29:06 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from dune.clickarray.com (unknown [216.132.92.2]) by hub.freebsd.org (Postfix) with ESMTP id 40AA537B400; Wed, 20 Dec 2000 23:29:06 -0800 (PST) Received: from vader.clickarray.com ([10.2.1.252]) by dune.clickarray.com (8.9.3/8.9.3) with ESMTP id XAA00763; Wed, 20 Dec 2000 23:32:01 -0800 (PST) (envelope-from asami@cs.berkeley.edu) Received: (from asami@localhost) by vader.clickarray.com (8.11.0/8.11.0) id eBL7TfJ50535; Wed, 20 Dec 2000 23:29:41 -0800 (PST) (envelope-from asami@cs.berkeley.edu) X-Authentication-Warning: vader.clickarray.com: asami set sender to asami@cs.berkeley.edu using -f Sender: asami@clickarray.com To: Dan Moschuk Cc: developers@freebsd.org, ports@freebsd.org Subject: Re: New bsd.port.mk patch References: <20001220001338.A85396@spirit.jaded.net> From: asami@freebsd.org (Satoshi - Ports Wraith - Asami) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Date: 20 Dec 2000 23:29:40 -0800 In-Reply-To: <20001220001338.A85396@spirit.jaded.net> (Dan Moschuk's message of "Wed, 20 Dec 2000 00:13:38 -0500") Message-ID: Lines: 45 User-Agent: T-gnus/6.14.5 (based on Gnus v5.8.7) (revision 06) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.0 =?ISO-2022-JP?B?KBskQjJWMWMbKEIp?= Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Dan Moschuk * I've added Trevor Johnson's suggestions and added a nice informative * message when the -P option was omitted. * * If no one has any problems with this, and if asami-san gives me the OK, I'd * like to commit this in the next few days (with -STABLE following a few days * afterwards). * * Index: bsd.port.mk * =================================================================== * RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v * retrieving revision 1.360 * diff -u -r1.360 bsd.port.mk * --- bsd.port.mk 2000/11/16 13:06:25 1.360 * +++ bsd.port.mk 2000/12/20 05:08:05 * @@ -620,12 +620,21 @@ * PACKAGES?= ${PORTSDIR}/packages * TEMPLATES?= ${PORTSDIR}/Templates * * -.if (!defined(PATCHDIR) && exists(${MASTERDIR}/patches)) || \ * - (!defined(PKGDIR) && exists(${MASTERDIR}/pkg)) || \ * - (!defined(MD5_FILE) && exists(${MASTERDIR}/files/md5)) * +.if (!defined(PKGDIR) && exists(${MASTERDIR}/pkg/DESCR)) || \ * + (defined(PKGDIR) && exists(${PKGDIR}/DESCR)) * pre-everything:: * @${ECHO} "Error: your port uses an old layout. Please update it to match this bsd.port.mk." * @${FALSE} * +.endif * +.if (!defined(PKGDIR) && exists(${MASTERDIR}/pkg) && \ * + !exists(${MASTERDIR}/pkg/DESCR)) || \ * + (defined(PKGDIR) && exists(${PKGDIR}) && !exists(${PKGDIR}/DESCR)) * +pre-everything:: * + @${ECHO} * + @${ECHO} ">> This port contains stale directories from the old port layout! " * + @${ECHO} ">> If you use cvs to update your ports collection, please make sure you update " * + @${ECHO} ">> using the -P option from now on!" * + @${ECHO} * .endif * PATCHDIR?= ${MASTERDIR}/files * FILESDIR?= ${MASTERDIR}/files Thanks for the patch. I will test and commit something like it soon. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 23:32:55 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 23:32:54 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1FA6937B400; Wed, 20 Dec 2000 23:32:54 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL7Wq288005; Wed, 20 Dec 2000 23:32:52 -0800 (PST) (envelope-from will) Date: Wed, 20 Dec 2000 23:32:52 -0800 (PST) From: Message-Id: <200012210732.eBL7Wq288005@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22619: Fix mail/sendmail (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fix mail/sendmail (by maintainer) State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Wed Dec 20 23:32:27 PST 2000 State-Changed-Why: Committed, thanks. I added this port to IPV6 virtual category, if that's OK with you. http://www.freebsd.org/cgi/query-pr.cgi?pr=22619 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Dec 20 23:44:21 2000 From owner-freebsd-ports@FreeBSD.ORG Wed Dec 20 23:44:19 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from dune.clickarray.com (unknown [216.132.92.2]) by hub.freebsd.org (Postfix) with ESMTP id 9C6CD37B400 for ; Wed, 20 Dec 2000 23:44:19 -0800 (PST) Received: from vader.clickarray.com ([10.2.1.252]) by dune.clickarray.com (8.9.3/8.9.3) with ESMTP id XAA01017; Wed, 20 Dec 2000 23:47:15 -0800 (PST) (envelope-from asami@cs.berkeley.edu) Received: (from asami@localhost) by vader.clickarray.com (8.11.0/8.11.0) id eBL7isK50599; Wed, 20 Dec 2000 23:44:54 -0800 (PST) (envelope-from asami@cs.berkeley.edu) X-Authentication-Warning: vader.clickarray.com: asami set sender to asami@cs.berkeley.edu using -f Sender: asami@clickarray.com To: Will Andrews Cc: ports@FreeBSD.org Subject: Re: Y2K lines in Makefiles References: <20001219022342.D1119@altair.firepipe.net> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Date: 20 Dec 2000 23:44:53 -0800 In-Reply-To: <20001219022342.D1119@altair.firepipe.net> (Will Andrews's message of "Tue, 19 Dec 2000 02:23:42 -0500") Message-ID: Lines: 13 User-Agent: T-gnus/6.14.5 (based on Gnus v5.8.7) (revision 06) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.0 =?ISO-2022-JP?B?KBskQjJWMWMbKEIp?= Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Will Andrews * I recently committed gsed to the tree. It had a Y2K line in the * original submission. I would like to remove all Y2K lines from the * ports tree around January 1, 2001. It's obvious they serve no purpose * anymore. * * Objections? None from me. I think they served their purpose and can now peacefully retire. :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 0: 1:27 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 00:01:26 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ECCE637B6A5; Thu, 21 Dec 2000 00:01:25 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL81PB94676; Thu, 21 Dec 2000 00:01:25 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 00:01:25 -0800 (PST) From: Message-Id: <200012210801.eBL81PB94676@freefall.freebsd.org> To: tkato@prontomail.ne.jp, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22750: Update port: x11-fm/mfm to mtoolsfm 1.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: x11-fm/mfm to mtoolsfm 1.6 State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Thu Dec 21 00:01:19 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22750 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 0: 2:19 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 00:02:18 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5FDAE37B404; Thu, 21 Dec 2000 00:02:18 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL82Im94821; Thu, 21 Dec 2000 00:02:18 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 00:02:18 -0800 (PST) From: Message-Id: <200012210802.eBL82Im94821@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, trevor@FreeBSD.org Subject: Re: ports/22751: Update port: x11-wm/evilwm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: x11-wm/evilwm Responsible-Changed-From-To: freebsd-ports->trevor Responsible-Changed-By: will Responsible-Changed-When: Thu Dec 21 00:02:07 PST 2000 Responsible-Changed-Why: Over to MAINTAINER. http://www.freebsd.org/cgi/query-pr.cgi?pr=22751 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 0:28:55 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 00:28:53 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C312D37B400; Thu, 21 Dec 2000 00:28:52 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL8SqR02057; Thu, 21 Dec 2000 00:28:52 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 00:28:52 -0800 (PST) From: Message-Id: <200012210828.eBL8SqR02057@freefall.freebsd.org> To: martti.kuparinen@piuha.net, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22791: [PATCH] ports/mail/cyrus update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] ports/mail/cyrus update State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Thu Dec 21 00:28:45 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22791 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 0:39:49 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 00:39:48 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3342137B400; Thu, 21 Dec 2000 00:39:48 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL8dmH04866; Thu, 21 Dec 2000 00:39:48 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 00:39:48 -0800 (PST) From: Message-Id: <200012210839.eBL8dmH04866@freefall.freebsd.org> To: sam@inf.enst.fr, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22807: Update port: lang/gnat-glade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: lang/gnat-glade State-Changed-From-To: open->feedback State-Changed-By: will State-Changed-When: Thu Dec 21 00:37:42 PST 2000 State-Changed-Why: I ran into this problem: checking for gnatls... gnatls checking for sed... (cached) sed checking if the Ada compiler is recent enough... yes checking which platform-specific variant to use... configure: error: Unsupported platform i386--freebsd4.2 [..] Seems this program's configure script is broken in some way. The port seemed to work fine with files/patch-aa. What do you think? http://www.freebsd.org/cgi/query-pr.cgi?pr=22807 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 0:54:48 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 00:54:46 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C64837B400; Thu, 21 Dec 2000 00:54:46 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL8skW08758; Thu, 21 Dec 2000 00:54:46 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 00:54:46 -0800 (PST) From: Message-Id: <200012210854.eBL8skW08758@freefall.freebsd.org> To: tkato@prontomail.ne.jp, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22986: Update port: patchkit for fixing broken comments Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: patchkit for fixing broken comments State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Thu Dec 21 00:51:11 PST 2000 State-Changed-Why: Committed, thanks. Some people made changes without noticing your PR, and I improved on some of them too. http://www.freebsd.org/cgi/query-pr.cgi?pr=22986 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 0:55:34 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 00:55:33 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B28437B402; Thu, 21 Dec 2000 00:55:33 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL8tXu09039; Thu, 21 Dec 2000 00:55:33 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 00:55:33 -0800 (PST) From: Message-Id: <200012210855.eBL8tXu09039@freefall.freebsd.org> To: martti.kuparinen@piuha.net, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23474: [PATCH] postfix upgrade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] postfix upgrade State-Changed-From-To: open->feedback State-Changed-By: will State-Changed-When: Thu Dec 21 00:55:20 PST 2000 State-Changed-Why: What does the maintainer think about this? http://www.freebsd.org/cgi/query-pr.cgi?pr=23474 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 0:56:40 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 00:56:39 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 481EC37B400; Thu, 21 Dec 2000 00:56:39 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL8ucR09247; Thu, 21 Dec 2000 00:56:38 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 00:56:38 -0800 (PST) From: Message-Id: <200012210856.eBL8ucR09247@freefall.freebsd.org> To: joseph@randomnetworks.com, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23550: [PORT UPDATE] - graphics/gifsicle 1.20->1.23 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PORT UPDATE] - graphics/gifsicle 1.20->1.23 State-Changed-From-To: open->feedback State-Changed-By: will State-Changed-When: Thu Dec 21 00:56:29 PST 2000 State-Changed-Why: What does the maintainer think about this? http://www.freebsd.org/cgi/query-pr.cgi?pr=23550 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 0:58:45 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 00:58:43 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BCF1B37B400; Thu, 21 Dec 2000 00:58:43 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL8whB09969; Thu, 21 Dec 2000 00:58:43 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 00:58:43 -0800 (PST) From: Message-Id: <200012210858.eBL8whB09969@freefall.freebsd.org> To: khera@kciLink.com, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23558: no equivalent of "make replace" in postfix package Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: no equivalent of "make replace" in postfix package State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Thu Dec 21 00:57:26 PST 2000 State-Changed-Why: The workaround will have to do, since there is no way to do this replacement without requiring an interactive pkg-install script, and that would be nasty. http://www.freebsd.org/cgi/query-pr.cgi?pr=23558 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 0:59:27 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 00:59:26 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DE91737B400; Thu, 21 Dec 2000 00:59:25 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL8xPW10179; Thu, 21 Dec 2000 00:59:25 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 00:59:25 -0800 (PST) From: Message-Id: <200012210859.eBL8xPW10179@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, nakai@FreeBSD.org Subject: Re: ports/23570: Update port: x11-wm/icewm to 1.0.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: x11-wm/icewm to 1.0.5 Responsible-Changed-From-To: freebsd-ports->nakai Responsible-Changed-By: will Responsible-Changed-When: Thu Dec 21 00:59:15 PST 2000 Responsible-Changed-Why: Over to MAINTAINER. http://www.freebsd.org/cgi/query-pr.cgi?pr=23570 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 1: 2:37 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 01:02:35 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.189]) by hub.freebsd.org (Postfix) with SMTP id C87D437B400 for ; Thu, 21 Dec 2000 01:02:18 -0800 (PST) Received: (qmail 4426 invoked by uid 1000); 21 Dec 2000 09:00:59 -0000 Date: Thu, 21 Dec 2000 11:00:59 +0200 From: Peter Pentchev To: Andrew Reilly Cc: freebsd-ports@freebsd.org Subject: Re: Integration of ports and 3rd party anoncvs repositories? Message-ID: <20001221110058.A2990@ringworld.oblivion.bg> Mail-Followup-To: Andrew Reilly , freebsd-ports@freebsd.org References: <20001221103408.A76507@gurney.reilly.home> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001221103408.A76507@gurney.reilly.home>; from areilly@bigpond.net.au on Thu, Dec 21, 2000 at 10:34:09AM +1100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Mmm.. I might be wrong here, but wouldn't tracking the CVS versions require nightly, if not hourly, test builds from the port maintainer to make sure that ongoing commits do not interfere with local patches? I can see your point (and it's a mighty valid one, too - some FreeBSD users do not even pay per megabyte, but use modems instead :). However, it is exactly those monster pieces of software that usually require the most TLC from maintainers, and tracking CVS would seem to me to require even more :( G'luck, Peter -- This sentence was in the past tense. On Thu, Dec 21, 2000 at 10:34:09AM +1100, Andrew Reilly wrote: > There are some large and fairly rapidly evolving code bases out > there at the moment. They aren't part of the base FreeBSD > distribution, but are frequently installed via the ports > collection: XFree86, Wine, mozilla, kde and gnome, probably > openoffice soon. All of these are available through incremental > means: anoncvs, CVSup, or inter-tarball diffs. > > Please correct me if I'm wrong here, but the current Ports > facility is based on the notion of operating from distribution > tarballs that wind up in /usr/ports/distfiles, one way or > another. Some of these tarballs are now really big, which (for > those of us who pay for our bandwidth by the megabyte) is a > disincentive for staying current. > > I've managed to track Wine for a while by building my own > tarballs incrementally, with the deltas. I'm just about to have > a go at grabbing XFree86-4.0.2 by CVSup. > > Has anyone been thinking of tweaking the ports "extract" target > to copy from a local copy of the original repository, rather > than going straight for a tarball file? > > How could we standardise access to source repositories from > different vendors, so that the ports makefiles could determine > if they were present automagically? > > Would it be best to go for full local CVS repositories, and have > the "extract" target do a cvs co, or could we get by with local > "checked-out" trees? (I haven't really used CVS myself yet: I > follow FreeBSD-stable with CVSup in "check out" mode.) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 1:10:10 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 01:10:06 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 714D937B402 for ; Thu, 21 Dec 2000 01:10:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL9A6j15362; Thu, 21 Dec 2000 01:10:06 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 01:10:06 -0800 (PST) Resent-Message-Id: <200012210910.eBL9A6j15362@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, Jeremy Shaffner Received: from indigo.external.org (c1118643-b.chmpgn1.il.home.com [24.181.130.163]) by hub.freebsd.org (Postfix) with ESMTP id B451D37B400 for ; Thu, 21 Dec 2000 01:03:22 -0800 (PST) Received: (from jeremy@localhost) by indigo.external.org (8.11.1/8.11.1) id eBL92wl84100; Thu, 21 Dec 2000 03:02:58 -0600 (CST) (envelope-from jeremy) Message-Id: <200012210902.eBL92wl84100@indigo.external.org> Date: Thu, 21 Dec 2000 03:02:58 -0600 (CST) From: Jeremy Shaffner Sender: jeremy@indigo.external.org Reply-To: Jeremy Shaffner To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23707: New Port: devel/p5-File-Tail Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23707 >Category: ports >Synopsis: New Port: devel/p5-File-Tail >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 01:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jeremy Shaffner >Release: FreeBSD 4.2-20001106-BETA i386 >Organization: >Environment: >Description: This is a Perl Module that tails a given file. It's necessary for Peep (The Network Auralizer) which is forthcoming. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-File-Tail # p5-File-Tail/Makefile # p5-File-Tail/distinfo # p5-File-Tail/pkg-comment # p5-File-Tail/pkg-descr # p5-File-Tail/pkg-plist # echo c - p5-File-Tail mkdir -p p5-File-Tail > /dev/null 2>&1 echo x - p5-File-Tail/Makefile sed 's/^X//' >p5-File-Tail/Makefile << 'END-of-p5-File-Tail/Makefile' X# New ports collection makefile for: File-Tail X# Date created: 19 December 2000 X# Whom: Jeremy Shaffner X# X# $FreeBSD$ X XPORTNAME= File-Tail XPORTVERSION= 0.97 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= File XPKGNAMEPREFIX= p5- X XMAINTAINER= jeremy@external.org X XBUILD_DEPENDS= ${site_perl}/Time/HiRes.pm:${PORTSDIR}/devel/p5-Time-HiRes X Xsite_perl= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH} X XUSE_PERL5= YES XPERL_CONFIGURE= YES X XMAN3= File::Tail.3 XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} X X.include END-of-p5-File-Tail/Makefile echo x - p5-File-Tail/distinfo sed 's/^X//' >p5-File-Tail/distinfo << 'END-of-p5-File-Tail/distinfo' XMD5 (File-Tail-0.97.tar.gz) = f516d3e619db0bf7205b4ab4d6daede6 END-of-p5-File-Tail/distinfo echo x - p5-File-Tail/pkg-comment sed 's/^X//' >p5-File-Tail/pkg-comment << 'END-of-p5-File-Tail/pkg-comment' XPerl Module to read the end of a file as it's appended to END-of-p5-File-Tail/pkg-comment echo x - p5-File-Tail/pkg-descr sed 's/^X//' >p5-File-Tail/pkg-descr << 'END-of-p5-File-Tail/pkg-descr' XThe File::Tail module is designed for reading files which are continously Xappended to (the name comes from the tail -f directive). Usualy such files Xare logfiles of some description. END-of-p5-File-Tail/pkg-descr echo x - p5-File-Tail/pkg-plist sed 's/^X//' >p5-File-Tail/pkg-plist << 'END-of-p5-File-Tail/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/File/Tail/.packlist Xlib/perl5/site_perl/%%PERL_VER%%/File/Tail.pm Xlib/perl5/site_perl/%%PERL_VER%%/auto/File/Tail/autosplit.ix X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/File/Tail X@dirrm lib/perl5/site_perl/%%PERL_VER%%/auto/File/Tail END-of-p5-File-Tail/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 1:11: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 01:11:07 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from sr14.nsw-remote.bigpond.net.au (sr14.nsw-remote.bigpond.net.au [24.192.3.29]) by hub.freebsd.org (Postfix) with ESMTP id F3D6037B400 for ; Thu, 21 Dec 2000 01:11:04 -0800 (PST) Received: from areilly.bpc-users.org (CPE-144-132-234-126.nsw.bigpond.net.au [144.132.234.126]) by sr14.nsw-remote.bigpond.net.au (Pro-8.9.3/8.9.3) with SMTP id UAA13803 for ; Thu, 21 Dec 2000 20:11:01 +1100 (EDT) Message-Id: <200012210911.UAA13803@sr14.nsw-remote.bigpond.net.au> Received: (qmail 83189 invoked from network); 21 Dec 2000 09:11:00 -0000 Received: from localhost (HELO gurney.reilly.home) (andrew@127.0.0.1) by localhost with SMTP; 21 Dec 2000 09:11:00 -0000 Date: Thu, 21 Dec 2000 20:10:59 +1100 (EST) From: Andrew Reilly Subject: Re: Integration of ports and 3rd party anoncvs repositories? To: roam@orbitel.bg Cc: freebsd-ports@freebsd.org In-Reply-To: <20001221110058.A2990@ringworld.oblivion.bg> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: andrew@areilly.bpc-users.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 21 Dec, Peter Pentchev wrote: > Mmm.. I might be wrong here, but wouldn't tracking the CVS versions > require nightly, if not hourly, test builds from the port maintainer > to make sure that ongoing commits do not interfere with local patches? Oh, no. I didn't intend to imply that the ports system should be capable of working with arbitrary checkouts. That would be very unlikely indeed. I think that ports would usually just follow tagged releases, as they do now. They still have to work with the tarball releases, after all. No, I was just suggesting that, come release time, a "cvs co -rFOO_TAG" might result in lower download time/space than grabbing the entire tarball. I guess that there could easily be room, then, for super-keen port maintaners to have a separate -nightly version of the port, but even that would have to be based on a time-stamped check-out. It also doesn't seem terribly likely for the bhemoths that I was initially thinking about, either. -- Andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 1:17:13 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 01:17:12 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4CD8737B402; Thu, 21 Dec 2000 01:17:12 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL9HB517193; Thu, 21 Dec 2000 01:17:11 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 01:17:11 -0800 (PST) From: Message-Id: <200012210917.eBL9HB517193@freefall.freebsd.org> To: dwcjr@inethouston.net, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23582: Update www/asp2php Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update www/asp2php State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Thu Dec 21 01:15:53 PST 2000 State-Changed-Why: Committed, thanks. Your patch was kind of screwed up, it made a new file "files-aa" that I didn't notice until the end. The only difference (with patch-aa) I saw was the install-gtk target, so I ended up ignoring this file and removing the install-gtk target. Also, I added in a perl regex to use ${GTK_CONFIG}, this fixed the build for me. http://www.freebsd.org/cgi/query-pr.cgi?pr=23582 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 1:17:21 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 01:17:19 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.189]) by hub.freebsd.org (Postfix) with SMTP id 3C9C137B402 for ; Thu, 21 Dec 2000 01:17:17 -0800 (PST) Received: (qmail 4697 invoked by uid 1000); 21 Dec 2000 09:16:20 -0000 Date: Thu, 21 Dec 2000 11:16:20 +0200 From: Peter Pentchev To: Andrew Reilly Cc: freebsd-ports@freebsd.org Subject: Re: Integration of ports and 3rd party anoncvs repositories? Message-ID: <20001221111620.B2990@ringworld.oblivion.bg> Mail-Followup-To: Andrew Reilly , freebsd-ports@freebsd.org References: <20001221110058.A2990@ringworld.oblivion.bg> <200012210911.UAA13802@sr14.nsw-remote.bigpond.net.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200012210911.UAA13802@sr14.nsw-remote.bigpond.net.au>; from areilly@bigpond.net.au on Thu, Dec 21, 2000 at 08:10:59PM +1100 Sender: roam@ringworld.nanolink.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Dec 21, 2000 at 08:10:59PM +1100, Andrew Reilly wrote: > On 21 Dec, Peter Pentchev wrote: > > Mmm.. I might be wrong here, but wouldn't tracking the CVS versions > > require nightly, if not hourly, test builds from the port maintainer > > to make sure that ongoing commits do not interfere with local patches? > > Oh, no. I didn't intend to imply that the ports system should be > capable of working with arbitrary checkouts. That would be very > unlikely indeed. I think that ports would usually just follow > tagged releases, as they do now. They still have to work with the > tarball releases, after all. > > No, I was just suggesting that, come release time, a "cvs co > -rFOO_TAG" might result in lower download time/space than grabbing > the entire tarball. Yup, Jeremy Shaffner pointed out the -r scheme, too. OK, time for the daily reminder to self - NO posting to public mailing lists before the first liter of for the day! > I guess that there could easily be room, then, for super-keen port > maintaners to have a separate -nightly version of the port, but > even that would have to be based on a time-stamped check-out. It > also doesn't seem terribly likely for the bhemoths that I was > initially thinking about, either. G'luck, Peter -- This sentence contains exactly threee erors. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 1:17:46 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 01:17:45 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D9D8337B400; Thu, 21 Dec 2000 01:17:44 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL9HiT17412; Thu, 21 Dec 2000 01:17:44 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 01:17:44 -0800 (PST) From: Message-Id: <200012210917.eBL9HiT17412@freefall.freebsd.org> To: dirk.meyer@dinoex.sub.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23589: update net/licq Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update net/licq State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Thu Dec 21 01:17:35 PST 2000 State-Changed-Why: Brian updated to a newer version today. http://www.freebsd.org/cgi/query-pr.cgi?pr=23589 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 1:20:52 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 01:20:50 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A5E537B404; Thu, 21 Dec 2000 01:20:50 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL9Kos18229; Thu, 21 Dec 2000 01:20:50 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 01:20:50 -0800 (PST) From: Message-Id: <200012210920.eBL9Kos18229@freefall.freebsd.org> To: ishmael27@home.com, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23594: Update graphics/scrot to 0.5 (MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update graphics/scrot to 0.5 (MAINTAINER) State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Thu Dec 21 01:20:45 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23594 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 1:21:35 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 01:21:34 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2862637B400; Thu, 21 Dec 2000 01:21:33 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL9LXQ18346; Thu, 21 Dec 2000 01:21:33 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 01:21:33 -0800 (PST) From: Message-Id: <200012210921.eBL9LXQ18346@freefall.freebsd.org> To: poseiden@inethouston.net, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23601: Update www/hypermail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update www/hypermail State-Changed-From-To: open->feedback State-Changed-By: will State-Changed-When: Thu Dec 21 01:21:20 PST 2000 State-Changed-Why: What does the MAINTAINER think of this patch? http://www.freebsd.org/cgi/query-pr.cgi?pr=23601 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 1:22:22 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 01:22:21 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 77B0837B400; Thu, 21 Dec 2000 01:22:21 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL9MLx18593; Thu, 21 Dec 2000 01:22:21 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 01:22:21 -0800 (PST) From: Message-Id: <200012210922.eBL9MLx18593@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, roger@FreeBSD.org Subject: Re: ports/23636: Update net/gatekeeper Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update net/gatekeeper Responsible-Changed-From-To: freebsd-ports->roger Responsible-Changed-By: will Responsible-Changed-When: Thu Dec 21 01:22:10 PST 2000 Responsible-Changed-Why: Over to MAINTAINER. http://www.freebsd.org/cgi/query-pr.cgi?pr=23636 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 1:27:35 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 01:27:34 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D328F37B402; Thu, 21 Dec 2000 01:27:34 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL9RYW21226; Thu, 21 Dec 2000 01:27:34 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 01:27:34 -0800 (PST) From: Message-Id: <200012210927.eBL9RYW21226@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, mharo@FreeBSD.org Subject: Re: ports/23637: Update ftp/proftpd update pkg-plist Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update ftp/proftpd update pkg-plist Responsible-Changed-From-To: freebsd-ports->mharo Responsible-Changed-By: will Responsible-Changed-When: Thu Dec 21 01:27:22 PST 2000 Responsible-Changed-Why: Over to MAINTAINER. http://www.freebsd.org/cgi/query-pr.cgi?pr=23637 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 1:39:48 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 01:39:46 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A2D0F37B400; Thu, 21 Dec 2000 01:39:45 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL9djH24592; Thu, 21 Dec 2000 01:39:45 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 01:39:45 -0800 (PST) From: Message-Id: <200012210939.eBL9djH24592@freefall.freebsd.org> To: kappa@zombie.antar.bryansk.ru, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23640: [port update] www/p5-HTML-Embperl update to 1.3.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [port update] www/p5-HTML-Embperl update to 1.3.0 State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Thu Dec 21 01:39:04 PST 2000 State-Changed-Why: Committed, thanks. I added IS_INTERACTIVE=yes to the Makefile for you. If possible please make a patch to remove this. http://www.freebsd.org/cgi/query-pr.cgi?pr=23640 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 1:41: 0 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 01:40:59 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3AFC937B402; Thu, 21 Dec 2000 01:40:59 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL9exM24886; Thu, 21 Dec 2000 01:40:59 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 01:40:59 -0800 (PST) From: Message-Id: <200012210940.eBL9exM24886@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, dirk@FreeBSD.org Subject: Re: ports/23641: Upgrade LyX to version 1.1.5-fix2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Upgrade LyX to version 1.1.5-fix2 Responsible-Changed-From-To: freebsd-ports->dirk Responsible-Changed-By: will Responsible-Changed-When: Thu Dec 21 01:40:50 PST 2000 Responsible-Changed-Why: Over to MAINTAINER. http://www.freebsd.org/cgi/query-pr.cgi?pr=23641 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 1:44: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 01:44:04 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 34A3F37B400; Thu, 21 Dec 2000 01:44:04 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL9i4R25823; Thu, 21 Dec 2000 01:44:04 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 01:44:04 -0800 (PST) From: Message-Id: <200012210944.eBL9i4R25823@freefall.freebsd.org> To: quinot@inf.enst.fr, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23645: Updated port: devel/asis 3.13p Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Updated port: devel/asis 3.13p State-Changed-From-To: open->feedback State-Changed-By: will State-Changed-When: Thu Dec 21 01:43:51 PST 2000 State-Changed-Why: What does the MAINTAINER think about this patch? http://www.freebsd.org/cgi/query-pr.cgi?pr=23645 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 1:45: 1 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 01:45:00 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0368637B400; Thu, 21 Dec 2000 01:45:00 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL9ixR26010; Thu, 21 Dec 2000 01:44:59 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 01:44:59 -0800 (PST) From: Message-Id: <200012210944.eBL9ixR26010@freefall.freebsd.org> To: joseph@randomnetworks.com, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23648: [PORT UPDATE] editors/nano 0.9.21 -> 0.9.24 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PORT UPDATE] editors/nano 0.9.21 -> 0.9.24 State-Changed-From-To: open->feedback State-Changed-By: will State-Changed-When: Thu Dec 21 01:44:47 PST 2000 State-Changed-Why: What does the MAINTAINER think about this patch? http://www.freebsd.org/cgi/query-pr.cgi?pr=23648 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 1:45:38 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 01:45:37 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A23037B400; Thu, 21 Dec 2000 01:45:37 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL9jbR26212; Thu, 21 Dec 2000 01:45:37 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 01:45:37 -0800 (PST) From: Message-Id: <200012210945.eBL9jbR26212@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, dburr@FreeBSD.org Subject: Re: ports/23653: [PORT - UPDATE] audio/opennap 0.37 -> 0.38 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PORT - UPDATE] audio/opennap 0.37 -> 0.38 Responsible-Changed-From-To: freebsd-ports->dburr Responsible-Changed-By: will Responsible-Changed-When: Thu Dec 21 01:45:27 PST 2000 Responsible-Changed-Why: Over to MAINTAINER. http://www.freebsd.org/cgi/query-pr.cgi?pr=23653 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 1:46: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 01:46:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B7F4F37B400; Thu, 21 Dec 2000 01:46:03 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL9k3a26314; Thu, 21 Dec 2000 01:46:03 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 01:46:03 -0800 (PST) From: Message-Id: <200012210946.eBL9k3a26314@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, mharo@FreeBSD.org Subject: Re: ports/23654: [PORT - UPDATE] net/naim 0.9.6.2010 -> 0.10.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PORT - UPDATE] net/naim 0.9.6.2010 -> 0.10.1 Responsible-Changed-From-To: freebsd-ports->mharo Responsible-Changed-By: will Responsible-Changed-When: Thu Dec 21 01:45:55 PST 2000 Responsible-Changed-Why: Over to MAINTAINER. http://www.freebsd.org/cgi/query-pr.cgi?pr=23654 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 1:50:11 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 01:50:10 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 29BCE37B400; Thu, 21 Dec 2000 01:50:10 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL9oA627208; Thu, 21 Dec 2000 01:50:10 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 01:50:10 -0800 (PST) From: Message-Id: <200012210950.eBL9oA627208@freefall.freebsd.org> To: dwcjr@inethouston.net, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23657: Update audio/juke add man page to Makefile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update audio/juke add man page to Makefile State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Thu Dec 21 01:50:01 PST 2000 State-Changed-Why: Fixed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23657 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 1:51:15 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 01:51:14 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from melusine.cuivre.fr.eu.org (paris-rde-rg-18-42.adsl.proxad.net [213.228.18.42]) by hub.freebsd.org (Postfix) with ESMTP id 9B73137B400; Thu, 21 Dec 2000 01:51:13 -0800 (PST) Received: by melusine.cuivre.fr.eu.org (Postfix, from userid 1000) id 7D1B147CA9; Thu, 21 Dec 2000 10:51:03 +0100 (CET) Date: Thu, 21 Dec 2000 10:51:03 +0100 From: Thomas Quinot To: will@FreeBSD.org Cc: quinot@inf.enst.fr, freebsd-ports@FreeBSD.org Subject: Re: ports/23645: Updated port: devel/asis 3.13p Message-ID: <20001221105103.B2324@cuivre.fr.eu.org> Reply-To: thomas@cuivre.fr.eu.org References: <200012210944.eBL9i4R25823@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <200012210944.eBL9i4R25823@freefall.freebsd.org>; from will@FreeBSD.org on Thu, Dec 21, 2000 at 01:44:04AM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Le 2000-12-21, will@FreeBSD.org écrivait : > State-Changed-Why: > What does the MAINTAINER think about this patch? I /am/ the MAINTAINER :) (oops -- I sent the PR from a different address). -- Thomas.Quinot@Cuivre.FR.EU.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 1:54: 1 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 01:54:00 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E3D0C37B400; Thu, 21 Dec 2000 01:53:59 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBL9rxY27861; Thu, 21 Dec 2000 01:53:59 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 01:53:59 -0800 (PST) From: Message-Id: <200012210953.eBL9rxY27861@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, ache@FreeBSD.org Subject: Re: ports/23660: Update russian/elm.language update pkg-plist Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update russian/elm.language update pkg-plist Responsible-Changed-From-To: freebsd-ports->ache Responsible-Changed-By: will Responsible-Changed-When: Thu Dec 21 01:53:51 PST 2000 Responsible-Changed-Why: Over to MAINTAINER. http://www.freebsd.org/cgi/query-pr.cgi?pr=23660 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 2: 0: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 02:00:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AE8A137B400 for ; Thu, 21 Dec 2000 02:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLA02N29272; Thu, 21 Dec 2000 02:00:02 -0800 (PST) (envelope-from gnats) Date: Thu, 21 Dec 2000 02:00:02 -0800 (PST) Message-Id: <200012211000.eBLA02N29272@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: Re: ports/23659: Update security/portsentry add portsentry.conf to pkg-plist Reply-To: Will Andrews Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23659; it has been noted by GNATS. From: Will Andrews To: dan@freebsddiary.org Cc: FreeBSD-gnats-submit@FreeBSD.org, dwcjr@inethouston.net Subject: Re: ports/23659: Update security/portsentry add portsentry.conf to pkg-plist Date: Thu, 21 Dec 2000 04:48:46 -0500 What do you think, Dan? -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 2: 2:14 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 02:02:12 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 949BA37B402; Thu, 21 Dec 2000 02:02:12 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLA2Cq29706; Thu, 21 Dec 2000 02:02:12 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 02:02:12 -0800 (PST) From: Message-Id: <200012211002.eBLA2Cq29706@freefall.freebsd.org> To: dwcjr@inethouston.net, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23661: Update mail/zmailer update pkg-plist Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update mail/zmailer update pkg-plist State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Thu Dec 21 02:01:48 PST 2000 State-Changed-Why: Committed, thanks! I found other bugs in the plist regarding the symlinks in the package and fixed them too. http://www.freebsd.org/cgi/query-pr.cgi?pr=23661 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 2: 5:36 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 02:05:35 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9666637B400; Thu, 21 Dec 2000 02:05:35 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLA5YZ31778; Thu, 21 Dec 2000 02:05:34 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 02:05:34 -0800 (PST) From: Message-Id: <200012211005.eBLA5YZ31778@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/23663: Update chineese/cxterm update pkg-plist and Makefile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update chineese/cxterm update pkg-plist and Makefile Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: will Responsible-Changed-When: Thu Dec 21 02:05:26 PST 2000 Responsible-Changed-Why: Over to MAINTAINER. http://www.freebsd.org/cgi/query-pr.cgi?pr=23663 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 2: 9:51 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 02:09:50 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D2ECF37B400; Thu, 21 Dec 2000 02:09:50 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLA9oV33725; Thu, 21 Dec 2000 02:09:50 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 02:09:50 -0800 (PST) From: Message-Id: <200012211009.eBLA9oV33725@freefall.freebsd.org> To: quinot@inf.enst.fr, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23645: Updated port: devel/asis 3.13p Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Updated port: devel/asis 3.13p State-Changed-From-To: feedback->closed State-Changed-By: will State-Changed-When: Thu Dec 21 02:09:38 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23645 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 2:11:49 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 02:11:48 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DFD2E37B400; Thu, 21 Dec 2000 02:11:47 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLABl134058; Thu, 21 Dec 2000 02:11:47 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 02:11:47 -0800 (PST) From: Message-Id: <200012211011.eBLABl134058@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/23665: Update editors/vim5 update pkg-plist Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update editors/vim5 update pkg-plist Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: will Responsible-Changed-When: Thu Dec 21 02:10:48 PST 2000 Responsible-Changed-Why: Over to MAINTAINER. http://www.freebsd.org/cgi/query-pr.cgi?pr=23665 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 2:12: 4 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 02:12:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6450A37B400; Thu, 21 Dec 2000 02:12:03 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLAC3N34154; Thu, 21 Dec 2000 02:12:03 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 02:12:03 -0800 (PST) From: Message-Id: <200012211012.eBLAC3N34154@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/23666: Update editors/vim6 update pkg-plist Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update editors/vim6 update pkg-plist Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: will Responsible-Changed-When: Thu Dec 21 02:11:51 PST 2000 Responsible-Changed-Why: Over to MAINTAINER. http://www.freebsd.org/cgi/query-pr.cgi?pr=23666 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 2:13:13 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 02:13:11 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C07C737B402; Thu, 21 Dec 2000 02:13:11 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLADB334424; Thu, 21 Dec 2000 02:13:11 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 02:13:11 -0800 (PST) From: Message-Id: <200012211013.eBLADB334424@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, trevor@FreeBSD.org Subject: Re: ports/23667: Update x11-wm/uwm update pkg-plist Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update x11-wm/uwm update pkg-plist Responsible-Changed-From-To: freebsd-ports->trevor Responsible-Changed-By: will Responsible-Changed-When: Thu Dec 21 02:13:02 PST 2000 Responsible-Changed-Why: Over to MAINTAINER. http://www.freebsd.org/cgi/query-pr.cgi?pr=23667 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 2:15: 0 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 02:14:58 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from nevermind.kiev.ua (unknown [212.109.53.33]) by hub.freebsd.org (Postfix) with ESMTP id 01A1037B402; Thu, 21 Dec 2000 02:14:55 -0800 (PST) Received: (from never@localhost) by nevermind.kiev.ua (8.11.1/8.11.1) id eBLAEpI67166; Thu, 21 Dec 2000 12:14:51 +0200 (EET) (envelope-from never) Date: Thu, 21 Dec 2000 12:14:50 +0200 From: Nevermind To: will@FreeBSD.ORG Cc: dirk.meyer@dinoex.sub.org, freebsd-ports@FreeBSD.ORG Subject: Re: ports/23589: update net/licq Message-ID: <20001221121450.A66233@nevermind.kiev.ua> References: <200012210917.eBL9HiT17412@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200012210917.eBL9HiT17412@freefall.freebsd.org>; from will@FreeBSD.ORG on Thu, Dec 21, 2000 at 01:17:44AM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, will@FreeBSD.ORG! On Thu, Dec 21, 2000 at 01:17:44AM -0800, you wrote: > Synopsis: update net/licq > > State-Changed-From-To: open->closed > State-Changed-By: will > State-Changed-When: Thu Dec 21 01:17:35 PST 2000 > State-Changed-Why: > Brian updated to a newer version today. Is there any changes to previous upgrade and following downgrade to 0.85? There was some instability in licq-1.0. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=23589 > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message -- Alexandr P. Kovalenko http://nevermind.kiev.ua/ NEVE-RIPE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 2:15: 4 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 02:15:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 297AB37B698; Thu, 21 Dec 2000 02:15:01 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLAF0t34714; Thu, 21 Dec 2000 02:15:00 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 02:15:00 -0800 (PST) From: Message-Id: <200012211015.eBLAF0t34714@freefall.freebsd.org> To: will@FreeBSD.org, freebsd-ports@FreeBSD.org, sobomax@FreeBSD.org Subject: Re: ports/23668: Update graphics/utah-glx update pkg-plist Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update graphics/utah-glx update pkg-plist Responsible-Changed-From-To: freebsd-ports->sobomax Responsible-Changed-By: will Responsible-Changed-When: Thu Dec 21 02:14:30 PST 2000 Responsible-Changed-Why: Maxim takes care of this port (for the most part), although MAINTAINER is 3d@FreeBSD.org. http://www.freebsd.org/cgi/query-pr.cgi?pr=23668 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 2:19:48 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 02:19:47 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (poynting.physics.purdue.edu [128.210.146.58]) by hub.freebsd.org (Postfix) with ESMTP id CB06337B400; Thu, 21 Dec 2000 02:19:46 -0800 (PST) Received: from argon.firepipe.net (pm006-020.dialup.bignet.net [64.79.81.4]) by puck.firepipe.net (Postfix) with ESMTP id CEB871B2B; Thu, 21 Dec 2000 05:19:45 -0500 (EST) Received: by argon.firepipe.net (Postfix, from userid 1000) id 7669C19CF; Thu, 21 Dec 2000 05:15:15 -0500 (EST) Date: Thu, 21 Dec 2000 05:15:15 -0500 From: Will Andrews To: Nevermind Cc: will@FreeBSD.ORG, dirk.meyer@dinoex.sub.org, freebsd-ports@FreeBSD.ORG Subject: Re: ports/23589: update net/licq Message-ID: <20001221051515.O319@argon.firepipe.net> Reply-To: Will Andrews References: <200012210917.eBL9HiT17412@freefall.freebsd.org> <20001221121450.A66233@nevermind.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001221121450.A66233@nevermind.kiev.ua>; from never@nevermind.kiev.ua on Thu, Dec 21, 2000 at 12:14:50PM +0200 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: will@argon.firepipe.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Dec 21, 2000 at 12:14:50PM +0200, Nevermind wrote: > Is there any changes to previous upgrade and following downgrade to 0.85? > > There was some instability in licq-1.0. Brian did not upgrade to 1.0, but a newer version than that. You best try it out and refer problems to him via send-pr. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 2:25:16 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 02:25:15 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F32DE37B400; Thu, 21 Dec 2000 02:25:14 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLAPEU36739; Thu, 21 Dec 2000 02:25:14 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 02:25:14 -0800 (PST) From: Message-Id: <200012211025.eBLAPEU36739@freefall.freebsd.org> To: dwcjr@inethouston.net, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23664: Update emulators/wine update pkg-plist and Makefile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update emulators/wine update pkg-plist and Makefile State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Thu Dec 21 02:25:08 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23664 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 2:27:18 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 02:27:16 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ada.eu.org (marvin.enst.fr [137.194.161.2]) by hub.freebsd.org (Postfix) with ESMTP id 8225437B400; Thu, 21 Dec 2000 02:27:16 -0800 (PST) Received: by ada.eu.org (Postfix, from userid 10) id 52A2B19090; Thu, 21 Dec 2000 11:27:13 +0100 (CET) Received: by trillian.enst.fr (Postfix, from userid 1000) id 6EC5F318; Thu, 21 Dec 2000 11:26:50 +0100 (CET) Date: Thu, 21 Dec 2000 11:26:50 +0100 To: will@FreeBSD.org Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/22807: Update port: lang/gnat-glade References: <200012210839.eBL8dmH04866@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200012210839.eBL8dmH04866@freefall.freebsd.org>; from will@FreeBSD.org on Thu, Dec 21, 2000 at 12:39:48AM -0800 From: Samuel Tardieu Organization: Ecole Nationale Superieure des Telecommunications Reply-To: Samuel Tardieu Content-Transfer-Encoding: 8bit X-WWW: http://www.inf.enst.fr/~tardieu/ X-Mail-Processing: Sam's procmail tools X-ICQ: 21547599 X-Sam-Laptop: yes Message-Id: <2000-12-21-11-26-50+trackit+sam@inf.enst.fr> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 21/12, will@FreeBSD.org wrote: | Seems this program's configure script is broken in some way. The port | seemed to work fine with files/patch-aa. What do you think? | | http://www.freebsd.org/cgi/query-pr.cgi?pr=22807 You can keep it then. Thanks for noticing. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 2:30:48 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 02:30:46 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4E9C837B402; Thu, 21 Dec 2000 02:30:46 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLAUka37531; Thu, 21 Dec 2000 02:30:46 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 02:30:46 -0800 (PST) From: Message-Id: <200012211030.eBLAUka37531@freefall.freebsd.org> To: jeremy@external.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23707: New Port: devel/p5-File-Tail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New Port: devel/p5-File-Tail State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Thu Dec 21 02:30:38 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23707 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 2:35:40 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 02:35:39 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2BD9437B400; Thu, 21 Dec 2000 02:35:36 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLAZa538493; Thu, 21 Dec 2000 02:35:36 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 02:35:36 -0800 (PST) From: Message-Id: <200012211035.eBLAZa538493@freefall.freebsd.org> To: sam@inf.enst.fr, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22807: Update port: lang/gnat-glade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: lang/gnat-glade State-Changed-From-To: feedback->closed State-Changed-By: will State-Changed-When: Thu Dec 21 02:35:26 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22807 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 4:28:57 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 04:28:56 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from warning.follo.net (warning.follo.net [195.204.136.30]) by hub.freebsd.org (Postfix) with ESMTP id 0451837B400 for ; Thu, 21 Dec 2000 04:28:55 -0800 (PST) Received: (from eivind@localhost) by warning.follo.net (8.9.3/8.9.3) id NAA36058 for ports@FreeBSD.org; Thu, 21 Dec 2000 13:28:48 +0100 (CET) Date: Thu, 21 Dec 2000 13:28:47 +0100 From: Eivind Eklund To: ports@FreeBSD.org Subject: Ports of multiple versions of the same program Message-ID: <20001221132847.E71428@warning.follo.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.4i Sender: eivind@warning.follo.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org We are getting a lot of parallell ports of the same program, such as a2ps and a2ps-43, tripwire and tripewire-131, etc. Most of these exists for some fairly good reason; however, it is close to impossible for us mere mortals to tell what this reason *is*, as updating pkg-descr when a port is split seems to be the exception rather than the rule. Please try to document why there are two ports - not doing so just creates endless user confusion. I can sometimes tell from the CVS logs, but we can't expect our users to do that. Thanks! Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 4:51:23 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 04:51:21 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mail0.bna.bellsouth.net (mail0.bna.bellsouth.net [205.152.150.12]) by hub.freebsd.org (Postfix) with ESMTP id 6B08237B400 for ; Thu, 21 Dec 2000 04:51:21 -0800 (PST) Received: from planetwe.com (adsl-20-109-209.bna.bellsouth.net [66.20.109.209]) by mail0.bna.bellsouth.net (3.3.5alt/0.75.2) with ESMTP id HAA03469; Thu, 21 Dec 2000 07:51:15 -0500 (EST) Message-ID: <3A41FCC7.8000208@planetwe.com> Date: Thu, 21 Dec 2000 06:51:19 -0600 From: Drew Sanford User-Agent: Mozilla/5.0 (X11; U; Linux 2.2.12 i386; en-US; m18) Gecko/20001107 Netscape6/6.0 X-Accept-Language: en MIME-Version: 1.0 To: "Scot W. Hetzel" Cc: ports@FreeBSD.ORG Subject: Re: apache13-fp References: <3A412BD6.6050505@planetwe.com> <011501c06aeb$22391900$8dfee0d1@westbend.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Scot W. Hetzel wrote: > From: "Drew Sanford" > > Check your httpd-error.log, it should contain the following lines: > > [Wed Dec 20 20:00:02 2000] [notice] Apache/1.3.14 (Unix) FrontPage/4.0.4.3 > configured -- resuming normal operations > [Wed Dec 20 20:00:02 2000] [notice] suEXEC mechanism enabled (wrapper: > /usr/local/sbin/suexec) > S > > If you don't see the FrontPage/4.0.4.3 in the httpd-error.log, then you have > an older apache.sh script installed in PREFIX/etc/rc.d that doesn't use > startfp. You should install the apache13-fp/files/apache.sh* file into > etc/rc.d and make the appropriate PERL and PREFIX changes to the script. > Scot You just about got it right here. The script installed was correct, it just wasn't used - I started the server using apachectl. When I shut it down and started it using the script (which I had checked to make sure it was right) it came right up. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 5:20:12 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 05:20:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E971137B402 for ; Thu, 21 Dec 2000 05:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLDK1m65536; Thu, 21 Dec 2000 05:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 05:20:01 -0800 (PST) Resent-Message-Id: <200012211320.eBLDK1m65536@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, gonza@techline.ru Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ABA7937B400 for ; Thu, 21 Dec 2000 05:19:16 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLDJGU65445; Thu, 21 Dec 2000 05:19:16 -0800 (PST) (envelope-from nobody) Message-Id: <200012211319.eBLDJGU65445@freefall.freebsd.org> Date: Thu, 21 Dec 2000 05:19:16 -0800 (PST) From: gonza@techline.ru Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23711: new ports: mail/ftrack (FTN Messages tracker) Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23711 >Category: ports >Synopsis: new ports: mail/ftrack (FTN Messages tracker) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 05:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Sergey Samoyloff >Release: 3.4-RELEASE (i386) >Organization: TECHLine Systems >Environment: new ports: mail/ftrack (FTN Messages tracker) >Description: FTN Messages tracker What is this program for, It is so called netmail "tracker". It's puprose is to process netmail on netmail hubs, though it can be useful for an ordinary node. How does it work, It takes a letter, compares it with a mask and, if comparison was successful, it executes corresponding operation with this letter. Guarantees, This product is Freeware. It is distributed in accordance to principle As Is, and I can't provide any guarantee. The only thing I promise is to correct founded mistakes more or less regulary and to produce new versions. WWW: http://ufm.kgb.ru/ -- Sergey Samoyloff gonza@techline.ru >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # ftrack # ftrack/files # ftrack/files/patch-aa # ftrack/files/patch-ab # ftrack/files/patch-ac # ftrack/files/patch-ad # ftrack/files/patch-ae # ftrack/distinfo # ftrack/Makefile # ftrack/pkg-comment # ftrack/pkg-plist # ftrack/pkg-descr # echo c - ftrack mkdir -p ftrack > /dev/null 2>&1 echo c - ftrack/files mkdir -p ftrack/files > /dev/null 2>&1 echo x - ftrack/files/patch-aa sed 's/^X//' >ftrack/files/patch-aa << 'END-of-ftrack/files/patch-aa' X--- src/utils.cpp.orig Tue May 16 22:33:14 2000 X+++ src/utils.cpp Tue Jun 27 20:57:09 2000 X@@ -22,6 +22,7 @@ X #include X #ifdef __FreeBSD__ X # include X+# include X #else X # include X #endif X@@ -144,7 +145,7 @@ X // Open file and create path if need. X char *tmt; X char Buff[1024]; X- umask(0); X+ umask(022); X strcpy(Buff,Name); X tmt = strrchr(Buff,PATHDELIMC); X if (tmt != NULL) { END-of-ftrack/files/patch-aa echo x - ftrack/files/patch-ab sed 's/^X//' >ftrack/files/patch-ab << 'END-of-ftrack/files/patch-ab' X--- hpp/ufmtypes.h.orig Fri Apr 14 19:13:02 2000 X+++ hpp/ufmtypes.h Sun May 21 17:07:16 2000 X@@ -1,7 +1,7 @@ X #ifndef _UFMTYPES_H_ X #define _UFMTYPES_H X X-#include "smapi/typedefs.h" X+#include X X typedef unsigned int uint; X typedef unsigned char uchar; END-of-ftrack/files/patch-ab echo x - ftrack/files/patch-ac sed 's/^X//' >ftrack/files/patch-ac << 'END-of-ftrack/files/patch-ac' X--- MakeFiles/FreeBSD/Makefile.orig Wed May 10 11:46:58 2000 X+++ MakeFiles/FreeBSD/Makefile Sun May 21 17:14:57 2000 X@@ -1,9 +1,9 @@ X CC= g++ X CFLAGS= -Wall -W -fno-rtti X CDEFS= -DUNIX X-COPT= -I../../hpp -I../../.. -O3 X+COPT= -Ihpp -I/usr/local/include -O3 X LFLAGS= -s X-SRCDIR= ../../src/ X+SRCDIR= src/ X X ALL: ftrack X X@@ -45,8 +45,10 @@ X X X ftrack: $(OBJS) X- $(CC) $(LFLAGS) -o ftrack $(OBJS) -L../smapi -lsmapibsd X+ $(CC) $(LFLAGS) -o ftrack $(OBJS) -L/usr/local/lib -lsmapi X X+install: X+ echo "done!" X clean: X -rm -f *.o X -rm -f *~ END-of-ftrack/files/patch-ac echo x - ftrack/files/patch-ad sed 's/^X//' >ftrack/files/patch-ad << 'END-of-ftrack/files/patch-ad' X--- src/outbound.cpp.orig Sun May 21 18:09:12 2000 X+++ src/outbound.cpp Tue May 23 12:43:00 2000 X@@ -373,7 +373,7 @@ X fclose (fh); X unlink(TmtName); X X- bfh = open(BsyName,O_CREAT | O_EXCL,0666); X+ bfh = open(BsyName,O_CREAT | O_EXCL,0640); X if (bfh == -1) { X return FALSE; X } X@@ -858,7 +858,7 @@ X } X fclose (fh); X unlink(TmtName); X- bfh = open(Buff,O_CREAT | O_EXCL,0666); X+ bfh = open(Buff,O_CREAT | O_EXCL,0640); X if (bfh == -1) { X Log.Level(LOGW) << "Packet " << Name << " is locked." << EOL; X return TRUE; END-of-ftrack/files/patch-ad echo x - ftrack/files/patch-ae sed 's/^X//' >ftrack/files/patch-ae << 'END-of-ftrack/files/patch-ae' X--- hpp/constant.hpp.orig Wed Sep 20 14:46:48 2000 X+++ hpp/constant.hpp Wed Sep 20 14:47:01 2000 X@@ -30,7 +30,7 @@ X #define PATHDELIMS "/" X #define PATHDELIMC '/' X #endif X-#define FVersion "3.01"OsType X+#define FVersion "3.01" X #define RevisionHI 3 X #define RevisionLO 1 X #define FTrackProductLo 0xff END-of-ftrack/files/patch-ae echo x - ftrack/distinfo sed 's/^X//' >ftrack/distinfo << 'END-of-ftrack/distinfo' XMD5 (ftr301s.zip) = 377ffe4c0bc1c28de114055c61e9f982 END-of-ftrack/distinfo echo x - ftrack/Makefile sed 's/^X//' >ftrack/Makefile << 'END-of-ftrack/Makefile' X# New ports collection makefile for: ftrack X# Date created: Thu Dec 21 14:20:49 MSK 2000 X# Whom: Sergey Samoyloff X# X# $FreeBSD$ X# X XPORTNAME= ftrack XPORTVERSION= 3.01 XDISTNAME= ftr301s X XCATEGORIES= mail XMASTER_SITES= http://ufm.kgb.ru/FTrack/ftpdir/3.01/ X XUSE_ZIP= yes XUSE_GMAKE= yes XALL_TARGET= ftrack X XBUILD_DEPENDS= ${PREFIX}/lib/libsmapi.a:${PORTSDIR}/mail/smapi X XMAKEFILE= ${WRKSRC}/MakeFiles/FreeBSD/Makefile X XEXTRACT_AFTER_ARGS= -d ${WRKSRC} X XMAINTAINER= gonza@techline.ru X Xpre-patch: X.for DIR in MakeFiles/FreeBSD src hpp doc/eng samples/tpl X ${PERL} -pi -e 's!\r!!' ${WRKSRC}/${DIR}/* X.endfor X Xpre-configure: X ${CP} ${WRKSRC}/MakeFiles/FreeBSD/Makefile ${WRKSRC} X Xpre-install: X ${INSTALL_PROGRAM} ${WRKSRC}/ftrack ${PREFIX}/sbin X X ${MKDIR} ${PREFIX}/etc/ftrack X ${INSTALL_DATA} ${WRKSRC}/samples/node.cfg ${PREFIX}/etc/ftrack/ftrack.cfg-dist X X ${MKDIR} ${PREFIX}/share/doc/ftrack X ${INSTALL_DATA} ${WRKSRC}/doc/eng/* ${PREFIX}/share/doc/ftrack X X ${INSTALL_DATA} ${WRKSRC}/samples/tpl/* ${PREFIX}/etc/ftrack X X.for FILE in alt2koi.tbl koi2alt.tbl X ${INSTALL_DATA} ${WRKSRC}/samples/${FILE} ${PREFIX}/etc/ftrack X.endfor X X.include END-of-ftrack/Makefile echo x - ftrack/pkg-comment sed 's/^X//' >ftrack/pkg-comment << 'END-of-ftrack/pkg-comment' XFtrack, FTN Messages tracker END-of-ftrack/pkg-comment echo x - ftrack/pkg-plist sed 's/^X//' >ftrack/pkg-plist << 'END-of-ftrack/pkg-plist' X@comment $FreBSD$ Xetc/ftrack/ftrack.cfg-dist Xetc/ftrack/audit.tpl Xetc/ftrack/badfrom.tpl Xetc/ftrack/badto.tpl Xetc/ftrack/loop.tpl Xetc/ftrack/alt2koi.tbl Xetc/ftrack/koi2alt.tbl Xsbin/ftrack Xshare/doc/ftrack/ftrack.faq Xshare/doc/ftrack/readme Xshare/doc/ftrack/report.err X@dirrm etc/ftrack X@dirrm share/doc/ftrack END-of-ftrack/pkg-plist echo x - ftrack/pkg-descr sed 's/^X//' >ftrack/pkg-descr << 'END-of-ftrack/pkg-descr' XFTN Messages tracker X XWhat is this program for, XIt is so called netmail "tracker". It's puprose is to process netmail on Xnetmail hubs, though it can be useful for an ordinary node. X XHow does it work, XIt takes a letter, compares it with a mask and, if comparison was Xsuccessful, it executes corresponding operation with this letter. X XGuarantees, XThis product is Freeware. It is distributed in accordance to principle XAs Is, and I can't provide any guarantee. The only thing I promise is Xto correct founded mistakes more or less regulary and to produce new Xversions. X XWWW: http://ufm.kgb.ru/ X X-- Sergey Samoyloff Xgonza@techline.ru END-of-ftrack/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 5:29:19 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 05:29:17 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ws130.nomadiclab.com (ws130.nomadiclab.com [195.165.196.130]) by hub.freebsd.org (Postfix) with ESMTP id 9508C37B400; Thu, 21 Dec 2000 05:29:17 -0800 (PST) Received: from ws140.nomadiclab.com (ws140.nomadiclab.com [195.165.196.140]) by ws130.nomadiclab.com (Postfix) with ESMTP id E213572502; Thu, 21 Dec 2000 15:29:15 +0200 (EET) Date: Thu, 21 Dec 2000 15:29:15 +0200 (EET) From: Martti Kuparinen To: will@FreeBSD.org Cc: martti.kuparinen@piuha.net, freebsd-ports@FreeBSD.org, blaz@amis.net Subject: Re: ports/23474: [PATCH] postfix upgrade In-Reply-To: <200012210855.eBL8tXu09039@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 21 Dec 2000 will@FreeBSD.org wrote: > What does the maintainer think about this? I don't know, haven't asked him. We are using this in production use and everything works great so there shouldn't be any difficulties... Martti --- Ericsson Research / NomadicLab Martti Kuparinen http://www.iki.fi/~kuparine/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 5:37:49 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 05:37:48 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from piranha.amis.net (piranha.amis.net [212.18.32.3]) by hub.freebsd.org (Postfix) with ESMTP id C8B1637B400; Thu, 21 Dec 2000 05:37:47 -0800 (PST) Received: from titanic.medinet.si (titanic.medinet.si [212.18.32.66]) by piranha.amis.net (Postfix) with ESMTP id 780785D5D; Thu, 21 Dec 2000 14:37:45 +0100 (CET) Date: Thu, 21 Dec 2000 14:37:45 +0100 (CET) From: Blaz Zupan X-Sender: blaz@titanic.medinet.si To: Martti Kuparinen Cc: will@FreeBSD.org, martti.kuparinen@piuha.net, freebsd-ports@FreeBSD.org Subject: Re: ports/23474: [PATCH] postfix upgrade In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > What does the maintainer think about this? > > I don't know, haven't asked him. We are using this in production use > and everything works great so there shouldn't be any difficulties... I just opened another PR which includes the update to pl13 plus some other patches. It's under PR 23696 (which is currently misfiled under pending/23696, dunno why). Also the patch I submitted as a followup to PR 22598 should be commited for users who need UUCP. Blaz Zupan, Medinet d.o.o, Linhartova 21, 2000 Maribor, Slovenia E-mail: blaz@amis.net, Tel: +386-2-320-6320, Fax: +386-2-320-6325 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 6:13:31 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 06:13:29 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 3567537B400 for ; Thu, 21 Dec 2000 06:13:22 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eBLED4g05344; Thu, 21 Dec 2000 16:13:13 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.1/8.9.3) with ESMTP id eBLED6l78875; Thu, 21 Dec 2000 16:13:06 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A420FEC.F9A719D9@FreeBSD.org> Date: Thu, 21 Dec 2000 16:13:01 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Andrew Reilly Cc: freebsd-ports@FreeBSD.org Subject: Re: Integration of ports and 3rd party anoncvs repositories? References: <20001221103408.A76507@gurney.reilly.home> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Andrew Reilly wrote: > There are some large and fairly rapidly evolving code bases out > there at the moment. They aren't part of the base FreeBSD > distribution, but are frequently installed via the ports > collection: XFree86, Wine, mozilla, kde and gnome, probably > openoffice soon. All of these are available through incremental > means: anoncvs, CVSup, or inter-tarball diffs. > > Please correct me if I'm wrong here, but the current Ports > facility is based on the notion of operating from distribution > tarballs that wind up in /usr/ports/distfiles, one way or > another. Some of these tarballs are now really big, which (for > those of us who pay for our bandwidth by the megabyte) is a > disincentive for staying current. > > I've managed to track Wine for a while by building my own > tarballs incrementally, with the deltas. I'm just about to have > a go at grabbing XFree86-4.0.2 by CVSup. > > Has anyone been thinking of tweaking the ports "extract" target > to copy from a local copy of the original repository, rather > than going straight for a tarball file? > > How could we standardise access to source repositories from > different vendors, so that the ports makefiles could determine > if they were present automagically? > > Would it be best to go for full local CVS repositories, and have > the "extract" target do a cvs co, or could we get by with local > "checked-out" trees? (I haven't really used CVS myself yet: I > follow FreeBSD-stable with CVSup in "check out" mode.) If I understand you correctly, you are proposing to keep extracted from distfiles stuff in some sort of anoncvs repository, which will simplify incremental updates of 3rd party software for the users with limited bandwidth available, so for example when upgrading from the XFree4.0.1 to XFree4.0.2 the user will be saved from the necessity to d/l the whole 40-some megabytes archive, and will need to only update his existing XFree86 sources using `cvs update' command. While this idea in general sounds good, but I think that the cost involved for keeping code of each of our 4200+ ports in cvs is just too high (remember, this repo will be growing with insane speed with each update of underlying software). The another possibility that I'm thinking about now is to set up a service which at a specific request will generate xdelta(1) patch for any two arbitrary versions of distfiles (for example bzip'ed version of xdelta-generated diff between XFree4.0.1 and XFree4.0.2 distfiles is only 3MB long). Then the user will be able to download only the difference between two versions in question and apply diff to his local existing previous versions of software. Popular diffs could be cached at the "server", as the creating xdelta diffs for large files is io/cpu consuming task. The only problem with this schema is that the xdelta(1) can't reconstruct gzipped tarball in such a way that the md5 sum for original archive and md5 sum for reconstructed will match (however checksums of underlying tar files will be equial), so we need some form of a workaround here (for example use two md5 entries for each file in distinfo - gzip'ed and gunzip'ed). As I said it's only the idea right now, but I'm close to starting implementing something like that because internet costs are insanely high here ;). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 6:19:11 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 06:19:09 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (ns.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id D839837B400 for ; Thu, 21 Dec 2000 06:19:05 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.109]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id eBLEJ3g05487; Thu, 21 Dec 2000 16:19:03 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.1/8.9.3) with ESMTP id eBLEJ6l80131; Thu, 21 Dec 2000 16:19:06 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A421156.147EA402@FreeBSD.org> Date: Thu, 21 Dec 2000 16:19:02 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Andrew Reilly , freebsd-ports@FreeBSD.org Subject: Re: Integration of ports and 3rd party anoncvs repositories? References: <20001221103408.A76507@gurney.reilly.home> <3A420FEC.F9A719D9@FreeBSD.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Maxim Sobolev wrote: > Andrew Reilly wrote: > > > There are some large and fairly rapidly evolving code bases out > > there at the moment. They aren't part of the base FreeBSD > > distribution, but are frequently installed via the ports > > collection: XFree86, Wine, mozilla, kde and gnome, probably > > openoffice soon. All of these are available through incremental > > means: anoncvs, CVSup, or inter-tarball diffs. > > > > Please correct me if I'm wrong here, but the current Ports > > facility is based on the notion of operating from distribution > > tarballs that wind up in /usr/ports/distfiles, one way or > > another. Some of these tarballs are now really big, which (for > > those of us who pay for our bandwidth by the megabyte) is a > > disincentive for staying current. > > > > I've managed to track Wine for a while by building my own > > tarballs incrementally, with the deltas. I'm just about to have > > a go at grabbing XFree86-4.0.2 by CVSup. > > > > Has anyone been thinking of tweaking the ports "extract" target > > to copy from a local copy of the original repository, rather > > than going straight for a tarball file? > > > > How could we standardise access to source repositories from > > different vendors, so that the ports makefiles could determine > > if they were present automagically? > > > > Would it be best to go for full local CVS repositories, and have > > the "extract" target do a cvs co, or could we get by with local > > "checked-out" trees? (I haven't really used CVS myself yet: I > > follow FreeBSD-stable with CVSup in "check out" mode.) > > If I understand you correctly, you are proposing to keep extracted from > distfiles stuff in some sort of anoncvs repository, which will simplify > incremental updates of 3rd party software for the users with limited bandwidth > available, so for example when upgrading from the XFree4.0.1 to XFree4.0.2 the > user will be saved from the necessity to d/l the whole 40-some megabytes > archive, and will need to only update his existing XFree86 sources using `cvs > update' command. While this idea in general sounds good, but I think that the > cost involved for keeping code of each of our 4200+ ports in cvs is just too > high (remember, this repo will be growing with insane speed with each update of > underlying software). > > The another possibility that I'm thinking about now is to set up a service > which at a specific request will generate xdelta(1) patch for any two arbitrary > versions of distfiles (for example bzip'ed version of xdelta-generated diff > between XFree4.0.1 and XFree4.0.2 distfiles is only 3MB long). Then the user > will be able to download only the difference between two versions in question > and apply diff to his local existing previous versions of software. Popular > diffs could be cached at the "server", as the creating xdelta diffs for large > files is io/cpu consuming task. The only problem with this schema is that the > xdelta(1) can't reconstruct gzipped tarball in such a way that the md5 sum for > original archive and md5 sum for reconstructed will match (however checksums of > underlying tar files will be equial), so we need some form of a workaround here > (for example use two md5 entries for each file in distinfo - gzip'ed and > gunzip'ed). > > As I said it's only the idea right now, but I'm close to starting implementing > something like that because internet costs are insanely high here ;). Forgot to mention that xdelta(1) is a tool for generating diffs between binary files, it's available from ports/misc/xdelta. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 6:59:46 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 06:59:44 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 81A1837B400; Thu, 21 Dec 2000 06:59:44 -0800 (PST) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLExim78817; Thu, 21 Dec 2000 06:59:44 -0800 (PST) (envelope-from jedgar) Date: Thu, 21 Dec 2000 06:59:44 -0800 (PST) From: Message-Id: <200012211459.eBLExim78817@freefall.freebsd.org> To: jedgar@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23696: [PATCH] postfix port upgrade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] postfix port upgrade Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: jedgar Responsible-Changed-When: Thu Dec 21 06:59:14 PST 2000 Responsible-Changed-Why: Misfiled PR http://www.freebsd.org/cgi/query-pr.cgi?pr=23696 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 7: 0: 4 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 07:00:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6DFDD37B400; Thu, 21 Dec 2000 07:00:01 -0800 (PST) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLF01D78919; Thu, 21 Dec 2000 07:00:01 -0800 (PST) (envelope-from jedgar) Date: Thu, 21 Dec 2000 07:00:01 -0800 (PST) From: Message-Id: <200012211500.eBLF01D78919@freefall.freebsd.org> To: jedgar@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23699: Fix plist for p5-Unix-Syslog Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fix plist for p5-Unix-Syslog Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: jedgar Responsible-Changed-When: Thu Dec 21 06:59:48 PST 2000 Responsible-Changed-Why: Misfiled PR http://www.freebsd.org/cgi/query-pr.cgi?pr=23699 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 7:17:46 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 07:17:45 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mothra.ecs.csus.edu (mothra.ecs.csus.edu [130.86.76.220]) by hub.freebsd.org (Postfix) with ESMTP id C38B037B400; Thu, 21 Dec 2000 07:17:44 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by mothra.ecs.csus.edu (8.11.1/8.11.1) with ESMTP id eBLFFpF18019; Thu, 21 Dec 2000 07:15:52 -0800 (PST) (envelope-from joseph@randomnetworks.com) Date: Thu, 21 Dec 2000 07:15:51 -0800 (PST) From: Joseph Scott X-X-Sender: To: Cc: Subject: Re: ports/23550: [PORT UPDATE] - graphics/gifsicle 1.20->1.23 In-Reply-To: <200012210856.eBL8ucR09247@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 21 Dec 2000 will@FreeBSD.ORG wrote: # Synopsis: [PORT UPDATE] - graphics/gifsicle 1.20->1.23 # # State-Changed-From-To: open->feedback # State-Changed-By: will # State-Changed-When: Thu Dec 21 00:56:29 PST 2000 # State-Changed-Why: # What does the maintainer think about this? Some day I will learn, really :-( I did this in the wrong order, I sent off the pr in hopes that it would be directed towards the maintainer. In the future I will foward patches to maintainers via email before the pr (instead of the other way around). In the particular case it doesn't matter, an update was committed by sobomax. Please go ahead and close the PR. *********************************************************** * Joseph Scott The Office Of Water Programs * * joseph@randomnetworks.com joseph.scott@owp.csus.edu * *********************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 7:20: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 07:20:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A51E037B402 for ; Thu, 21 Dec 2000 07:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLFK1M09829; Thu, 21 Dec 2000 07:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 07:20:01 -0800 (PST) Resent-Message-Id: <200012211520.eBLFK1M09829@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, takashi@ueda.info.waseda.ac.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 37D4C37B400 for ; Thu, 21 Dec 2000 07:11:57 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLFBv083740; Thu, 21 Dec 2000 07:11:57 -0800 (PST) (envelope-from nobody) Message-Id: <200012211511.eBLFBv083740@freefall.freebsd.org> Date: Thu, 21 Dec 2000 07:11:57 -0800 (PST) From: takashi@ueda.info.waseda.ac.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23713: can't make ports/japanese/gal Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23713 >Category: ports >Synopsis: can't make ports/japanese/gal >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 07:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Nishimura Takashi >Release: 3.5-STABLE >Organization: Ueda lab., Waseda Univ. >Environment: FreeBSD gardian.folon.ueda.info.waseda.ac.jp 3.5-STABLE FreeBSD 3.5-STABLE #0: Fri Nov 24 18:28:17 JST 2000 takashi@gardian.folon.ueda.info.waseda.ac.jp:/usr/src/sys/compile/FOLON-DUAL i386 >Description: make ports/japanese/gal fails at applying patches. >How-To-Repeat: root@gardian# cd /usr/ports/japanese/gal root@gardian# make ===> Extracting for ja-gal-0.4.1 >Fix: >Release-Note: >Audit-Trail: >Unformatted: >> Checksum OK for gal-0.4.1.tar.gz. ===> ja-gal-0.4.1 depends on executable: gmake - found ===> ja-gal-0.4.1 depends on executable: libtool - found ===> ja-gal-0.4.1 depends on shared library: gnomeprint.13 - found ===> ja-gal-0.4.1 depends on shared library: glade.4 - found ===> ja-gal-0.4.1 depends on shared library: unicode.0 - found ===> ja-gal-0.4.1 depends on shared library: gnomevfs.0 - found ===> ja-gal-0.4.1 depends on shared library: iconv.2 - found ===> ja-gal-0.4.1 depends on shared library: X11.6 - found ===> ja-gal-0.4.1 depends on shared library: esd.2 - found ===> ja-gal-0.4.1 depends on shared library: glib12.3 - found ===> ja-gal-0.4.1 depends on shared library: gtk12.2 - found ===> ja-gal-0.4.1 depends on shared library: Imlib.5 - found ===> ja-gal-0.4.1 depends on shared library: gnome.4 - found ===> ja-gal-0.4.1 depends on shared library: capplet.4 - found ===> ja-gal-0.4.1 depends on shared library: panel_applet.4 - found ===> Patching for ja-gal-0.4.1 ===> Applying extra patch /a/feta/local3/ports/japanese/gal/files/patch-aa ===> Applying extra patch /a/feta/local3/ports/japanese/gal/files/patch-ab ===> Applying extra patch /a/feta/local3/ports/japanese/gal/files/patch-ac 2 out of 3 hunks failed--saving rejects to gal/widgets/e-font.c.rej *** Error code 2 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 7:53:36 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 07:53:33 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.189]) by hub.freebsd.org (Postfix) with SMTP id D499537B402 for ; Thu, 21 Dec 2000 07:53:24 -0800 (PST) Received: (qmail 8115 invoked by uid 1000); 21 Dec 2000 15:52:27 -0000 Date: Thu, 21 Dec 2000 17:52:27 +0200 From: Peter Pentchev To: Maxim Sobolev Cc: Andrew Reilly , freebsd-ports@FreeBSD.org Subject: Re: Integration of ports and 3rd party anoncvs repositories? Message-ID: <20001221175227.B7974@ringworld.oblivion.bg> Mail-Followup-To: Maxim Sobolev , Andrew Reilly , freebsd-ports@FreeBSD.org References: <20001221103408.A76507@gurney.reilly.home> <3A420FEC.F9A719D9@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A420FEC.F9A719D9@FreeBSD.org>; from sobomax@FreeBSD.org on Thu, Dec 21, 2000 at 04:13:01PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I do not think that creating a new repository was what the original poster has in mind; rather, he meant checking out source from existing repositories for those projects that keep its source there, instead of downloading ready-made tarballs. Many open-source projects do make their source trees availabe through anoncvs, and updating would be a simple matter of running cvs update with a new date tag. Other than that, your xdelta idea makes a lot of sense, especially for those big projects which do *not* make their source available via anoncvs; and I can sympathize about the internet costs :> G'luck, Peter -- If there were no counterfactuals, this sentence would not have been paradoxical. On Thu, Dec 21, 2000 at 04:13:01PM +0200, Maxim Sobolev wrote: > Andrew Reilly wrote: > > > There are some large and fairly rapidly evolving code bases out > > there at the moment. They aren't part of the base FreeBSD > > distribution, but are frequently installed via the ports > > collection: XFree86, Wine, mozilla, kde and gnome, probably > > openoffice soon. All of these are available through incremental > > means: anoncvs, CVSup, or inter-tarball diffs. > > > > Please correct me if I'm wrong here, but the current Ports > > facility is based on the notion of operating from distribution > > tarballs that wind up in /usr/ports/distfiles, one way or > > another. Some of these tarballs are now really big, which (for > > those of us who pay for our bandwidth by the megabyte) is a > > disincentive for staying current. > > > > I've managed to track Wine for a while by building my own > > tarballs incrementally, with the deltas. I'm just about to have > > a go at grabbing XFree86-4.0.2 by CVSup. > > > > Has anyone been thinking of tweaking the ports "extract" target > > to copy from a local copy of the original repository, rather > > than going straight for a tarball file? > > > > How could we standardise access to source repositories from > > different vendors, so that the ports makefiles could determine > > if they were present automagically? > > > > Would it be best to go for full local CVS repositories, and have > > the "extract" target do a cvs co, or could we get by with local > > "checked-out" trees? (I haven't really used CVS myself yet: I > > follow FreeBSD-stable with CVSup in "check out" mode.) > > If I understand you correctly, you are proposing to keep extracted from > distfiles stuff in some sort of anoncvs repository, which will simplify > incremental updates of 3rd party software for the users with limited bandwidth > available, so for example when upgrading from the XFree4.0.1 to XFree4.0.2 the > user will be saved from the necessity to d/l the whole 40-some megabytes > archive, and will need to only update his existing XFree86 sources using `cvs > update' command. While this idea in general sounds good, but I think that the > cost involved for keeping code of each of our 4200+ ports in cvs is just too > high (remember, this repo will be growing with insane speed with each update of > underlying software). > > The another possibility that I'm thinking about now is to set up a service > which at a specific request will generate xdelta(1) patch for any two arbitrary > versions of distfiles (for example bzip'ed version of xdelta-generated diff > between XFree4.0.1 and XFree4.0.2 distfiles is only 3MB long). Then the user > will be able to download only the difference between two versions in question > and apply diff to his local existing previous versions of software. Popular > diffs could be cached at the "server", as the creating xdelta diffs for large > files is io/cpu consuming task. The only problem with this schema is that the > xdelta(1) can't reconstruct gzipped tarball in such a way that the md5 sum for > original archive and md5 sum for reconstructed will match (however checksums of > underlying tar files will be equial), so we need some form of a workaround here > (for example use two md5 entries for each file in distinfo - gzip'ed and > gunzip'ed). > > As I said it's only the idea right now, but I'm close to starting implementing > something like that because internet costs are insanely high here ;). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 7:58:18 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 07:58:17 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 301DC37B400; Thu, 21 Dec 2000 07:58:17 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLFwG666357; Thu, 21 Dec 2000 07:58:16 -0800 (PST) (envelope-from roam) Date: Thu, 21 Dec 2000 07:58:16 -0800 (PST) From: Message-Id: <200012211558.eBLFwG666357@freefall.freebsd.org> To: joseph@randomnetworks.com, roam@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23550: [PORT UPDATE] - graphics/gifsicle 1.20->1.23 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PORT UPDATE] - graphics/gifsicle 1.20->1.23 State-Changed-From-To: feedback->closed State-Changed-By: roam State-Changed-When: Thu Dec 21 07:57:29 PST 2000 State-Changed-Why: Closed at originator's request (the port was updated independently). http://www.freebsd.org/cgi/query-pr.cgi?pr=23550 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 8: 0: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 08:00:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 575F637B402 for ; Thu, 21 Dec 2000 08:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLG03w66524; Thu, 21 Dec 2000 08:00:03 -0800 (PST) (envelope-from gnats) Date: Thu, 21 Dec 2000 08:00:03 -0800 (PST) Message-Id: <200012211600.eBLG03w66524@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: kew@icehouse.net Subject: ports/23245 [PATCH] sscalc-1.0 Reply-To: kew@icehouse.net Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23245; it has been noted by GNATS. From: kew@icehouse.net To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: ports/23245 [PATCH] sscalc-1.0 Date: Thu, 21 Dec 2000 07:57:55 -0800 (PST) >Submitter-Id: current-users >Originator: Keith Walker >Organization: >Confidential: no >Synopsis: Fix to Makefile to clear up hardwired lat/longs >Severity: non-critical >Priority: low >Category: ports >Release: FreeBSD 4.2-STABLE i386 >Class: change-request >Environment: current ports >Description: This patch makes it clear that the program has always been able to accept latitude and longitude via the command line. >How-To-Repeat: >Fix: diff -ur sscalc-master/Makefile sscalc/Makefile --- sscalc-master/Makefile Tue Dec 19 05:36:31 2000 +++ sscalc/Makefile Thu Dec 21 07:17:18 2000 @@ -2,7 +2,7 @@ # Date created: Wed Nov 29 15:08:00 PST 2000 # Whom: Keith Walker # -# $FreeBSD: ports/astro/sscalc/Makefile,v 1.1 2000/12/19 13:36:31 will Exp $ +# $FreeBSD$ # PORTNAME= sscalc @@ -14,9 +14,14 @@ pre-fetch: .if !defined(LAT) - @${ECHO_MSG} "Type \"make LAT= LON=\" to hardwire your site" + @${ECHO} "*****************************************************************" + @${ECHO} "While you can ALWAYS provide the lat/longs via the command" + @${ECHO} "line, you can choose to hardwire the coordinates to ease" + @${ECHO} "things a bit:" + @${ECHO} " use \"make LAT= LON=\" if you want to." + @${ECHO} "*****************************************************************" .else - @${ECHO_MSG} "Compiling in lat/longs" + @${ECHO} "Compiling in lat/longs" .endif post-install: @@ -24,5 +29,11 @@ @${MKDIR} ${PREFIX}/share/doc/sscalc ${INSTALL_DATA} ${WRKSRC}/cities.txt ${PREFIX}/share/doc/sscalc ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/sscalc + @${ECHO} "*****************************************************************" + @${ECHO} " Located in ${PREFIX}/share/doc/sscalc/cities.txt is a list" + @${ECHO} " of lat/longs for many, many cities all over the globe." + @${ECHO} " You may be able to find your town in that file if you don't" + @${ECHO} " know your latitude and longitude." + @${ECHO} "*****************************************************************" .include To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 8:35:53 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 08:35:51 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from nef.ens.fr (nef.ens.fr [129.199.96.32]) by hub.freebsd.org (Postfix) with ESMTP id 6B11437B400 for ; Thu, 21 Dec 2000 08:35:48 -0800 (PST) Received: from corto.lpt.ens.fr (corto.lpt.ens.fr [129.199.122.2]) by nef.ens.fr (8.10.1/1.01.28121999) with ESMTP id eBLGZc723009 ; Thu, 21 Dec 2000 17:35:38 +0100 (CET) Received: from (rsidd@localhost) by corto.lpt.ens.fr (8.9.3/jtpda-5.3.1) id RAA43305 ; Thu, 21 Dec 2000 17:35:31 +0100 (CET) Date: Thu, 21 Dec 2000 17:35:31 +0100 From: Rahul Siddharthan To: Vivek Khera Cc: ports@freebsd.org Subject: Re: logout on KDE 2 (patch works) Message-ID: <20001221173531.A42893@lpt.ens.fr> References: <20001217121846.G9911@lpt.ens.fr> <14910.14406.446631.597891@onceler.kciLink.com> <20001218172118.W58195@lpt.ens.fr> <14910.18231.843820.401196@onceler.kciLink.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <14910.18231.843820.401196@onceler.kciLink.com>; from khera@kciLink.com on Mon, Dec 18, 2000 at 12:19:51PM -0500 X-Operating-System: FreeBSD 3.4-STABLE i386 Sender: Rahul.Siddharthan@lpt.ens.fr Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Vivek Khera said on Dec 18, 2000 at 12:19:51: > >>>>> "RS" == Rahul Siddharthan writes: > > RS> I've tried both. audioserver -- no use. kde init -- one may as well > RS> use ctrl-alt-bksp to kill X altogether... > > The part about the audio server was to disable it. Then on subsequent > KDE sessions, you should be able to log out. This was my experience > with 2.0, for 2.0.1 it works just fine every time. > > I guess killing a process should have been killing ksmserver rather > than kdeinit. That does a resonably clean logout. Well -- I'd just like to report that the patch I posted a couple of days ago works perfectly. The logout button now works everytime, and I can't see any other side-effects -- session management etc work fine too. My only crib now is that it takes too long to actually log out after you click the confirm button: there should at least be some pop-up window saying "logout in progress" or some such thing... Otherwise, kde2 looks good and has been completely stable and trouble-free so far. The patch is for kdelibs-2.0.1/kdecore/kapp.cpp, and is here: http://www.lpt.ens.fr/~rsidd/kapp.diff Thanks, -Rahul To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 8:45:48 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 08:45:47 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from freebsd.org.ru (sweet.etrust.ru [194.84.67.5]) by hub.freebsd.org (Postfix) with ESMTP id 9588137B400 for ; Thu, 21 Dec 2000 08:45:46 -0800 (PST) Received: by freebsd.org.ru (Postfix, from userid 1000) id 60A1315E; Thu, 21 Dec 2000 19:45:44 +0300 (MSK) Date: Thu, 21 Dec 2000 19:45:44 +0300 From: "Sergey A. Osokin" To: Will Andrews Cc: ports@FreeBSD.org Subject: Re: ports/23589: update net/licq Message-ID: <20001221194544.A46639@freebsd.org.ru> References: <200012210917.eBL9HiT17412@freefall.freebsd.org> <20001221121450.A66233@nevermind.kiev.ua> <20001221051515.O319@argon.firepipe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001221051515.O319@argon.firepipe.net>; from will@physics.purdue.edu on Thu, Dec 21, 2000 at 05:15:15AM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Dec 21, 2000 at 05:15:15AM -0500, Will Andrews wrote: > On Thu, Dec 21, 2000 at 12:14:50PM +0200, Nevermind wrote: > > Is there any changes to previous upgrade and following downgrade to 0.85? > > > > There was some instability in licq-1.0. > > Brian did not upgrade to 1.0, but a newer version than that. You best > try it out and refer problems to him via send-pr. I think, that more software in ports (that use buggy libstdc+++ or threads) must be marked as broken with FORBIDDEN feature... See PR 23252 for more details. -- Rgdz, /"\ Sergey Osokin aka oZZ, \ / ASCII RIBBON CAMPAIGN osa@freebsd.org.ru X AGAINST HTML MAIL http://freebsd.org.ru/~osa/ / \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 9:10: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 09:10:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2263D37B402 for ; Thu, 21 Dec 2000 09:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLHA3P78870; Thu, 21 Dec 2000 09:10:03 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 09:10:03 -0800 (PST) Resent-Message-Id: <200012211710.eBLHA3P78870@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, roman@xpert.com Received: from manowar.xpert.com (node-180.xpert.com [199.203.132.180]) by hub.freebsd.org (Postfix) with ESMTP id 99BC037B400 for ; Thu, 21 Dec 2000 09:05:23 -0800 (PST) Received: (from roman@localhost) by manowar.xpert.com (8.11.1/8.11.1) id eBLH5JB73858; Thu, 21 Dec 2000 19:05:19 +0200 (IST) (envelope-from roman) Message-Id: <200012211705.eBLH5JB73858@manowar.xpert.com> Date: Thu, 21 Dec 2000 19:05:19 +0200 (IST) From: roman@xpert.com Sender: roman@manowar.xpert.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23714: [patch] fix security/firewalk port Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23714 >Category: ports >Synopsis: firewalk ports is broken, attached is the fix. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 09:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Roman Shterenzon >Release: FreeBSD 4.2-MDillon-06 i386 >Organization: >Environment: >Description: Firewalk ports is broken, maintainer doesn't care about it. I think maintainer should be freebsd-ports instead, since I mailed him many times and got no reply. >How-To-Repeat: cd /usr/ports/security/firewalk ; make build >Fix: diff -urN /usr/ports/security/firewalk/Makefile firewalk/Makefile --- /usr/ports/security/firewalk/Makefile Fri Jun 2 23:05:10 2000 +++ firewalk/Makefile Wed Sep 27 02:06:00 2000 @@ -2,14 +2,13 @@ # Date created: Sun May 3, 1999 # Whom: shipley@dis.org # -# $FreeBSD: ports/security/firewalk/Makefile,v 1.6 2000/06/02 03:18:38 will Exp $ +# $FreeBSD$ # PORTNAME= firewalk -PORTVERSION= 0.9.9b +PORTVERSION= 0.99.1 CATEGORIES= security MASTER_SITES= http://www.packetfactory.net/firewalk/ -DISTNAME= firewalk-0.99beta MAINTAINER= shipley@dis.org @@ -21,12 +20,12 @@ CONFIGURE_ENV+= LDFLAGS="-L${PREFIX}/lib" CONFIGURE_ARGS= --with-gtk=no +WRKSRC= ${WRKDIR}/Firewalk-${PORTVERSION} + .include .if ${OSVERSION} <= 300000 BROKEN= may not build .endif - -WRKSRC= ${WRKDIR}/Firewalk-0.99b-beta3 .include diff -urN /usr/ports/security/firewalk/files/md5 firewalk/files/md5 --- /usr/ports/security/firewalk/distinfo Wed Jun 9 04:25:01 1999 +++ firewalk/distinfo Wed Sep 27 01:49:46 2000 @@ -1 +1 @@ -MD5 (firewalk-0.99beta.tar.gz) = bd2b1cdbbcd6ef78604062c1d10e614b +MD5 (firewalk-0.99.1.tar.gz) = e222016631ddfd01cba80cab5cd33fc3 diff -urN /usr/ports/security/firewalk/patches/patch-aa firewalk/patches/patch-aa --- /usr/ports/security/firewalk/files/patch-aa Sat Feb 5 23:26:56 2000 +++ firewalk/files/patch-aa Wed Sep 27 02:00:51 2000 @@ -1,5 +1,5 @@ ---- Makefile.in.orig Thu Apr 29 01:16:53 1999 -+++ Makefile.in Thu Dec 23 20:27:01 1999 +--- Makefile.in.orig Fri Nov 19 06:20:56 1999 ++++ Makefile.in Wed Sep 27 02:00:42 2000 @@ -7,13 +7,14 @@ # @configure_input@ @@ -8,13 +8,14 @@ +FIREWALK_LOC= $(PREFIX) FIREWALK_MAN= $(FIREWALK).1 INSTALL = ./install-sh -+LIBNET_CONFIG = $(PREFIX)/bin/libnet-config - DEFINES += @DEFS@ +-DEFINES += @DEFS@ `libnet-config --defines` ++LIBNET_CONFIG= $(PREFIX)/bin/libnet-config ++DEFINES += @DEFS@ `$(LIBNET_CONFIG) --defines` CFLAGS = @CFLAGS@ -CPPFLAGS = @CPPFLAGS@ --LIBS = -lnet -lpcap @FW_GTK_CONFIG@ -+CPPFLAGS = `$(LIBNET_CONFIG) --defines` -I$(PREFIX)/include @CPPFLAGS@ -+LIBS = -L$(PREFIX)/lib `$(LIBNET_CONFIG) --libs` -lpcap @FW_GTK_CONFIG@ +-LIBS = -lnet -lpcap @FW_GTK_CONFIG@ `libnet-config --libs` ++CPPFLAGS = -I$(PREFIX)/include @CPPFLAGS@ ++LIBS = -L$(PREFIX)/lib @FW_GTK_CONFIG@ `$(LIBNET_CONFIG) --libs` -lpcap OBJECTS = main.o firewalk.o watcher.o p_cap.o signal.o \ packet.o udptcpwalk.o port_list.o util.o @FW_GTK_OBJS@ diff -urN /usr/ports/security/firewalk/patches/patch-ab firewalk/patches/patch-ab --- /usr/ports/security/firewalk/files/patch-ab Thu Jan 1 02:00:00 1970 +++ firewalk/files/patch-ab Wed Sep 27 02:02:36 2000 @@ -0,0 +1,11 @@ +--- firewalk.h.orig Wed Sep 27 02:01:59 2000 ++++ firewalk.h Wed Sep 27 02:02:22 2000 +@@ -48,7 +48,7 @@ + #define RED_CNT_MIN 1 + #define PCAP_TIMEOUT_MAX 1000 + #define PCAP_TIMEOUT_MIN 1 +-#define IP_HOP_MAX 25 ++#define IP_HOP_MAX 100 + #define IP_HOP_MIN 1 + #define XV_MAX 8 + #define XV_MIN 1 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 9:20: 4 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 09:20:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BA2537B400 for ; Thu, 21 Dec 2000 09:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLHK2A80374; Thu, 21 Dec 2000 09:20:02 -0800 (PST) (envelope-from gnats) Date: Thu, 21 Dec 2000 09:20:02 -0800 (PST) Message-Id: <200012211720.eBLHK2A80374@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Dan Langille" Subject: Re: ports/23659: Update security/portsentry add portsentry.conf to pkg-plist Reply-To: "Dan Langille" Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23659; it has been noted by GNATS. From: "Dan Langille" To: Will Andrews Cc: FreeBSD-gnats-submit@FreeBSD.org, dwcjr@inethouston.net Subject: Re: ports/23659: Update security/portsentry add portsentry.conf to pkg-plist Date: Fri, 22 Dec 2000 06:19:14 +1300 On 21 Dec 2000, at 4:48, Will Andrews wrote: > What do you think, Dan? Damn fine idea. -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ NZ ADSL - http://www.unixathome.org/adsl/ NZ Broadband - http://www.unixathome.org/broadband/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 9:23:22 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 09:23:20 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BEAA37B400; Thu, 21 Dec 2000 09:23:20 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLHNKo81150; Thu, 21 Dec 2000 09:23:20 -0800 (PST) (envelope-from ade) Date: Thu, 21 Dec 2000 09:23:20 -0800 (PST) From: Message-Id: <200012211723.eBLHNKo81150@freefall.freebsd.org> To: dnpowers@swbell.net, ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/23704: gnomevfs will not make with 4.2-STABLE Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: gnomevfs will not make with 4.2-STABLE State-Changed-From-To: open->feedback State-Changed-By: ade State-Changed-When: Thu Dec 21 09:21:17 PST 2000 State-Changed-Why: Check that your dependencies are fully up-to-date, in particular your iconv port. gnomevfs builds just fine on both my testboxes here and on the bento package building cluster - point your browser at http://bento.FreeBSD.org/errorlogs/4-full/ for more details. So this looks like a localized problem. Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Thu Dec 21 09:21:17 PST 2000 Responsible-Changed-Why: gnomevfs is mine. http://www.freebsd.org/cgi/query-pr.cgi?pr=23704 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 9:40:10 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 09:40:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A0E3237B404 for ; Thu, 21 Dec 2000 09:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLHe1Y84019; Thu, 21 Dec 2000 09:40:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 09:40:01 -0800 (PST) Resent-Message-Id: <200012211740.eBLHe1Y84019@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, Jeremy Shaffner Received: from indigo.external.org (c1118643-b.chmpgn1.il.home.com [24.181.130.163]) by hub.freebsd.org (Postfix) with ESMTP id 4ED5737B400 for ; Thu, 21 Dec 2000 09:35:40 -0800 (PST) Received: (from jeremy@localhost) by indigo.external.org (8.11.1/8.11.1) id eBLHZDH86862; Thu, 21 Dec 2000 11:35:13 -0600 (CST) (envelope-from jeremy) Message-Id: <200012211735.eBLHZDH86862@indigo.external.org> Date: Thu, 21 Dec 2000 11:35:13 -0600 (CST) From: Jeremy Shaffner Sender: jeremy@indigo.external.org Reply-To: Jeremy Shaffner To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23715: New Port: textproc/gutenbook Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23715 >Category: ports >Synopsis: New Port: textproc/gutenbook >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 09:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jeremy Shaffner >Release: FreeBSD 4.2-20001106-BETA i386 >Organization: >Environment: >Description: Gutenbook aims to be a free and more intuitive, comfortable document reader, within the scope of a computer's desktop metaphor, geared specifically toward Project Gutenberg Etexts, but supporting any ASCII document. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # gutenbook # gutenbook/Makefile # gutenbook/files # gutenbook/files/patch-PGB.pm # gutenbook/pkg-comment # gutenbook/pkg-plist # gutenbook/distinfo # gutenbook/pkg-descr # gutenbook/pkg-message # echo c - gutenbook mkdir -p gutenbook > /dev/null 2>&1 echo x - gutenbook/Makefile sed 's/^X//' >gutenbook/Makefile << 'END-of-gutenbook/Makefile' X# New ports collection makefile for: gutenbook X# Date created: 21 December 2000 X# Whom: Jeremy Shaffner X# X# $FreeBSD$ X XPORTNAME= gutenbook XPORTVERSION= 0.1.10 XCATEGORIES= textproc perl5 XMASTER_SITES= http://www.gutenbook.org/download/ X XMAINTAINER= jeremy@external.org X XRUN_DEPENDS= zip:${PORTSDIR}/archivers/zip \ X ${site_perl}/${PERL_ARCH}/Date/Calc.pm:${PORTSDIR}/devel/p5-Date-Calc \ X ${site_perl}/${PERL_ARCH}/HTML/Parser.pm:${PORTSDIR}/www/p5-HTML-Parser \ X ${site_perl}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable \ X ${site_perl}/${PERL_ARCH}/Gtk.pm:${PORTSDIR}/x11-toolkits/p5-Gtk \ X ${site_perl}/LWP/UserAgent.pm:${PORTSDIR}/www/p5-libwww \ X ${site_perl}/URI/URL.pm:${PORTSDIR}/net/p5-URI X Xsite_perl= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER} X XUSE_GTK= YES XNO_BUILD= YES X XMODULES= Etext.pm File.pm Index.pm Network.pm PropList.pm X Xpost-patch: X ${SED} "s#%%LOCALBASE%%#${LOCALBASE}#g" ${WRKSRC}/PGB.pm > ${WRKSRC}/tmp X ${MV} ${WRKSRC}/tmp ${WRKSRC}/PGB.pm X Xdo-install: X @${INSTALL_SCRIPT} ${WRKSRC}/gutenbook ${LOCALBASE}/bin/gutenbook X @${INSTALL_SCRIPT} ${WRKSRC}/PGB.pm ${site_perl}/PGB.pm X @${MKDIR} ${site_perl}/PGB X.for module in ${MODULES} X @${INSTALL_SCRIPT} ${WRKSRC}/PGB/${module} ${site_perl}/PGB X.endfor X.if !defined(NOPORTDCS) X @${MKDIR} ${LOCALBASE}/share/doc/gutenbook X @${INSTALL_DATA} ${WRKSRC}/MANUAL ${LOCALBASE}/share/doc/gutenbook X @${INSTALL_DATA} ${WRKSRC}/gutenbook.spec ${LOCALBASE}/share/doc/gutenbook X.endif X Xpost-install: X.if !defined(NOPORTDOCS) X @${CAT} ${PKGMESSAGE} | ${SED} 's#/usr/local#${PREFIX}#g' X.endif X X.include END-of-gutenbook/Makefile echo c - gutenbook/files mkdir -p gutenbook/files > /dev/null 2>&1 echo x - gutenbook/files/patch-PGB.pm sed 's/^X//' >gutenbook/files/patch-PGB.pm << 'END-of-gutenbook/files/patch-PGB.pm' X--- PGB.pm.orig Thu Dec 21 03:42:50 2000 X+++ PGB.pm Thu Dec 21 03:43:31 2000 X@@ -42,8 +42,8 @@ X # $http_url = "http://www.viemeister.com/pub/gutenberg/"; X # $http_url = "http://metalab.unc.edu/pub/docs/books/gutenberg/"; X # $http_url = "http://www.prairienet.org/gutenberg/"; X-$zip = "/usr/bin/zip"; X-$unzip = "/usr/bin/unzip"; X+$zip = "%%LOCALBASE%%/bin/zip"; X+$unzip = "%%LOCALBASE%%/bin/unzip"; X X $index_file = "index"; X $prefs_file = "preferences"; END-of-gutenbook/files/patch-PGB.pm echo x - gutenbook/pkg-comment sed 's/^X//' >gutenbook/pkg-comment << 'END-of-gutenbook/pkg-comment' XGTK+ based reader for Project Gutenberg Etexts END-of-gutenbook/pkg-comment echo x - gutenbook/pkg-plist sed 's/^X//' >gutenbook/pkg-plist << 'END-of-gutenbook/pkg-plist' Xbin/gutenbook Xlib/perl5/site_perl/%%PERL_VER%%/PGB.pm Xlib/perl5/site_perl/%%PERL_VER%%/PGB/Etext.pm Xlib/perl5/site_perl/%%PERL_VER%%/PGB/File.pm Xlib/perl5/site_perl/%%PERL_VER%%/PGB/Index.pm Xlib/perl5/site_perl/%%PERL_VER%%/PGB/Network.pm Xlib/perl5/site_perl/%%PERL_VER%%/PGB/PropList.pm Xshare/doc/gutenbook/MANUAL Xshare/doc/gutenbook/gutenbook.spec X@dirrm lib/perl5/site_perl/%%PERL_VER%%/PGB X@dirrm share/doc/gutenbook END-of-gutenbook/pkg-plist echo x - gutenbook/distinfo sed 's/^X//' >gutenbook/distinfo << 'END-of-gutenbook/distinfo' XMD5 (gutenbook-0.1.10.tar.gz) = 211e5a6936710218f9be9b09b3ef1e2f END-of-gutenbook/distinfo echo x - gutenbook/pkg-descr sed 's/^X//' >gutenbook/pkg-descr << 'END-of-gutenbook/pkg-descr' XGutenbook is a graphical interface for browsing, downloading and reading XProject Gutenberg Etexts. X XIt has the following features: X XBook-like pagination Etexts downloaded via HTTP as well as FTP XIndex caching and local Etext storing XBrowse-able, search-able, sort-able index XReads plaintext or zip'd Etexts XUser preferences interface XObject-oriented design combining Perl and GTK+ X100% home-grown Free Software protected by the GNU GPL X XProject Gutenberg: http://promo.net/pg/index.html X XWWW: http://www.gutenbook.org END-of-gutenbook/pkg-descr echo x - gutenbook/pkg-message sed 's/^X//' >gutenbook/pkg-message << 'END-of-gutenbook/pkg-message' X XThe manual for Gutenbook has been installed in: X X /usr/local/share/doc/gutenbook X END-of-gutenbook/pkg-message exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 9:46:14 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 09:46:13 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D815937B400; Thu, 21 Dec 2000 09:46:12 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLHkCT85072; Thu, 21 Dec 2000 09:46:12 -0800 (PST) (envelope-from roam) Date: Thu, 21 Dec 2000 09:46:12 -0800 (PST) From: Message-Id: <200012211746.eBLHkCT85072@freefall.freebsd.org> To: roman@xpert.com, roam@FreeBSD.org, freebsd-ports@FreeBSD.org, roam@FreeBSD.org Subject: Re: ports/23714: firewalk ports is broken, attached is the fix. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: firewalk ports is broken, attached is the fix. State-Changed-From-To: open->analyzed State-Changed-By: roam State-Changed-When: Thu Dec 21 09:44:59 PST 2000 State-Changed-Why: Testing the build; the patch was not totally correct, there was no need to revert the $FreeBSD tag that CVS has put there ;) Responsible-Changed-From-To: freebsd-ports->roam Responsible-Changed-By: roam Responsible-Changed-When: Thu Dec 21 09:44:59 PST 2000 Responsible-Changed-Why: I'll take care of this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=23714 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 9:50:22 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 09:50:15 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CEDC637B404 for ; Thu, 21 Dec 2000 09:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLHo1R85511; Thu, 21 Dec 2000 09:50:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 09:50:01 -0800 (PST) Resent-Message-Id: <200012211750.eBLHo1R85511@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, ishmael27@home.com Received: from babylon.merseine.nu (c418236-a.clmba1.mo.home.com [24.12.203.134]) by hub.freebsd.org (Postfix) with ESMTP id 4DD4C37B400 for ; Thu, 21 Dec 2000 09:44:48 -0800 (PST) Received: (from ishmael@localhost) by babylon.merseine.nu (8.11.1/8.11.1) id eBLHk0A12086; Thu, 21 Dec 2000 11:46:00 -0600 (CST) (envelope-from ishmael) Message-Id: <200012211746.eBLHk0A12086@babylon.merseine.nu> Date: Thu, 21 Dec 2000 11:46:00 -0600 (CST) From: ishmael27@home.com Sender: ishmael@babylon.merseine.nu Reply-To: ishmael27@home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23716: Patch to make graphics/gdk-pixbuf optionally dependant upon GNOME Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23716 >Category: ports >Synopsis: Patch to make graphics/gdk-pixbuf optionally dependant upon GNOME >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 09:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jeremy Norris >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: FreeBSD babylon.merseine.nu 4.2-STABLE FreeBSD 4.2-STABLE #0: Fri Dec 15 07:53:17 CST 2000 ishmael@babylon.merseine.nu:/usr/src/sys/compile/BABYLON i386 >Description: This patch allows gdk-pixbuf to be optionally dependant upon GNOME. It does NOT change any source code in this distribution, it only fiddles with configure script options, and changes one Makefile.in (to prevent installation of GNOME specific documentation). >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/gdk-pixbuf/Makefile ./Makefile --- /usr/ports/graphics/gdk-pixbuf/Makefile Thu Oct 5 02:10:45 2000 +++ ./Makefile Thu Dec 21 11:39:21 2000 @@ -7,6 +7,7 @@ PORTNAME= gdk-pixbuf PORTVERSION= 0.9.0 +PORTREVISION= 1 CATEGORIES= graphics gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= unstable/sources/gdk-pixbuf @@ -15,15 +16,20 @@ USE_GMAKE= yes USE_X_PREFIX= yes -USE_GNOMELIBS= yes +USE_GTK= yes +WANT_GNOME= yes USE_LIBTOOL= yes INSTALLS_SHLIB= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" +.include pre-patch: @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ 's|\$$\(datadir\)/gnome/|\$$\(datadir\)/|g ; \ s|\$$\(datadir\)/aclocal|\$$\(prefix\)/share/aclocal|g' - -.include +.if !defined(HAVE_GNOME) + @${RM} -f ${WRKSRC}/doc/html/gnomecanvaspixbuf.html +.endif + +.include diff -urN /usr/ports/graphics/gdk-pixbuf/files/patch-ab ./files/patch-ab --- /usr/ports/graphics/gdk-pixbuf/files/patch-ab Mon Aug 28 13:10:38 2000 +++ ./files/patch-ab Thu Dec 21 11:39:21 2000 @@ -1,7 +1,15 @@ ---- Makefile.in.orig Sun Aug 27 18:48:23 2000 -+++ Makefile.in Mon Aug 28 10:14:58 2000 -@@ -109,3 +109,3 @@ +--- Makefile.in.orig Sat Dec 16 15:36:44 2000 ++++ Makefile.in Sat Dec 16 16:26:37 2000 +@@ -107,8 +107,10 @@ + + bin_SCRIPTS = gdk-pixbuf-config -confexecdir = $(libdir) +-confexec_DATA = gdk_pixbufConf.sh gdk_pixbuf_xlibConf.sh gnomecanvaspixbufConf.sh ++@BUILD_CANVAS_ITEM_TRUE@CANVAS_PIXBUF_CONF = gnomecanvaspisbufConf.sh ++@BUILD_CANVAS_ITEM_FALSE@CANVAS_PIXBUF_CONF = +confexecdir = $(sysconfdir) - confexec_DATA = gdk_pixbufConf.sh gdk_pixbuf_xlibConf.sh gnomecanvaspixbufConf.sh ++confexec_DATA = gdk_pixbufConf.sh gdk_pixbuf_xlibConf.sh $(CANVAS_PIXBUF_CONF) + + + EXTRA_DIST = gdk_pixbufConf.sh.in gdk_pixbuf_xlibConf.sh.in gnomecanvaspixbufConf.sh.in gdk-pixbuf-config.in gdk-pixbuf.m4 gdk-pixbuf.spec gdk-pixbuf.spec.in diff -urN /usr/ports/graphics/gdk-pixbuf/pkg-plist ./pkg-plist --- /usr/ports/graphics/gdk-pixbuf/pkg-plist Mon Aug 28 13:10:39 2000 +++ ./pkg-plist Thu Dec 21 11:39:21 2000 @@ -1,13 +1,13 @@ bin/gdk-pixbuf-config etc/gdk_pixbufConf.sh etc/gdk_pixbuf_xlibConf.sh -etc/gnomecanvaspixbufConf.sh +%%GNOME:%%etc/gnomecanvaspixbufConf.sh include/gdk-pixbuf/gdk-pixbuf-features.h include/gdk-pixbuf/gdk-pixbuf-loader.h include/gdk-pixbuf/gdk-pixbuf-xlib.h include/gdk-pixbuf/gdk-pixbuf-xlibrgb.h include/gdk-pixbuf/gdk-pixbuf.h -include/gdk-pixbuf/gnome-canvas-pixbuf.h +%%GNOME:%%include/gdk-pixbuf/gnome-canvas-pixbuf.h lib/gdk-pixbuf/loaders/libpixbufloader-bmp.so lib/gdk-pixbuf/loaders/libpixbufloader-gif.so lib/gdk-pixbuf/loaders/libpixbufloader-ico.so @@ -23,54 +23,54 @@ lib/libgdk_pixbuf_xlib.a lib/libgdk_pixbuf_xlib.so lib/libgdk_pixbuf_xlib.so.2 -lib/libgnomecanvaspixbuf.a -lib/libgnomecanvaspixbuf.so -lib/libgnomecanvaspixbuf.so.1 +%%GNOME:%%lib/libgnomecanvaspixbuf.a +%%GNOME:%%lib/libgnomecanvaspixbuf.so +%%GNOME:%%lib/libgnomecanvaspixbuf.so.1 share/aclocal/gdk-pixbuf.m4 -share/gnome/html/gdk-pixbuf-decl.txt -share/gnome/html/gdk-pixbuf-sections.txt -share/gnome/html/gdk-pixbuf.hierarchy -share/gnome/html/gdk-pixbuf.html -share/gnome/html/gdk-pixbuf.types -share/gnome/html/gdk-pixbuf/a2605.html -share/gnome/html/gdk-pixbuf/a3640.html -share/gnome/html/gdk-pixbuf/a3652.html -share/gnome/html/gdk-pixbuf/a3694.html -share/gnome/html/gdk-pixbuf/a3716.html -share/gnome/html/gdk-pixbuf/book1.html -share/gnome/html/gdk-pixbuf/compiling.html -share/gnome/html/gdk-pixbuf/extra-configuration-options.html -share/gnome/html/gdk-pixbuf/gdk-pixbuf-animation.html -share/gnome/html/gdk-pixbuf/gdk-pixbuf-creating.html -share/gnome/html/gdk-pixbuf/gdk-pixbuf-file-loading.html -share/gnome/html/gdk-pixbuf/gdk-pixbuf-from-drawables.html -share/gnome/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-xlib-from-drawables.html -share/gnome/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-xlib-init.html -share/gnome/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-xlib-rendering.html -share/gnome/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-xlib-rgb.html -share/gnome/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf.html -share/gnome/html/gdk-pixbuf/gdk-pixbuf-refcounting.html -share/gnome/html/gdk-pixbuf/gdk-pixbuf-rendering.html -share/gnome/html/gdk-pixbuf/gdk-pixbuf-scaling.html -share/gnome/html/gdk-pixbuf/gdk-pixbuf-util.html -share/gnome/html/gdk-pixbuf/gdkpixbufloader.html -share/gnome/html/gdk-pixbuf/gnomecanvaspixbuf.html -share/gnome/html/gdk-pixbuf/index.html -share/gnome/html/gdk-pixbuf/license.html -share/gnome/html/gdk-pixbuf/r15.html -share/gnome/html/gdk-pixbuf/r27.html -share/gnome/html/gdk-pixbuf/x2624.html -share/gnome/html/gdk-pixbuf/x2676.html -share/gnome/html/gdk-pixbuf/x3659.html -share/gnome/html/gdk-pixbuf/x3671.html -share/gnome/html/gdk-pixbuf/x3711.html -share/gnome/html/gdk-pixbuf/x3713.html -share/gnome/html/gdk-pixbuf/x3723.html -share/gnome/html/gdk-pixbuf/x3735.html -share/gnome/html/gdk-pixbuf/x3765.html -share/gnome/html/gdk-pixbuf/x3787.html -@dirrm share/gnome/html/gdk-pixbuf -@dirrm share/gnome/html +%%DATADIR%%/html/gdk-pixbuf-decl.txt +%%DATADIR%%/html/gdk-pixbuf-sections.txt +%%DATADIR%%/html/gdk-pixbuf.hierarchy +%%DATADIR%%/html/gdk-pixbuf.html +%%DATADIR%%/html/gdk-pixbuf.types +%%DATADIR%%/html/gdk-pixbuf/a2605.html +%%DATADIR%%/html/gdk-pixbuf/a3640.html +%%DATADIR%%/html/gdk-pixbuf/a3652.html +%%DATADIR%%/html/gdk-pixbuf/a3694.html +%%DATADIR%%/html/gdk-pixbuf/a3716.html +%%DATADIR%%/html/gdk-pixbuf/book1.html +%%DATADIR%%/html/gdk-pixbuf/compiling.html +%%DATADIR%%/html/gdk-pixbuf/extra-configuration-options.html +%%DATADIR%%/html/gdk-pixbuf/gdk-pixbuf-animation.html +%%DATADIR%%/html/gdk-pixbuf/gdk-pixbuf-creating.html +%%DATADIR%%/html/gdk-pixbuf/gdk-pixbuf-file-loading.html +%%DATADIR%%/html/gdk-pixbuf/gdk-pixbuf-from-drawables.html +%%DATADIR%%/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-xlib-from-drawables.html +%%DATADIR%%/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-xlib-init.html +%%DATADIR%%/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-xlib-rendering.html +%%DATADIR%%/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf-xlib-rgb.html +%%DATADIR%%/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf.html +%%DATADIR%%/html/gdk-pixbuf/gdk-pixbuf-refcounting.html +%%DATADIR%%/html/gdk-pixbuf/gdk-pixbuf-rendering.html +%%DATADIR%%/html/gdk-pixbuf/gdk-pixbuf-scaling.html +%%DATADIR%%/html/gdk-pixbuf/gdk-pixbuf-util.html +%%DATADIR%%/html/gdk-pixbuf/gdkpixbufloader.html +%%GNOME:%%%%DATADIR%%/html/gdk-pixbuf/gnomecanvaspixbuf.html +%%DATADIR%%/html/gdk-pixbuf/index.html +%%DATADIR%%/html/gdk-pixbuf/license.html +%%DATADIR%%/html/gdk-pixbuf/r15.html +%%DATADIR%%/html/gdk-pixbuf/r27.html +%%DATADIR%%/html/gdk-pixbuf/x2624.html +%%DATADIR%%/html/gdk-pixbuf/x2676.html +%%DATADIR%%/html/gdk-pixbuf/x3659.html +%%DATADIR%%/html/gdk-pixbuf/x3671.html +%%DATADIR%%/html/gdk-pixbuf/x3711.html +%%DATADIR%%/html/gdk-pixbuf/x3713.html +%%DATADIR%%/html/gdk-pixbuf/x3723.html +%%DATADIR%%/html/gdk-pixbuf/x3735.html +%%DATADIR%%/html/gdk-pixbuf/x3765.html +%%DATADIR%%/html/gdk-pixbuf/x3787.html +@dirrm %%DATADIR%%/html/gdk-pixbuf +@dirrm %%DATADIR%%/html @dirrm include/gdk-pixbuf @dirrm lib/gdk-pixbuf/loaders @dirrm lib/gdk-pixbuf >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 10: 0:21 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 10:00:12 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B6CA137B69C for ; Thu, 21 Dec 2000 10:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLI04j87113; Thu, 21 Dec 2000 10:00:04 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 10:00:04 -0800 (PST) Resent-Message-Id: <200012211800.eBLI04j87113@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, Jeremy Shaffner Received: from indigo.external.org (c1118643-b.chmpgn1.il.home.com [24.181.130.163]) by hub.freebsd.org (Postfix) with ESMTP id BD22037B400 for ; Thu, 21 Dec 2000 09:58:47 -0800 (PST) Received: (from jeremy@localhost) by indigo.external.org (8.11.1/8.11.1) id eBLHwKG87097; Thu, 21 Dec 2000 11:58:20 -0600 (CST) (envelope-from jeremy) Message-Id: <200012211758.eBLHwKG87097@indigo.external.org> Date: Thu, 21 Dec 2000 11:58:20 -0600 (CST) From: Jeremy Shaffner Sender: jeremy@indigo.external.org Reply-To: Jeremy Shaffner To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23718: Update Port: devel/p5-Config-Inifiles to 2.13 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23718 >Category: ports >Synopsis: Update Port: devel/p5-Config-Inifiles to 2.13 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 10:00:04 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jeremy Shaffner >Release: FreeBSD 4.2-20001106-BETA i386 >Organization: >Environment: >Description: This is an upgrade from 1.8 to 2.13. Also replaced the do-configure with PERL_CONFIGURE. >How-To-Repeat: >Fix: diff -ruN p5-Config-IniFiles.orig/Makefile p5-Config-IniFiles/Makefile --- p5-Config-IniFiles.orig/Makefile Thu Dec 21 11:50:54 2000 +++ p5-Config-IniFiles/Makefile Thu Dec 21 11:52:37 2000 @@ -6,7 +6,7 @@ # PORTNAME= Config-IniFiles -PORTVERSION= 1.8 +PORTVERSION= 2.13 CATEGORIES= devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Config @@ -15,11 +15,9 @@ MAINTAINER= jeremy@external.org USE_PERL5= YES +PERL_CONFIGURE= YES MAN3= Config::IniFiles.3 MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} - -do-configure: - @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL .include diff -ruN p5-Config-IniFiles.orig/distinfo p5-Config-IniFiles/distinfo --- p5-Config-IniFiles.orig/distinfo Thu Dec 21 11:50:54 2000 +++ p5-Config-IniFiles/distinfo Thu Dec 21 11:53:07 2000 @@ -1 +1 @@ -MD5 (Config-IniFiles-1.8.tar.gz) = 2f76f242fac3a6c8975c41bec8ce0b86 +MD5 (Config-IniFiles-2.13.tar.gz) = ce774829d7e65db45f0864649c936942 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 10: 0:25 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 10:00:22 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CB6D37B6C5 for ; Thu, 21 Dec 2000 10:00:15 -0800 (PST) Received: (from fenner@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLI0FC87639 for ports@freebsd.org; Thu, 21 Dec 2000 10:00:15 -0800 (PST) (envelope-from fenner) Date: Thu, 21 Dec 2000 10:00:15 -0800 (PST) From: Message-Id: <200012211800.eBLI0FC87639@freefall.freebsd.org> To: ports@freebsd.org Subject: Unfetchable distfiles reminder Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dear porters, This is just a reminder to please periodically check the list of unfetchable distfiles at http://people.freebsd.org/~fenner/portsurvey/ . In particular, the list of ports with no MAINTAINER with distfile problems is http://people.freebsd.org/~fenner/portsurvey/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. In addition, the list of all ports with any unfetchable distfile is http://people.freebsd.org/~fenner/portsurvey/bad.html if you don't mind coordinating your fixes with the port MAINTAINER. Thanks for your help! Bill "distfiles" Fenner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 10:36: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 10:36:06 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from forrie.net (forrie.net [216.67.14.69]) by hub.freebsd.org (Postfix) with ESMTP id E62B437B400 for ; Thu, 21 Dec 2000 10:36:01 -0800 (PST) Received: from boomer.forrie.com (dhcp-north-71-168.navipath.net [64.20.71.168]) by forrie.net with id eBLIa0g41842 for ; Thu, 21 Dec 2000 13:36:00 -0500 (EST) Message-Id: <5.0.2.1.2.20001221133437.0223a110@216.67.14.69> X-Sender: forrie@216.67.14.69 X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Thu, 21 Dec 2000 13:34:56 -0500 To: ports@FreeBSD.org From: Forrest Aldrich Subject: Cyrus port Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Can we get a port of the 2.x IMAPD distribution, too? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 11: 1:20 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 11:01:19 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2FB6137B400; Thu, 21 Dec 2000 11:01:19 -0800 (PST) Received: (from jmz@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLJ1Ia98125; Thu, 21 Dec 2000 11:01:18 -0800 (PST) (envelope-from jmz) Date: Thu, 21 Dec 2000 11:01:18 -0800 (PST) From: Message-Id: <200012211901.eBLJ1Ia98125@freefall.freebsd.org> To: goranrunfeldt@home.se, jmz@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23533: New port for xevil-2.02 (improved repost of ports/22665) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port for xevil-2.02 (improved repost of ports/22665) State-Changed-From-To: open->closed State-Changed-By: jmz State-Changed-When: Thu Dec 21 11:00:56 PST 2000 State-Changed-Why: Committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=23533 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 11: 5:12 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 11:04:59 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from posgate.acis.com.au (posgate.acis.com.au [203.14.230.14]) by hub.freebsd.org (Postfix) with ESMTP id E9CBB37B400 for ; Thu, 21 Dec 2000 11:04:57 -0800 (PST) Received: from bullseye.apana.org.au (uucp@localhost) by posgate.acis.com.au (8.9.3/8.9.3) with UUCP id GAA11788; Fri, 22 Dec 2000 06:04:38 +1100 Received: from bullseye.apana.org.au (central-f.apana.org.au [203.9.107.235]) by bullseye.apana.org.au (8.8.8/8.8.8) with SMTP id TAA09508; Thu, 21 Dec 2000 19:58:00 +1100 (EST) (envelope-from andymac@bullseye.apana.org.au) Date: Thu, 21 Dec 2000 18:53:05 +1100 (EDT) From: Andrew MacIntyre To: bdonor@westnet.com Cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/23698: Port "cdrecord" cannot scan the SCSI bus using cam In-Reply-To: <200012201758.eBKHwhA55906@freefall.freebsd.org> Message-ID: X-X-Sender: andymac@bullseye.apana.org.au MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 20 Dec 2000 bdonor@westnet.com wrote: > >Number: 23698 > >Category: ports > >Synopsis: Port "cdrecord" cannot scan the SCSI bus using cam {...} > quark# camcontrol devlist -v > scbus0 on ahc0 bus 0: > at scbus0 target 3 lun 0 (pass0,cd0) > < > at scbus0 target 3 lun -1 () > at scbus0 target 4 lun 0 (pass1,cd1) > < > at scbus0 target 4 lun -1 () > at scbus0 target 6 lun 0 (pass2,sa0) > < > at scbus0 target 6 lun -1 () > < > at scbus0 target -1 lun -1 () > scbus-1 on xpt0 bus 0: > < > at scbus-1 target -1 lun -1 (xpt0) > > quark# cdrecord -scanbus > Cdrecord 1.9 (i386-unknown-freebsd4.2) Copyright (C) 1995-2000 Jorg Schilling > cdrecord: Operation not permitted. Error opening /dev/pass0 Cam error 'cam_real_open_device: couldn't open passthr. Cannot open SCSI driver. ^^^^^^^^^^^^^^^^^^^^^^^^^ > cdrecord: For possible targets try 'cdrecord -scanbus'. Make sure you are root. Does your kernel config define the passthrough device, and does /dev/pass0 exist? -- Andrew I MacIntyre "These thoughts are mine alone..." E-mail: andrew.macintyre@aba.gov.au (work) | Snail: PO Box 370 andymac@bullseye.apana.org.au (play) | Belconnen ACT 2616 andymac@pcug.org.au (play2) | Australia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 11:10:16 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 11:10:06 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9BC9C37B404 for ; Thu, 21 Dec 2000 11:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLJA2F01386; Thu, 21 Dec 2000 11:10:02 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 11:10:02 -0800 (PST) Resent-Message-Id: <200012211910.eBLJA2F01386@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, joseph@randomnetworks.com Received: from rodan.water-programs.com (unknown [130.86.77.19]) by hub.freebsd.org (Postfix) with ESMTP id B4E1837B402 for ; Thu, 21 Dec 2000 11:07:46 -0800 (PST) Received: (from scottj@localhost) by rodan.water-programs.com (8.11.1/8.11.1) id eBLJ6G917629; Thu, 21 Dec 2000 11:06:16 -0800 (PST) (envelope-from scottj) Message-Id: <200012211906.eBLJ6G917629@rodan.water-programs.com> Date: Thu, 21 Dec 2000 11:06:16 -0800 (PST) From: joseph@randomnetworks.com Sender: scottj@rodan.water-programs.com Reply-To: joseph@randomnetworks.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23720: [PORT - NEW] security/swatch3 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23720 >Category: ports >Synopsis: [PORT - NEW] security/swatch3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 11:10:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Joseph Scott >Release: FreeBSD 4.2-STABLE i386 >Organization: randomnetworks.com >Environment: ports collection >Description: ** NOTE ** This is my second try at submitting this port, my first one had some issues. Please close PR : ports/23016 as this PR is more up to date, and hopefully not broken :-( ********** [PORT - NEW] security/swatch3 This is an updated version of the security/swatch port. I'm submitting this as a new port because this one is dependant on three perl modules, the old one does not. So we'll also need a repo copy of the old swatch first. The shar file below can also be fetched from : http://www.randomnetworks.com/freebsd/prs/swatch3.shar >How-To-Repeat: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # swatch3 # swatch3/pkg-comment # swatch3/Makefile # swatch3/distinfo # swatch3/pkg-descr # swatch3/pkg-plist # echo c - swatch3 mkdir -p swatch3 > /dev/null 2>&1 echo x - swatch3/pkg-comment sed 's/^X//' >swatch3/pkg-comment << 'END-of-swatch3/pkg-comment' XThe Simple WATCHer and filter END-of-swatch3/pkg-comment echo x - swatch3/Makefile sed 's/^X//' >swatch3/Makefile << 'END-of-swatch3/Makefile' X# New ports collection makefile for: swatch3 X# Date created: Tue 21 Nov 2000 X# Whom: joseph@randomnetworks.com X# X# $FreeBSD$ X XPORTNAME= swatch XPORTVERSION= 3.0.1 XCATEGORIES= security sysutils XMASTER_SITES= ftp://ftp.stanford.edu/general/security-tools/swatch/ X XMAINTAINER= joseph@randomnetworks.com X XBUILD_DEPENDS= ${site_perl}/Date/Format.pm:${PORTSDIR}/devel/p5-TimeDate \ X ${site_perl}/${PERL_ARCH}/Date/Calc.pm:${PORTSDIR}/devel/p5-Date-Calc \ X ${site_perl}/File/Tail.pm:${PORTSDIR}/devel/p5-File-Tail X Xsite_perl= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER} X XUSE_PERL5= yes XPERL_CONFIGURE= yes XCONFIGURE_ARGS+= INSTALLMAN1DIR=${PREFIX}/man/man1 X XMAN1= swatch.1 swatch_oldrc2newrc.1 X X.include END-of-swatch3/Makefile echo x - swatch3/distinfo sed 's/^X//' >swatch3/distinfo << 'END-of-swatch3/distinfo' XMD5 (swatch-3.0.1.tar.gz) = 7426301fe6fb621dd67481ef3f2abad3 END-of-swatch3/distinfo echo x - swatch3/pkg-descr sed 's/^X//' >swatch3/pkg-descr << 'END-of-swatch3/pkg-descr' XSWATCH: The Simple WATCHer X XSwatch was originally written to actively monitor messages as Xthey are written to a log file via the UNIX syslog utility. For Xa simple demonstration type "perl swatch --examine=FILENAME" with XFILENAME being the file that you would like to see the contents of. XAll this example will do is demonstrate the different text modes Xthat are available with to the echo action. X XWWW: http://www.stanford.edu/~atkins/swatch/ END-of-swatch3/pkg-descr echo x - swatch3/pkg-plist sed 's/^X//' >swatch3/pkg-plist << 'END-of-swatch3/pkg-plist' Xbin/swatch Xbin/swatch_oldrc2newrc END-of-swatch3/pkg-plist exit >Fix: see the above shar file. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 11:10:28 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 11:10:27 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BC4A037B402; Thu, 21 Dec 2000 11:10:27 -0800 (PST) Received: (from jmz@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLJARK01442; Thu, 21 Dec 2000 11:10:27 -0800 (PST) (envelope-from jmz) Date: Thu, 21 Dec 2000 11:10:27 -0800 (PST) From: Message-Id: <200012211910.eBLJARK01442@freefall.freebsd.org> To: goranrunfeldt@home.se, jmz@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22665: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: State-Changed-From-To: open->closed State-Changed-By: jmz State-Changed-When: Thu Dec 21 11:08:39 PST 2000 State-Changed-Why: Superseded by ports/23533 http://www.freebsd.org/cgi/query-pr.cgi?pr=22665 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 11:31: 0 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 11:30:57 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (poynting.physics.purdue.edu [128.210.146.58]) by hub.freebsd.org (Postfix) with ESMTP id 441E637B6A9; Thu, 21 Dec 2000 11:30:57 -0800 (PST) Received: from argon.firepipe.net (pm007-033.dialup.bignet.net [64.79.81.65]) by puck.firepipe.net (Postfix) with ESMTP id 4D84F19E0; Thu, 21 Dec 2000 14:30:56 -0500 (EST) Received: by argon.firepipe.net (Postfix, from userid 1000) id 2C37718ED; Thu, 21 Dec 2000 14:26:26 -0500 (EST) Date: Thu, 21 Dec 2000 14:26:26 -0500 From: Will Andrews To: Joseph Scott Cc: will@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/23550: [PORT UPDATE] - graphics/gifsicle 1.20->1.23 Message-ID: <20001221142625.A328@argon.firepipe.net> Reply-To: Will Andrews References: <200012210856.eBL8ucR09247@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from joseph@randomnetworks.com on Thu, Dec 21, 2000 at 07:15:51AM -0800 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: will@argon.firepipe.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Dec 21, 2000 at 07:15:51AM -0800, Joseph Scott wrote: > Some day I will learn, really :-( I did this in the wrong order, > I sent off the pr in hopes that it would be directed towards the > maintainer. In the future I will foward patches to maintainers via email > before the pr (instead of the other way around). No, you should send-pr at the same time you send the maintainer the heads-up.. through the cc: line in the PR. That way everyone knows when you published the patch, including the PR database and the maintainer. > In the particular case it doesn't matter, an update was committed > by sobomax. Please go ahead and close the PR. I see roam already did that for me. :-) -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 11:42:31 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 11:42:29 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B539B37B402; Thu, 21 Dec 2000 11:42:29 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLJgT505500; Thu, 21 Dec 2000 11:42:29 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 11:42:29 -0800 (PST) From: Message-Id: <200012211942.eBLJgT505500@freefall.freebsd.org> To: dwcjr@inethouston.net, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23659: Update security/portsentry add portsentry.conf to pkg-plist Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update security/portsentry add portsentry.conf to pkg-plist State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Thu Dec 21 11:42:14 PST 2000 State-Changed-Why: Committed after approval by maintainer, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23659 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 11:44:50 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 11:44:48 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 14F1E37B400; Thu, 21 Dec 2000 11:44:47 -0800 (PST) Received: from dragon.nuxi.com (Ipittythefoolthattrustsident@trang.nuxi.com [209.152.133.57]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id LAA20752; Thu, 21 Dec 2000 11:44:40 -0800 (PST) (envelope-from obrien@NUXI.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.1/8.11.1) id eBLJicH49563; Thu, 21 Dec 2000 11:44:38 -0800 (PST) (envelope-from obrien) Date: Thu, 21 Dec 2000 11:44:38 -0800 From: "David O'Brien" To: Doug Barton Cc: Akinori MUSHA , freebsd-ports@FreeBSD.org, asami@FreeBSD.org Subject: Re: New variable proposal: USE_NEWPATCH Message-ID: <20001221114438.A49017@dragon.nuxi.com> Reply-To: nobody@FreeBSD.org References: <863dfvxhvt.wl@archon.local.idaemons.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from DougB@gorean.org on Thu, Dec 14, 2000 at 04:17:06PM -0800 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: obrien@NUXI.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Dec 14, 2000 at 04:17:06PM -0800, Doug Barton wrote: > On Mon, 11 Dec 2000, Akinori MUSHA wrote: > > > So now, hereby I'd propose we introduce a new variable USE_NEWPATCH as > > attached. That would help us in a few cases it won't pay us to bother > > with. > > How about we import the new patch instead? Actually we did. We have to source versions in /usr/src/. But the newer patch didn't handle some things the way the older one did. Ask ache and Peter, they may still remember the details. -- -- David (obrien@FreeBSD.org) GNU is Not Unix / Linux Is Not UniX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 11:49:36 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 11:49:33 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (poynting.physics.purdue.edu [128.210.146.58]) by hub.freebsd.org (Postfix) with ESMTP id 741F337B400; Thu, 21 Dec 2000 11:49:33 -0800 (PST) Received: from argon.firepipe.net (pm007-033.dialup.bignet.net [64.79.81.65]) by puck.firepipe.net (Postfix) with ESMTP id 770F519E0; Thu, 21 Dec 2000 14:49:32 -0500 (EST) Received: by argon.firepipe.net (Postfix, from userid 1000) id 1A1CD18ED; Thu, 21 Dec 2000 14:45:03 -0500 (EST) Date: Thu, 21 Dec 2000 14:45:02 -0500 From: Will Andrews To: Rahul Siddharthan , Kevin Lo Cc: Vivek Khera , ports@FreeBSD.ORG Subject: Re: logout on KDE 2 (patch works) Message-ID: <20001221144502.F328@argon.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Rahul Siddharthan , Kevin Lo , Vivek Khera , ports@FreeBSD.ORG References: <20001217121846.G9911@lpt.ens.fr> <14910.14406.446631.597891@onceler.kciLink.com> <20001218172118.W58195@lpt.ens.fr> <14910.18231.843820.401196@onceler.kciLink.com> <20001221173531.A42893@lpt.ens.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001221173531.A42893@lpt.ens.fr>; from rsidd@physics.iisc.ernet.in on Thu, Dec 21, 2000 at 05:35:31PM +0100 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: will@argon.firepipe.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Dec 21, 2000 at 05:35:31PM +0100, Rahul Siddharthan wrote: > thing... Otherwise, kde2 looks good and has been completely stable > and trouble-free so far. Excellent. > The patch is for kdelibs-2.0.1/kdecore/kapp.cpp, and is here: > http://www.lpt.ens.fr/~rsidd/kapp.diff Kevin, did you pounce on this patch yet? -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 11:50:30 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 11:50:28 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 1881237B400; Thu, 21 Dec 2000 11:50:25 -0800 (PST) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id VAA87133; Thu, 21 Dec 2000 21:50:13 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.0/8.11.0) id eBLJluG67431; Thu, 21 Dec 2000 11:47:56 -0800 (PST) (envelope-from reg) Date: Thu, 21 Dec 2000 11:47:55 -0800 From: Jeremy Lea To: jmz@FreeBSD.org Cc: freebsd-ports@FreeBSD.org Subject: Building XFree86-4 with Freetype2. Message-ID: <20001221114755.W79112@shale.csir.co.za> Mail-Followup-To: Jeremy Lea , jmz@FreeBSD.org, freebsd-ports@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: reg@shale.csir.co.za Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, All that is needed to build XFree86 4.0.2 with Freetype 2 seems to be to add the line: #define Freetype2Dir /usr/local to x86site.def, from the port's configure script, and add a LIB_DEPENDS to freetype.6. (Obviously the /usr/local above should be ${LOCALBASE}). Also, XFree86 4.0.2 builds and installs and seems to run fine on 3.5-STABLE. The only things that don't get built are the DRI related components, and stuff related to the i810 server. If we want to move the ports tree to XFree86 4 soon, we need to to build on 3.x-STABLE since we are still supporting that branch. Regards, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 12: 0:11 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 12:00:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 191E037B402 for ; Thu, 21 Dec 2000 12:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLK02b08512; Thu, 21 Dec 2000 12:00:02 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 12:00:02 -0800 (PST) Resent-Message-Id: <200012212000.eBLK02b08512@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, George Reid Received: from mta02-svc.ntlworld.com (mta02-svc.ntlworld.com [62.253.162.42]) by hub.freebsd.org (Postfix) with ESMTP id 4F69037B400 for ; Thu, 21 Dec 2000 11:55:45 -0800 (PST) Received: from sobek.openirc.co.uk ([62.252.8.55]) by mta02-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001221195542.TKOD23225.mta02-svc.ntlworld.com@sobek.openirc.co.uk> for ; Thu, 21 Dec 2000 19:55:42 +0000 Message-Id: Date: Thu, 21 Dec 2000 19:59:22 +0000 (GMT) From: George Reid To: FreeBSD-gnats-submit@freebsd.org Subject: ports/23721: [PATCH] www/asp2php has unfetchable distfile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23721 >Category: ports >Synopsis: [PATCH] www/asp2php has unfetchable distfile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 12:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD UKUG >Environment: n/a >Description: Port www/asp2php has unfetchable distfile. >How-To-Repeat: Try to build :) >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/asp2php/Makefile,v retrieving revision 1.4 diff -r1.4 Makefile 12c12 < MASTER_SITES= http://home.i1.net/~naken/asp2php/ --- > MASTER_SITES= http://www.naken.cc/asp2php/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 12: 0:15 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 12:00:11 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C93C337B698 for ; Thu, 21 Dec 2000 12:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLK03k08532; Thu, 21 Dec 2000 12:00:03 -0800 (PST) (envelope-from gnats) Date: Thu, 21 Dec 2000 12:00:03 -0800 (PST) Message-Id: <200012212000.eBLK03k08532@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Philippe Lefebvre Subject: Re: ports/23648: [PORT UPDATE] editors/nano 0.9.21 -> 0.9.24 Reply-To: Philippe Lefebvre Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23648; it has been noted by GNATS. From: Philippe Lefebvre To: freebsd-gnats-submit@FreeBSD.org, joseph@randomnetworks.com Cc: Subject: Re: ports/23648: [PORT UPDATE] editors/nano 0.9.21 -> 0.9.24 Date: Thu, 21 Dec 2000 14:57:55 -0500 The author highly recommends upgrading to version 0.9.24. So, I think this patch should be applied. There's also a new Master site that could be added: http://www.nano-editor.org/dist/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 12: 0:17 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 12:00:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3281A37B400 for ; Thu, 21 Dec 2000 12:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLK02i08521; Thu, 21 Dec 2000 12:00:02 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 12:00:02 -0800 (PST) Resent-Message-Id: <200012212000.eBLK02i08521@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, di0nys0s@earthlink.net Received: from chupacabras.flash.net (chupacabras.flash.net [209.30.2.16]) by hub.freebsd.org (Postfix) with ESMTP id 88F9137B400 for ; Thu, 21 Dec 2000 11:57:40 -0800 (PST) Received: from echo.dionysos.yi.org (A010-0693.ALBQ.splitrock.net [209.254.243.185]) by chupacabras.flash.net (8.9.3/Pro-8.9.3) with ESMTP id NAA20710 for ; Thu, 21 Dec 2000 13:57:31 -0600 (CST) Received: from helios.dionysos.yi.org (helios [192.168.0.3]) by echo.dionysos.yi.org (8.9.3/8.9.2) with ESMTP id MAA13660 for ; Thu, 21 Dec 2000 12:48:39 -0700 (MST) (envelope-from dionysos@helios.dionysos.yi.org) Received: (from dionysos@localhost) by helios.dionysos.yi.org (8.11.1/8.11.1) id eBLJlQg00562; Thu, 21 Dec 2000 12:47:26 -0700 (MST) (envelope-from dionysos) Message-Id: <200012211947.eBLJlQg00562@helios.dionysos.yi.org> Date: Thu, 21 Dec 2000 12:47:26 -0700 (MST) From: Dionysos Reply-To: di0nys0s@earthlink.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23722: Port update: /usr/ports/net/tik Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23722 >Category: ports >Synopsis: Port update for /usr/ports/net/tik >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 12:00:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: James R. Shrenk >Release: FreeBSD 4.2-STABLE i386 >Organization: none >Environment: File added: files/srcfiles >Description: Makefile updated. New version of TiK client has been made available as well. The Makefile has been cleaned up significantly with the addition of the files/srcfiles file. The directory structure also necessitated significant changes be made to the Makefile. http://www.freebsd.org/cgi/query-pr.cgi?pr=22019 wasn't bogus, however, it might have been a great help had I included the diff -ruN output instead of hoping it would arrive to you by osmosis. This hopefully looks a bit better. >How-To-Repeat: N/A >Fix: diff -ruN tik.bak/Makefile tik/Makefile --- tik.bak/Makefile Sun Oct 8 04:22:36 2000 +++ tik/Makefile Sun Oct 15 23:59:42 2000 @@ -6,12 +6,12 @@ # PORTNAME= tik -PORTVERSION= 0.87 +PORTVERSION= 0.89 CATEGORIES= net tk82 MASTER_SITES= http://download.sourceforge.net/tik/ \ - http://anti-aol.org/dionysos/l33t_filez/ + http://anti-aol.org/dionysos/files/ -MAINTAINER= astralblue@usa.net +MAINTAINER= dionysos@anti-aol.org RUN_DEPENDS= tclsh8.2:${PORTSDIR}/lang/tcl82 \ wish8.2:${PORTSDIR}/x11-toolkits/tk82 @@ -22,43 +22,11 @@ SORT?= sort -SRCDIRS= share/tik share/tik/media share/tik/packages share/tik/strs -SRCFILES= media/AOL.gif media/Admin.gif media/Away.gif media/DT.gif \ - media/DoorSlam.wav media/Icon.gif media/Idle.gif \ - media/Pounce.wav media/Login.gif media/add.gif \ - media/angel.gif media/back.gif media/bigsmile.gif \ - media/block.gif media/bold.gif media/bsmile.gif \ - media/burp.gif media/chat.gif media/close.gif \ - media/color.gif media/crossedlips.gif media/cry.gif \ - media/delete.gif media/dooropen.wav media/embarrassed.gif \ - media/font.gif media/ignore.gif media/im.gif \ - media/imrcv.wav media/imsend.wav media/info.gif \ - media/invite.gif media/italic.gif media/kiss.gif \ - media/moneymouth.gif media/ok.gif media/ring.wav \ - media/sad.gif media/scream.gif media/send.gif \ - media/smile.gif media/smile8.gif media/strike.gif \ - media/think.gif media/tongue.gif media/underline.gif \ - media/warn.gif media/whisper.gif media/wink.gif \ - media/Logo.gif media/Logout.gif media/Oscar.gif \ - media/downarrow.gif media/uparrow.gif media/BuddyArrive.au \ - media/BuddyLeave.au media/Receive.au media/yell.gif \ - media/Send.au \ - packages/HTTPProxy.tcl packages/away.tcl packages/beat.tcl \ - packages/bcast.tcl packages/boxinfo.tcl \ - packages/buddylog.tcl packages/chatcapture.tcl \ - packages/control.tcl packages/dir.tcl packages/getaway.tcl \ - packages/filetrans.tcl packages/imcapture.tcl \ - packages/mynews.tcl packages/pounce.tcl \ - packages/quickchat.tcl packages/search.tcl \ - packages/remoteadmin.tcl packages/remotegui.tcl \ - packages/socksproxy.tcl packages/sslproxy.tcl \ - packages/ticker.tcl strs/English.strs sflap.tcl \ - buddylist.tcl buddymgmt.tcl callbacks.tcl chat.tcl \ - configandpkg.tcl im.tcl info.tcl popup.tcl preproc.tcl \ - protocol.tcl proxy.tcl ui.tcl util.tcl version.tcl \ - configTool.tcl toc.tcl tik.tcl sag.tcl +SRCDIRS= share/tik share/tik/components share/tik/media \ + share/tik/packages share/tik/strs +.include "${.CURDIR}/files/srcfiles" EGDIR= share/examples/tik -EGFILES= example.tikstrs example.tikpre example.tikrc +EGFILES= example.tikstrs example.pkgrc DOCDIR= share/doc/tik DOCFILES= CHANGES CONTRIBUTORS COPYING LICENSE README-LANG \ NEW-FEATURES TODO diff -ruN tik.bak/distinfo tik/distinfo --- tik.bak/distinfo Sun Jul 9 19:34:31 2000 +++ tik/distinfo Sat Oct 14 14:58:15 2000 @@ -1 +1 @@ -MD5 (tik-0.87.tar.gz) = f7f93d2f54a48da692f1e0840105d9fa +MD5 (tik-0.89.tar.gz) = 35a62941525afc7e4e0546a096628a96 diff -ruN tik.bak/files/srcfiles tik/files/srcfiles --- tik.bak/files/srcfiles Wed Dec 31 17:00:00 1969 +++ tik/files/srcfiles Mon Oct 16 00:11:07 2000 @@ -0,0 +1,37 @@ +SRCFILES= media/AOL.gif media/Admin.gif media/Away.gif media/DT.gif \ + media/DoorSlam.wav media/Icon.gif media/Idle.gif \ + media/Pounce.wav media/Login.gif media/add.gif \ + media/angel.gif media/back.gif media/bigsmile.gif \ + media/block.gif media/bold.gif media/bsmile.gif \ + media/burp.gif media/chat.gif media/close.gif \ + media/color.gif media/crossedlips.gif media/cry.gif \ + media/delete.gif media/dooropen.wav media/embarrassed.gif \ + media/font.gif media/ignore.gif media/im.gif \ + media/imrcv.wav media/imsend.wav media/info.gif \ + media/invite.gif media/italic.gif media/kiss.gif \ + media/moneymouth.gif media/ok.gif media/ring.wav \ + media/sad.gif media/scream.gif media/send.gif \ + media/smile.gif media/smile8.gif media/strike.gif \ + media/think.gif media/tongue.gif media/underline.gif \ + media/warn.gif media/whisper.gif media/wink.gif \ + media/Logo.gif media/Logout.gif media/Oscar.gif \ + media/downarrow.gif media/uparrow.gif media/BuddyArrive.au \ + media/BuddyLeave.au media/Receive.au media/yell.gif \ + media/Send.au \ + components/HTTPProxy.tcl components/away.tcl \ + components/bcast.tcl components/beat.tcl \ + components/boxinfo.tcl components/buddylog.tcl \ + components/chatcapture.tcl components/dir.tcl \ + components/filetrans.tcl components/getaway.tcl \ + components/imcapture.tcl components/pounce.tcl \ + components/quickchat.tcl components/remoteadmin.tcl \ + components/remotegui.tcl components/search.tcl \ + components/socksproxy.tcl components/sslproxy.tcl \ + components/ticker.tcl \ + packages/control.tcl packages/mynews.tcl \ + strs/English.strs sflap.tcl balloonhelp.tcl \ + buddylist.tcl buddymgmt.tcl callbacks.tcl chat.tcl \ + configandpkg.tcl im.tcl info.tcl popup.tcl preproc.tcl \ + protocol.tcl proxy.tcl ui.tcl util.tcl version.tcl \ + configTool.tcl toc.tcl tik.tcl sag.tcl \ + configdir.tcl prefs.tcl >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 12: 0:20 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 12:00:15 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 678E637B69B for ; Thu, 21 Dec 2000 12:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLK04M08541; Thu, 21 Dec 2000 12:00:04 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 12:00:04 -0800 (PST) Resent-Message-Id: <200012212000.eBLK04M08541@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, olgeni@uli.it Received: from vega.uli.it (vega.uli.it [62.212.0.2]) by hub.freebsd.org (Postfix) with ESMTP id 5F3E137B400 for ; Thu, 21 Dec 2000 11:58:36 -0800 (PST) Received: from olgeni.localdomain.net (olgeni.uli.it [62.212.0.22]) by vega.uli.it (Postfix) with ESMTP id B824B32E95 for ; Thu, 21 Dec 2000 20:58:30 +0100 (CET) Received: (from olgeni@localhost) by olgeni.localdomain.net (8.11.1/8.11.1) id eBLJwfM26449; Thu, 21 Dec 2000 20:58:41 +0100 (CET) (envelope-from olgeni) Message-Id: <200012211958.eBLJwfM26449@olgeni.localdomain.net> Date: Thu, 21 Dec 2000 20:58:41 +0100 (CET) From: olgeni@uli.it Reply-To: olgeni@uli.it To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23723: typo and portlint fix for security/firewalk Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23723 >Category: ports >Synopsis: typo and portlint fix for security/firewalk >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 12:00:03 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jimmy Olgeni >Release: FreeBSD 4.2-STABLE i386 >Organization: Colby >Environment: FreeBSD olgeni.localdomain.net 4.2-STABLE FreeBSD 4.2-STABLE #0: Tue Dec 19 03:31:59 CET 2000 olgeni@olgeni.localdomain.net:/usr/local/storage/obj/usr/src/sys/BSDBOX i386 >Description: pkg-descr: * Replaced "then" with "than" (typo) files/patch-aa: * Removed last blank line to make portlint happy >How-To-Repeat: >Fix: diff -ruN firewalk.orig/files/patch-aa firewalk/files/patch-aa --- firewalk.orig/files/patch-aa Thu Dec 21 20:48:35 2000 +++ firewalk/files/patch-aa Thu Dec 21 20:54:47 2000 @@ -18,4 +18,3 @@ +LIBS = -L$(PREFIX)/lib @FW_GTK_CONFIG@ `$(LIBNET_CONFIG) --libs` -lpcap OBJECTS = main.o firewalk.o watcher.o p_cap.o signal.o \ packet.o udptcpwalk.o port_list.o util.o @FW_GTK_OBJS@ - diff -ruN firewalk.orig/pkg-descr firewalk/pkg-descr --- firewalk.orig/pkg-descr Wed Jun 9 03:25:02 1999 +++ firewalk/pkg-descr Thu Dec 21 20:54:41 2000 @@ -1,7 +1,7 @@ Firewalk is a network auditing tool that attempts to determine what transport protocols a given gateway will pass. Firewalk works by sending out TCP or UDP packets -with a TTL one greater then the targeted gateway. If the +with a TTL one greater than the targeted gateway. If the gateway allows the traffic, it will forward the packets to the next hop where they will expire and elicit an ICMP_TIME_EXCEEDED message. If the gateway host does not >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 12:10:10 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 12:10:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BE98837B402 for ; Thu, 21 Dec 2000 12:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLKA1R12096; Thu, 21 Dec 2000 12:10:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 12:10:01 -0800 (PST) Resent-Message-Id: <200012212010.eBLKA1R12096@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, makoto@pinpott.spnet.ne.jp Received: from rantantan.pinpott.spnet.ne.jp (rantantan.pinpott.spnet.ne.jp [211.0.149.42]) by hub.freebsd.org (Postfix) with ESMTP id E07EB37B400 for ; Thu, 21 Dec 2000 12:03:20 -0800 (PST) Received: (from makoto@localhost) by rantantan.pinpott.spnet.ne.jp (8.11.1/8.11.1) id eBLK3EI30572; Fri, 22 Dec 2000 05:03:14 +0900 (JST) (envelope-from makoto) Message-Id: <200012212003.eBLK3EI30572@rantantan.pinpott.spnet.ne.jp> Date: Fri, 22 Dec 2000 05:03:14 +0900 (JST) From: makoto@pinpott.spnet.ne.jp Sender: makoto@rantantan.pinpott.spnet.ne.jp Reply-To: makoto@pinpott.spnet.ne.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23724: MAINTAINER UPDATE: games/zangband Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23724 >Category: ports >Synopsis: MAINTAINER UPDATE: games/zangband >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 12:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Makoto YAMAKURA >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: Master sites has been moved and reorganized. >How-To-Repeat: >Fix: diff -x work -x *~ -x *gz -x *.orig -ruN zangband-master/Makefile zangband/Makefile --- zangband-master/Makefile Sat Oct 14 04:43:09 2000 +++ zangband/Makefile Fri Dec 22 04:51:25 2000 @@ -9,8 +9,8 @@ PORTVERSION= 2.4.0${JA_VERSION} PORTREVISION= 1 CATEGORIES+= games -MASTER_SITES= ftp://export.andrew.cmu.edu/angband/Variant/ \ - ftp://ftp.sunet.se/pub/games/Angband/Variant/ \ +MASTER_SITES= ftp://clockwork.dementia.org/angband/Variant/ZAngband/ \ + ftp://ftp.sunet.se/pub/games/Angband/Variant/ZAngband/ \ ${JA_MASTER_SITE} DISTFILES= ${PORTNAME}-${E_VERSION:S/.//g}-src.zip \ ${JA_DISTFILE} >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 12:10:12 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 12:10:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E341837B404 for ; Thu, 21 Dec 2000 12:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLKA1512105; Thu, 21 Dec 2000 12:10:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 12:10:01 -0800 (PST) Resent-Message-Id: <200012212010.eBLKA1512105@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, olgeni@uli.it Received: from vega.uli.it (vega.uli.it [62.212.0.2]) by hub.freebsd.org (Postfix) with ESMTP id 0A3F337B400 for ; Thu, 21 Dec 2000 12:03:50 -0800 (PST) Received: from olgeni.localdomain.net (olgeni.uli.it [62.212.0.22]) by vega.uli.it (Postfix) with ESMTP id 7760D32E95 for ; Thu, 21 Dec 2000 21:03:39 +0100 (CET) Received: (from olgeni@localhost) by olgeni.localdomain.net (8.11.1/8.11.1) id eBLK3oi27789; Thu, 21 Dec 2000 21:03:50 +0100 (CET) (envelope-from olgeni) Message-Id: <200012212003.eBLK3oi27789@olgeni.localdomain.net> Date: Thu, 21 Dec 2000 21:03:50 +0100 (CET) From: olgeni@uli.it Reply-To: olgeni@uli.it To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23725: typo fix for devel/portlint Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23725 >Category: ports >Synopsis: typo fix for devel/portlint >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 12:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jimmy Olgeni >Release: FreeBSD 4.2-STABLE i386 >Organization: Colby >Environment: FreeBSD olgeni.localdomain.net 4.2-STABLE FreeBSD 4.2-STABLE #0: Tue Dec 19 03:31:59 CET 2000 olgeni@olgeni.localdomain.net:/usr/local/storage/obj/usr/src/sys/BSDBOX i386 >Description: src/portlint.pl: * Replaced "necessery" with "necessary" >How-To-Repeat: >Fix: diff -ruN portlint.orig/src/portlint.pl portlint/src/portlint.pl --- portlint.orig/src/portlint.pl Tue Dec 12 21:39:14 2000 +++ portlint/src/portlint.pl Thu Dec 21 20:57:05 2000 @@ -573,7 +573,7 @@ "terminated by \\n."); } if ($whole =~ /\n([ \t]*\n)+$/) { - &perror("WARN: $file seems to have unnecessery blank lines ". + &perror("WARN: $file seems to have unnecessary blank lines ". "at the last part."); } @@ -1077,7 +1077,7 @@ "discouraged. distribution filename should be set by ". "DISTNAME and EXTRACT_SUFX."); if ($distfiles eq (($distname ne '') ? $distname : "$portname-$portversion") . $extractsufx) { - &perror("WARN: definition of DISTFILES not necessery. ". + &perror("WARN: definition of DISTFILES not necessary. ". "DISTFILES is \${DISTNAME}/\${EXTRACT_SUFX} ". "by default."); } @@ -1348,7 +1348,7 @@ print "OK: seen NO_WRKSUBDIR, checking value of WRKSRC.\n" if ($verbose); if ($wrksrc eq 'work' || $wrksrc =~ /^$[\{\(]WRKDIR[\}\)]/) { - &perror("WARN: definition of WRKSRC not necessery. ". + &perror("WARN: definition of WRKSRC not necessary. ". "WRKSRC is \${WRKDIR} by default."); } } @@ -1413,7 +1413,7 @@ "$i should be listed in ". "MAN\U$i\E, ". "even if compression is ". - "not necessery."); + "not necessary."); } } if ($mancompress && $plistman{$i}) { >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 12:10:16 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 12:10:11 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1896737B699 for ; Thu, 21 Dec 2000 12:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLKA2412114; Thu, 21 Dec 2000 12:10:02 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 12:10:02 -0800 (PST) Resent-Message-Id: <200012212010.eBLKA2412114@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, George Reid Received: from mta05-svc.ntlworld.com (mta05-svc.ntlworld.com [62.253.162.45]) by hub.freebsd.org (Postfix) with ESMTP id 3D66937B400 for ; Thu, 21 Dec 2000 12:04:24 -0800 (PST) Received: from sobek.openirc.co.uk ([62.252.13.149]) by mta05-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001221200423.PMGZ18404.mta05-svc.ntlworld.com@sobek.openirc.co.uk> for ; Thu, 21 Dec 2000 20:04:23 +0000 Message-Id: Date: Thu, 21 Dec 2000 20:08:01 +0000 (GMT) From: George Reid To: FreeBSD-gnats-submit@freebsd.org In-Reply-To: Subject: ports/23726: Re: [PATCH] sysutils/ffsrecov has unfetchable distfile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23726 >Category: ports >Synopsis: [PATCH] sysutils/ffsrecov has unfetchable distfile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 12:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD UKUG >Environment: n/a >Description: Port sysutils/ffsrecov has unfetchable distfile. >How-To-Repeat: Try to build :) >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/ffsrecov/Makefile,v retrieving revision 1.9 diff -r1.9 Makefile 11c11 < MASTER_SITES= http://www.funkthat.com/~jmg/ --- > MASTER_SITES= http://people.freebsd.org/~jmg/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 13:30: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 13:30:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9EF4137B404 for ; Thu, 21 Dec 2000 13:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLLU2K26126; Thu, 21 Dec 2000 13:30:02 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 13:30:02 -0800 (PST) Resent-Message-Id: <200012212130.eBLLU2K26126@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dburr@borg-cube.com Received: from borg-cube.com (226-193.adsl2.netlojix.net [207.71.226.193]) by hub.freebsd.org (Postfix) with ESMTP id 24A6C37B400 for ; Thu, 21 Dec 2000 13:24:48 -0800 (PST) Received: (from dburr@localhost) by borg-cube.com (8.11.0/8.11.0) id eBLLOl101138; Thu, 21 Dec 2000 13:24:47 -0800 (PST) (envelope-from dburr) Message-Id: <200012212124.eBLLOl101138@borg-cube.com> Date: Thu, 21 Dec 2000 13:24:47 -0800 (PST) From: Donald Burr Reply-To: dburr@borg-cube.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23727: Remove ports/misc/sma, as it is no longer supported Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23727 >Category: ports >Synopsis: Remove ports/misc/sma, as it is no longer supported >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 13:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Donald Burr >Release: FreeBSD 4.2-STABLE i386 >Organization: The Borg Cube - Resistance is Futile! http://www.borg-cube.com/ >Environment: FreeBSD, latest ports cvsup >Description: The Scour Media Service has been shut down, thanks to pressures from the Forces of Darkness and Evil (erm, i mean the RIAA and MPAA). Therefore this port is useless. >How-To-Repeat: >Fix: remove ports/misc/sma port >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 13:39: 3 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 13:39:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 030BD37B400; Thu, 21 Dec 2000 13:39:02 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLLd1k27397; Thu, 21 Dec 2000 13:39:01 -0800 (PST) (envelope-from ade) Date: Thu, 21 Dec 2000 13:39:01 -0800 (PST) From: Message-Id: <200012212139.eBLLd1k27397@freefall.freebsd.org> To: ishmael27@home.com, ade@FreeBSD.org, freebsd-ports@FreeBSD.org, ade@FreeBSD.org Subject: Re: ports/23716: Patch to make graphics/gdk-pixbuf optionally dependant upon GNOME Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Patch to make graphics/gdk-pixbuf optionally dependant upon GNOME State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Thu Dec 21 13:34:51 PST 2000 State-Changed-Why: As I already explained to you in private email, gdk-pixbuf is, right now, part of GNOME. It will disappear as an entity in its own right real soon now, being combined either into GTK 1.4/2.0 or a future release of (possibly) gnomelibs. Whilst it is possible to make this port not dependent on other GNOME libraries, doing so is likely to cause plenty of headaches that don't even come close to compensating for the non-GNOME "capability". Responsible-Changed-From-To: freebsd-ports->ade Responsible-Changed-By: ade Responsible-Changed-When: Thu Dec 21 13:34:51 PST 2000 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=23716 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 13:40:49 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 13:40:46 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id 799C437B400 for ; Thu, 21 Dec 2000 13:40:38 -0800 (PST) Received: from gate.dinoex.sub.org (dinoex@localhost) by net2.dinoex.sub.org (8.11.1/8.11.1) with BSMTP id eBLLe4D23119 for ; Thu, 21 Dec 2000 22:40:04 +0100 (CET) (envelope-from dirk.meyer@dinoex.sub.org) X-MDaemon-Deliver-To: To: freebsd-ports@FreeBSD.ORG Message-ID: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Organization: privat Subject: Re: ports/23589: update net/licq Date: Thu, 21 Dec 2000 22:35:23 +0100 X-Mailer: Dinoex 1.76 References: <20001221121450.A66233@nevermind.kiev.ua> <200012210917.eBL9HiT17412@freefall.freebsd.org> <20001221121450.A66233@nevermind.kiev.ua> <20001221051515.O319@argon.firepipe.net> X-Gateway: ZCONNECT gate.dinoex.sub.org [UNIX/Connect 0.90] X-Accept-Language: de,en X-PGP-Fingerprint: 44 16 EC 0A D3 3A 4F 28 8A 8A 47 93 F1 CF 2F 12 X-Noad: Please don't send me ad's by mail. I'm bored by this type of mail. X-Copyright: (C) Copyright 1999 by Dirk Meyer -- All rights reserved. X-Note: sending SPAM is a violation of both german and US law and will at least trigger a complaint at your provider's postmaster. X-PGP-Key-Avail: mailto:pgp-public-keys@keys.de.pgp.net Subject:GET 0x331CDA5D X-ZC-VIA: 20001221000000W+1@dinoex.sub.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Will Andrews wrote:, > > Is there any changes to previous upgrade and following downgrade to 0.85? > > There was some instability in licq-1.0. > > Brian did not upgrade to 1.0, but a newer version than that. You best > try it out and refer problems to him via send-pr. The instability vanished in my case after I rebuild world with "FreeBSD 4.2-STABLE #0: Mon Dec 18 23:24:54 CET 2000" kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany - Tel. +49-5606-6512 - Tel. +49-177-6923813 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 14:19:50 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 14:19:48 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from wildfire.wwwtek.com (unknown [64.69.79.193]) by hub.freebsd.org (Postfix) with ESMTP id 91A0337B400 for ; Thu, 21 Dec 2000 14:19:48 -0800 (PST) Received: (from root@localhost) by wildfire.wwwtek.com (8.9.3/8.9.3) id PAA22178 for ports@freebsd.org; Thu, 21 Dec 2000 15:22:21 -0500 Date: Thu, 21 Dec 2000 15:22:21 -0500 From: Rebecca@casinooffers.com Message-Id: <200012212022.PAA22178@wildfire.wwwtek.com> To: ports@freebsd.org Subject: RE: $110 Free - No deposit Required Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Get $110 for just opening an account! NO RISK !!!! http://www.luckynugget.com/index.asp?sourcesite=aff50065 NO RISK! Try it now, what have you got to lose? Want to try a Browser based casino? 10% or $30 whichever is greater: http://www.luckystreakcasino.com/?yourown Have a great Christmas! Rebecca xx This email was sent to: ports@freebsd.org To be removed from this mailing list, please visit http://64.69.79.20/members/remove.cgi and enter your email address (listed above) to be removed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 14:20:11 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 14:20:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6AC2837B400 for ; Thu, 21 Dec 2000 14:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLMK3033697; Thu, 21 Dec 2000 14:20:03 -0800 (PST) (envelope-from gnats) Date: Thu, 21 Dec 2000 14:20:03 -0800 (PST) Message-Id: <200012212220.eBLMK3033697@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "David W. Chapman Jr." Subject: Re: ports/23721: [PATCH] www/asp2php has unfetchable distfile Reply-To: "David W. Chapman Jr." Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23721; it has been noted by GNATS. From: "David W. Chapman Jr." To: "George Reid" , Cc: "Will Andrews" Subject: Re: ports/23721: [PATCH] www/asp2php has unfetchable distfile Date: Thu, 21 Dec 2000 16:16:58 -0600 the web site might have changed, but the place to download the tarballs is still the same. It is unreachable because the version you had is outdated, bu thas been fixed with a pr that got committed this morning by will this morning. ----- Original Message ----- From: "George Reid" To: Sent: Thursday, December 21, 2000 1:59 PM Subject: ports/23721: [PATCH] www/asp2php has unfetchable distfile > > >Number: 23721 > >Category: ports > >Synopsis: [PATCH] www/asp2php has unfetchable distfile > >Confidential: no > >Severity: non-critical > >Priority: low > >Responsible: freebsd-ports > >State: open > >Quarter: > >Keywords: > >Date-Required: > >Class: change-request > >Submitter-Id: current-users > >Arrival-Date: Thu Dec 21 12:00:01 PST 2000 > >Closed-Date: > >Last-Modified: > >Originator: George Reid > >Release: FreeBSD 5.0-CURRENT i386 > >Organization: > FreeBSD UKUG > >Environment: > n/a > >Description: > Port www/asp2php has unfetchable distfile. > >How-To-Repeat: > Try to build :) > >Fix: > Index: Makefile > =================================================================== > RCS file: /home/ncvs/ports/www/asp2php/Makefile,v > retrieving revision 1.4 > diff -r1.4 Makefile > 12c12 > < MASTER_SITES= http://home.i1.net/~naken/asp2php/ > --- > > MASTER_SITES= http://www.naken.cc/asp2php/ > > > >Release-Note: > >Audit-Trail: > >Unformatted: > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 14:20:24 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 14:20:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D669737B402 for ; Thu, 21 Dec 2000 14:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLMK1C33689; Thu, 21 Dec 2000 14:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 14:20:01 -0800 (PST) Resent-Message-Id: <200012212220.eBLMK1C33689@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, George Reid Received: from mta05-svc.ntlworld.com (mta05-svc.ntlworld.com [62.253.162.45]) by hub.freebsd.org (Postfix) with ESMTP id C615C37B402 for ; Thu, 21 Dec 2000 14:14:13 -0800 (PST) Received: from sobek.openirc.co.uk ([62.252.9.13]) by mta05-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001221221410.QOBO18404.mta05-svc.ntlworld.com@sobek.openirc.co.uk> for ; Thu, 21 Dec 2000 22:14:10 +0000 Message-Id: Date: Thu, 21 Dec 2000 22:17:50 +0000 (GMT) From: George Reid To: FreeBSD-gnats-submit@freebsd.org Subject: ports/23728: [PATCH] net/zephyr has unfetchable distfile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23728 >Category: ports >Synopsis: [PATCH] net/zephyr has unfetchable distfile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 14:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD UKUG >Environment: n/a >Description: Port net/zephyr has an unfetchable distfile. The included patch fixes the port, updating it to the latest (and final) version. Patches from the previous version are merged. >How-To-Repeat: Try to build :) >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/net/zephyr/Makefile,v retrieving revision 1.10 diff -r1.10 Makefile 9c9 < PORTVERSION= 2.0.4 --- > PORTVERSION= 20000421 11c11,12 < MASTER_SITES= ftp://athena-dist.mit.edu/pub/ATHENA/zephyr/dist/ --- > MASTER_SITES= ftp://athena-dist.mit.edu/pub/ATHENA/zephyr/ > DISTNAME= zephyr-20000421 14a16,17 > WRKSRC= ${WRKDIR}/zephyr > 23,24c26 < MAN8= syslogd.8 zpopnotify.8 zshutdown_notify.8 zstat.8 \ < zephyrd.8 zhm.8 --- > MAN8= zpopnotify.8 zshutdown_notify.8 zstat.8 zephyrd.8 zhm.8 Index: distinfo =================================================================== RCS file: /home/ncvs/ports/net/zephyr/distinfo,v retrieving revision 1.2 diff -r1.2 distinfo 1c1 < MD5 (zephyr-2.0.4.tar.gz) = 866c287c45da2fa353484297ad570cf4 --- > MD5 (zephyr-20000421.tar.gz) = 7b7c50ece90fbf294af82b8fec63c0f1 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/net/zephyr/pkg-plist,v retrieving revision 1.7 diff -r1.7 pkg-plist 6a7 > bin/zmailnotify 9d9 < bin/zwgc 11,56c11 < etc/rc.d/zhm.sh < etc/zephyr/acl/class-registry.acl < etc/zephyr/acl/iui-filsrv.acl < etc/zephyr/acl/iui-hm_ctl.acl < etc/zephyr/acl/iui-hm_stat.acl < etc/zephyr/acl/iui-login.acl < etc/zephyr/acl/iui-operations.acl < etc/zephyr/acl/iui-ops.acl < etc/zephyr/acl/iui-user_locate.acl < etc/zephyr/acl/iui-wg_ctl.acl < etc/zephyr/acl/iui-zephyr_admin.acl < etc/zephyr/acl/iui-zephyr_ctl.acl < etc/zephyr/acl/iui-zmatch_all.acl < etc/zephyr/acl/iws-filsrv.acl < etc/zephyr/acl/iws-hm_ctl.acl < etc/zephyr/acl/iws-hm_stat.acl < etc/zephyr/acl/iws-login.acl < etc/zephyr/acl/iws-operations.acl < etc/zephyr/acl/iws-ops.acl < etc/zephyr/acl/iws-user_locate.acl < etc/zephyr/acl/iws-wg_ctl.acl < etc/zephyr/acl/iws-zephyr_admin.acl < etc/zephyr/acl/iws-zephyr_ctl.acl < etc/zephyr/acl/iws-zmatch_all.acl < etc/zephyr/acl/sub-filsrv.acl < etc/zephyr/acl/sub-hm_ctl.acl < etc/zephyr/acl/sub-hm_stat.acl < etc/zephyr/acl/sub-login.acl < etc/zephyr/acl/sub-operations.acl < etc/zephyr/acl/sub-ops.acl < etc/zephyr/acl/sub-user_locate.acl < etc/zephyr/acl/sub-wg_ctl.acl < etc/zephyr/acl/sub-zephyr_admin.acl < etc/zephyr/acl/sub-zephyr_ctl.acl < etc/zephyr/acl/sub-zmatch_all.acl < etc/zephyr/acl/xmt-filsrv.acl < etc/zephyr/acl/xmt-hm_ctl.acl < etc/zephyr/acl/xmt-hm_stat.acl < etc/zephyr/acl/xmt-login.acl < etc/zephyr/acl/xmt-operations.acl < etc/zephyr/acl/xmt-ops.acl < etc/zephyr/acl/xmt-user_locate.acl < etc/zephyr/acl/xmt-wg_ctl.acl < etc/zephyr/acl/xmt-zephyr_admin.acl < etc/zephyr/acl/xmt-zephyr_ctl.acl < etc/zephyr/acl/xmt-zmatch_all.acl --- > bin/zwgc 58c13 < etc/zephyr/zephyr.vars --- > etc/rc.d/zhm.sh 63c18,19 < sbin/syslogd --- > sbin/zshutdown_notify > sbin/zpopnotify 66,68d21 < sbin/zmailnotify < sbin/zpopnotify < sbin/zshutdown_notify 78d30 < @dirrm etc/zephyr/acl Index: files/patch-aa =================================================================== RCS file: /home/ncvs/ports/net/zephyr/files/patch-aa,v retrieving revision 1.2 diff -r1.2 patch-aa 1,59c1,13 < *** configure.orig Wed Mar 3 20:37:09 1999 < --- configure Wed Mar 3 20:39:35 1999 < *************** < *** 44,50 **** < bindir='${exec_prefix}/bin' < sbindir='${exec_prefix}/sbin' < libexecdir='${exec_prefix}/libexec' < ! datadir='${prefix}/share' < sysconfdir='${prefix}/etc' < sharedstatedir='${prefix}/com' < localstatedir='${prefix}/var' < --- 44,50 ---- < bindir='${exec_prefix}/bin' < sbindir='${exec_prefix}/sbin' < libexecdir='${exec_prefix}/libexec' < ! datadir='${prefix}/share/zephyr' < sysconfdir='${prefix}/etc' < sharedstatedir='${prefix}/com' < localstatedir='${prefix}/var' < *************** < *** 547,563 **** < confdir=${confdir-'$(prefix)/etc/zephyr'} < sbindir=${sbindir-'$(exec_prefix)/sbin'} < lsbindir=${lsbindir-'$(exec_prefix)/sbin'} < ! SUPPORT_LIBS="et ss" < ! ET_LDFLAGS='-L$(BUILDTOP)/lib/et' < ! ETDEP='$(BUILDTOP)/lib/et/libcom_err.a' < ! SS_LDFLAGS='-L$(BUILDTOP)/lib/ss' < ! SSDEP='$(BUILDTOP)/lib/ss/libss.a' < ! COMPILE_ET='$(BUILDTOP)/lib/et/compile_et' < ! MK_CMDS='$(BUILDTOP)/lib/ss/mk_cmds' < INITPROGS=true < ! if test ! -d h/ss; then mkdir h/ss; fi < ! cp ${srcdir}/lib/et/com_err.h h < ! cp ${srcdir}/lib/ss/*.h h/ss < fi < < < --- 547,566 ---- < confdir=${confdir-'$(prefix)/etc/zephyr'} < sbindir=${sbindir-'$(exec_prefix)/sbin'} < lsbindir=${lsbindir-'$(exec_prefix)/sbin'} < ! # SUPPORT_LIBS="et ss" < ! # ET_LDFLAGS='-L$(BUILDTOP)/lib/et' < ! # ETDEP='$(BUILDTOP)/lib/et/libcom_err.a' < ! # SS_LDFLAGS='-L$(BUILDTOP)/lib/ss' < ! # SSDEP='$(BUILDTOP)/lib/ss/libss.a' < ! # COMPILE_ET='$(BUILDTOP)/lib/et/compile_et' < ! # MK_CMDS='$(BUILDTOP)/lib/ss/mk_cmds' < INITPROGS=true < ! # if test ! -d h/ss; then mkdir h/ss; fi < ! # cp ${srcdir}/lib/et/com_err.h h < ! # cp ${srcdir}/lib/ss/*.h h/ss < ! CPPFLAGS="${CPPFLAGS} -I/usr/include/kerberosIV" < ! COMPILE_ET=compile_et < ! MK_CMDS=mk_cmds < fi < < --- > --- clients/xzwrite/Makefile.in.orig Wed May 26 17:22:09 1999 > +++ clients/xzwrite/Makefile.in Thu Dec 21 21:57:19 2000 > @@ -50,8 +50,8 @@ > install: xzwrite XZwrite > ${INSTALL} -m 755 -s xzwrite ${DESTDIR}${bindir} > ${INSTALL} -m 644 ${srcdir}/xzwrite.1 ${DESTDIR}${mandir}/man1 > - ${INSTALL} -m 644 XZwrite ${DESTDIR}${datadir}/zephyr > - ${INSTALL} -m 644 ${srcdir}/xzwrite.bitmap ${DESTDIR}${datadir}/zephyr > + ${INSTALL} -m 644 XZwrite ${DESTDIR}${datadir} > + ${INSTALL} -m 644 ${srcdir}/xzwrite.bitmap ${DESTDIR}${datadir} > > clean: > rm -f ${OBJS} xzwrite Index: files/patch-ab =================================================================== RCS file: /home/ncvs/ports/net/zephyr/files/patch-ab,v retrieving revision 1.1 diff -r1.1 patch-ab 1,20c1,13 < --- clients/xzwrite/Makefile.in.orig Fri Jul 7 23:55:14 1995 < +++ clients/xzwrite/Makefile.in Wed Mar 3 19:29:01 1999 < @@ -17,6 +17,7 @@ < VPATH=@srcdir@ < CC=@CC@ < INSTALL=@INSTALL@ < +SED=/usr/bin/sed < < DEBUG=-O < CFLAGS=$(DEBUG) -DDATADIR=\"$(datadir)\" -I$(top_srcdir)/h -I$(BUILDTOP)/h \ < @@ -41,7 +42,8 @@ < install: xzwrite XZwrite < $(INSTALL) -m 755 -s xzwrite $(bindir) < $(INSTALL) -m 644 $(srcdir)/xzwrite.1 $(mandir)/man1 < - $(INSTALL) -m 644 XZwrite $(datadir) < + $(SED) -e 's#XX_PREFIX_XX#$(prefix)#' < XZwrite >XZwrite.tmp < + $(INSTALL) -m 644 XZwrite.tmp $(datadir)/XZwrite < $(INSTALL) -m 644 $(srcdir)/xzwrite.bitmap $(datadir) < < clean: --- > --- Makefile.in.orig Thu Jun 11 20:10:02 1998 > +++ Makefile.in Thu Dec 21 22:08:19 2000 > @@ -30,9 +30,8 @@ > ${ENSUREDIR} ${DESTDIR}${bindir} 755 > ${ENSUREDIR} ${DESTDIR}${libdir} 755 > ${ENSUREDIR} ${DESTDIR}${datadir} 755 > - ${ENSUREDIR} ${DESTDIR}${datadir}/zephyr 755 > ${ENSUREDIR} ${DESTDIR}${sysconfdir} 755 > - ${ENSUREDIR} ${DESTDIR}${sysconfdir}/zephyr/acl 755 > + ${ENSUREDIR} ${DESTDIR}${sysconfdir}/zephyr 755 > ${ENSUREDIR} ${DESTDIR}${sbindir} 755 > ${ENSUREDIR} ${DESTDIR}${includedir} 755 > ${ENSUREDIR} ${DESTDIR}${includedir}/zephyr 755 Index: files/patch-ac =================================================================== RCS file: /home/ncvs/ports/net/zephyr/files/patch-ac,v retrieving revision 1.1 diff -r1.1 patch-ac 1,11c1,11 < --- clients/xzwrite/XZwrite.in.orig Wed Mar 3 19:57:39 1999 < +++ clients/xzwrite/XZwrite.in Wed Mar 3 20:05:46 1999 < @@ -17,7 +17,7 @@ < *readAnyone: on < *readXzwrite: on < < -*icon.bitmap: @datadir@/xzwrite.bitmap < +*icon.bitmap: XX_PREFIX_XX/share/zephyr/xzwrite.bitmap < *icon.translations: #override\ < : set() \n\ < : OpenSend() unset() \n\ --- > --- configure.orig Fri Apr 21 22:30:15 2000 > +++ configure Thu Dec 21 20:19:25 2000 > @@ -50,7 +50,7 @@ > bindir='${exec_prefix}/bin' > sbindir='${exec_prefix}/sbin' > libexecdir='${exec_prefix}/libexec' > -datadir='${prefix}/share' > +datadir='${prefix}/share/zephyr' > sysconfdir='${prefix}/etc' > sharedstatedir='${prefix}/com' > localstatedir='${prefix}/var' Index: files/patch-ad =================================================================== RCS file: /home/ncvs/ports/net/zephyr/files/patch-ad,v retrieving revision 1.1 diff -r1.1 patch-ad 1,182c1,13 < $NetBSD: patch-aa,v 1.2 1998/08/07 11:11:07 agc Exp $ < < *** h/zephyr/zephyr.h.in.orig 1996/06/12 04:42:56 < --- h/zephyr/zephyr.h.in 1996/11/22 22:04:51 < *************** < *** 73,78 **** < /* Unique ID format */ < typedef struct _ZUnique_Id_t { < ! struct in_addr zuid_addr; < ! struct timeval tv; < } ZUnique_Id_t; < < --- 73,78 ---- < /* Unique ID format */ < typedef struct _ZUnique_Id_t { < ! struct in_addr zuid_addr; < ! ZEPHYR_INT32 zuid_sec, zuid_usec; < } ZUnique_Id_t; < < *** lib/zephyr/ZParseNot.c.orig 1995/07/18 20:28:07 < --- lib/zephyr/ZParseNot.c 1996/11/22 22:04:52 < *************** < *** 154,161 **** < if (numfields) { < if (ZReadAscii(ptr, end-ptr, (unsigned char *)¬ice->z_uid, < ! sizeof(ZUnique_Id_t)) == ZERR_BADFIELD) < BAD_PACKET; < ! notice->z_time.tv_sec = ntohl((u_long) notice->z_uid.tv.tv_sec); < ! notice->z_time.tv_usec = ntohl((u_long) notice->z_uid.tv.tv_usec); < numfields--; < next_field (ptr); < --- 154,161 ---- < if (numfields) { < if (ZReadAscii(ptr, end-ptr, (unsigned char *)¬ice->z_uid, < ! sizeof(notice->z_uid)) == ZERR_BADFIELD) < BAD_PACKET; < ! notice->z_time.tv_sec = ntohl((u_long) notice->z_uid.zuid_sec); < ! notice->z_time.tv_usec = ntohl((u_long) notice->z_uid.zuid_usec); < numfields--; < next_field (ptr); < *************** < *** 268,275 **** < if (numfields) { < if (ZReadAscii(ptr, end-ptr, (unsigned char *)¬ice->z_multiuid, < ! sizeof(ZUnique_Id_t)) == ZERR_BADFIELD) < BAD_PACKET; < ! notice->z_time.tv_sec = ntohl((u_long) notice->z_multiuid.tv.tv_sec); < ! notice->z_time.tv_usec = ntohl((u_long) notice->z_multiuid.tv.tv_usec); < numfields--; < next_field (ptr); < --- 268,275 ---- < if (numfields) { < if (ZReadAscii(ptr, end-ptr, (unsigned char *)¬ice->z_multiuid, < ! sizeof(notice->z_multiuid)) == ZERR_BADFIELD) < BAD_PACKET; < ! notice->z_time.tv_sec = ntohl((u_long) notice->z_multiuid.zuid_sec); < ! notice->z_time.tv_usec = ntohl((u_long) notice->z_multiuid.zuid_usec); < numfields--; < next_field (ptr); < *** lib/zephyr/Zinternal.c.orig 1995/07/18 20:28:17 < --- lib/zephyr/Zinternal.c 1996/11/22 22:04:52 < *************** < *** 609,612 **** < --- 609,613 ---- < static char version[BUFSIZ]; /* default init should be all \0 */ < struct sockaddr_in name; < + struct timeval tv; < int namelen = sizeof(name); < < *************** < *** 628,634 **** < notice->z_multinotice = ""; < < ! (void) gettimeofday(¬ice->z_uid.tv, (struct timezone *)0); < ! notice->z_uid.tv.tv_sec = htonl((u_long) notice->z_uid.tv.tv_sec); < ! notice->z_uid.tv.tv_usec = htonl((u_long) notice->z_uid.tv.tv_usec); < < if ((retval = Z_GetMyAddr()) != ZERR_NONE) < --- 629,635 ---- < notice->z_multinotice = ""; < < ! (void) gettimeofday(&tv, (struct timezone *)0); < ! notice->z_uid.zuid_sec = htonl((u_long) tv.tv_sec); < ! notice->z_uid.zuid_usec = htonl((u_long) tv.tv_usec); < < if ((retval = Z_GetMyAddr()) != ZERR_NONE) < *************** < *** 710,715 **** < ptr += strlen(ptr)+1; < < ! if (ZMakeAscii(ptr, end-ptr, (unsigned char *)¬ice->z_uid, < ! sizeof(ZUnique_Id_t)) == ZERR_FIELDLEN) < return (ZERR_HEADERLEN); < ptr += strlen(ptr)+1; < --- 711,716 ---- < ptr += strlen(ptr)+1; < < ! if (ZMakeAscii(ptr, end-ptr, (unsigned char *)¬ice->z_uid, < ! sizeof(notice->z_uid)) == ZERR_FIELDLEN) < return (ZERR_HEADERLEN); < ptr += strlen(ptr)+1; < *************** < *** 761,766 **** < return (ZERR_HEADERLEN); < < ! if (ZMakeAscii(ptr, end-ptr, (unsigned char *)¬ice->z_multiuid, < ! sizeof(ZUnique_Id_t)) == ZERR_FIELDLEN) < return (ZERR_HEADERLEN); < ptr += strlen(ptr)+1; < --- 762,767 ---- < return (ZERR_HEADERLEN); < < ! if (ZMakeAscii(ptr, end-ptr, (unsigned char *)¬ice->z_multiuid, < ! sizeof(notice->z_multiuid)) == ZERR_FIELDLEN) < return (ZERR_HEADERLEN); < ptr += strlen(ptr)+1; < *************** < *** 882,885 **** < --- 883,887 ---- < int offset, hdrsize, fragsize, ret_len, message_len, waitforack; < Code_t retval; < + struct timeval tv; < < hdrsize = len-notice->z_message_len; < *************** < *** 897,906 **** < partnotice.z_multinotice = multi; < if (offset > 0) { < ! (void) gettimeofday(&partnotice.z_uid.tv, < ! (struct timezone *)0); < ! partnotice.z_uid.tv.tv_sec = < ! htonl((u_long) partnotice.z_uid.tv.tv_sec); < ! partnotice.z_uid.tv.tv_usec = < ! htonl((u_long) partnotice.z_uid.tv.tv_usec); < if ((retval = Z_GetMyAddr()) != ZERR_NONE) < return (retval); < --- 899,905 ---- < partnotice.z_multinotice = multi; < if (offset > 0) { < ! (void) gettimeofday(&tv, (struct timezone *)0); < ! partnotice.z_uid.zuid_sec = htonl((u_long) tv.tv_sec); < ! partnotice.z_uid.zuid_usec = htonl((u_long) tv.tv_usec); < if ((retval = Z_GetMyAddr()) != ZERR_NONE) < return (retval); < *** server/dispatch.c.orig 1996/06/06 05:56:58 < --- server/dispatch.c 1996/11/22 22:04:52 < *************** < *** 828,834 **** < /* search the not-yet-acked table for this packet, and flush it. */ < #if 0 < ! zdbug((LOG_DEBUG, "nack_cancel: %s:%08X,%08X", < inet_ntoa(notice->z_uid.zuid_addr), < ! notice->z_uid.tv.tv_sec, notice->z_uid.tv.tv_usec)); < #endif < hashval = NACKTAB_HASHVAL(*who, notice->z_uid); < --- 828,835 ---- < /* search the not-yet-acked table for this packet, and flush it. */ < #if 0 < ! zdbug((LOG_DEBUG, "nack_cancel: %s:%08lX,%08lX", < inet_ntoa(notice->z_uid.zuid_addr), < ! (u_long) notice->z_uid.zuid_sec, < ! (u_long) notice->z_uid.zuid_usec)); < #endif < hashval = NACKTAB_HASHVAL(*who, notice->z_uid); < *************** < *** 846,852 **** < < #if 1 < ! zdbug((LOG_DEBUG,"nack_cancel: nack not found %s:%08X,%08X", < inet_ntoa (notice->z_uid.zuid_addr), < ! notice->z_uid.tv.tv_sec, notice->z_uid.tv.tv_usec)); < #endif < } < --- 847,854 ---- < < #if 1 < ! zdbug((LOG_DEBUG,"nack_cancel: nack not found %s:%08lX,%08lX", < inet_ntoa (notice->z_uid.zuid_addr), < ! (u_long) notice->z_uid.zuid_sec, < ! (u_long) notice->z_uid.zuid_usec)); < #endif < } --- > --- h/zephyr/zephyr.h.orig Fri Jan 22 23:18:59 1999 > +++ h/zephyr/zephyr.h Thu Dec 21 20:25:44 2000 > @@ -64,8 +64,8 @@ > > /* Unique ID format */ > typedef struct _ZUnique_Id_t { > - struct in_addr zuid_addr; > - struct timeval tv; > + struct in_addr zuid_addr; > + ZEPHYR_INT32 zuid_sec, zuid_usec; > } ZUnique_Id_t; > > /* Checksum */ Index: files/patch-ae =================================================================== RCS file: /home/ncvs/ports/net/zephyr/files/patch-ae,v retrieving revision 1.1 diff -r1.1 patch-ae 1,8c1,8 < --- lib/zephyr/Makefile.in.orig Sun Sep 19 17:17:01 1999 < +++ lib/zephyr/Makefile.in Sun Sep 19 17:17:21 1999 < @@ -21,7 +21,7 @@ < < DEBUG=-O < CFLAGS= $(DEBUG) -DCONFDIR=\"$(confdir)\" -I$(top_srcdir)/h -I$(BUILDTOP)/h \ < - @X_CFLAGS@ @CPPFLAGS@ < + -I$(top_srcdir)/h/zephyr @X_CFLAGS@ @CPPFLAGS@ --- > --- lib/Makefile.in.orig Sat Jan 31 23:55:07 1998 > +++ lib/Makefile.in Thu Dec 21 20:36:28 2000 > @@ -22,7 +22,7 @@ > CPPFLAGS=@CPPFLAGS@ > CFLAGS=@CFLAGS@ > ALL_CFLAGS=${CFLAGS} -DSYSCONFDIR=\"${sysconfdir}\" -I${top_srcdir}/h \ > - -I${BUILDTOP}/h ${CPPFLAGS} > + -I ${BUILDTOP}/h/zephyr -I${BUILDTOP}/h ${CPPFLAGS} >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 14:30: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 14:30:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AB5E37B400 for ; Thu, 21 Dec 2000 14:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLMU3A34736; Thu, 21 Dec 2000 14:30:03 -0800 (PST) (envelope-from gnats) Date: Thu, 21 Dec 2000 14:30:03 -0800 (PST) Message-Id: <200012212230.eBLMU3A34736@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: George Reid Subject: Re: ports/23721: [PATCH] www/asp2php has unfetchable distfile Reply-To: George Reid Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23721; it has been noted by GNATS. From: George Reid To: "David W. Chapman Jr." Cc: FreeBSD-gnats-submit@freebsd.org, Will Andrews Subject: Re: ports/23721: [PATCH] www/asp2php has unfetchable distfile Date: Thu, 21 Dec 2000 22:25:57 +0000 (GMT) On Thu, 21 Dec 2000, David W. Chapman Jr. wrote: > the web site might have changed, but the place to download the tarballs is > still the same. It is unreachable because the version you had is outdated, > bu thas been fixed with a pr that got committed this morning by will this > morning. OK, not a problem :) I haven't CVSupped today (v. slow connection so it's done when I'm asleep) but I saw the entry in the weekly ports list so I took a quick look. G "And then it comes to be that the soothing light at the end of your tunnel was just a freight train, comin' your way." George Reid * greid@ukug.uk.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 14:35:37 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 14:35:34 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mercure.IRO.UMontreal.CA (mercure.IRO.UMontreal.CA [132.204.24.67]) by hub.freebsd.org (Postfix) with ESMTP id 411E337B402 for ; Thu, 21 Dec 2000 14:35:34 -0800 (PST) Received: from localhost.anarcat.yi.org (IDENT:beaupran@phobos.IRO.UMontreal.CA [132.204.20.20]) by mercure.IRO.UMontreal.CA (8.11.1/8.11.1) with ESMTP id eBLMZO027240 for ; Thu, 21 Dec 2000 17:35:26 -0500 Full-Name: Antoine Beaupre Date: Thu, 21 Dec 2000 17:35:04 -0500 Message-ID: <87r931bdyf.wl@localhost.anarcat.yi.org> From: Anarcat To: freebsd-ports@freebsd.org Subject: Porting ecasound suite to FreeBSD User-Agent: Wanderlust/1.1.1 (Purple Rain) WEMI/1.13.7 (Shimada) FLIM/1.13.2 (Kasanui) MULE XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd) Organization: Nada, Inc MIME-Version: 1.0 (generated by WEMI 1.13.7 - "Shimada") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello! [Please CC: I'm not on the list] [I should have posted here 3 months ago.] I am in the process of porting the ecasound sound processing suite (www.ecasound.org) to FreeBSD (here is 4.2-STABLE). It's really seems to be a fine product, and runs on Linux, for now. :) Ecasound is a command-line tool and a library that is the basis for a few other packages. There is QtEcasound (a Qt GUI) and ecawave (a wave editor that uses QtEcasound libs). For the rest of the hype about ecasound, see the webpage. :) That said, it's very nice and I want it on FreeBSD. :) I have "successfully" ported ecasound-1.8.5d15. The quotes are because there are some things that are _really_ wrong. I get all sorts of warnings when linking the library itself. Ok. Let's go. First, there is the eternal pthread nightmare. I had to patch the configure scripts to make them use '-pthread' and add '-D_THREAD_SAFE' to compilation. Second, I can't find mlockall() on FreeBSD. It's declared in /usr/include/sys/mmap.h (AFAIR). It's supposed to be POSIX.1b. Grepping through /usr/src, I found it in the kernel and some kernel modules, but never in a lib. Anyways: c++ -O2 -D_REENTRANT -DNDEBUG -ffast-math -fstrict-aliasing -funroll-loops -pthread -o ecasound eca-text.o textdebug.o -lncurses -L../libecasound/.libs -lecasound -L../kvutils/.libs -lkvutils -lhistory -lreadline -lc_r -lm ../libecasound/.libs/libecasound.so: warning: tmpnam() possibly used unsafely; consider using mkstemp() /usr/lib/libc.so.4: WARNING! setkey(3) not present in the system! /usr/lib/libc.so.4: warning: this program uses gets(), which is unsafe. /usr/lib/libc.so.4: warning: mktemp() possibly used unsafely; consider using mkstemp() /usr/lib/libc.so.4: WARNING! des_setkey(3) not present in the system! /usr/lib/libc.so.4: WARNING! encrypt(3) not present in the system! /usr/lib/libc.so.4: warning: this program uses f_prealloc(), which is stupid. /usr/lib/libc.so.4: WARNING! des_cipher(3) not present in the system! /usr/lib/libc.so.4: warning: tempnam() possibly used unsafely; consider using mkstemp() ../libecasound/.libs/libecasound.so: undefined reference to `mlockall' So I had to add a "AC_CHECK_FUNCS(mlockall)" and a #ifdef around the call to fix this. (I took this from the mysqld port). Ok. Let's come back on these "libc" warnings. I don't get it. setkey(3) *is* present on my system. It's a plain 4.2-STABLE install, for Knuth's sake! There is not a single occurence of mktemp() or f_prealloc() in ecasound's source!! There is, however, an occurence of gets() in ecasound's readline lib. But I disabled it! For tmpnam(), it *is* used in the code. However, mkstemp() *cannot* be used since tmpnam() is used to generate a name for a *fifo*. mkstemp() creates a file. What do I do with this mess? Anyways, I was able to compile the program, the libs, and all the stuff... That is, I installed the libs in /usr/local/lib and did a ldconfig to refresh that. After that, I tried to compile qtecasound. And there comes the weird part: c++ -lecasound -lkvutils -pthread test.c -o test does not link, but c++ -L/usr/local/lib -lecasound -lkvutils -pthread test.c -o test does. That is, in the first, I get something like: /usr/libexec/elf/ld: cannot find -lecasound But it's there: $ ldconfig -r | grep ecasound 232:-lecasound.7 => /usr/local/lib/libecasound.so.7 254:-lecasoundc.0 => /usr/local/lib/libecasoundc.so.0 $ Yukl. Weird. So that's all i can do for now... Have a nice day! A. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 14:35:57 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 14:35:54 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mercure.IRO.UMontreal.CA (mercure.IRO.UMontreal.CA [132.204.24.67]) by hub.freebsd.org (Postfix) with ESMTP id C9B7B37B402 for ; Thu, 21 Dec 2000 14:35:53 -0800 (PST) Received: from localhost.anarcat.yi.org (IDENT:beaupran@phobos.IRO.UMontreal.CA [132.204.20.20]) by mercure.IRO.UMontreal.CA (8.11.1/8.11.1) with ESMTP id eBLMZi027273 for ; Thu, 21 Dec 2000 17:35:46 -0500 Full-Name: Antoine Beaupre Date: Thu, 21 Dec 2000 17:36:01 -0500 Message-ID: <87puilbdwu.wl@localhost.anarcat.yi.org> From: Anarcat To: freebsd-ports@freebsd.org Subject: Porting ecasound suite to FreeBSD User-Agent: Wanderlust/1.1.1 (Purple Rain) WEMI/1.13.7 (Shimada) FLIM/1.13.2 (Kasanui) MULE XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd) Organization: Nada, Inc MIME-Version: 1.0 (generated by WEMI 1.13.7 - "Shimada") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello! [Please CC: I'm not on the list] [I should have posted here 3 months ago.] I am in the process of porting the ecasound sound processing suite (www.ecasound.org) to FreeBSD (here is 4.2-STABLE). It's really seems to be a fine product, and runs on Linux, for now. :) Ecasound is a command-line tool and a library that is the basis for a few other packages. There is QtEcasound (a Qt GUI) and ecawave (a wave editor that uses QtEcasound libs). For the rest of the hype about ecasound, see the webpage. :) That said, it's very nice and I want it on FreeBSD. :) I have "successfully" ported ecasound-1.8.5d15. The quotes are because there are some things that are _really_ wrong. I get all sorts of warnings when linking the library itself. Ok. Let's go. First, there is the eternal pthread nightmare. I had to patch the configure scripts to make them use '-pthread' and add '-D_THREAD_SAFE' to compilation. Second, I can't find mlockall() on FreeBSD. It's declared in /usr/include/sys/mmap.h (AFAIR). It's supposed to be POSIX.1b. Grepping through /usr/src, I found it in the kernel and some kernel modules, but never in a lib. Anyways: c++ -O2 -D_REENTRANT -DNDEBUG -ffast-math -fstrict-aliasing -funroll-loops -pthread -o ecasound eca-text.o textdebug.o -lncurses -L../libecasound/.libs -lecasound -L../kvutils/.libs -lkvutils -lhistory -lreadline -lc_r -lm ../libecasound/.libs/libecasound.so: warning: tmpnam() possibly used unsafely; consider using mkstemp() /usr/lib/libc.so.4: WARNING! setkey(3) not present in the system! /usr/lib/libc.so.4: warning: this program uses gets(), which is unsafe. /usr/lib/libc.so.4: warning: mktemp() possibly used unsafely; consider using mkstemp() /usr/lib/libc.so.4: WARNING! des_setkey(3) not present in the system! /usr/lib/libc.so.4: WARNING! encrypt(3) not present in the system! /usr/lib/libc.so.4: warning: this program uses f_prealloc(), which is stupid. /usr/lib/libc.so.4: WARNING! des_cipher(3) not present in the system! /usr/lib/libc.so.4: warning: tempnam() possibly used unsafely; consider using mkstemp() ../libecasound/.libs/libecasound.so: undefined reference to `mlockall' So I had to add a "AC_CHECK_FUNCS(mlockall)" and a #ifdef around the call to fix this. (I took this from the mysqld port). Ok. Let's come back on these "libc" warnings. I don't get it. setkey(3) *is* present on my system. It's a plain 4.2-STABLE install, for Knuth's sake! There is not a single occurence of mktemp() or f_prealloc() in ecasound's source!! There is, however, an occurence of gets() in ecasound's readline lib. But I disabled it! For tmpnam(), it *is* used in the code. However, mkstemp() *cannot* be used since tmpnam() is used to generate a name for a *fifo*. mkstemp() creates a file. What do I do with this mess? Anyways, I was able to compile the program, the libs, and all the stuff... That is, I installed the libs in /usr/local/lib and did a ldconfig to refresh that. After that, I tried to compile qtecasound. And there comes the weird part: c++ -lecasound -lkvutils -pthread test.c -o test does not link, but c++ -L/usr/local/lib -lecasound -lkvutils -pthread test.c -o test does. That is, in the first, I get something like: /usr/libexec/elf/ld: cannot find -lecasound But it's there: $ ldconfig -r | grep ecasound 232:-lecasound.7 => /usr/local/lib/libecasound.so.7 254:-lecasoundc.0 => /usr/local/lib/libecasoundc.so.0 $ Yukl. Weird. So that's all i can do for now... Have a nice day! A. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 14:41: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 14:41:07 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from babylon.merseine.nu (c418236-a.clmba1.mo.home.com [24.12.203.134]) by hub.freebsd.org (Postfix) with ESMTP id 8C87637B400; Thu, 21 Dec 2000 14:41:06 -0800 (PST) Received: (from ishmael@localhost) by babylon.merseine.nu (8.11.1/8.11.1) id eBLMgIT27714; Thu, 21 Dec 2000 16:42:18 -0600 (CST) (envelope-from ishmael) Date: Thu, 21 Dec 2000 16:42:18 -0600 From: Jeremy Norris To: ade@FreeBSD.org Cc: ports@FreeBSD.org Subject: Re: ports/23716: Patch to make graphics/gdk-pixbuf optionally dependant upon GNOME Message-ID: <20001221164218.A10712@babylon.merseine.nu> References: <200012212139.eBLLd1k27397@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200012212139.eBLLd1k27397@freefall.freebsd.org>; from ade@FreeBSD.org on Thu, Dec 21, 2000 at 01:39:01PM -0800 Sender: ishmael@babylon.merseine.nu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I object to this. While gdk-pixbuf is developed by the GNOME folks, and used frequenlty in GNOMEish apps, the library itself does not require a GNOME library, only GTK+. There are several apps in the port tree now that can utilize gdk-pixbuf without GNOME, so its not as if nothing would take advantage of a GNOMEless version (xchat and gnapster both come to the top of my mind). I would also point out that NetBSD saw fit enough to split into GNOME vs. non-GNOME in their pkgsrc. As I understand the situation, gdk-pixbuf is a replacement for Imlib, a library that GNOME is built upon, and will also be an integrated part of GTK+ 1.4/2.0 (thus forcing GNOME to be installed to utilize it is like forcing GNOME to be installed to utilize Imlib). Also, I'm unsure what the headaches you forsee are. Were not the USE_GNOME, HAVE_GNOME, WITH_GNOME make directives committed to eliminate headaches (and deal with situations like this)? A person would have a hard time messing up dependancies and causing themselves problems, since one must now currently define WITHOUT_GNOME to prevent any optionally dependant port from building GNOME. My final point is, that not all people out there like and/or utilize the GNOME crap, and I think our ports collection should be flexible enough to please everybody, not just the GNOME majority. Jeremy On Thu, Dec 21, 2000 at 01:39:01PM -0800, ade@FreeBSD.org wrote: > Synopsis: Patch to make graphics/gdk-pixbuf optionally dependant upon GNOME > > State-Changed-From-To: open->closed > State-Changed-By: ade > State-Changed-When: Thu Dec 21 13:34:51 PST 2000 > State-Changed-Why: > As I already explained to you in private email, gdk-pixbuf is, right > now, part of GNOME. It will disappear as an entity in its own right > real soon now, being combined either into GTK 1.4/2.0 or a future > release of (possibly) gnomelibs. > > Whilst it is possible to make this port not dependent on other > GNOME libraries, doing so is likely to cause plenty of headaches > that don't even come close to compensating for the non-GNOME > "capability". > > > Responsible-Changed-From-To: freebsd-ports->ade > Responsible-Changed-By: ade > Responsible-Changed-When: Thu Dec 21 13:34:51 PST 2000 > Responsible-Changed-Why: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=23716 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 14:50: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 14:50:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F46937B400 for ; Thu, 21 Dec 2000 14:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLMo2936414; Thu, 21 Dec 2000 14:50:02 -0800 (PST) (envelope-from gnats) Date: Thu, 21 Dec 2000 14:50:02 -0800 (PST) Message-Id: <200012212250.eBLMo2936414@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "David W. Chapman Jr." Subject: Re: ports/23680: Update mail/cyrus update for portlint compliance Reply-To: "David W. Chapman Jr." Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23680; it has been noted by GNATS. From: "David W. Chapman Jr." To: Cc: Subject: Re: ports/23680: Update mail/cyrus update for portlint compliance Date: Thu, 21 Dec 2000 16:50:50 -0600 This should patch against what is currently in the tree after pr 22465 was committed begin 644 cyrus.patch M+2TM($UA:V5F:6QE+F]R:6<)5&AU($1E8R`R,2`Q-CHT-3HR.2`R,#`P"BLK M*R!-86ME9FEL90E4:'4@1&5C(#(Q(#$V.C0W.C4Q(#(P,#`*0$`@+3$T+#$V M("LQ-"PQ-B!`0`H@"B!-04E.5$%)3D52/0EP;W)T7)U7)U7)U7)UU!2149)6'T@7`H@ M"0DM+7=I=&@M=&-LU!2149)6'TO971C+VEM87`O;7-G"B`)"21[5$]5 M0TA]("1[4%)%1DE8?2]E=&,O:6UA<"]M86EL8F]X97,*(`D))'M#2$U/1'T@ M-C0P("1[4%)%1DE8?2]E=&,O:6UA<"]M86EL8F]X97,*+0D)8VAO=VX@8WER M=7,Z8WER=7,@)'M04D5&25A]+V5T8R]I;6%P+VUA:6QB;WAET5#2$]](")`97AE8R!M:V1IV1I&5C("1[ M34M$25)]("5$+V5T8R]I;6%P+R1[9&ER?2(@/CXD>U1-4%!,25-4?0H@"0E` M)'M%0TA/?2`B0&1IU1-4%!,25-4 M?0H@+F5N9&9O<@HM"0E`)'M%0TA/?2`B0&5X96,@8W`@+V1E=B]N=6QL("5$ M+V5T8R]I;6%P+VUA:6QB;WAEU1-4%!,25-4?0HM"0E`)'M%0TA/ M?2`B0&5X96,@8VAO=VX@+5(@8WER=7,Z8WER=7,@)40O971C+VEM87`B(#X^ M)'M435!03$E35'T*+0D)0"1[14-(3WT@(D!E>&5C(&-H;6]D("U2(&U1-4%!,25-4?0HK"0E`)'M%0TA/?2`B0&5X M96,@)'M#4'T@+V1E=B]N=6QL("5$+V5T8R]I;6%P+VUA:6QB;WAEU1-4%!,25-4?0HK"0E`)'M%0TA/?2`B0&5X96,@)'M#2$]73GT@+5(@8WER M=7,Z8WER=7,@)40O971C+VEM87`B(#X^)'M435!03$E35'T**PD)0"1[14-( M3WT@(D!E>&5C("1[0TA-3T1]("U2(&U1-4%!,25-4?0H@"0E`)'M%0TA/?2`B0&UO9&4@=3UR=W@L9V\](B`^/B1[ M5$U04$Q)4U1]"BT)"4`D>T5#2$]](")`97AE8R!M:V1I&5C(&-H;W=N M(&-YU1-4%!,25-4?0HM M"0E`)'M%0TA/?2`B0&5X96,@8VAM;V0@9RUW+&\]("]V87(OU1-4%!,25-4?0HK"0E`)'M%0TA/?2`B0&5X96,@)'M-2T1)4GT@ M+W9AT5#2$]](")` M97AE8R`D>T-(3U=.?2!C>7)U7)U&5C("1[0TA-3T1](&U1-4%!,25-4?0H@"0E`)'M%0TA/?2`B0&1I Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 687DB37B400; Thu, 21 Dec 2000 14:56:46 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLMuko37028; Thu, 21 Dec 2000 14:56:46 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 14:56:46 -0800 (PST) From: Message-Id: <200012212256.eBLMuko37028@freefall.freebsd.org> To: greid@dogma.freebsd-uk.eu.org, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23721: [PATCH] www/asp2php has unfetchable distfile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] www/asp2php has unfetchable distfile State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Thu Dec 21 14:56:05 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23721 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 15: 0: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 15:00:04 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 41DB637B402 for ; Thu, 21 Dec 2000 15:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLN04A37317; Thu, 21 Dec 2000 15:00:04 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 15:00:04 -0800 (PST) Resent-Message-Id: <200012212300.eBLN04A37317@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, George Reid Received: from mta02-svc.ntlworld.com (mta02-svc.ntlworld.com [62.253.162.42]) by hub.freebsd.org (Postfix) with ESMTP id 9A50137B400 for ; Thu, 21 Dec 2000 14:55:56 -0800 (PST) Received: from sobek.openirc.co.uk ([62.252.9.13]) by mta02-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001221225554.UZGU23225.mta02-svc.ntlworld.com@sobek.openirc.co.uk> for ; Thu, 21 Dec 2000 22:55:54 +0000 Message-Id: Date: Thu, 21 Dec 2000 22:59:35 +0000 (GMT) From: George Reid To: FreeBSD-gnats-submit@freebsd.org Subject: ports/23729: [PATCH] emulators/bochs has unfetchable distfile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23729 >Category: ports >Synopsis: [PATCH] emulators/bochs has unfetchable distfile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 15:00:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD UKUG >Environment: n/a >Description: Port emulators/bochs has an unfetchable distfile. >How-To-Repeat: Try to build :) >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/emulators/bochs/Makefile,v retrieving revision 1.31 diff -r1.31 Makefile 12c12 < MASTER_SITES= ftp://ftp.bochs.com/pub/ --- > MASTER_SITES= ftp://ftp.bochs.com/bochs/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 15:12:47 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 15:12:46 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from hub.lovett.com (hub.lovett.com [216.60.121.161]) by hub.freebsd.org (Postfix) with ESMTP id 29D0837B400 for ; Thu, 21 Dec 2000 15:12:46 -0800 (PST) Received: from ade by hub.lovett.com with local (Exim 3.16 #1) id 149Esz-0000Ai-00; Thu, 21 Dec 2000 17:12:33 -0600 Date: Thu, 21 Dec 2000 17:12:33 -0600 From: Ade Lovett To: Jeremy Norris Cc: ports@FreeBSD.org Subject: Re: ports/23716: Patch to make graphics/gdk-pixbuf optionally dependant upon GNOME Message-ID: <20001221171233.B352@FreeBSD.org> Reply-To: devnull@lovett.com References: <200012212139.eBLLd1k27397@freefall.freebsd.org> <20001221164218.A10712@babylon.merseine.nu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001221164218.A10712@babylon.merseine.nu>; from ishmael27@home.com on Thu, Dec 21, 2000 at 04:42:18PM -0600 Sender: ade@lovett.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Dec 21, 2000 at 04:42:18PM -0600, Jeremy Norris wrote: > I object to this. 1. Objection noted - now go (re)read what the MAINTAINER variable in a port means. 2. The port remains as it stands (for the reasons I have given before). 3. I'm not going to get into an(other) argument with you over this - my 2 year old wants to build Lego[tm] towers. That sounds like more fun. Reply-To set accordingly. Good day. -aDe -- Ade Lovett, Austin, TX. ade@FreeBSD.org FreeBSD: The Power to Serve http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 15:18:16 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 15:18:15 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 72C2737B400; Thu, 21 Dec 2000 15:18:15 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLNIFu41110; Thu, 21 Dec 2000 15:18:15 -0800 (PST) (envelope-from will) Date: Thu, 21 Dec 2000 15:18:15 -0800 (PST) From: Message-Id: <200012212318.eBLNIFu41110@freefall.freebsd.org> To: dwcjr@inethouston.net, will@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23680: Update mail/cyrus update for portlint compliance Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update mail/cyrus update for portlint compliance State-Changed-From-To: open->closed State-Changed-By: will State-Changed-When: Thu Dec 21 15:16:08 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23680 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 15:40: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 15:40:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F30BC37B404 for ; Thu, 21 Dec 2000 15:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLNe1k43488; Thu, 21 Dec 2000 15:40:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 15:40:01 -0800 (PST) Resent-Message-Id: <200012212340.eBLNe1k43488@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, George Reid Received: from mta01-svc.ntlworld.com (mta01-svc.ntlworld.com [62.253.162.41]) by hub.freebsd.org (Postfix) with ESMTP id 802D537B400 for ; Thu, 21 Dec 2000 15:32:54 -0800 (PST) Received: from sobek.openirc.co.uk ([62.252.9.13]) by mta01-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001221233252.DPVS6427.mta01-svc.ntlworld.com@sobek.openirc.co.uk> for ; Thu, 21 Dec 2000 23:32:52 +0000 Message-Id: Date: Thu, 21 Dec 2000 23:36:32 +0000 (GMT) From: George Reid To: FreeBSD-gnats-submit@freebsd.org Subject: ports/23730: [PATCH] benchmarks/postmark has unfetchable distfile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23730 >Category: ports >Synopsis: [PATCH] benchmarks/postmark has unfetchable distfile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 15:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD UKUG >Environment: n/a >Description: Port benchmarks/postmark has an unfetchable distfile. Patch updates to version 1.13. >How-To-Repeat: Try to build :) >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/benchmarks/postmark/Makefile,v retrieving revision 1.6 diff -r1.6 Makefile 10c10 < PORTVERSION= 1.11 --- > PORTVERSION= 1.13 13a14 > DISTNAME= postmark-1_13 Index: distinfo =================================================================== RCS file: /home/ncvs/ports/benchmarks/postmark/distinfo,v retrieving revision 1.2 diff -r1.2 distinfo 1c1 < MD5 (postmark-1.11.c) = ded89dc97961bd35837f00a38f7e71df --- > MD5 (postmark-1_13.c) = d6a208f56b140669da4cc11ef8501cdc >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 15:50: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 15:50:00 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C9AB937B402 for ; Thu, 21 Dec 2000 15:50:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBLNo0744668; Thu, 21 Dec 2000 15:50:00 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 15:50:00 -0800 (PST) Resent-Message-Id: <200012212350.eBLNo0744668@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, George Reid Received: from mta01-svc.ntlworld.com (mta01-svc.ntlworld.com [62.253.162.41]) by hub.freebsd.org (Postfix) with ESMTP id 3D99A37B400 for ; Thu, 21 Dec 2000 15:48:24 -0800 (PST) Received: from sobek.openirc.co.uk ([62.252.9.13]) by mta01-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001221234822.DTAL6427.mta01-svc.ntlworld.com@sobek.openirc.co.uk> for ; Thu, 21 Dec 2000 23:48:22 +0000 Message-Id: Date: Thu, 21 Dec 2000 23:52:03 +0000 (GMT) From: George Reid To: FreeBSD-gnats-submit@freebsd.org Subject: ports/23731: [PATCH] devel/bin86 has unfetchable distfile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23731 >Category: ports >Synopsis: [PATCH] devel/bin86 has unfetchable distfile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 15:50:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD UKUG >Environment: n/a >Description: Port devel/bin86 has an unfetchable distfile. Patch updates to version 0.15.4 >How-To-Repeat: Try to build :) >Fix: Index: Makefile =================================================================== RCS file: /usr/home/ncvs/ports/devel/bin86/Makefile,v retrieving revision 1.1 diff -r1.1 Makefile 9c9 < PORTVERSION= 0.15.3 --- > PORTVERSION= 0.15.4 Index: distinfo =================================================================== RCS file: /usr/home/ncvs/ports/devel/bin86/distinfo,v retrieving revision 1.1 diff -r1.1 distinfo 1c1 < MD5 (bin86-0.15.3.tar.gz) = 37338c39b6461f5c7fd745ef9c88484f --- > MD5 (bin86-0.15.4.tar.gz) = 8ac305eeb5cb0cb6ce90e7e30f7c11f0 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 16: 0: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 16:00:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7102D37B402 for ; Thu, 21 Dec 2000 16:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM001V46002; Thu, 21 Dec 2000 16:00:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 16:00:01 -0800 (PST) Resent-Message-Id: <200012220000.eBM001V46002@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, George Reid Received: from mta01-svc.ntlworld.com (mta01-svc.ntlworld.com [62.253.162.41]) by hub.freebsd.org (Postfix) with ESMTP id 6BB4F37B400 for ; Thu, 21 Dec 2000 15:58:04 -0800 (PST) Received: from sobek.openirc.co.uk ([62.252.12.131]) by mta01-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001221235803.DUYC6427.mta01-svc.ntlworld.com@sobek.openirc.co.uk> for ; Thu, 21 Dec 2000 23:58:03 +0000 Message-Id: Date: Fri, 22 Dec 2000 00:01:44 +0000 (GMT) From: George Reid To: FreeBSD-gnats-submit@Freebsd.org Subject: ports/23732: [PATCH] devel/cs has unfetchable distfile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23732 >Category: ports >Synopsis: [PATCH] devel/cs has unfetchable distfile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 16:00:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD UKUG >Environment: n/a >Description: Port devel/cs has an unfetchable distfile. >How-To-Repeat: Try to build :) >Fix: Index: Makefile =================================================================== RCS file: /usr/home/ncvs/ports/devel/cs/Makefile,v retrieving revision 1.8 diff -r1.8 Makefile 11c11 < MASTER_SITES= ftp://cantor.informatik.rwth-aachen.de/pub/unix/ --- > MASTER_SITES= http://www.moria.de/~michael/cs/ Index: distinfo =================================================================== RCS file: /usr/home/ncvs/ports/devel/cs/distinfo,v retrieving revision 1.2 diff -r1.2 distinfo 1c1 < MD5 (cs-0.5.tar.gz) = 61f8ea27a169e86e3e5e6eda4585e688 --- > MD5 (cs-0.5.tar.gz) = 3cd38e56f0b7b14f3cd60ec2fcb60e51 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 16:20: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 16:20:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8D40B37B402 for ; Thu, 21 Dec 2000 16:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM0K1850001; Thu, 21 Dec 2000 16:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 16:20:01 -0800 (PST) Resent-Message-Id: <200012220020.eBM0K1850001@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, George Reid Received: from mta01-svc.ntlworld.com (mta01-svc.ntlworld.com [62.253.162.41]) by hub.freebsd.org (Postfix) with ESMTP id 588E837B402 for ; Thu, 21 Dec 2000 16:15:08 -0800 (PST) Received: from sobek.openirc.co.uk ([62.252.12.131]) by mta01-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001222001506.DYFB6427.mta01-svc.ntlworld.com@sobek.openirc.co.uk> for ; Fri, 22 Dec 2000 00:15:06 +0000 Message-Id: Date: Fri, 22 Dec 2000 00:18:48 +0000 (GMT) From: George Reid To: FreeBSD-gnats-submit@freebsd.org Subject: ports/23733: [PATCH] devel/doxygen has unfetchable distfile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23733 >Category: ports >Synopsis: [PATCH] devel/doxygen has unfetchable distfile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 16:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD UKUG >Environment: n/a >Description: Port devel/doxygen has an unfetchable distfile. Patch included updates port to version 1.2.3. >How-To-Repeat: Try to build :) >Fix: Index: Makefile =================================================================== RCS file: /usr/home/ncvs/ports/devel/doxygen/Makefile,v retrieving revision 1.6 diff -r1.6 Makefile 9c9 < PORTVERSION= 1.1.0 --- > PORTVERSION= 1.2.3 Index: distinfo =================================================================== RCS file: /usr/home/ncvs/ports/devel/doxygen/distinfo,v retrieving revision 1.2 diff -r1.2 distinfo 1c1 < MD5 (doxygen-1.1.0.src.tar.gz) = 721c198ae814917c273da18f291ded31 --- > MD5 (doxygen-1.2.3.src.tar.gz) = 2031a86a4629c31468052f23c42e86a4 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 16:50: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 16:50:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E92037B402 for ; Thu, 21 Dec 2000 16:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM0o1V53375; Thu, 21 Dec 2000 16:50:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 16:50:01 -0800 (PST) Resent-Message-Id: <200012220050.eBM0o1V53375@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, George Reid Received: from mta01-svc.ntlworld.com (mta01-svc.ntlworld.com [62.253.162.41]) by hub.freebsd.org (Postfix) with ESMTP id 1620237B404 for ; Thu, 21 Dec 2000 16:47:30 -0800 (PST) Received: from sobek.openirc.co.uk ([62.252.12.131]) by mta01-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001222004728.EDOS6427.mta01-svc.ntlworld.com@sobek.openirc.co.uk> for ; Fri, 22 Dec 2000 00:47:28 +0000 Message-Id: Date: Fri, 22 Dec 2000 00:51:09 +0000 (GMT) From: George Reid To: FreeBSD-gnats-submit@freebsd.org Subject: ports/23734: [PATCH] emulators/bfe has unfetchable distfile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23734 >Category: ports >Synopsis: [PATCH] emulators/bfe has unfetchable distfile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 16:50:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD UKUG >Environment: n/a >Description: Port emulators/bfe has an unfetchable distfile. Patch included updates port to version 7jul2000. This PR/patch obsoletes ports/21351. >How-To-Repeat: Try to build :) >Fix: Index: Makefile =================================================================== RCS file: /usr/home/ncvs/ports/emulators/bfe/Makefile,v retrieving revision 1.2 diff -r1.2 Makefile 9c9 < PORTVERSION= 991102 --- > PORTVERSION= 7jul2000 Index: distinfo =================================================================== RCS file: /usr/home/ncvs/ports/emulators/bfe/distinfo,v retrieving revision 1.1.1.1 diff -r1.1.1.1 distinfo 1c1 < MD5 (bfe-991102.tgz) = c4650d6509045558933d86d4982e497a --- > MD5 (bfe-7jul2000.tgz) = 4e0fbfd0ea7de95c2ad92085e3f135b3 Index: files/patch-aa =================================================================== RCS file: /usr/home/ncvs/ports/emulators/bfe/files/patch-aa,v retrieving revision 1.1.1.1 diff -r1.1.1.1 patch-aa 1,2c1,2 < --- Makefile.orig Tue Oct 26 16:56:41 1999 < +++ Makefile Wed Feb 2 15:00:38 2000 --- > --- Makefile.orig Wed Nov 24 07:51:13 1999 > +++ Makefile Fri Dec 22 00:47:52 2000 7,10c7,10 < -LIBS = -L/usr/X11/lib -L/usr/local/lib -lX11 -lforms -lm < -INCS = -I/usr/X11R6/include < +LIBS = -L${X11BASE}/lib -L${PREFIX}/lib -lX11 -lxforms -lm < +INCS = -I${X11BASE}/include --- > -LIBS = -L/usr/X11R6/lib -L/usr/local/lib -lX11 -lforms -lm > -INCS = -I/usr/X11R6/include -I/usr/X11R6/include/X11 > +LIBS = -L${X11BASE}/lib -L${PREFIX}/lib -lX11 -lforms -lm > +INCS = -I${X11BASE}/include -I{X11BASE}/include/X11 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 17: 0: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 17:00:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E394237B402 for ; Thu, 21 Dec 2000 17:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM101V54679; Thu, 21 Dec 2000 17:00:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 17:00:01 -0800 (PST) Resent-Message-Id: <200012220100.eBM101V54679@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, George Reid Received: from mta01-svc.ntlworld.com (mta01-svc.ntlworld.com [62.253.162.41]) by hub.freebsd.org (Postfix) with ESMTP id C3B0C37B400 for ; Thu, 21 Dec 2000 16:55:14 -0800 (PST) Received: from sobek.openirc.co.uk ([62.252.12.131]) by mta01-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001222005513.EEVK6427.mta01-svc.ntlworld.com@sobek.openirc.co.uk> for ; Fri, 22 Dec 2000 00:55:13 +0000 Message-Id: Date: Fri, 22 Dec 2000 00:58:54 +0000 (GMT) From: George Reid To: FreeBSD-gnats-submit@freebsd.org Subject: ports/23735: [PATCH] emulators/dlx has unfetchable distfile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23735 >Category: ports >Synopsis: [PATCH] emulators/dlx has unfetchable distfile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 17:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD UKUG >Environment: n/a >Description: Port emulators/dlx has an unfetchable distfile. >How-To-Repeat: Try to build :) >Fix: Index: Makefile =================================================================== RCS file: /usr/home/ncvs/ports/emulators/dlx/Makefile,v retrieving revision 1.9 diff -r1.9 Makefile 12c12 < MASTER_SITES= ftp://max.stanford.edu/pub/hennessy-patterson.software/ --- > MASTER_SITES= ftp://max.stanford.edu/pub/max/pub/hennessy-patterson.software/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 17:10:11 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 17:10:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0F84F37B402 for ; Thu, 21 Dec 2000 17:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM1A1P57794; Thu, 21 Dec 2000 17:10:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 17:10:01 -0800 (PST) Resent-Message-Id: <200012220110.eBM1A1P57794@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 2070F37B400 for ; Thu, 21 Dec 2000 17:00:12 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 1001) id AF159177E8F; Thu, 21 Dec 2000 19:01:37 -0600 (CST) Message-Id: <20001222010137.AF159177E8F@leviathan.inethouston.com> Date: Thu, 21 Dec 2000 19:01:37 -0600 (CST) From: dwcjr@inethouston.net Sender: poseiden@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23736: Update irc/infobot Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23736 >Category: ports >Synopsis: Update irc/infobot >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 17:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Update to version 0.44.5 Update checksum Update pkg-plist(major changes) but used automated pkg-plist creator to do the job Add prior directory to master_site so file isn't unfetchable after its outdated >How-To-Repeat: >Fix: diff -urN infobot.orig/Makefile infobot/Makefile --- infobot.orig/Makefile Thu Dec 21 17:41:31 2000 +++ infobot/Makefile Thu Dec 21 18:04:05 2000 @@ -6,9 +6,11 @@ # PORTNAME= infobot -PORTVERSION= 0.44.3 +PORTVERSION= 0.44.5 CATEGORIES= irc -MASTER_SITES= http://www.infobot.org/src/ +MASTER_SITES= http://www.infobot.org/src/ \ + http://www.infobot.org/src/prior/ + DISTNAME= ${PORTNAME}${PORTVERSION} MAINTAINER= perlguy@perlguy.com diff -urN infobot.orig/distinfo infobot/distinfo --- infobot.orig/distinfo Thu Dec 21 17:41:31 2000 +++ infobot/distinfo Thu Dec 21 18:04:12 2000 @@ -1 +1 @@ -MD5 (infobot0.44.3.tar.gz) = 258f5e85a524679e93a2752c8f94e606 +MD5 (infobot0.44.5.tar.gz) = 2f555454c88dc16feb9c24f9e2de4e65 diff -urN infobot.orig/pkg-plist infobot/pkg-plist --- infobot.orig/pkg-plist Thu Dec 21 17:41:31 2000 +++ infobot/pkg-plist Thu Dec 21 18:49:27 2000 @@ -1,84 +1,79 @@ -share/infobot-%%VERSION%%/IMPORTANT:_read_REVISIONS_and_infobot.html -share/infobot-%%VERSION%%/README -share/infobot-%%VERSION%%/REVISIONS -share/infobot-%%VERSION%%/doc/infobot_guide.html -share/infobot-%%VERSION%%/doc/how_to_fix_files_uploaded_from_windows_to_unix.txt -share/infobot-%%VERSION%%/factpacks/rfc_index.fact -share/infobot-%%VERSION%%/factpacks/country_net_codes.fact -share/infobot-%%VERSION%%/factpacks/old_test_meanings.fact -share/infobot-%%VERSION%%/factpacks/peri_abb_and_num.fact -share/infobot-%%VERSION%%/factpacks/rx_codes.fact -share/infobot-%%VERSION%%/factpacks/areacodes.txt -share/infobot-%%VERSION%%/factpacks/airport.txt -share/infobot-%%VERSION%%/factpacks/html.txt -share/infobot-%%VERSION%%/factpacks/techdict.txt -share/infobot-%%VERSION%%/factpacks/security.fact -share/infobot-%%VERSION%%/factpacks/ports.fact +share/infobot-%%VERSION%%/files/sane-is.txt +share/infobot-%%VERSION%%/files/infobot-is.txt +share/infobot-%%VERSION%%/files/infobot.channels share/infobot-%%VERSION%%/files/infobot.config -share/infobot-%%VERSION%%/files/sane-are.txt +share/infobot-%%VERSION%%/files/infobot.config-dist share/infobot-%%VERSION%%/files/infobot.crontab -share/infobot-%%VERSION%%/files/infobot-are.txt -share/infobot-%%VERSION%%/files/infobot-is.txt share/infobot-%%VERSION%%/files/infobot.help share/infobot-%%VERSION%%/files/infobot.users -share/infobot-%%VERSION%%/files/sane-is.txt -share/infobot-%%VERSION%%/files/sane-ignore.txt +share/infobot-%%VERSION%%/files/infobot.users-dist share/infobot-%%VERSION%%/files/magic8.txt -share/infobot-%%VERSION%%/infobot -share/infobot-%%VERSION%%/scripts/unupdate_dbs -share/infobot-%%VERSION%%/scripts/run_if_needed.pl -share/infobot-%%VERSION%%/scripts/README.scripts -share/infobot-%%VERSION%%/scripts/makepasswd -share/infobot-%%VERSION%%/scripts/track2fact.pl +share/infobot-%%VERSION%%/files/sane-are.txt +share/infobot-%%VERSION%%/files/sane-ignore.txt +share/infobot-%%VERSION%%/files/infobot-are.txt share/infobot-%%VERSION%%/scripts/update_db -share/infobot-%%VERSION%%/scripts/get_stuff.pl share/infobot-%%VERSION%%/scripts/curl share/infobot-%%VERSION%%/scripts/dump_db -share/infobot-%%VERSION%%/src/Question.pl +share/infobot-%%VERSION%%/scripts/flock-test +share/infobot-%%VERSION%%/scripts/get_entries_from_log +share/infobot-%%VERSION%%/scripts/make_password +share/infobot-%%VERSION%%/scripts/make_snap +share/infobot-%%VERSION%%/scripts/restore_snap +share/infobot-%%VERSION%%/scripts/run_if_needed.pl +share/infobot-%%VERSION%%/scripts/track2fact +share/infobot-%%VERSION%%/scripts/unupdate_dbs +share/infobot-%%VERSION%%/scripts/README.scripts +share/infobot-%%VERSION%%/src/stockquote.pl +share/infobot-%%VERSION%%/src/ANSI.pl +share/infobot-%%VERSION%%/src/Channel.pl +share/infobot-%%VERSION%%/src/CTCP.pl +share/infobot-%%VERSION%%/src/Extras.pl +share/infobot-%%VERSION%%/src/DBM.pl share/infobot-%%VERSION%%/src/DNS.pl -share/infobot-%%VERSION%%/src/Help.pl -share/infobot-%%VERSION%%/src/Reply.pl -share/infobot-%%VERSION%%/src/Setup.pl share/infobot-%%VERSION%%/src/Internic.pl -share/infobot-%%VERSION%%/src/Statement.pl +share/infobot-%%VERSION%%/src/Help.pl +share/infobot-%%VERSION%%/src/IrcExtras.pl share/infobot-%%VERSION%%/src/Irc.pl +share/infobot-%%VERSION%%/src/IrcHooks.pl +share/infobot-%%VERSION%%/src/Math.pl share/infobot-%%VERSION%%/src/Misc.pl -share/infobot-%%VERSION%%/src/DBM.pl +share/infobot-%%VERSION%%/src/NOAA.pl share/infobot-%%VERSION%%/src/Norm.pl share/infobot-%%VERSION%%/src/Params.pl -share/infobot-%%VERSION%%/src/User.pl -share/infobot-%%VERSION%%/src/Update.pl -share/infobot-%%VERSION%%/src/IrcExtras.pl -share/infobot-%%VERSION%%/src/ANSI.pl share/infobot-%%VERSION%%/src/Process.pl -share/infobot-%%VERSION%%/src/myRoutines.pl -share/infobot-%%VERSION%%/src/Traceroute.pl -share/infobot-%%VERSION%%/src/CTCP.pl -share/infobot-%%VERSION%%/src/IrcHooks.pl -share/infobot-%%VERSION%%/src/Math.pl -share/infobot-%%VERSION%%/src/nickometer.pl +share/infobot-%%VERSION%%/src/Question.pl +share/infobot-%%VERSION%%/src/RDF.pl +share/infobot-%%VERSION%%/src/Reply.pl share/infobot-%%VERSION%%/src/Search.pl -share/infobot-%%VERSION%%/src/NOAA.pl -share/infobot-%%VERSION%%/src/insult.pl -share/infobot-%%VERSION%%/src/Speller.pl -share/infobot-%%VERSION%%/src/METAR2.pl -share/infobot-%%VERSION%%/src/babel.pl +share/infobot-%%VERSION%%/src/Setup.pl share/infobot-%%VERSION%%/src/Slashdot3.pl +share/infobot-%%VERSION%%/src/Speller.pl +share/infobot-%%VERSION%%/src/Update.pl +share/infobot-%%VERSION%%/src/Statement.pl +share/infobot-%%VERSION%%/src/Traceroute.pl +share/infobot-%%VERSION%%/src/User.pl +share/infobot-%%VERSION%%/src/Util.pm share/infobot-%%VERSION%%/src/W3Search.pl -share/infobot-%%VERSION%%/src/Zephyr/Zephyr.pl -share/infobot-%%VERSION%%/src/Zephyr/ZephyrExtras.pl -share/infobot-%%VERSION%%/src/Zephyr/ZephyrHooks.pl -share/infobot-%%VERSION%%/src/Zephyr/Zephyr_README -share/infobot-%%VERSION%%/src/RDF.pl -share/infobot-%%VERSION%%/src/purldoc.pl share/infobot-%%VERSION%%/src/Zippy.pl +share/infobot-%%VERSION%%/src/babel.pl share/infobot-%%VERSION%%/src/exchange.pl share/infobot-%%VERSION%%/src/excuse.pl -share/infobot-%%VERSION%%/src/Extras.pl -@dirrm share/infobot-%%VERSION%%/doc -@dirrm share/infobot-%%VERSION%%/factpacks +share/infobot-%%VERSION%%/src/insult.pl +share/infobot-%%VERSION%%/src/module-template +share/infobot-%%VERSION%%/src/myRoutines.pl +share/infobot-%%VERSION%%/src/nickometer.pl +share/infobot-%%VERSION%%/src/purldoc.pl +share/infobot-%%VERSION%%/src/Aviation.pl +share/infobot-%%VERSION%%/doc/how_to_fix_files_uploaded_from_windows_to_unix.txt +share/infobot-%%VERSION%%/doc/infobot_guide.html +share/infobot-%%VERSION%%/doc/intro.bit +share/infobot-%%VERSION%%/doc/makemanual.pl +share/infobot-%%VERSION%%/infobot +share/infobot-%%VERSION%%/REVISIONS +share/infobot-%%VERSION%%/README +share/infobot-%%VERSION%%/LICENSE @dirrm share/infobot-%%VERSION%%/files @dirrm share/infobot-%%VERSION%%/scripts -@dirrm share/infobot-%%VERSION%%/src/Zephyr @dirrm share/infobot-%%VERSION%%/src -@dirrm share/infobot-%%VERSION%%/ +@dirrm share/infobot-%%VERSION%%/doc +@dirrm share/infobot-%%VERSION%% >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 17:20: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 17:20:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6504437B402 for ; Thu, 21 Dec 2000 17:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM1K1S58868; Thu, 21 Dec 2000 17:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 17:20:01 -0800 (PST) Resent-Message-Id: <200012220120.eBM1K1S58868@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dmaddox@sc.rr.com Received: from mail5.sc.rr.com (fe5.southeast.rr.com [24.93.67.52]) by hub.freebsd.org (Postfix) with ESMTP id C42BF37B404 for ; Thu, 21 Dec 2000 17:10:12 -0800 (PST) Received: from sc.rr.com ([24.88.102.101]) by mail5.sc.rr.com with Microsoft SMTPSVC(5.5.1877.537.53); Thu, 21 Dec 2000 20:10:11 -0500 Received: (from dmaddox@localhost) by sc.rr.com (8.11.1/8.11.1) id eBM1AQg83557; Thu, 21 Dec 2000 20:10:26 -0500 (EST) (envelope-from dmaddox) Message-Id: <200012220110.eBM1AQg83557@sc.rr.com> Date: Thu, 21 Dec 2000 20:10:26 -0500 (EST) From: dmaddox@sc.rr.com Reply-To: dmaddox@sc.rr.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23737: cclient-maildir removed, but not from ports/mail/Makefile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23737 >Category: ports >Synopsis: cclient-maildir needs to be removed from mail/Makefile >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 17:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Donald J. Maddox >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD cae88-102-101.sc.rr.com 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Mon Dec 18 16:19:01 EST 2000 dmaddox@cae88-102-101.sc.rr.com:/usr/src/sys/compile/RHIANNON i386 >Description: The cclient-maildir port has been retired, but it was not removed from ports/mail/Makefile. This causes build failures. >How-To-Repeat: # cd /usr/ports/mail # make or, alternatively: # cd /usr/ports # make readmes >Fix: --- Makefile.orig Tue Dec 19 16:41:26 2000 +++ Makefile Thu Dec 21 19:59:13 2000 @@ -11,7 +11,6 @@ SUBDIR += bsmtp SUBDIR += bulk_mailer SUBDIR += cclient - SUBDIR += cclient-maildir SUBDIR += cmail SUBDIR += coolmail SUBDIR += courier-imap >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 17:20:16 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 17:20:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7ED6E37B404 for ; Thu, 21 Dec 2000 17:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM1K1t58877; Thu, 21 Dec 2000 17:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 17:20:01 -0800 (PST) Resent-Message-Id: <200012220120.eBM1K1t58877@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 42F0137B400 for ; Thu, 21 Dec 2000 17:12:30 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 0) id ED53B177E40; Thu, 21 Dec 2000 19:13:55 -0600 (CST) Message-Id: <20001222011355.ED53B177E40@leviathan.inethouston.com> Date: Thu, 21 Dec 2000 19:13:55 -0600 (CST) From: dwcjr@inethouston.net Sender: root@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23738: Update x11-toolkits/gtkada Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23738 >Category: ports >Synopsis: Update x11-toolkits/gtkada >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 17:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Correct man page entry in Makefile Add mirror site to Makefile Add missing files to pkg-plist >How-To-Repeat: >Fix: diff -urN gtkada.orig/Makefile gtkada/Makefile --- gtkada.orig/Makefile Thu Dec 21 19:06:31 2000 +++ gtkada/Makefile Thu Dec 21 19:11:11 2000 @@ -8,7 +8,8 @@ PORTNAME= gtkada PORTVERSION= 1.2.10 CATEGORIES= x11-toolkits -MASTER_SITES= http://gtkada.eu.org/ +MASTER_SITES= http://gtkada.eu.org/ \ + http://www.adapower.com/gtkada/ DISTNAME= GtkAda-${PORTVERSION} MAINTAINER= sam@inf.enst.fr @@ -22,7 +23,7 @@ USE_GNOMELIBS= yes USE_GMAKE= yes INSTALLS_SHLIB= yes -MAN_MAN1= dgate.1 gate.1 gtkada-config.1 +MAN1= dgate.1 gate.1 gtkada-config.1 post-install: ${INSTALL_DATA} ${WRKSRC}/docs/*.1 ${PREFIX}/man/man1/ diff -urN gtkada.orig/pkg-plist gtkada/pkg-plist --- gtkada.orig/pkg-plist Thu Dec 21 19:06:31 2000 +++ gtkada/pkg-plist Thu Dec 21 19:09:44 2000 @@ -6,11 +6,14 @@ bin/gtkada-config bin/gate lib/libgtkada.a +lib/libgtkada.so lib/libgtkada-1.2.so.10 lib/libgtkada_gl.a lib/libgtkada_gl-1.2.so.10 lib/libgtkada_art.a +lib/libgtkada_art.so lib/libgtkada_art-1.2.so.10 +lib/libgtkada_gl.so include/gtkada/glib-enums.ads include/gtkada/glib-xml.adb include/gtkada/glib-gslist.adb >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 17:20:18 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 17:20:08 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D17BF37B400 for ; Thu, 21 Dec 2000 17:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM1K1h58888; Thu, 21 Dec 2000 17:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 17:20:01 -0800 (PST) Resent-Message-Id: <200012220120.eBM1K1h58888@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, George Reid Received: from mta05-svc.ntlworld.com (mta05-svc.ntlworld.com [62.253.162.45]) by hub.freebsd.org (Postfix) with ESMTP id D7FBE37B402 for ; Thu, 21 Dec 2000 17:15:33 -0800 (PST) Received: from sobek.openirc.co.uk ([62.252.12.131]) by mta05-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001222011532.RXCN18404.mta05-svc.ntlworld.com@sobek.openirc.co.uk> for ; Fri, 22 Dec 2000 01:15:32 +0000 Message-Id: Date: Fri, 22 Dec 2000 01:19:13 +0000 (GMT) From: George Reid To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/23739: [PATCH] irc/tircproxy has unfetchable distfile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23739 >Category: ports >Synopsis: [PATCH] irc/tircproxy has unfetchable distfile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 17:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD UKUG >Environment: n/a >Description: Port irc/tircproxy has an unfetchable distfile. Patch updates port to version 0.4.5. >How-To-Repeat: Try to build :) >Fix: Index: Makefile =================================================================== RCS file: /usr/home/ncvs/ports/irc/tircproxy/Makefile,v retrieving revision 1.3 diff -r1.3 Makefile 9c9 < PORTVERSION= 0.4.3 --- > PORTVERSION= 0.4.5 Index: distinfo =================================================================== RCS file: /usr/home/ncvs/ports/irc/tircproxy/distinfo,v retrieving revision 1.1.1.1 diff -r1.1.1.1 distinfo 1c1 < MD5 (tircproxy-0.4.3.tar.gz) = 94f508ed95cefc3e3d841c9c52b59e58 --- > MD5 (tircproxy-0.4.5.tar.gz) = 63ccc8626c3fdcee32c29464d0d716e9 Index: files/patch-aa =================================================================== RCS file: /usr/home/ncvs/ports/irc/tircproxy/files/patch-aa,v retrieving revision 1.1.1.1 diff -r1.1.1.1 patch-aa 1,3c1,3 < --- tircproxy.h.orig Wed Aug 11 15:40:04 1999 < +++ tircproxy.h Wed Aug 11 15:43:06 1999 < @@ -25,8 +25,8 @@ --- > --- tircproxy.h.orig Fri Dec 22 01:13:40 2000 > +++ tircproxy.h Fri Dec 22 01:15:39 2000 > @@ -34,8 +34,8 @@ 14c14 < @@ -34,7 +34,7 @@ --- > @@ -43,7 +43,7 @@ 23c23 < @@ -97,10 +97,10 @@ --- > @@ -117,11 +117,11 @@ 26c26 < ** be correct (so go get oidentd-1.4+cdir !!). --- > ** be correct. This method is now obsolete - use UDB if at all possible! 28,30c28,32 < #define CDIR "/var/oidentd/" < #define CDIR_IDENT "ident" < #define CDIR_MAP "user" --- > + > #define CDIR "/var/oidentd/" > #define CDIR_IDENT "ident" > #define CDIR_MAP "user" > - 33d34 < 34a36 > ** to be handled transparently by the DCC code.. if replace points to Index: files/patch-ab =================================================================== RCS file: /usr/home/ncvs/ports/irc/tircproxy/files/patch-ab,v retrieving revision 1.1.1.1 diff -r1.1.1.1 patch-ab 1,2c1,2 < --- Makefile.in.orig Wed Aug 11 16:48:33 1999 < +++ Makefile.in Wed Aug 11 16:48:49 1999 --- > --- Makefile.in.orig Fri Dec 22 01:16:03 2000 > +++ Makefile.in Fri Dec 22 01:16:28 2000 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 18:20: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 18:20:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D34BF37B402 for ; Thu, 21 Dec 2000 18:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM2K1q67416; Thu, 21 Dec 2000 18:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 18:20:01 -0800 (PST) Resent-Message-Id: <200012220220.eBM2K1q67416@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, hollywar@holywar.net Received: from alamis.holywar.net (alamis.holywar.net [211.232.152.20]) by hub.freebsd.org (Postfix) with ESMTP id DB77837B400 for ; Thu, 21 Dec 2000 18:13:48 -0800 (PST) Received: (from hollywar@localhost) by alamis.holywar.net (8.11.1/8.11.1) id eBM2DjL14342; Fri, 22 Dec 2000 11:13:45 +0900 (KST) (envelope-from hollywar) Message-Id: <200012220213.eBM2DjL14342@alamis.holywar.net> Date: Fri, 22 Dec 2000 11:13:45 +0900 (KST) From: hollywar@holywar.net Sender: hollywar@alamis.holywar.net Reply-To: hollywar@holywar.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23741: Update www/mod_fastcgi version to 2.2.10 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23741 >Category: ports >Synopsis: Update www/mod_fastcgi version to 2.2.10 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 18:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: JunSeon Oh >Release: FreeBSD 4.2-STABLE i386 >Organization: holynet >Environment: >Description: version update to 2.2.10 >How-To-Repeat: >Fix: please change to VERSION»to 2.2.10. and below is MD5 checksum MD5 (mod_fastcgi_2.2.10.tar.gz) = f23ab9ca5099b87d5c494ddc61c92c5a thanks. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 18:36:25 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 18:36:24 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mta08.onebox.com (mta08.onebox.com [216.35.104.108]) by hub.freebsd.org (Postfix) with ESMTP id CD16F37B400 for ; Thu, 21 Dec 2000 18:36:23 -0800 (PST) Received: from onebox.com ([216.33.158.154]) by mta08.onebox.com (InterMail vM.4.01.03.00 201-229-121) with SMTP id <20001222023623.BDIB9335.mta08.onebox.com@onebox.com> for ; Thu, 21 Dec 2000 18:36:23 -0800 Received: from [211.91.226.242] by onebox.com with HTTP; Thu, 21 Dec 2000 18:36:23 -0800 Date: Thu, 21 Dec 2000 18:36:23 -0800 Subject: How to build Postfix with OpenLDAP 2.x support? From: "Herbert Chang" To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Message-Id: <20001222023623.BDIB9335.mta08.onebox.com@onebox.com> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org For Postfix can use an LDAP directory as a source for any of its lookups: aliases, virtual, canonical, etc. I build Ports/Postfix-Current With this command: make -D WITH_LDAP all But it only support OpenLDAP 1.2.11 How to update the scripts that can support OpenLDAP 2.x? Herbert __________________________________________________ FREE voicemail, email, and fax...all in one place. Sign Up Now! http://www.onebox.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 19:36:29 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 19:36:28 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from toptk.com (tp085010.seeder.net [202.43.85.10]) by hub.freebsd.org (Postfix) with ESMTP id 0756937B400 for ; Thu, 21 Dec 2000 19:36:27 -0800 (PST) Received: from toptk.com (tc070195.seeder.net [202.43.70.195] (may be forged)) by toptk.com (8.9.3/8.9.3) with ESMTP id LAA06374; Fri, 22 Dec 2000 11:28:18 +0800 Sender: kevlo@toptk.com Message-ID: <3A42CB36.5B09458D@toptk.com> Date: Fri, 22 Dec 2000 11:32:06 +0800 From: Kevin Lo X-Mailer: Mozilla 4.76C-CCK-MCD tw [zh_TW] (X11; U; FreeBSD 4.2-20001214-STABLE i386) X-Accept-Language: zh-TW MIME-Version: 1.0 To: Will Andrews Cc: Rahul Siddharthan , Vivek Khera , ports@FreeBSD.org Subject: Re: logout on KDE 2 (patch works) References: <20001217121846.G9911@lpt.ens.fr> <14910.14406.446631.597891@onceler.kciLink.com> <20001218172118.W58195@lpt.ens.fr> <14910.18231.843820.401196@onceler.kciLink.com> <20001221173531.A42893@lpt.ens.fr> <20001221144502.F328@argon.firepipe.net> Content-Type: text/plain; charset=big5 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Will Andrews wrote: > On Thu, Dec 21, 2000 at 05:35:31PM +0100, Rahul Siddharthan wrote: > > thing... Otherwise, kde2 looks good and has been completely stable > > and trouble-free so far. > > Excellent. > > > The patch is for kdelibs-2.0.1/kdecore/kapp.cpp, and is here: > > http://www.lpt.ens.fr/~rsidd/kapp.diff > > Kevin, did you pounce on this patch yet? Applied, thanks. > -- > wca - Kevin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 19:40:11 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 19:40:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C37E37B402 for ; Thu, 21 Dec 2000 19:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM3e2f78339; Thu, 21 Dec 2000 19:40:02 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 19:40:02 -0800 (PST) Resent-Message-Id: <200012220340.eBM3e2f78339@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, kunishi@c.oka-pu.ac.jp Received: from psi.c.oka-pu.ac.jp (psi.c.oka-pu.ac.jp [163.225.213.86]) by hub.freebsd.org (Postfix) with ESMTP id B925A37B400 for ; Thu, 21 Dec 2000 19:37:22 -0800 (PST) Received: from localhost by psi.c.oka-pu.ac.jp (8.9.3+3.2W/3.7W:psi:2000041317) id MAA60613; Fri, 22 Dec 2000 12:36:53 +0900 (JST) (envelope-from kunishi@c.oka-pu.ac.jp) Message-Id: <20001222123731W.kunishi@aquamarine.c.oka-pu.ac.jp> Date: Fri, 22 Dec 2000 12:37:31 +0900 From: kunishi@c.oka-pu.ac.jp Reply-To: kunishi@c.oka-pu.ac.jp To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/23743: textproc/xerces: upgrade to 1.2.3 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23743 >Category: ports >Synopsis: textproc/xerces: upgrade to 1.2.3 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 19:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KUNISHIMA Takeo >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: FreeBSD libretto.chorusroom.org 4.2-STABLE FreeBSD 4.2-STABLE #0: Thu Dec 14 16:08:17 JST 2000 root@libretto.chorusroom.org:/usr/obj/usr/src/sys/LIBFF i386 >Description: Xerces-J upgrade to 1.2.3. Also includes some fixes for installing sample Java codes. >How-To-Repeat: >Fix: Here is the patch: Index: xerces/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/xerces/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- xerces/Makefile 2000/08/31 11:23:31 1.1 +++ xerces/Makefile 2000/12/22 03:00:27 @@ -6,7 +6,7 @@ # PORTNAME= xerces -PORTVERSION= 1.1.3 +PORTVERSION= 1.2.3 CATEGORIES= textproc MASTER_SITES= http://xml.apache.org/dist/xerces-j/ DISTNAME= Xerces-J-bin.${PORTVERSION} @@ -30,6 +30,7 @@ ${MKDIR} ${PREFIX}/share/java/${PKGNAME}/; \ ${CP} LICENSE ${PREFIX}/share/java/${PKGNAME}/; \ ${CP} -R docs ${PREFIX}/share/java/${PKGNAME}/; \ - ${CP} -R data ${PREFIX}/share/java/${PKGNAME}/ + ${CP} -R data ${PREFIX}/share/java/${PKGNAME}/; \ + ${CP} -R samples ${PREFIX}/share/java/${PKGNAME}/ .include Index: xerces/distinfo =================================================================== RCS file: /home/ncvs/ports/textproc/xerces/distinfo,v retrieving revision 1.1 diff -u -r1.1 distinfo --- xerces/distinfo 2000/08/31 11:23:31 1.1 +++ xerces/distinfo 2000/12/22 02:58:59 @@ -1 +1 @@ -MD5 (Xerces-J-bin.1.1.3.tar.gz) = fb4fe8f7487fd7a86e11f38002cb4050 +MD5 (Xerces-J-bin.1.2.3.tar.gz) = 3672f61f5de08a7f614de572c250dc02 Index: xerces/pkg-plist =================================================================== RCS file: /home/ncvs/ports/textproc/xerces/pkg-plist,v retrieving revision 1.1 diff -u -r1.1 pkg-plist --- xerces/pkg-plist 2000/08/31 11:23:31 1.1 +++ xerces/pkg-plist 2000/12/22 03:14:26 @@ -192,7 +192,6 @@ share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xerces/dom/ChildAndParentNode.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xerces/dom/ChildNode.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xerces/dom/CommentImpl.html -share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xerces/dom/DOMExceptionImpl.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xerces/dom/DOMImplementationImpl.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xerces/dom/DeepNodeListImpl.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xerces/dom/DeferredAttrImpl.html @@ -252,13 +251,13 @@ share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xerces/framework/package-summary.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xerces/framework/package-tree.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xerces/parsers/DOMParser.html -share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xerces/parsers/RevalidatingDOMParser.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xerces/parsers/SAXParser.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xerces/parsers/package-frame.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xerces/parsers/package-summary.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xerces/parsers/package-tree.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xml/serialize/BaseMarkupSerializer.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xml/serialize/DOMSerializer.html +share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xml/serialize/HTMLdtd.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xml/serialize/HTMLSerializer.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xml/serialize/LineSeparator.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/apache/xml/serialize/Method.html @@ -363,13 +362,13 @@ share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/package-frame.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/package-summary.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/package-tree.html -share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/range/DocumentRange.html -share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/range/Range.html -share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/range/RangeException.html -share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/range/package-frame.html -share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/range/package-summary.html -share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/range/package-tree.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/traversal/DocumentTraversal.html +share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/ranges/DocumentRange.html +share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/ranges/Range.html +share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/ranges/RangeException.html +share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/ranges/package-frame.html +share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/ranges/package-summary.html +share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/ranges/package-tree.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/traversal/NodeFilter.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/traversal/NodeIterator.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/traversal/TreeWalker.html @@ -421,9 +420,6 @@ share/java/xerces-%%PORTVERSION%%/docs/apiDocs/packages.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/serialized-form.html share/java/xerces-%%PORTVERSION%%/docs/apiDocs/stylesheet.css -share/java/xerces-%%PORTVERSION%%/docs/design.css -share/java/xerces-%%PORTVERSION%%/docs/design.dtd -share/java/xerces-%%PORTVERSION%%/docs/design.xsl share/java/xerces-%%PORTVERSION%%/docs/html/api.html share/java/xerces-%%PORTVERSION%%/docs/html/caveats.html share/java/xerces-%%PORTVERSION%%/docs/html/domcount.html @@ -534,8 +530,40 @@ share/java/xerces-%%PORTVERSION%%/docs/html/tree.html share/java/xerces-%%PORTVERSION%%/docs/html/treeview.html share/java/xerces-%%PORTVERSION%%/docs/html/y2k.html +share/java/xerces-%%PORTVERSION%%/samples/dom/DOMAddLines.java +share/java/xerces-%%PORTVERSION%%/samples/dom/DOMCount.java +share/java/xerces-%%PORTVERSION%%/samples/dom/DOMFilter.java +share/java/xerces-%%PORTVERSION%%/samples/dom/DOMGenerate.java +share/java/xerces-%%PORTVERSION%%/samples/dom/DOMParserWrapper.java +share/java/xerces-%%PORTVERSION%%/samples/dom/DOMWriter.java +share/java/xerces-%%PORTVERSION%%/samples/dom/traversal/IteratorView.java +share/java/xerces-%%PORTVERSION%%/samples/dom/traversal/NameNodeFilter.java +share/java/xerces-%%PORTVERSION%%/samples/dom/traversal/TreeWalkerView.java +share/java/xerces-%%PORTVERSION%%/samples/dom/wrappers/DOMParser.java +share/java/xerces-%%PORTVERSION%%/samples/sax/DTDReader.java +share/java/xerces-%%PORTVERSION%%/samples/sax/helpers/AttributeListImpl.java +share/java/xerces-%%PORTVERSION%%/samples/sax/helpers/AttributesImpl.java +share/java/xerces-%%PORTVERSION%%/samples/sax/SAX2Count.java +share/java/xerces-%%PORTVERSION%%/samples/sax/SAX2Writer.java +share/java/xerces-%%PORTVERSION%%/samples/sax/SAXCount.java +share/java/xerces-%%PORTVERSION%%/samples/sax/SAXWriter.java +share/java/xerces-%%PORTVERSION%%/samples/ui/DefaultImages.java +share/java/xerces-%%PORTVERSION%%/samples/ui/DOMParserSaveEncoding.java +share/java/xerces-%%PORTVERSION%%/samples/ui/DOMTree.java +share/java/xerces-%%PORTVERSION%%/samples/ui/DOMTreeFull.java +share/java/xerces-%%PORTVERSION%%/samples/ui/TreeView.java +share/java/xerces-%%PORTVERSION%%/samples/ui/TreeViewer.java +share/java/xerces-%%PORTVERSION%%/samples/util/Arguments.java share/java/xerces-%%PORTVERSION%%/LICENSE @exec mkdir %D/share/java/xerces-%%PORTVERSION%%/docs/dtd +@dirrm share/java/xerces-%%PORTVERSION%%/samples/util +@dirrm share/java/xerces-%%PORTVERSION%%/samples/ui +@dirrm share/java/xerces-%%PORTVERSION%%/samples/sax/helpers +@dirrm share/java/xerces-%%PORTVERSION%%/samples/sax +@dirrm share/java/xerces-%%PORTVERSION%%/samples/dom/wrappers +@dirrm share/java/xerces-%%PORTVERSION%%/samples/dom/traversal +@dirrm share/java/xerces-%%PORTVERSION%%/samples/dom +@dirrm share/java/xerces-%%PORTVERSION%%/samples @dirrm share/java/xerces-%%PORTVERSION%%/docs/html/resources @dirrm share/java/xerces-%%PORTVERSION%%/docs/html/graphics @dirrm share/java/xerces-%%PORTVERSION%%/docs/html @@ -545,7 +573,7 @@ @dirrm share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/xml/sax @dirrm share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/xml @dirrm share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/traversal -@dirrm share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/range +@dirrm share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/ranges @dirrm share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/html @dirrm share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom/events @dirrm share/java/xerces-%%PORTVERSION%%/docs/apiDocs/org/w3c/dom >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 19:50: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 19:50:05 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (poynting.physics.purdue.edu [128.210.146.58]) by hub.freebsd.org (Postfix) with ESMTP id 57ADC37B400 for ; Thu, 21 Dec 2000 19:50:05 -0800 (PST) Received: from argon.firepipe.net (pm006-008.dialup.bignet.net [64.79.80.248]) by puck.firepipe.net (Postfix) with ESMTP id 831021A55; Thu, 21 Dec 2000 22:50:02 -0500 (EST) Received: by argon.firepipe.net (Postfix, from userid 1000) id E2BE918ED; Thu, 21 Dec 2000 22:45:39 -0500 (EST) Date: Thu, 21 Dec 2000 22:45:39 -0500 From: Will Andrews To: Anarcat Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Porting ecasound suite to FreeBSD Message-ID: <20001221224539.J328@argon.firepipe.net> Reply-To: Will Andrews References: <87puilbdwu.wl@localhost.anarcat.yi.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <87puilbdwu.wl@localhost.anarcat.yi.org>; from beaupran@IRO.UMontreal.CA on Thu, Dec 21, 2000 at 05:36:01PM -0500 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: will@argon.firepipe.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Dec 21, 2000 at 05:36:01PM -0500, Anarcat wrote: > [Please CC: I'm not on the list] > [I should have posted here 3 months ago.] :-) > Ecasound is a command-line tool and a library that is the basis for a > few other packages. There is QtEcasound (a Qt GUI) and ecawave (a wave > editor that uses QtEcasound libs). For the rest of the hype about > ecasound, see the webpage. :) That said, it's very nice and I want it > on FreeBSD. :) Sounds neat. > First, there is the eternal pthread nightmare. I had to patch the > configure scripts to make them use '-pthread' and add '-D_THREAD_SAFE' > to compilation. pthread is only a nightmare because of the lack of a standard as to how to link with it properly. And even then a simple perl regex command can fix a configure script. > Second, I can't find mlockall() on FreeBSD. It's declared in > /usr/include/sys/mmap.h (AFAIR). It's supposed to be > POSIX.1b. Grepping through /usr/src, I found it in the kernel and some #include > Ok. Let's come back on these "libc" warnings. I don't get > it. setkey(3) *is* present on my system. It's a plain 4.2-STABLE > install, for Knuth's sake! There is not a single occurence of > mktemp() or f_prealloc() in ecasound's source!! There is, however, an > occurence of gets() in ecasound's readline lib. But I disabled it! The problem lies with the fact your makefile makes it link explicitly with -lc_r. You are _not_ supposed to do this - gcc takes care of linking with the standard libraries (e.g. -lc, -lc_r, and others). > For tmpnam(), it *is* used in the code. However, mkstemp() *cannot* > be used since tmpnam() is used to generate a name for a > *fifo*. mkstemp() creates a file. What do I do with this mess? You use mkfifo() to make the fifo. I found the tmpnam() call in the code.. not sure how it can be integrated into the code. Probably better just to ignore the warning. > Anyways, I was able to compile the program, the libs, and all the > stuff... That is, I installed the libs in /usr/local/lib and did a > ldconfig to refresh that. After that, I tried to compile > qtecasound. And there comes the weird part: > > c++ -lecasound -lkvutils -pthread test.c -o test > > does not link, but > > c++ -L/usr/local/lib -lecasound -lkvutils -pthread test.c -o test > > does. That is, in the first, I get something like: > > /usr/libexec/elf/ld: cannot find -lecasound > > But it's there: > $ ldconfig -r | grep ecasound > 232:-lecasound.7 => /usr/local/lib/libecasound.so.7 > 254:-lecasoundc.0 => /usr/local/lib/libecasoundc.so.0 > $ > > Yukl. Weird. So that's all i can do for now... This is to be expected. It's the standard way you do things. The compiler must be told where the libraries are if they are not in the standard library search paths (usually just /usr/lib). Or else you'll run into a huge mess of namespace conflicts. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 20: 1:30 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 20:01:29 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (poynting.physics.purdue.edu [128.210.146.58]) by hub.freebsd.org (Postfix) with ESMTP id DDB4F37B400 for ; Thu, 21 Dec 2000 20:01:28 -0800 (PST) Received: from argon.firepipe.net (pm006-008.dialup.bignet.net [64.79.80.248]) by puck.firepipe.net (Postfix) with ESMTP id D68901A55; Thu, 21 Dec 2000 23:01:27 -0500 (EST) Received: by argon.firepipe.net (Postfix, from userid 1000) id 5F23E18ED; Thu, 21 Dec 2000 22:57:01 -0500 (EST) Date: Thu, 21 Dec 2000 22:57:01 -0500 From: Will Andrews To: "Sergey A. Osokin" Cc: Will Andrews , ports@FreeBSD.ORG Subject: Re: ports/23589: update net/licq Message-ID: <20001221225700.K328@argon.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , "Sergey A. Osokin" , ports@FreeBSD.ORG References: <200012210917.eBL9HiT17412@freefall.freebsd.org> <20001221121450.A66233@nevermind.kiev.ua> <20001221051515.O319@argon.firepipe.net> <20001221194544.A46639@freebsd.org.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001221194544.A46639@freebsd.org.ru>; from osa@freebsd.org.ru on Thu, Dec 21, 2000 at 07:45:44PM +0300 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: will@argon.firepipe.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Dec 21, 2000 at 07:45:44PM +0300, Sergey A. Osokin wrote: > I think, that more software in ports (that use buggy libstdc+++ or threads) > must be marked as broken with FORBIDDEN feature... > See PR 23252 for more details. Let's not be hasty. Not all C++ programs encounter this bug. There's too much stuff that's written in C++ that people like/use to disable. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 21:20: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 21:20:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 63E3E37B402 for ; Thu, 21 Dec 2000 21:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM5K1d94154; Thu, 21 Dec 2000 21:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 21:20:01 -0800 (PST) Resent-Message-Id: <200012220520.eBM5K1d94154@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id F064537B400 for ; Thu, 21 Dec 2000 21:17:19 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 0) id 9138B177E40; Thu, 21 Dec 2000 23:18:47 -0600 (CST) Message-Id: <20001222051847.9138B177E40@leviathan.inethouston.com> Date: Thu, 21 Dec 2000 23:18:47 -0600 (CST) From: dwcjr@inethouston.net Sender: root@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23744: Update www/oops Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23744 >Category: ports >Synopsis: Update www/oops >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 21:20:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Update pkg-plist to include etc/oops /usr/local/oops also shows up on bento, but going to leave that for maintainer to look at >How-To-Repeat: >Fix: diff -urN oops.orig/pkg-plist oops/pkg-plist --- oops.orig/pkg-plist Thu Dec 21 22:49:56 2000 +++ oops/pkg-plist Thu Dec 21 22:50:54 2000 @@ -30,3 +30,4 @@ libexec/oops/vary_header.so @dirrm libexec/oops @dirrm etc/oops/tables +@dirrm etc/oops >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 22: 0:10 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 22:00:05 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0799D37B400 for ; Thu, 21 Dec 2000 22:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM604K98073; Thu, 21 Dec 2000 22:00:04 -0800 (PST) (envelope-from gnats) Resent-Date: Thu, 21 Dec 2000 22:00:04 -0800 (PST) Resent-Message-Id: <200012220600.eBM604K98073@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 7AB9537B400 for ; Thu, 21 Dec 2000 21:59:31 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 0) id 3F040177E40; Fri, 22 Dec 2000 00:00:59 -0600 (CST) Message-Id: <20001222060059.3F040177E40@leviathan.inethouston.com> Date: Fri, 22 Dec 2000 00:00:59 -0600 (CST) From: dwcjr@inethouston.net Sender: root@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23746: Update net/kdetelnet Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23746 >Category: ports >Synopsis: Update net/kdetelnet >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Dec 21 22:00:04 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Update Makefile for new location >How-To-Repeat: >Fix: --- Makefile.orig Thu Dec 21 23:58:48 2000 +++ Makefile Thu Dec 21 23:59:33 2000 @@ -9,7 +9,7 @@ PORTVERSION= 0.61 CATEGORIES= net kde MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/1.1/apps/network +MASTER_SITE_SUBDIR= Attic/old/1.1.2/apps/network EXTRACT_SUFX= .tgz MAINTAINER= hanspb@persbraten.vgs.no >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 22: 0:17 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 22:00:14 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from indigo.external.org (c1118643-b.chmpgn1.il.home.com [24.181.130.163]) by hub.freebsd.org (Postfix) with ESMTP id 5A8D937B402; Thu, 21 Dec 2000 22:00:13 -0800 (PST) Received: (from jeremy@localhost) by indigo.external.org (8.11.1/8.11.1) id eBM5xfR90700; Thu, 21 Dec 2000 23:59:41 -0600 (CST) (envelope-from jeremy) Date: Thu, 21 Dec 2000 23:59:40 -0600 From: Jeremy Shaffner To: gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23715: New Port: textproc/gutenbook Message-ID: <20001221235940.A89514@external.org> References: <200012211735.eBLHZDH86862@indigo.external.org> <200012211740.eBLHe1Z84014@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200012211740.eBLHe1Z84014@freefall.freebsd.org>; from gnats-admin@FreeBSD.org on Thu, Dec 21, 2000 at 09:40:01AM -0800 Sender: jeremy@indigo.external.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > >Category: ports > >Responsible: freebsd-ports > >Synopsis: New Port: textproc/gutenbook > >Arrival-Date: Thu Dec 21 09:40:01 PST 2000 It just occured to me that I used $LOCALBASE instead of $PREFIX in this Makefile. Please use the following patch to Makefile: --- Makefile Thu Dec 21 11:20:59 2000 +++ Makefile.new Thu Dec 21 23:59:08 2000 @@ -27,20 +27,20 @@ MODULES= Etext.pm File.pm Index.pm Network.pm PropList.pm post-patch: - ${SED} "s#%%LOCALBASE%%#${LOCALBASE}#g" ${WRKSRC}/PGB.pm > ${WRKSRC}/tmp - ${MV} ${WRKSRC}/tmp ${WRKSRC}/PGB.pm + @${SED} "s#%%LOCALBASE%%#${LOCALBASE}#g" ${WRKSRC}/PGB.pm > ${WRKSRC}/tmp + @${MV} ${WRKSRC}/tmp ${WRKSRC}/PGB.pm do-install: - @${INSTALL_SCRIPT} ${WRKSRC}/gutenbook ${LOCALBASE}/bin/gutenbook - @${INSTALL_SCRIPT} ${WRKSRC}/PGB.pm ${site_perl}/PGB.pm + ${INSTALL_SCRIPT} ${WRKSRC}/gutenbook ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/PGB.pm ${site_perl}/PGB.pm @${MKDIR} ${site_perl}/PGB .for module in ${MODULES} - @${INSTALL_SCRIPT} ${WRKSRC}/PGB/${module} ${site_perl}/PGB + ${INSTALL_SCRIPT} ${WRKSRC}/PGB/${module} ${site_perl}/PGB .endfor .if !defined(NOPORTDCS) @${MKDIR} ${LOCALBASE}/share/doc/gutenbook - @${INSTALL_DATA} ${WRKSRC}/MANUAL ${LOCALBASE}/share/doc/gutenbook - @${INSTALL_DATA} ${WRKSRC}/gutenbook.spec ${LOCALBASE}/share/doc/gutenbook + ${INSTALL_DATA} ${WRKSRC}/MANUAL ${PREFIX}/share/doc/gutenbook + ${INSTALL_DATA} ${WRKSRC}/gutenbook.spec ${PREFIX}/share/doc/gutenbook .endif post-install: I had LOCALBASE on the mind at the time. Thanks. -- --------------------------------------------------------------------- Jeremy Shaffner | This space for rent. jeremy@external.org | $ grep happiness life http://www.external.org/~jeremy/pgp.key | FreeBSD: The Power to Serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Dec 21 23:31:59 2000 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 21 23:31:58 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4E3BD37B400; Thu, 21 Dec 2000 23:31:58 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM7VwM17600; Thu, 21 Dec 2000 23:31:58 -0800 (PST) (envelope-from okazaki) Date: Thu, 21 Dec 2000 23:31:58 -0800 (PST) From: Message-Id: <200012220731.eBM7VwM17600@freefall.freebsd.org> To: okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org, okazaki@FreeBSD.org Subject: Re: ports/23737: cclient-maildir needs to be removed from mail/Makefile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: cclient-maildir needs to be removed from mail/Makefile Responsible-Changed-From-To: freebsd-ports->okazaki Responsible-Changed-By: okazaki Responsible-Changed-When: Thu Dec 21 23:24:25 PST 2000 Responsible-Changed-Why: I will handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=23737 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 0: 0:15 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 00:00:12 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6709137B400; Fri, 22 Dec 2000 00:00:12 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM80CJ20981; Fri, 22 Dec 2000 00:00:12 -0800 (PST) (envelope-from okazaki) Date: Fri, 22 Dec 2000 00:00:12 -0800 (PST) From: Message-Id: <200012220800.eBM80CJ20981@freefall.freebsd.org> To: okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org, okazaki@FreeBSD.org Subject: Re: ports/21435: New port Jakarta Ant (A Java based build tool) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port Jakarta Ant (A Java based build tool) Responsible-Changed-From-To: freebsd-ports->okazaki Responsible-Changed-By: okazaki Responsible-Changed-When: Thu Dec 21 23:59:33 PST 2000 Responsible-Changed-Why: I will handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=21435 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 0: 6: 1 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 00:06:00 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 09DB437B400; Fri, 22 Dec 2000 00:06:00 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM85xM23603; Fri, 22 Dec 2000 00:05:59 -0800 (PST) (envelope-from okazaki) Date: Fri, 22 Dec 2000 00:05:59 -0800 (PST) From: Message-Id: <200012220805.eBM85xM23603@freefall.freebsd.org> To: okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org, kiri@FreeBSD.org Subject: Re: ports/20587: Update port: upsd-2.0.1.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: upsd-2.0.1.6 Responsible-Changed-From-To: freebsd-ports->kiri Responsible-Changed-By: okazaki Responsible-Changed-When: Fri Dec 22 00:04:16 PST 2000 Responsible-Changed-Why: Submitter is a committer now. http://www.freebsd.org/cgi/query-pr.cgi?pr=20587 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 0: 6:36 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 00:06:35 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 870A237B400; Fri, 22 Dec 2000 00:06:35 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM86ZX23748; Fri, 22 Dec 2000 00:06:35 -0800 (PST) (envelope-from okazaki) Date: Fri, 22 Dec 2000 00:06:35 -0800 (PST) From: Message-Id: <200012220806.eBM86ZX23748@freefall.freebsd.org> To: okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org, kiri@FreeBSD.org Subject: Re: ports/20588: New port: upsd100-2.0.1.6(sysutils/upsd100) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: upsd100-2.0.1.6(sysutils/upsd100) Responsible-Changed-From-To: freebsd-ports->kiri Responsible-Changed-By: okazaki Responsible-Changed-When: Fri Dec 22 00:06:16 PST 2000 Responsible-Changed-Why: Submitter is a committer now. http://www.freebsd.org/cgi/query-pr.cgi?pr=20588 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 0:12:46 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 00:12:45 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C45037B400; Fri, 22 Dec 2000 00:12:45 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM8CjA24472; Fri, 22 Dec 2000 00:12:45 -0800 (PST) (envelope-from okazaki) Date: Fri, 22 Dec 2000 00:12:45 -0800 (PST) From: Message-Id: <200012220812.eBM8CjA24472@freefall.freebsd.org> To: okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org, shige@FreeBSD.org Subject: Re: ports/21681: the startup elisp file of PSGML port has a load-path problem Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: the startup elisp file of PSGML port has a load-path problem Responsible-Changed-From-To: freebsd-ports->shige Responsible-Changed-By: okazaki Responsible-Changed-When: Fri Dec 22 00:11:52 PST 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=21681 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 0:18:14 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 00:18:13 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9B49B37B400; Fri, 22 Dec 2000 00:18:13 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM8IDg25136; Fri, 22 Dec 2000 00:18:13 -0800 (PST) (envelope-from okazaki) Date: Fri, 22 Dec 2000 00:18:13 -0800 (PST) From: Message-Id: <200012220818.eBM8IDg25136@freefall.freebsd.org> To: okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org, fenner@FreeBSD.org Subject: Re: ports/23618: Updates for newpcm duplex probing and AC97-like mixers. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Updates for newpcm duplex probing and AC97-like mixers. Responsible-Changed-From-To: freebsd-ports->fenner Responsible-Changed-By: okazaki Responsible-Changed-When: Fri Dec 22 00:16:38 PST 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=23618 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 0:29:53 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 00:29:51 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from madlen.mts.ru (ns2.mts.ru [212.44.140.2]) by hub.freebsd.org (Postfix) with ESMTP id 895DF37B400; Fri, 22 Dec 2000 00:29:27 -0800 (PST) Received: from stella.komi.mts.ru (stella [192.168.29.31]) by madlen.mts.ru with ESMTP id LAA13336; Fri, 22 Dec 2000 11:29:04 +0300 (MSK) Received: from middle (middle.komi.mts.ru [192.168.101.33]) by stella.komi.mts.ru (8.10.1/8.10.1) with ESMTP id eBM8Sxs29071; Fri, 22 Dec 2000 11:29:00 +0300 (MSK) Date: Fri, 22 Dec 2000 11:28:04 +0300 From: Andrey Morozov X-Mailer: The Bat! (v1.47 Halloween Edition) UNREG / CD5BF9353B3B7091 Reply-To: Andrey Morozov Organization: MTS X-Priority: 3 (Normal) Message-ID: <89591956919.20001222112804@komi.mts.ru> To: roger@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: gatekeeper-0.12_1 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello roger, I has some problem with running gatekeeper on my FreeBSD 4.2. Both library pwlib and openh323_1.1pl1 compiled fine and without errors. Test programm from openh323 ftarted fine and not core dumped. Gatekeeper work fine when registered any gateway, but core dumped when any endpoint make call to other endpoint using gatekeeper. May you assist me with my problem. Thanks -- Best regards, Andrey mailto:moran@komi.mts.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 0:37:35 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 00:37:34 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A20EE37B400; Fri, 22 Dec 2000 00:37:34 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM8bYr26991; Fri, 22 Dec 2000 00:37:34 -0800 (PST) (envelope-from okazaki) Date: Fri, 22 Dec 2000 00:37:34 -0800 (PST) From: Message-Id: <200012220837.eBM8bYr26991@freefall.freebsd.org> To: okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org, issei@FreeBSD.org Subject: Re: ports/23255: ports/net/SSLtelnet broken ? Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/net/SSLtelnet broken ? Responsible-Changed-From-To: freebsd-ports->issei Responsible-Changed-By: okazaki Responsible-Changed-When: Fri Dec 22 00:35:53 PST 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=23255 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 0:52: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 00:52:07 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EB48737B400; Fri, 22 Dec 2000 00:52:06 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM8q6E28683; Fri, 22 Dec 2000 00:52:06 -0800 (PST) (envelope-from okazaki) Date: Fri, 22 Dec 2000 00:52:06 -0800 (PST) From: Message-Id: <200012220852.eBM8q6E28683@freefall.freebsd.org> To: okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org, dirk@FreeBSD.org Subject: Re: ports/23611: palm/pose coredumps Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: palm/pose coredumps Responsible-Changed-From-To: freebsd-ports->dirk Responsible-Changed-By: okazaki Responsible-Changed-When: Fri Dec 22 00:51:12 PST 2000 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=23611 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 1:10:29 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 01:10:19 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 03DBA37B6A4 for ; Fri, 22 Dec 2000 01:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM9A2V33215; Fri, 22 Dec 2000 01:10:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 01:10:02 -0800 (PST) Resent-Message-Id: <200012220910.eBM9A2V33215@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, strijar@urai.ru Received: from ws.urai.ru (ws.urai.ru [212.76.171.29]) by hub.freebsd.org (Postfix) with ESMTP id 6C8CE37B400 for ; Fri, 22 Dec 2000 01:05:38 -0800 (PST) Received: (from root@localhost) by ws.urai.ru (8.11.1/8.9.3) id eBM95UI14027; Fri, 22 Dec 2000 14:05:30 +0500 (YEKT) (envelope-from root) Message-Id: <200012220905.eBM95UI14027@ws.urai.ru> Date: Fri, 22 Dec 2000 14:05:30 +0500 (YEKT) From: strijar@urai.ru Sender: root@ws.urai.ru Reply-To: strijar@urai.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23748: New port: Matrix like console screensaver Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23748 >Category: ports >Synopsis: New port: Matrix like console screensaver >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 01:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Belousov Oleg >Release: FreeBSD 4.2-STABLE i386 >Organization: JSC "UnicomTechServic" >Environment: >Description: Screensaver for console (matrix_saver.ko) "Matrix" like >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # matrix # matrix/distinfo # matrix/Makefile # matrix/pkg-comment # matrix/pkg-descr # matrix/pkg-plist # echo c - matrix mkdir -p matrix > /dev/null 2>&1 echo x - matrix/distinfo sed 's/^X//' >matrix/distinfo << 'END-of-matrix/distinfo' XMD5 (matrix-1.2.tar.gz) = c8286f926f7a3a80c94bb62665471942 END-of-matrix/distinfo echo x - matrix/Makefile sed 's/^X//' >matrix/Makefile << 'END-of-matrix/Makefile' X# New ports collection makefile for: strijar X# Date created: 22 Dec 2000 X# Whom: Oleg Belousov X# X# $FreeBSD$ X# X XPORTNAME= matrix XPREFIX= / XPORTVERSION= 1.2 XCATEGORIES= misc XMASTER_SITES= http://www.belousov.com/download/ X XMAINTAINER= strijar@urai.ru X X.include X X.if ${OSVERSION} < 400000 XBROKEN= Need FreeBSD 4.0 or above X.endif X X.include END-of-matrix/Makefile echo x - matrix/pkg-comment sed 's/^X//' >matrix/pkg-comment << 'END-of-matrix/pkg-comment' XScreensaver for console (matrix_saver.ko) "Matrix" like END-of-matrix/pkg-comment echo x - matrix/pkg-descr sed 's/^X//' >matrix/pkg-descr << 'END-of-matrix/pkg-descr' XScreensaver for console in style film "Matrix" XFor compile with support hierogliphs: make -DWITH_FONT X XNote: for FreeBSD 4.0 or above (if you patching this - say me ;) X X- Oleg Xstrijar@urai.ru END-of-matrix/pkg-descr echo x - matrix/pkg-plist sed 's/^X//' >matrix/pkg-plist << 'END-of-matrix/pkg-plist' Xmodules/matrix_saver.ko END-of-matrix/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 1:10:30 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 01:10:19 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4D52A37B69F for ; Fri, 22 Dec 2000 01:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM9A3k33224; Fri, 22 Dec 2000 01:10:03 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 01:10:03 -0800 (PST) Resent-Message-Id: <200012220910.eBM9A3k33224@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, ijliao@terry.dragon2.net Received: from Terry.Dorm8.NCTU.edu.tw (Terry.Dorm8.NCTU.edu.tw [140.113.93.99]) by hub.freebsd.org (Postfix) with ESMTP id E8FEE37B400 for ; Fri, 22 Dec 2000 01:06:14 -0800 (PST) Received: (from ijliao@localhost) by Terry.Dorm8.NCTU.edu.tw (8.11.1/8.11.1) id eBM96Uk12657; Fri, 22 Dec 2000 17:06:30 +0800 (CST) (envelope-from ijliao) Message-Id: <200012220906.eBM96Uk12657@Terry.Dorm8.NCTU.edu.tw> Date: Fri, 22 Dec 2000 17:06:30 +0800 (CST) From: Ying-Chieh Liao Sender: ijliao@Terry.Dorm8.NCTU.edu.tw Reply-To: ijliao@terry.dragon2.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23749: update ports : security/dsniff Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23749 >Category: ports >Synopsis: update ports : security/dsniff >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 01:10:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Ying-Chieh Liao >Release: FreeBSD 5.0-CURRENT i386 >Organization: NCTU CSIE >Environment: System: FreeBSD Terry.Dorm8.NCTU.edu.tw 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Wed Dec 20 08:59:11 CST 2000 root@Terry.Dorm8.NCTU.edu.tw:/usr/obj/usr/src/sys/TERRY i386 >Description: update dsniff from 2.2 to 2.3 >How-To-Repeat: >Fix: diff -ruN /usr/ports/security/dsniff/Makefile dsniff/Makefile --- /usr/ports/security/dsniff/Makefile Mon Sep 11 02:36:32 2000 +++ dsniff/Makefile Fri Dec 22 16:47:35 2000 @@ -6,7 +6,7 @@ # PORTNAME= dsniff -PORTVERSION= 2.2 +PORTVERSION= 2.3 CATEGORIES= security MASTER_SITES= http://naughty.monkey.org/~dugsong/dsniff/ @@ -18,7 +18,8 @@ GNU_CONFIGURE= yes USE_XLIB= yes -MAN8= arpredirect.8 dsniff.8 macof.8 mailsnarf.8 tcpkill.8 \ - tcpnice.8 urlsnarf.8 webspy.8 filesnarf.8 +MAN8= arpspoof.8 dsniff.8 macof.8 mailsnarf.8 tcpkill.8 \ + tcpnice.8 urlsnarf.8 webspy.8 filesnarf.8 dnsspoof.8 msgsnarf.8 \ + sshmitm.8 webmitm.8 .include diff -ruN /usr/ports/security/dsniff/distinfo dsniff/distinfo --- /usr/ports/security/dsniff/distinfo Sat Sep 2 09:33:18 2000 +++ dsniff/distinfo Fri Dec 22 14:25:58 2000 @@ -1 +1 @@ -MD5 (dsniff-2.2.tar.gz) = 6b4529263d390149961cf3ca74d82141 +MD5 (dsniff-2.3.tar.gz) = 183e336a45e38013f3af840bddec44b4 diff -ruN /usr/ports/security/dsniff/files/patch-aa dsniff/files/patch-aa --- /usr/ports/security/dsniff/files/patch-aa Thu Jan 1 08:00:00 1970 +++ dsniff/files/patch-aa Fri Dec 22 16:31:18 2000 @@ -0,0 +1,11 @@ +--- Makefile.in.orig Fri Dec 22 16:30:32 2000 ++++ Makefile.in Fri Dec 22 16:30:50 2000 +@@ -37,7 +37,7 @@ + X11INC = @X_CFLAGS@ + X11LIB = @X_LIBS@ @X_PRE_LIBS@ -lXmu -lX11 @X_EXTRA_LIBS@ + +-INCS = -I. $(NIDSINC) $(PCAPINC) $(LNETINC) $(DBINC) $(SSLINC) $(X11INC) \ ++INCS = -I. -I/usr/include $(NIDSINC) $(PCAPINC) $(LNETINC) $(DBINC) $(SSLINC) $(X11INC) \ + -I$(srcdir)/missing + LIBS = @LIBS@ -L$(srcdir) -lmissing + diff -ruN /usr/ports/security/dsniff/pkg-descr dsniff/pkg-descr --- /usr/ports/security/dsniff/pkg-descr Sun Jan 9 11:13:59 2000 +++ dsniff/pkg-descr Fri Dec 22 16:59:10 2000 @@ -1,17 +1,26 @@ Various tools for network penetration testing. Please do not abuse them. -arpredirect redirect packets from a target host (or all hosts) on the LAN - intended for another host on the LAN by forging ARP replies -findgw determine the local gateway of an unknown network via passive - sniffing -macof flood the local network with random MAC addresses -dsniff simple password sniffer +arpspoof redirect packets from a target host (or all hosts) on the LAN + intended for another host on the LAN by forging ARP replies. +dnsspoof forge replies to arbitrary DNS address / pointer queries on + the LAN. +dsniff simple password sniffer. +filesnarf saves selected files sniffed from NFS traffic in the current + working directory. +macof flood the local network with random MAC addresses. mailsnarf a fast and easy way to violate the Electronic Communications - Privacy Act of 1986 (18 USC 2701-2711), be careful + Privacy Act of 1986 (18 USC 2701-2711), be careful. +msgsnarf record selected messages from sniffed AOL Instant Messenger, + ICQ 2000, IRC, and Yahoo! Messenger chat sessions. +sshmitm SSH monkey-in-the-middle. +tcpkill kills specified in-progress TCP connections. +tcpnice slow down specified TCP connections via "active" traffic + shaping. urlsnarf output all requested URLs sniffed from HTTP traffic in CLF (Common Log Format, used by almost all web servers), suitable for offline post-processing +webmitm HTTP / HTTPS monkey-in-the-middle. webspy sends URLs sniffed from a client to your local Netscape browser for display, a fun party trick -WWW: http://www.monkey.org/~dugsong/ +WWW: http://www.monkey.org/~dugsong/dsniff/ diff -ruN /usr/ports/security/dsniff/pkg-plist dsniff/pkg-plist --- /usr/ports/security/dsniff/pkg-plist Sun Sep 10 18:59:14 2000 +++ dsniff/pkg-plist Fri Dec 22 16:50:38 2000 @@ -1,12 +1,16 @@ lib/dsniff.magic lib/dsniff.services -sbin/arpredirect +lib/dnsspoof.hosts +sbin/arpspoof +sbin/dnsspoof sbin/dsniff sbin/filesnarf sbin/macof sbin/mailsnarf +sbin/msgsnarf +sbin/sshmitm sbin/tcpkill sbin/tcpnice sbin/urlsnarf +sbin/webmitm sbin/webspy - >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 1:38: 4 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 01:38:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B5C3237B699; Fri, 22 Dec 2000 01:38:01 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM9c1s36849; Fri, 22 Dec 2000 01:38:01 -0800 (PST) (envelope-from roam) Date: Fri, 22 Dec 2000 01:38:01 -0800 (PST) From: Message-Id: <200012220938.eBM9c1s36849@freefall.freebsd.org> To: joseph@randomnetworks.com, roam@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23016: NEW PORT security/swatch3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NEW PORT security/swatch3 State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Fri Dec 22 01:37:21 PST 2000 State-Changed-Why: Superseded by ports/23720. http://www.freebsd.org/cgi/query-pr.cgi?pr=23016 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 1:45:26 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 01:45:25 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D39A37B400; Fri, 22 Dec 2000 01:45:25 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM9jP337647; Fri, 22 Dec 2000 01:45:25 -0800 (PST) (envelope-from roam) Date: Fri, 22 Dec 2000 01:45:25 -0800 (PST) From: Message-Id: <200012220945.eBM9jP337647@freefall.freebsd.org> To: makoto@pinpott.spnet.ne.jp, roam@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23724: MAINTAINER UPDATE: games/zangband Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MAINTAINER UPDATE: games/zangband State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Fri Dec 22 01:45:14 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23724 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 1:57:48 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 01:57:47 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 64E1C37B402; Fri, 22 Dec 2000 01:57:47 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBM9vlm39121; Fri, 22 Dec 2000 01:57:47 -0800 (PST) (envelope-from roam) Date: Fri, 22 Dec 2000 01:57:47 -0800 (PST) From: Message-Id: <200012220957.eBM9vlm39121@freefall.freebsd.org> To: greid@dogma.freebsd-uk.eu.org, roam@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23729: [PATCH] emulators/bochs has unfetchable distfile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] emulators/bochs has unfetchable distfile State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Fri Dec 22 01:56:41 PST 2000 State-Changed-Why: Committed, thanks! Please try to use a tabs-preserving editor/mailer next time - the patch failed to apply cleanly, because tabs were converted to spaces; it was trivial to apply by hand though ;) http://www.freebsd.org/cgi/query-pr.cgi?pr=23729 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 2:17:43 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 02:17:41 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DD13D37B402; Fri, 22 Dec 2000 02:17:38 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMAHcn43720; Fri, 22 Dec 2000 02:17:38 -0800 (PST) (envelope-from roam) Date: Fri, 22 Dec 2000 02:17:38 -0800 (PST) From: Message-Id: <200012221017.eBMAHcn43720@freefall.freebsd.org> To: roam@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/23730: [PATCH] benchmarks/postmark has unfetchable distfile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] benchmarks/postmark has unfetchable distfile Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: roam Responsible-Changed-When: Fri Dec 22 02:17:06 PST 2000 Responsible-Changed-Why: Over to maintainer; the patch I submitted in a followup does the trick for me :) http://www.freebsd.org/cgi/query-pr.cgi?pr=23730 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 2:20: 2 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 02:20:00 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 26C3437B400; Fri, 22 Dec 2000 02:20:00 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMAK0Z43993; Fri, 22 Dec 2000 02:20:00 -0800 (PST) (envelope-from roam) Date: Fri, 22 Dec 2000 02:20:00 -0800 (PST) From: Message-Id: <200012221020.eBMAK0Z43993@freefall.freebsd.org> To: roam@FreeBSD.org, freebsd-ports@FreeBSD.org, trevor@FreeBSD.org Subject: Re: ports/23731: [PATCH] devel/bin86 has unfetchable distfile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] devel/bin86 has unfetchable distfile Responsible-Changed-From-To: freebsd-ports->trevor Responsible-Changed-By: roam Responsible-Changed-When: Fri Dec 22 02:19:28 PST 2000 Responsible-Changed-Why: Over to maintainer; I suppose there could be tabs vs. spaces issues here, too. http://www.freebsd.org/cgi/query-pr.cgi?pr=23731 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 2:30: 0 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 02:29:59 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 481BF37B400; Fri, 22 Dec 2000 02:29:59 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMATxc45696; Fri, 22 Dec 2000 02:29:59 -0800 (PST) (envelope-from roam) Date: Fri, 22 Dec 2000 02:29:59 -0800 (PST) From: Message-Id: <200012221029.eBMATxc45696@freefall.freebsd.org> To: roam@FreeBSD.org, freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: ports/23732: [PATCH] devel/cs has unfetchable distfile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] devel/cs has unfetchable distfile Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: roam Responsible-Changed-When: Fri Dec 22 02:26:37 PST 2000 Responsible-Changed-Why: Over to maintainer. This patch has whitespace issues, too, but there's something more - a changed MD5 checksum. I diff'd the distfiles, and there's new functionality added, without a version bump (don't we all love those..) I wonder if this could be cause for an upped PORTVERSION - it seems PORTREVISION should not be used for such authors' slip-ups.. http://www.freebsd.org/cgi/query-pr.cgi?pr=23732 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 3: 0:10 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 03:00:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B73A737B402 for ; Fri, 22 Dec 2000 03:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMB02849094; Fri, 22 Dec 2000 03:00:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 03:00:02 -0800 (PST) Resent-Message-Id: <200012221100.eBMB02849094@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, Simon Marlow Received: from mta05-svc.ntlworld.com (mta05-svc.ntlworld.com [62.253.162.45]) by hub.freebsd.org (Postfix) with ESMTP id 3030137B400 for ; Fri, 22 Dec 2000 02:53:59 -0800 (PST) Received: from jaffacakes.freeserve.co.uk ([62.253.148.92]) by mta05-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001222105357.VDHB18404.mta05-svc.ntlworld.com@jaffacakes.freeserve.co.uk> for ; Fri, 22 Dec 2000 10:53:57 +0000 Received: (from root@localhost) by jaffacakes.freeserve.co.uk (8.11.1/8.9.3) id eBMAsIF20455; Fri, 22 Dec 2000 10:54:18 GMT (envelope-from simonm) Message-Id: <200012221054.eBMAsIF20455@jaffacakes.freeserve.co.uk> Date: Fri, 22 Dec 2000 10:54:18 GMT From: Simon Marlow Sender: simonm@jaffacakes.freeserve.co.uk Reply-To: Simon Marlow To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23750: New port: devel/happy (Happy 1.9, a parser generator for Haskell) Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23750 >Category: ports >Synopsis: New port: devel/happy (Happy 1.9, a parser generator for Haskell) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 03:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Simon Marlow >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: Happy is a parser generator for the functional language Haskell. WWW: http://www.haskell.org/happy/ >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # /usr/ports/devel/happy # /usr/ports/devel/happy/pkg-comment # /usr/ports/devel/happy/Makefile # /usr/ports/devel/happy/distinfo # /usr/ports/devel/happy/pkg-plist # /usr/ports/devel/happy/pkg-descr # echo c - /usr/ports/devel/happy mkdir -p /usr/ports/devel/happy > /dev/null 2>&1 echo x - /usr/ports/devel/happy/pkg-comment sed 's/^X//' >/usr/ports/devel/happy/pkg-comment << 'END-of-/usr/ports/devel/happy/pkg-comment' XAn LALR(1) parser generator for the functional language Haskell END-of-/usr/ports/devel/happy/pkg-comment echo x - /usr/ports/devel/happy/Makefile sed 's/^X//' >/usr/ports/devel/happy/Makefile << 'END-of-/usr/ports/devel/happy/Makefile' X# New ports collection makefile for: happy X# Date created: 22 December 2000 X# Whom: Simon Marlow X# X# $FreeBSD$ X XPORTNAME= happy XPORTVERSION= 1.9 XCATEGORIES= devel XMASTER_SITES= http://www.haskell.org/happy/dist/1.9/ XDISTFILES= happy-${PORTVERSION}-src${EXTRACT_SUFX} X XMAINTAINER= simonmar@microsoft.com X XUSE_GMAKE= yes XGNU_CONFIGURE= yes X XBUILD_DEPENDS= ghc:${PORTSDIR}/lang/ghc X X.if !defined(NOPORTDOCS) XBUILD_DEPENDS+= ${PREFIX}/share/sgml/docbook/dsssl/modular:${PORTSDIR}/textproc/dsssl-docbook-modular \ X ${PREFIX}/share/sgml/docbook/catalog:${PORTSDIR}/textproc/docbook \ X ${PREFIX}/share/sgml/iso8879:${PORTSDIR}/textproc/iso8879 \ X jade:${PORTSDIR}/textproc/jade X.endif X XBOOT_COOKIE = ${WRKDIR}/.boot_done X X${BOOT_COOKIE}: X @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} boot) X Xpre-build: ${BOOT_COOKIE} X Xpost-build: X.if !defined(NOPORTDOCS) X @(cd ${WRKSRC}/happy/doc && \ X ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} html) X.endif X Xpost-install: X.if !defined(NOPORTDOCS) X @(cd ${WRKSRC}/happy/doc && ${CP} -R happy ${PREFIX}/share/doc) X.endif X X.include END-of-/usr/ports/devel/happy/Makefile echo x - /usr/ports/devel/happy/distinfo sed 's/^X//' >/usr/ports/devel/happy/distinfo << 'END-of-/usr/ports/devel/happy/distinfo' XMD5 (happy-1.9-src.tar.gz) = 6e6e622f1b15efe69abe0254109c69ca END-of-/usr/ports/devel/happy/distinfo echo x - /usr/ports/devel/happy/pkg-plist sed 's/^X//' >/usr/ports/devel/happy/pkg-plist << 'END-of-/usr/ports/devel/happy/pkg-plist' Xbin/happy Xbin/happy-1.9 Xlib/happy.bin Xlib/happy/HappyTemplate Xlib/happy/HappyTemplate-arrays Xlib/happy/HappyTemplate-arrays-coerce Xlib/happy/HappyTemplate-arrays-coerce-debug Xlib/happy/HappyTemplate-arrays-debug Xlib/happy/HappyTemplate-arrays-ghc Xlib/happy/HappyTemplate-arrays-ghc-debug Xlib/happy/HappyTemplate-coerce Xlib/happy/HappyTemplate-ghc Xshare/doc/happy/docbook.css Xshare/doc/happy/happy-introduction.html Xshare/doc/happy/happy.html Xshare/doc/happy/sec-compilation-time.html Xshare/doc/happy/sec-conflict-tips.html Xshare/doc/happy/sec-directives.html Xshare/doc/happy/sec-error.html Xshare/doc/happy/sec-finding-errors.html Xshare/doc/happy/sec-grammar-files.html Xshare/doc/happy/sec-grammar.html Xshare/doc/happy/sec-info-files.html Xshare/doc/happy/sec-invoking.html Xshare/doc/happy/sec-license.html Xshare/doc/happy/sec-module-header.html Xshare/doc/happy/sec-module-trailer.html Xshare/doc/happy/sec-monads.html Xshare/doc/happy/sec-multiple-parsers.html Xshare/doc/happy/sec-obtaining.html Xshare/doc/happy/sec-precedences.html Xshare/doc/happy/sec-reporting-bugs.html Xshare/doc/happy/sec-sequences.html Xshare/doc/happy/sec-tips.html Xshare/doc/happy/sec-type-signatures.html Xshare/doc/happy/sec-using.html Xshare/doc/happy/stylesheet-images/caution.gif Xshare/doc/happy/stylesheet-images/home.gif Xshare/doc/happy/stylesheet-images/important.gif Xshare/doc/happy/stylesheet-images/next.gif Xshare/doc/happy/stylesheet-images/note.gif Xshare/doc/happy/stylesheet-images/prev.gif Xshare/doc/happy/stylesheet-images/tip.gif Xshare/doc/happy/stylesheet-images/toc-blank.gif Xshare/doc/happy/stylesheet-images/toc-minus.gif Xshare/doc/happy/stylesheet-images/toc-plus.gif Xshare/doc/happy/stylesheet-images/up.gif Xshare/doc/happy/stylesheet-images/warning.gif X@dirrm lib/happy X@dirrm share/doc/happy/stylesheet-images X@dirrm share/doc/happy END-of-/usr/ports/devel/happy/pkg-plist echo x - /usr/ports/devel/happy/pkg-descr sed 's/^X//' >/usr/ports/devel/happy/pkg-descr << 'END-of-/usr/ports/devel/happy/pkg-descr' XThis is Happy version 1.9, a parser generator for Haskell 98. X XWWW: http://www.haskell.org/happy/ X X-- Simon Marlow END-of-/usr/ports/devel/happy/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 3:12:48 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 03:12:47 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E92E37B400; Fri, 22 Dec 2000 03:12:47 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMBClC53342; Fri, 22 Dec 2000 03:12:47 -0800 (PST) (envelope-from roam) Date: Fri, 22 Dec 2000 03:12:47 -0800 (PST) From: Message-Id: <200012221112.eBMBClC53342@freefall.freebsd.org> To: roam@FreeBSD.org, freebsd-ports@FreeBSD.org, kris@FreeBSD.org Subject: Re: ports/23749: update ports : security/dsniff Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update ports : security/dsniff Responsible-Changed-From-To: freebsd-ports->kris Responsible-Changed-By: roam Responsible-Changed-When: Fri Dec 22 03:09:42 PST 2000 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=23749 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 3:50:16 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 03:50:07 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 381B037B699 for ; Fri, 22 Dec 2000 03:50:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMBo7558095; Fri, 22 Dec 2000 03:50:07 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 03:50:07 -0800 (PST) Resent-Message-Id: <200012221150.eBMBo7558095@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, George Reid Received: from mta01-svc.ntlworld.com (mta01-svc.ntlworld.com [62.253.162.41]) by hub.freebsd.org (Postfix) with ESMTP id CAEFD37B400 for ; Fri, 22 Dec 2000 03:49:30 -0800 (PST) Received: from sobek.openirc.co.uk ([62.252.12.91]) by mta01-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001222114928.IHKM6427.mta01-svc.ntlworld.com@sobek.openirc.co.uk> for ; Fri, 22 Dec 2000 11:49:28 +0000 Message-Id: Date: Fri, 22 Dec 2000 11:53:14 +0000 (GMT) From: George Reid To: FreeBSD-gnats-submit@freebsd.org Subject: ports/23751: [PATCH] audio/openal has unfetchable distfile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23751 >Category: ports >Synopsis: [PATCH] audio/openal has unfetchable distfile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 03:50:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD UKUG >Environment: n/a >Description: Port audio/openal has an unfetchable distfile. Patch updates port to version 20001217. Patches from previous version are merged and the patch should not be AFU this time (thanks to roam). >How-To-Repeat: Try to build :) >Fix: Index: Makefile =================================================================== RCS file: /usr/home/ncvs/ports/audio/openal/Makefile,v retrieving revision 1.2 diff -r1.2 Makefile 9c9 < PORTVERSION= 20000908 --- > PORTVERSION= 20001217 11c11 < MASTER_SITES= ftp://ftp.openal.org/ --- > MASTER_SITES= ftp://ftp.openal.org/pub/openal/ 15c15 < WRKSRC= ${WRKDIR}/${PORTNAME}/linux --- > WRKSRC= ${WRKDIR}/tmp/${PORTNAME}/linux Index: distinfo =================================================================== RCS file: /usr/home/ncvs/ports/audio/openal/distinfo,v retrieving revision 1.1 diff -r1.1 distinfo 1c1 < MD5 (openal-20000908.tar.gz) = f8940f253b738a4c29f2d3dc09fb4936 --- > MD5 (openal-20001217.tar.gz) = de81e19bab14f0d552726bcd9d8e0385 Index: files/patch-Makefile.in =================================================================== RCS file: /usr/home/ncvs/ports/audio/openal/files/patch-Makefile.in,v retrieving revision 1.1 diff -r1.1 patch-Makefile.in 1,2c1,2 < --- Makefile.in.orig Sun Sep 3 17:40:32 2000 < +++ Makefile.in Fri Oct 13 05:50:01 2000 --- > --- Makefile.in.orig Fri Dec 22 11:27:26 2000 > +++ Makefile.in Fri Dec 22 11:30:49 2000 9c9 < @@ -38,20 +39,19 @@ --- > @@ -41,22 +42,22 @@ 26a27,28 > - $(INSTALL) -m 444 include/AL/alext.h $(DESTINC)/AL > - $(INSTALL) -m 444 include/AL/alexttypes.h $(DESTINC)/AL 28c30,31 < + $(INSTALL_DATA) src/libopenal.so.$(MAJOR_VERSION) $(DESTLIB) --- > + $(INSTALL_DATA) src/libopenal.so.$(VERSION) $(DESTLIB) > + $(LN_S) -f $(DESTLIB)/libopenal.so.$(MAJOR_VERSION) $(DESTLIB)/libopenal.so.$(MAJOR_VERSION) 39a43,44 > + $(INSTALL_DATA) include/AL/alext.h $(DESTINC)/AL > + $(INSTALL_DATA) include/AL/alexttypes.h $(DESTINC)/AL Index: files/patch-configure.in =================================================================== RCS file: /usr/home/ncvs/ports/audio/openal/files/patch-configure.in,v retrieving revision 1.1 diff -r1.1 patch-configure.in 1,3c1,9 < --- configure.in~ Sat Sep 9 00:15:48 2000 < +++ configure.in Mon Sep 25 18:53:56 2000 < @@ -111,7 +111,7 @@ --- > --- configure.in.orig Fri Dec 22 11:31:24 2000 > +++ configure.in Fri Dec 22 11:32:47 2000 > @@ -1,4 +1,4 @@ > -dnl autoconf file shameless ripped off from mixer-1.0.1 > + dnl autoconf file shameless ripped off from mixer-1.0.1 > > AC_INIT(include/AL/alkludge.h) > AC_CONFIG_HEADER(config.h) > @@ -136,7 +136,7 @@ 8c14 < +AC_CHECK_FUNC(dlopen, [], AC_CHECK_LIB(dl, dlopen, LIBS="$LIBS -ldl", AC_DEFINE(NODLOPEN) echo "Can't dlopen extensions." )) --- > +AC_CHECK_FUNC(dlopen, [], AC_CHECK_LIB(dl, dlopen, LIBS="$LIBS -ldl", AC_DEFINE(NODLOPEN) echo "Can't dlopen extensions.")) Index: files/patch-src:Makefile.in =================================================================== RCS file: /usr/home/ncvs/ports/audio/openal/files/patch-src:Makefile.in,v retrieving revision 1.1 diff -r1.1 patch-src:Makefile.in 1,3c1,3 < --- src/Makefile.in.orig Sat Sep 9 07:15:48 2000 < +++ src/Makefile.in Fri Oct 13 05:51:52 2000 < @@ -81,7 +81,6 @@ --- > --- src/Makefile.in.orig Fri Dec 22 11:33:30 2000 > +++ src/Makefile.in Fri Dec 22 11:35:34 2000 > @@ -89,7 +89,6 @@ 11c11,12 < @@ -103,8 +102,8 @@ --- > @@ -111,8 +110,8 @@ > 14,15c15 < -Wl,-soname \ < - -Wl,libopenal-$(MAJOR_VERSION).$(MINOR_VERSION).so \ --- > - -Wl,"-soname,libopenal-$(MAJOR_VERSION).$(MINOR_VERSION).so" \ 18a19 > $(LDFLAGS) \ 21d21 < $(AC_OBJS) \ Index: files/patch-src:alc:alc_context.c =================================================================== RCS file: /usr/home/ncvs/ports/audio/openal/files/patch-src:alc:alc_context.c,v retrieving revision 1.1 diff -r1.1 patch-src:alc:alc_context.c 1,4c1,3 < --- src/alc/alc_context.c~ Tue Aug 1 02:10:18 2000 < +++ src/alc/alc_context.c Mon Sep 25 19:20:23 2000 < @@ -65,7 +65,7 @@ < static ALCenum _alcDestroyContext(AL_context *cc); --- > --- src/alc/alc_context.c.orig Fri Dec 22 11:37:26 2000 > +++ src/alc/alc_context.c Fri Dec 22 11:37:01 2000 > @@ -80,7 +80,7 @@ 6c5,6 < static int _alcCidToIndex(ALuint cid); --- > static ALuint _alcGenerateNewCid(void); > static ALuint _alcCidToIndex(ALuint cid); 12,13c12,13 < @@ -777,8 +777,8 @@ < return cid - CONTEXT_BASE; --- > @@ -883,8 +883,8 @@ > return -1; 17c17 < - return index + CONTEXT_BASE; --- > - ASSERT(index < (int) al_contexts.size); 19,20c19 < + return idx + CONTEXT_BASE; < } --- > + ASSERT(idx < (int) al_contexts.size); 22c21,22 < /* --- > return al_contexts.map[index]; > } Index: files/patch-src:threads:posixthreads.c =================================================================== RCS file: /usr/home/ncvs/ports/audio/openal/files/patch-src:threads:posixthreads.c,v retrieving revision 1.1 diff -r1.1 patch-src:threads:posixthreads.c 1,3c1,3 < --- src/threads/posixthreads.c~ Mon Aug 28 19:14:08 2000 < +++ src/threads/posixthreads.c Mon Sep 25 19:17:19 2000 < @@ -82,7 +82,7 @@ --- > --- src/threads/posixthreads.c.orig Fri Dec 22 11:39:04 2000 > +++ src/threads/posixthreads.c Fri Dec 22 11:38:33 2000 > @@ -87,7 +87,7 @@ 11c11 < extern void Posix_ExitThread(UNUSED(int retval)) { --- > extern void Posix_ExitThread(int retval) { >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 4:38: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 04:38:04 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id 1994837B402 for ; Fri, 22 Dec 2000 04:38:03 -0800 (PST) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id BAA08234 for ; Sat, 23 Dec 2000 01:38:01 +1300 (NZDT) Message-Id: <200012221238.BAA08234@ducky.nz.freebsd.org> From: "Dan Langille" Organization: langille.org To: freebsd-ports@FreeBSD.ORG Date: Sat, 23 Dec 2000 01:38:00 +1300 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: anyone want to learn XML / work on FreshPorts2? Reply-To: dan@langille.org Priority: normal X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [sorry, I did mean to cc the original message to -hackers but can't type] I plan to parse the cvs-all messages into an XML log. The first stage is to create an XML template. This template will be used by any source tree which wishes to input data into FreshPorts2. But for now, we'll concentrate on cvs-all from FreeBSD. If anyone is interested in giving this a go, we have two tasks: 1 - define the template. This sounds pretty straight forward to me. Take the fields in the log message, compare it to the data stored in the database, and create the XML document template. 2 - take the cvs-all logs and parse them into the XML format. Any takers? -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ NZ ADSL - http://www.unixathome.org/adsl/ NZ Broadband - http://www.unixathome.org/broadband/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 4:45:13 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 04:45:12 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 39B7937B400; Fri, 22 Dec 2000 04:45:12 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMCjCc67947; Fri, 22 Dec 2000 04:45:12 -0800 (PST) (envelope-from roam) Date: Fri, 22 Dec 2000 04:45:12 -0800 (PST) From: Message-Id: <200012221245.eBMCjCc67947@freefall.freebsd.org> To: greid@dogma.freebsd-uk.eu.org, roam@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23726: [PATCH] sysutils/ffsrecov has unfetchable distfile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] sysutils/ffsrecov has unfetchable distfile State-Changed-From-To: open->closed State-Changed-By: roam State-Changed-When: Fri Dec 22 04:37:32 PST 2000 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23726 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 5:33:37 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 05:33:35 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from burka.carrier.kiev.ua (burka.carrier.kiev.ua [193.193.193.107]) by hub.freebsd.org (Postfix) with ESMTP id 6D17637B400 for ; Fri, 22 Dec 2000 05:33:33 -0800 (PST) Received: from laa@localhost by burka.carrier.kiev.ua id PMV40993 for ports@freebsd.org; Fri, 22 Dec 2000 15:33:20 +0200 (EET) (envelope-from laa@lucky.net) X-Authentication-Warning: burka.carrier.kiev.ua: laa set sender to laa@lucky.net using -f Date: Fri, 22 Dec 2000 15:33:20 +0200 From: "Alexandr A. Listopad" To: ports@freebsd.org Subject: avifile fails Message-ID: <20001222153320.A40894@burka.carrier.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ===> Extracting for avifile-0.50 >> Checksum OK for avifile-0.50.tar.gz. >> Checksum mismatch for binaries-000918.zip. Make sure the Makefile and distinfo file (/usr/ports/graphics/avifile/distinfo) are up to date. If you are absolutely sure you want to override this check, type "make NO_CHECKSUM=yes [other args]". *** Error code 1 Stop in /usr/ports/graphics/avifile. *** Error code 1 Stop in /usr/ports/graphics/avifile. *** Error code 1 Stop in /usr/ports/graphics/avifile. *** Error code 1 Stop in /usr/ports/graphics/avifile. *** Error code 1 Stop in /usr/ports/graphics/avifile. *** Error code 1 Stop in /usr/ports/graphics/avifile. -- Laa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 5:50: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 05:50:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 58D1037B402 for ; Fri, 22 Dec 2000 05:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMDo1F76677; Fri, 22 Dec 2000 05:50:01 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 05:50:01 -0800 (PST) Resent-Message-Id: <200012221350.eBMDo1F76677@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, George Reid Received: from mta07-svc.ntlworld.com (mta07-svc.ntlworld.com [62.253.162.47]) by hub.freebsd.org (Postfix) with ESMTP id 1BF9D37B400 for ; Fri, 22 Dec 2000 05:48:58 -0800 (PST) Received: from sobek.openirc.co.uk ([62.252.14.36]) by mta07-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001222134846.XBSB26323.mta07-svc.ntlworld.com@sobek.openirc.co.uk> for ; Fri, 22 Dec 2000 13:48:46 +0000 Message-Id: Date: Fri, 22 Dec 2000 13:52:42 +0000 (GMT) From: George Reid To: FreeBSD-gnats-submit@freebsd.org Subject: ports/23753: [PATCH] audio/mxv has unfetchable distfile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23753 >Category: ports >Synopsis: [PATCH] audio/mxv has unfetchable distfile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 05:50:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD UKUG >Environment: n/a >Description: Port audio/mxv has an unfetchable distfile. Patch updates port to version 1.23PL03. Patches from previous version are merged. >How-To-Repeat: Try to build :) >Fix: Index: Makefile =================================================================== RCS file: /usr/home/ncvs/ports/audio/mxv/Makefile,v retrieving revision 1.11 diff -r1.11 Makefile 9c9 < PORTVERSION= 1.20 --- > PORTVERSION= 1.23PL03 Index: distinfo =================================================================== RCS file: /usr/home/ncvs/ports/audio/mxv/distinfo,v retrieving revision 1.2 diff -r1.2 distinfo 1c1 < MD5 (mxv-v1.20-source.tar.gz) = 742a7d49d5754853ab9dcacfae91c633 --- > MD5 (mxv-v1.23PL03-source.tar.gz) = cadba2e57afb929dd6c2cc520e5f9497 Index: files/patch-ai =================================================================== RCS file: /usr/home/ncvs/ports/audio/mxv/files/patch-ai,v retrieving revision 1.2 diff -r1.2 patch-ai 1,2c1,2 < *** old/vw_converter.C Thu Jan 30 00:22:41 1997 < --- vw_converter.C Mon Jul 12 15:28:20 1999 --- > *** vw_converter.C.orig Mon Mar 27 22:54:58 2000 > --- vw_converter.C Fri Dec 22 13:49:15 2000 4,6c4,7 < *** 27,33 **** < --- 27,37 ---- < #pragma implementation --- > *** 36,42 **** > --- 36,46 ---- > #ifdef DEBUG_MIXER > #include 8d8 < 13a14 > #include 16d16 < #include "vw_converter.h" 18,19c18,20 < *** 114,122 **** < fprintf(stderr, "setting frag size code to 0x%x\n", sizeCode); --- > *** 492,498 **** > --- 496,504 ---- > fprintf(stderr, "attempting to set frag size code to 0x%x\n", sizeCode); 21,31c22 < < if (!ioctl (SNDCTL_DSP_SETFRAGMENT, (char *) &sizeCode)) < error("Unable to set fragment size."); < ! else if (!ioctl(SNDCTL_DSP_SETFMT, (char *) &confirmedFormat)) < error("Unable to set sample format."); < else if(confirmedFormat != sampleFormat) < error("This sample format not supported by hardware."); < --- 118,129 ---- < fprintf(stderr, "setting frag size code to 0x%x\n", sizeCode); < #endif < --- > // we do not check for failure on this 33,37c24,26 < if (!ioctl (SNDCTL_DSP_SETFRAGMENT, (char *) &sizeCode)) < error("Unable to set fragment size."); < ! else < ! #endif < ! if (!ioctl(SNDCTL_DSP_SETFMT, (char *) &confirmedFormat)) --- > ioctl (SNDCTL_DSP_SETFRAGMENT, (char *) &sizeCode); > + #endif > if (!ioctl(SNDCTL_DSP_SETFMT, (char *) &confirmedFormat)) 40d28 < error("This sample format not supported by hardware."); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 6: 3:42 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 06:03:40 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.189]) by hub.freebsd.org (Postfix) with SMTP id 9D1B937B400 for ; Fri, 22 Dec 2000 06:03:37 -0800 (PST) Received: (qmail 51926 invoked by uid 1000); 22 Dec 2000 14:02:37 -0000 Date: Fri, 22 Dec 2000 16:02:37 +0200 From: Peter Pentchev To: "Alexandr A. Listopad" Cc: ports@freebsd.org Subject: Re: avifile fails Message-ID: <20001222160237.D1654@ringworld.oblivion.bg> Mail-Followup-To: "Alexandr A. Listopad" , ports@freebsd.org References: <20001222153320.A40894@burka.carrier.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001222153320.A40894@burka.carrier.kiev.ua>; from laa@lucky.net on Fri, Dec 22, 2000 at 03:33:20PM +0200 Sender: roam@ringworld.nanolink.com Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Dec 22, 2000 at 03:33:20PM +0200, Alexandr A. Listopad wrote: > > ===> Extracting for avifile-0.50 > >> Checksum OK for avifile-0.50.tar.gz. > >> Checksum mismatch for binaries-000918.zip. > Make sure the Makefile and distinfo file (/usr/ports/graphics/avifile/distinfo) > are up to date. If you are absolutely sure you want to override this > check, type "make NO_CHECKSUM=yes [other args]". > *** Error code 1 Can you do ls -l /usr/ports/distfiles/binaries-000918.zip and then md5 /usr/ports/distfiles/binaries-000918.zip, and post the results? I just tried fetching the distfiles, and the checkums come up correct. Or simply rm /usr/ports/distfiles/binaries-000918.zip, and make fetch again; it would seem that something's wrong with your copy. FYI, that's what ls -l and md5 gives me: [roam@freefall ~/tmp/dist]$ ls -l binaries-000918.zip -rw-r--r-- 1 roam roam 1512344 Nov 13 05:29 binaries-000918.zip [roam@freefall ~/tmp/dist]$ md5 binaries-000918.zip MD5 (binaries-000918.zip) = 2b59bf068c7508ad071fa9aca58cd1e7 [roam@freefall ~/tmp/dist]$ G'luck, Peter -- This sentence claims to be an Epimenides paradox, but it is lying. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 6:10:58 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 06:10:56 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from nevermind.kiev.ua (unknown [212.109.53.33]) by hub.freebsd.org (Postfix) with ESMTP id 4BF0C37B402 for ; Fri, 22 Dec 2000 06:10:54 -0800 (PST) Received: (from never@localhost) by nevermind.kiev.ua (8.11.1/8.11.1) id eBMEA1M07656; Fri, 22 Dec 2000 16:10:01 +0200 (EET) (envelope-from never) Date: Fri, 22 Dec 2000 16:10:01 +0200 From: Nevermind To: Peter Pentchev Cc: "Alexandr A. Listopad" , ports@FreeBSD.ORG Subject: Re: avifile fails Message-ID: <20001222161001.C77691@nevermind.kiev.ua> References: <20001222153320.A40894@burka.carrier.kiev.ua> <20001222160237.D1654@ringworld.oblivion.bg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001222160237.D1654@ringworld.oblivion.bg>; from roam@orbitel.bg on Fri, Dec 22, 2000 at 04:02:37PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, Peter Pentchev! On Fri, Dec 22, 2000 at 04:02:37PM +0200, you wrote: [nyam-nyam] > FYI, that's what ls -l and md5 gives me: Wanted to ask: what does it mean: FYI and, for a more complex answer can I find somwhere list of world-known abbreviations? like ASAP, AFAIR and so on? P.S. Sorry for offtopic! -- Alexandr P. Kovalenko http://nevermind.kiev.ua/ NEVE-RIPE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 6:16:34 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 06:16:32 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mta02-svc.ntlworld.com (mta02-svc.ntlworld.com [62.253.162.42]) by hub.freebsd.org (Postfix) with ESMTP id 79DC537B400 for ; Fri, 22 Dec 2000 06:16:31 -0800 (PST) Received: from sobek.openirc.co.uk ([62.252.14.36]) by mta02-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001222141628.BLOX23225.mta02-svc.ntlworld.com@sobek.openirc.co.uk>; Fri, 22 Dec 2000 14:16:28 +0000 Date: Fri, 22 Dec 2000 14:20:16 +0000 (GMT) From: George Reid X-Sender: geeorgy@sobek.openirc.co.uk To: Nevermind Cc: ports@freebsd.org Subject: Re: avifile fails In-Reply-To: <20001222161001.C77691@nevermind.kiev.ua> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 22 Dec 2000, Nevermind wrote: > Wanted to ask: what does it mean: FYI and, for a more complex answer > can I find somwhere list of world-known abbreviations? like ASAP, > AFAIR and so on? > > P.S. Sorry for offtopic! FYI == For Your Information ASAP == As Soon As Possible AFAIR == As Far As I Re[call,member] Try acronymfinder.com for any others. Most of them are obvious to native English speakers, but I can appreciate it is more difficult if your native language is different. G "And then it comes to be that the soothing light at the end of your tunnel was just a freight train, comin' your way." George Reid * greid@ukug.uk.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 6:18:20 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 06:18:18 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from burka.carrier.kiev.ua (burka.carrier.kiev.ua [193.193.193.107]) by hub.freebsd.org (Postfix) with ESMTP id 4B7DB37B400 for ; Fri, 22 Dec 2000 06:18:16 -0800 (PST) Received: from laa@localhost by burka.carrier.kiev.ua id QGW46806; Fri, 22 Dec 2000 16:17:53 +0200 (EET) (envelope-from laa@lucky.net) X-Authentication-Warning: burka.carrier.kiev.ua: laa set sender to laa@lucky.net using -f Date: Fri, 22 Dec 2000 16:17:53 +0200 From: "Alexandr A. Listopad" To: Nevermind Cc: Peter Pentchev , "Alexandr A. Listopad" , ports@FreeBSD.ORG Subject: Re: avifile fails Message-ID: <20001222161753.A46566@burka.carrier.kiev.ua> References: <20001222153320.A40894@burka.carrier.kiev.ua> <20001222160237.D1654@ringworld.oblivion.bg> <20001222161001.C77691@nevermind.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20001222161001.C77691@nevermind.kiev.ua>; from never@nevermind.kiev.ua on Fri, Dec 22, 2000 at 04:10:01PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Dec 22, 2000 at 04:10:01PM +0200, Nevermind wrote: > Hello, Peter Pentchev! > > On Fri, Dec 22, 2000 at 04:02:37PM +0200, you wrote: > > [nyam-nyam] > > FYI, that's what ls -l and md5 gives me: > Wanted to ask: what does it mean: FYI and, for a more complex answer can I find > somwhere list of world-known abbreviations? like ASAP, AFAIR and so on? http://google.yahoo.com/bin/query?p=AFAIK+FYI&hc=0&hs=0 -> http://srd.yahoo.com/goo/AFAIK+FYI/1/*http://kb.indiana.edu/data/adkc.html > P.S. Sorry for offtopic! -- Laa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 6:30:10 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 06:30:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 08C3237B404 for ; Fri, 22 Dec 2000 06:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMEU2q83497; Fri, 22 Dec 2000 06:30:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 06:30:02 -0800 (PST) Resent-Message-Id: <200012221430.eBMEU2q83497@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, Kentaro Inagaki / =?iso-2022-jp?B?GyRCMHAzQBsoQiAbJEI3ckJATzobKEI=?= Received: from serio.al.rim.or.jp (serio.al.rim.or.jp [202.247.191.123]) by hub.freebsd.org (Postfix) with ESMTP id C677D37B402 for ; Fri, 22 Dec 2000 06:26:22 -0800 (PST) Received: from mail2.rim.or.jp by serio.al.rim.or.jp (3.7W/HMX-13) id XAA01393 for ; Fri, 22 Dec 2000 23:26:21 +0900 (JST) Received: from localhost (ngno005n018.ppp.infoweb.ne.jp [211.2.14.130]) by mail2.rim.or.jp (8.9.3/3.7W) id XAA28879 for ; Fri, 22 Dec 2000 23:26:20 +0900 (JST) Message-Id: <20001222.232611.07558925.inagaki@tg.rim.or.jp> Date: Fri, 22 Dec 2000 23:26:11 +0900 (JST) From: Kentaro Inagaki / =?iso-2022-jp?B?GyRCMHAzQBsoQiAbJEI3ckJATzobKEI=?= To: FreeBSD-gnats-submit@freebsd.org Subject: ports/23755: [BUGS] audio/tosha is coredumped Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23755 >Category: ports >Synopsis: bug of original tosha >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 06:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Inagaki Kentaro & >Release: FreeBSD 5.0-CURRENT #9: Wed Dec 20 22:20:29 JST 2000 i386 >Organization: >Environment: >Description: make and install on current. and type next on console. % tosha -i Device: /dev/cd0c -- "RICOH" "MP6201S" "2.40" Segmentation fault (core dumped) >How-To-Repeat: This bug is on original source. >Fix: Please add following patch in "files" directory. This patch fixed coredump problem and compiler warning problem. --- tosha.c.orig Sat Jan 2 08:57:49 1999 +++ tosha.c Fri Dec 22 23:03:54 2000 @@ -240,8 +240,10 @@ return template; if (!(tmpstr = malloc(strlen(template) + strlen(formatspec->ext) - 1))) out_of_memory(); - if ((prefix = cptr - template)) + if ((prefix = cptr - template)) { strncpy (tmpstr, template, prefix); + *(tmpstr + prefix) = '\0'; + } strcat (tmpstr + prefix, formatspec->ext); prefix += strlen(formatspec->ext); strcat (tmpstr + prefix, cptr + 2); @@ -369,11 +371,12 @@ frmctl = trackctl[i]; break; } - if (frmctl < 0) /* Ugh! */ + if (frmctl < 0) { /* Ugh! */ if (numtracks >= 1 && start >= trackstart[1]) frmctl = trackctl[numtracks - 1]; else frmctl = trackctl[0]; + } } if ((frmctl & 4) == 0) return 1; @@ -698,7 +701,7 @@ * Now get us the stuff! */ - if (!indexonly && (singlefile = startsec >= 0 || !strchr(outname, '%'))) + if (!indexonly && (singlefile = startsec >= 0 || !strchr(outname, '%'))) { if (!strcmp(outname, "-")) pcmfd = 1; else { @@ -710,6 +713,7 @@ O_TRUNC, 0644)) < 0) die ("open(output file)"); } + } if (!quiet) print_head(); get_time (&starttime); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 6:30:12 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 06:30:05 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D989637B402 for ; Fri, 22 Dec 2000 06:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMEU1N83486; Fri, 22 Dec 2000 06:30:01 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 06:30:01 -0800 (PST) Resent-Message-Id: <200012221430.eBMEU1N83486@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, leeym@bsd.ce.ntu.edu.tw Received: from www.caece.net (bsd.ce.ntu.edu.tw [140.112.13.1]) by hub.freebsd.org (Postfix) with ESMTP id A301C37B400 for ; Fri, 22 Dec 2000 06:25:34 -0800 (PST) Received: (from leeym@localhost) by www.caece.net (8.11.0/8.11.0) id eBMEPAJ67685; Fri, 22 Dec 2000 22:25:10 +0800 (CST) Message-Id: <200012221425.eBMEPAJ67685@www.caece.net> Date: Fri, 22 Dec 2000 22:25:10 +0800 (CST) From: Yen-Ming Lee Sender: leeym@www.caece.net Reply-To: leeym@bsd.ce.ntu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23754: update port: net/p5-Net-Jabber Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23754 >Category: ports >Synopsis: update port: net/p5-Net-Jabber >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 06:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: 4.x-STABLE >Description: fix another problem of p5-Net-Jabber, remove extra directories: lib/perl5/site_perl/%%PERL_VER%%/mach/auto/Net lib/perl5/site_perl/%%PERL_VER%%/Net >How-To-Repeat: http://bento.freebsd.org/errorlogs/5-latest/p5-Net-Jabber-1.0020.log >Fix: diff -ruN /usr/ports/net/p5-Net-Jabber/pkg-plist p5-Net-Jabber/pkg-plist --- /usr/ports/net/p5-Net-Jabber/pkg-plist Thu Dec 14 01:57:09 2000 +++ p5-Net-Jabber/pkg-plist Fri Dec 22 22:10:11 2000 @@ -50,3 +50,5 @@ @dirrm lib/perl5/site_perl/%%PERL_VER%%/Net/Jabber/Query @dirrm lib/perl5/site_perl/%%PERL_VER%%/Net/Jabber/Data @dirrm lib/perl5/site_perl/%%PERL_VER%%/Net/Jabber +@dirrm lib/perl5/site_perl/%%PERL_VER%%/mach/auto/Net +@dirrm lib/perl5/site_perl/%%PERL_VER%%/Net >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 6:40:10 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 06:40:08 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4071437B400; Fri, 22 Dec 2000 06:40:08 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMEe8486195; Fri, 22 Dec 2000 06:40:08 -0800 (PST) (envelope-from kevlo) Date: Fri, 22 Dec 2000 06:40:08 -0800 (PST) From: Message-Id: <200012221440.eBMEe8486195@freefall.freebsd.org> To: leeym@bsd.ce.ntu.edu.tw, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23754: update port: net/p5-Net-Jabber Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: net/p5-Net-Jabber State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Dec 22 06:39:54 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23754 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 8:10:15 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 08:10:00 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C980537B404 for ; Fri, 22 Dec 2000 08:10:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGA0J74338; Fri, 22 Dec 2000 08:10:00 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 08:10:00 -0800 (PST) Resent-Message-Id: <200012221610.eBMGA0J74338@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C7B8A37B400 for ; Fri, 22 Dec 2000 08:05:24 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMG5Oc72428; Fri, 22 Dec 2000 08:05:24 -0800 (PST) (envelope-from nobody) Message-Id: <200012221605.eBMG5Oc72428@freefall.freebsd.org> Date: Fri, 22 Dec 2000 08:05:24 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23756: Update port: biology/gperiodic to 1.2.6 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23756 >Category: ports >Synopsis: Update port: biology/gperiodic to 1.2.6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 08:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.2.6 New file: files/patch-aa >How-To-Repeat: >Fix: diff -urN /usr/ports/biology/gperiodic/Makefile biology/gperiodic/Makefile --- /usr/ports/biology/gperiodic/Makefile Thu Oct 5 22:40:51 2000 +++ biology/gperiodic/Makefile Wed Dec 20 03:23:38 2000 @@ -6,28 +6,31 @@ # PORTNAME= gperiodic -PORTVERSION= 1.2.2 +PORTVERSION= 1.2.6 CATEGORIES= biology MASTER_SITES= ftp://ftp.seul.org/pub/gperiodic/ MAINTAINER= ports@FreeBSD.org -WRKSRC= ${WRKDIR}/gperiodic +WRKSRC= ${WRKDIR}/${PORTNAME} USE_X_PREFIX= yes -USE_GMAKE= yes USE_GTK= yes +USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" MAN1= gperiodic.1 +post-extract: + @${RM} -f ${WRKSRC}/config.cache + post-install: - ${INSTALL_MAN} ${WRKSRC}/man/gperiodic.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/man/gperiodic.1 ${MANPREFIX}/man/man1 .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/gperiodic -.for file in AUTHORS COPYING Changes README +.for file in AUTHORS Changes README ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/gperiodic .endfor .endif diff -urN /usr/ports/biology/gperiodic/distinfo biology/gperiodic/distinfo --- /usr/ports/biology/gperiodic/distinfo Sat Jan 15 05:30:36 2000 +++ biology/gperiodic/distinfo Wed Dec 20 02:35:59 2000 @@ -1 +1 @@ -MD5 (gperiodic-1.2.2.tar.gz) = 243d70c5665ccb105314a28114f8a1a0 +MD5 (gperiodic-1.2.6.tar.gz) = 719465978b1d6cd98b882e67f6943cfe diff -urN /usr/ports/biology/gperiodic/files/patch-aa biology/gperiodic/files/patch-aa --- /usr/ports/biology/gperiodic/files/patch-aa Thu Jan 1 09:00:00 1970 +++ biology/gperiodic/files/patch-aa Wed Dec 20 03:25:35 2000 @@ -0,0 +1,14 @@ +--- src/gperiodic.c.orig Wed Sep 8 22:42:48 1999 ++++ src/gperiodic.c Wed Dec 20 03:25:27 2000 +@@ -484,10 +484,7 @@ + textdomain (PACKAGE); + bindtextdomain(PACKAGE, GPERIODIC_LOCALE_DIR); + +- lang = getenv("LANG"); +- if( NULL == lang ) { +- lang = "en"; +- } ++ gtk_set_locale(); + + gtk_init(&argc,&argv); + diff -urN /usr/ports/biology/gperiodic/pkg-plist biology/gperiodic/pkg-plist --- /usr/ports/biology/gperiodic/pkg-plist Tue Oct 3 05:40:02 2000 +++ biology/gperiodic/pkg-plist Wed Dec 20 02:50:09 2000 @@ -1,10 +1,11 @@ bin/gperiodic share/doc/gperiodic/AUTHORS -share/doc/gperiodic/COPYING share/doc/gperiodic/Changes share/doc/gperiodic/README share/locale/de/LC_MESSAGES/gperiodic.mo share/locale/es/LC_MESSAGES/gperiodic.mo share/locale/fr/LC_MESSAGES/gperiodic.mo +share/locale/it/LC_MESSAGES/gperiodic.mo +share/locale/nl/LC_MESSAGES/gperiodic.mo share/locale/pt/LC_MESSAGES/gperiodic.mo @dirrm share/doc/gperiodic >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 8:10:17 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 08:10:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF17E37B402 for ; Fri, 22 Dec 2000 08:10:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGA0p74347; Fri, 22 Dec 2000 08:10:00 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 08:10:00 -0800 (PST) Resent-Message-Id: <200012221610.eBMGA0p74347@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A9F537B400 for ; Fri, 22 Dec 2000 08:06:12 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMG6Cb73717; Fri, 22 Dec 2000 08:06:12 -0800 (PST) (envelope-from nobody) Message-Id: <200012221606.eBMG6Cb73717@freefall.freebsd.org> Date: Fri, 22 Dec 2000 08:06:12 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23757: Update port: cad/xcircuit to 2.2.0 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23757 >Category: ports >Synopsis: Update port: cad/xcircuit to 2.2.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 08:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 2.2.0 >How-To-Repeat: >Fix: diff -urN /usr/ports/cad/xcircuit/Makefile cad/xcircuit/Makefile --- /usr/ports/cad/xcircuit/Makefile Mon Dec 4 20:34:23 2000 +++ cad/xcircuit/Makefile Fri Dec 22 00:12:07 2000 @@ -6,7 +6,7 @@ # PORTNAME= xcircuit -PORTVERSION= 2.1b9 +PORTVERSION= 2.2.0 CATEGORIES= cad MASTER_SITES= http://bach.ece.jhu.edu/~tim/programs/xcircuit/archive/ diff -urN /usr/ports/cad/xcircuit/distinfo cad/xcircuit/distinfo --- /usr/ports/cad/xcircuit/distinfo Mon Dec 4 20:34:23 2000 +++ cad/xcircuit/distinfo Thu Dec 21 22:46:25 2000 @@ -1 +1 @@ -MD5 (xcircuit-2.1b9.tar.bz2) = 8a71d302f30b3b4ee7d03c450b671020 +MD5 (xcircuit-2.2.0.tar.bz2) = 2bf570d7072bf1882feb317f2bd9fb68 diff -urN /usr/ports/cad/xcircuit/files/patch-aa cad/xcircuit/files/patch-aa --- /usr/ports/cad/xcircuit/files/patch-aa Fri Oct 20 20:10:48 2000 +++ cad/xcircuit/files/patch-aa Wed Dec 20 02:59:09 2000 @@ -1,5 +1,5 @@ -*** Imakefile.orig Mon Oct 2 23:04:39 2000 ---- Imakefile Fri Oct 13 04:56:42 2000 +*** Imakefile.orig Tue Dec 19 06:19:13 2000 +--- Imakefile Wed Dec 20 02:58:57 2000 *************** *** 28,46 **** #CCOPTIONS = -O2 @@ -14,19 +14,20 @@ #------------------------------------------------------------------------ # ! PREFIX = /usr/local - # XCIRCUIT_LIB_DIR = $(PREFIX)/src/xcircuit-2.1b5/psfiles -! XCIRCUIT_LIB_DIR = $(PREFIX)/lib/xcircuit-2.1 + # XCIRCUIT_LIB_DIR = $(PREFIX)/src/xcircuit-2.2.0/psfiles +! XCIRCUIT_LIB_DIR = $(PREFIX)/lib/xcircuit-2.2 ! XCIRCUIT_BIN_DIR = $(PREFIX)/bin ! XCIRCUIT_MAN_DIR = $(PREFIX)/man/man1 #------------------------------------------------------------------------ # Support for graphics double-buffering (A memory hog, but yields fastest ---- 28,46 ---- +--- 28,47 ---- #CCOPTIONS = -O2 # # for debugging purposes uncomment the following line: ! #CDEBUGFLAGS = -g ! STD_INCLUDES = -I. -I$(INCDIR)/X11 +! EXTRA_DEFINES = -DHAVE_DIRENT_H -DHAVE_PUTENV #------------------------------------------------------------------------ # Installation directories: @@ -34,7 +35,7 @@ #------------------------------------------------------------------------ # ! #PREFIX = /usr/local - # XCIRCUIT_LIB_DIR = $(PREFIX)/src/xcircuit-2.1b5/psfiles + # XCIRCUIT_LIB_DIR = $(PREFIX)/src/xcircuit-2.2.0/psfiles ! XCIRCUIT_LIB_DIR = $(LIBDIR)/xcircuit ! XCIRCUIT_BIN_DIR = $(BINDIR) ! XCIRCUIT_MAN_DIR = $(MANDIR) @@ -50,7 +51,7 @@ #------------------------------------------------------------------------ # Window manager bug workaround---If you don't like xcircuit grabbing kbd ---- 58,64 ---- +--- 59,65 ---- # Support for background rendering through ghostscript. Change this # to the path where gs can be found. # GS_EXEC= /usr/local/src/gs5.50/obj/gs diff -urN /usr/ports/cad/xcircuit/files/patch-ae cad/xcircuit/files/patch-ae --- /usr/ports/cad/xcircuit/files/patch-ae Fri Oct 20 20:10:48 2000 +++ cad/xcircuit/files/patch-ae Wed Dec 20 02:58:45 2000 @@ -1,8 +1,8 @@ -*** filelist.c.orig Thu May 4 06:58:52 2000 ---- filelist.c Fri Oct 13 04:55:01 2000 +*** filelist.c.orig Tue Dec 19 01:31:32 2000 +--- filelist.c Wed Dec 20 02:58:35 2000 *************** -*** 5,12 **** ---- 5,19 ---- +*** 5,11 **** +--- 5,13 ---- #include #include @@ -10,21 +10,5 @@ #include + #endif #include -+ #ifdef __FreeBSD__ -+ #include -+ #include -+ #define direct dirent -+ #else - #ifdef linux - #include - #include -*************** -*** 19,24 **** ---- 26,32 ---- - #else - #include - #include -+ #endif - #endif - #endif - #include + + #ifdef HAVE_DIRENT_H diff -urN /usr/ports/cad/xcircuit/pkg-plist cad/xcircuit/pkg-plist --- /usr/ports/cad/xcircuit/pkg-plist Mon Oct 30 23:30:45 2000 +++ cad/xcircuit/pkg-plist Fri Dec 22 00:07:36 2000 @@ -1,8 +1,8 @@ bin/xcircuit lib/X11/app-defaults/XCircuit lib/X11/xcircuit/analog.lps +lib/X11/xcircuit/analoglib2.lps lib/X11/xcircuit/avlsi.lps -lib/X11/xcircuit/builtins.lps lib/X11/xcircuit/digital.lps lib/X11/xcircuit/fonts/courier.lps lib/X11/xcircuit/fonts/courier.xfe @@ -33,13 +33,13 @@ lib/X11/xcircuit/lgf.lps lib/X11/xcircuit/musiclib.lps lib/X11/xcircuit/signal.lps +lib/X11/xcircuit/startup.script lib/X11/xcircuit/xcircps2.pro share/examples/xcircuit/.xcircuitrc share/examples/xcircuit/USAflag.ps share/examples/xcircuit/analog1.ps share/examples/xcircuit/analog2.ps share/examples/xcircuit/analoglib1.lps -share/examples/xcircuit/analoglib2.lps share/examples/xcircuit/border.ps share/examples/xcircuit/diffamp_test.ps share/examples/xcircuit/logic8.ps >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 8:10:26 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 08:10:18 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2A05837B698 for ; Fri, 22 Dec 2000 08:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGA1L74356; Fri, 22 Dec 2000 08:10:01 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 08:10:01 -0800 (PST) Resent-Message-Id: <200012221610.eBMGA1L74356@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 08C8837B400 for ; Fri, 22 Dec 2000 08:07:07 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMG77Y73806; Fri, 22 Dec 2000 08:07:07 -0800 (PST) (envelope-from nobody) Message-Id: <200012221607.eBMG77Y73806@freefall.freebsd.org> Date: Fri, 22 Dec 2000 08:07:07 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23758: Update port: devel/libcache 1.1.0 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23758 >Category: ports >Synopsis: Update port: devel/libcache 1.1.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 08:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.1.0 New file: files/Makefile.lib Remove file: files/patch-aa >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/libcache/Makefile devel/libcache/Makefile --- /usr/ports/devel/libcache/Makefile Thu Jun 22 19:07:03 2000 +++ devel/libcache/Makefile Thu Dec 21 22:30:36 2000 @@ -6,22 +6,17 @@ # PORTNAME= libcache -PORTVERSION= 1.0.0 +PORTVERSION= 1.1.0 CATEGORIES= devel MASTER_SITES= http://www.afro-productions.com/ MAINTAINER= ports@FreeBSD.org +WRKSRC= ${WRKDIR}/${PORTNAME} + INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--enable-shared -WRKSRC= ${WRKDIR}/libcache -VERSION= 0 -PLIST_SUB+= VERSION="${VERSION}" -MAKE_ENV+= PCFLAGS="${CFLAGS}" -do-install: - @${INSTALL_DATA} ${WRKSRC}/libcache.so ${PREFIX}/lib/libcache.so.${VERSION} - @${LN} -sf ${PREFIX}/lib/libcache.so.${VERSION} ${PREFIX}/lib/libcache.so +pre-build: + @${CP} -f ${FILESDIR}/Makefile.lib ${WRKSRC}/Makefile .include diff -urN /usr/ports/devel/libcache/distinfo devel/libcache/distinfo --- /usr/ports/devel/libcache/distinfo Sun Feb 13 11:00:59 2000 +++ devel/libcache/distinfo Wed Dec 20 03:54:06 2000 @@ -1 +1 @@ -MD5 (libcache-1.0.0.tar.gz) = f4aee79c2c4d1d25ac7f3465df13d4a2 +MD5 (libcache-1.1.0.tar.gz) = faf6d05de057bf1f2ee6d47642068332 diff -urN /usr/ports/devel/libcache/files/Makefile.lib devel/libcache/files/Makefile.lib --- /usr/ports/devel/libcache/files/Makefile.lib Thu Jan 1 09:00:00 1970 +++ devel/libcache/files/Makefile.lib Thu Dec 21 22:34:17 2000 @@ -0,0 +1,12 @@ +LIB= cache + +SHLIB_MAJOR?= 0 +NOPROFILE= yes + +SRCS= src/access.c src/parse.c + +CFLAGS+= -I${.CURDIR}/include + +LIBDIR= ${PREFIX}/lib + +.include diff -urN /usr/ports/devel/libcache/files/patch-aa devel/libcache/files/patch-aa --- /usr/ports/devel/libcache/files/patch-aa Sun Feb 13 11:01:00 2000 +++ devel/libcache/files/patch-aa Thu Jan 1 09:00:00 1970 @@ -1,11 +0,0 @@ ---- src/Makefile.in Wed Dec 22 12:00:17 1999 -+++ src/Makefile.in.new Fri Feb 4 15:13:19 2000 -@@ -6,7 +6,7 @@ - OBJS=parse.o access.o - - --CFLAGS=${DEBUG} ${DEFINES} -Wall -O3 -I. -I../include -c -+CFLAGS=${PCFLAGS} ${DEBUG} ${DEFINES} -Wall -O3 -I. -I../include -c - LIBEXEC=@LIBBIN@ - - all: ${OBJS} diff -urN /usr/ports/devel/libcache/pkg-plist devel/libcache/pkg-plist --- /usr/ports/devel/libcache/pkg-plist Fri Jun 16 17:47:08 2000 +++ devel/libcache/pkg-plist Wed Dec 20 04:15:58 2000 @@ -1,2 +1,3 @@ -lib/libcache.so.%%VERSION%% +lib/libcache.a lib/libcache.so +lib/libcache.so.0 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 8:10:40 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 08:10:28 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7161E37B69D for ; Fri, 22 Dec 2000 08:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGA1R74365; Fri, 22 Dec 2000 08:10:01 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 08:10:01 -0800 (PST) Resent-Message-Id: <200012221610.eBMGA1R74365@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9638737B402 for ; Fri, 22 Dec 2000 08:09:11 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMG9B874218; Fri, 22 Dec 2000 08:09:11 -0800 (PST) (envelope-from nobody) Message-Id: <200012221609.eBMG9B874218@freefall.freebsd.org> Date: Fri, 22 Dec 2000 08:09:11 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23759: Update port: editors/jove Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23759 >Category: ports >Synopsis: Update port: editors/jove >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 08:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Support CFLAGS properly - Support install macros - mktemp() -> mkstemp() - Remove unnecessary manpages New file: files/patch-ad files/patch-ae files/patch-af files/patch-ag >How-To-Repeat: >Fix: diff -urN /usr/ports/editors/jove/Makefile editors/jove/Makefile --- /usr/ports/editors/jove/Makefile Wed May 3 02:23:44 2000 +++ editors/jove/Makefile Wed Dec 20 05:29:01 2000 @@ -7,12 +7,13 @@ PORTNAME= jove PORTVERSION= 4.16 +PORTREVISION= 1 CATEGORIES= editors MASTER_SITES= ftp://ftp.cs.toronto.edu/pub/moraes/jove/ MAINTAINER= ports@FreeBSD.org -WRKSRC= ${WRKDIR}/jove -MAN1= jove.1 teachjove.1 xjove.1 jovetool.1 +WRKSRC= ${WRKDIR}/${PORTNAME} +MAN1= jove.1 teachjove.1 .include diff -urN /usr/ports/editors/jove/files/patch-aa editors/jove/files/patch-aa --- /usr/ports/editors/jove/files/patch-aa Tue Sep 24 22:41:11 1996 +++ editors/jove/files/patch-aa Wed Dec 20 05:39:19 2000 @@ -1,5 +1,5 @@ ---- Makefile.orig Mon Mar 18 22:44:33 1996 -+++ Makefile Sun Sep 22 10:30:41 1996 +--- Makefile.orig Tue Mar 19 13:44:33 1996 ++++ Makefile Wed Dec 20 05:39:12 2000 @@ -27,16 +27,16 @@ # LIBDIR and SHAREDIR. All others must already exist. @@ -22,21 +22,33 @@ # The install commands of BSD and System V differ in unpleasant ways: # -c: copy (BSD); -c dir: destination directory (SysV) -@@ -51,11 +51,11 @@ +@@ -50,12 +50,12 @@ + INSTALLFLAGS = # -g bin -o root # to install executable files - XINSTALL=cp +-XINSTALL=cp -#XINSTALL=/usr/ucb/install $(INSTALLFLAGS) -c -m 755 # -s -+XINSTALL=install $(INSTALLFLAGS) -c -m 755 # -s ++#XINSTALL=cp ++XINSTALL=${BSD_INSTALL_PROGRAM} # to install text files - TINSTALL=cp +-TINSTALL=cp -#TINSTALL=/usr/ucb/install $(INSTALLFLAGS) -c -m 644 -+#TINSTALL=install $(INSTALLFLAGS) -c -m 644 ++#TINSTALL=cp ++TINSTALL=${BSD_INSTALL_DATA} # These should all just be right if the above ones are. # You will confuse JOVE if you move anything from LIBDIR or SHAREDIR. -@@ -163,7 +163,7 @@ +@@ -79,7 +79,7 @@ + # compiler, adding -Xa -v will increase compiler checking. + # On DEC OSF/1, -std1 -O + +-OPTFLAGS = -O ++#OPTFLAGS = -O + + # For making dependencies under BSD systems + DEPENDFLAG = -M +@@ -163,13 +163,13 @@ # # You can just say 'make SYSDEFS=-Dwhatever' on these systems. @@ -45,3 +57,19 @@ # for SCO Xenix, set # MEMFLAGS = -Mle + # CFLAGS = -LARGE -O -F 3000 -K -Mle (say -Mle2 for an 80286) + +-CFLAGS = $(OPTFLAGS) $(SYSDEFS) ++CFLAGS += $(OPTFLAGS) $(SYSDEFS) + + # For SYSVR4 (/usr/ucb/cc will NOT work because of setjmp.h): + # CC = /usr/bin/cc +@@ -213,7 +213,7 @@ + TROFF = troff -Tpost + TROFFPOST = | /usr/lib/lp/postscript/dpost - >troff.out.ps + +-MANUALS = $(JOVEM) $(TEACHJOVEM) $(XJOVEM) $(JOVETOOLM) ++MANUALS = $(JOVEM) $(TEACHJOVEM) # $(XJOVEM) $(JOVETOOLM) + + C_SRC = commands.c commands.tab abbrev.c argcount.c ask.c buf.c c.c case.c jctype.c \ + delete.c disp.c extend.c fp.c fmt.c insert.c io.c iproc.c \ diff -urN /usr/ports/editors/jove/files/patch-ad editors/jove/files/patch-ad --- /usr/ports/editors/jove/files/patch-ad Thu Jan 1 09:00:00 1970 +++ editors/jove/files/patch-ad Wed Dec 20 05:36:50 2000 @@ -0,0 +1,19 @@ +--- abbrev.c.orig Fri Mar 8 02:34:41 1996 ++++ abbrev.c Wed Dec 20 05:19:33 2000 +@@ -274,7 +274,16 @@ + "jabbXXXXXX" + #endif + ); ++#ifndef NO_MKSTEMP ++ { ++ int fd = mkstemp(tname); ++ if ( fd == -1 ) ++ err( 1, "can't create temp file %s", tname ); ++ close( fd ); ++ } ++#else + (void) mktemp(tname); ++#endif + save_abbrevs(tname); + setfname(ebuf, tname); + read_file(tname, NO); diff -urN /usr/ports/editors/jove/files/patch-ae editors/jove/files/patch-ae --- /usr/ports/editors/jove/files/patch-ae Thu Jan 1 09:00:00 1970 +++ editors/jove/files/patch-ae Wed Dec 20 05:36:50 2000 @@ -0,0 +1,19 @@ +--- io.c.orig Fri Mar 8 02:34:42 1996 ++++ io.c Wed Dec 20 05:19:17 2000 +@@ -1193,10 +1193,16 @@ + #endif + ); + tfname = copystr(buf); ++#ifdef NO_MKSTEMP + tfname = mktemp(tfname); ++#endif + #ifndef MSFILESYSTEM ++#ifndef NO_MKSTEMP ++ tmpfd = mkstemp(tfname); ++#else + (void) close(creat(tfname, 0600)); + tmpfd = open(tfname, 2); ++#endif + #else /* MSFILESYSTEM */ + tmpfd = open(tfname, O_CREAT|O_EXCL|O_BINARY|O_RDWR, S_IWRITE|S_IREAD); + #endif /* MSFILESYSTEM */ diff -urN /usr/ports/editors/jove/files/patch-af editors/jove/files/patch-af --- /usr/ports/editors/jove/files/patch-af Thu Jan 1 09:00:00 1970 +++ editors/jove/files/patch-af Wed Dec 20 05:36:50 2000 @@ -0,0 +1,37 @@ +--- proc.c.orig Sat Mar 9 06:46:40 1996 ++++ proc.c Wed Dec 20 05:20:13 2000 +@@ -827,8 +827,14 @@ + int ph; + + swritef(pnbuf, sizeof(pnbuf), "%s/%s", TmpDir, "jpXXXXXX"); ++#ifndef NO_MKSTEMP ++ pipename = pnbuf; ++ ph = mkstemp( pipename ); ++#else + pipename = mktemp(pnbuf); +- if ((ph = creat(pipename, S_IWRITE|S_IREAD)) < 0) ++ ph = creat(pipename, S_IWRITE|S_IREAD); ++#endif ++ if (ph == -1) + complain("cannot make pipe for filter: %s", strerror(errno)); + close(1); + close(2); +@@ -923,7 +929,18 @@ + jmp_buf sav_jmp; + + swritef(tnambuf, sizeof(tnambuf), "%s/%s", TmpDir, "jfXXXXXX"); ++#ifndef NO_MKSTEMP ++ { ++ int fd = mkstemp(tnambuf); ++ if ( fd == -1 ) ++ complain( "can't create temp file %s: %s", ++ tnambuf, strerror(errno) ); ++ close( fd ); ++ tname = tnambuf; ++ } ++#else + tname = mktemp(tnambuf); ++#endif + fp = open_file(tname, iobuff, F_WRITE, YES); + push_env(sav_jmp); + if (setjmp(mainjmp) == 0) { diff -urN /usr/ports/editors/jove/files/patch-ag editors/jove/files/patch-ag --- /usr/ports/editors/jove/files/patch-ag Thu Jan 1 09:00:00 1970 +++ editors/jove/files/patch-ag Wed Dec 20 05:36:50 2000 @@ -0,0 +1,15 @@ +--- rec.c.orig Fri Mar 8 02:34:43 1996 ++++ rec.c Wed Dec 20 05:19:50 2000 +@@ -55,8 +55,12 @@ + #endif + ); + recfname = copystr(buf); ++#ifndef NO_MKSTEMP ++ rec_fd = mkstemp(recfname); ++#else + recfname = mktemp(recfname); + rec_fd = creat(recfname, 0644); ++#endif + if (rec_fd == -1) { + complain("Cannot create \"%s\"; recovery disabled.", recfname); + /*NOTREACHED*/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 8:19:50 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 08:19:48 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B79F37B400; Fri, 22 Dec 2000 08:19:48 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGJmZ76076; Fri, 22 Dec 2000 08:19:48 -0800 (PST) (envelope-from kevlo) Date: Fri, 22 Dec 2000 08:19:48 -0800 (PST) From: Message-Id: <200012221619.eBMGJmZ76076@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23756: Update port: biology/gperiodic to 1.2.6 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: biology/gperiodic to 1.2.6 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Dec 22 08:19:31 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23756 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 8:20:11 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 08:20:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 29F4937B402 for ; Fri, 22 Dec 2000 08:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGK2B76115; Fri, 22 Dec 2000 08:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 08:20:02 -0800 (PST) Resent-Message-Id: <200012221620.eBMGK2B76115@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF0AF37B6AF for ; Fri, 22 Dec 2000 08:10:31 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGAV574432; Fri, 22 Dec 2000 08:10:31 -0800 (PST) (envelope-from nobody) Message-Id: <200012221610.eBMGAV574432@freefall.freebsd.org> Date: Fri, 22 Dec 2000 08:10:31 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23760: Update port: graphics/gnofract4d to 1.4 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23760 >Category: ports >Synopsis: Update port: graphics/gnofract4d to 1.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 08:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.4 >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/gnofract4d/Makefile graphics/gnofract4d/Makefile --- /usr/ports/graphics/gnofract4d/Makefile Fri Oct 13 20:46:22 2000 +++ graphics/gnofract4d/Makefile Tue Dec 19 22:09:41 2000 @@ -6,7 +6,7 @@ # PORTNAME= gnofract4d -PORTVERSION= 1.3 +PORTVERSION= 1.4 CATEGORIES= graphics gnome MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -urN /usr/ports/graphics/gnofract4d/distinfo graphics/gnofract4d/distinfo --- /usr/ports/graphics/gnofract4d/distinfo Fri Oct 13 20:46:22 2000 +++ graphics/gnofract4d/distinfo Tue Dec 19 22:12:49 2000 @@ -1 +1 @@ -MD5 (gnofract4d-1.3.tar.gz) = e512f9adc4206a94a55785feb23f0a4e +MD5 (gnofract4d-1.4.tar.gz) = 2f784ff776eef1bc9aec3657dac06950 diff -urN /usr/ports/graphics/gnofract4d/pkg-plist graphics/gnofract4d/pkg-plist --- /usr/ports/graphics/gnofract4d/pkg-plist Thu Oct 5 16:10:47 2000 +++ graphics/gnofract4d/pkg-plist Tue Dec 19 22:56:27 2000 @@ -13,6 +13,7 @@ share/gnome/help/gnofract4d/C/preferences.html share/gnome/help/gnofract4d/C/toolbar.html share/gnome/help/gnofract4d/C/topic.dat +share/gnome/help/gnofract4d/C/types.html share/gnome/help/gnofract4d/C/xw_plane.gif share/gnome/maps/gnofract4d/4zebbowx.map share/gnome/maps/gnofract4d/anenome.map >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 8:20:15 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 08:20:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 54DBC37B400 for ; Fri, 22 Dec 2000 08:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGK2t76124; Fri, 22 Dec 2000 08:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 08:20:02 -0800 (PST) Resent-Message-Id: <200012221620.eBMGK2t76124@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E71C237B69B for ; Fri, 22 Dec 2000 08:11:24 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGBO274588; Fri, 22 Dec 2000 08:11:24 -0800 (PST) (envelope-from nobody) Message-Id: <200012221611.eBMGBO274588@freefall.freebsd.org> Date: Fri, 22 Dec 2000 08:11:24 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23761: Update port: irc/ezbounce to 0.99.10 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23761 >Category: ports >Synopsis: Update port: irc/ezbounce to 0.99.10 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 08:20:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 0.99.10 New file: pkg-message >How-To-Repeat: >Fix: diff -urN /usr/ports/irc/ezbounce/Makefile irc/ezbounce/Makefile --- /usr/ports/irc/ezbounce/Makefile Tue Jul 4 19:02:11 2000 +++ irc/ezbounce/Makefile Fri Dec 22 01:02:07 2000 @@ -6,7 +6,7 @@ # PORTNAME= ezbounce -PORTVERSION= 0.99.7 +PORTVERSION= 0.99.10 CATEGORIES= irc MASTER_SITES= http://druglord.freelsd.org/ezbounce/ @@ -14,22 +14,26 @@ GNU_CONFIGURE= yes +post-patch: + @${SED} -e "s:/path/to:${PREFIX}/sbin:" ${WRKSRC}/sample.conf > \ + ${WRKSRC}/ezbounce.conf.default + do-install: - @ ${ECHO} ------------------------------------------------------------------ - @ ${ECHO} You will need to read http://druglord.freelsd.org/ezbounce/README - @ ${ECHO} and http://druglord.freelsd.org/ezbounce/mdidentd.README - @ ${ECHO} to set up this program. - @ ${ECHO} Also, edit ${PREFIX}/etc/ezbounce.conf to your liking. - @ ${ECHO} ------------------------------------------------------------------ - ${INSTALL_PROGRAM} -C ${WRKSRC}/ezbounce ${PREFIX}/sbin - ${INSTALL_PROGRAM} -C ${WRKSRC}/mdidentd/mdidentd ${PREFIX}/sbin - @ ${SED} -e s:/path/to:${PREFIX}/sbin: ${WRKSRC}/sample.conf > \ - ${WRKSRC}/sample.conf.new - if [ ! -f ${PREFIX}/etc/ezbounce.conf ]; then \ - ${INSTALL_SCRIPT} -C ${WRKSRC}/sample.conf.new \ - ${PREFIX}/etc/ezbounce.conf; \ - fi - ${INSTALL_SCRIPT} -C ${WRKSRC}/sample.conf.new \ - ${PREFIX}/etc/ezbounce.conf.default + ${INSTALL_PROGRAM} ${WRKSRC}/ezbounce ${PREFIX}/sbin + ${INSTALL_PROGRAM} ${WRKSRC}/mdidentd/mdidentd ${PREFIX}/sbin + ${INSTALL_SCRIPT} ${WRKSRC}/ezbounce.conf.default ${PREFIX}/etc +.if !exists(${PREFIX}/etc/ezbounce.conf) + ${INSTALL_SCRIPT} ${WRKSRC}/ezbounce.conf.default \ + ${PREFIX}/etc/ezbounce.conf +.endif +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/doc/ezbounce + ${INSTALL_DATA} ${WRKSRC}/CHANGES ${PREFIX}/share/doc/ezbounce + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/ezbounce + ${INSTALL_DATA} ${WRKSRC}/TODO ${PREFIX}/share/doc/ezbounce + ${INSTALL_DATA} ${WRKSRC}/mdidentd/README \ + ${PREFIX}/share/doc/ezbounce/mdidentd.README +.endif + @${SED} -e "s:/usr/local:${PREFIX}:g" ${PKGMESSAGE} .include diff -urN /usr/ports/irc/ezbounce/distinfo irc/ezbounce/distinfo --- /usr/ports/irc/ezbounce/distinfo Tue Jul 4 08:19:58 2000 +++ irc/ezbounce/distinfo Fri Dec 22 00:21:59 2000 @@ -1 +1 @@ -MD5 (ezbounce-0.99.7.tar.gz) = 84440b42fda69fd2e7bb7663376d60c5 +MD5 (ezbounce-0.99.10.tar.gz) = e0c58bed6ef84334d948dd905ecafefb diff -urN /usr/ports/irc/ezbounce/pkg-message irc/ezbounce/pkg-message --- /usr/ports/irc/ezbounce/pkg-message Thu Jan 1 09:00:00 1970 +++ irc/ezbounce/pkg-message Fri Dec 22 01:11:41 2000 @@ -0,0 +1,6 @@ +------------------------------------------------------------------ +You will need to read /usr/local/share/doc/ezbounce/README +and /usr/local/share/doc/ezbounce/mdidentd.README to set up +this program. +Also, edit /usr/local/etc/ezbounce.conf to your liking. +------------------------------------------------------------------ diff -urN /usr/ports/irc/ezbounce/pkg-plist irc/ezbounce/pkg-plist --- /usr/ports/irc/ezbounce/pkg-plist Mon Jun 5 15:05:49 2000 +++ irc/ezbounce/pkg-plist Fri Dec 22 01:02:29 2000 @@ -1,5 +1,10 @@ -sbin/ezbounce -sbin/mdidentd @unexec if [ -f %D/etc/ezbounce.conf ] && cmp -s %D/etc/ezbounce.conf %D/etc/ezbounce.conf.default; then rm -f %D/etc/ezbounce.conf; fi etc/ezbounce.conf.default @exec if [ ! -f %D/etc/ezbounce.conf ] ; then cp -p %D/%F %B/ezbounce.conf; fi +sbin/ezbounce +sbin/mdidentd +share/doc/ezbounce/CHANGES +share/doc/ezbounce/README +share/doc/ezbounce/TODO +share/doc/ezbounce/mdidentd.README +@dirrm share/doc/ezbounce >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 8:20:19 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 08:20:11 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 69F2437B699 for ; Fri, 22 Dec 2000 08:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGK2h76133; Fri, 22 Dec 2000 08:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 08:20:02 -0800 (PST) Resent-Message-Id: <200012221620.eBMGK2h76133@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5461437B400 for ; Fri, 22 Dec 2000 08:12:19 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGCJ574704; Fri, 22 Dec 2000 08:12:19 -0800 (PST) (envelope-from nobody) Message-Id: <200012221612.eBMGCJ574704@freefall.freebsd.org> Date: Fri, 22 Dec 2000 08:12:19 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23762: Update port: misc/git to 4.3.20 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23762 >Category: ports >Synopsis: Update port: misc/git to 4.3.20 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 08:20:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 4.3.20 >How-To-Repeat: >Fix: diff -urN /usr/ports/misc/git/Makefile misc/git/Makefile --- /usr/ports/misc/git/Makefile Sat Apr 15 00:28:32 2000 +++ misc/git/Makefile Fri Dec 22 04:36:55 2000 @@ -6,10 +6,10 @@ # PORTNAME= git -PORTVERSION= 4.3.19 +PORTVERSION= 4.3.20 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_GNU} -MASTER_SITE_SUBDIR= git +MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= jseger@FreeBSD.org diff -urN /usr/ports/misc/git/distinfo misc/git/distinfo --- /usr/ports/misc/git/distinfo Tue Nov 16 09:39:04 1999 +++ misc/git/distinfo Fri Dec 22 04:38:20 2000 @@ -1 +1 @@ -MD5 (git-4.3.19.tar.gz) = 43b626807b80b7a540b96154594c09d2 +MD5 (git-4.3.20.tar.gz) = 72b01d5f9905951137ac1bb87d7e431c diff -urN /usr/ports/misc/git/pkg-plist misc/git/pkg-plist --- /usr/ports/misc/git/pkg-plist Tue Nov 16 09:39:07 1999 +++ misc/git/pkg-plist Fri Dec 22 04:51:03 2000 @@ -11,10 +11,12 @@ bin/gitwhich bin/gitwipe bin/gitxgrep +@unexec install-info --delete %D/info/git.info %D/info/dir info/git.info info/git.info-1 info/git.info-2 info/git.info-3 +@exec install-info %D/info/git.info %D/info/dir share/git/.gitrc.aixterm share/git/.gitrc.ansi share/git/.gitrc.common >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 8:20:25 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 08:20:19 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ACE0F37B69D for ; Fri, 22 Dec 2000 08:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGK2e76151; Fri, 22 Dec 2000 08:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 08:20:02 -0800 (PST) Resent-Message-Id: <200012221620.eBMGK2e76151@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B70E337B400 for ; Fri, 22 Dec 2000 08:14:07 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGE7574962; Fri, 22 Dec 2000 08:14:07 -0800 (PST) (envelope-from nobody) Message-Id: <200012221614.eBMGE7574962@freefall.freebsd.org> Date: Fri, 22 Dec 2000 08:14:07 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23764: Update port: x11-fm/mtoolsfm Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23764 >Category: ports >Synopsis: Update port: x11-fm/mtoolsfm >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 08:20:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line >How-To-Repeat: >Fix: diff -urN /usr/ports/x11-fm/mtoolsfm/Makefile x11-fm/mtoolsfm/Makefile --- /usr/ports/x11-fm/mtoolsfm/Makefile Thu Dec 21 21:44:15 2000 +++ x11-fm/mtoolsfm/Makefile Thu Dec 21 22:03:32 2000 @@ -8,7 +8,7 @@ PORTNAME= mtoolsfm PORTVERSION= 1.6 CATEGORIES= x11-fm -MASTER_SITES= http://www.core-coutainville.org/mfm/archive/SOURCES/ +MASTER_SITES= http://www.core-coutainville.org/MToolsFM/archive/SOURCES/ DISTNAME= MToolsFM-${PORTVERSION} MAINTAINER= ports@FreeBSD.org diff -urN /usr/ports/x11-fm/mtoolsfm/pkg-descr x11-fm/mtoolsfm/pkg-descr --- /usr/ports/x11-fm/mtoolsfm/pkg-descr Sat Jan 22 11:31:50 2000 +++ x11-fm/mtoolsfm/pkg-descr Thu Dec 7 23:55:01 2000 @@ -4,4 +4,4 @@ UNIX-like operating systems. It can do simple tasks of a file-manager and makes use of mtools to access floppies. -WWW: http://www.core-coutainville.org/mfm/ +WWW: http://www.core-coutainville.org/MToolsFM/ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 8:20:30 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 08:20:15 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F05937B69B for ; Fri, 22 Dec 2000 08:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGK2C76142; Fri, 22 Dec 2000 08:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 08:20:02 -0800 (PST) Resent-Message-Id: <200012221620.eBMGK2C76142@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 944A537B400 for ; Fri, 22 Dec 2000 08:13:16 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGDGb74858; Fri, 22 Dec 2000 08:13:16 -0800 (PST) (envelope-from nobody) Message-Id: <200012221613.eBMGDGb74858@freefall.freebsd.org> Date: Fri, 22 Dec 2000 08:13:16 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23763: Update port: www/nscache to 0.5 (fix ports/23630) Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23763 >Category: ports >Synopsis: Update port: www/nscache to 0.5 (fix ports/23630) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 08:20:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 0.5 New file: files/patch-ac This PR supersedes ports/23630. >How-To-Repeat: >Fix: diff -urN /usr/ports/www/nscache/Makefile www/nscache/Makefile --- /usr/ports/www/nscache/Makefile Thu Oct 5 23:08:39 2000 +++ www/nscache/Makefile Thu Dec 21 21:14:31 2000 @@ -6,21 +6,30 @@ # PORTNAME= nscache -PORTVERSION= 0.2p2 +PORTVERSION= 0.5 CATEGORIES= www -MASTER_SITES= http://www.idata.sk/~ondrej/sw/ -DISTNAME= nscache-0.2pl2 +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ + http://www.idata.sk/~ondrej/sw/ +MASTER_SITE_SUBDIR= ${PORTNAME} EXTRACT_SUFX= .tgz MAINTAINER= kris@FreeBSD.org +USE_X_PREFIX= yes USE_GTK= yes +WANT_GNOME= yes USE_AUTOMAKE= yes -AUTOMAKE= automake -a -i -CONFIGURE_ENV= CPPFALGS="-I${LOCALBASE}/include" \ +AUTOMAKE_ARGS= --include-deps +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --with-gtk-config=${GTK_CONFIG} -pre-configure: - @cd ${WRKSRC}; aclocal -I ${X11BASE}/share/aclocal +.include -.include +.if defined(HAVE_GNOME) +USE_GNOME= yes +.else +CONFIGURE_ARGS+= --disable-gnome +.endif + +.include diff -urN /usr/ports/www/nscache/distinfo www/nscache/distinfo --- /usr/ports/www/nscache/distinfo Sun Mar 5 19:15:03 2000 +++ www/nscache/distinfo Thu Dec 21 21:20:24 2000 @@ -1 +1 @@ -MD5 (nscache-0.2pl2.tgz) = e95b59b90d7e1f567e2263853be26f7b +MD5 (nscache-0.5.tgz) = 45005c77f4ca902716237f5f2e28a5ae diff -urN /usr/ports/www/nscache/files/patch-aa www/nscache/files/patch-aa --- /usr/ports/www/nscache/files/patch-aa Sat Jul 8 04:59:14 2000 +++ www/nscache/files/patch-aa Thu Dec 21 21:52:33 2000 @@ -1,22 +1,32 @@ ---- configure.in.orig Sun Jan 16 02:40:55 2000 -+++ configure.in Sat Jul 1 19:10:54 2000 -@@ -41,17 +41,11 @@ +--- configure.in.orig Wed Dec 20 05:25:07 2000 ++++ configure.in Thu Dec 21 21:52:26 2000 +@@ -59,7 +59,7 @@ AC_CHECK_LIB(c, gettext, CFLAGS="$CFLAGS -DHAVE_GETTEXT -DNLS_DIR=\"\\\"\$(prefix)/share/locale\\\"\"";MSUBDIRS="po", AC_CHECK_LIB(intl, gettext, LIBS="$LIBS -lintl";CFLAGS="$CFLAGS -DHAVE_GETTEXT -DNLS_DIR=\"\\\"\$(prefix)/share/locale\\\"\"";MSUBDIRS="po")) --AC_CHECK_LIB(db1, dbopen, CFLAGS="$CFLAGS -DHAVE_DBOPEN";LIBS="$LIBS -ldb1", AC_CHECK_LIB(db, dbopen, CFLAGS="$CFLAGS -DHAVE_DBOPEN";LIBS="$LIBS -ldb", AC_MSG_ERROR("NScache can\'t work withou clasical Berkeley DB libraries"))) -+AC_CHECK_LIB(db1, dbopen, CFLAGS="$CFLAGS -DHAVE_DBOPEN";LIBS="$LIBS -ldb1", AC_CHECK_LIB(c, dbopen, CFLAGS="$CFLAGS -DHAVE_DBOPEN", AC_MSG_ERROR("NScache can\'t work withou clasical Berkeley DB libraries"))) +-AC_CHECK_LIB(db1, dbopen, CFLAGS="$CFLAGS -DHAVE_DBOPEN";LIBS="$LIBS -ldb1", AC_CHECK_LIB(db, dbopen, AC_CHECK_LIB(db, txn_open, AC_MSG_ERROR("NScache can\'t work with your version of Berkeley DB library get version 1.8x"), CFLAGS="$CFLAGS -DHAVE_DBOPEN";LIBS="$LIBS -ldb"), AC_MSG_ERROR("NScache can\'t work withou Berkeley DB library try to download version 1.8x from www.sleepycat.com"))) ++AC_CHECK_LIB(c, dbopen, CFLAGS="$CFLAGS -DHAVE_DBOPEN", AC_CHECK_LIB(db1, dbopen, CFLAGS="$CFLAGS -DHAVE_DBOPEN";LIBS="$LIBS -ldb1", AC_CHECK_LIB(db, dbopen, AC_CHECK_LIB(db, txn_open, AC_MSG_ERROR("NScache can\'t work with your version of Berkeley DB library get version 1.8x"), CFLAGS="$CFLAGS -DHAVE_DBOPEN";LIBS="$LIBS -ldb"), AC_MSG_ERROR("NScache can\'t work withou Berkeley DB library try to download version 1.8x from www.sleepycat.com")))) - AC_CHECK_HEADER(db1/db.h, CFLAGS="$CFLAGS -DHAVE_DB1_H", AC_CHECK_HEADER(db.h, CFLAGS="$CFLAGS -DHAVE_DB_H")) + AC_CHECK_HEADER(db1/db.h, CFLAGS="$CFLAGS -DHAVE_DB1_H",AC_CHECK_HEADER(db_185.h, CFLAGS="$CFLAGS -DHAVE_DB185_H", AC_CHECK_HEADER(db.h, CFLAGS="$CFLAGS -DHAVE_DB_H"))) --AC_CHECK_PROG(GTK_CONFIG, gtk-config, "yes", "no") --if eval "test x$GTK_CONFIG = xyes"; then -- CFLAGS="$CFLAGS `gtk-config --cflags`" -- LIBS="$LIBS `gtk-config --libs`" --else -- AC_MSG_ERROR("Unable to find \"gtk-config\" program") --fi -+AM_PATH_GTK(1.2.0, , AC_MSG_ERROR(GTK+ is not installed or badly configured on your system...)) +@@ -195,13 +195,15 @@ + fi - AC_SUBST(CFLAGS) - AC_SUBST(LIBS) + if eval "test x$WITH_GNOME = xyes"; then +- AC_CHECK_PROG(GNOME_CONFIG, gnome-config, "yes", "no") +- if eval "test x$GNOME_CONFIG = xyes"; then +- GNOME_PREFIX=`gnome-config --prefix` ++ AC_PATH_PROG(GNOME_CONFIG, gnome-config, "no") ++ if eval "test x$GNOME_CONFIG = no"; then ++ GNOME_PREFIX= ++ else ++ GNOME_PREFIX=`$GNOME_CONFIG --prefix` + AC_WARN("Will install Gnome things to $GNOME_PREFIX") + if eval "test x$WITH_GNOME = xyes"; then +- GNOME_LIBS=`gnome-config --libs gnomeui` +- GNOME_CFLAGS=`gnome-config --cflags gnomeui` ++ GNOME_LIBS=`$GNOME_CONFIG --libs gnomeui` ++ GNOME_CFLAGS=`$GNOME_CONFIG --cflags gnomeui` + GNOME_CFLAGS="$GNOME_CFLAGS -DHAVE_GNOME" + fi + fi diff -urN /usr/ports/www/nscache/files/patch-ab www/nscache/files/patch-ab --- /usr/ports/www/nscache/files/patch-ab Sat Jul 8 04:59:14 2000 +++ www/nscache/files/patch-ab Thu Dec 21 21:27:09 2000 @@ -1,19 +1,25 @@ ---- Makefile.am.orig Tue Jan 18 04:49:06 2000 -+++ Makefile.am Sat Jul 1 20:03:06 2000 -@@ -1,5 +1,7 @@ - SUBDIRS = @MSUBDIRS@ +--- Makefile.am.orig Thu Oct 5 07:38:32 2000 ++++ Makefile.am Thu Dec 21 21:26:59 2000 +@@ -6,16 +6,16 @@ -+INCLUDES = $(GTK_CFLAGS) -+ - bin_PROGRAMS = nscache + install-data-local: + if test -n "$(GNOME_PREFIX)"; then \ +- $(mkinstalldirs) $(DESTDIR)$(GNOME_PREFIX)/share/gnome/apps/Internet; \ +- $(INSTALL_DATA) $(srcdir)/nscache.desktop $(DESTDIR)$(GNOME_PREFIX)/share/gnome/apps/Internet; \ +- $(mkinstalldirs) $(DESTDIR)$(GNOME_PREFIX)/share/pixmaps; \ +- $(INSTALL_DATA) $(srcdir)/nscache.xpm $(DESTDIR)$(GNOME_PREFIX)/share/pixmaps; \ ++ $(mkinstalldirs) $(DESTDIR)$(datadir)/apps/Internet; \ ++ $(INSTALL_DATA) $(srcdir)/nscache.desktop $(DESTDIR)$(datadir)/apps/Internet; \ ++ $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps; \ ++ $(INSTALL_DATA) $(srcdir)/nscache.xpm $(DESTDIR)$(datadir)/pixmaps; \ + fi + + uninstall-local: + if test -n "$(GNOME_PREFIX)"; then \ +- rm -f $(DESTDIR)$(GNOME_PREFIX)/share/gnome/apps/Internet/nscache.desktop; \ +- rm -f $(DESTDIR)$(GNOME_PREFIX)/share/pixmaps/nscache.xpm; \ ++ rm -f $(DESTDIR)$(datadir)/apps/Internet/nscache.desktop; \ ++ rm -f $(DESTDIR)$(datadir)/pixmaps/nscache.xpm; \ + fi - nscache_SOURCES = \ -@@ -12,6 +14,8 @@ - indexdb.h \ - nls.h \ - setup.c -+ -+nscache_LDADD = $(GTK_LIBS) - nscache.pot: $(nscache_SOURCES) - xgettext --default-domain=nscache -n -E -o $@ $(nscache_SOURCES) diff -urN /usr/ports/www/nscache/files/patch-ac www/nscache/files/patch-ac --- /usr/ports/www/nscache/files/patch-ac Thu Jan 1 09:00:00 1970 +++ www/nscache/files/patch-ac Thu Dec 21 22:01:12 2000 @@ -0,0 +1,10 @@ +--- src/re.h.orig Sun Nov 12 23:09:38 2000 ++++ src/re.h Thu Dec 21 22:00:06 2000 +@@ -3,6 +3,7 @@ + + #ifdef HAVE_REGEX + #ifdef HAVE_REGEX_H ++#include + #include + #endif + diff -urN /usr/ports/www/nscache/pkg-descr www/nscache/pkg-descr --- /usr/ports/www/nscache/pkg-descr Sun Mar 5 19:15:05 2000 +++ www/nscache/pkg-descr Wed Dec 6 04:26:51 2000 @@ -19,4 +19,4 @@ The viewers you can assign to any MIME type. You can also copy selected URL to clipboard. -WWW: http://www.idata.sk/~ondrej/ +WWW: http://www.idata.sk/~ondrej/nscache/ diff -urN /usr/ports/www/nscache/pkg-plist www/nscache/pkg-plist --- /usr/ports/www/nscache/pkg-plist Sat Jul 8 04:59:14 2000 +++ www/nscache/pkg-plist Tue Dec 19 04:14:14 2000 @@ -1,4 +1,9 @@ bin/nscache share/locale/de/LC_MESSAGES/nscache.mo +share/locale/fr/LC_MESSAGES/nscache.mo share/locale/it/LC_MESSAGES/nscache.mo +share/locale/ja/LC_MESSAGES/nscache.mo +share/locale/pt_BR/LC_MESSAGES/nscache.mo share/locale/sk/LC_MESSAGES/nscache.mo +%%GNOME:%%share/gnome/apps/Internet/nscache.desktop +%%GNOME:%%share/gnome/pixmaps/nscache.xpm >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 8:20:32 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 08:20:25 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C695237B69F for ; Fri, 22 Dec 2000 08:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGK2n76160; Fri, 22 Dec 2000 08:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 08:20:02 -0800 (PST) Resent-Message-Id: <200012221620.eBMGK2n76160@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, tkato@prontomail.ne.jp Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A0AC337B400 for ; Fri, 22 Dec 2000 08:15:08 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGF8J75128; Fri, 22 Dec 2000 08:15:08 -0800 (PST) (envelope-from nobody) Message-Id: <200012221615.eBMGF8J75128@freefall.freebsd.org> Date: Fri, 22 Dec 2000 08:15:08 -0800 (PST) From: tkato@prontomail.ne.jp Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23765: Update port: x11-wm/libepplets Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23765 >Category: ports >Synopsis: Update port: x11-wm/libepplets >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 08:20:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Add secondary site to MASTER_SITES - Fix dependency - Use USE_LIBTOOL >How-To-Repeat: >Fix: diff -urN /usr/ports/x11-wm/libepplet/Makefile x11-wm/libepplet/Makefile --- /usr/ports/x11-wm/libepplet/Makefile Tue Jul 18 14:37:54 2000 +++ x11-wm/libepplet/Makefile Fri Dec 22 04:26:48 2000 @@ -8,24 +8,24 @@ PORTNAME= libepplet PORTVERSION= 0.5 CATEGORIES= x11-wm devel -MASTER_SITES= ftp://ftp.enlightenment.org/e/epplets/ +MASTER_SITES= ftp://ftp.enlightenment.org/e/epplets/ \ + ftp://ftp.dti.ad.jp/pub/X/enlightenment/epplets/ + DISTNAME= epplet-base-${PORTVERSION} MAINTAINER= ports@FreeBSD.org -BUILD_DEPENDS= enlightenment:${PORTSDIR}/x11-wm/enlightenment - -WRKSRC= ${WRKDIR}/Epplets-0.5 +WRKSRC= ${WRKDIR}/Epplets-${PORTVERSION} USE_X_PREFIX= yes -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-fsstd +USE_IMLIB= yes +USE_LIBTOOL= yes CONFIGURE_ENV= EROOT=${X11BASE}/share/enlightenment \ - EBIN=${X11BASE}/bin \ - LIBS="-L${LOCALBASE}/lib -lintl" \ - X_LIBS="-lxpg4" + EBIN=${X11BASE}/bin +CONFIGURE_ARGS= --enable-fsstd +INSTALLS_SHLIB= yes -MAKE_ENV= ${ECHO} -n; cd ${WRKSRC}/api; +pre-patch: + @${PERL} -pi -e 's|api epplets|api|g' ${WRKSRC}/Makefile.in .include diff -urN /usr/ports/x11-wm/libepplet/pkg-plist x11-wm/libepplet/pkg-plist --- /usr/ports/x11-wm/libepplet/pkg-plist Tue Jul 18 14:38:04 2000 +++ x11-wm/libepplet/pkg-plist Fri Dec 22 03:21:31 2000 @@ -1,5 +1,4 @@ include/epplet.h lib/libepplet.a -lib/libepplet.la lib/libepplet.so lib/libepplet.so.1 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 8:26:32 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 08:26:30 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C144437B400; Fri, 22 Dec 2000 08:26:30 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGQUW77129; Fri, 22 Dec 2000 08:26:30 -0800 (PST) (envelope-from kevlo) Date: Fri, 22 Dec 2000 08:26:30 -0800 (PST) From: Message-Id: <200012221626.eBMGQUW77129@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23757: Update port: cad/xcircuit to 2.2.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: cad/xcircuit to 2.2.0 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Dec 22 08:26:14 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23757 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 8:33:21 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 08:33:20 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5335637B404; Fri, 22 Dec 2000 08:33:20 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGXKM78223; Fri, 22 Dec 2000 08:33:20 -0800 (PST) (envelope-from kevlo) Date: Fri, 22 Dec 2000 08:33:20 -0800 (PST) From: Message-Id: <200012221633.eBMGXKM78223@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23758: Update port: devel/libcache 1.1.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: devel/libcache 1.1.0 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Dec 22 08:32:56 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23758 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 8:36:54 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 08:36:48 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from gandalf.lebel.org (modemcable004.115-201-24.mtl.mc.videotron.ca [24.201.115.4]) by hub.freebsd.org (Postfix) with SMTP id 78F6E37B400 for ; Fri, 22 Dec 2000 08:36:47 -0800 (PST) Received: (qmail 8784 invoked by uid 1001); 22 Dec 2000 16:36:22 -0000 Date: Fri, 22 Dec 2000 11:36:22 -0500 From: David Lebel To: freebsd-ports@freebsd.org Subject: (fwd) ports/23298: New port: lame-devel 3.87 Message-ID: <20001222113622.A24195@lebel.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="SUOF0GtieIMvvwua" Content-Disposition: inline User-Agent: Mutt/1.2.5i Organization: None whatsover. X-URL: http://www.lebel.org/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --SUOF0GtieIMvvwua Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello! I didn't receive any feedback from this new port. Is there any chance that it'll get commited? lame 3.87 adds quite a few new features and is a lot faster than the current version. If there is something wrong with my port, please let me know. Ciao, ...David ----- Forwarded message from David Lebel ----- From: David Lebel To: FreeBSD-gnats-submit@freebsd.org Subject: ports/23298: New port: lame-devel 3.87 Date: 5 Dec 2000 16:27:36 -0000 Reply-To: David Lebel >Number: 23298 >Category: ports >Synopsis: New port: lame-devel 3.87 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: =20 >Keywords: =20 >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Dec 05 08:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: David Lebel >Release: FreeBSD 4.2-STABLE i386 >Organization: None whatsoever. >Environment: >Description: LAME originally stood for LAME Ain't an Mp3 Encoder.=20 Following the great history of GNU naming, LAME originally stood for LAME A= in't an Mp3 Encoder. LAME started life as a GPL'd patch against the dist10 ISO demonstration source, and thus was incapable of producing an mp3 stream or = even being compiled by itself. But in May 2000, the last remnants of the ISO source code were replaced, and now LAME is the source code for a fully GPL'd MP3 encoder, with speed and quality to rival all commercial competitors. LAME is an educational tool to be used for learning about MP3 encoding. The goal of the LAME project is to use the open source model to improve the psy= cho acoustics, noise shaping and speed of MP3. Another goal of the LAME projec= t is to use these improvements for the basis of a patent free audio compression codec for the GNU project. In Beta: MPEG 2.5 support=20 No more patching! Full source code distribution since all ISO code has b= een=20 replaced!=20 free format encoding and decoding=20 Vorbis audio codec support, for both encoding and decoding.=20 As always, more speed and better quality.=20 WWW: http://lame.sourceforge.net/ >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # lame-devel # lame-devel/files # lame-devel/Makefile # lame-devel/distinfo # lame-devel/pkg-comment # lame-devel/pkg-descr # lame-devel/pkg-plist # echo c - lame-devel mkdir -p lame-devel > /dev/null 2>&1 echo c - lame-devel/files mkdir -p lame-devel/files > /dev/null 2>&1 echo x - lame-devel/Makefile sed 's/^X//' >lame-devel/Makefile << 'END-of-lame-devel/Makefile' X# ports collection makefile for: lame-devel X# Date created: 16 October 2000 X# Whom: David Lebel X# X# $FreeBSD$ X# X XPORTNAME=3D lame XPORTVERSION=3D 3.87 XCATEGORIES=3D audio XMASTER_SITES=3D http://lame.sourceforge.net/download/beta/ XDISTNAME=3D lame3.87beta X XMAINTAINER=3D lebel@lebel.org X XWRKSRC=3D ${WRKDIR}/lame3.87 XUSE_GMAKE=3D yes XGNU_CONFIGURE=3D yes XCONFIGURE_ARGS=3D --enable-analyzer=3Dno XALL_TARGET=3D lame X XMAN1=3D lame.1 X X.include X X.if defined(WITH_VORBIS) XLIB_DEPENDS+=3D vorbis.0:${PORTSDIR}/audio/libvorbis XCONFIGURE_ARGS+=3D --with-vorbis --with-vorbis-prefix=3D${LOCALBASE} X.endif X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/lame ${PREFIX}/bin X ${INSTALL_MAN} ${WRKSRC}/doc/man/lame.1 ${PREFIX}/man/man1 X.if !defined(NOPORTDOCS) X @${MKDIR} ${PREFIX}/share/doc/lame X ${INSTALL_DATA} ${WRKSRC}/doc/html/*.html \ X ${WRKSRC}/doc/html/*.css ${PREFIX}/share/doc/lame X.endif X X.include END-of-lame-devel/Makefile echo x - lame-devel/distinfo sed 's/^X//' >lame-devel/distinfo << 'END-of-lame-devel/distinfo' XMD5 (lame3.87beta.tar.gz) =3D 0c0f6f4aab5963be12509657d5dccd5c END-of-lame-devel/distinfo echo x - lame-devel/pkg-comment sed 's/^X//' >lame-devel/pkg-comment << 'END-of-lame-devel/pkg-comment' Xfully GPL'd MP3 encoder. END-of-lame-devel/pkg-comment echo x - lame-devel/pkg-descr sed 's/^X//' >lame-devel/pkg-descr << 'END-of-lame-devel/pkg-descr' XLAME originally stood for LAME Ain't an Mp3 Encoder.=20 X XFollowing the great history of GNU naming, LAME originally stood for LAME = Ain't Xan Mp3 Encoder. LAME started life as a GPL'd patch against the dist10 ISO Xdemonstration source, and thus was incapable of producing an mp3 stream or= even Xbeing compiled by itself. But in May 2000, the last remnants of the ISO Xsource code were replaced, and now LAME is the source code for a fully GPL= 'd XMP3 encoder, with speed and quality to rival all commercial competitors. X XLAME is an educational tool to be used for learning about MP3 encoding. T= he Xgoal of the LAME project is to use the open source model to improve the ps= ycho Xacoustics, noise shaping and speed of MP3. Another goal of the LAME proje= ct is Xto use these improvements for the basis of a patent free audio compression Xcodec for the GNU project. X XIn Beta: X MPEG 2.5 support=20 X No more patching! Full source code distribution since all ISO code = has been=20 X replaced!=20 X free format encoding and decoding=20 X Vorbis audio codec support, for both encoding and decoding.=20 X As always, more speed and better quality.=20 X XWWW: http://lame.sourceforge.net/ END-of-lame-devel/pkg-descr echo x - lame-devel/pkg-plist sed 's/^X//' >lame-devel/pkg-plist << 'END-of-lame-devel/pkg-plist' Xbin/lame Xshare/doc/lame/contributors.html Xshare/doc/lame/examples.html Xshare/doc/lame/history.html Xshare/doc/lame/id3.html Xshare/doc/lame/index.html Xshare/doc/lame/lame.css Xshare/doc/lame/modes.html Xshare/doc/lame/node5.html Xshare/doc/lame/node6.html Xshare/doc/lame/node7.html Xshare/doc/lame/switchs.html X@dirrm share/doc/lame END-of-lame-devel/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message ----- End forwarded message ----- --=20 // david lebel // nobiaze' Inc. // http://www.lebel.org/ // http://www.nobiaze.com/ // pgp: 3633 6999 D47E 73ED 099F // vox: (514) 943.3045 4341 08A4 8E48 EF56 61D1 // fax: (514) 938.8881 --SUOF0GtieIMvvwua Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (OpenBSD) Comment: For info see http://www.gnupg.org iD8DBQE6Q4MGCKSOSO9WYdERAov9AJ9tq/GcqKcsVIAXn2drqGDFM1OMZwCdHEAB yHjqKxFt8i4FwatI6HCqSsQ= =irZK -----END PGP SIGNATURE----- --SUOF0GtieIMvvwua-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 8:42:39 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 08:42:38 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D98037B400; Fri, 22 Dec 2000 08:42:38 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGgcW79661; Fri, 22 Dec 2000 08:42:38 -0800 (PST) (envelope-from kevlo) Date: Fri, 22 Dec 2000 08:42:38 -0800 (PST) From: Message-Id: <200012221642.eBMGgcW79661@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23759: Update port: editors/jove Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: editors/jove State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Dec 22 08:42:26 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23759 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 8:50: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 08:50:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0FB1E37B402; Fri, 22 Dec 2000 08:50:03 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGo3F80874; Fri, 22 Dec 2000 08:50:03 -0800 (PST) (envelope-from kevlo) Date: Fri, 22 Dec 2000 08:50:03 -0800 (PST) From: Message-Id: <200012221650.eBMGo3F80874@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23760: Update port: graphics/gnofract4d to 1.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/gnofract4d to 1.4 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Dec 22 08:49:50 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23760 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 8:55:26 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 08:55:24 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A3B2D37B400; Fri, 22 Dec 2000 08:55:24 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGtOB81613; Fri, 22 Dec 2000 08:55:24 -0800 (PST) (envelope-from kevlo) Date: Fri, 22 Dec 2000 08:55:24 -0800 (PST) From: Message-Id: <200012221655.eBMGtOB81613@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23761: Update port: irc/ezbounce to 0.99.10 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: irc/ezbounce to 0.99.10 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Dec 22 08:55:09 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23761 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 8:59:36 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 08:59:35 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3C65737B400; Fri, 22 Dec 2000 08:59:35 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMGxZt82221; Fri, 22 Dec 2000 08:59:35 -0800 (PST) (envelope-from kevlo) Date: Fri, 22 Dec 2000 08:59:35 -0800 (PST) From: Message-Id: <200012221659.eBMGxZt82221@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23764: Update port: x11-fm/mtoolsfm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: x11-fm/mtoolsfm State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Fri Dec 22 08:59:24 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23764 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 9:10: 6 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 09:10:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0CB7537B400 for ; Fri, 22 Dec 2000 09:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMHA2o85652; Fri, 22 Dec 2000 09:10:02 -0800 (PST) (envelope-from gnats) Date: Fri, 22 Dec 2000 09:10:02 -0800 (PST) Message-Id: <200012221710.eBMHA2o85652@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: Re: ports/23245 [PATCH] sscalc-1.0 Reply-To: Will Andrews Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23245; it has been noted by GNATS. From: Will Andrews To: kew@icehouse.net Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/23245 [PATCH] sscalc-1.0 Date: Fri, 22 Dec 2000 12:01:06 -0500 On Thu, Dec 21, 2000 at 08:00:03AM -0800, kew@icehouse.net wrote: > This patch makes it clear that the program has always been > able to accept latitude and longitude via the command line. :-) As you wish. :-) -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 9:10:32 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 09:10:30 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mailout02.sul.t-online.com (mailout02.sul.t-online.com [194.25.134.17]) by hub.freebsd.org (Postfix) with ESMTP id A9F7C37B400 for ; Fri, 22 Dec 2000 09:10:29 -0800 (PST) Received: from fwd01.sul.t-online.com by mailout02.sul.t-online.com with smtp id 149Vi7-0004h7-03; Fri, 22 Dec 2000 18:10:27 +0100 Received: from neutron.cichlids.com (520050424122-0001@[62.225.195.200]) by fmrl01.sul.t-online.com with esmtp id 149VhP-1QuZRgC; Fri, 22 Dec 2000 18:09:43 +0100 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id ACC9EAB0C; Fri, 22 Dec 2000 18:09:45 +0100 (CET) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id B753114A72; Fri, 22 Dec 2000 18:09:26 +0100 (CET) Date: Fri, 22 Dec 2000 18:09:26 +0100 To: David Lebel Cc: freebsd-ports@FreeBSD.ORG Subject: Re: (fwd) ports/23298: New port: lame-devel 3.87 Message-ID: <20001222180926.A3930@cichlids.cichlids.com> Mail-Followup-To: alex@cichlids.cichlids.com, David Lebel , freebsd-ports@FreeBSD.ORG References: <20001222113622.A24195@lebel.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001222113622.A24195@lebel.org>; from lebel@lebel.org on Fri, Dec 22, 2000 at 11:36:22AM -0500 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. From: alex@big.endian.de (Alexander Langer) X-Sender: 520050424122-0001@t-dialin.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake David Lebel (lebel@lebel.org): > I didn't receive any feedback from this new port. Is there any chance > that it'll get commited? lame 3.87 adds quite a few new features and > is a lot faster than the current version. If there is something wrong > with my port, please let me know. Two general things: 1.) Is there really a need for a -devel version in the tree, too? 2.) since we already have audio/lame, you should better produce a diff against this version, SINCE the audio/lame will be repo-copied. do a diff -rNu lame lame-devel Thanks Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 9:11:33 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 09:11:32 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (poynting.physics.purdue.edu [128.210.146.58]) by hub.freebsd.org (Postfix) with ESMTP id F398F37B400; Fri, 22 Dec 2000 09:11:31 -0800 (PST) Received: from argon.firepipe.net (pm002-036.dialup.bignet.net [64.79.80.84]) by puck.firepipe.net (Postfix) with ESMTP id 335EA1A3A; Fri, 22 Dec 2000 12:11:31 -0500 (EST) Received: by argon.firepipe.net (Postfix, from userid 1000) id 4D7551911; Fri, 22 Dec 2000 12:07:08 -0500 (EST) Date: Fri, 22 Dec 2000 12:07:07 -0500 From: Will Andrews To: roam@FreeBSD.ORG Cc: freebsd-ports@FreeBSD.ORG, obrien@FreeBSD.ORG Subject: Re: ports/23732: [PATCH] devel/cs has unfetchable distfile Message-ID: <20001222120707.N328@argon.firepipe.net> Reply-To: Will Andrews References: <200012221029.eBMATxc45696@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200012221029.eBMATxc45696@freefall.freebsd.org>; from roam@FreeBSD.ORG on Fri, Dec 22, 2000 at 02:29:59AM -0800 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: will@argon.firepipe.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Dec 22, 2000 at 02:29:59AM -0800, roam@FreeBSD.ORG wrote: > This patch has whitespace issues, too, but there's something more - > a changed MD5 checksum. I diff'd the distfiles, and there's new > functionality added, without a version bump (don't we all love those..) > I wonder if this could be cause for an upped PORTVERSION - it seems > PORTREVISION should not be used for such authors' slip-ups.. No. We use PORTREVISION for this kind of thing. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 9:16:14 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 09:16:12 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.189]) by hub.freebsd.org (Postfix) with SMTP id 6328B37B699 for ; Fri, 22 Dec 2000 09:15:59 -0800 (PST) Received: (qmail 53051 invoked by uid 1000); 22 Dec 2000 17:14:41 -0000 Date: Fri, 22 Dec 2000 19:14:41 +0200 From: Peter Pentchev To: Will Andrews Cc: freebsd-ports@FreeBSD.ORG, obrien@FreeBSD.ORG Subject: Re: ports/23732: [PATCH] devel/cs has unfetchable distfile Message-ID: <20001222191441.G1654@ringworld.oblivion.bg> Mail-Followup-To: Will Andrews , freebsd-ports@FreeBSD.ORG, obrien@FreeBSD.ORG References: <200012221029.eBMATxc45696@freefall.freebsd.org> <20001222120707.N328@argon.firepipe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001222120707.N328@argon.firepipe.net>; from will@physics.purdue.edu on Fri, Dec 22, 2000 at 12:07:07PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Dec 22, 2000 at 12:07:07PM -0500, Will Andrews wrote: > On Fri, Dec 22, 2000 at 02:29:59AM -0800, roam@FreeBSD.ORG wrote: > > This patch has whitespace issues, too, but there's something more - > > a changed MD5 checksum. I diff'd the distfiles, and there's new > > functionality added, without a version bump (don't we all love those..) > > I wonder if this could be cause for an upped PORTVERSION - it seems > > PORTREVISION should not be used for such authors' slip-ups.. > > No. We use PORTREVISION for this kind of thing. Well, that was my original understanding, and that's how I used it in e.g. mail/fetchmail :) However, I've seen a comment or two that PORTREVISION should be reserved for FreeBSD security-related fixes, and now I'm not so sure. So, you are saying my original impression was correct, and PORTREVISION is the version-bump tool to use for rerolled tarballs? G'luck, Peter -- If I had finished this sentence, To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 9:20: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 09:20:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6AABE37B400 for ; Fri, 22 Dec 2000 09:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMHK2V87019; Fri, 22 Dec 2000 09:20:02 -0800 (PST) (envelope-from gnats) Date: Fri, 22 Dec 2000 09:20:02 -0800 (PST) Message-Id: <200012221720.eBMHK2V87019@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Will Andrews Subject: Re: ports/23748: New port: Matrix like console screensaver Reply-To: Will Andrews Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23748; it has been noted by GNATS. From: Will Andrews To: strijar@urai.ru Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/23748: New port: Matrix like console screensaver Date: Fri, 22 Dec 2000 12:08:51 -0500 On Fri, Dec 22, 2000 at 02:05:30PM +0500, strijar@urai.ru wrote: > >Description: > > Screensaver for console (matrix_saver.ko) "Matrix" like [...] > XPREFIX= / Why? Just because it's a screensaver? I don't think so. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 9:41:24 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 09:41:18 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from gandalf.lebel.org (modemcable004.115-201-24.mtl.mc.videotron.ca [24.201.115.4]) by hub.freebsd.org (Postfix) with SMTP id BB0C837B400 for ; Fri, 22 Dec 2000 09:41:17 -0800 (PST) Received: (qmail 16736 invoked by uid 1001); 22 Dec 2000 17:40:52 -0000 Date: Fri, 22 Dec 2000 12:40:51 -0500 From: David Lebel To: alex@cichlids.cichlids.com, freebsd-ports@FreeBSD.ORG Subject: Re: (fwd) ports/23298: New port: lame-devel 3.87 Message-ID: <20001222124051.A23167@lebel.org> References: <20001222113622.A24195@lebel.org> <20001222180926.A3930@cichlids.cichlids.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Dxnq1zWXvFF0Q93v" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001222180926.A3930@cichlids.cichlids.com>; from alex@big.endian.de on Fri, Dec 22, 2000 at 06:09:26PM +0100 Organization: None whatsover. X-URL: http://www.lebel.org/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --Dxnq1zWXvFF0Q93v Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Quoting Alexander Langer (alex@big.endian.de): > do a diff -rNu lame lame-devel Here it is. diff -rNu lame/Makefile lame-devel/Makefile --- lame/Makefile Sun Oct 29 19:03:01 2000 +++ lame-devel/Makefile Fri Dec 22 12:38:37 2000 @@ -1,28 +1,31 @@ -# ports collection makefile for: lame -# Date created: 11 January 1998 -# Whom: yoshiaki Uchikawa +# ports collection makefile for: lame-devel +# Date created: 16 October 2000 +# Whom: David Lebel # -# $FreeBSD: ports/audio/lame/Makefile,v 1.16 2000/10/30 00:03:23 lioux Exp= $ +# $FreeBSD$ # =20 PORTNAME=3D lame -PORTVERSION=3D 3.70 +PORTVERSION=3D 3.87 CATEGORIES=3D audio MASTER_SITES=3D http://lame.sourceforge.net/download/beta/ -DISTNAME=3D ${PORTNAME}${PORTVERSION} +DISTNAME=3D lame3.87beta =20 -MAINTAINER=3D yoshiaki@kt.rim.or.jp +MAINTAINER=3D lebel@lebel.org =20 +WRKSRC=3D ${WRKDIR}/lame3.87 USE_GMAKE=3D yes -WANT_GTK=3D yes +GNU_CONFIGURE=3D yes +CONFIGURE_ARGS=3D --enable-analyzer=3Dno ALL_TARGET=3D lame =20 MAN1=3D lame.1 =20 .include =20 -.if defined(HAVE_GTK) -USE_GTK=3D yes +.if defined(WITH_VORBIS) +LIB_DEPENDS+=3D vorbis.0:${PORTSDIR}/audio/libvorbis +CONFIGURE_ARGS+=3D --with-vorbis --with-vorbis-prefix=3D${LOCALBASE} .endif =20 do-install: diff -rNu lame/README.html lame-devel/README.html --- lame/README.html Mon Nov 20 04:52:54 2000 +++ lame-devel/README.html Wed Dec 31 19:00:00 1969 @@ -1,30 +0,0 @@ - - The FreeBSD Ports Collection (audio/lame) -

The FreeBSD Ports Collection ("audio/lame")


- - -

You are now in the directory for the port "audio/lame" (package name "l= ame-gtk-3.70"). - -

This is the one-line description for this port: - -


-ISO code based fast MP3 encoder kit -


- -

Please read the "description file" for a -longer description. - -

Go to the top of the ports tree for -a summary on how to use the ports collection. - -

-This port requires package(s) "XFree86-3.3.6_4 gettext-0.10.35 glib-1.2.8 = gmake-3.79.1 gtk-1.2.8" to build. -

-This port requires package(s) "XFree86-3.3.6_4 gettext-0.10.35 glib-1.2.8 = gtk-1.2.8" to run. - -


- Go up one level -| - Go to top of ports tree - - diff -rNu lame/distinfo lame-devel/distinfo --- lame/distinfo Sun Oct 29 08:30:17 2000 +++ lame-devel/distinfo Fri Dec 22 12:38:37 2000 @@ -1 +1 @@ -MD5 (lame3.70.tar.gz) =3D 44e29880a21535a7c935046a531e15af +MD5 (lame3.87beta.tar.gz) =3D 0c0f6f4aab5963be12509657d5dccd5c diff -rNu lame/files/patch-aa lame-devel/files/patch-aa --- lame/files/patch-aa Thu Oct 5 02:47:10 2000 +++ lame-devel/files/patch-aa Wed Dec 31 19:00:00 1969 @@ -1,26 +0,0 @@ ---- Makefile.orig Sat Jul 1 15:31:35 2000 -+++ Makefile Sat Jul 1 15:36:07 2000 -@@ -11,8 +11,8 @@ -=20 - # defaults: - PGM =3D lame --CC =3D gcc --CC_OPTS =3D -O -+CC ?=3D gcc -+CC_OPTS =3D ${CFLAGS} - GTK =3D=20 - GTKLIBS =3D=20 - SNDLIB =3D -DLAMESNDFILE -@@ -136,8 +136,10 @@ - ########################################################################## - ifeq ($(UNAME),FreeBSD) - # remove if you do not have GTK or do not want the GTK frame analyzer -- GTK =3D -DHAVEGTK `gtk12-config --cflags` -- GTKLIBS =3D `gtk12-config --libs`=20 -+ifdef HAVE_GTK -+ GTK =3D -DHAVEGTK `$(GTK_CONFIG) --cflags` -+ GTKLIBS =3D `$(GTK_CONFIG) --libs`=20 -+endif - # Comment out next 2 lines if you want to remove VBR histogram capability - BRHIST_SWITCH =3D -DBRHIST - LIBTERMCAP =3D -lncurses diff -rNu lame/files/patch-ab lame-devel/files/patch-ab --- lame/files/patch-ab Wed Jun 7 12:06:25 2000 +++ lame-devel/files/patch-ab Wed Dec 31 19:00:00 1969 @@ -1,11 +0,0 @@ ---- lame.c.orig Thu Apr 20 01:48:22 2000 -+++ lame.c Thu Apr 20 01:49:04 2000 -@@ -1196,7 +1196,7 @@ - /* - * Disable floating point exepctions - */ --#ifdef __FreeBSD__ -+#if defined(__FreeBSD__) && !defined(__alpha__) - # include - { - /* seet floating point mask to the Linux default */ diff -rNu lame/pkg-comment lame-devel/pkg-comment --- lame/pkg-comment Sat Oct 2 02:56:01 1999 +++ lame-devel/pkg-comment Fri Dec 22 12:38:37 2000 @@ -1 +1 @@ -ISO code based fast MP3 encoder kit +fully GPL'd MP3 encoder. diff -rNu lame/pkg-descr lame-devel/pkg-descr --- lame/pkg-descr Tue Oct 3 13:38:14 2000 +++ lame-devel/pkg-descr Fri Dec 22 12:38:37 2000 @@ -1,11 +1,24 @@ -LAME stands for LAME Ain't an Mp3 Encoder.=20 +LAME originally stood for LAME Ain't an Mp3 Encoder.=20 =20 -This is a patch agains the ISO MPEG1 demonstration source. The -modifications are distributed under the GNU GENERAL PUBLIC LICENSE -(see the file COPYING for details). +Following the great history of GNU naming, LAME originally stood for LAME = Ain't +an Mp3 Encoder. LAME started life as a GPL'd patch against the dist10 ISO +demonstration source, and thus was incapable of producing an mp3 stream or= even +being compiled by itself. But in May 2000, the last remnants of the ISO +source code were replaced, and now LAME is the source code for a fully GPL= 'd +MP3 encoder, with speed and quality to rival all commercial competitors. =20 -The graphical frame analyzer uses the MPGLIB decoding engine, written by: -Michael Hipp (email: Michael.Hipp@student.uni-tuebingen.de)=20 -and released under a more restrictive agreement. =20 +LAME is an educational tool to be used for learning about MP3 encoding. T= he +goal of the LAME project is to use the open source model to improve the ps= ycho +acoustics, noise shaping and speed of MP3. Another goal of the LAME proje= ct is +to use these improvements for the basis of a patent free audio compression +codec for the GNU project. + +In Beta: + MPEG 2.5 support=20 + No more patching! Full source code distribution since all ISO code = has been=20 + replaced!=20 + free format encoding and decoding=20 + Vorbis audio codec support, for both encoding and decoding.=20 + As always, more speed and better quality.=20 =20 WWW: http://lame.sourceforge.net/ diff -rNu lame/pkg-plist lame-devel/pkg-plist --- lame/pkg-plist Sat Apr 29 16:44:27 2000 +++ lame-devel/pkg-plist Fri Dec 22 12:38:37 2000 @@ -5,6 +5,7 @@ share/doc/lame/id3.html share/doc/lame/index.html share/doc/lame/lame.css +share/doc/lame/modes.html share/doc/lame/node5.html share/doc/lame/node6.html share/doc/lame/node7.html =20 --=20 // david lebel // nobiaze' Inc. // http://www.lebel.org/ // http://www.nobiaze.com/ // pgp: 3633 6999 D47E 73ED 099F // vox: (514) 943.3045 4341 08A4 8E48 EF56 61D1 // fax: (514) 938.8881 --Dxnq1zWXvFF0Q93v Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (OpenBSD) Comment: For info see http://www.gnupg.org iD8DBQE6Q5IjCKSOSO9WYdERAmSMAJ4ysFBoh3SOm8fQHK69AR6Gmp//UQCg5rXD bu9I9Yh8Aqc57rb8SiLc2oI= =ytM+ -----END PGP SIGNATURE----- --Dxnq1zWXvFF0Q93v-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 9:50: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 09:50:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C12EA37B402 for ; Fri, 22 Dec 2000 09:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMHo2S90714; Fri, 22 Dec 2000 09:50:02 -0800 (PST) (envelope-from gnats) Date: Fri, 22 Dec 2000 09:50:02 -0800 (PST) Message-Id: <200012221750.eBMHo2S90714@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Dag-Erling Smorgrav Subject: Re: ports/23748: New port: Matrix like console screensaver Reply-To: Dag-Erling Smorgrav Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23748; it has been noted by GNATS. From: Dag-Erling Smorgrav To: strijar@urai.ru Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/23748: New port: Matrix like console screensaver Date: 22 Dec 2000 18:49:04 +0100 strijar@urai.ru writes: > Screensaver for console (matrix_saver.ko) "Matrix" like Most of the code in your screensaver was written by Søren Schmidt. Please restore his original copyright message. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 11:40: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 11:40:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4ED1A37B402 for ; Fri, 22 Dec 2000 11:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMJe1X13386; Fri, 22 Dec 2000 11:40:01 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 11:40:01 -0800 (PST) Resent-Message-Id: <200012221940.eBMJe1X13386@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, horape@compendium.com.ar Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F21DF37B400 for ; Fri, 22 Dec 2000 11:35:21 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMJZLQ12751; Fri, 22 Dec 2000 11:35:21 -0800 (PST) (envelope-from nobody) Message-Id: <200012221935.eBMJZLQ12751@freefall.freebsd.org> Date: Fri, 22 Dec 2000 11:35:21 -0800 (PST) From: horape@compendium.com.ar Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23770: There is not an IPv6 + SSL lynx Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23770 >Category: ports >Synopsis: There is not an IPv6 + SSL lynx >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: wish >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 11:40:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Horacio J. Peña >Release: 4.2 >Organization: Compendium >Environment: FreeBSD ipv6.puntoar.net.ar 4.2-RELEASE FreeBSD 4.2-RELEASE #0: Mon Dec 20 20:50:28 ARST 1999 root@ipv6.puntoar.net.ar:/usr/src/sys/compile/IPV6.PUNTOAR.NET.AR i386 >Description: lynx-current has IPv6 support lynx-ssl hasSSL support There isn't a lynx-ssl-current :-( >How-To-Repeat: >Fix: I couldn't find a ssl patch for lynx2.8.4. I'll try to adapt the lynx2.8.3 patch. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 12:48:50 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 12:48:46 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id A893137B400; Fri, 22 Dec 2000 12:48:44 -0800 (PST) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id JAA12201; Sat, 23 Dec 2000 09:48:42 +1300 (NZDT) Message-Id: <200012222048.JAA12201@ducky.nz.freebsd.org> From: "Dan Langille" Organization: langille.org To: Dan Moschuk Date: Sat, 23 Dec 2000 09:48:40 +1300 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: New bsd.port.mk patch [part II] Reply-To: dan@langille.org Cc: ports@freebsd.org, developers@freebsd.org Priority: normal X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I read your original message regarding the patch to detect old port layouts. Very good idea. We've encountered a few users having this problem lately. I have a proposal for modifying the "upgrade kit" message. Many people find the message confusing. I think the proposed message may reduce the confusion level. I suspect my mailer may have wrapped the patch. If so, the patch is also available from . --- bsd.port.mk.original Sat Dec 23 09:13:30 2000 +++ bsd.port.mk Sat Dec 23 09:35:34 2000 @@ -1396,7 +1396,7 @@ SYSTEMVERSION= 0 .endif .if ${BSDPORTMKVERSION} > ${SYSTEMVERSION} -IGNORE= ": Your system is too old to use this bsd.port.mk. You need a fresh make world or an upgrade kit. Please go to http://www.FreeBSD.org/ports/ or a mirror site and follow the instructions" +IGNORE= ": Please read this entire message and decide which of the two solutions applies to you. Your ports system is too old to use this bsd.port.mk. You either need a fresh make world or a ports upgrade kit. If you decide you need an an upgrade kit, please go to http://www.FreeBSD.org/ports/ [or a mirror site] and follow the instructions found there." .endif .endif -- Dan Langille The FreeBSD Diary - http://www.freebsddiary.org/ NZ ADSL - http://www.unixathome.org/adsl/ NZ Broadband - http://www.unixathome.org/broadband/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 13:16: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 13:16:04 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8DF8837B400; Fri, 22 Dec 2000 13:16:04 -0800 (PST) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMLG4R41486; Fri, 22 Dec 2000 13:16:04 -0800 (PST) (envelope-from dannyboy) Date: Fri, 22 Dec 2000 13:16:04 -0800 (PST) From: Message-Id: <200012222116.eBMLG4R41486@freefall.freebsd.org> To: joseph@randomnetworks.com, dannyboy@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23648: [PORT UPDATE] editors/nano 0.9.21 -> 0.9.24 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PORT UPDATE] editors/nano 0.9.21 -> 0.9.24 State-Changed-From-To: feedback->closed State-Changed-By: dannyboy State-Changed-When: Fri Dec 22 13:15:22 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23648 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 13:18:29 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 13:18:27 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0457837B400; Fri, 22 Dec 2000 13:18:27 -0800 (PST) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMLIQ041860; Fri, 22 Dec 2000 13:18:26 -0800 (PST) (envelope-from dannyboy) Date: Fri, 22 Dec 2000 13:18:26 -0800 (PST) From: Message-Id: <200012222118.eBMLIQ041860@freefall.freebsd.org> To: dannyboy@FreeBSD.org, freebsd-ports@FreeBSD.org, kris@FreeBSD.org Subject: Re: ports/23763: Update port: www/nscache to 0.5 (fix ports/23630) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: www/nscache to 0.5 (fix ports/23630) Responsible-Changed-From-To: freebsd-ports->kris Responsible-Changed-By: dannyboy Responsible-Changed-When: Fri Dec 22 13:18:05 PST 2000 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=23763 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 13:18:31 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 13:18:28 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mta05-svc.ntlworld.com (mta05-svc.ntlworld.com [62.253.162.45]) by hub.freebsd.org (Postfix) with ESMTP id 492D437B402; Fri, 22 Dec 2000 13:18:27 -0800 (PST) Received: from sobek.openirc.co.uk ([62.252.12.232]) by mta05-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001222211822.MNC18404.mta05-svc.ntlworld.com@sobek.openirc.co.uk>; Fri, 22 Dec 2000 21:18:22 +0000 Date: Fri, 22 Dec 2000 21:22:12 +0000 (GMT) From: George Reid X-Sender: geeorgy@sobek.openirc.co.uk To: horape@compendium.com.ar Cc: GNATS Management , freebsd-ports@freebsd.org Subject: Re: ports/23770: There is not an IPv6 + SSL lynx In-Reply-To: <200012221935.eBMJZLQ12751@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 22 Dec 2000 horape@compendium.com.ar wrote: > >Synopsis: There is not an IPv6 + SSL lynx [SNIP] > >Description: > lynx-current has IPv6 support > lynx-ssl hasSSL support > > There isn't a lynx-ssl-current :-( There is now. Patch at: http://ukug.uk.freebsd.org/~greid/patches/lynx2-8-4-ssl.patch.bz2 It applies to the lynx-current (lynx-2.8.4d14) source. G "And then it comes to be that the soothing light at the end of your tunnel was just a freight train, comin' your way." George Reid * greid@ukug.uk.freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 13:31:57 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 13:31:50 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mail1.lig.bellsouth.net (mail1.lig.bellsouth.net [205.152.0.55]) by hub.freebsd.org (Postfix) with ESMTP id 6CEB037B698 for ; Fri, 22 Dec 2000 13:31:37 -0800 (PST) Received: from coastalgeology.org (adsl-20-126-148.chs.bellsouth.net [66.20.126.148]) by mail1.lig.bellsouth.net (3.3.5alt/0.75.2) with SMTP id QAA03849 for ; Fri, 22 Dec 2000 16:36:03 -0500 (EST) Received: (qmail 41677 invoked by uid 1000); 22 Dec 2000 21:51:41 -0000 Date: Fri, 22 Dec 2000 16:51:41 -0500 From: Jonathan Pennington To: ports@freebsd.org Cc: tg@freebsd.org Subject: libpython problem? Message-ID: <20001222165141.A36125@coastalgeology.org> Reply-To: Jonathan Pennington Mail-Followup-To: Jonathan Pennington , ports@freebsd.org, tg@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Warning: Bill Gates Controls The Matrix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org uname -a: FreeBSD bullwinkle.coastalgeology.org 4.2-STABLE FreeBSD 4.2-STABLE #0: Thu Dec 21 15:54:07 EST 2000 Hello all, I don't *know* if this is a problem, I've checked the archives and can't find anything about it. While working on porting a rather python intensive remotesensing program, I get errors galore. I thought that it just wasn't seeing python, but config found it and make generated these errors (complete output follows). I thought that there were modules that I had to include by hand, but all of the ones that seem to be undefined look like they are already in Setup. Any ideas? ------------------------------------- gmake[3]: Entering directory `/usr/home/john/ossim/src/apps/ossim' /usr/bin/g++ -L../../../lib OssimApp.o -lossim /usr/local/lib/python2.0/config/libpython2.0.a -L/usr/X11R6/lib -lwx_gtk -L/usr/X11R6/lib -L/usr/X11R6/lib -lgtk12 -lgdk12 -L/usr/local/lib -Wl,-E -lgmodule12 -lgthread12 -lglib12 -pthread -lintl -lxpg4 -lXext -lX11 -lm -lpng -ljpeg -ltiff -pthread -lz -lm -lutil -lm -o ossim /usr/local/lib/python2.0/config/libpython2.0.a(posixmodule.o): In function `posix_tmpnam': posixmodule.o(.text+0x256c): warning: tmpnam() possibly used unsafely; consider using mkstemp() /usr/local/lib/python2.0/config/libpython2.0.a(posixmodule.o): In function `posix_tempnam': posixmodule.o(.text+0x24c2): warning: tempnam() possibly used unsafely; consider using mkstemp() /usr/X11R6/lib/libwx_gtk.so: warning: mktemp() possibly used unsafely; consider using mkstemp() /usr/local/lib/python2.0/config/libpython2.0.a(socketmodule.o): In function `newSSLObject': socketmodule.o(.text+0x1943): undefined reference to `SSLv23_method' socketmodule.o(.text+0x1949): undefined reference to `SSL_CTX_new' socketmodule.o(.text+0x199f): undefined reference to `SSL_CTX_use_PrivateKey_file' socketmodule.o(.text+0x19c0): undefined reference to `SSL_CTX_use_certificate_chain_file' socketmodule.o(.text+0x19e3): undefined reference to `SSL_CTX_set_verify' socketmodule.o(.text+0x19ee): undefined reference to `SSL_new' socketmodule.o(.text+0x1a05): undefined reference to `SSL_set_fd' socketmodule.o(.text+0x1a10): undefined reference to `SSL_set_connect_state' socketmodule.o(.text+0x1a1e): undefined reference to `SSL_connect' socketmodule.o(.text+0x1a6c): undefined reference to `SSL_get_peer_certificate' socketmodule.o(.text+0x1a8d): undefined reference to `X509_get_subject_name' socketmodule.o(.text+0x1a96): undefined reference to `X509_NAME_oneline' socketmodule.o(.text+0x1ab0): undefined reference to `X509_get_issuer_name' socketmodule.o(.text+0x1ab9): undefined reference to `X509_NAME_oneline' /usr/local/lib/python2.0/config/libpython2.0.a(socketmodule.o): In function `SSL_dealloc': socketmodule.o(.text+0x1b6b): undefined reference to `X509_free' socketmodule.o(.text+0x1b79): undefined reference to `SSL_CTX_free' socketmodule.o(.text+0x1b84): undefined reference to `SSL_free' /usr/local/lib/python2.0/config/libpython2.0.a(socketmodule.o): In function `SSL_SSLwrite': socketmodule.o(.text+0x1c4f): undefined reference to `SSL_write' /usr/local/lib/python2.0/config/libpython2.0.a(socketmodule.o): In function `SSL_SSLread': socketmodule.o(.text+0x1cc2): undefined reference to `SSL_read' socketmodule.o(.text+0x1cd0): undefined reference to `SSL_get_error' /usr/local/lib/python2.0/config/libpython2.0.a(socketmodule.o): In function `init_socket': socketmodule.o(.text+0x1e35): undefined reference to `SSL_load_error_strings' socketmodule.o(.text+0x1e3a): undefined reference to `SSL_library_init' /usr/local/lib/python2.0/config/libpython2.0.a(readline.o): In function `parse_and_bind': readline.o(.text+0x5c): undefined reference to `rl_parse_and_bind' /usr/local/lib/python2.0/config/libpython2.0.a(readline.o): In function `read_init_file': readline.o(.text+0xc6): undefined reference to `rl_read_init_file' /usr/local/lib/python2.0/config/libpython2.0.a(readline.o): In function `read_history_file': readline.o(.text+0x13a): undefined reference to `read_history' /usr/local/lib/python2.0/config/libpython2.0.a(readline.o): In function `write_history_file': readline.o(.text+0x1ae): undefined reference to `write_history' readline.o(.text+0x1d7): undefined reference to `history_truncate_file' /usr/local/lib/python2.0/config/libpython2.0.a(readline.o): In function `set_completer_delims': readline.o(.text+0x2fa): undefined reference to `rl_completer_word_break_characters' readline.o(.text+0x30f): undefined reference to `rl_completer_word_break_characters' /usr/local/lib/python2.0/config/libpython2.0.a(readline.o): In function `get_completer_delims': readline.o(.text+0x346): undefined reference to `rl_completer_word_break_characters' /usr/local/lib/python2.0/config/libpython2.0.a(readline.o): In function `get_line_buffer': readline.o(.text+0x45a): undefined reference to `rl_line_buffer' /usr/local/lib/python2.0/config/libpython2.0.a(readline.o): In function `insert_text': readline.o(.text+0x494): undefined reference to `rl_insert_text' /usr/local/lib/python2.0/config/libpython2.0.a(readline.o): In function `flex_complete': readline.o(.text+0x5d5): undefined reference to `completion_matches' /usr/local/lib/python2.0/config/libpython2.0.a(readline.o): In function `setup_readline': readline.o(.text+0x5e4): undefined reference to `rl_readline_name' readline.o(.text+0x5f0): undefined reference to `rl_insert' readline.o(.text+0x5f7): undefined reference to `rl_bind_key' readline.o(.text+0x5ff): undefined reference to `emacs_meta_keymap' readline.o(.text+0x604): undefined reference to `rl_complete' readline.o(.text+0x60b): undefined reference to `rl_bind_key_in_map' readline.o(.text+0x616): undefined reference to `emacs_meta_keymap' readline.o(.text+0x61b): undefined reference to `rl_complete' readline.o(.text+0x622): undefined reference to `rl_bind_key_in_map' readline.o(.text+0x628): undefined reference to `rl_attempted_completion_function' readline.o(.text+0x63e): undefined reference to `rl_completer_word_break_characters' readline.o(.text+0x667): undefined reference to `rl_initialize' /usr/local/lib/python2.0/config/libpython2.0.a(readline.o): In function `call_readline': readline.o(.text+0x6d2): undefined reference to `rl_event_hook' readline.o(.text+0x6de): undefined reference to `readline' readline.o(.text+0x72c): undefined reference to `add_history' /usr/local/lib/python2.0/config/libpython2.0.a(cryptmodule.o): In function `crypt_crypt': cryptmodule.o(.text+0x2f): undefined reference to `crypt' gmake[3]: *** [ossim] Error 1 gmake[3]: Leaving directory `/usr/home/john/ossim/src/apps/ossim' gmake[2]: *** [default] Error 2 gmake[2]: Leaving directory `/usr/home/john/ossim/src/apps' gmake[1]: *** [default] Error 2 gmake[1]: Leaving directory `/usr/home/john/ossim/src' gmake: *** [default] Error 2 -------------------------------------------- -- Jonathan Pennington | http://coastalgeology.org Site Manager | Protection and stewardship CoastalGeology.Org (CGO) | through public education. john@coastalgeology.org | Join CGO, make a difference. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 13:40:13 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 13:40:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 99D2937B404 for ; Fri, 22 Dec 2000 13:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMLe2845104; Fri, 22 Dec 2000 13:40:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 13:40:02 -0800 (PST) Resent-Message-Id: <200012222140.eBMLe2845104@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, mb@imp.ch Received: from fuchur.lan.attic.ch (fuchur.lan.attic.ch [194.235.47.21]) by hub.freebsd.org (Postfix) with ESMTP id 4983137B400 for ; Fri, 22 Dec 2000 13:32:42 -0800 (PST) Received: (from mblapp@localhost) by fuchur.lan.attic.ch (8.11.1/8.11.1) id eBMLYQj75588; Fri, 22 Dec 2000 22:34:26 +0100 (CET) (envelope-from mblapp) Message-Id: <200012222134.eBMLYQj75588@fuchur.lan.attic.ch> Date: Fri, 22 Dec 2000 22:34:26 +0100 (CET) From: mb@imp.ch Sender: mblapp@fuchur.lan.attic.ch Reply-To: mb@imp.ch To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23774: [PATCH] Fix for de-staroffice-5.2 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23774 >Category: ports >Synopsis: Fix $PATH for Staroffice5.2 user-installation (de-staroffice-5.2) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 13:40:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Martin Blapp >Release: FreeBSD 4.2-STABLE i386 >Organization: Improware AG >Environment: FreeBSD fuchur.lan.attic.ch 4.2-STABLE FreeBSD 4.2-STABLE #5: Sun Dec 10 11:00:08 CET 2000 root@fuchur.lan.attic.ch:/usr/src/sys/compile/FURCHUR i386 FreeBSD ports-tree for STABLE and CURRENT >Description: Wrong $PATH settings during user installation, invoked by make install-user >How-To-Repeat: During user installation, each time you get /usr/local/office52 as install path, but this is not a good idea because you'd like a $PATH like $HOME/office52. If you have to fix this each time you install it for a user it's just annoying. >Fix: -------------------------------------------------------------------------------- possible Commit message: ------------------------ Fix default $PATH settings for user-installation -------------------------------------------------------------------------------- location of port: ----------------- ports/german/staroffice52 -------------------------------------------------------------------------------- [PATCH] normal -------------- --- Makefile.orig Fri Dec 22 21:42:26 2000 +++ Makefile Fri Dec 22 22:05:09 2000 @@ -31,6 +31,7 @@ WRKSRC= ${WRKDIR}/office52 TMPDIR= ${WRKDIR}/tmp LD_PATH= ${TMPDIR}:${WRKSRC}:${LINUXBASE}/lib:${LINUXBASE}/usr/lib +INSTDB.INS= ${PREFIX}/office52/program/instdb.ins .include @@ -116,6 +117,9 @@ post-install: @${PATCH} -s ${PREFIX}/office52/program/setup ${FILESDIR}/setup.patch @${PATCH} -s ${PREFIX}/office52/program/soffice ${FILESDIR}/soffice.patch + @${CP} ${INSTDB.INS} ${INSTDB.INS}.orig + @${SED} -e 's%DefaultDestPath = "/usr/local/office52%DefaultDestPath = "office52%' \ + < ${INSTDB.INS}.orig > ${INSTDB.INS} install-user: ${PREFIX}/office52/program/setup -------------------------------------------------------------------------------- [PATCH] uuencoded ----------------- begin 644 Makefile.diff.uu M+2TM($UA:V5F:6QE+F]R:6<)1G)I($1E8R`R,B`R,3HT,CHR-B`R,#`P"BLK M*R!-86ME9FEL90E&TQ)3E580D%317TO;&EB.B1[3$E.55A"05-%?2]UU!2149)6'TO;V9F:6-E-3(O<')O9W)A;2]I;G-T9&(N:6YS M"B`*("YI;F-L=61E(#QBU!!5$-(?2`MU!2149) M6'TO;V9F:6-E-3(O<')O9W)A;2]S971U<"`D>T9)3$531$E2?2]S971U<"YP M871C:`H@"4`D>U!!5$-(?2`MU!2149)6'TO;V9F:6-E-3(O<')O9W)A M;2]S;V9F:6-E("1[1DE,15-$25)]+W-O9F9I8V4N<&%T8V@**PE`)'M#4'T@ M)'M)3E-41$(N24Y3?2`D>TE.4U1$0BY)3E-]+F]R:6<**PE`)'M3141]("UE M("=S)41E9F%U;'1$97-T4&%T:"`]("(O=7-R+VQO8V%L+V]F9FEC934R)41E M9F%U;'1$97-T4&%T:"`](")O9F9I8V4U,B4G(%P**PD@("`@/"`D>TE.4U1$ M0BY)3E-]+F]R:6<@/B`D>TE.4U1$0BY)3E-]"B`*(&ENU!2149)6'TO;V9F:6-E-3(O<')O9W)A;2]S971U<`IA ` end -------------------------------------------------------------------------------- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 13:40:13 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 13:40:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5363037B400 for ; Fri, 22 Dec 2000 13:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMLe2Q45093; Fri, 22 Dec 2000 13:40:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 13:40:02 -0800 (PST) Resent-Message-Id: <200012222140.eBMLe2Q45093@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, mb@imp.ch Received: from fuchur.lan.attic.ch (fuchur.lan.attic.ch [194.235.47.21]) by hub.freebsd.org (Postfix) with ESMTP id BE82837B699 for ; Fri, 22 Dec 2000 13:31:40 -0800 (PST) Received: (from root@localhost) by fuchur.lan.attic.ch (8.11.1/8.11.1) id eBMLXJr75458; Fri, 22 Dec 2000 22:33:19 +0100 (CET) (envelope-from mblapp) Message-Id: <200012222133.eBMLXJr75458@fuchur.lan.attic.ch> Date: Fri, 22 Dec 2000 22:33:19 +0100 (CET) From: mb@imp.ch Sender: mblapp@fuchur.lan.attic.ch Reply-To: mb@imp.ch To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23773: [PATCH] Fix for staroffice-5.2 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23773 >Category: ports >Synopsis: Fix $PATH for Staroffice5.2 user-installation (staroffice-5.2) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 13:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Martin Blapp >Release: FreeBSD 4.2-STABLE i386 >Organization: Improware AG >Environment: FreeBSD fuchur.lan.attic.ch 4.2-STABLE FreeBSD 4.2-STABLE #5: Sun Dec 10 11:00:08 CET 2000 root@fuchur.lan.attic.ch:/usr/src/sys/compile/FURCHUR i386 FreeBSD ports-tree for STABLE and CURRENT >Description: Wrong $PATH settings during user installation, invoked by make install-user >How-To-Repeat: During user installation, each time you get /usr/local/office52 as install path, but this is not a good idea because you'd like a $PATH like $HOME/office52. If you have to fix this each time you install it for a user it's just annoying. >Fix: -------------------------------------------------------------------------------- possible Commit message: ------------------------ Fix default $PATH settings for user-installation -------------------------------------------------------------------------------- location of port: ----------------- ports/editors/staroffice52 -------------------------------------------------------------------------------- [PATCH] normal -------------- --- Makefile.orig Fri Dec 22 22:21:42 2000 +++ Makefile Fri Dec 22 22:21:34 2000 @@ -36,6 +36,7 @@ WRKSRC= ${WRKDIR}/office52 TMPDIR= ${WRKDIR}/tmp LD_PATH= ${TMPDIR}:${WRKSRC}:${LINUXBASE}/lib:${LINUXBASE}/usr/lib +INSTDB.INS= ${PREFIX}/office52/program/instdb.ins .include @@ -121,6 +122,9 @@ post-install: @${PATCH} -s ${PREFIX}/office52/program/setup ${FILESDIR}/setup.patch @${PATCH} -s ${PREFIX}/office52/program/soffice ${FILESDIR}/soffice.patch + @${CP} ${INSTDB.INS} ${INSTDB.INS}.orig + @${SED} -e 's%DefaultDestPath = "/usr/local/office52%DefaultDestPath = "office52%' \ + < ${INSTDB.INS}.orig > ${INSTDB.INS} install-user: ${PREFIX}/office52/program/setup -------------------------------------------------------------------------------- [PATCH] uuencoded ----------------- begin 644 Makefile.diff.uu M+2TM($UA:V5F:6QE+F]R:6<)1G)I($1E8R`R,B`R,CHR,3HT,B`R,#`P"BLK M*R!-86ME9FEL90E&TQ)3E580D%317TO;&EB.B1[3$E.55A"05-%?2]UU!2149)6'TO;V9F:6-E-3(O<')O9W)A;2]I;G-T9&(N:6YS M"B`*("YI;F-L=61E(#QBU!!5$-(?2`MU!2149) M6'TO;V9F:6-E-3(O<')O9W)A;2]S971U<"`D>T9)3$531$E2?2]S971U<"YP M871C:`H@"4`D>U!!5$-(?2`MU!2149)6'TO;V9F:6-E-3(O<')O9W)A M;2]S;V9F:6-E("1[1DE,15-$25)]+W-O9F9I8V4N<&%T8V@**PE`)'M#4'T@ M)'M)3E-41$(N24Y3?2`D>TE.4U1$0BY)3E-]+F]R:6<**PE`)'M3141]("UE M("=S)41E9F%U;'1$97-T4&%T:"`]("(O=7-R+VQO8V%L+V]F9FEC934R)41E M9F%U;'1$97-T4&%T:"`](")O9F9I8V4U,B4G(%P**PD@("`@/"`D>TE.4U1$ M0BY)3E-]+F]R:6<@/B`D>TE.4U1$0BY)3E-]"B`*(&ENU!2149)6'TO;V9F:6-E-3(O<')O9W)A;2]S971U<`IA ` end -------------------------------------------------------------------------------- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 13:40:24 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 13:40:13 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A5BAE37B699 for ; Fri, 22 Dec 2000 13:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMLe2G45113; Fri, 22 Dec 2000 13:40:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 13:40:02 -0800 (PST) Resent-Message-Id: <200012222140.eBMLe2G45113@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, mb@imp.ch Received: from fuchur.lan.attic.ch (fuchur.lan.attic.ch [194.235.47.21]) by hub.freebsd.org (Postfix) with ESMTP id 1489537B400 for ; Fri, 22 Dec 2000 13:33:33 -0800 (PST) Received: (from mblapp@localhost) by fuchur.lan.attic.ch (8.11.1/8.11.1) id eBMLZGJ75716; Fri, 22 Dec 2000 22:35:16 +0100 (CET) (envelope-from mblapp) Message-Id: <200012222135.eBMLZGJ75716@fuchur.lan.attic.ch> Date: Fri, 22 Dec 2000 22:35:16 +0100 (CET) From: mb@imp.ch Sender: mblapp@fuchur.lan.attic.ch Reply-To: mb@imp.ch To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23775: [PATCH] Fix for fr-staroffice-5.2 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23775 >Category: ports >Synopsis: Fix $PATH for Staroffice5.2 user-installation (fr-staroffice-5.2) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 13:40:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Martin Blapp >Release: FreeBSD 4.2-STABLE i386 >Organization: Improware AG >Environment: FreeBSD fuchur.lan.attic.ch 4.2-STABLE FreeBSD 4.2-STABLE #5: Sun Dec 10 11:00:08 CET 2000 root@fuchur.lan.attic.ch:/usr/src/sys/compile/FURCHUR i386 FreeBSD ports-tree for STABLE and CURRENT >Description: Wrong $PATH settings during user installation, invoked by make install-user >How-To-Repeat: During user installation, each time you get /usr/local/office52 as install path, but this is not a good idea because you'd like a $PATH like $HOME/office52. If you have to fix this each time you install it for a user it's just annoying. >Fix: -------------------------------------------------------------------------------- possible Commit message: ------------------------ Fix default $PATH settings for user-installation -------------------------------------------------------------------------------- location of port: ----------------- ports/french/staroffice52 -------------------------------------------------------------------------------- [PATCH] normal -------------- --- Makefile.orig Fri Dec 22 22:15:53 2000 +++ Makefile Fri Dec 22 22:16:47 2000 @@ -32,6 +32,7 @@ WRKSRC= ${WRKDIR}/office52 TMPDIR= ${WRKDIR}/tmp LD_PATH= ${TMPDIR}:${WRKSRC}:${LINUXBASE}/linux/lib:${LINUXBASE}/usr/lib +INSTDB.INS= ${PREFIX}/office52/program/instdb.ins .include @@ -120,6 +121,9 @@ post-install: @${PATCH} -s ${PREFIX}/office52/program/setup ${FILESDIR}/setup.patch @${PATCH} -s ${PREFIX}/office52/program/soffice ${FILESDIR}/soffice.patch + @${CP} ${INSTDB.INS} ${INSTDB.INS}.orig + @${SED} -e 's%DefaultDestPath = "/usr/local/office52%DefaultDestPath = "office52%' \ + < ${INSTDB.INS}.orig > ${INSTDB.INS} install-user: ${PREFIX}/office52/program/setup -------------------------------------------------------------------------------- [PATCH] uuencoded ----------------- begin 644 Makefile.diff.uu M+2TM($UA:V5F:6QE+F]R:6<)1G)I($1E8R`R,B`R,CHQ-3HU,R`R,#`P"BLK M*R!-86ME9FEL90E&TQ)3E580D%317TO;&EN=7@O;&EB.B1[3$E.55A"05-%?2]UU!2149)6'TO;V9F:6-E-3(O<')O9W)A;2]I;G-T M9&(N:6YS"B`*("YI;F-L=61E(#QBU!!5$-(?2`MU!2149)6'TO;V9F:6-E-3(O<')O9W)A;2]S971U<"`D>T9)3$531$E2?2]S M971U<"YP871C:`H@"4`D>U!!5$-(?2`MU!2149)6'TO;V9F:6-E-3(O M<')O9W)A;2]S;V9F:6-E("1[1DE,15-$25)]+W-O9F9I8V4N<&%T8V@**PE` M)'M#4'T@)'M)3E-41$(N24Y3?2`D>TE.4U1$0BY)3E-]+F]R:6<**PE`)'M3 M141]("UE("=S)41E9F%U;'1$97-T4&%T:"`]("(O=7-R+VQO8V%L+V]F9FEC M934R)41E9F%U;'1$97-T4&%T:"`](")O9F9I8V4U,B4G(%P**PD@("`@/"`D M>TE.4U1$0BY)3E-]+F]R:6<@/B`D>TE.4U1$0BY)3E-]"B`*(&ENU!2149)6'TO;V9F:6-E-3(O<')O9W)A;2]S971U<`IA ` end -------------------------------------------------------------------------------- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 14:13:48 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 14:13:46 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ducky.nz.freebsd.org (ns1.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id 3CCB637B400 for ; Fri, 22 Dec 2000 14:13:45 -0800 (PST) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id LAA12623 for ; Sat, 23 Dec 2000 11:13:42 +1300 (NZDT) Message-Id: <200012222213.LAA12623@ducky.nz.freebsd.org> From: "Dan Langille" Organization: langille.org To: ports@freebsd.org Date: Sat, 23 Dec 2000 11:13:40 +1300 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: databases/postgresql7 fails to install with java options Reply-To: dan@langille.org Priority: normal X-mailer: Pegasus Mail for Win32 (v3.12c) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I selected the following options: JDBC MultiByte ODBC Perl TCL TCLTK and the default configuration options. TLC version was 8.3 (default). I tried another build without JDBC and it completed successfully. cvsup of ports tree was done today. FreeBSD xeon.unixathome.org 4.2-STABLE FreeBSD 4.2-STABLE #0: Wed Dec 13 22:35:42 NZDT 2000 root@xeon.unixathome.org:/usr/src/sys/compile/XEON i386 gmake[3]: Leaving directory `/usr/ports/databases/postgresql7/work/postgresql- 7.0.3/src/pl/plpgsql/src' gmake[2]: Leaving directory `/usr/ports/databases/postgresql7/work/postgresql-7.0.3/src/pl/plpgsql' gmake[1]: Leaving directory `/usr/ports/databases/postgresql7/work/postgresql-7.0.3/src/pl' All of PostgreSQL is successfully made. Ready to install. gmake: Entering directory `/usr/ports/databases/postgresql7/work/postgresql- 7.0.3/src/interfaces/jdbc' (echo "package org.postgresql;" ;\ echo "public class DriverClass {" ;\ echo "public static String connectClass=\"org.postgresql.jdbc1.Connection\";" ;\ echo "}" \ ) >org/postgresql/DriverClass.java rm -f postgresql.jar gmake[1]: Entering directory `/usr/ports/databases/postgresql7/work/postgresql- 7.0.3/src/interfaces/jdbc' /usr/local/jdk1.1.8/bin/javac org/postgresql/DriverClass.java gmake[1]: /usr/local/jdk1.1.8/bin/javac: Command not found gmake[1]: *** [org/postgresql/DriverClass.class] Error 127 gmake[1]: Leaving directory `/usr/ports/databases/postgresql7/work/postgresql- 7.0.3/src/interfaces/jdbc' gmake: *** [jdbc1] Error 2 gmake: Leaving directory `/usr/ports/databases/postgresql7/work/postgresql- 7.0.3/src/interfaces/jdbc' *** Error code 2 Stop in /usr/ports/databases/postgresql7. *** Error code 1 Stop in /usr/ports/databases/postgresql7. *** Error code 1 Stop in /usr/ports/databases/postgresql7. -- Dan Langille The FreeBSD Diary - http://freebsddiary.org/ FreshPorts - http://freshports.org/ NZ Broadband - http://unixathome.org/broadband/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 14:39:43 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 14:39:42 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F9A037B400; Fri, 22 Dec 2000 14:39:42 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMMdgD57380; Fri, 22 Dec 2000 14:39:42 -0800 (PST) (envelope-from obrien) Date: Fri, 22 Dec 2000 14:39:42 -0800 (PST) From: Message-Id: <200012222239.eBMMdgD57380@freefall.freebsd.org> To: obrien@FreeBSD.org, obrien@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23732: [PATCH] devel/cs has unfetchable distfile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] devel/cs has unfetchable distfile Responsible-Changed-From-To: obrien->freebsd-ports Responsible-Changed-By: obrien Responsible-Changed-When: Fri Dec 22 14:38:46 PST 2000 Responsible-Changed-Why: dropped maintainership http://www.freebsd.org/cgi/query-pr.cgi?pr=23732 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 14:40:14 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 14:40:13 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4D1E437B400; Fri, 22 Dec 2000 14:40:13 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMMeDS57638; Fri, 22 Dec 2000 14:40:13 -0800 (PST) (envelope-from obrien) Date: Fri, 22 Dec 2000 14:40:13 -0800 (PST) From: Message-Id: <200012222240.eBMMeDS57638@freefall.freebsd.org> To: obrien@FreeBSD.org, obrien@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23730: [PATCH] benchmarks/postmark has unfetchable distfile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] benchmarks/postmark has unfetchable distfile Responsible-Changed-From-To: obrien->freebsd-ports Responsible-Changed-By: obrien Responsible-Changed-When: Fri Dec 22 14:39:55 PST 2000 Responsible-Changed-Why: dropped maintainership http://www.freebsd.org/cgi/query-pr.cgi?pr=23730 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 14:44:47 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 14:44:45 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7858A37B400; Fri, 22 Dec 2000 14:44:45 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMMij158760; Fri, 22 Dec 2000 14:44:45 -0800 (PST) (envelope-from obrien) Date: Fri, 22 Dec 2000 14:44:45 -0800 (PST) From: Message-Id: <200012222244.eBMMij158760@freefall.freebsd.org> To: obrien@FreeBSD.org, obrien@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23167: change request Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: change request Responsible-Changed-From-To: obrien->freebsd-ports Responsible-Changed-By: obrien Responsible-Changed-When: Fri Dec 22 14:44:27 PST 2000 Responsible-Changed-Why: dropped maintainershipo http://www.freebsd.org/cgi/query-pr.cgi?pr=23167 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 14:58:35 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 14:58:32 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mercure.IRO.UMontreal.CA (mercure.IRO.UMontreal.CA [132.204.24.67]) by hub.freebsd.org (Postfix) with ESMTP id A05C537B400 for ; Fri, 22 Dec 2000 14:58:31 -0800 (PST) Received: from localhost.anarcat.yi.org (IDENT:beaupran@phobos.IRO.UMontreal.CA [132.204.20.20]) by mercure.IRO.UMontreal.CA (8.11.1/8.11.1) with ESMTP id eBMMwFv03365; Fri, 22 Dec 2000 17:58:17 -0500 Full-Name: Antoine Beaupre Date: Fri, 22 Dec 2000 12:10:32 -0500 Message-ID: <874rzwidpz.wl@localhost.anarcat.yi.org> From: Anarcat To: will@physics.purdue.edu Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Porting ecasound suite to FreeBSD In-Reply-To: In your message of "Thu, 21 Dec 2000 22:45:39 -0500" <20001221224539.J328@argon.firepipe.net> References: <87puilbdwu.wl@localhost.anarcat.yi.org> <20001221224539.J328@argon.firepipe.net> User-Agent: Wanderlust/1.1.1 (Purple Rain) WEMI/1.13.7 (Shimada) FLIM/1.13.2 (Kasanui) MULE XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd) Organization: Nada, Inc MIME-Version: 1.0 (generated by WEMI 1.13.7 - "Shimada") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [Please CC: I'm not on the list] At Thu, 21 Dec 2000 22:45:39 -0500, Will Andrews wrote: > > On Thu, Dec 21, 2000 at 05:36:01PM -0500, Anarcat wrote: [...] > > First, there is the eternal pthread nightmare. I had to patch the > > configure scripts to make them use '-pthread' and add '-D_THREAD_SAFE' > > to compilation. > > pthread is only a nightmare because of the lack of a standard as to how > to link with it properly. And even then a simple perl regex command can > fix a configure script. Humm.. I agree. But FreeBSD way is kinda strange. Why doesn't it use the '-lpthread' syntax? Autoconf has "problems" detecting libs that are not link with -l. Actually, it's more a problem of not having the good macro available.. But I fixed the scripts. Unfortunatly, since my fixes go back to ecasound's main source it has to be in LICQ's style: case "$host" ... freebsd) CFLAGS... This is annoying. Is there a better way? > > Second, I can't find mlockall() on FreeBSD. It's declared in > > /usr/include/sys/mmap.h (AFAIR). It's supposed to be > > POSIX.1b. Grepping through /usr/src, I found it in the kernel and some > > #include I know it's there. The problem occurs upon link. Also, there's no mlockall man page. Is there a reason (e.g. "secret function" :)? > > Ok. Let's come back on these "libc" warnings. I don't get > > it. setkey(3) *is* present on my system. It's a plain 4.2-STABLE > > install, for Knuth's sake! There is not a single occurence of > > mktemp() or f_prealloc() in ecasound's source!! There is, however, an > > occurence of gets() in ecasound's readline lib. But I disabled it! > > The problem lies with the fact your makefile makes it link explicitly > with -lc_r. You are _not_ supposed to do this - gcc takes care of > linking with the standard libraries (e.g. -lc, -lc_r, and others). Well-well-well.. It seems you're right! I have no idea how their libtool stuff works, in fact, I know *nothing* about libtool. One thing I know though... libtool is installed on my system (/usr/local/bin/libtool) and the makefiles are usings the package's libtool! And this one adds annoying -lc and -lc_r libs! Fixed. > > For tmpnam(), it *is* used in the code. However, mkstemp() *cannot* > > be used since tmpnam() is used to generate a name for a > > *fifo*. mkstemp() creates a file. What do I do with this mess? > > You use mkfifo() to make the fifo. I found the tmpnam() call in the > code.. not sure how it can be integrated into the code. Probably better > just to ignore the warning. I guess this would go to -audit. :) These guys would probably have a fix or create one. :) I can't believe that there is no secure way to create a fifo! [...] > This is to be expected. > It's the standard way you do things. The compiler must be told where > the libraries are if they are not in the standard library search paths > (usually just /usr/lib). Or else you'll run into a huge mess of > namespace conflicts. Ah-ah! I knew there was something I was missing. This is the first "major" port I do (pthreads, libtool, messy dependencies...), so I knew I was missing some stuff. Thanks a lot for your help, you can expect a port to pop up in PRs soon enough. :) A. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 15:20: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 15:20:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FF9737B400 for ; Fri, 22 Dec 2000 15:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMNK1R65886; Fri, 22 Dec 2000 15:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 15:20:01 -0800 (PST) Resent-Message-Id: <200012222320.eBMNK1R65886@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, George Reid Received: from mta07-svc.ntlworld.com (mta07-svc.ntlworld.com [62.253.162.47]) by hub.freebsd.org (Postfix) with ESMTP id 3D0B437B402 for ; Fri, 22 Dec 2000 15:10:53 -0800 (PST) Received: from sobek.openirc.co.uk ([62.252.12.34]) by mta07-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001222231041.BIBP26323.mta07-svc.ntlworld.com@sobek.openirc.co.uk>; Fri, 22 Dec 2000 23:10:41 +0000 Message-Id: Date: Fri, 22 Dec 2000 23:14:42 +0000 (GMT) From: George Reid To: FreeBSD-gnats-submit@freebsd.org Cc: eric@osd.bsdi.com Subject: ports/23776: [PATCH] audio/wmusic has unfetchable distfile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23776 >Category: ports >Synopsis: [PATCH] audio/wmusic has unfetchable distfile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 15:20:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD UKUG >Environment: n/a >Description: Port audio/wmusic has an unfetchable distfile. Patch updates port to version 1.2.5. >How-To-Repeat: Try to build :) >Fix: Index: Makefile =================================================================== RCS file: /usr/home/ncvs/ports/audio/wmusic/Makefile,v retrieving revision 1.1 diff -r1.1 Makefile 9c9 < PORTVERSION= 1.2.3 --- > PORTVERSION= 1.2.5 Index: distinfo =================================================================== RCS file: /usr/home/ncvs/ports/audio/wmusic/distinfo,v retrieving revision 1.1 diff -r1.1 distinfo 1c1 < MD5 (wmusic-1.2.3.tar.gz) = 9cb81991e5922868e76feebf4775ccc5 --- > MD5 (wmusic-1.2.5.tar.gz) = cf5f835af232f5b21aacb51e0465f24b >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 15:20:14 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 15:20:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E789E37B404 for ; Fri, 22 Dec 2000 15:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMNK1S65896; Fri, 22 Dec 2000 15:20:01 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 15:20:01 -0800 (PST) Resent-Message-Id: <200012222320.eBMNK1S65896@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dmaddox@sc.rr.com Received: from Mail6.sc.rr.com (fe6.southeast.rr.com [24.93.67.53]) by hub.freebsd.org (Postfix) with ESMTP id 9EA8237B402 for ; Fri, 22 Dec 2000 15:15:30 -0800 (PST) Received: from sc.rr.com ([24.88.102.101]) by Mail6.sc.rr.com with Microsoft SMTPSVC(5.5.1877.537.53); Fri, 22 Dec 2000 18:15:29 -0500 Received: (from dmaddox@localhost) by sc.rr.com (8.11.1/8.11.1) id eBMNFjd10555; Fri, 22 Dec 2000 18:15:45 -0500 (EST) (envelope-from dmaddox) Message-Id: <200012222315.eBMNFjd10555@sc.rr.com> Date: Fri, 22 Dec 2000 18:15:45 -0500 (EST) From: dmaddox@sc.rr.com Reply-To: dmaddox@sc.rr.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23777: Timidity++ ports are broken on -current Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23777 >Category: ports >Synopsis: Timidity++ does not compile on -current >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 15:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Donald J. Maddox >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD cae88-102-101.sc.rr.com 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Mon Dec 18 16:19:01 EST 2000 dmaddox@cae88-102-101.sc.rr.com:/usr/src/sys/compile/RHIANNON i386 >Description: The timidity++ ports all fail on -current, becuase they use __byte_swap_word and __byte_swap_long which have been renamed on -current to __uint8_swap_uint16 and __uint8_swap_uint32 respectively. >How-To-Repeat: Boot up a -current machine with ports tree installed. # cd /usr/ports/audio/timidity++ # make >Fix: This patch-ac should be replaced with this patch: --- timidity/timidity.h.orig Fri Dec 22 17:55:40 2000 +++ timidity/timidity.h Fri Dec 22 17:57:41 2000 @@ -447,8 +447,14 @@ #define LE_SHORT(x) (x) #define LE_LONG(x) (x) #ifdef __FreeBSD__ -#define BE_SHORT(x) __byte_swap_word(x) -#define BE_LONG(x) __byte_swap_long(x) +# include +# if __FreeBSD_version <= 500000 +# define BE_SHORT(x) __byte_swap_word(x) +# define BE_LONG(x) __byte_swap_long(x) +# else +# define BE_SHORT(x) __uint8_swap_uint16(x) +# define BE_LONG(x) __uint8_swap_uint32(x) +# endif #else #define BE_SHORT(x) XCHG_SHORT(x) #define BE_LONG(x) XCHG_LONG(x) @@ -457,8 +463,14 @@ #define BE_SHORT(x) (x) #define BE_LONG(x) (x) #ifdef __FreeBSD__ -#define LE_SHORT(x) __byte_swap_word(x) -#define LE_LONG(x) __byte_swap_long(x) +# include +# if __FreeBSD_version <= 500000 +# define LE_SHORT(x) __byte_swap_word(x) +# define LE_LONG(x) __byte_swap_long(x) +# else +# define LE_SHORT(x) __uint8_swap_uint16(x) +# define LE_LONG(x) __uint8_swap_uint32(x) +# endif #else #define LE_SHORT(x) XCHG_SHORT(x) #define LE_LONG(x) XCHG_LONG(x) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 15:40:29 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 15:40:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5456C37B404 for ; Fri, 22 Dec 2000 15:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMNe2q68452; Fri, 22 Dec 2000 15:40:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 15:40:02 -0800 (PST) Resent-Message-Id: <200012222340.eBMNe2q68452@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, beaupran@iro.umontreal.ca Received: from shall.anarcat.yi.org (phobos.IRO.UMontreal.CA [132.204.20.20]) by hub.freebsd.org (Postfix) with ESMTP id 4BEAF37B400 for ; Fri, 22 Dec 2000 15:37:24 -0800 (PST) Received: by shall.anarcat.yi.org (Postfix, from userid 1000) id C6D1542C; Fri, 22 Dec 2000 18:37:47 -0500 (EST) Message-Id: <20001222233747.C6D1542C@shall.anarcat.yi.org> Date: Fri, 22 Dec 2000 18:37:47 -0500 (EST) From: beaupran@iro.umontreal.ca Reply-To: beaupran@iro.umontreal.ca To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23778: New port (audio/ecasound): Software package designed for multitrack audio processing. Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23778 >Category: ports >Synopsis: New port (audio/ecasound): Software package designed for multitrack audio processing. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 15:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: The Anarcat >Release: FreeBSD 4.2-BETA i386 >Organization: >Environment: N/A. >Description: New port. Please review, this is my first port. >How-To-Repeat: N/A >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # ecasound # ecasound/files # ecasound/files/patch-aa # ecasound/files/patch-ab # ecasound/files/patch-ac # ecasound/files/patch-ad # ecasound/files/patch-ae # ecasound/files/patch-af # ecasound/files/patch-ag # ecasound/pkg-plist # ecasound/pkg-comment # ecasound/distinfo # ecasound/pkg-descr # ecasound/Makefile # echo c - ecasound mkdir -p ecasound > /dev/null 2>&1 echo c - ecasound/files mkdir -p ecasound/files > /dev/null 2>&1 echo x - ecasound/files/patch-aa sed 's/^X//' >ecasound/files/patch-aa << 'END-of-ecasound/files/patch-aa' X--- config.h.in.orig Wed Nov 22 12:41:03 2000 X+++ config.h.in Fri Dec 22 13:45:14 2000 X@@ -52,6 +52,9 @@ X /* Define if you have the getpagesize function. */ X #undef HAVE_GETPAGESIZE X X+/* Define if you have the mlockall function. */ X+#undef HAVE_MLOCKALL X+ X /* Define if you have the header file. */ X #undef HAVE_ASM_ATOMIC_H X END-of-ecasound/files/patch-aa echo x - ecasound/files/patch-ab sed 's/^X//' >ecasound/files/patch-ab << 'END-of-ecasound/files/patch-ab' X--- configure.in.orig Thu Dec 7 00:50:49 2000 X+++ configure.in Fri Dec 22 13:45:14 2000 X@@ -38,6 +38,7 @@ X X dnl -- X dnl Libtool X+AM_PROG_LIBTOOL X AC_PATH_PROG(LIBTOOL,libtool,none) X if test x$LIBTOOL = xnone; then X AC_MSG_ERROR([** Libtool package not installed! **]) X@@ -46,7 +47,6 @@ X if test x$GNUM4 = xnone; then X AC_MSG_ERROR([** GNU m4 not installed! **]) X fi X-AM_PROG_LIBTOOL X X ACLOCAL=aclocal X AUTOMAKE=automake X@@ -106,7 +106,7 @@ X include_debug=yes) X AM_CONDITIONAL(INCLUDE_DEBUG, test x$include_debug = xyes) X if test x$include_debug = xyes; then X-CXXFLAGS="-D_REENTRANT -DENABLE_DBC -g -Wall -Wstrict-prototypes -ffast-math" X+CXXFLAGS="$CXXFLAGS -D_REENTRANT -DENABLE_DBC -g -Wall -Wstrict-prototypes -ffast-math" X dnl LDFLAGS="-pg -pedantic -funroll-loops" X fi X X@@ -123,6 +123,7 @@ X dnl Checks for functions. X dnl --- X AC_FUNC_MMAP X+AC_CHECK_FUNCS(mlockall) X X dnl --- X dnl Checks for libraries. X@@ -152,15 +153,6 @@ X ) X AC_DEFINE(USE_NCURSES) X fi X- X-dnl ------------------------------------------------------------------ X- X-dnl --- X-dnl POSIX.4 threads X-dnl --- X-AC_CHECK_LIB(pthread,pthread_create, [], X- AC_CHECK_LIB(c_r,pthread_create, [], X- AC_MSG_ERROR([** POSIX.4 threads not installed or broken **]))) X X dnl ------------------------------------------------------------------ X END-of-ecasound/files/patch-ab echo x - ecasound/files/patch-ac sed 's/^X//' >ecasound/files/patch-ac << 'END-of-ecasound/files/patch-ac' X--- libecasound/eca-chainsetup-position.cpp.orig Fri Oct 6 18:08:00 2000 X+++ libecasound/eca-chainsetup-position.cpp Wed Dec 20 00:42:14 2000 X@@ -43,11 +43,11 @@ X } X X long int ECA_CHAINSETUP_POSITION::length_in_seconds(void) const { X- return(static_cast(length_rep) / srate_rep); X+ return(static_cast(length_rep) / srate_rep); X } X X long int ECA_CHAINSETUP_POSITION::position_in_seconds(void) const { X- return(static_cast(curpos_rep) / srate_rep); X+ return(static_cast(curpos_rep) / srate_rep); X } X X double ECA_CHAINSETUP_POSITION::length_in_seconds_exact(void) const { END-of-ecasound/files/patch-ac echo x - ecasound/files/patch-ad sed 's/^X//' >ecasound/files/patch-ad << 'END-of-ecasound/files/patch-ad' X--- libecasound/eca-object-map.cpp/orig Thu Nov 16 20:03:48 2000 X+++ libecasound/eca-object-map.cpp Mon Dec 18 19:04:48 2000 X@@ -20,6 +20,7 @@ X #include X #include X #include X+#include X #include X X #include "eca-object-map.h" END-of-ecasound/files/patch-ad echo x - ecasound/files/patch-ae sed 's/^X//' >ecasound/files/patch-ae << 'END-of-ecasound/files/patch-ae' X--- libecasound/eca-session.cpp.orig Mon Dec 4 22:22:22 2000 X+++ libecasound/eca-session.cpp Wed Dec 20 01:21:51 2000 X@@ -389,14 +389,18 @@ X int prio = ::atoi(get_argument_number(1, argu).c_str()); X if (prio != 0) X schedpriority_rep = prio; X- ecadebug->msg("(eca-session) Raised-priority mode enabled. Locking memory. (prio:" + X+ ecadebug->msg("(eca-session) Raised-priority mode enabled (prio:" + X kvu_numtostr(schedpriority_rep) + ")"); X raisepriority_rep = true; X+#ifdef HAVE_MLOCKALL X if (::mlockall (MCL_CURRENT|MCL_FUTURE)) { X ecadebug->msg("(eca-session) Warning! Couldn't lock all memory!"); X } X else X ecadebug->msg(ECA_DEBUG::system_objects, "(eca-session) Memory locked!"); X+#else X+ ecadebug->msg("(eca-session) Memory locking not available."); X+#endif X break; X } X END-of-ecasound/files/patch-ae echo x - ecasound/files/patch-af sed 's/^X//' >ecasound/files/patch-af << 'END-of-ecasound/files/patch-af' X--- libecasoundc/Makefile.am.orig Sun Nov 26 22:13:33 2000 X+++ libecasoundc/Makefile.am Fri Dec 22 02:51:28 2000 X@@ -9,10 +9,10 @@ X # remember to update eca-version.cpp X if INCLUDE_DEBUG X eca_ldflags = -version-info 0:0:0 X-ecasound_libs = -lecasound_debug X+ecasound_libs = -L$(top_builddir)/libecasound/.libs -lecasound_debug X else X eca_ldflags = -s -version-info 0:0:0 X-ecasound_libs = -lecasound X+ecasound_libs = -L$(top_builddir)/libecasound/.libs -lecasound X endif X X if KVUTILS_INSTALLED X END-of-ecasound/files/patch-af echo x - ecasound/files/patch-ag sed 's/^X//' >ecasound/files/patch-ag << 'END-of-ecasound/files/patch-ag' X--- pyecasound/Makefile.am.orig Tue Dec 5 20:46:42 2000 X+++ pyecasound/Makefile.am Fri Dec 22 02:53:02 2000 X@@ -6,9 +6,9 @@ X # ---------------------------------------------------------------------- X X if INCLUDE_DEBUG X-ecasound_libs = -lecasound_debug X+ecasound_libs = -L$(top_builddir)/libecasound/.libs -lecasound_debug X else X-ecasound_libs = -lecasound X+ecasound_libs = -L$(top_builddir)/libecasound/.libs -lecasound X endif X X if KVUTILS_INSTALLEDEND-of-ecasound/files/patch-ag echo x - ecasound/pkg-plist sed 's/^X//' >ecasound/pkg-plist << 'END-of-ecasound/pkg-plist' X@name ecasound-1.8.5d15 Xbin/ecaconvert Xbin/ecafixdc Xbin/ecanormalize Xbin/ecaplay Xbin/ecasignalview Xbin/ecasound Xbin/ecasound-config Xbin/ecasoundc-config Xinclude/ecasound/audiofx.h Xinclude/ecasound/audiofx_amplitude.h Xinclude/ecasound/audiofx_analysis.h Xinclude/ecasound/audiofx_compressor.h Xinclude/ecasound/audiofx_envelope_modulation.h Xinclude/ecasound/audiofx_filter.h Xinclude/ecasound/audiofx_impl.h Xinclude/ecasound/audiofx_ladspa.h Xinclude/ecasound/audiofx_mixing.h Xinclude/ecasound/audiofx_rcfilter.h Xinclude/ecasound/audiofx_reverb.h Xinclude/ecasound/audiofx_timebased.h Xinclude/ecasound/audiofx_vst.h Xinclude/ecasound/audiogate.h Xinclude/ecasound/audioio-buffered-proxy.h Xinclude/ecasound/audioio-cdr.h Xinclude/ecasound/audioio-cdr_impl.h Xinclude/ecasound/audioio-ewf.h Xinclude/ecasound/audioio-forked-stream.h Xinclude/ecasound/audioio-loop.h Xinclude/ecasound/audioio-mikmod.h Xinclude/ecasound/audioio-mp3.h Xinclude/ecasound/audioio-mp3_impl.h Xinclude/ecasound/audioio-null.h Xinclude/ecasound/audioio-ogg.h Xinclude/ecasound/audioio-oss.h Xinclude/ecasound/audioio-oss_impl.h Xinclude/ecasound/audioio-plugin.h Xinclude/ecasound/audioio-proxy-buffer.h Xinclude/ecasound/audioio-proxy-server.h Xinclude/ecasound/audioio-raw.h Xinclude/ecasound/audioio-rtnull.h Xinclude/ecasound/audioio-timidity.h Xinclude/ecasound/audioio-types.h Xinclude/ecasound/audioio-wave.h Xinclude/ecasound/audioio.h Xinclude/ecasound/ctrl-source.h Xinclude/ecasound/dynamic-object.h Xinclude/ecasound/dynamic-parameters.h Xinclude/ecasound/eca-audio-format.h Xinclude/ecasound/eca-audio-object-map.h Xinclude/ecasound/eca-audio-objects.h Xinclude/ecasound/eca-audio-position.h Xinclude/ecasound/eca-audio-time.h Xinclude/ecasound/eca-chain.h Xinclude/ecasound/eca-chainop-map.h Xinclude/ecasound/eca-chainop.h Xinclude/ecasound/eca-chainsetup-position.h Xinclude/ecasound/eca-chainsetup.h Xinclude/ecasound/eca-comhelp.h Xinclude/ecasound/eca-control-base.h Xinclude/ecasound/eca-control-dump.h Xinclude/ecasound/eca-control-interface.h Xinclude/ecasound/eca-control-objects.h Xinclude/ecasound/eca-control.h Xinclude/ecasound/eca-controller-map.h Xinclude/ecasound/eca-debug.h Xinclude/ecasound/eca-error.h Xinclude/ecasound/eca-fileio-mmap.h Xinclude/ecasound/eca-fileio-stream.h Xinclude/ecasound/eca-fileio.h Xinclude/ecasound/eca-iamode-parser.h Xinclude/ecasound/eca-ladspa-plugin-map.h Xinclude/ecasound/eca-main.h Xinclude/ecasound/eca-midi.h Xinclude/ecasound/eca-object-factory.h Xinclude/ecasound/eca-object-map.h Xinclude/ecasound/eca-object.h Xinclude/ecasound/eca-operator.h Xinclude/ecasound/eca-preset-map.h Xinclude/ecasound/eca-resources.h Xinclude/ecasound/eca-session.h Xinclude/ecasound/eca-static-object-maps.h Xinclude/ecasound/eca-version.h Xinclude/ecasound/eca-vst-plugin-map.h Xinclude/ecasound/ecasoundc.h Xinclude/ecasound/file-preset.h Xinclude/ecasound/finite-envelope.h Xinclude/ecasound/generic-controller.h Xinclude/ecasound/global-preset.h Xinclude/ecasound/ladspa.h Xinclude/ecasound/layer.h Xinclude/ecasound/linear-envelope.h Xinclude/ecasound/midi-cc.h Xinclude/ecasound/osc-gen.h Xinclude/ecasound/osc-sine.h Xinclude/ecasound/oscillator.h Xinclude/ecasound/plugin-paths.h Xinclude/ecasound/preset.h Xinclude/ecasound/resource-file.h Xinclude/ecasound/sample-specs.h Xinclude/ecasound/samplebuffer.h Xinclude/ecasound/samplebuffer_functions.h Xinclude/ecasound/samplebuffer_impl.h Xinclude/ecasound/samplebuffer_iterators.h Xinclude/ecasound/two-stage-linear-envelope.h Xinclude/kvutils/com_line.h Xinclude/kvutils/definition_by_contract.h Xinclude/kvutils/kvu_numtostr.h Xinclude/kvutils/kvutils.h Xinclude/kvutils/locks.h Xinclude/kvutils/message_item.h Xinclude/kvutils/object_queue.h Xinclude/kvutils/procedure_timer.h Xinclude/kvutils/value_queue.h Xlib/libecasound.a Xlib/libecasound.la Xlib/libecasound.so Xlib/libecasound.so.7 Xlib/libecasoundc.a Xlib/libecasoundc.la Xlib/libecasoundc.so Xlib/libecasoundc.so.0 Xlib/libkvutils.a Xlib/libkvutils.la Xlib/libkvutils.so Xlib/libkvutils.so.2 Xlib/ecasound-plugins/libaudioio_af.la Xlib/ecasound-plugins/libaudioio_af.so Xlib/ecasound-plugins/libaudioio_alsa.la Xlib/ecasound-plugins/libaudioio_alsa.so Xlib/ecasound-plugins/libaudioio_alsa2.la Xlib/ecasound-plugins/libaudioio_alsa2.so Xlib/ecasound-plugins/libaudioio_alsa2_plugin.la Xlib/ecasound-plugins/libaudioio_alsa2_plugin.so Xlib/ecasound-plugins/libaudioio_alsa3.la Xlib/ecasound-plugins/libaudioio_alsa3.so Xlib/ecasound-plugins/libaudioio_alsalb.la Xlib/ecasound-plugins/libaudioio_alsalb.so Xlib/ecasound-plugins/libaudioio_arts.la Xlib/ecasound-plugins/libaudioio_arts.so Xshare/ecasound/effect_presets Xshare/ecasound/generic_oscillators Xlib/python1.5/site-packages/pyeca.py Xlib/python1.5/site-packages/libpyecasound.la Xlib/python1.5/site-packages/libpyecasound.so X@dirrm share/ecasound X@dirrm include/ecasound X@dirrm lib/ecasound-plugins X@unexec rmdir %D/lib/python1.5/site-packages 2>/dev/null || true X@exec /sbin/ldconfig -m %D/lib X@unexec /sbin/ldconfig -R END-of-ecasound/pkg-plist echo x - ecasound/pkg-comment sed 's/^X//' >ecasound/pkg-comment << 'END-of-ecasound/pkg-comment' XSoftware package designed for multitrack audio processing. END-of-ecasound/pkg-comment echo x - ecasound/distinfo sed 's/^X//' >ecasound/distinfo << 'END-of-ecasound/distinfo' XMD5 (ecasound-1.8.5d15.tar.gz) = 9e9f1480b026c37e95efdeab16e0dec7 END-of-ecasound/distinfo echo x - ecasound/pkg-descr sed 's/^X//' >ecasound/pkg-descr << 'END-of-ecasound/pkg-descr' X======================================================================= X*** [Extract from] Ecasound - README *** X======================================================================= X----------------------------------------------------------------------- X What is it? X----------------------------------------------------------------------- X XEcasound is a software package designed for multitrack audio Xprocessing. It can be used for simple tasks like audio playback, Xrecording and format conversions, as well as for multitrack effect Xprocessing, mixing, recording and signal recycling. Ecasound supports Xa wide range of audio inputs, outputs and effect algorithms. XEffects and audio objects can be combined in various ways, and their Xparameters can be controlled by operator objects like oscillators Xand MIDI-CCs. As most functionality is located in shared libraries, Xcreating alternative user-interfaces is easy. A versatile console mode Xinterface is included in the package. X XEcasound home site XWWW: http://www.eca.cx/ecasound X X- The Anarcat END-of-ecasound/pkg-descr echo x - ecasound/Makefile sed 's/^X//' >ecasound/Makefile << 'END-of-ecasound/Makefile' X# New ports collection makefile for: ecasound X# Date created: 22 dec 2000 X# Whom: The Anarcat X# X# $FreeBSD: ports/audio/esound/Makefile,v 1.23 2000/10/05 23:03:41 ade Exp $ X# X XPORTNAME= ecasound XPORTVERSION= 1.8.5d15 XCATEGORIES= audio XMASTER_SITES= http://ecasound.seul.org/download/ \ X ftp://ecawave.sourceforge.net:/pub/ecawave/ \ X http://download.sourceforge.net/ecawave/ X XMAINTAINER= anarcat@tao.ca X X# RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 \ X# lame:${PORTSDIR}/audio/lame \ X# mikmod:${PORTSDIR}/audio/mikmod X X# LIB_DEPENDS= audiofile.0:${PORTSDIR}/audio/libaudiofile X XGNU_CONFIGURE= yes XUSE_GMAKE= yes XUSE_AUTOMAKE= yes X XUSE_LIBTOOL= yes XINSTALLS_SHLIB= yes X XMAN1= ecasound-iam.1 ecasound.1 ecatools.1 XMAN5= ecasoundrc.5 X X#post-install: X# strip ${PREFIX}/bin/ecaconvert ${PREFIX}/bin/ecafixdc \ X#${PREFIX}/bin/ecanormalize ${PREFIX}/bin/ecaplay ${PREFIX}/bin/ecasignalview \ X#${PREFIX}/bin/ecasound ${PREFIX}/bin/ecasound-config ${PREFIX}/bin/ecasoundc-config X X.include END-of-ecasound/Makefile exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 15:40:44 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 15:40:29 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BAF8E37B698 for ; Fri, 22 Dec 2000 15:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMNe2068470; Fri, 22 Dec 2000 15:40:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 15:40:02 -0800 (PST) Resent-Message-Id: <200012222340.eBMNe2068470@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, beaupran@iro.umontreal.ca Received: from shall.anarcat.yi.org (phobos.IRO.UMontreal.CA [132.204.20.20]) by hub.freebsd.org (Postfix) with ESMTP id E240C37B400 for ; Fri, 22 Dec 2000 15:39:36 -0800 (PST) Received: by shall.anarcat.yi.org (Postfix, from userid 1000) id 584AE42C; Fri, 22 Dec 2000 18:40:01 -0500 (EST) Message-Id: <20001222234001.584AE42C@shall.anarcat.yi.org> Date: Fri, 22 Dec 2000 18:40:01 -0500 (EST) From: beaupran@iro.umontreal.ca Reply-To: beaupran@iro.umontreal.ca To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23780: New port (audio/ecawave): Simple graphical audio file editor. Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23780 >Category: ports >Synopsis: New port (audio/ecawave): Simple graphical audio file editor. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 15:40:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: The Anarcat >Release: FreeBSD 4.2-BETA i386 >Organization: >Environment: N/A >Description: Please review >How-To-Repeat: N/A >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # ecawave # ecawave/pkg-comment # ecawave/pkg-descr # ecawave/Makefile # ecawave/distinfo # ecawave/files # ecawave/files/patch-ad # ecawave/files/patch-aa # ecawave/files/patch-ab # ecawave/files/patch-ac # ecawave/pkg-plist # echo c - ecawave mkdir -p ecawave > /dev/null 2>&1 echo x - ecawave/pkg-comment sed 's/^X//' >ecawave/pkg-comment << 'END-of-ecawave/pkg-comment' XSimple graphical audio file editor. END-of-ecawave/pkg-comment echo x - ecawave/pkg-descr sed 's/^X//' >ecawave/pkg-descr << 'END-of-ecawave/pkg-descr' X----------------------------------------------------------------------- X What is it? X----------------------------------------------------------------------- X XEcawave is a simple graphical audio file editor. The user-interface is Xbased on Qt libraries, while almost all audio functionality is taken Xdirectly from ecasound libraries. As ecawave is designed for editing Xlarge audio files, all processing is done direct-to-disk. Simple Xwaveform caching is used to speed-up file operations. Ecawave supports Xall audio file formats and effect algorithms provided by ecasound Xlibraries. This includes OSS, ALSA, aRts, over 20 file formats, over 30 Xeffect types, LADPSA plugins and multi-operator effect presets. X XEcawave home site XWWW: http://www.eca.cx/ecawave X X- The Anarcat END-of-ecawave/pkg-descr echo x - ecawave/Makefile sed 's/^X//' >ecawave/Makefile << 'END-of-ecawave/Makefile' X# New ports collection makefile for: ecawave X# Date created: 22 december 2000 X# Whom: The Anarcat X# X# $FreeBSD: ports/audio/esound/Makefile,v 1.23 2000/10/05 23:03:41 ade Exp $ X# X XPORTNAME= ecawave XPORTVERSION= 0.3.3d3 XCATEGORIES= audio XMASTER_SITES= X XMAINTAINER= anarcat@tao.ca X XLIB_DEPENDS= ecasound.7:${PORTSDIR}/audio/ecasound \ X qtecasound.1:${PORTSDIR}/audio/qtecasound X XGNU_CONFIGURE= yes XUSE_GMAKE= yes XUSE_AUTOMAKE= yes X XUSE_X_PREFIX= yes X#USE_QT2= yes X XUSE_LIBTOOL= yes XINSTALLS_SHLIB= yes X XCONFIGURE_ENV+= LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" \ X CXXFLAGS="${CXXFLAGS} -I${LOCALBASE}/include -I${X11BASE}/include" X XCONFIGURE_ARGS+= --with-qt-includes=/usr/X11R6/include/qt2 --with-qt-libraries=/usr/X11R6/lib X XMAN1= ecawave.1 X X.include END-of-ecawave/Makefile echo x - ecawave/distinfo sed 's/^X//' >ecawave/distinfo << 'END-of-ecawave/distinfo' XMD5 (ecawave-0.3.3d3.tar.gz) = a4173933c6266dfc6c9203a0bae628d2 END-of-ecawave/distinfo echo c - ecawave/files mkdir -p ecawave/files > /dev/null 2>&1 echo x - ecawave/files/patch-ad sed 's/^X//' >ecawave/files/patch-ad << 'END-of-ecawave/files/patch-ad' X--- src/Makefile.am.orig Sun Sep 17 19:21:11 2000 X+++ src/Makefile.am Fri Dec 22 15:03:09 2000 X@@ -68,9 +68,9 @@ X ecawave_SOURCES = $(ecawave_src_files) $(ecawave_include_files) $(ecawave_src_mocs) X ecawave_debug_SOURCES = $(ecawave_SOURCES) X X-ecawave_LDADD = -L$(qt_libraries) -lqt $(qtecasound_libraries) X+ecawave_LDADD = -L$(qt_libraries) -lqt2 $(qtecasound_libraries) X ecawave_LDFLAGS = X-ecawave_debug_LDADD = -L$(qt_libraries) -lqt $(qtecasound_libraries) X+ecawave_debug_LDADD = -L$(qt_libraries) -lqt2 $(qtecasound_libraries) X ecawave_debug_LDFLAGS = $(ecawave_LDFLAGS) X X # ------ END-of-ecawave/files/patch-ad echo x - ecawave/files/patch-aa sed 's/^X//' >ecawave/files/patch-aa << 'END-of-ecawave/files/patch-aa' X--- acinclude.m4.orig Fri Sep 1 11:40:45 2000 X+++ acinclude.m4 Fri Dec 22 16:46:59 2000 X@@ -59,6 +59,7 @@ X qtecasound_libraries=`qtecasound-config --libs` X AC_SUBST(qtecasound_libraries) X fi X+LDFLAGS="$LDFLAGS $qtecasound_libraries" X qtecasound_includes=`qtecasound-config --cflags` X AC_SUBST(qtecasound_includes) X X@@ -96,7 +97,7 @@ X ## X AC_DEFUN(AC_PATH_QT_MOC, X [ X-AC_PATH_PROG(MOC, moc, /usr/bin/moc, X+AC_PATH_PROG(MOC, moc, moc2, /usr/bin/moc, X $ac_qt_bindir:$QTDIR/bin:$PATH:/usr/bin:/usr/X11R6/bin:/usr/lib/qt/bin:/usr/local/qt/bin) X ]) X END-of-ecawave/files/patch-aa echo x - ecawave/files/patch-ab sed 's/^X//' >ecawave/files/patch-ab << 'END-of-ecawave/files/patch-ab' X--- aclocal.m4.orig Fri Oct 6 18:07:06 2000 X+++ aclocal.m4 Fri Dec 22 16:47:40 2000 X@@ -63,6 +63,7 @@ X qtecasound_libraries=`qtecasound-config --libs` X AC_SUBST(qtecasound_libraries) X fi X+LDFLAGS="$LDFLAGS $qtecasound_libraries" X qtecasound_includes=`qtecasound-config --cflags` X AC_SUBST(qtecasound_includes) X X@@ -95,7 +96,7 @@ X X AC_DEFUN(AC_PATH_QT_MOC, X [ X-AC_PATH_PROG(MOC, moc, /usr/bin/moc, X+AC_PATH_PROG(MOC, moc, moc2, /usr/bin/moc, X $ac_qt_bindir:$QTDIR/bin:$PATH:/usr/bin:/usr/X11R6/bin:/usr/lib/qt/bin:/usr/local/qt/bin) X ]) X END-of-ecawave/files/patch-ab echo x - ecawave/files/patch-ac sed 's/^X//' >ecawave/files/patch-ac << 'END-of-ecawave/files/patch-ac' X--- work/ecawave-0.3.3d3/configure.in Fri Oct 6 18:07:03 2000 X+++ ../ecawave-0.3.3d3/configure.in Fri Dec 22 15:31:20 2000 X@@ -25,19 +25,51 @@ X AC_SUBST(AUTOCONF) X AC_SUBST(AUTOMAKE) X X+AC_LANG_CPLUSPLUS X dnl --- X dnl Set CXXFLAGS. X dnl --- X-CXXFLAGS="-O2 -D_REENTRANT -DNDEBUG -ffast-math" X-dnl CXXFLAGS="-O2 -D_REENTRANT -fomit-frame-pointer -finline-functions -ffast-math" X X AC_ARG_ENABLE(debug, X-[ --enable-debug Enable debugging (default = no)], X+[ --enable-debug Enable debugging (default = no)], X include_debug=yes) X AM_CONDITIONAL(INCLUDE_DEBUG, test x$include_debug = xyes) X if test x$include_debug = xyes; then X-CXXFLAGS="-D_REENTRANT -DENABLE_DBC -g -Wall -Wstrict-prototypes -pedantic" X-fi X+CXXFLAGS="$CXXFLAGS -O2 -D_REENTRANT -fomit-frame-pointer -finline-functions -ffast-math" X+else X+CXXFLAGS="$CXXFLAGS -O2 -D_REENTRANT -DNDEBUG -ffast-math" X+fi X+ X+ X+dnl --- X+dnl POSIX.4 threads X+dnl --- X+ X+echo "Host is $host" X+ X+dnl case "$host" in X+dnl Not tested all cases. Cases taken from LICQ. X+dnl *-*-openbsd*) X+dnl CFLAGS="$CFLAGS -pthread" X+dnl CXXFLAGS="$CXXFLAGS -pthread" X+dnl echo "Setting OpenBSD compilation options for POSIX threads" X+dnl ;; X+dnl *-*-freebsd*) X+ CFLAGS="$CFLAGS -pthread" X+ CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE" X+ CXXFLAGS="$CXXFLAGS -pthread" X+ echo "Setting FreeBSD compilation options for POSIX threads" X+dnl ;; X+dnl *-*-solaris*) X+dnl CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS -DUSE_SOLARIS" X+dnl echo "Setting Solaris compilation options for POSIX threads" X+dnl ;; X+dnl *) X+dnl AC_CHECK_LIB(pthread,pthread_create, [], X+dnl AC_CHECK_LIB(c_r,pthread_create, [], X+dnl AC_MSG_ERROR([** POSIX.4 threads not installed or broken **]))) X+dnl ;; X+dnl esac X X dnl --- X dnl Ecasound libs X@@ -61,14 +93,6 @@ X X AC_CHECK_LIBECASOUND(7) X AC_CHECK_LIBQTECASOUND(1) X- X-dnl --- X-dnl POSIX.4 threads X-dnl --- X-AC_CHECK_LIB(pthread,pthread_create, , X- AC_CHECK_LIB(c_r,pthread_create, X- LDFLAGS="-pthreads", X- AC_MSG_ERROR([** POSIX.4 threads not installed or broken **]))) X X dnl --- X dnl Checks for header files. END-of-ecawave/files/patch-ac echo x - ecawave/pkg-plist sed 's/^X//' >ecawave/pkg-plist << 'END-of-ecawave/pkg-plist' Xbin/ecawave END-of-ecawave/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 15:40:55 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 15:40:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D36C37B699 for ; Fri, 22 Dec 2000 15:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMNe2S68461; Fri, 22 Dec 2000 15:40:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 15:40:02 -0800 (PST) Resent-Message-Id: <200012222340.eBMNe2S68461@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, beaupran@iro.umontreal.ca Received: from shall.anarcat.yi.org (phobos.IRO.UMontreal.CA [132.204.20.20]) by hub.freebsd.org (Postfix) with ESMTP id 8D8BE37B402 for ; Fri, 22 Dec 2000 15:38:36 -0800 (PST) Received: by shall.anarcat.yi.org (Postfix, from userid 1000) id DCA8242C; Fri, 22 Dec 2000 18:39:00 -0500 (EST) Message-Id: <20001222233900.DCA8242C@shall.anarcat.yi.org> Date: Fri, 22 Dec 2000 18:39:00 -0500 (EST) From: beaupran@iro.umontreal.ca Reply-To: beaupran@iro.umontreal.ca To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23779: New port (audio/qtecasound): Graphical user-interface for ecasound. Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23779 >Category: ports >Synopsis: New port (audio/qtecasound): Graphical user-interface for ecasound. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 15:40:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: The Anarcat >Release: FreeBSD 4.2-BETA i386 >Organization: >Environment: N/A >Description: Please review. >How-To-Repeat: N/A >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # qtecasound # qtecasound/pkg-plist # qtecasound/pkg-comment # qtecasound/pkg-descr # qtecasound/Makefile # qtecasound/distinfo # qtecasound/files # qtecasound/files/patch-aa # qtecasound/files/patch-ab # qtecasound/files/patch-ac # qtecasound/files/patch-ad # qtecasound/files/patch-ae # qtecasound/files/patch-af # echo c - qtecasound mkdir -p qtecasound > /dev/null 2>&1 echo x - qtecasound/pkg-plist sed 's/^X//' >qtecasound/pkg-plist << 'END-of-qtecasound/pkg-plist' Xbin/qtecasound Xbin/qtecasound-config Xinclude/qtecasound/qeaudioformatinput.h Xinclude/qtecasound/qeaudioobjectconfiguration.h Xinclude/qtecasound/qebuttonrow.h Xinclude/qtecasound/qechainoperator.h Xinclude/qtecasound/qechainoperatorinput.h Xinclude/qtecasound/qecontroller.h Xinclude/qtecasound/qedialog.h Xinclude/qtecasound/qefilenameinput.h Xinclude/qtecasound/qeinput.h Xinclude/qtecasound/qelibraryobject.h Xinclude/qtecasound/qeobjectmap.h Xinclude/qtecasound/qeokcancelinput.h Xinclude/qtecasound/qeoperatorconfiguration.h Xinclude/qtecasound/qesignallevel.h Xinclude/qtecasound/qeslider.h Xinclude/qtecasound/qestringdialog.h Xinclude/qtecasound/qestringlistdialog.h Xinclude/qtecasound/qeversion.h Xlib/libqtecasound.a Xlib/libqtecasound.la Xlib/libqtecasound.so Xlib/libqtecasound.so.1 X X@dirrm include/qtecasound END-of-qtecasound/pkg-plist echo x - qtecasound/pkg-comment sed 's/^X//' >qtecasound/pkg-comment << 'END-of-qtecasound/pkg-comment' XGraphical user-interface for ecasound. END-of-qtecasound/pkg-comment echo x - qtecasound/pkg-descr sed 's/^X//' >qtecasound/pkg-descr << 'END-of-qtecasound/pkg-descr' X----------------------------------------------------------------------- X What is it? X----------------------------------------------------------------------- X XQtecasound is a graphical user-interface for ecasound. It uses the Xsame engine as the the console mode version. Command line parameters Xand interactive-mode commands work identically. Qtecasound supports Xall audio file formats and effect algorithms provided by ecasound Xlibraries. This includes OSS, ALSA, aRts, over 20 file formats, over 30 Xeffect types, LADPSA plugins and multi-operator effect presets. X XQtecasound is a graphical user-interface for ecasound. It uses the Xsame engine as the the console mode version. Command line parameters Xand interactive-mode commands work identically. Qtecasound supports Xall audio file formats and effect algorithms provided by ecasound Xlibraries. This includes OSS, ALSA, aRts, over 20 file formats, over 30 Xeffect types, LADPSA plugins and multi-operator effect presets. X XEcasound and Qtecasound home site XWWW: http://www.eca.cx X X- The Anarcat END-of-qtecasound/pkg-descr echo x - qtecasound/Makefile sed 's/^X//' >qtecasound/Makefile << 'END-of-qtecasound/Makefile' X# New ports collection makefile for: qtecasound X# Date created: 22 december 2000 X# Whom: The Anarcat X# X# $FreeBSD: ports/audio/esound/Makefile,v 1.23 2000/10/05 23:03:41 ade Exp $ X# X XPORTNAME= qtecasound XPORTVERSION= 0.1.2d1 XCATEGORIES= audio XMASTER_SITES= X XMAINTAINER= anarcat@tao.ca X XLIB_DEPENDS= ecasound.7:${PORTSDIR}/audio/ecasound X XGNU_CONFIGURE= yes XUSE_GMAKE= yes XUSE_AUTOMAKE= yes X XUSE_X_PREFIX= yes X#USE_QT2= yes X XUSE_LIBTOOL= yes XINSTALLS_SHLIB= yes X XCONFIGURE_ENV+= "CXXFLAGS=${CXXFLAGS} -I${LOCALBASE}/include" XCONFIGURE_ENV+= "LDFLAGS=${LDFLAGS} -L${LOCALBASE}/lib" XCONFIGURE_ARGS+= --with-qt-includes=/usr/X11R6/include/qt2 --with-qt-libraries=/usr/X11R6/lib X XMAN1= qtecasound.1 X X.include END-of-qtecasound/Makefile echo x - qtecasound/distinfo sed 's/^X//' >qtecasound/distinfo << 'END-of-qtecasound/distinfo' XMD5 (qtecasound-0.1.2d1.tar.gz) = 5d346ed06aa6f2749a69ee526a079d48 END-of-qtecasound/distinfo echo c - qtecasound/files mkdir -p qtecasound/files > /dev/null 2>&1 echo x - qtecasound/files/patch-aa sed 's/^X//' >qtecasound/files/patch-aa << 'END-of-qtecasound/files/patch-aa' X--- acinclude.m4.orig Fri Sep 1 05:35:30 2000 X+++ acinclude.m4 Fri Dec 22 03:42:33 2000 X@@ -51,7 +51,7 @@ X ## X AC_DEFUN(AC_PATH_QT_MOC, X [ X-AC_PATH_PROG(MOC, moc, /usr/bin/moc, X+AC_PATH_PROG(MOC, moc, moc2, /usr/bin/moc, X $ac_qt_bindir:$QTDIR/bin:$PATH:/usr/bin:/usr/X11R6/bin:/usr/lib/qt/bin:/usr/local/qt/bin) X ]) X X@@ -118,7 +118,7 @@ X X qt_libdirs="$ac_qt_libraries /usr/lib/qt/lib /usr/local/qt/lib /usr/lib/qt /usr/X11R6/lib /usr/lib $x_libraries $QTLIB" X test -n "$QTDIR" && qt_libdirs="$QTDIR/lib $QTDIR $qt_libdirs" X-AC_FIND_FILE(libqt.so.2, $qt_libdirs, qt_libdir) X+AC_FIND_FILE(libqt2.so, $qt_libdirs, qt_libdir) X ac_qt_libraries=$qt_libdir X X if test "$ac_qt_includes" = NO || test "$ac_qt_libraries" = NO; then END-of-qtecasound/files/patch-aa echo x - qtecasound/files/patch-ab sed 's/^X//' >qtecasound/files/patch-ab << 'END-of-qtecasound/files/patch-ab' X--- aclocal.m4.orig Sun Oct 8 19:07:04 2000 X+++ aclocal.m4 Fri Dec 22 03:43:48 2000 X@@ -54,7 +54,7 @@ X X AC_DEFUN(AC_PATH_QT_MOC, X [ X-AC_PATH_PROG(MOC, moc, /usr/bin/moc, X+AC_PATH_PROG(MOC, moc, moc2, /usr/bin/moc, X $ac_qt_bindir:$QTDIR/bin:$PATH:/usr/bin:/usr/X11R6/bin:/usr/lib/qt/bin:/usr/local/qt/bin) X ]) X X@@ -111,7 +111,7 @@ X X qt_libdirs="$ac_qt_libraries /usr/lib/qt/lib /usr/local/qt/lib /usr/lib/qt /usr/X11R6/lib /usr/lib $x_libraries $QTLIB" X test -n "$QTDIR" && qt_libdirs="$QTDIR/lib $QTDIR $qt_libdirs" X-AC_FIND_FILE(libqt.so.2, $qt_libdirs, qt_libdir) X+AC_FIND_FILE(libqt2.so, $qt_libdirs, qt_libdir) X ac_qt_libraries=$qt_libdir X X if test "$ac_qt_includes" = NO || test "$ac_qt_libraries" = NO; then END-of-qtecasound/files/patch-ab echo x - qtecasound/files/patch-ac sed 's/^X//' >qtecasound/files/patch-ac << 'END-of-qtecasound/files/patch-ac' X--- configure.in.orig Sun Oct 8 15:38:38 2000 X+++ configure.in Fri Dec 22 16:06:14 2000 X@@ -22,6 +22,7 @@ X X dnl -- X dnl Libtool X+AM_PROG_LIBTOOL X AC_PATH_PROG(LIBTOOL,libtool,none) X if test x$LIBTOOL = xnone; then X AC_MSG_ERROR([** Libtool package not installed! **]) X@@ -30,7 +31,6 @@ X if test x$GNUM4 = xnone; then X AC_MSG_ERROR([** GNU m4 not installed! **]) X fi X-AM_PROG_LIBTOOL X X ACLOCAL=aclocal X AUTOMAKE=automake X@@ -42,14 +42,15 @@ X dnl --- X dnl Set CXXFLAGS. X dnl --- X-CXXFLAGS="-O2 -D_REENTRANT -DNDEBUG -ffast-math -fstrict-aliasing -funroll-loops" X X AC_ARG_ENABLE(debug, X [ --enable-debug Enable debugging (default = no)], X include_debug=yes) X AM_CONDITIONAL(INCLUDE_DEBUG, test x$include_debug = xyes) X if test x$include_debug = xyes; then X-CXXFLAGS="-D_REENTRANT -DENABLE_DBC -g -Wall -Wstrict-prototypes -O2 -ffast-math" X+CXXFLAGS="$CXXFLAGS -D_REENTRANT -DENABLE_DBC -g -Wall -Wstrict-prototypes -O2 -ffast-math" X+else X+CXXFLAGS="$CXXFLAGS -O2 -D_REENTRANT -DNDEBUG -ffast-math -fstrict-aliasing -funroll-loops" X fi X X AC_ARG_ENABLE(dbc, X@@ -67,18 +68,37 @@ X dnl --- X dnl POSIX.4 threads X dnl --- X-AC_CHECK_LIB(pthread,pthread_create, , X- AC_CHECK_LIB(c_r,pthread_create, X- LDFLAGS="-pthreads", X+case "$host" in X+dnl Not tested all cases. Cases taken from LICQ. X+dnl *-*-openbsd*) X+dnl CFLAGS="$cFLAGS -pthread" X+dnl CXXFLAGS="$CXXFLAGS -pthread" X+dnl echo "Setting OpenBSD compilation options for POSIX threads" X+ *-*-freebsd*) X+ CFLAGS="$CFLAGS -pthread" X+ CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE" X+ CXXFLAGS="$CXXFLAGS -pthread" X+ echo "Setting FreeBSD compilation options for POSIX threads" X+ ;; X+dnl *-*-solaris*) X+dnl CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS -DUSE_SOLARIS" X+dnl echo "Setting Solaris compilation options for POSIX threads" X+dnl ;; X+ *) X+AC_CHECK_LIB(pthread,pthread_create, [], X+ AC_CHECK_LIB(c_r,pthread_create, [], X AC_MSG_ERROR([** POSIX.4 threads not installed or broken **]))) X+ ;; X+esac X X+AC_LANG_CPLUSPLUS X dnl --- X dnl Ecasound libs X dnl --- X if test x$include_debug = xyes; then X- AC_CHECK_LIB(ecasound_debug, main,AC_MSG_RESULT(found),AC_MSG_ERROR([** libecasound_debug not installed/found **]),-lkvutils) X+ AC_CHECK_LIB(ecasound_debug, main,AC_MSG_RESULT(found),AC_MSG_ERROR([** libecasound_debug not installed/found **]),-lkvutils ${LDFLAGS}) X else X- AC_CHECK_LIB(ecasound, main,AC_MSG_RESULT(found),AC_MSG_ERROR([** libecasound not installed/found **]),-lkvutils) X+ AC_CHECK_LIB(ecasound, main,AC_MSG_RESULT(found),AC_MSG_ERROR([** libecasound not installed/found **]),-lkvutils ${LDFLAGS}) X fi X X AC_CHECK_LIBECASOUND(7) END-of-qtecasound/files/patch-ac echo x - qtecasound/files/patch-ad sed 's/^X//' >qtecasound/files/patch-ad << 'END-of-qtecasound/files/patch-ad' X--- qtecasound/Makefile.am.orig Fri Sep 1 05:36:01 2000 X+++ qtecasound/Makefile.am Fri Dec 22 03:43:35 2000 X@@ -58,9 +58,9 @@ X X qtecasound_SOURCES = $(ecasound_qt_src) $(ecasound_qt_mocs) $(ecasound_qt_includes) X qtecasound_debug_SOURCES = $(ecasound_qt_src) $(ecasound_qt_mocs) $(ecasound_qt_includes) X-qtecasound_LDADD = -L$(qt_libraries) -lqt \ X+qtecasound_LDADD = -L$(qt_libraries) -lqt2 \ X $(top_builddir)/libqtecasound/libqtecasound.la X-qtecasound_debug_LDADD = -L$(qt_libraries) -lqt \ X+qtecasound_debug_LDADD = -L$(qt_libraries) -lqt2 \ X $(top_builddir)/libqtecasound/libqtecasound_debug.la X qtecasound_LDFLAGS = $(all_libraries) X qtecasound_debug_LDFLAGS = $(qtecasound_LDFLAGS) END-of-qtecasound/files/patch-ad echo x - qtecasound/files/patch-ae sed 's/^X//' >qtecasound/files/patch-ae << 'END-of-qtecasound/files/patch-ae' X--- qtecasound/Makefile.in.orig Thu Dec 7 02:12:39 2000 X+++ qtecasound/Makefile.in Fri Dec 22 03:44:52 2000 X@@ -124,9 +124,9 @@ X X qtecasound_SOURCES = $(ecasound_qt_src) $(ecasound_qt_mocs) $(ecasound_qt_includes) X qtecasound_debug_SOURCES = $(ecasound_qt_src) $(ecasound_qt_mocs) $(ecasound_qt_includes) X-qtecasound_LDADD = -L$(qt_libraries) -lqt $(top_builddir)/libqtecasound/libqtecasound.la X+qtecasound_LDADD = -L$(qt_libraries) -lqt2 $(top_builddir)/libqtecasound/libqtecasound.la X X-qtecasound_debug_LDADD = -L$(qt_libraries) -lqt $(top_builddir)/libqtecasound/libqtecasound_debug.la X+qtecasound_debug_LDADD = -L$(qt_libraries) -lqt2 $(top_builddir)/libqtecasound/libqtecasound_debug.la X X qtecasound_LDFLAGS = $(all_libraries) X qtecasound_debug_LDFLAGS = $(qtecasound_LDFLAGS) X@@ -173,7 +173,7 @@ X X DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) X X-TAR = gtar X+TAR = tar X GZIP_ENV = --best X SOURCES = $(qtecasound_debug_SOURCES) $(qtecasound_SOURCES) X OBJECTS = $(qtecasound_debug_OBJECTS) $(qtecasound_OBJECTS) X@@ -301,7 +301,7 @@ X @for file in $(DISTFILES); do \ X d=$(srcdir); \ X if test -d $$d/$$file; then \ X- cp -pr $$/$$file $(distdir)/$$file; \ X+ cp -pr $$d/$$file $(distdir)/$$file; \ X else \ X test -f $(distdir)/$$file \ X || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ X@@ -309,25 +309,6 @@ X fi; \ X done X $(MAKE) $(AM_MAKEFLAGS) top_distdir="$(top_distdir)" distdir="$(distdir)" dist-hook X-chainsetup_moc.o: chainsetup_moc.cpp chainsetup.h X-chainsetup.o: chainsetup.cpp ../config.h \ X- ../libqtecasound/qestringdialog.h \ X- ../libqtecasound/qebuttonrow.h interface.h chainsetup.h X-debug_if.o: debug_if.cpp debug_if.h X-debug_moc.o: debug_moc.cpp debug.h X-debug.o: debug.cpp debug_if.h debug.h X-debugtab_moc.o: debugtab_moc.cpp debugtab.h interface.h ../config.h X-debugtab.o: debugtab.cpp ../libqtecasound/qebuttonrow.h interface.h \ X- ../config.h debug.h debugtab.h X-interface_moc.o: interface_moc.cpp interface.h ../config.h X-interface.o: interface.cpp ../libqtecasound/qebuttonrow.h ../config.h \ X- chainsetup.h qtecasound.h rtposition.h debug.h debugtab.h \ X- interface.h X-qtecasound.o: qtecasound.cpp ../config.h interface.h qtecasound.h \ X- debug_if.h X-rtposition_moc.o: rtposition_moc.cpp rtposition.h X-rtposition.o: rtposition.cpp rtposition.h X- X info-am: X info: info-am X dvi-am: END-of-qtecasound/files/patch-ae echo x - qtecasound/files/patch-af sed 's/^X//' >qtecasound/files/patch-af << 'END-of-qtecasound/files/patch-af' X--- configure.orig Fri Dec 22 16:08:26 2000 X+++ configure Fri Dec 22 16:08:55 2000 X@@ -1337,84 +1337,6 @@ X test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' X X X-# Extract the first word of "libtool", so it can be a program name with args. X-set dummy libtool; ac_word=$2 X-echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 X-echo "configure:1344: checking for $ac_word" >&5 X-if eval "test \"`echo '$''{'ac_cv_path_LIBTOOL'+set}'`\" = set"; then X- echo $ac_n "(cached) $ac_c" 1>&6 X-else X- case "$LIBTOOL" in X- /*) X- ac_cv_path_LIBTOOL="$LIBTOOL" # Let the user override the test with a path. X- ;; X- ?:/*) X- ac_cv_path_LIBTOOL="$LIBTOOL" # Let the user override the test with a dos path. X- ;; X- *) X- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" X- ac_dummy="$PATH" X- for ac_dir in $ac_dummy; do X- test -z "$ac_dir" && ac_dir=. X- if test -f $ac_dir/$ac_word; then X- ac_cv_path_LIBTOOL="$ac_dir/$ac_word" X- break X- fi X- done X- IFS="$ac_save_ifs" X- test -z "$ac_cv_path_LIBTOOL" && ac_cv_path_LIBTOOL="none" X- ;; X-esac X-fi X-LIBTOOL="$ac_cv_path_LIBTOOL" X-if test -n "$LIBTOOL"; then X- echo "$ac_t""$LIBTOOL" 1>&6 X-else X- echo "$ac_t""no" 1>&6 X-fi X- X-if test x$LIBTOOL = xnone; then X- { echo "configure: error: ** Libtool package not installed! **" 1>&2; exit 1; } X-fi X-# Extract the first word of "m4", so it can be a program name with args. X-set dummy m4; ac_word=$2 X-echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 X-echo "configure:1383: checking for $ac_word" >&5 X-if eval "test \"`echo '$''{'ac_cv_path_GNUM4'+set}'`\" = set"; then X- echo $ac_n "(cached) $ac_c" 1>&6 X-else X- case "$GNUM4" in X- /*) X- ac_cv_path_GNUM4="$GNUM4" # Let the user override the test with a path. X- ;; X- ?:/*) X- ac_cv_path_GNUM4="$GNUM4" # Let the user override the test with a dos path. X- ;; X- *) X- IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" X- ac_dummy="$PATH" X- for ac_dir in $ac_dummy; do X- test -z "$ac_dir" && ac_dir=. X- if test -f $ac_dir/$ac_word; then X- ac_cv_path_GNUM4="$ac_dir/$ac_word" X- break X- fi X- done X- IFS="$ac_save_ifs" X- test -z "$ac_cv_path_GNUM4" && ac_cv_path_GNUM4="none" X- ;; X-esac X-fi X-GNUM4="$ac_cv_path_GNUM4" X-if test -n "$GNUM4"; then X- echo "$ac_t""$GNUM4" 1>&6 X-else X- echo "$ac_t""no" 1>&6 X-fi X- X-if test x$GNUM4 = xnone; then X- { echo "configure: error: ** GNU m4 not installed! **" 1>&2; exit 1; } X-fi X # Check whether --enable-shared or --disable-shared was given. X if test "${enable_shared+set}" = set; then X enableval="$enable_shared" X@@ -1491,7 +1413,7 @@ X fi X X echo $ac_n "checking host system type""... $ac_c" 1>&6 X-echo "configure:1495: checking host system type" >&5 X+echo "configure:1417: checking host system type" >&5 X X host_alias=$host X case "$host_alias" in X@@ -1512,7 +1434,7 @@ X echo "$ac_t""$host" 1>&6 X X echo $ac_n "checking build system type""... $ac_c" 1>&6 X-echo "configure:1516: checking build system type" >&5 X+echo "configure:1438: checking build system type" >&5 X X build_alias=$build X case "$build_alias" in X@@ -1532,7 +1454,7 @@ X # Extract the first word of "ranlib", so it can be a program name with args. X set dummy ranlib; ac_word=$2 X echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 X-echo "configure:1536: checking for $ac_word" >&5 X+echo "configure:1458: checking for $ac_word" >&5 X if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X else X@@ -1571,7 +1493,7 @@ X if test "$ac_cv_prog_gcc" = yes; then X # Check if gcc -print-prog-name=ld gives a path. X echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6 X-echo "configure:1575: checking for ld used by GCC" >&5 X+echo "configure:1497: checking for ld used by GCC" >&5 X ac_prog=`($CC -print-prog-name=ld) 2>&5` X case "$ac_prog" in X # Accept absolute paths. X@@ -1595,10 +1517,10 @@ X esac X elif test "$with_gnu_ld" = yes; then X echo $ac_n "checking for GNU ld""... $ac_c" 1>&6 X-echo "configure:1599: checking for GNU ld" >&5 X+echo "configure:1521: checking for GNU ld" >&5 X else X echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 X-echo "configure:1602: checking for non-GNU ld" >&5 X+echo "configure:1524: checking for non-GNU ld" >&5 X fi X if eval "test \"`echo '$''{'ac_cv_path_LD'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X@@ -1634,7 +1556,7 @@ X test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; } X X echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6 X-echo "configure:1638: checking if the linker ($LD) is GNU ld" >&5 X+echo "configure:1560: checking if the linker ($LD) is GNU ld" >&5 X if eval "test \"`echo '$''{'ac_cv_prog_gnu_ld'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X else X@@ -1650,7 +1572,7 @@ X X X echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6 X-echo "configure:1654: checking for BSD-compatible nm" >&5 X+echo "configure:1576: checking for BSD-compatible nm" >&5 X if eval "test \"`echo '$''{'ac_cv_path_NM'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X else X@@ -1687,7 +1609,7 @@ X X X echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 X-echo "configure:1691: checking whether ln -s works" >&5 X+echo "configure:1613: checking whether ln -s works" >&5 X if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X else X@@ -1736,8 +1658,8 @@ X case "$host" in X *-*-irix6*) X # Find out which ABI we are using. X- echo '#line 1740 "configure"' > conftest.$ac_ext X- if { (eval echo configure:1741: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then X+ echo '#line 1662 "configure"' > conftest.$ac_ext X+ if { (eval echo configure:1663: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then X case "`/usr/bin/file conftest.o`" in X *32-bit*) X LD="${LD-ld} -32" X@@ -1758,19 +1680,19 @@ X SAVE_CFLAGS="$CFLAGS" X CFLAGS="$CFLAGS -belf" X echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6 X-echo "configure:1762: checking whether the C compiler needs -belf" >&5 X+echo "configure:1684: checking whether the C compiler needs -belf" >&5 X if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X else X cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then X+if { (eval echo configure:1696: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then X rm -rf conftest* X lt_cv_cc_needs_belf=yes X else X@@ -1871,6 +1793,84 @@ X # clobbered by the next message. X exec 5>>./config.log X X+# Extract the first word of "libtool", so it can be a program name with args. X+set dummy libtool; ac_word=$2 X+echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 X+echo "configure:1800: checking for $ac_word" >&5 X+if eval "test \"`echo '$''{'ac_cv_path_LIBTOOL'+set}'`\" = set"; then X+ echo $ac_n "(cached) $ac_c" 1>&6 X+else X+ case "$LIBTOOL" in X+ /*) X+ ac_cv_path_LIBTOOL="$LIBTOOL" # Let the user override the test with a path. X+ ;; X+ ?:/*) X+ ac_cv_path_LIBTOOL="$LIBTOOL" # Let the user override the test with a dos path. X+ ;; X+ *) X+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" X+ ac_dummy="$PATH" X+ for ac_dir in $ac_dummy; do X+ test -z "$ac_dir" && ac_dir=. X+ if test -f $ac_dir/$ac_word; then X+ ac_cv_path_LIBTOOL="$ac_dir/$ac_word" X+ break X+ fi X+ done X+ IFS="$ac_save_ifs" X+ test -z "$ac_cv_path_LIBTOOL" && ac_cv_path_LIBTOOL="none" X+ ;; X+esac X+fi X+LIBTOOL="$ac_cv_path_LIBTOOL" X+if test -n "$LIBTOOL"; then X+ echo "$ac_t""$LIBTOOL" 1>&6 X+else X+ echo "$ac_t""no" 1>&6 X+fi X+ X+if test x$LIBTOOL = xnone; then X+ { echo "configure: error: ** Libtool package not installed! **" 1>&2; exit 1; } X+fi X+# Extract the first word of "m4", so it can be a program name with args. X+set dummy m4; ac_word=$2 X+echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 X+echo "configure:1839: checking for $ac_word" >&5 X+if eval "test \"`echo '$''{'ac_cv_path_GNUM4'+set}'`\" = set"; then X+ echo $ac_n "(cached) $ac_c" 1>&6 X+else X+ case "$GNUM4" in X+ /*) X+ ac_cv_path_GNUM4="$GNUM4" # Let the user override the test with a path. X+ ;; X+ ?:/*) X+ ac_cv_path_GNUM4="$GNUM4" # Let the user override the test with a dos path. X+ ;; X+ *) X+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" X+ ac_dummy="$PATH" X+ for ac_dir in $ac_dummy; do X+ test -z "$ac_dir" && ac_dir=. X+ if test -f $ac_dir/$ac_word; then X+ ac_cv_path_GNUM4="$ac_dir/$ac_word" X+ break X+ fi X+ done X+ IFS="$ac_save_ifs" X+ test -z "$ac_cv_path_GNUM4" && ac_cv_path_GNUM4="none" X+ ;; X+esac X+fi X+GNUM4="$ac_cv_path_GNUM4" X+if test -n "$GNUM4"; then X+ echo "$ac_t""$GNUM4" 1>&6 X+else X+ echo "$ac_t""no" 1>&6 X+fi X+ X+if test x$GNUM4 = xnone; then X+ { echo "configure: error: ** GNU m4 not installed! **" 1>&2; exit 1; } X+fi X X ACLOCAL=aclocal X AUTOMAKE=automake X@@ -1879,7 +1879,6 @@ X X X X-CXXFLAGS="-O2 -D_REENTRANT -DNDEBUG -ffast-math -fstrict-aliasing -funroll-loops" X X # Check whether --enable-debug or --disable-debug was given. X if test "${enable_debug+set}" = set; then X@@ -1897,7 +1896,9 @@ X INCLUDE_DEBUG_FALSE= X fi X if test x$include_debug = xyes; then X-CXXFLAGS="-D_REENTRANT -DENABLE_DBC -g -Wall -Wstrict-prototypes -O2 -ffast-math" X+CXXFLAGS="$CXXFLAGS -D_REENTRANT -DENABLE_DBC -g -Wall -Wstrict-prototypes -O2 -ffast-math" X+else X+CXXFLAGS="$CXXFLAGS -O2 -D_REENTRANT -DNDEBUG -ffast-math -fstrict-aliasing -funroll-loops" X fi X X # Check whether --enable-dbc or --disable-dbc was given. X@@ -1911,7 +1912,7 @@ X fi X X echo $ac_n "checking for sin in -lm""... $ac_c" 1>&6 X-echo "configure:1915: checking for sin in -lm" >&5 X+echo "configure:1916: checking for sin in -lm" >&5 X ac_lib_var=`echo m'_'sin | sed 'y%./+-%__p_%'` X if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X@@ -1919,7 +1920,7 @@ X ac_save_LIBS="$LIBS" X LIBS="-lm $LIBS" X cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then X+if { (eval echo configure:1935: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then X rm -rf conftest* X eval "ac_cv_lib_$ac_lib_var=yes" X else X@@ -1958,8 +1959,16 @@ X fi X X X+case "$host" in X+ *-*-freebsd*) X+ CFLAGS="$CFLAGS -pthread" X+ CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE" X+ CXXFLAGS="$CXXFLAGS -pthread" X+ echo "Setting FreeBSD compilation options for POSIX threads" X+ ;; X+ *) X echo $ac_n "checking for pthread_create in -lpthread""... $ac_c" 1>&6 X-echo "configure:1963: checking for pthread_create in -lpthread" >&5 X+echo "configure:1972: checking for pthread_create in -lpthread" >&5 X ac_lib_var=`echo pthread'_'pthread_create | sed 'y%./+-%__p_%'` X if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X@@ -1967,7 +1976,7 @@ X ac_save_LIBS="$LIBS" X LIBS="-lpthread $LIBS" X cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then X+if { (eval echo configure:1991: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then X rm -rf conftest* X eval "ac_cv_lib_$ac_lib_var=yes" X else X@@ -2004,7 +2013,7 @@ X else X echo "$ac_t""no" 1>&6 X echo $ac_n "checking for pthread_create in -lc_r""... $ac_c" 1>&6 X-echo "configure:2008: checking for pthread_create in -lc_r" >&5 X+echo "configure:2017: checking for pthread_create in -lc_r" >&5 X ac_lib_var=`echo c_r'_'pthread_create | sed 'y%./+-%__p_%'` X if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X@@ -2012,7 +2021,7 @@ X ac_save_LIBS="$LIBS" X LIBS="-lc_r $LIBS" X cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then X+if { (eval echo configure:2036: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then X rm -rf conftest* X eval "ac_cv_lib_$ac_lib_var=yes" X else X@@ -2038,7 +2047,14 @@ X fi X if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then X echo "$ac_t""yes" 1>&6 X- LDFLAGS="-pthreads" X+ ac_tr_lib=HAVE_LIB`echo c_r | sed -e 's/^a-zA-Z0-9_/_/g' \ X+ -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` X+ cat >> confdefs.h <&6 X { echo "configure: error: ** POSIX.4 threads not installed or broken **" 1>&2; exit 1; } X@@ -2046,25 +2062,34 @@ X X fi X X+ ;; X+esac X+ X+ac_ext=C X+# CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. X+ac_cpp='$CXXCPP $CPPFLAGS' X+ac_compile='${CXX-g++} -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' X+ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' X+cross_compiling=$ac_cv_prog_cxx_cross X X if test x$include_debug = xyes; then X echo $ac_n "checking for main in -lecasound_debug""... $ac_c" 1>&6 X-echo "configure:2053: checking for main in -lecasound_debug" >&5 X+echo "configure:2078: checking for main in -lecasound_debug" >&5 X ac_lib_var=`echo ecasound_debug'_'main | sed 'y%./+-%__p_%'` X if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X else X ac_save_LIBS="$LIBS" X-LIBS="-lecasound_debug -lkvutils $LIBS" X+LIBS="-lecasound_debug -lkvutils ${LDFLAGS} $LIBS" X cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then X+if { (eval echo configure:2093: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then X rm -rf conftest* X eval "ac_cv_lib_$ac_lib_var=yes" X else X@@ -2087,22 +2112,22 @@ X X else X echo $ac_n "checking for main in -lecasound""... $ac_c" 1>&6 X-echo "configure:2091: checking for main in -lecasound" >&5 X+echo "configure:2116: checking for main in -lecasound" >&5 X ac_lib_var=`echo ecasound'_'main | sed 'y%./+-%__p_%'` X if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X else X ac_save_LIBS="$LIBS" X-LIBS="-lecasound -lkvutils $LIBS" X+LIBS="-lecasound -lkvutils ${LDFLAGS} $LIBS" X cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then X+if { (eval echo configure:2131: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then X rm -rf conftest* X eval "ac_cv_lib_$ac_lib_var=yes" X else X@@ -2128,7 +2153,7 @@ X X ecasound_required_interface=7 X echo $ac_n "checking for libecasound interface version $ecasound_required_interface""... $ac_c" 1>&6 X-echo "configure:2132: checking for libecasound interface version $ecasound_required_interface" >&5 X+echo "configure:2157: checking for libecasound interface version $ecasound_required_interface" >&5 X if test x$include_debug = xyes; then X ecasound_libraries=`ecasound-config --libs_debug` X X@@ -2153,7 +2178,7 @@ X { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } X else X cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null X+if { (eval echo configure:2205: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null X then X echo "$ac_t""found." 1>&6 X else X@@ -2194,7 +2219,7 @@ X X X echo $ac_n "checking whether to build qtecasound""... $ac_c" 1>&6 X-echo "configure:2198: checking whether to build qtecasound" >&5 X+echo "configure:2223: checking whether to build qtecasound" >&5 X # Check whether --enable-qt or --disable-qt was given. X if test "${enable_qt+set}" = set; then X enableval="$enable_qt" X@@ -2237,7 +2262,7 @@ X X X echo $ac_n "checking for QT 2.x""... $ac_c" 1>&6 X-echo "configure:2241: checking for QT 2.x" >&5 X+echo "configure:2266: checking for QT 2.x" >&5 X ac_qt_includes=NO ac_qt_libraries=NO X qt_libraries="" X qt_includes="" X@@ -2368,7 +2393,7 @@ X # Extract the first word of "moc", so it can be a program name with args. X set dummy moc; ac_word=$2 X echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 X-echo "configure:2372: checking for $ac_word" >&5 X+echo "configure:2397: checking for $ac_word" >&5 X if eval "test \"`echo '$''{'ac_cv_path_MOC'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X else X@@ -2415,7 +2440,7 @@ X echo "$ac_t""qtecasound preconditions: passed" 1>&6 X X echo $ac_n "checking how to run the C++ preprocessor""... $ac_c" 1>&6 X-echo "configure:2419: checking how to run the C++ preprocessor" >&5 X+echo "configure:2444: checking how to run the C++ preprocessor" >&5 X if test -z "$CXXCPP"; then X if eval "test \"`echo '$''{'ac_cv_prog_CXXCPP'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X@@ -2428,12 +2453,12 @@ X cross_compiling=$ac_cv_prog_cxx_cross X CXXCPP="${CXX-g++} -E" X cat > conftest.$ac_ext < X EOF X ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" X-{ (eval echo configure:2437: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } X+{ (eval echo configure:2462: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } X ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` X if test -z "$ac_err"; then X : X@@ -2458,12 +2483,12 @@ X echo "$ac_t""$CXXCPP" 1>&6 X X echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 X-echo "configure:2462: checking for ANSI C header files" >&5 X+echo "configure:2487: checking for ANSI C header files" >&5 X if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X else X cat > conftest.$ac_ext < X #include X@@ -2471,7 +2496,7 @@ X #include X EOF X ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" X-{ (eval echo configure:2475: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } X+{ (eval echo configure:2500: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } X ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` X if test -z "$ac_err"; then X rm -rf conftest* X@@ -2488,7 +2513,7 @@ X if test $ac_cv_header_stdc = yes; then X # SunOS 4.x string.h does not declare mem*, contrary to ANSI. X cat > conftest.$ac_ext < X EOF X@@ -2506,7 +2531,7 @@ X if test $ac_cv_header_stdc = yes; then X # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. X cat > conftest.$ac_ext < X EOF X@@ -2527,7 +2552,7 @@ X : X else X cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null X+if { (eval echo configure:2570: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null X then X : X else X@@ -2572,12 +2597,12 @@ X cross_compiling=$ac_cv_prog_cxx_cross X X echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6 X-echo "configure:2576: checking whether time.h and sys/time.h may both be included" >&5 X+echo "configure:2601: checking whether time.h and sys/time.h may both be included" >&5 X if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X else X cat > conftest.$ac_ext < X #include X@@ -2586,7 +2611,7 @@ X struct tm *tp; X ; return 0; } X EOF X-if { (eval echo configure:2590: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then X+if { (eval echo configure:2615: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then X rm -rf conftest* X ac_cv_header_time=yes X else X@@ -2610,17 +2635,17 @@ X do X ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` X echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 X-echo "configure:2614: checking for $ac_hdr" >&5 X+echo "configure:2639: checking for $ac_hdr" >&5 X if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X else X cat > conftest.$ac_ext < X EOF X ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" X-{ (eval echo configure:2624: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } X+{ (eval echo configure:2649: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } X ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` X if test -z "$ac_err"; then X rm -rf conftest* X@@ -2648,17 +2673,17 @@ X X ac_safe=`echo "map.h" | sed 'y%./+-%__p_%'` X echo $ac_n "checking for map.h""... $ac_c" 1>&6 X-echo "configure:2652: checking for map.h" >&5 X+echo "configure:2677: checking for map.h" >&5 X if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X else X cat > conftest.$ac_ext < X EOF X ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" X-{ (eval echo configure:2662: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } X+{ (eval echo configure:2687: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } X ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` X if test -z "$ac_err"; then X rm -rf conftest* X@@ -2685,14 +2710,14 @@ X fi X X echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&6 X-echo "configure:2689: checking whether byte ordering is bigendian" >&5 X+echo "configure:2714: checking whether byte ordering is bigendian" >&5 X if eval "test \"`echo '$''{'ac_cv_c_bigendian'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X else X ac_cv_c_bigendian=unknown X # See if sys/param.h defines the BYTE_ORDER macro. X cat > conftest.$ac_ext < X #include X@@ -2703,11 +2728,11 @@ X #endif X ; return 0; } X EOF X-if { (eval echo configure:2707: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then X+if { (eval echo configure:2732: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then X rm -rf conftest* X # It does; now see whether it defined to BIG_ENDIAN or not. X cat > conftest.$ac_ext < X #include X@@ -2718,7 +2743,7 @@ X #endif X ; return 0; } X EOF X-if { (eval echo configure:2722: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then X+if { (eval echo configure:2747: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then X rm -rf conftest* X ac_cv_c_bigendian=yes X else X@@ -2738,7 +2763,7 @@ X { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } X else X cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null X+if { (eval echo configure:2783: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null X then X ac_cv_c_bigendian=no X else X@@ -2778,12 +2803,12 @@ X fi X X echo $ac_n "checking for size_t""... $ac_c" 1>&6 X-echo "configure:2782: checking for size_t" >&5 X+echo "configure:2807: checking for size_t" >&5 X if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X else X cat > conftest.$ac_ext < X #if STDC_HEADERS X@@ -2965,8 +2990,6 @@ X s%@CC@%$CC%g X s%@CXX@%$CXX%g X s%@CPP@%$CPP%g X-s%@LIBTOOL@%$LIBTOOL%g X-s%@GNUM4@%$GNUM4%g X s%@host@%$host%g X s%@host_alias@%$host_alias%g X s%@host_cpu@%$host_cpu%g X@@ -2981,6 +3004,8 @@ X s%@LD@%$LD%g X s%@NM@%$NM%g X s%@LN_S@%$LN_S%g X+s%@LIBTOOL@%$LIBTOOL%g X+s%@GNUM4@%$GNUM4%g X s%@INCLUDE_DEBUG_TRUE@%$INCLUDE_DEBUG_TRUE%g X s%@INCLUDE_DEBUG_FALSE@%$INCLUDE_DEBUG_FALSE%g X s%@ecasound_libraries@%$ecasound_libraries%g END-of-qtecasound/files/patch-af exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 15:42:53 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 15:42:52 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mercure.IRO.UMontreal.CA (mercure.IRO.UMontreal.CA [132.204.24.67]) by hub.freebsd.org (Postfix) with ESMTP id A5E3637B400 for ; Fri, 22 Dec 2000 15:42:51 -0800 (PST) Received: from localhost.anarcat.yi.org (IDENT:beaupran@phobos.IRO.UMontreal.CA [132.204.20.20]) by mercure.IRO.UMontreal.CA (8.11.1/8.11.1) with ESMTP id eBMNgfv06648 for ; Fri, 22 Dec 2000 18:42:43 -0500 Full-Name: Antoine Beaupre Date: Fri, 22 Dec 2000 18:43:07 -0500 Message-ID: <873dfghvjo.wl@localhost.anarcat.yi.org> From: Anarcat To: freebsd-ports@FreeBSD.ORG Subject: Re: Porting ecasound suite to FreeBSD In-Reply-To: In your message of "Thu, 21 Dec 2000 22:45:39 -0500" <20001221224539.J328@argon.firepipe.net> References: <87puilbdwu.wl@localhost.anarcat.yi.org> <20001221224539.J328@argon.firepipe.net> User-Agent: Wanderlust/1.1.1 (Purple Rain) WEMI/1.13.7 (Shimada) FLIM/1.13.2 (Kasanui) MULE XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd) Organization: Nada, Inc MIME-Version: 1.0 (generated by WEMI 1.13.7 - "Shimada") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Please review the ports I have submitted. I am not sure I fixed this the right way: ports/23778 ports/23779 ports/23780 Thanks A. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 15:50: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 15:50:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3A70A37B402 for ; Fri, 22 Dec 2000 15:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBMNo1v69284; Fri, 22 Dec 2000 15:50:01 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 15:50:01 -0800 (PST) Resent-Message-Id: <200012222350.eBMNo1v69284@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, George Reid Received: from mta02-svc.ntlworld.com (mta02-svc.ntlworld.com [62.253.162.42]) by hub.freebsd.org (Postfix) with ESMTP id A2BE537B400 for ; Fri, 22 Dec 2000 15:44:23 -0800 (PST) Received: from sobek.openirc.co.uk ([62.252.12.34]) by mta02-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20001222234421.GQZO23225.mta02-svc.ntlworld.com@sobek.openirc.co.uk>; Fri, 22 Dec 2000 23:44:21 +0000 Message-Id: Date: Fri, 22 Dec 2000 23:48:12 +0000 (GMT) From: George Reid To: FreeBSD-gnats-submit@freebsd.org Cc: ycheng@sinica.edu.tw Subject: ports/23781: [PATCH] sysutils/logrotate has unfetchable distfile Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23781 >Category: ports >Synopsis: [PATCH] sysutils/logrotate has unfetchable distfile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 15:50:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD UKUG >Environment: n/a >Description: Port sysutils/logrotate has an unfetchable distfile. Patch updates port to version 3.5.2. Maintainer CCd. >How-To-Repeat: Try to build :) >Fix: Index: Makefile =================================================================== RCS file: /usr/home/ncvs/ports/sysutils/logrotate/Makefile,v retrieving revision 1.6 diff -r1.6 Makefile 9c9 < PORTVERSION= 3.3 --- > PORTVERSION= 3.5.2 11,12c11,13 < MASTER_SITES= ftp://ftp.redhat.com/pub/redhat/current/SRPMS/SRPMS/ \ < ftp://ftp.freesoftware.com/pub/linux/redhat/current/SRPMS/SRPMS/ --- > MASTER_SITES= ftp://ftp.redhat.com/pub/redhat/current/SRPMS/i386/SRPMS/ \ > ftp://ftp.freesoftware.com/pub/linux/redhat/current/SRPMS/i386/SRPMS/ > Index: distinfo =================================================================== RCS file: /usr/home/ncvs/ports/sysutils/logrotate/distinfo,v retrieving revision 1.1.1.1 diff -r1.1.1.1 distinfo 1c1 < MD5 (logrotate-3.3-1.src.rpm) = 3a399653214c9dd6b23363d4ff68b633 --- > MD5 (logrotate-3.5.2-1.src.rpm) = 0f0a7e84a32145334fb0fdd425b81230 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 16:31:38 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 16:31:37 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id A457237B400 for ; Fri, 22 Dec 2000 16:31:36 -0800 (PST) Received: from [128.130.111.2] (deneb [128.130.111.2]) by vexpert.dbai.tuwien.ac.at (8.11.1/8.11.1) with ESMTP id eBN0VSp12844 for ; Sat, 23 Dec 2000 01:31:34 +0100 (MET) Date: Sat, 23 Dec 2000 01:31:28 +0100 (CET) From: Gerald Pfeifer To: Subject: USE_GMAKE=yes only effects build, not install? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In preparing an update for the Wine port, I noticed dependencies on GNU make in the current version of that package, so I set USE_GMAKE=yes. This works fine for *building* the port, but *installing* fails because of these dependencies on GNU make. Now I wonder, why does USE_GMAKE=yes not effect installation as well? Respectively, how can I work around this problem? Gerald -- Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at/~pfeifer/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 16:50:11 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 16:50:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D02E37B402 for ; Fri, 22 Dec 2000 16:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBN0o1i75612; Fri, 22 Dec 2000 16:50:01 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 16:50:01 -0800 (PST) Resent-Message-Id: <200012230050.eBN0o1i75612@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, mkamm@gmx.net Received: from ns1.tu-graz.ac.at (ns1.tu-graz.ac.at [129.27.2.3]) by hub.freebsd.org (Postfix) with ESMTP id 6D8A537B402; Fri, 22 Dec 2000 16:40:58 -0800 (PST) Received: from localhost.tu-graz.ac.at (isdn110.tu-graz.ac.at [129.27.240.120]) by ns1.tu-graz.ac.at (8.9.3/8.9.3) with ESMTP id BAA04761; Sat, 23 Dec 2000 01:40:49 +0100 (MET) Received: (from mkamm@localhost) by localhost.tu-graz.ac.at (8.11.0/8.11.0) id eBN0eNa10103; Sat, 23 Dec 2000 01:40:23 +0100 (CET) (envelope-from mkamm) Message-Id: <200012230040.eBN0eNa10103@localhost.tu-graz.ac.at> Date: Sat, 23 Dec 2000 01:40:23 +0100 (CET) From: mkamm@gmx.net Sender: mkamm@ns1.tu-graz.ac.at Reply-To: mkamm@gmx.net To: FreeBSD-gnats-submit@FreeBSD.org Cc: nik@FreeBSD.org X-Send-Pr-Version: 3.2 Subject: ports/23782: www/sitecopy port broken Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23782 >Category: ports >Synopsis: www/sitecopy port broken >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 16:50:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Martin Kammerhofer >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: ===> Extracting for sitecopy-0.9.10 >> Checksum OK for sitecopy-0.9.10.tar.gz. ===> sitecopy-0.9.10 depends on executable: gmake - found ===> sitecopy-0.9.10 depends on shared library: intl.1 - found ===> Patching for sitecopy-0.9.10 ===> Configuring for sitecopy-0.9.10 creating cache ./config.cache checking for gcc... cc -I/usr/local/include checking whether the C compiler (cc -I/usr/local/include -O -pipe -L/usr/local/lib) works... yes checking whether the C compiler (cc -I/usr/local/include -O -pipe -L/usr/local/lib) is a cross-compiler... no checking whether we are using GNU C... yes checking whether cc -I/usr/local/include accepts -g... yes checking whether gmake sets ${MAKE}... yes checking for POSIXized ISC... no checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel checking for inline... inline checking for working const... yes checking how to run the C preprocessor... cc -I/usr/local/include -E checking for ANSI C header files... yes checking for Cygwin environment... no checking for mingw32 environment... no checking for executable suffix... no checking for GNU fnmatch... yes checking for socket... yes using libc's socket checking for res_search... yes using libc's resolver functions checking for XML_Parse in -lexpat... yes checking for xmlparse.h... no checking for xmltok/xmlparse.h... no checking for xmlparse/xmlparse.h... no configure: error: found expat library but could not find xmlparse.h ===> Script "configure" failed: here are the contents of "config.log" This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. configure:628: checking for gcc configure:741: checking whether the C compiler (cc -I/usr/local/include -O -pipe -L/usr/local/lib) works configure:757: cc -I/usr/local/include -o conftest -O -pipe -L/usr/local/lib conftest.c -lintl 1>&5 configure:783: checking whether the C compiler (cc -I/usr/local/include -O -pipe -L/usr/local/lib) is a cross-compiler configure:788: checking whether we are using GNU C configure:797: cc -I/usr/local/include -E conftest.c configure:816: checking whether cc -I/usr/local/include accepts -g configure:848: checking whether gmake sets ${MAKE} configure:875: checking for POSIXized ISC configure:926: checking for a BSD compatible install configure:986: checking for inline configure:1000: cc -I/usr/local/include -c -O -pipe conftest.c 1>&5 configure:1026: checking for working const configure:1080: cc -I/usr/local/include -c -O -pipe conftest.c 1>&5 configure:1102: checking how to run the C preprocessor configure:1123: cc -I/usr/local/include -E conftest.c >/dev/null 2>conftest.out configure:1182: checking for ANSI C header files configure:1195: cc -I/usr/local/include -E conftest.c >/dev/null 2>conftest.out configure:1262: cc -I/usr/local/include -o conftest -O -pipe -L/usr/local/lib conftest.c -lintl 1>&5 configure:1287: checking for Cygwin environment configure:1303: cc -I/usr/local/include -c -O -pipe conftest.c 1>&5 configure: In function `main': configure:1299: `__CYGWIN32__' undeclared (first use in this function) configure:1299: (Each undeclared identifier is reported only once configure:1299: for each function it appears in.) configure: failed program was: #line 1292 "configure" #include "confdefs.h" int main() { #ifndef __CYGWIN__ #define __CYGWIN__ __CYGWIN32__ #endif return __CYGWIN__; ; return 0; } configure:1320: checking for mingw32 environment configure:1332: cc -I/usr/local/include -c -O -pipe conftest.c 1>&5 configure: In function `main': configure:1328: `__MINGW32__' undeclared (first use in this function) configure:1328: (Each undeclared identifier is reported only once configure:1328: for each function it appears in.) configure: failed program was: #line 1325 "configure" #include "confdefs.h" int main() { return __MINGW32__; ; return 0; } configure:1351: checking for executable suffix configure:1361: cc -I/usr/local/include -o conftest -O -pipe -L/usr/local/lib conftest.c -lintl 1>&5 configure:1408: checking for GNU fnmatch configure:1425: cc -I/usr/local/include -c -O -pipe conftest.c 1>&5 configure:1446: checking for socket configure:1474: cc -I/usr/local/include -o conftest -O -pipe -L/usr/local/lib conftest.c -lintl 1>&5 configure:1593: checking for res_search configure:1621: cc -I/usr/local/include -o conftest -O -pipe -L/usr/local/lib conftest.c -lintl 1>&5 configure:1690: checking for XML_Parse in -lexpat configure:1709: cc -I/usr/local/include -o conftest -O -pipe -L/usr/local/lib conftest.c -lexpat -lintl 1>&5 configure:1777: checking for xmlparse.h configure:1787: cc -I/usr/local/include -E conftest.c >/dev/null 2>conftest.out configure:1783: xmlparse.h: No such file or directory configure: failed program was: #line 1782 "configure" #include "confdefs.h" #include configure:1808: checking for xmltok/xmlparse.h configure:1818: cc -I/usr/local/include -E conftest.c >/dev/null 2>conftest.out configure:1814: xmltok/xmlparse.h: No such file or directory configure: failed program was: #line 1813 "configure" #include "confdefs.h" #include configure:1839: checking for xmlparse/xmlparse.h configure:1849: cc -I/usr/local/include -E conftest.c >/dev/null 2>conftest.out configure:1845: xmlparse/xmlparse.h: No such file or directory configure: failed program was: #line 1844 "configure" #include "confdefs.h" #include (end of "config.log") *** Error code 1 Stop in /usr.local/ports/www/sitecopy. *** Error code 1 Stop in /usr.local/ports/www/sitecopy. *** Error code 1 Stop in /usr.local/ports/www/sitecopy. *** Error code 1 Stop in /usr.local/ports/www/sitecopy. *** Error code 1 Stop in /usr.local/ports/www/sitecopy. >How-To-Repeat: cd /usr/ports/www/sitecopy make install clean >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 16:57:52 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 16:57:50 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2DA0D37B400; Fri, 22 Dec 2000 16:57:50 -0800 (PST) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBN0vnq76287; Fri, 22 Dec 2000 16:57:49 -0800 (PST) (envelope-from dannyboy) Date: Fri, 22 Dec 2000 16:57:49 -0800 (PST) From: Message-Id: <200012230057.eBN0vnq76287@freefall.freebsd.org> To: blaz@medinet.si, dannyboy@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23696: [PATCH] postfix port upgrade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] postfix port upgrade State-Changed-From-To: open->closed State-Changed-By: dannyboy State-Changed-When: Fri Dec 22 16:57:05 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23696 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 16:59:20 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 16:59:19 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 768CF37B402; Fri, 22 Dec 2000 16:59:19 -0800 (PST) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBN0xJI76561; Fri, 22 Dec 2000 16:59:19 -0800 (PST) (envelope-from dannyboy) Date: Fri, 22 Dec 2000 16:59:19 -0800 (PST) From: Message-Id: <200012230059.eBN0xJI76561@freefall.freebsd.org> To: martti.kuparinen@piuha.net, dannyboy@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23474: [PATCH] postfix upgrade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] postfix upgrade State-Changed-From-To: feedback-> closed State-Changed-By: dannyboy State-Changed-When: Fri Dec 22 16:58:11 PST 2000 State-Changed-Why: MAINTAINER patch in PR 23696 applied. http://www.freebsd.org/cgi/query-pr.cgi?pr=23474 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 17: 0:19 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 17:00:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 791C637B698 for ; Fri, 22 Dec 2000 17:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBN102a76698; Fri, 22 Dec 2000 17:00:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 17:00:02 -0800 (PST) Resent-Message-Id: <200012230100.eBN102a76698@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, mb@imp.ch Received: from fuchur.lan.attic.ch (fuchur.lan.attic.ch [194.235.47.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E82337B400 for ; Fri, 22 Dec 2000 16:58:11 -0800 (PST) Received: (from mblapp@localhost) by fuchur.lan.attic.ch (8.11.1/8.11.1) id eBN0xse95956; Sat, 23 Dec 2000 01:59:54 +0100 (CET) (envelope-from mblapp) Message-Id: <200012230059.eBN0xse95956@fuchur.lan.attic.ch> Date: Sat, 23 Dec 2000 01:59:54 +0100 (CET) From: mb@imp.ch Sender: mblapp@fuchur.lan.attic.ch Reply-To: mb@imp.ch To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23784: [PATCH] SunSolve Patch 109939-02 for de-staroffice-5.2 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23784 >Category: ports >Synopsis: Add SunSolve patch 109939-02 for de-staroffice-5.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 17:00:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Martin Blapp >Release: FreeBSD 4.2-STABLE i386 >Organization: Improware AG >Environment: FreeBSD fuchur.lan.attic.ch 4.2-STABLE FreeBSD 4.2-STABLE #5: Sun Dec 10 11:00:08 CET 2000 root@fuchur.lan.attic.ch:/usr/src/sys/compile/FURCHUR i386 FreeBSD ports-tree for STABLE and CURRENT >Description: Synopsis: StarOffice 5.2 (Linux): Product patch Patch-ID# 109939-02 BugId's fixed with this patch ----------------------------- 4329509 4348866 4350286 4350342 4350456 4350793 4351658 4352423 4363020 4365476 4369099 4370639 4372400 4378203 4378928 4379925 4383163 4383513 4383517 4383521 4383523 4383524 4383526 4383530 4383533 4383534 4383536 4383537 4383548 4383555 4383557 4383559 4383561 4383562 4383564 4383565 4383567 4383568 4383570 4383572 4383573 4383574 4383576 4383577 4383580 4383581 4383582 4383584 4383585 4383587 4383590 4383591 4383593 4383596 4383602 4383603 Problem Description ------------------- 4348866 StarOffice Mail Encryption of a users password in StarMail is breakable 4350286 StarOffice Writer cannot edit document properties before saving, when using a template 4350342 StarOffice Mail GPF when coping / moving mails by rules or drag & drop into a directory 4350456 StarOffice Base Non-functionality of "Update fields" button after a search in the address book 4350793 StarOffice Writer Hide of sections doesn't work, if we have a formula in a table 4351658 StarOffice Calc SO 5.2 crashes with /# in "Format-Code" field 4352423 StarOffice Writer Copy&Paste special doubles some characters 4363020 StarOffice Writer Thesaurus' synonyms are only displayed on the first meaning 4365476 StarOffice Explorer Moving a directory deletes files not owned by self 4369099 StarOffice Mail deleting messages in hierarchical view crashes StarOffice 4370639 StarOffice Desktop "File - Templates - Edit" doesn't provide the template path 4372400 StarOffice Html Error Adding Horizontal Rule too Table 4378203 StarOffice Calc cells with negative percent values are displayed with a wrong comma setting 4379925 StarOffice Calc Row and column fixing does not work on docs imported from StarOffice 4.0 4383513 StarOffice Scripting API: Creation of sequences in JavaScript not possible 4383517 StarOffice Calc PERMUT returns wrong result on PERMUT(10;0) 4383521 StarOffice Writer images lost behind password-protected sites 4383523 StarOffice Calc No update of a database in datapilot 4383524 StarOffice Mail Browse-button on 'rules'-tabpage not in ExplorerView 4383526 StarOffice Calc SO will crash while loading XLS-bugdoc 4383530 StarOffice Calc Applix can't read the automatic cellheight after SO XLS export 4383533 StarOffice Calc XLS98 files with macros cause a loop 4383534 StarOffice Calc Themes and password => file not loadable 4383536 StarOffice Calc RATE does not converge 4383537 StarOffice problems with XKBD extensions when running remotely on SGI displays 4383548 StarOffice Impress Opening "RecarShareholderMeeting" in the preview of the desktop causes a crash 4383555 StarOffice Mail Deleting multiselected unread mails doesn't work 4383557 StarOffice Writer scrolling problems in HTML document after switching to source mode 4383559 StarOffice Writer SO 5.2 loops when filling database fields with content 4383561 StarOffice Writer StarOffice crashes when exporting a complex table to Word97-format 4383562 StarOffice Writer Dialog "Insert index" lacks direct access to Online Help 4383564 StarOffice Writer StarOffice crashes when deleting columns in a certain Writer-table 4383565 StarOffice Writer StarOffice crashes when updating links in document with linked sections 4383567 StarOffice Writer StarWriter-calculation has wrong order when using POW 4383568 StarOffice Writer Words with ligatures (ae, oe... together) are always marked as incorrect 4383570 StarOffice Impress Assigning a SlideDesign to the standard-master does not work correct 4383572 StarOffice Writer Conditions with expressions like "neq (x)" do not work 4383573 StarOffice Writer False "right margin " tabstop calculation for document indexes 4383574 StarOffice Writer StarOffice crashes when "find all" in a certain document 4383576 StarOffice Writer Autoformat and edit changes crashes 4383577 StarOffice Writer Starwriter table formula generates error message "** expression is fault 4383580 StarOffice Impress "Follow masterbackground" checked -> backgroundgraphic after PPT-Import nevertheless visible 4383581 StarOffice Writer Distance between border and text ignored on Word import 4383582 StarOffice Writer Papaer source not selectable when printer name too long 4383584 StarOffice Writer StarOffice crashes after modifying table, saving and reloading document 4383585 StarOffice Impress PPT-Import: Color of backgroundobject not recognized 4383587 StarOffice Writer StarOffice crashes when inserting a sum into a table in a hidden section 4383590 StarOffice Impress Linked graphic with non-existing link goes lost after change of masterpage 4383596 StarOffice Impress Special JPG-format-graphics disappear after compression 4383602 StarOffice Impress PPT-Import: Some Bullets wrong 4383593 StarOffice StarOffice can't handle Postscript Level 3 printers 4383591 StarOffice Writer Printer prints with printer defaults, therefore no correct paper tray access 4329509 StarOffice Calc Problems printing A3 spreadsheets all on one page 4378928 StarOffice Desktop StarOffice follows symbolic links 4383163 StarOffice Explorer .url files lead to infinite loop when these files have no access rights 4383603 StarOffice API: GPF when oColumn.updateBinaryStream >How-To-Repeat: >Fix: -------------------------------------------------------------------------------- possible Commit message: ------------------------ Add SunSolve Patch 109939-02 -------------------------------------------------------------------------------- location of port: ----------------- ports/german/staroffice52 -------------------------------------------------------------------------------- [PATCH] normal -------------- --- Makefile.old Sat Dec 23 01:08:23 2000 +++ Makefile Sat Dec 23 01:56:13 2000 @@ -11,13 +11,20 @@ MASTER_SITES= ftp://ftp.hu-berlin.de/pub/linux/staroffice/german/ \ ftp://ftp.software-engineering.org/pub/mirrors/staroffice/5.2/ \ ftp://ftp.uni-linz.ac.at/pub/staroffice_5.2/ \ + ftp://sunsite.anu.edu.au/mnt/disk3/sun-info/sun-patches/ \ ftp://sunsite.cnlab-switch.ch/mirror/staroffice/deutsch/ \ ftp://ftp.schwabmuenchen.de/pub/Linux/Office/Star_Office/ \ ftp://ftp.mayn.de/pub/unix/office/staroffice/ \ - ftp://ftp.isst.fhg.de/ISST/Sun/Staroffice/5.2/ + ftp://ftp.isst.fhg.de/ISST/Sun/Staroffice/5.2/ \ + ftp://ftp.cityline.net/mirrors2/sun-patches-all/ \ + ftp://ftp.gtn.com/os/Sun/patches/ \ + ftp://ftp.jaist.ac.jp/.arc07/sun-info/sun-patches/ \ + ftp://ftp.hu-berlin.de/pub/mirrors/sunsolve.sun.com/pub/patches/ \ + ftp://sunsite.uio.no/pub/sun/sun-patches/ \ + ftp://ftp.sunet.se/pub7/security/vendor/sun/patches/ DISTNAME= so-5_2-ga-bin-linux-de.bin -DISTFILES= soa-5_2-ga-bin-linux-de.bin so-5_2-ga-bin-linux-de.bin -EXTRACT_ONLY= +DISTFILES= soa-5_2-ga-bin-linux-de.bin so-5_2-ga-bin-linux-de.bin 109939-02.tar.Z +EXTRACT_ONLY= 109939-02.tar.Z MAINTAINER= mb@imp.ch @@ -32,6 +39,7 @@ TMPDIR= ${WRKDIR}/tmp LD_PATH= ${TMPDIR}:${WRKSRC}:${LINUXBASE}/lib:${LINUXBASE}/usr/lib INSTDB.INS= ${PREFIX}/office52/program/instdb.ins +SUNSOLVE= ${WRKDIR}/109939-02 .include @@ -81,6 +89,13 @@ @cd ${WRKSRC} @SAL_IGNOREXERRORS=1 ${WRKSRC}/${DISTNAME} -extract ${WRKSRC} @cd ../../ + @for file in ${EXTRACT_ONLY}; do \ + if ! (cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} \ + ${_DISTDIR}/$$file ${EXTRACT_AFTER_ARGS}) ; \ + then \ + exit 1; \ + fi \ + done .endif post-configure: @@ -112,6 +127,12 @@ ${ECHO} ; \ ${FALSE} ; \ fi +.if ! defined(WITH_CDROM) + @${ECHO_MSG} "===> Applying sunsolve patches for ${PKGNAME}" + @for file in ${SUNSOLVE}/* ; do \ + ${CP} -Rv $$file ${PREFIX}/office52/ ; \ + done +.endif .endif post-install: -------------------------------------------------------------------------------- [PATCH] uuencoded ----------------- begin 644 Makefile.diff.uu M+2TM($UA:V5F:6QE+F]L9`E3870@1&5C(#(S(#`Q.C`X.C(S(#(P,#`**RLK M($UA:V5F:6QE"5-A="!$96,@,C,@,#$Z-38Z,3,@,C`P,`I`0"`M,3$L,3,@ M*S$Q+#(P($!`"B!-05-415)?4TE415,]"69T<#HO+V9T<"YH=2UB97)L:6XN M9&4O<'5B+VQI;G5X+W-T87)O9F9I8V4O9V5R;6%N+R!<"B`)"69T<#HO+V9T M<"YS;V9T=V%R92UE;F=I;F5E"]/9F9I8V4O4W1A6XN9&4O M<'5B+W5N:7@O;V9F:6-E+W-T87)O9F9I8V4O(%P*+0D)9G1P.B\O9G1P+FES M2]V96YD;W(O"UD92YB:6X*+41) M4U1&24Q%4ST)U=22T1)4GTO=&UP"B!,1%]0051( M/0DD>U1-4$1)4GTZ)'M74DM34D-].B1[3$E.55A"05-%?2]L:6(Z)'M,24Y5 M6$)!4T5]+W5SU=22T1)4GTO,3`Y M.3,Y+3`R"B`*("YI;F-L=61E(#QBT1)4U1.04U%?2`M97ATU=22U-2 M0WT*(`E`8V0@+BXO+BXO"BL)0&9OU=22T1)4GT@)B8@)'M%6%1204-47T-- M1'T@)'M%6%1204-47T)%1D]215]!4D=3?2!<"BL)"2`@("`D>U]$25-41$E2 M?2\D)&9I;&4@)'M%6%1204-47T%&5$527T%21U-]*2`[(%P**PD)=&AE;B!< M"BL)"0EE>&ET(#$[(%P**PD)9FD@7`HK"61O;F4*("YE;F1I9@H@"B!P;W-T M+6-O;F9I9W5R93H*0$`@+3$Q,BPV("LQ,C6EN9R!S=6YS;VQV M92!P871C:&5S(&9OU!+1TY!345](@HK"4!F;W(@9FEL92!I;B`D>U-5 M3E-/3%9%?2\J(#L@9&\@7`HK"0DD>T-0?2`M4G8@)"1F:6QE("1[4%)%1DE8 M?2]O9F9I8V4U,B\@.R!<"BL)9&]N90HK+F5N9&EF"B`N96YD:68*(`H@<&]S +="UI;G-T86QL.@H@ ` end -------------------------------------------------------------------------------- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 17: 0:28 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 17:00:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5045837B402 for ; Fri, 22 Dec 2000 17:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBN102k76689; Fri, 22 Dec 2000 17:00:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 17:00:02 -0800 (PST) Resent-Message-Id: <200012230100.eBN102k76689@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, mb@imp.ch Received: from fuchur.lan.attic.ch (fuchur.lan.attic.ch [194.235.47.21]) by hub.freebsd.org (Postfix) with ESMTP id 6EBFC37B400 for ; Fri, 22 Dec 2000 16:57:53 -0800 (PST) Received: (from mblapp@localhost) by fuchur.lan.attic.ch (8.11.1/8.11.1) id eBN0xYL95859; Sat, 23 Dec 2000 01:59:34 +0100 (CET) (envelope-from mblapp) Message-Id: <200012230059.eBN0xYL95859@fuchur.lan.attic.ch> Date: Sat, 23 Dec 2000 01:59:34 +0100 (CET) From: mb@imp.ch Sender: mblapp@fuchur.lan.attic.ch Reply-To: mb@imp.ch To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23783: [PATCH] SunSolve Patch 109939-02 for staroffice-5.2 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23783 >Category: ports >Synopsis: Add SunSolve patch 109939-02 for staroffice-5.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 17:00:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Martin Blapp >Release: FreeBSD 4.2-STABLE i386 >Organization: Improware AG >Environment: FreeBSD fuchur.lan.attic.ch 4.2-STABLE FreeBSD 4.2-STABLE #5: Sun Dec 10 11:00:08 CET 2000 root@fuchur.lan.attic.ch:/usr/src/sys/compile/FURCHUR i386 FreeBSD ports-tree for STABLE and CURRENT >Description: Synopsis: StarOffice 5.2 (Linux): Product patch Patch-ID# 109939-02 BugId's fixed with this patch ----------------------------- 4329509 4348866 4350286 4350342 4350456 4350793 4351658 4352423 4363020 4365476 4369099 4370639 4372400 4378203 4378928 4379925 4383163 4383513 4383517 4383521 4383523 4383524 4383526 4383530 4383533 4383534 4383536 4383537 4383548 4383555 4383557 4383559 4383561 4383562 4383564 4383565 4383567 4383568 4383570 4383572 4383573 4383574 4383576 4383577 4383580 4383581 4383582 4383584 4383585 4383587 4383590 4383591 4383593 4383596 4383602 4383603 Problem Description ------------------- 4348866 StarOffice Mail Encryption of a users password in StarMail is breakable 4350286 StarOffice Writer cannot edit document properties before saving, when using a template 4350342 StarOffice Mail GPF when coping / moving mails by rules or drag & drop into a directory 4350456 StarOffice Base Non-functionality of "Update fields" button after a search in the address book 4350793 StarOffice Writer Hide of sections doesn't work, if we have a formula in a table 4351658 StarOffice Calc SO 5.2 crashes with /# in "Format-Code" field 4352423 StarOffice Writer Copy&Paste special doubles some characters 4363020 StarOffice Writer Thesaurus' synonyms are only displayed on the first meaning 4365476 StarOffice Explorer Moving a directory deletes files not owned by self 4369099 StarOffice Mail deleting messages in hierarchical view crashes StarOffice 4370639 StarOffice Desktop "File - Templates - Edit" doesn't provide the template path 4372400 StarOffice Html Error Adding Horizontal Rule too Table 4378203 StarOffice Calc cells with negative percent values are displayed with a wrong comma setting 4379925 StarOffice Calc Row and column fixing does not work on docs imported from StarOffice 4.0 4383513 StarOffice Scripting API: Creation of sequences in JavaScript not possible 4383517 StarOffice Calc PERMUT returns wrong result on PERMUT(10;0) 4383521 StarOffice Writer images lost behind password-protected sites 4383523 StarOffice Calc No update of a database in datapilot 4383524 StarOffice Mail Browse-button on 'rules'-tabpage not in ExplorerView 4383526 StarOffice Calc SO will crash while loading XLS-bugdoc 4383530 StarOffice Calc Applix can't read the automatic cellheight after SO XLS export 4383533 StarOffice Calc XLS98 files with macros cause a loop 4383534 StarOffice Calc Themes and password => file not loadable 4383536 StarOffice Calc RATE does not converge 4383537 StarOffice problems with XKBD extensions when running remotely on SGI displays 4383548 StarOffice Impress Opening "RecarShareholderMeeting" in the preview of the desktop causes a crash 4383555 StarOffice Mail Deleting multiselected unread mails doesn't work 4383557 StarOffice Writer scrolling problems in HTML document after switching to source mode 4383559 StarOffice Writer SO 5.2 loops when filling database fields with content 4383561 StarOffice Writer StarOffice crashes when exporting a complex table to Word97-format 4383562 StarOffice Writer Dialog "Insert index" lacks direct access to Online Help 4383564 StarOffice Writer StarOffice crashes when deleting columns in a certain Writer-table 4383565 StarOffice Writer StarOffice crashes when updating links in document with linked sections 4383567 StarOffice Writer StarWriter-calculation has wrong order when using POW 4383568 StarOffice Writer Words with ligatures (ae, oe... together) are always marked as incorrect 4383570 StarOffice Impress Assigning a SlideDesign to the standard-master does not work correct 4383572 StarOffice Writer Conditions with expressions like "neq (x)" do not work 4383573 StarOffice Writer False "right margin " tabstop calculation for document indexes 4383574 StarOffice Writer StarOffice crashes when "find all" in a certain document 4383576 StarOffice Writer Autoformat and edit changes crashes 4383577 StarOffice Writer Starwriter table formula generates error message "** expression is fault 4383580 StarOffice Impress "Follow masterbackground" checked -> backgroundgraphic after PPT-Import nevertheless visible 4383581 StarOffice Writer Distance between border and text ignored on Word import 4383582 StarOffice Writer Papaer source not selectable when printer name too long 4383584 StarOffice Writer StarOffice crashes after modifying table, saving and reloading document 4383585 StarOffice Impress PPT-Import: Color of backgroundobject not recognized 4383587 StarOffice Writer StarOffice crashes when inserting a sum into a table in a hidden section 4383590 StarOffice Impress Linked graphic with non-existing link goes lost after change of masterpage 4383596 StarOffice Impress Special JPG-format-graphics disappear after compression 4383602 StarOffice Impress PPT-Import: Some Bullets wrong 4383593 StarOffice StarOffice can't handle Postscript Level 3 printers 4383591 StarOffice Writer Printer prints with printer defaults, therefore no correct paper tray access 4329509 StarOffice Calc Problems printing A3 spreadsheets all on one page 4378928 StarOffice Desktop StarOffice follows symbolic links 4383163 StarOffice Explorer .url files lead to infinite loop when these files have no access rights 4383603 StarOffice API: GPF when oColumn.updateBinaryStream >How-To-Repeat: >Fix: -------------------------------------------------------------------------------- possible Commit message: ------------------------ Add SunSolve Patch 109939-02 -------------------------------------------------------------------------------- location of port: ----------------- ports/german/staroffice52 -------------------------------------------------------------------------------- [PATCH] normal -------------- --- Makefile.old Sat Dec 23 01:34:28 2000 +++ Makefile Sat Dec 23 01:51:38 2000 @@ -12,6 +12,7 @@ ftp://ftp.snerpa.is/pub/linux/ \ ftp://ftp.osb.hu/pub/mirrors/staroffice/linux/ \ ftp://ftp.uni-linz.ac.at/pub/staroffice_5.2/ \ + ftp://sunsite.anu.edu.au/mnt/disk3/sun-info/sun-patches/ \ ftp://ftp.labyrinth.net.au/.5/kk/linux/star_office/ \ ftp://ftp.acs.oakland.edu/files/Linux/StarOffice/office52/ \ ftp://ftp.ctio.noao.edu/linux/ \ @@ -19,10 +20,17 @@ ftp://ftp.linux.tucows.com/pub/Linuxberg/ \ ftp://ftp.jcu.edu.au/pub/StarOffice/ \ ftp://ftp.uakom.sk/pub/mirrors/StarOffice/ \ - ftp://ftp.linux.hr/pub/staroffice/5.2/ + ftp://ftp.linux.hr/pub/staroffice/5.2/ \ + ftp://ftp.isst.fhg.de/ISST/Sun/Staroffice/5.2/ \ + ftp://ftp.cityline.net/mirrors2/sun-patches-all/ \ + ftp://ftp.gtn.com/os/Sun/patches/ \ + ftp://ftp.jaist.ac.jp/.arc07/sun-info/sun-patches/ \ + ftp://ftp.hu-berlin.de/pub/mirrors/sunsolve.sun.com/pub/patches/ \ + ftp://sunsite.uio.no/pub/sun/sun-patches/ \ + ftp://ftp.sunet.se/pub7/security/vendor/sun/patches/ DISTNAME= so-5_2-ga-bin-linux-en.bin -DISTFILES= soa-5_2-ga-bin-linux-en.bin so-5_2-ga-bin-linux-en.bin -EXTRACT_ONLY= +DISTFILES= soa-5_2-ga-bin-linux-en.bin so-5_2-ga-bin-linux-en.bin 109939-02.tar.Z +EXTRACT_ONLY= 109939-02.tar.Z MAINTAINER= mb@imp.ch @@ -37,6 +45,7 @@ TMPDIR= ${WRKDIR}/tmp LD_PATH= ${TMPDIR}:${WRKSRC}:${LINUXBASE}/lib:${LINUXBASE}/usr/lib INSTDB.INS= ${PREFIX}/office52/program/instdb.ins +SUNSOLVE= ${WRKDIR}/109939-02 .include @@ -87,6 +96,13 @@ @cd ${WRKSRC} @SAL_IGNOREXERRORS=1 ${WRKSRC}/${DISTNAME} -extract ${WRKSRC} @cd ../../ + @for file in ${EXTRACT_ONLY}; do \ + if ! (cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} \ + ${_DISTDIR}/$$file ${EXTRACT_AFTER_ARGS}) ; \ + then \ + exit 1; \ + fi \ + done .endif post-configure: @@ -101,7 +117,7 @@ @ ${FALSE} .else .if exists(${LINUXBASE}/${PREFIX}) - @${LN} -fs ${LINUXBASE}/${PREFIX}/office52 ${PREFIX}/office52 + @ ${LN} -fs ${LINUXBASE}/${PREFIX}/office52 ${PREFIX}/office52 .endif @${CAT} ${PKGMESSAGE} @-SAL_IGNOREXERRORS=1 TEMP=${TMPDIR} LD_LIBRARY_PATH=${LD_PATH} ${LINUXBASE}/bin/sh -c '${WRKSRC}/setup /net' @@ -117,6 +133,12 @@ ${ECHO} ; \ ${FALSE} ; \ fi +.if ! defined(WITH_CDROM) + @${ECHO_MSG} "===> Applying sunsolve patches for ${PKGNAME}" + @for file in ${SUNSOLVE}/* ; do \ + ${CP} -Rv $$file ${PREFIX}/office52/ ; \ + done +.endif .endif post-install: -------------------------------------------------------------------------------- [PATCH] uuencoded ----------------- begin 644 Makefile.diff.uu M+2TM($UA:V5F:6QE+F]L9`E3870@1&5C(#(S(#`Q.C,T.C(X(#(P,#`**RLK M($UA:V5F:6QE"5-A="!$96,@,C,@,#$Z-3$Z,S@@,C`P,`I`0"`M,3(L-B`K M,3(L-R!`0`H@"0EF='`Z+R]F='`N"\@7`H@ M"0EF='`Z+R]F='`N;W-B+FAU+W!U8B]M:7)R;W)S+W-T87)O9F9I8V4O;&EN M=7@O(%P*(`D)9G1P.B\O9G1P+G5N:2UL:6YZ+F%C+F%T+W!U8B]S=&%R;V9F M:6-E7S4N,B\@7`HK"0EF='`Z+R]S=6YS:71E+F%N=2YE9'4N874O;6YT+V1I M"\@7`I`0"`M,3DL,3`@*S(P+#$W($!`"B`)"69T<#HO+V9T<"YL:6YU>"YT M=6-O=W,N8V]M+W!U8B],:6YU>&)E2]V96YD;W(O"UE;BYB:6X*+41)4U1&24Q%4ST)U=22T1)4GTO=&UP"B!,1%]0051(/0DD>U1-4$1)4GTZ M)'M74DM34D-].B1[3$E.55A"05-%?2]L:6(Z)'M,24Y56$)!4T5]+W5SU=22T1)4GTO,3`Y.3,Y+3`R"B`*("YI M;F-L=61E(#QBT1)4U1.04U%?2`M97ATU=22U-20WT*(`E`8V0@+BXO M+BXO"BL)0&9OU=22T1)4GT@)B8@)'M%6%1204-47T--1'T@)'M%6%1204-4 M7T)%1D]215]!4D=3?2!<"BL)"2`@("`D>U]$25-41$E2?2\D)&9I;&4@)'M% M6%1204-47T%&5$527T%21U-]*2`[(%P**PD)=&AE;B!<"BL)"0EE>&ET(#$[ M(%P**PD)9FD@7`HK"61O;F4*("YE;F1I9@H@"B!P;W-T+6-O;F9I9W5R93H* M0$`@+3$P,2PW("LQ,3U!2149)6'TI"BT)0"1[3$Y]("UFTQ)3E580D%317TO)'M04D5&25A]+V]F9FEC934R("1[4%)%1DE8?2]O9F9I M8V4U,@HK"4`@)'M,3GT@+69S("1[3$E.55A"05-%?2\D>U!2149)6'TO;V9F M:6-E-3(@)'M04D5&25A]+V]F9FEC934R"B`N96YD:68*(`E`)'M#051]("1[ M4$M'34534T%'17T*(`E`+5-!3%])1TY/4D5815)23U)3/3$@5$5-4#TD>U1- M4$1)4GT@3$1?3$E"4D%265]0051(/21[3$1?4$%42'T@)'M,24Y56$)!4T5] M+V)I;B]S:"`M8R`G)'M74DM34D-]+W-E='5P("]N970G"D!`("TQ,3U!2149)6'TO;V9F:6-E-3(O(#L@7`HK"61O;F4* A*RYE;F1I9@H@+F5N9&EF"B`*('!ORelease-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 17: 0:34 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 17:00:20 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A4D1F37B69B for ; Fri, 22 Dec 2000 17:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBN102O76707; Fri, 22 Dec 2000 17:00:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 17:00:02 -0800 (PST) Resent-Message-Id: <200012230100.eBN102O76707@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, mb@imp.ch Received: from fuchur.lan.attic.ch (fuchur.lan.attic.ch [194.235.47.21]) by hub.freebsd.org (Postfix) with ESMTP id 82C8337B400 for ; Fri, 22 Dec 2000 16:58:30 -0800 (PST) Received: (from mblapp@localhost) by fuchur.lan.attic.ch (8.11.1/8.11.1) id eBN10Dh96055; Sat, 23 Dec 2000 02:00:13 +0100 (CET) (envelope-from mblapp) Message-Id: <200012230100.eBN10Dh96055@fuchur.lan.attic.ch> Date: Sat, 23 Dec 2000 02:00:13 +0100 (CET) From: mb@imp.ch Sender: mblapp@fuchur.lan.attic.ch Reply-To: mb@imp.ch To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23785: [PATCH] SunSolve Patch 109939-02 for fr-staroffice-5.2 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23785 >Category: ports >Synopsis: Add SunSolve patch 109939-02 for fr-staroffice-5.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 17:00:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Martin Blapp >Release: FreeBSD 4.2-STABLE i386 >Organization: Improware AG >Environment: FreeBSD fuchur.lan.attic.ch 4.2-STABLE FreeBSD 4.2-STABLE #5: Sun Dec 10 11:00:08 CET 2000 root@fuchur.lan.attic.ch:/usr/src/sys/compile/FURCHUR i386 FreeBSD ports-tree for STABLE and CURRENT >Description: Synopsis: StarOffice 5.2 (Linux): Product patch Patch-ID# 109939-02 BugId's fixed with this patch ----------------------------- 4329509 4348866 4350286 4350342 4350456 4350793 4351658 4352423 4363020 4365476 4369099 4370639 4372400 4378203 4378928 4379925 4383163 4383513 4383517 4383521 4383523 4383524 4383526 4383530 4383533 4383534 4383536 4383537 4383548 4383555 4383557 4383559 4383561 4383562 4383564 4383565 4383567 4383568 4383570 4383572 4383573 4383574 4383576 4383577 4383580 4383581 4383582 4383584 4383585 4383587 4383590 4383591 4383593 4383596 4383602 4383603 Problem Description ------------------- 4348866 StarOffice Mail Encryption of a users password in StarMail is breakable 4350286 StarOffice Writer cannot edit document properties before saving, when using a template 4350342 StarOffice Mail GPF when coping / moving mails by rules or drag & drop into a directory 4350456 StarOffice Base Non-functionality of "Update fields" button after a search in the address book 4350793 StarOffice Writer Hide of sections doesn't work, if we have a formula in a table 4351658 StarOffice Calc SO 5.2 crashes with /# in "Format-Code" field 4352423 StarOffice Writer Copy&Paste special doubles some characters 4363020 StarOffice Writer Thesaurus' synonyms are only displayed on the first meaning 4365476 StarOffice Explorer Moving a directory deletes files not owned by self 4369099 StarOffice Mail deleting messages in hierarchical view crashes StarOffice 4370639 StarOffice Desktop "File - Templates - Edit" doesn't provide the template path 4372400 StarOffice Html Error Adding Horizontal Rule too Table 4378203 StarOffice Calc cells with negative percent values are displayed with a wrong comma setting 4379925 StarOffice Calc Row and column fixing does not work on docs imported from StarOffice 4.0 4383513 StarOffice Scripting API: Creation of sequences in JavaScript not possible 4383517 StarOffice Calc PERMUT returns wrong result on PERMUT(10;0) 4383521 StarOffice Writer images lost behind password-protected sites 4383523 StarOffice Calc No update of a database in datapilot 4383524 StarOffice Mail Browse-button on 'rules'-tabpage not in ExplorerView 4383526 StarOffice Calc SO will crash while loading XLS-bugdoc 4383530 StarOffice Calc Applix can't read the automatic cellheight after SO XLS export 4383533 StarOffice Calc XLS98 files with macros cause a loop 4383534 StarOffice Calc Themes and password => file not loadable 4383536 StarOffice Calc RATE does not converge 4383537 StarOffice problems with XKBD extensions when running remotely on SGI displays 4383548 StarOffice Impress Opening "RecarShareholderMeeting" in the preview of the desktop causes a crash 4383555 StarOffice Mail Deleting multiselected unread mails doesn't work 4383557 StarOffice Writer scrolling problems in HTML document after switching to source mode 4383559 StarOffice Writer SO 5.2 loops when filling database fields with content 4383561 StarOffice Writer StarOffice crashes when exporting a complex table to Word97-format 4383562 StarOffice Writer Dialog "Insert index" lacks direct access to Online Help 4383564 StarOffice Writer StarOffice crashes when deleting columns in a certain Writer-table 4383565 StarOffice Writer StarOffice crashes when updating links in document with linked sections 4383567 StarOffice Writer StarWriter-calculation has wrong order when using POW 4383568 StarOffice Writer Words with ligatures (ae, oe... together) are always marked as incorrect 4383570 StarOffice Impress Assigning a SlideDesign to the standard-master does not work correct 4383572 StarOffice Writer Conditions with expressions like "neq (x)" do not work 4383573 StarOffice Writer False "right margin " tabstop calculation for document indexes 4383574 StarOffice Writer StarOffice crashes when "find all" in a certain document 4383576 StarOffice Writer Autoformat and edit changes crashes 4383577 StarOffice Writer Starwriter table formula generates error message "** expression is fault 4383580 StarOffice Impress "Follow masterbackground" checked -> backgroundgraphic after PPT-Import nevertheless visible 4383581 StarOffice Writer Distance between border and text ignored on Word import 4383582 StarOffice Writer Papaer source not selectable when printer name too long 4383584 StarOffice Writer StarOffice crashes after modifying table, saving and reloading document 4383585 StarOffice Impress PPT-Import: Color of backgroundobject not recognized 4383587 StarOffice Writer StarOffice crashes when inserting a sum into a table in a hidden section 4383590 StarOffice Impress Linked graphic with non-existing link goes lost after change of masterpage 4383596 StarOffice Impress Special JPG-format-graphics disappear after compression 4383602 StarOffice Impress PPT-Import: Some Bullets wrong 4383593 StarOffice StarOffice can't handle Postscript Level 3 printers 4383591 StarOffice Writer Printer prints with printer defaults, therefore no correct paper tray access 4329509 StarOffice Calc Problems printing A3 spreadsheets all on one page 4378928 StarOffice Desktop StarOffice follows symbolic links 4383163 StarOffice Explorer .url files lead to infinite loop when these files have no access rights 4383603 StarOffice API: GPF when oColumn.updateBinaryStream >How-To-Repeat: >Fix: -------------------------------------------------------------------------------- possible Commit message: ------------------------ Add SunSolve Patch 109939-02 -------------------------------------------------------------------------------- location of port: ----------------- ports/german/staroffice52 -------------------------------------------------------------------------------- [PATCH] normal -------------- --- Makefile.old Sat Dec 23 01:48:45 2000 +++ Makefile Sat Dec 23 01:52:13 2000 @@ -12,13 +12,17 @@ MASTER_SITES= ftp://sunsite.cnlab-switch.ch/mirror/staroffice/francais/ \ ftp://ftp.math.u-bordeaux.fr/pub/StarOffice/Linux-Intel/ \ ftp://ftp.be.embnet.org/pub/tools/StarOffice/Linux/ \ - ftp://ftp.medasys-digital-systems.fr/pub1/linux/staroffice/ + ftp://ftp.medasys-digital-systems.fr/pub1/linux/staroffice/ \ + ftp://ftp.hu-berlin.de/pub/mirrors/sunsolve.sun.com/pub/patches/ \ + ftp://sunsite.anu.edu.au/mnt/disk3/sun-info/sun-patches/ \ + ftp://ftp.gtn.com/os/Sun/patches/ + DISTNAME= so-5_2-ga-bin-linux-fr.bin -DISTFILES= so-5_2-ga-bin-linux-fr.bin +DISTFILES= so-5_2-ga-bin-linux-fr.bin 109939-02.tar.Z .if defined(WITH_ADABAS) DISTFILES+= soa-5_2-ga-bin-linux-fr.bin so-5_2-ga-bin-linux-fr.bin .endif -EXTRACT_ONLY= +EXTRACT_ONLY= 109939-02.tar.Z MAINTAINER= mb@imp.ch @@ -33,6 +37,7 @@ TMPDIR= ${WRKDIR}/tmp LD_PATH= ${TMPDIR}:${WRKSRC}:${LINUXBASE}/linux/lib:${LINUXBASE}/usr/lib INSTDB.INS= ${PREFIX}/office52/program/instdb.ins +SUNSOLVE= ${WRKDIR}/109939-02 .include @@ -85,6 +90,13 @@ @cd ${WRKSRC} @SAL_IGNOREXERRORS=1 ${WRKSRC}/${DISTNAME} -extract ${WRKSRC} @cd ../../ + @for file in ${EXTRACT_ONLY}; do \ + if ! (cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} \ + ${_DISTDIR}/$$file ${EXTRACT_AFTER_ARGS}) ; \ + then \ + exit 1; \ + fi \ + done .endif .endif @@ -116,6 +128,12 @@ ${ECHO} ; \ ${FALSE} ; \ fi +.if ! defined(WITH_CDROM) + @${ECHO_MSG} "===> Applying sunsolve patches for ${PKGNAME}" + @for file in ${SUNSOLVE}/* ; do \ + ${CP} -Rv $$file ${PREFIX}/office52/ ; \ + done +.endif .endif post-install: -------------------------------------------------------------------------------- [PATCH] uuencoded ----------------- begin 644 Makefile.diff.uu M+2TM($UA:V5F:6QE+F]L9`E3870@1&5C(#(S(#`Q.C0X.C0U(#(P,#`**RLK M($UA:V5F:6QE"5-A="!$96,@,C,@,#$Z-3(Z,3,@,C`P,`I`0"`M,3(L,3,@ M*S$R+#$W($!`"B!-05-415)?4TE415,]"69T<#HO+W-U;G-I=&4N8VYL86(M M7,M M9&EG:71A;"US>7-T96US+F9R+W!U8C$O;&EN=7@O7,M9&EG:71A;"US>7-T96US+F9R+W!U8C$O;&EN M=7@O"UF"UF"UFTQ)3E580D%317TO;&EN M=7@O;&EB.B1[3$E.55A"05-%?2]UU!2 M149)6'TO;V9F:6-E-3(O<')O9W)A;2]I;G-T9&(N:6YS"BM354Y33TQ613T) M)'M74DM$25)]+S$P.3DS.2TP,@H@"B`N:6YC;'5D92`\8G-D+G!OU=22U-20WT*(`E` M4T%,7TE'3D]215A%4E)/4E,],2`D>U=22U-20WTO)'M$25-43D%-17T@+65X M=')A8W0@)'M74DM34D-]"B`)0&-D("XN+RXN+PHK"4!F;W(@9FEL92!I;B`D M>T585%)!0U1?3TY,67T[(&1O(%P**PD):68@(2`H8V0@)'M74DM$25)]("8F M("1[15A44D%#5%]#341]("1[15A44D%#5%]"149/4D5?05)'4WT@7`HK"0D@ M("`@)'M?1$E35$1)4GTO)"1F:6QE("1[15A44D%#5%]!1E1%4E]!4D=3?2D@ M.R!<"BL)"71H96X@7`HK"0D)97AI="`Q.R!<"BL)"2!F:2!<"BL)9&]N90H@ M+F5N9&EF"B`N96YD:68*(`I`0"`M,3$V+#8@*S$R."PQ,B!`0`H@"0DD>T5# M2$]](#L@7`H@"0DD>T9!3%-%?2`[(%P*(`EF:0HK+FEF("$@9&5F:6YE9"A7 M251(7T-$4D]-*0HK"4`D>T5#2$]?35-'?2`B/3T]/B`@($%P<&QY:6YG('-U M;G-O;'9E('!A=&-H97,@9F]R("1[4$M'3D%-17TB"BL)0&9ORelease-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 17:55:44 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 17:55:43 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id 1DDF437B400 for ; Fri, 22 Dec 2000 17:55:42 -0800 (PST) Received: from [128.130.111.2] (deneb [128.130.111.2]) by vexpert.dbai.tuwien.ac.at (8.11.1/8.11.1) with ESMTP id eBN1tdp14439 for ; Sat, 23 Dec 2000 02:55:40 +0100 (MET) Date: Sat, 23 Dec 2000 02:55:39 +0100 (CET) From: Gerald Pfeifer To: Subject: Re: USE_GMAKE=yes only effects build, not install? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, 23 Dec 2000, Gerald Pfeifer wrote: > Now I wonder, why does USE_GMAKE=yes not effect installation as well? Oops, forget this: I missed the $(MAKE) invocations in emulators/wine/Makefile which I had to replace by $(GMAKE) as well. Though, it might make sense to mention this explicitly in the porters handbook... Gerald -- Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at/~pfeifer/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 18: 3:28 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 18:03:25 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from access.inet.co.th (access.inet.co.th [203.151.127.252]) by hub.freebsd.org (Postfix) with ESMTP id 66D9037B400 for ; Fri, 22 Dec 2000 18:03:24 -0800 (PST) Received: from TruPPP3517.inet.co.th (TruPPP3517.inet.co.th [203.151.127.177]) by access.inet.co.th (8.8.8/8.8.8) with ESMTP id JAA01274 for ; Sat, 23 Dec 2000 09:03:18 +0700 (ICT) (envelope-from pirat@access.inet.co.th) Date: Sat, 23 Dec 2000 09:07:04 +0700 (ICT) From: pirat X-Sender: pirat@parwati.oaep.go.th To: freebsd-ports@FreeBSD.ORG Subject: wv port Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hi sirs, apologize me for posting to this list. but since i got an error message from building wv port that says ===> Building for wv-0.6.2 cc -O -pipe -DHAVE_CONFIG_H -I. -I./ -I./ -I./iconv/ -I./magick/ -I./expat/xmlparse/ -I/usr/local/include -I/usr/local/include -DTTFDIR=\"/usr/local/lib/wv/ttf\" -DXMLCONFIG=\"/usr/local/lib/wv/wvConfig.xml\" -DHTMLCONFIG=\"/usr/local/lib/wv/wvHtml.xml\" -I./libole2/ -I./glib-wv/ -I./oledecod/ -c ./wvSummary.c In file included from ./wvSummary.c:3: wv.h:4470: conflicting types for `read_32ubit' /usr/local/include/wmfapi.h:26: previous declaration of `read_32ubit' wv.h:4471: conflicting types for `read_16ubit' /usr/local/include/wmfapi.h:27: previous declaration of `read_16ubit' gmake: *** [wvSummary.o] Error 1 *** Error code 2 Stop in /usr/ports/textproc/wv. *** Error code 1 Stop in /usr/ports/textproc/wv. *** Error code 1 Stop in /usr/ports/textproc/wv. once i look at the wv.h and wfmapi.h file, my previous experience with *$oft software tells me that such an error happends quite often. i try hacking the wv.h file by placing #ifndef WMF_HEADR_FILE above line 4470 and #endif below line 4471 and now make runs smoothly as i expect. my point is that i am not sure if wv port's been biult correctly or not. oh yes my machine is pentium iii run by freebsd 4.2 stable. with best regards, pirat sriyotha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 18:12:36 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 18:12:34 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from pioneernet.net (pop3.pioneernet.net [208.240.196.25]) by hub.freebsd.org (Postfix) with ESMTP id 63AC537B400; Fri, 22 Dec 2000 18:12:34 -0800 (PST) Received: from wiegand.org [208.194.173.26] by pioneernet.net with ESMTP (SMTPD32-6.05) id AED143AA00E2; Fri, 22 Dec 2000 18:32:49 -0800 Sender: chip@FreeBSD.ORG Message-ID: <3A440AB2.AABDDE21@wiegand.org> Date: Fri, 22 Dec 2000 18:15:14 -0800 From: Chip X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: andreas@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: apsfilter-5.4.2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I just finished running cvsup and updated my entire ports tree, then ran the make install for apsfilter, resulting in the following error: Make sure the makefile and distinfo file (/usr/ports/print/apsfilter/distinfo) are up to date. If you are absolutely sure you want to override this check, type "make NO_CHECKSUM=yes[other args]". *** Error Code 1 Stop in /usr/ports/print/apsfilter. I did run it as root. And just prior to this I was able to install magicfilter with no problems. -- Chip Wiegand www.wiegand.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 18:31:18 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 18:31:16 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from indigo.external.org (c1118643-b.chmpgn1.il.home.com [24.181.130.163]) by hub.freebsd.org (Postfix) with ESMTP id 12B2837B400 for ; Fri, 22 Dec 2000 18:31:12 -0800 (PST) Received: (from jeremy@localhost) by indigo.external.org (8.11.1/8.11.1) id eBN2UR297068; Fri, 22 Dec 2000 20:30:27 -0600 (CST) (envelope-from jeremy) Date: Fri, 22 Dec 2000 20:30:27 -0600 From: Jeremy Shaffner To: Peter Pentchev , ports@freebsd.org Subject: MASTER_SITE_* (Re: How to connect additional distribution files to a port?) Message-ID: <20001222203026.C89514@external.org> References: <20001208151658.D22163@B7173150.DeutschePost.de> <20001208155822.A58038@cichlids.cichlids.com> <20001208160616.G22163@B7173150.DeutschePost.de> <20001208192741.A11933@ringworld.oblivion.bg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001208192741.A11933@ringworld.oblivion.bg>; from roam@orbitel.bg on Fri, Dec 08, 2000 at 07:27:42PM +0200 Sender: jeremy@indigo.external.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Dec 08, 2000 at 07:27:42PM +0200, Peter Pentchev wrote: > On Fri, Dec 08, 2000 at 04:06:16PM +0100, J Wunsch wrote: > > As Alexander Langer wrote: > > > > > What's wrong with just adding it to the DISTFILES variable and maybe > > > setting EXTRACT_ONLY to the files that need to be extracted? > > > > It wouldn't have worked in the avr-libc case, where the doc file was > > to be fetched from a totally different site. > > Why wouldn't it have worked? It is perfectly legal to specify more than > one location in MASTER_SITES, and even more than one MASTER_SITE_SUBDIR. > The ports collection Makefiles shall do the necessary magic to try to fetch > all files from all dirs of all sites until success :) I realize this comes late, but I was thinking recently that it would be nice to be able to list multiple MASTER_SITE_FOO's. As places like Sourceforge become more popular, many distfiles are hosted not just at multiple mirrors, but at multiple mirrors of master sites (ie, MASTER_SITE_PERL_CPAN _and_ MASTER_SITE_SOURCEFORGE). Listing both would only work if the MASTER_SITE_SUBDIR for both sites happened to be the same string, but some are not. Having (for example) a SOURCEFORGE_SUBDIR and CPAN_SUBDIR would make it possible to list two different MASTER_SITE_*'s. Comments? -- Jeremy --------------------------------------------------------------------- Jeremy Shaffner | This space for rent. jeremy@external.org | $ grep happiness life http://www.external.org/~jeremy/pgp.key | FreeBSD: The Power to Serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 19: 0:16 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 19:00:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 24DF337B402 for ; Fri, 22 Dec 2000 19:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBN302V89903; Fri, 22 Dec 2000 19:00:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 19:00:02 -0800 (PST) Resent-Message-Id: <200012230300.eBN302V89903@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, pfeifer@dbai.tuwien.ac.at (Gerald Pfeifer) Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id D4F6737B400 for ; Fri, 22 Dec 2000 18:51:38 -0800 (PST) Received: from deneb.dbai.tuwien.ac.at (deneb [128.130.111.2]) by vexpert.dbai.tuwien.ac.at (8.11.1/8.11.1) with ESMTP id eBN2pZp15451; Sat, 23 Dec 2000 03:51:35 +0100 (MET) Received: (from pfeifer@localhost) by deneb.dbai.tuwien.ac.at (8.11.1/8.11.1) id eBN2pYI53103; Sat, 23 Dec 2000 03:51:34 +0100 (CET) (envelope-from pfeifer) Message-Id: <200012230251.eBN2pYI53103@deneb.dbai.tuwien.ac.at> Date: Sat, 23 Dec 2000 03:51:34 +0100 (CET) From: pfeifer@dbai.tuwien.ac.at (Gerald Pfeifer) To: FreeBSD-gnats-submit@freebsd.org Cc: pfeifer@dbai.tuwien.ac.at X-Send-Pr-Version: 3.2 Subject: ports/23786: Update the Wine port to 2000-12-02 (by maintainer) Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23786 >Category: ports >Synopsis: Update the Wine port to 2000-12-02 (by maintainer) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 19:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Gerald Pfeifer >Release: FreeBSD 4.2-RELEASE i386 >Organization: >Environment: n/a >Description: This updates the Wine port to the 2000-12-12 snapshot. Unfortunately we now required GNU make, but it's not trivial to change that. Approved by myself qua maintainer. >How-To-Repeat: Install the patch below, which will also create a new port-specific patch file files/patch-gf. Remove /files/patch-gd. >Fix: Index: Makefile =================================================================== RCS file: /sw/FreeBSD/CVSUP/ports/emulators/wine/Makefile,v retrieving revision 1.98 diff -u -3 -p -r1.98 Makefile --- Makefile 2000/12/21 10:24:59 1.98 +++ Makefile 2000/12/23 01:51:49 @@ -7,7 +7,7 @@ # PORTNAME= wine -PORTVERSION= 2000.10.26 +PORTVERSION= 2000.12.02 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= ALPHA/wine/development @@ -26,6 +26,7 @@ MAN5= wine.conf.5 ONLY_FOR_ARCHS= i386 USE_XPM= yes USE_MESA= yes +USE_GMAKE= yes .if !defined(NDEBUG) STRIP= @@ -44,10 +45,10 @@ pre-extract: .endif post-patch: +.for D in . library unicode @${PERL} -pi.sofix -e 's/SOVERSION = 1.0/SOVERSION = 1/g' \ - ${WRKSRC}/Makefile.in - @${PERL} -pi.sofix -e 's/SOVERSION = 1.0/SOVERSION = 1/g' \ - ${WRKSRC}/unicode/Makefile.in + ${WRKSRC}/${D}/Makefile.in +.endfor .for D in advapi32 avifil32 comctl32 commdlg crtdll dciman32 ddraw dinput dplay dplayx dsound gdi icmp imagehlp imm32 kernel lzexpand mpr msacm msnet32 msvideo odbc32 ole32 oleaut32 olecli oledlg olepro32 olesvr opengl32 psapi rasapi32 richedit rpcrt4 serialui setupapi shell32 shfolder shlwapi tapi32 ttydrv urlmon user version win32s winaspi wineps wininet winmm winmm/joystick winmm/mcianim winmm/mciavi winmm/mcicda winmm/mciseq winmm/mciwave winmm/midimap winmm/wavemap winmm/wineoss winsock winspool wow32 wsock32 x11drv @${PERL} -pi.sofix -e 's/SOVERSION = 1.0/SOVERSION = 1/g' \ ${WRKSRC}/dlls/${D}/Makefile.in @@ -57,11 +58,11 @@ post-configure: cd ${WRKSRC} && make depend post-build: - cd ${WRKSRC}/programs/regapi && ${MAKE} + cd ${WRKSRC}/programs/regapi && ${GMAKE} ${SED} '1s/bash/sh/;s-\./\(reg.*\.pl\)-'${PREFIX}/lib/wine/reg/'\1-' <${WRKSRC}/programs/regapi/regSet.sh >${WRKDIR}/regSet.sh do-install: - cd ${WRKSRC} && ${MAKE} install + cd ${WRKSRC} && ${GMAKE} install ${INSTALL_SCRIPT} ${WRKDIR}/regSet.sh ${PREFIX}/bin ${INSTALL_DATA} ${WRKSRC}/wine.ini ${PREFIX}/etc/wine.conf.sample [ -f ${PREFIX}/etc/wine.conf ] \ Index: distinfo =================================================================== RCS file: /sw/FreeBSD/CVSUP/ports/emulators/wine/distinfo,v retrieving revision 1.55 diff -u -3 -p -r1.55 distinfo --- distinfo 2000/11/02 15:05:14 1.55 +++ distinfo 2000/12/09 15:36:00 @@ -1 +1 @@ -MD5 (Wine-20001026.tar.gz) = 933381f05b75ace29931b04e27e6432b +MD5 (Wine-20001202.tar.gz) = 22b4ecd23fc8ac3196eeb97e3a43b7df Index: pkg-plist =================================================================== RCS file: /sw/FreeBSD/CVSUP/ports/emulators/wine/pkg-plist,v retrieving revision 1.16 diff -u -3 -p -r1.16 pkg-plist --- pkg-plist 2000/12/21 10:24:59 1.16 +++ pkg-plist 2000/12/23 02:31:24 @@ -13,6 +13,7 @@ etc/wine.conf.sample include/wine/basetsd.h include/wine/cderr.h include/wine/cguid.h +include/wine/comcat.h include/wine/commctrl.h include/wine/commdlg.h include/wine/compobj.h @@ -65,7 +66,11 @@ include/wine/ras.h include/wine/regstr.h include/wine/richedit.h include/wine/rpc.h +include/wine/rpcdce.h +include/wine/rpcdcep.h +include/wine/rpcndr.h include/wine/servprov.h +include/wine/setupapi.h include/wine/shellapi.h include/wine/shlguid.h include/wine/shlobj.h @@ -108,6 +113,7 @@ include/wine/zmouse.h include/wine/wine/exception.h include/wine/wine/icmpapi.h include/wine/wine/ipexport.h +include/wine/wine/library.h include/wine/wine/obj_base.h include/wine/wine/obj_cache.h include/wine/wine/obj_channel.h @@ -157,80 +163,51 @@ lib/wine/documentation/psdrv.reg lib/wine/documentation/README.debugger lib/wine/documentation/README.regapi lib/wine/libadvapi32.so -lib/wine/libadvapi32.so.1 lib/wine/libavifil32.so -lib/wine/libavifil32.so.1 lib/wine/libavifile.so lib/wine/libcomctl32.so -lib/wine/libcomctl32.so.1 lib/wine/libcomdlg32.so -lib/wine/libcomdlg32.so.1 lib/wine/libcomm.so lib/wine/libcommdlg.so lib/wine/libcompobj.so lib/wine/libcrtdll.so -lib/wine/libcrtdll.so.1 lib/wine/libdciman32.so -lib/wine/libdciman32.so.1 lib/wine/libddeml.so lib/wine/libddraw.so -lib/wine/libddraw.so.1 lib/wine/libdinput.so -lib/wine/libdinput.so.1 lib/wine/libdispdib.so lib/wine/libdisplay.so lib/wine/libdplay.so -lib/wine/libdplay.so.1 lib/wine/libdplayx.so -lib/wine/libdplayx.so.1 lib/wine/libdsound.so -lib/wine/libdsound.so.1 lib/wine/libgdi.so lib/wine/libgdi32.so -lib/wine/libgdi32.so.1 lib/wine/libicmp.so -lib/wine/libicmp.so.1 lib/wine/libimagehlp.so -lib/wine/libimagehlp.so.1 lib/wine/libimm32.so -lib/wine/libimm32.so.1 lib/wine/libjoystick.drv.so -lib/wine/libjoystick.drv.so.1 lib/wine/libkernel.so lib/wine/libkernel32.so -lib/wine/libkernel32.so.1 lib/wine/libkeyboard.so lib/wine/liblz32.so -lib/wine/liblz32.so.1 lib/wine/liblzexpand.so lib/wine/libmcianim.drv.so -lib/wine/libmcianim.drv.so.1 lib/wine/libmciavi.drv.so -lib/wine/libmciavi.drv.so.1 lib/wine/libmcicda.drv.so -lib/wine/libmcicda.drv.so.1 lib/wine/libmciseq.drv.so -lib/wine/libmciseq.drv.so.1 lib/wine/libmciwave.drv.so -lib/wine/libmciwave.drv.so.1 lib/wine/libmidimap.drv.so -lib/wine/libmidimap.drv.so.1 lib/wine/libmmsystem.so lib/wine/libmouse.so lib/wine/libmpr.so -lib/wine/libmpr.so.1 lib/wine/libmsacm.drv.so -lib/wine/libmsacm.drv.so.1 lib/wine/libmsacm.so lib/wine/libmsacm32.so -lib/wine/libmsacm32.so.1 lib/wine/libmsnet32.so -lib/wine/libmsnet32.so.1 lib/wine/libmsvfw32.so -lib/wine/libmsvfw32.so.1 lib/wine/libmsvideo.so +lib/wine/libntdll.so lib/wine/libodbc32.so -lib/wine/libodbc32.so.1 lib/wine/libole2.so lib/wine/libole2conv.so lib/wine/libole2disp.so @@ -238,93 +215,62 @@ lib/wine/libole2nls.so lib/wine/libole2prox.so lib/wine/libole2thk.so lib/wine/libole32.so -lib/wine/libole32.so.1 lib/wine/liboleaut32.so -lib/wine/liboleaut32.so.1 lib/wine/libolecli.so lib/wine/libolecli32.so -lib/wine/libolecli32.so.1 lib/wine/liboledlg.so -lib/wine/liboledlg.so.1 lib/wine/libolepro32.so -lib/wine/libolepro32.so.1 lib/wine/libolesvr.so lib/wine/libolesvr32.so -lib/wine/libolesvr32.so.1 lib/wine/libpsapi.so -lib/wine/libpsapi.so.1 lib/wine/librasapi16.so lib/wine/librasapi32.so -lib/wine/librasapi32.so.1 lib/wine/libriched32.so -lib/wine/libriched32.so.1 lib/wine/librpcrt4.so -lib/wine/librpcrt4.so.1 lib/wine/libserialui.so -lib/wine/libserialui.so.1 lib/wine/libsetupapi.so -lib/wine/libsetupapi.so.1 lib/wine/libsetupx.so lib/wine/libshell.so lib/wine/libshell32.so -lib/wine/libshell32.so.1 lib/wine/libshfolder.so -lib/wine/libshfolder.so.1 lib/wine/libshlwapi.so -lib/wine/libshlwapi.so.1 lib/wine/libsound.so lib/wine/libstorage.so lib/wine/libstress.so lib/wine/libsystem.so lib/wine/libtapi32.so -lib/wine/libtapi32.so.1 lib/wine/libtoolhelp.so lib/wine/libttydrv.so -lib/wine/libttydrv.so.1 lib/wine/libtypelib.so lib/wine/liburlmon.so -lib/wine/liburlmon.so.1 lib/wine/libuser.so lib/wine/libuser32.so -lib/wine/libuser32.so.1 lib/wine/libver.so lib/wine/libversion.so -lib/wine/libversion.so.1 lib/wine/libw32skrnl.so -lib/wine/libw32skrnl.so.1 lib/wine/libw32sys.so lib/wine/libwin32s16.so lib/wine/libwin87em.so lib/wine/libwinaspi.so lib/wine/libwindebug.so +lib/wine/libwine.so lib/wine/libwine.so.1 +lib/wine/libwine_unicode.so +lib/wine/libwine_unicode.so.1 lib/wine/libwineoss.drv.so -lib/wine/libwineoss.drv.so.1 lib/wine/libwineps.so -lib/wine/libwineps.so.1 lib/wine/libwineps16.so lib/wine/libwing.so lib/wine/libwininet.so -lib/wine/libwininet.so.1 lib/wine/libwinmm.so -lib/wine/libwinmm.so.1 lib/wine/libwinsock.so lib/wine/libws2_32.so -lib/wine/libws2_32.so.1 -lib/wine/libwine.so -lib/wine/libwine_unicode.so -lib/wine/libwine_unicode.so.1 lib/wine/libwinspool.drv.so -lib/wine/libwinspool.drv.so.1 lib/wine/libwnaspi32.so -lib/wine/libwnaspi32.so.1 lib/wine/libwow32.so -lib/wine/libwow32.so.1 lib/wine/libwprocs.so lib/wine/libwsock32.so -lib/wine/libwsock32.so.1 lib/wine/libx11drv.so -lib/wine/libx11drv.so.1 @dirrm include/wine/wine @dirrm include/wine @dirrm lib/wine/reg Index: files/patch-ge =================================================================== RCS file: /sw/FreeBSD/CVSUP/ports/emulators/wine/files/patch-ge,v retrieving revision 1.1 diff -u -3 -p -r1.1 patch-ge --- files/patch-ge 2000/10/15 07:32:44 1.1 +++ files/patch-ge 2000/12/09 17:15:46 @@ -1,24 +1,19 @@ -Index: dlls/Makedll.rules.in -=================================================================== -RCS file: /home/wine/wine/dlls/Makedll.rules.in,v -retrieving revision 1.6 -diff -c -3 -p -r1.6 Makedll.rules.in -*** Makedll.rules.in 2000/08/03 00:04:24 1.6 ---- Makedll.rules.in 2000/10/13 18:30:44 +*** dlls/Makedll.rules.in 2000/12/06 00:05:14 1.12 +--- dlls/Makedll.rules.in 2000/12/09 16:39:55 *************** all: lib$(MODULE).$(LIBEXT) $(ALTNAMES:% *** 25,31 **** # Rules for .so files - lib$(MODULE).so.$(SOVERSION): $(OBJS) Makefile.in $(TOPSRCDIR)/Make.rules.in -! $(LDSHARED) $(OBJS) -o $@ -L$(DLLDIR) $(IMPORTS:%=-l%) $(EXTRALIBS) + lib$(MODULE).so: $(ALL_OBJS) Makefile.in +! $(LDSHARED) $(LDDLLFLAGS) $(ALL_OBJS) -o $@ -L$(DLLDIR) $(IMPORTS:%=-l%) $(ALL_LIBS) - $(ALLNAMES): lib$(MODULE).so.$(SOVERSION) - $(RM) $@ && $(LN_S) lib$(MODULE).so.$(SOVERSION) $@ + $(ALTNAMES:%=lib%.$(LIBEXT)): lib$(MODULE).$(LIBEXT) + $(RM) $@ && $(LN_S) lib$(MODULE).$(LIBEXT) $@ --- 25,31 ---- # Rules for .so files - lib$(MODULE).so.$(SOVERSION): $(OBJS) Makefile.in $(TOPSRCDIR)/Make.rules.in -! $(LDSHARED) $(OBJS) -o $@ -L$(DLLDIR) $(IMPORTS:%=-l%) $(EXTRALIBS) -lgcc_pic + lib$(MODULE).so: $(ALL_OBJS) Makefile.in +! $(LDSHARED) $(LDDLLFLAGS) $(ALL_OBJS) -o $@ -L$(DLLDIR) $(IMPORTS:%=-l%) $(ALL_LIBS) -lgcc_pic - $(ALLNAMES): lib$(MODULE).so.$(SOVERSION) - $(RM) $@ && $(LN_S) lib$(MODULE).so.$(SOVERSION) $@ + $(ALTNAMES:%=lib%.$(LIBEXT)): lib$(MODULE).$(LIBEXT) + $(RM) $@ && $(LN_S) lib$(MODULE).$(LIBEXT) $@ --- /dev/null Sat Dec 23 03:44:22 2000 +++ files/patch-gf Tue Dec 12 20:03:02 2000 @@ -0,0 +1,11 @@ +--- include/winsock2.h 2000/09/26 22:20:50 1.5 ++++ include/winsock2.h 2000/11/29 21:00:17 +@@ -7,6 +7,7 @@ + #ifndef __WINSOCK2API__ + #define __WINSOCK2API__ + ++#include "config.h" + #include "winsock.h" + + /* proper 4-byte packing */ + >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 19: 7:32 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 19:07:31 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 437BF37B400; Fri, 22 Dec 2000 19:07:31 -0800 (PST) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBN37Ur92721; Fri, 22 Dec 2000 19:07:30 -0800 (PST) (envelope-from dannyboy) Date: Fri, 22 Dec 2000 19:07:30 -0800 (PST) From: Message-Id: <200012230307.eBN37Ur92721@freefall.freebsd.org> To: olgeni@uli.it, dannyboy@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23723: typo and portlint fix for security/firewalk Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: typo and portlint fix for security/firewalk State-Changed-From-To: open->closed State-Changed-By: dannyboy State-Changed-When: Fri Dec 22 19:07:13 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23723 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 19:19: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 19:19:06 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AAFBA37B400; Fri, 22 Dec 2000 19:19:06 -0800 (PST) Received: (from jmz@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBN3J6j94466; Fri, 22 Dec 2000 19:19:06 -0800 (PST) (envelope-from jmz) Date: Fri, 22 Dec 2000 19:19:06 -0800 (PST) From: Message-Id: <200012230319.eBN3J6j94466@freefall.freebsd.org> To: pfeifer@dbai.tuwien.ac.at, jmz@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23786: Update the Wine port to 2000-12-02 (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update the Wine port to 2000-12-02 (by maintainer) State-Changed-From-To: open->closed State-Changed-By: jmz State-Changed-When: Fri Dec 22 19:18:42 PST 2000 State-Changed-Why: Port updated. http://www.freebsd.org/cgi/query-pr.cgi?pr=23786 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 20:40: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 20:40:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0982A37B402 for ; Fri, 22 Dec 2000 20:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBN4e2U02995; Fri, 22 Dec 2000 20:40:02 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 20:40:02 -0800 (PST) Resent-Message-Id: <200012230440.eBN4e2U02995@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dwcjr@inethouston.net Received: from leviathan.inethouston.com (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 8ED3537B400 for ; Fri, 22 Dec 2000 20:31:34 -0800 (PST) Received: by leviathan.inethouston.com (Postfix, from userid 0) id 9A434177E40; Fri, 22 Dec 2000 22:33:14 -0600 (CST) Message-Id: <20001223043314.9A434177E40@leviathan.inethouston.com> Date: Fri, 22 Dec 2000 22:33:14 -0600 (CST) From: dwcjr@inethouston.net Sender: root@inethouston.net Reply-To: dwcjr@inethouston.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23788: Update editors/staroffice5 Update MASTER_SITE Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23788 >Category: ports >Synopsis: Update editors/staroffice5 Update MASTER_SITE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 20:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: David W. Chapman Jr. >Release: FreeBSD 4.2-STABLE i386 >Organization: RainTree Network Services >Environment: >Description: Take off two mirrors that no longer have files for star office www.hagenhomes.com sells wood and stuff now, they aren't a mirror anymore :) >How-To-Repeat: >Fix: --- Makefile.orig Fri Dec 22 22:22:53 2000 +++ Makefile Fri Dec 22 22:30:51 2000 @@ -9,10 +9,7 @@ PORTVERSION= 5.1a CATEGORIES= editors linux MASTER_SITES= http://afug.hypermart.net/files/ \ - http://www.hagenhomes.com/freebsd/files/ \ ftp://ftp.stat.duke.edu/pub/Users/sto/StarOffice51a/ \ - ftp://ftp.stardivision.de/pub/support/so51a/nwspatch/unxlnxi/ \ - ftp://ftp.stardivision.de/pub/support/so51a/db/unxlnxi/ DISTNAME= so51a_lnx_01 EXTRACT_SUFX= .tar DISTFILES= applicat.rdb.gz libofa517li.so libsdb517li.so >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 20:43: 3 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 20:43:02 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mail5.lig.bellsouth.net (mail5.lig.bellsouth.net [205.152.0.12]) by hub.freebsd.org (Postfix) with ESMTP id 02EF037B400 for ; Fri, 22 Dec 2000 20:43:02 -0800 (PST) Received: from coastalgeology.org (adsl-20-126-148.chs.bellsouth.net [66.20.126.148]) by mail5.lig.bellsouth.net (3.3.5alt/0.75.2) with SMTP id XAA20304 for ; Fri, 22 Dec 2000 23:43:00 -0500 (EST) Received: (qmail 93349 invoked by uid 1000); 23 Dec 2000 05:03:10 -0000 Date: Sat, 23 Dec 2000 00:03:10 -0500 From: Jonathan Pennington To: ports@freebsd.org Subject: Re: Unfetchable distfiles reminder Message-ID: <20001223000310.B65117@coastalgeology.org> Reply-To: Jonathan Pennington Mail-Followup-To: Jonathan Pennington , ports@freebsd.org References: <200012211800.eBLI0FC87639@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200012211800.eBLI0FC87639@freefall.freebsd.org>; from fenner@FreeBSD.org on Thu, Dec 21, 2000 at 10:00:15AM -0800 X-Warning: Bill Gates Controls The Matrix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * fenner@FreeBSD.org [001221 13:26]: > Since no one is responsible for these ports, the problem won't get > fixed unless someone on this list takes the initiative. How do we volunteer to take unmaintained ports over. I'm porting a couple of geology apps right now, and there are two or three unmaintained ports that are actually (recommended|required) for what I'm doing. I'd be happy to maintain them from here on out. None are listed as bad, but it'll reduce the total number of unmaintained ports at the least. -J -- Jonathan Pennington | http://coastalgeology.org Site Manager | Protection and stewardship CoastalGeology.Org (CGO) | through public education. john@coastalgeology.org | Join CGO, make a difference. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 22: 8: 3 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 22:08:02 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (poynting.physics.purdue.edu [128.210.146.58]) by hub.freebsd.org (Postfix) with ESMTP id 572D237B400 for ; Fri, 22 Dec 2000 22:08:02 -0800 (PST) Received: from argon.firepipe.net (pm005-017.dialup.bignet.net [64.79.80.209]) by puck.firepipe.net (Postfix) with ESMTP id 127281A3A; Sat, 23 Dec 2000 01:08:01 -0500 (EST) Received: by argon.firepipe.net (Postfix, from userid 1000) id D6FDE19CF; Sat, 23 Dec 2000 01:03:34 -0500 (EST) Date: Sat, 23 Dec 2000 01:03:34 -0500 From: Will Andrews To: Gerald Pfeifer Cc: freebsd-ports@FreeBSD.ORG Subject: Re: USE_GMAKE=yes only effects build, not install? Message-ID: <20001223010333.S328@argon.firepipe.net> Reply-To: Will Andrews References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from pfeifer@dbai.tuwien.ac.at on Sat, Dec 23, 2000 at 02:55:39AM +0100 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: will@argon.firepipe.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Dec 23, 2000 at 02:55:39AM +0100, Gerald Pfeifer wrote: > Oops, forget this: I missed the $(MAKE) invocations in > emulators/wine/Makefile which I had to replace by $(GMAKE) as well. > > Though, it might make sense to mention this explicitly in the porters > handbook... NO! $(MAKE) is supposed to be "gmake" when USE_GMAKE=yes. If it's mangled somehow that is either wine's build system's fault or gmake's. Somehow I doubt it is the latter. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 22: 8:35 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 22:08:34 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from indigo.external.org (c1118643-b.chmpgn1.il.home.com [24.181.130.163]) by hub.freebsd.org (Postfix) with ESMTP id B4EF837B400 for ; Fri, 22 Dec 2000 22:08:33 -0800 (PST) Received: (from jeremy@localhost) by indigo.external.org (8.11.1/8.11.1) id eBN67pq98103; Sat, 23 Dec 2000 00:07:51 -0600 (CST) (envelope-from jeremy) Date: Sat, 23 Dec 2000 00:07:49 -0600 From: Jeremy Shaffner To: Jonathan Pennington , ports@freebsd.org Subject: Re: Unfetchable distfiles reminder Message-ID: <20001223000748.D89514@external.org> References: <200012211800.eBLI0FC87639@freefall.freebsd.org> <20001223000310.B65117@coastalgeology.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001223000310.B65117@coastalgeology.org>; from john@coastalgeology.org on Sat, Dec 23, 2000 at 12:03:10AM -0500 Sender: jeremy@indigo.external.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Dec 23, 2000 at 12:03:10AM -0500, Jonathan Pennington wrote: > * fenner@FreeBSD.org [001221 13:26]: > > Since no one is responsible for these ports, the problem won't get > > fixed unless someone on this list takes the initiative. > > How do we volunteer to take unmaintained ports over. I'm porting a Just submit an update via send-pr and request that the Maintainer be changed. > couple of geology apps right now, and there are two or three This brings up something that I think should be addressed, and that's the absense of a science category that would hold everything that's currently in biology and any other science, or at least be a virtual category. > unmaintained ports that are actually (recommended|required) for what > I'm doing. I'd be happy to maintain them from here on out. None are > listed as bad, but it'll reduce the total number of unmaintained ports > at the least. Great. -- --------------------------------------------------------------------- Jeremy Shaffner | This space for rent. jeremy@external.org | $ grep happiness life http://www.external.org/~jeremy/pgp.key | FreeBSD: The Power to Serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 22: 9: 0 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 22:08:59 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (poynting.physics.purdue.edu [128.210.146.58]) by hub.freebsd.org (Postfix) with ESMTP id DC92037B402 for ; Fri, 22 Dec 2000 22:08:58 -0800 (PST) Received: from argon.firepipe.net (pm005-017.dialup.bignet.net [64.79.80.209]) by puck.firepipe.net (Postfix) with ESMTP id E365D1B1E; Sat, 23 Dec 2000 01:08:57 -0500 (EST) Received: by argon.firepipe.net (Postfix, from userid 1000) id 19DAD1911; Sat, 23 Dec 2000 01:04:30 -0500 (EST) Date: Sat, 23 Dec 2000 01:04:29 -0500 From: Will Andrews To: Jonathan Pennington Cc: ports@FreeBSD.ORG Subject: Re: Unfetchable distfiles reminder Message-ID: <20001223010429.T328@argon.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Jonathan Pennington , ports@FreeBSD.ORG References: <200012211800.eBLI0FC87639@freefall.freebsd.org> <20001223000310.B65117@coastalgeology.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001223000310.B65117@coastalgeology.org>; from john@coastalgeology.org on Sat, Dec 23, 2000 at 12:03:10AM -0500 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: will@argon.firepipe.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Dec 23, 2000 at 12:03:10AM -0500, Jonathan Pennington wrote: > How do we volunteer to take unmaintained ports over. I'm porting a > couple of geology apps right now, and there are two or three > unmaintained ports that are actually (recommended|required) for what > I'm doing. I'd be happy to maintain them from here on out. None are > listed as bad, but it'll reduce the total number of unmaintained ports > at the least. Sure, which ports? -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 22:17:34 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 22:17:32 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (poynting.physics.purdue.edu [128.210.146.58]) by hub.freebsd.org (Postfix) with ESMTP id D7E4037B400 for ; Fri, 22 Dec 2000 22:17:31 -0800 (PST) Received: from argon.firepipe.net (pm005-017.dialup.bignet.net [64.79.80.209]) by puck.firepipe.net (Postfix) with ESMTP id 0935E1B1E; Sat, 23 Dec 2000 01:17:29 -0500 (EST) Received: by argon.firepipe.net (Postfix, from userid 1000) id E16911909; Sat, 23 Dec 2000 01:13:05 -0500 (EST) Date: Sat, 23 Dec 2000 01:13:05 -0500 From: Will Andrews To: Anarcat Cc: will@physics.purdue.edu, freebsd-ports@FreeBSD.ORG Subject: Re: Porting ecasound suite to FreeBSD Message-ID: <20001223011305.U328@argon.firepipe.net> Reply-To: Will Andrews References: <87puilbdwu.wl@localhost.anarcat.yi.org> <20001221224539.J328@argon.firepipe.net> <874rzwidpz.wl@localhost.anarcat.yi.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <874rzwidpz.wl@localhost.anarcat.yi.org>; from beaupran@IRO.UMontreal.CA on Fri, Dec 22, 2000 at 12:10:32PM -0500 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: will@argon.firepipe.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Dec 22, 2000 at 12:10:32PM -0500, Anarcat wrote: > Humm.. I agree. But FreeBSD way is kinda strange. Why doesn't it use > the '-lpthread' syntax? Autoconf has "problems" detecting libs that > are not link with -l. Actually, it's more a problem of not > having the good macro available.. I don't really know why it does it that way. You'll have to ask Jason Evans, the pthread (libc_r) maintainer. I've never really understood why pthread was put in a library called "c_r" instead of "pthread", among a few other things. > But I fixed the scripts. Unfortunatly, since my fixes go back to > ecasound's main source it has to be in LICQ's style: > > case "$host" ... > freebsd) > CFLAGS... > > This is annoying. Is there a better way? perl -pi -e "s@-lpthread@-pthread@g" ${WRKSRC}/configure in your port Makefile. Sure, it's a hack, but it works (usually). The configure script should have the necessary autoconf hooks to check for -pthread on FreeBSD.. some projects already have this sort of thing. > I know it's there. The problem occurs upon link. It would be nice to see the exact error. > Also, there's no mlockall man page. Is there a reason (e.g. "secret > function" :)? There are plenty of undocumented function calls in FreeBSD, just like any other operating system. > Well-well-well.. It seems you're right! I have no idea how their > libtool stuff works, in fact, I know *nothing* about libtool. One > thing I know though... libtool is installed on my system > (/usr/local/bin/libtool) and the makefiles are usings the package's > libtool! And this one adds annoying -lc and -lc_r libs! > > Fixed. Yeah, libtool is pretty stupid when it comes to FreeBSD. Thankfully, this problem is not usually caused by libtool. Sometimes it is, usually not. > Ah-ah! I knew there was something I was missing. This is the first > "major" port I do (pthreads, libtool, messy dependencies...), so I > knew I was missing some stuff. Quite an experience, isn't it? > Thanks a lot for your help, you can expect a port to pop up in PRs > soon enough. :) Sure. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 22:48:27 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 22:48:23 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from peorth.iteration.net (peorth.iteration.net [208.190.180.178]) by hub.freebsd.org (Postfix) with ESMTP id E2B4237B400; Fri, 22 Dec 2000 22:48:22 -0800 (PST) Received: by peorth.iteration.net (Postfix, from userid 1001) id 4A7475749A; Sat, 23 Dec 2000 00:48:31 -0600 (CST) Date: Sat, 23 Dec 2000 00:48:31 -0600 From: "Michael C . Wu" To: ports@freebsd.org, i18n@freebsd.org Subject: Re: cvs commit: ports/chinese/rxvt-big5 pkg-message Makefile ports/chinese/rxvt-big5/files patch-multibyte_cursor Message-ID: <20001223004831.A75903@peorth.iteration.net> Reply-To: "Michael C . Wu" References: <200012230618.eBN6IWh20017@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200012230618.eBN6IWh20017@freefall.freebsd.org>; from clive@FreeBSD.org on Fri, Dec 22, 2000 at 10:18:32PM -0800 X-PGP-Fingerprint: 5025 F691 F943 8128 48A8 5025 77CE 29C5 8FA1 2E20 X-PGP-Key-ID: 0x8FA12E20 Sender: keichii@peorth.iteration.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Dec 22, 2000 at 10:18:32PM -0800, Clive Lin scribbled: | clive 2000/12/22 22:18:32 PST | | Modified files: | chinese/rxvt-big5 Makefile | Added files: | chinese/rxvt-big5 pkg-message | chinese/rxvt-big5/files patch-multibyte_cursor | Log: | Add multibyte cursor auto detection (hack). | Add pkg-message shows how to enable or remove this feature. | Bump portrevision. | | Approved by/discussed with: keichii@iteration.net (MAINTAINER) | Obtained from: Debian package. (but heavily trimed) | | Revision Changes Path | 1.2 +12 -7 ports/chinese/rxvt-big5/Makefile I really think that this is a hack, but it works. Does anyone know of a good XIM term that works with CJK input with transparency/tinting/other usefule features? The rxvt development has lagged behind, and so has wterm. Last time I tried, ETerm doesn't do Chinese XIM, nor does ATerm (not even ports/chinese/aterm). Can the Japanese/Korean people describe their situation to me? -- +------------------------------------------------------------------+ | keichii@peorth.iteration.net | keichii@bsdconspiracy.net | | http://peorth.iteration.net/~keichii | Yes, BSD is a conspiracy. | +------------------------------------------------------------------+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 23:10:14 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 23:10:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B3F2D37B402 for ; Fri, 22 Dec 2000 23:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBN7A1J26937; Fri, 22 Dec 2000 23:10:01 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 23:10:01 -0800 (PST) Resent-Message-Id: <200012230710.eBN7A1J26937@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, mmuir@cwnet.com Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CFAB137B400 for ; Fri, 22 Dec 2000 23:08:06 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBN786B26716; Fri, 22 Dec 2000 23:08:06 -0800 (PST) (envelope-from nobody) Message-Id: <200012230708.eBN786B26716@freefall.freebsd.org> Date: Fri, 22 Dec 2000 23:08:06 -0800 (PST) From: mmuir@cwnet.com Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23789: update port sysutils/wmhm Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23789 >Category: ports >Synopsis: update port sysutils/wmhm >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 23:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Mike Muir >Release: 4.2-STABLE >Organization: n/a >Environment: FreeBSD ogre.lan 4.2-STABLE FreeBSD 4.2-STABLE #0: Fri Dec 22 16:56:01 PST 2000 root@ogre.lan:/usr/src/sys/compile/POWER i386 >Description: - MAINTAINER updated. - other email references within source updated. - more modest -h output. - no /files/patch-?? required (better not be anyway) =] side note: unable to send mail directly re: MAPS DUL. Hope this web form doesn't cause havok with the diff.. >How-To-Repeat: >Fix: diff -ruN /usr/ports/sysutils/wmhm/Makefile ./wmhm/Makefile --- /usr/ports/sysutils/wmhm/Makefile Thu Nov 23 12:40:40 2000 +++ ./wmhm/Makefile Fri Dec 22 21:56:30 2000 @@ -1,8 +1,8 @@ # New ports collection makefile for: wmhm # Date created: 21 September 1999 -# Whom: Mike Muir +# Whom: Mike Muir # -# $FreeBSD: ports/sysutils/wmhm/Makefile,v 1.17 2000/11/23 11:56:10 sobomax Exp $ +# $FreeBSD$ # PORTNAME= wmhm @@ -11,11 +11,12 @@ MASTER_SITES= ftp://muir.yi.org/pub/wmhm/ \ http://www.es.co.nz/~mmuir/ -MAINTAINER= mmuir@es.co.nz +MAINTAINER= mmuir@cwnet.com + +LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm WRKSRC= ${WRKDIR}/wmhm/wmhm -USE_XPM= yes GNU_CONFIGURE= yes MAN8= wmhm.8 MANCOMPRESSED= yes diff -ruN /usr/ports/sysutils/wmhm/README.html ./wmhm/README.html --- /usr/ports/sysutils/wmhm/README.html Mon Mar 20 11:40:46 2000 +++ ./wmhm/README.html Fri Dec 22 22:15:24 2000 @@ -3,24 +3,24 @@

The FreeBSD Ports Collection ("sysutils/wmhm")


-

You are now in the directory for the port "sysutils/wmhm" (package name "wmhm-1.42"). +

You are now in the directory for the port "sysutils/wmhm" (package name "wmhm-1.45").

This is the one-line description for this port:


-WindowMaker dockable LM78/LM79 hardware monitor for FreeBSD +WindowMaker dockable hardware monitor for FreeBSD


-

Please read the file "pkg/DESCR" for a +

Please read the "description file" for a longer description.

Go to the top of the ports tree for a summary on how to use the ports collection.

-This port requires package(s) "XFree86-3.3.6 xpm-3.4k" to build. +This port requires package(s) "XFree86-3.3.6_6 xpm-3.4k" to build.

-This port requires package(s) "XFree86-3.3.6 xpm-3.4k" to run. +This port requires package(s) "XFree86-3.3.6_6 xpm-3.4k" to run.


Go up one level diff -ruN /usr/ports/sysutils/wmhm/distinfo ./wmhm/distinfo --- /usr/ports/sysutils/wmhm/distinfo Tue Jul 11 18:59:03 2000 +++ ./wmhm/distinfo Fri Dec 22 21:53:31 2000 @@ -1 +1 @@ -MD5 (wmhm-1.45.tar.gz) = 2239589ec3128b4a6a32eaa7e995b1fb +MD5 (wmhm-1.45.tar.gz) = 4cbb27566949ddfa35f883cb3a499ead diff -ruN /usr/ports/sysutils/wmhm/files/patch-ac ./wmhm/files/patch-ac --- /usr/ports/sysutils/wmhm/files/patch-ac Sat Aug 12 01:07:25 2000 +++ ./wmhm/files/patch-ac Wed Dec 31 16:00:00 1969 @@ -1,18 +0,0 @@ ---- Makefile.in.orig Thu May 18 15:11:57 2000 -+++ Makefile.in Sat Aug 12 00:15:10 2000 -@@ -1,11 +1,12 @@ - DEFINES+= -DHAVE_CONFIG_H --CFLAGS+= -O2 -Wall -I/usr/X11R6/include $(DEFINES) --LDFLAGS+= -lXpm -lXext -lX11 -L/usr/X11R6/lib -lXpm -lm -+CFLAGS?= -O2 -+CFLAGS+= -I${X11BASE}/include $(DEFINES) -+LDFLAGS+= -lXpm -lXext -lX11 -L${X11BASE}/lib -lm - - HEADERS= wmhm.h wmgeneral.h operations.h display.h - SRCS= wmhm.c wmgeneral.c operations.c display.c - --PREFIX= /usr/local -+PREFIX?= /usr/local - BINDIR= $(PREFIX)/bin - MANDIR= $(PREFIX)/man/man - diff -ruN /usr/ports/sysutils/wmhm/pkg-comment ./wmhm/pkg-comment --- /usr/ports/sysutils/wmhm/pkg-comment Sat Aug 12 01:07:36 2000 +++ ./wmhm/pkg-comment Tue May 9 12:05:41 2000 @@ -1 +1 @@ -Window Maker dockable hardware monitor for FreeBSD +WindowMaker dockable hardware monitor for FreeBSD diff -ruN /usr/ports/sysutils/wmhm/pkg-descr ./wmhm/pkg-descr --- /usr/ports/sysutils/wmhm/pkg-descr Sat Aug 12 01:07:37 2000 +++ ./wmhm/pkg-descr Fri Dec 22 21:45:45 2000 @@ -1,9 +1,9 @@ wmhm uses /dev/io or the SMBus Driver for PIIX4 provided by Takanori Watanabe to gather information from hardware sensors and provide motherboard temperature, cpu temperature(s), fan speeds, voltages and a voltmeter in a nice looking -Window Maker dock app. +WindowMaker dock app. WWW: http://muir.yi.org/wmhm/ - mikem -mmuir@es.co.nz +mmuir@cwnet.com >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 23:10:15 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 23:10:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DDBE037B698 for ; Fri, 22 Dec 2000 23:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBN7A1Z26948; Fri, 22 Dec 2000 23:10:01 -0800 (PST) (envelope-from gnats) Resent-Date: Fri, 22 Dec 2000 23:10:01 -0800 (PST) Resent-Message-Id: <200012230710.eBN7A1Z26948@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, mmuir@cwnet.com Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AFD4837B400 for ; Fri, 22 Dec 2000 23:09:51 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBN79p526913; Fri, 22 Dec 2000 23:09:51 -0800 (PST) (envelope-from nobody) Message-Id: <200012230709.eBN79p526913@freefall.freebsd.org> Date: Fri, 22 Dec 2000 23:09:51 -0800 (PST) From: mmuir@cwnet.com Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23790: update port sysutils/consolehm Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23790 >Category: ports >Synopsis: update port sysutils/consolehm >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Dec 22 23:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Mike Muir >Release: 4.2-STABLE >Organization: n/a >Environment: FreeBSD ogre.lan 4.2-STABLE FreeBSD 4.2-STABLE #0: Fri Dec 22 16:56:01 PST 2000 root@ogre.lan:/usr/src/sys/compile/POWER i386 >Description: - MAINTAINER updated. - other email references within source updated. - no /files/patch-?? required side note: unable to send mail directly re: MAPS DUL. Hope this web form doesn't cause havok with the diff.. >How-To-Repeat: >Fix: diff -ruN /usr/ports/sysutils/consolehm/Makefile ./consolehm/Makefile --- /usr/ports/sysutils/consolehm/Makefile Wed Aug 2 05:37:59 2000 +++ ./consolehm/Makefile Fri Dec 22 22:45:55 2000 @@ -1,8 +1,8 @@ # New ports collection makefile for: consolehm # Date created: 27 September 1999 -# Whom: Mike Muir +# Whom: Mike Muir # -# $FreeBSD: ports/sysutils/consolehm/Makefile,v 1.8 2000/08/02 07:51:35 kevlo Exp $ +# $FreeBSD$ # PORTNAME= consolehm @@ -11,11 +11,11 @@ MASTER_SITES= ftp://muir.yi.org/pub/consolehm/ \ http://www.es.co.nz/~mmuir/ -MAINTAINER= mmuir@es.co.nz +MAINTAINER= mmuir@cwnet.com WRKSRC= ${WRKDIR}/consolehm/consolehm -GNU_CONFIGURE= yes +GNU_CONFIGURE= yes MAN8= chm.8 MANCOMPRESSED= yes diff -ruN /usr/ports/sysutils/consolehm/README.html ./consolehm/README.html --- /usr/ports/sysutils/consolehm/README.html Mon Mar 20 11:40:20 2000 +++ ./consolehm/README.html Fri Dec 22 22:53:23 2000 @@ -3,15 +3,15 @@

The FreeBSD Ports Collection ("sysutils/consolehm")


-

You are now in the directory for the port "sysutils/consolehm" (package name "consolehm-1.2"). +

You are now in the directory for the port "sysutils/consolehm" (package name "consolehm-1.31").

This is the one-line description for this port:


-Console based LM78/LM79 hardware monitor for FreeBSD +Console based hardware monitor for FreeBSD


-

Please read the file "pkg/DESCR" for a +

Please read the "description file" for a longer description.

Go to the top of the ports tree for diff -ruN /usr/ports/sysutils/consolehm/distinfo ./consolehm/distinfo --- /usr/ports/sysutils/consolehm/distinfo Wed Aug 2 00:51:43 2000 +++ ./consolehm/distinfo Fri Dec 22 22:53:20 2000 @@ -1 +1 @@ -MD5 (consolehm-1.31.tar.gz) = 141c63d18ee404dceee5ec3b82e36e29 +MD5 (consolehm-1.31.tar.gz) = d8f7418b28b5f605c6ac4a09563490d4 diff -ruN /usr/ports/sysutils/consolehm/files/patch-aa ./consolehm/files/patch-aa --- /usr/ports/sysutils/consolehm/files/patch-aa Wed Aug 9 11:38:26 2000 +++ ./consolehm/files/patch-aa Wed Dec 31 16:00:00 1969 @@ -1,13 +0,0 @@ ---- Makefile.in.orig Thu May 18 02:17:05 2000 -+++ Makefile.in Wed Aug 9 14:35:46 2000 -@@ -1,5 +1,9 @@ - DEFINES+= -DHAVE_CONFIG_H --CFLAGS+= -O2 -g -Wall $(DEFINES) -+CFLAGS?= -O2 -+CFLAGS+= -g -Wall $(DEFINES) -+.if ${ARCH} == "alpha" -+LDFLAGS+= -lio -+.endif - - HEADERS= chm.h - SRCS= chm.c diff -ruN /usr/ports/sysutils/consolehm/pkg-descr ./consolehm/pkg-descr --- /usr/ports/sysutils/consolehm/pkg-descr Wed Aug 2 00:51:46 2000 +++ ./consolehm/pkg-descr Fri Dec 22 22:46:34 2000 @@ -2,5 +2,5 @@ gather information from hardware sensors to provide motherboard temperature, fan speeds and voltage readings on the console. - -mike -mmuir@es.co.nz + -mike +mmuir@cwnet.com >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Dec 22 23:49:21 2000 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 22 23:49:19 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from rooster.cisco.com (rooster.cisco.com [161.44.20.251]) by hub.freebsd.org (Postfix) with ESMTP id 1946337B400; Fri, 22 Dec 2000 23:49:19 -0800 (PST) Received: from cisco.com (jclarke-isdn4.cisco.com [10.83.116.229]) by rooster.cisco.com (8.8.8+Sun/8.8.8) with ESMTP id CAA24892; Sat, 23 Dec 2000 02:49:17 -0500 (EST) Sender: marcus@cisco.com Message-ID: <3A44590E.81AD01CB@cisco.com> Date: Sat, 23 Dec 2000 02:49:34 -0500 From: "Joe \\" Marcus\ " Clarke" Organization: cisco Systems, Inc. X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: stb@freebsd.org Cc: ports@freebsd.org Subject: FreeBSD Port: netatalk-asun-1.4b2+asun2.1.3 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Netatalk has been moved to Sourceforge, and version 1.5 is getting rady to be released. The new webpage is http://netatalk.sourceforge.net. I tried to build 1.5pre3, and ran into some problems building the UAM. Honestly, I haven't put forth that much effort so far. The new version adds enahncements and bug fixes to 1.4b2+asun2.1.4. If you have the time to look at it, it might be worth upgrading to. Joe Clarke -- Joe Clarke, CCIE #5384 | | Customer Support Engineer ||||| ||||| Phone: +1 (919) 392-2867 ..:|||||||||::|||||||||:.. Email: jclarke@cisco.com c i s c o S y s t e m s ---------------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 0:21:49 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 00:21:46 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 3BC1C37B400 for ; Sat, 23 Dec 2000 00:21:43 -0800 (PST) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id KAA03087; Sat, 23 Dec 2000 10:21:30 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.1/8.11.1) id eBN8LRT59853; Sat, 23 Dec 2000 00:21:27 -0800 (PST) (envelope-from reg) Date: Sat, 23 Dec 2000 00:21:27 -0800 From: Jeremy Lea To: Will Andrews Cc: Anarcat , freebsd-ports@FreeBSD.ORG Subject: Re: Porting ecasound suite to FreeBSD Message-ID: <20001223002127.B395@shale.csir.co.za> Mail-Followup-To: Jeremy Lea , Will Andrews , Anarcat , freebsd-ports@FreeBSD.ORG References: <87puilbdwu.wl@localhost.anarcat.yi.org> <20001221224539.J328@argon.firepipe.net> <874rzwidpz.wl@localhost.anarcat.yi.org> <20001223011305.U328@argon.firepipe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001223011305.U328@argon.firepipe.net>; from will@physics.purdue.edu on Sat, Dec 23, 2000 at 01:13:05AM -0500 Sender: reg@shale.csir.co.za Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Sat, Dec 23, 2000 at 01:13:05AM -0500, Will Andrews wrote: > On Fri, Dec 22, 2000 at 12:10:32PM -0500, Anarcat wrote: > > Humm.. I agree. But FreeBSD way is kinda strange. Why doesn't it use > > the '-lpthread' syntax? Autoconf has "problems" detecting libs that > > are not link with -l. Actually, it's more a problem of not > > having the good macro available.. > > I don't really know why it does it that way. You'll have to ask Jason > Evans, the pthread (libc_r) maintainer. I've never really understood > why pthread was put in a library called "c_r" instead of "pthread", > among a few other things. Because on Linux you link with libpthread AND libc, while on FreeBSD you link with libc_r OR libc. Linux's pthreads are also 'kernel threads', meaning that each thread runs as a seperate scheduling entity, while FreeBSD's are user level threads. There are also kthreads on FreeBSD which are kernel threads. At the moment user level programs can't start kthreads IIRC, but at some point in SMPNG, libc_r will be able to make kthreads to match the pthreads... When you link a C program, the compiler implictly assumes that you need to link against libc.so.?, libgcc.a and some crt?.o files (which contain the setup for main() and other things). When you link with the '-pthread' flag, these assumptions are changed to libc_r and libgcc_r. When you link with the '-nostdlib' option you will not get these at all - like for the kernel or the boot loader. The other difference between Linux and FreeBSD is that with Linux you must define _REENTRANT when compiling C/C++ code, to get the correct magic out of the headers. On FreeBSD you should define _THREAD_SAFE. (Although, some of the math headers use _REENTRANT, and I never figured out why that was...). Passsing the '-pthread' flag to gcc/g++ while it is compiling does not result in _THREAD_SAFE being defined for you (and is effectively a no-op). > > I know it's there. The problem occurs upon link. > > It would be nice to see the exact error. If you link with -pthread and -lc, or -lc_r and -lc, or one of the libraries you are using was ever explictly linked with -lc, then you will get a funny looking block of about 7 lines of non fatal warnings from the linker. None of these warnings are anything to do with pthreads... > > Well-well-well.. It seems you're right! I have no idea how their > > libtool stuff works, in fact, I know *nothing* about libtool. One > > thing I know though... libtool is installed on my system > > (/usr/local/bin/libtool) and the makefiles are usings the package's > > libtool! And this one adds annoying -lc and -lc_r libs! > > > > Fixed. > > Yeah, libtool is pretty stupid when it comes to FreeBSD. Thankfully, > this problem is not usually caused by libtool. Sometimes it is, > usually not. Libtool began life as a simple tool which knew the right magic to linked shared libraries on various platforms, with the same set of commands. Along the line it grew 10,000 lines of shell scripting which tries to second guess the dynamic linker, and you still have to do most of the work yourself. Libtool is evil. The libtool in the port's collection is a special animal (like an ox is a special version of a bull ;-). It installs /usr/local/bin/libtool, but the only time this is used is to check it's version number in bsd.port.mk, to see if the installed port is the latest version... Port's always use their own libtool, which is custom built during configure, from ltmain.sh, and ltconfig. When USE_LIBTOOL is defined in a port's Makefile, sed is run on the configure script, causing it to use the ltmain.sh and ltconfig installed in /usr/local/share/libtool, rather than it's versions. As a result the libtool it builds (which ends up in ${WRKSRC}, has a bunch of hacks. Most of these prevent libtool from trying to second guess our linker, some fix incorrect ideas on the part of the libtool maintainers about how FreeBSD works, and the grossest prevents libtool from polluting the world with .la files, which are supposed to contain information for linking, but they've never worked... Regards, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 1:40:19 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 01:40:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E19237B402 for ; Sat, 23 Dec 2000 01:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBN9e1L42330; Sat, 23 Dec 2000 01:40:01 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 23 Dec 2000 01:40:01 -0800 (PST) Resent-Message-Id: <200012230940.eBN9e1L42330@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, goranrunfeldt@home.se Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 729FD37B400 for ; Sat, 23 Dec 2000 01:32:59 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBN9WxD41828; Sat, 23 Dec 2000 01:32:59 -0800 (PST) (envelope-from nobody) Message-Id: <200012230932.eBN9WxD41828@freefall.freebsd.org> Date: Sat, 23 Dec 2000 01:32:59 -0800 (PST) From: goranrunfeldt@home.se Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23791: New port: xtux, A Humorous Arcade game for X Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23791 >Category: ports >Synopsis: New port: xtux, A Humorous Arcade game for X >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 23 01:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Göran Runfeldt >Release: >Organization: >Environment: >Description: This is a port of the game xtux for freebsd. You play an opensource mascot, like a Daemon or Tux, and the goal is to save the world from Mr Bill. http://xtux.sourceforge.net >How-To-Repeat: >Fix: begin 644 xtux.shar M(R!4:&ES(&ES(&$@2!Y;W4@86YD"B,@:&%V92!D969A=6QT('!E M'1U M>`HC"7AT=7@O9FEL97,*(PEX='5X+V9I;&5S+W!A=&-H+6%B"B,)>'1U>"]F M:6QE'1U>"]F:6QE'1U>"]P:V'1U>"]D:7-T:6YF;PHC"7AT=7@O36%K969I;&4*(PIE8VAO(&,@+2!X='5X M"FUK9&ER("UP('AT=7@@/B`O9&5V+VYU;&P@,CXF,0IE8VAO(&,@+2!X='5X M+V9I;&5S"FUK9&ER("UP('AT=7@O9FEL97,@/B`O9&5V+VYU;&P@,CXF,0IE M8VAO('@@+2!X='5X+V9I;&5S+W!A=&-H+6%B"G-E9"`G6"\O)R`^>'1U M>"]F:6QE7,O"`M('AT=7@O9FEL97,O<&%T8V@M86$* M'1U>"]F:6QE6]U('=A;G0@=&\@ M<'5T('1H92!D871A(&1I2X*6"U$051!1$E2(#T@8'!W9&`O9&%T M80I8*R-$051!1$E2(#T@8'!W9&`O9&%T80I8("-%9R!Y;W4@;6EG:'0@=V%N M="!T;R!P=70@=&AE(&1A=&$@9FEL97,@:&5R92XN+BXN+@I8("-$051!1$E2 M(#T@+W5S'1U M>"]F:6QE6"\O)R`^>'1U>"]F:6QE'1U>"]F:6QE"]F:6QE'1U>"]F:6QE"!C;&EE;G0@8FEN87)Y+@I8 M($))3D%262`]("0H5$]03$5614Q?4$%42"DO='5X7W-E6"\O)R`^>'1U>"]P:V'1U>"YS;W5R8V5F;W)G92YN970*14Y$+6]F+7AT=7@O M<&MG+61E"`M('AT=7@O<&MG+6-O;6UE;G0*"]P:V M6"\O)R`^>'1U>"]P:V"]I;6%G97,*6'-H87)E+V1O8R]X='5X M+VUA<&9O'1U M>"]I;6%G97,O96YT:71I97,O87)R;W'!M"EAS:&%R92]X='5X+VEM86=E M'1U>"]I;6%G97,O96YT:71I M97,O8F]R9U]D:64N>'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O96YT:71I97,O8G5G+GAP;0I8'1U>"]I;6%G97,O96YT:71I97,O8G5N;GDN>'!M"EAS:&%R92]X='5X+VEM M86=E5]G'1U>"]I;6%G97,O96YT:71I M97,O8V1?9&EE+GAP;0I8'1U>"]I;6%G97,O96YT:71I97,O8VQI M<'!Y+GAP;0I8'1U>"]I;6%G97,O96YT:71I97,O8VQI<'!Y7V1I M92YX<&T*6'-H87)E+WAT=7@O:6UA9V5S+V5N=&ET:65S+V-O8F]L+GAP;0I8 M'1U>"]I;6%G97,O96YT:71I97,O8W)A=&4N>'!M"EAS:&%R92]X M='5X+VEM86=E'1U>"]I;6%G M97,O96YT:71I97,O9'5K95]D:64N>'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O96YT:71I97,O9VYO;65?9&EE M+GAP;0I8'1U>"]I;6%G97,O96YT:71I97,O9VYU+GAP;0I8'1U>"]I;6%G97,O96YT:71I97,O9VYU7V1I92YX<&T*6'-H87)E+WAT M=7@O:6UA9V5S+V5N=&ET:65S+V=O=VXN>'!M"EAS:&%R92]X='5X+VEM86=E M'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O96YT:71I97,O;&EN M=7,N>'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O96YT:71I97,O'1U>"]I M;6%G97,O96YT:71I97,O'1U>"]I M;6%G97,O96YT:71I97,O'1U>"]I;6%G M97,O96YT:71I97,O'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E"YX<&T*6'-H87)E+WAT=7@O M:6UA9V5S+V5N=&ET:65S+W1U>%]D:64N>'!M"EAS:&%R92]X='5X+VEM86=E M'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R M92]X='5X+VEM86=E'1U>"]I M;6%G97,O:71E;7,O8FET'1U>"]I;6%G97,O:71E M;7,O8FQI;F1?9VQA"]I;6%G97,O M:71E;7,O96YE'1U>"]I;6%G97,O:71E;7,O97AP M;&]S:79E'1U>"]I;6%G97,O:71E;7,O;F%T86QI95]P;W)T;6%N M+GAP;0I8'1U>"]I;6%G97,O:71E;7,O;F]D;WIE+GAP;0I8'1U>"]I;6%G97,O:71E;7,O;G5K95]C'1U>"]I M;6%G97,O:71E;7,O'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=EF]O:V$N>'!M"EAS:&%R92]X='5X+VEM86=EF]O:V%? M:6-O;BYX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W=E87!O;G,O8G5C:W-H;W1? M:6-O;BYX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W=E87!O;G,O8G5L;&5T7VEC M;VXN>'!M"EAS:&%R92]X='5X+VEM86=E'!M M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=V5A<&]N'!M"EAS:&%R92]X='5X+VEM86=E M'1U>"]I;6%G97,O M=V5A<&]N'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=V5A<&]N'1U>"]I M;6%G97,O=&EL97,O861M:7-S:6]N7V=A=&4N>'!M"EAS:&%R92]X='5X+VEM M86=E'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O87-H+GAP;0I8'1U>"]I;6%G97,O=&EL97,O8F%D7W1I;&4N>'!M"EAS:&%R92]X='5X M+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O8F%R7V4N>'!M M"EAS:&%R92]X='5X+VEM86=E5]E+GAP;0I8'1U>"]I;6%G97,O=&EL97,O8F%R7V=R97E?:"YX<&T*6'-H87)E+WAT M=7@O:6UA9V5S+W1I;&5S+V)A'!M"EAS:&%R92]X='5X+VEM M86=E'!M"EAS:&%R92]X='5X+VEM M86=E'!M"EAS:&%R92]X='5X+VEM M86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O8F%S:6Y?=U]B+GAP;0I8'1U>"]I;6%G97,O=&EL97,O8F%T:"YX<&T*6'-H87)E+WAT=7@O:6UA9V5S M+W1I;&5S+V)A=&@Q+GAP;0I8'1U>"]I;6%G97,O=&EL97,O8F%T M:#%?8BYX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+V)A=&A?8BYX<&T* M6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+V)A=&A?=&EL92YX<&T*6'-H87)E M+WAT=7@O:6UA9V5S+W1I;&5S+V)E9"YX<&T*6'-H87)E+WAT=7@O:6UA9V5S M+W1I;&5S+V)E9#$N>'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I M;6%G97,O=&EL97,O8F5D7W,N>'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O8FQO8VM?;BYX<&T*6'-H87)E+WAT=7@O M:6UA9V5S+W1I;&5S+V)L;V-K7VYE+GAP;0I8'1U>"]I;6%G97,O M=&EL97,O8FQO8VM?;G'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O8FQO8VM?'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X M+VEM86=E'1U>"]I;6%G97,O=&EL97,O8F]I M;&5R7W'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O8F]O=&A?'1U>"]I M;6%G97,O=&EL97,O8F]R9&5R7V5?8F%R+GAP;0I8'1U>"]I;6%G M97,O=&EL97,O8F]R9&5R7VXN>'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O8F]R9&5R7VYN M=RYX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+V)O'1U>"]I;6%G97,O=&EL97,O8F]R9&5R7VYO'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM M86=E'1U>"]I;6%G97,O M=&EL97,O8F]R9&5R7W-W+GAP;0I8'1U>"]I;6%G97,O=&EL97,O M8F]R9&5R7W'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E5]N M+GAP;0I8'1U>"]I;6%G97,O=&EL97,O8F]X7V=R97E?=BYX<&T* M6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+V9A;BYX<&T*6'-H87)E+WAT=7@O M:6UA9V5S+W1I;&5S+V)R:6-K+GAP;0I8'1U>"]I;6%G97,O=&EL M97,O8G5T=&]N7W!O=V5R+GAP;0I8'1U>"]I;6%G97,O=&EL97,O M8V%B:6YE=%]D;W5B;&4N>'!M"EAS:&%R92]X='5X+VEM86=E65L;&]W+GAP;0I8'1U>"]I;6%G97,O=&EL97,O M8V%B:6YE=%]Y96QL;W'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E2YX<&T* M6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+V-A'!M"EAS:&%R M92]X='5X+VEM86=E'1U M>"]I;6%G97,O=&EL97,O8V%R<&5T7W)E9%]E+GAP;0I8'1U>"]I M;6%G97,O=&EL97,O8V1R;VTN>'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O8VAA:7)?9F]L9'5P7VXN>'!M"EAS M:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O8VAA:7)?=VAE96Q?8BYX<&T*6'-H87)E+WAT M=7@O:6UA9V5S+W1I;&5S+V-H86ER7W=I'!M"EAS:&%R92]X='5X+VEM M86=E'1U>"]I;6%G97,O=&EL M97,O8VER8VQE7WEE;&QO=RYX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S M+V-O;7!U=&5R7W'!M"EAS:&%R92]X='5X+VEM86=E'!M M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R M92]X='5X+VEM86=E'1U>"]I M;6%G97,O=&EL97,O8V]U8VA?=U]B+GAP;0I8'1U>"]I;6%G97,O M=&EL97,O8W)A>GE?:FEM+GAP;0I8'1U>"]I;6%G97,O=&EL97,O M8W5B:6-L95]E+GAP;0I8'1U>"]I;6%G97,O=&EL97,O8W5B:6-L M95]H+GAP;0I8'1U>"]I;6%G97,O=&EL97,O8W5B:6-L95]N92YX M<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+V-U8FEC;&5?;G'!M"EAS M:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O8W5B:6-L95]W+GAP;0I8'1U>"]I M;6%G97,O=&EL97,O9&5S:RYX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S M+V-U<&)O87)D7V5L96-T'1U>"]I;6%G97,O=&EL M97,O8W5P8F]A'!M"EAS:&%R92]X='5X+VEM M86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X M='5X+VEM86=E'!M"EAS:&%R92]X M='5X+VEM86=E'1U>"]I M;6%G97,O=&EL97,O9&]O'1U>"]I;6%G97,O M=&EL97,O9')A:6XN>'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O9')A=V5R'1U>"]I;6%G97,O=&EL97,O96QE=')I8U]P86YE;"YX<&T* M6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+V9A;C$N>'!M"EAS:&%R92]X='5X M+VEM86=E'!M"EAS:&%R92]X M='5X+VEM86=E'!M"EAS:&%R M92]X='5X+VEM86=E'!M"EAS:&%R92]X M='5X+VEM86=E'!M"EAS:&%R92]X='5X M+VEM86=E'1U>"]I;6%G97,O=&EL97,O9FQO<'!Y+GAP;0I8'1U M>"]I;6%G97,O=&EL97,O9F]L9&5R+GAP;0I8'1U>"]I;6%G97,O M=&EL97,O9G)I9&=E+GAP;0I8'1U>"]I;6%G97,O=&EL97,O9G)I M9&=E,2YX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+V9R:61G93%?8BYX M<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+V9U='5R95]K;FEG:'1?,"YX M<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+V9U='5R95]K;FEG:'1?,2YX M<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+V9U='5R95]K;FEG:'1?,BYX M<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+V9U='5R95]K;FEG:'1?,RYX M<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+V=B7V)O='0N>'!M"EAS:&%R M92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM M86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O9W)A'!M"EAS M:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X M+VEM86=E'1U>"]I;6%G97,O=&EL97,O M9W)E96YB87-E+GAP;0I8'1U>"]I;6%G97,O=&EL97,O9W)E>5]L M:6=H="YX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+V=R97E?;&EG:'1? M=RYX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+V=R;E]T>'0N>'!M"EAS M:&%R92]X='5X+VEM86=E'!M"EAS:&%R M92]X='5X+VEM86=E'!M"EAS:&%R92]X M='5X+VEM86=E'!M"EAS:&%R92]X='5X M+VEM86=E'!M"EAS:&%R92]X='5X+VEM M86=E'!M"EAS:&%R92]X='5X+VEM86=E M5]T>'0N>'!M"EAS:&%R92]X='5X+VEM86=E5]T>'1?;&XN>'!M"EAS:&%R92]X='5X+VEM86=E'!M M"EAS:&%R92]X='5X+VEM86=E'1U M>"]I;6%G97,O=&EL97,O:&EL:6=H=%]N+GAP;0I8'1U>"]I;6%G M97,O=&EL97,O:&EL:6=H=%]S+GAP;0I8'1U>"]I;6%G97,O=&EL M97,O:6-E+GAP;0I8'1U>"]I;6%G97,O=&EL97,O:F%C:S`N>'!M M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O M=&EL97,O:V)E;F-H+GAP;0I8'1U>"]I;6%G97,O=&EL97,O:V5N M9"YX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+VMI=&-H96Y?8F5N8VA? M:"YX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+VMI=&-H96Y?8F5N8VA? M;BYX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+VMI=&-H96Y?8F5N8VA? M'1U>"]I;6%G97,O=&EL97,O;&EG:'1G'1U>"]I;6%G97,O=&EL97,O;&EN95]D;W1T961?:"YX<&T*6'-H87)E M+WAT=7@O:6UA9V5S+W1I;&5S+VQI;F5?9&]T=&5D7W8N>'!M"EAS:&%R92]X M='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O;6%R8FQE+GAP;0I8 M'1U>"]I;6%G97,O=&EL97,O;6%R8FQE,2YX<&T*6'-H87)E+WAT M=7@O:6UA9V5S+W1I;&5S+VUA="YX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I M;&5S+VUA=%]E+GAP;0I8'1U>"]I;6%G97,O=&EL97,O;6%T7VXN M>'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R M92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM M86=E'1U>"]I;6%G97,O=&EL97,O;65N=5]E+GAP;0I8'1U>"]I;6%G M97,O=&EL97,O;65N=5]E7S`N>'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O;65N=5]H:6=H M7V5?,"YX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+VUE;G5?:&EG:%]E M7S$N>'!M"EAS:&%R92]X='5X+VEM86=E'!M M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O;65N=5]N92YX<&T*6'-H87)E+WAT M=7@O:6UA9V5S+W1I;&5S+VUE;G5?;G'!M"EAS:&%R92]X='5X+VEM86=E M'1U>"]I;6%G97,O=&EL97,O M;65N=5]S=RYX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+VUE;G5?=RYX M<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+VUE;G5?=U\P+GAP;0I8'1U>"]I;6%G97,O=&EL97,O;65N=5]W7S$N>'!M"EAS:&%R92]X='5X M+VEM86=E'!M"EAS:&%R92]X='5X+VEM M86=E'!M"EAS:&%R92]X='5X+VEM86=E'1U M>"]I;6%G97,O=&EL97,O;7-N+GAP;0I8'1U>"]I;6%G97,O=&EL M97,O;75G'1U>"]I;6%G97,O=&EL97,O;F5W'1U>"]I;6%G97,O=&EL97,O<&%D+GAP;0I8'1U>"]I M;6%G97,O=&EL97,O<&%L;2YX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S M+W!A;F5L+GAP;0I8'1U>"]I;6%G97,O=&EL97,O<&%N96Q?96QE M8W1R:6,N>'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM M86=E'!M"EAS M:&%R92]X='5X+VEM86=E'1U>"]I M;6%G97,O=&EL97,O<&QA;FLN>'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O<&]S=&5R7V)S9"YX<&T*6'-H87)E+WAT=7@O M:6UA9V5S+W1I;&5S+W!O'!M"EAS:&%R92]X='5X+VEM86=E M'1U>"]I;6%G97,O=&EL M97,O<&]S=&5R7W=O'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O<')E=FEE M=U]C=7)R96YT+GAP;0I8'1U>"]I;6%G97,O=&EL97,O<')E=FEE M=U]O=&AE'!M"EAS:&%R92]X='5X+VEM M86=E'1U>"]I;6%G97,O=&EL97,O M'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O'!M M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O'1U>"]I;6%G M97,O=&EL97,O'1U>"]I;6%G97,O=&EL97,O M'1U>"]I;6%G97,O=&EL97,O'!M"EAS:&%R92]X='5X+VEM86=E'!M M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O'!M"EAS:&%R M92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O'1U>"]I;6%G M97,O=&EL97,O'1U>"]I;6%G97,O=&EL97,O'!M"EAS:&%R92]X M='5X+VEM86=E'1U>"]I;6%G M97,O=&EL97,O'1U>"]I;6%G97,O=&EL97,O M'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O'!M M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O'!M"EAS:&%R92]X='5X+VEM M86=E'1U>"]I;6%G97,O=&EL97,O M'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O'!M"EAS:&%R92]X M='5X+VEM86=E'1U>"]I;6%G97,O=&EL M97,O'!M"EAS:&%R92]X='5X+VEM86=E M'!M"EAS:&%R92]X='5X M+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O=&%B;&5?9W)E>5]E+GAP;0I8 M'1U>"]I;6%G97,O=&EL97,O=&%B;&5?9W)E>5]H+GAP;0I8'1U>"]I;6%G97,O=&EL97,O=&%B;&5?9W)E>5]N+GAP;0I8'1U>"]I;6%G97,O=&EL97,O=&%B;&5?9W)E>5]S+GAP;0I8'1U M>"]I;6%G97,O=&EL97,O=&%B;&5?9W)E>5]V+GAP;0I8'1U>"]I M;6%G97,O=&EL97,O=&%B;&5?9W)E>5]W+GAP;0I8'1U>"]I;6%G M97,O=&EL97,O=&%B;&5?;6%R8FQE7V4N>'!M"EAS:&%R92]X='5X+VEM86=E M'1U>"]I;6%G97,O M=&EL97,O=&5L97!O'1?,"YX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+W1E>'1?,2YX M<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+W1E>'1?,BYX<&T*6'-H87)E M+WAT=7@O:6UA9V5S+W1I;&5S+W1E>'1?,RYX<&T*6'-H87)E+WAT=7@O:6UA M9V5S+W1I;&5S+W1E>'1?-"YX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S M+W1E>'1?-2YX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+W1E>'1?-BYX M<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+W1I;64N>'!M"EAS:&%R92]X M='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E M'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I M;6%G97,O=&EL97,O=&]W96Q?8BYX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I M;&5S+W1O=VPN>'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O='9? M8BYX<&T*6'-H87)E+WAT=7@O:6UA9V5S+W1I;&5S+W=A;&Q?8FQA8VM?=&]P M;&5V96PN>'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O=V%L;%]W:&ET95]N97,N>'!M"EAS M:&%R92]X='5X+VEM86=E'!M"EAS M:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O=V%L;%]W:&ET95]N=W,N>'!M"EAS:&%R M92]X='5X+VEM86=E'!M"EAS:&%R92]X M='5X+VEM86=E'1U M>"]I;6%G97,O=&EL97,O=V%L;%]W:&ET95]S=RYX<&T*6'-H87)E+WAT=7@O M:6UA9V5S+W1I;&5S+W=A;&Q?=VAI=&5?=&]P;&5V96PN>'!M"EAS:&%R92]X M='5X+VEM86=E'!M"EAS:&%R92]X='5X M+VEM86=E'!M"EAS:&%R92]X='5X+VEM M86=E'1U>"]I;6%G M97,O=&EL97,O=V%T97(N>'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O=V%T97)?'!M"EAS M:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM M86=E'1U>"]I;6%G97,O=&EL97,O M>#$Q86UP+3$N>'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,O>#$Q86UP+30N>'!M"EAS:&%R92]X M='5X+VEM86=E'1U>"]I;6%G97,O=&EL M97,O>#$Q86UP+3'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'!M"EAS:&%R92]X M='5X+VEM86=E'!M"EAS:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O:&5A;'1H8F%R+GAP;0I8'1U>"]I;6%G97,O:6-O;BYX<&T*6'-H87)E+WAT=7@O:6UA9V5S+VEM M86=E7VYO=%]F;W5N9"YX<&T*6'-H87)E+WAT=7@O:6UA9V5S+V]L9"UH86YD M+GAP;0I8'1U>"]I;6%G97,O<&%P97(N>'!M"EAS:&%R92]X='5X M+VEM86=E&)A="YX M<&T*6'-H87)E+WAT=7@O;6%P'1U>"]M M87!S+V%R8W1I8RYM87`*6'-H87)E+WAT=7@O;6%P'1U>"]M87!S+V5N9"YM87`*6'-H87)E+WAT=7@O;6%P'1U>"]M87!S+VAO;64N;6%P"EAS:&%R92]X='5X M+VUA<',O;7E?=V%Y7VAO;64N;6%P"EAS:&%R92]X='5X+VUA<',O'1U>"]M87!S+W1R87-H961? M:&]M92YM87`*6'-H87)E+WAT=7@O;6%P'1U>"]M87!S+W=A=&5R'1U>"]D97-K=&]P+G1A8FQE"EAS M:&%R92]X='5X+V=E;F5R:6,N=&%B;&4*6'-H87)E+WAT=7@O'1U>"]B:6]S"EAS:&%R92]X='5X+V5N=&ET:65S"EAS:&%R92]X='5X+W=E M87!O;G,*6$!D:7)R;2!S:&%R92]D;V,O>'1U>`I80&1I'1U>"]I;6%G97,O M:71E;7,*6$!D:7)R;2!S:&%R92]X='5X+VEM86=E'1U>"]I;6%G97,O=&EL97,*6$!D:7)R;2!S:&%R92]X='5X M+VEM86=E"`M('AT=7@O9&ES M=&EN9F\*'1U>"]D:7-T:6YF;R<*6$U$-2`H>'1U>"UABD@/2!D.#1C,69B,S`T.65E-V9C-6,U.#4Q96%D938X-S9C90I%3D0M M;V8M>'1U>"]D:7-T:6YF;PIE8VAO('@@+2!X='5X+TUA:V5F:6QE"G-E9"`G M6"\O)R`^>'1U>"]-86ME9FEL92`\/"`G14Y$+6]F+7AT=7@O36%K969I M;&4G"E@C($YE=R!P;W)T"UAU!2149)6'TO'1U>%Q<7"(*6%=22U-20ST)"21[5U)+1$E2?2]X='5X"E@*6&1O+6ENTE.4U1!3$Q?4%)/1U)!37T@)'M74DM34D-]+W1U>%]S M97)V("1[4%)%1DE8?2]B:6X*6`E`'1U>"]I;6%G97,O96YT:71I97,*6`E`)'M-2T1)4GT@)'M0 M4D5&25A]+W-H87)E+WAT=7@O:6UA9V5S+VET96US"E@)0"1[34M$25)]("1[ M4%)%1DE8?2]S:&%R92]X='5X+VEM86=E'1U>"]M87!S"E@*6`DD>TE.4U1!3$Q?1$%4 M07T@)'M74DM34D-]+V1A=&$O*BYT86)L92`D>U!2149)6'TO'1U M>`I8+F9OTE.4U1!3$Q?1$%407T@)'M74DM34D-]+V1A=&$O)'MF:6QE?2`D M>U!2149)6'TO'1U>`I8+F5N9&9O<@I8+F9OV1IU!2149)6'TO
This is the New DishNetwork 3922 digital satellite system. It has interact= ive T.V capabilities , on screen program guide, 2 dual LNB's, stereo
CD sound and infrared remote. Normal cost for all these items is over $500= but we're giving it away for FREE!

All you have to do is call us to arrange delivery and order the channels y= ou
want to receive. Satellite television offers over 500 channels of all
digital broadcast video quality, movies, sports, specials, network , cable= s
channels and more all with CD audio stereo sound. You may even get local channels now. Don't miss this offer, it's only available while supplies la= st.

For your Free Satellite System call 888-607-9617 24 hours a day.


Authorized DishNetwork dealer









FREE SATELLITE= T.V. SYSTEM


Watch over 500 channels of Digital Broadcast qua= lity television on your own FREE satellite television system. These new Di= gital satellite

systems use the new 20 inch satellite dish antenna.<= BR>

To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 2:12:30 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 02:12:28 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from indigo.external.org (c1118643-b.chmpgn1.il.home.com [24.181.130.163]) by hub.freebsd.org (Postfix) with ESMTP id 91C9837B69B for ; Sat, 23 Dec 2000 02:12:26 -0800 (PST) Received: (from jeremy@localhost) by indigo.external.org (8.11.1/8.11.1) id eBNABc002119; Sat, 23 Dec 2000 04:11:38 -0600 (CST) (envelope-from jeremy) Date: Sat, 23 Dec 2000 04:11:37 -0600 From: Jeremy Shaffner To: goranrunfeldt@home.se, ports@freebsd.org Subject: Re: ports/23791: New port: xtux, A Humorous Arcade game for X Message-ID: <20001223041136.B98598@external.org> References: <200012230932.eBN9WxD41828@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200012230932.eBN9WxD41828@freefall.freebsd.org>; from goranrunfeldt@home.se on Sat, Dec 23, 2000 at 01:32:59AM -0800 Sender: jeremy@indigo.external.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org OMG, this is so much fun. -- --------------------------------------------------------------------- Jeremy Shaffner | This space for rent. jeremy@external.org | $ grep happiness life http://www.external.org/~jeremy/pgp.key | FreeBSD: The Power to Serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 2:30:15 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 02:30:10 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 85B6337B402 for ; Sat, 23 Dec 2000 02:30:10 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNAUAW47734; Sat, 23 Dec 2000 02:30:10 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 23 Dec 2000 02:30:10 -0800 (PST) Resent-Message-Id: <200012231030.eBNAUAW47734@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, Jeremy Shaffner Received: from indigo.external.org (c1118643-b.chmpgn1.il.home.com [24.181.130.163]) by hub.freebsd.org (Postfix) with ESMTP id DEB9C37B400 for ; Sat, 23 Dec 2000 02:21:53 -0800 (PST) Received: (from jeremy@localhost) by indigo.external.org (8.11.1/8.11.1) id eBNALBR02279; Sat, 23 Dec 2000 04:21:11 -0600 (CST) (envelope-from jeremy) Message-Id: <200012231021.eBNALBR02279@indigo.external.org> Date: Sat, 23 Dec 2000 04:21:11 -0600 (CST) From: Jeremy Shaffner Sender: jeremy@indigo.external.org Reply-To: Jeremy Shaffner To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23792: New Port: devel/dmalloc Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23792 >Category: ports >Synopsis: New Port: devel/dmalloc >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 23 02:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jeremy Shaffner >Release: FreeBSD 4.2-20001106-BETA i386 >Organization: >Environment: >Description: Dmalloc is a malloc library designed as a drop in replacement for the default malloc(3) but adds debugging facilities. This is required for another port which is forthcoming. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # dmalloc # dmalloc/Makefile # dmalloc/pkg-descr # dmalloc/pkg-comment # dmalloc/pkg-plist # dmalloc/distinfo # echo c - dmalloc mkdir -p dmalloc > /dev/null 2>&1 echo x - dmalloc/Makefile sed 's/^X//' >dmalloc/Makefile << 'END-of-dmalloc/Makefile' X# New ports collection makefile for: dmalloc X# Date created: 7 December 2000 X# Whom: Jeremy Shaffner X# X# $FreeBSD$ X XPORTNAME= dmalloc XPORTVERSION= 4.8.1 XCATEGORIES= devel XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= dmalloc XEXTRACT_SUFX= .tgz X X# Original from: Gray Watson http://256.com/gray/email.html XMAINTAINER= jeremy@external.org X XINSTALLS_SHLIB= YES XGNU_CONFIGURE= YES XCONFIGURE_ARGS+=--enable-threads --enable-shlib X X# NOTE: we make the test program first because otherwise it screws up X# and tried to use the .so instead of the .a for some stupid reason XALL_TARGET= dmalloc_t all light X Xpre-patch: X @${PERL} -pi -e 's|-lpthread|-pthread|g' ${WRKSRC}/configure X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/dmalloc ${PREFIX}/bin X ${INSTALL_DATA} ${WRKSRC}/dmalloc.h ${PREFIX}/include X ${INSTALL_DATA} ${WRKSRC}/libdmallocthcxx.so ${PREFIX}/lib/libdmallocthcxx.so.1 X @${LN} -sf ${PREFIX}/lib/libdmallocthcxx.so.1 ${PREFIX}/lib/libdmallocthcxx.so X ${INSTALL_DATA} ${WRKSRC}/libdmallocthcxx.a ${PREFIX}/lib X ${INSTALL_DATA} ${WRKSRC}/libdmallocth.so ${PREFIX}/lib/libdmallocth.so.1 X @${LN} -sf ${PREFIX}/lib/libdmallocth.so.1 ${PREFIX}/lib/libdmallocth.so X ${INSTALL_DATA} ${WRKSRC}/libdmallocth.a ${PREFIX}/lib X ${INSTALL_DATA} ${WRKSRC}/libdmalloc.so ${PREFIX}/lib/libdmalloc.so.1 X @${LN} -sf ${PREFIX}/lib/libdmalloc.so.1 ${PREFIX}/lib/libdmalloc.so X ${INSTALL_DATA} ${WRKSRC}/libdmalloc.a ${PREFIX}/lib X ${INSTALL_DATA} ${WRKSRC}/libdmalloclp.a ${PREFIX}/lib X.if !defined(NOPORTDOCS) X @${MKDIR} ${PREFIX}/share/doc/dmalloc X ${INSTALL_DATA} ${WRKSRC}/dmalloc.html ${PREFIX}/share/doc/dmalloc X.endif X Xpost-install: X ${INSTALL_DATA} ${WRKSRC}/dmalloc.info ${PREFIX}/info X @install-info ${PREFIX}/info/dmalloc.info ${PREFIX}/info/dir X X.include END-of-dmalloc/Makefile echo x - dmalloc/pkg-descr sed 's/^X//' >dmalloc/pkg-descr << 'END-of-dmalloc/pkg-descr' XThe debug memory allocation or dmalloc library has been designed as a Xportable drop in replacement for the system's memory management Xroutines while providing powerful debugging facilities configurable at Xruntime. These facilities include such things as memory-leak Xtracking, fence-post write detection, file/line number reporting, and Xgeneral logging of statistics. Online documentation is available at: X XWWW: http://dmalloc.com/ END-of-dmalloc/pkg-descr echo x - dmalloc/pkg-comment sed 's/^X//' >dmalloc/pkg-comment << 'END-of-dmalloc/pkg-comment' XPortable debug memory allocation library END-of-dmalloc/pkg-comment echo x - dmalloc/pkg-plist sed 's/^X//' >dmalloc/pkg-plist << 'END-of-dmalloc/pkg-plist' Xbin/dmalloc Xinclude/dmalloc.h X@unexec install-info --delete %D/info/dmalloc.info %D/info/dir Xinfo/dmalloc.info X@exec install-info %D/info/dmalloc.info %D/info/dir Xlib/libdmalloc.a Xlib/libdmalloc.so Xlib/libdmalloc.so.1 Xlib/libdmalloclp.a Xlib/libdmallocth.a Xlib/libdmallocth.so Xlib/libdmallocth.so.1 Xlib/libdmallocthcxx.a Xlib/libdmallocthcxx.so Xlib/libdmallocthcxx.so.1 Xshare/doc/dmalloc/dmalloc.html X@dirrm share/doc/dmalloc END-of-dmalloc/pkg-plist echo x - dmalloc/distinfo sed 's/^X//' >dmalloc/distinfo << 'END-of-dmalloc/distinfo' XMD5 (dmalloc-4.8.1.tgz) = 730a802f991f4ca293a02bccaa3cf031 END-of-dmalloc/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 2:34:34 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 02:34:33 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id AE55237B400 for ; Sat, 23 Dec 2000 02:34:32 -0800 (PST) Received: from [128.130.111.2] (deneb [128.130.111.2]) by vexpert.dbai.tuwien.ac.at (8.11.1/8.11.1) with ESMTP id eBNAYRp19616; Sat, 23 Dec 2000 11:34:28 +0100 (MET) Date: Sat, 23 Dec 2000 11:34:27 +0100 (CET) From: Gerald Pfeifer To: Will Andrews Cc: Subject: Re: USE_GMAKE=yes only effects build, not install? In-Reply-To: <20001223010333.S328@argon.firepipe.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, 23 Dec 2000, Will Andrews wrote: > $(MAKE) is supposed to be "gmake" when USE_GMAKE=yes. If it's mangled > somehow that is either wine's build system's fault or gmake's. Somehow > I doubt it is the latter. Well, then the ports machinery is broken: I just added x: echo "--${MAKE}--" to ports/emulators/wine/Makefile and issued `make x`. The output was "--make--", not "--gmake--"! This is why I had to revert to using ${GMAKE} in the Makefile of the wine port. Gerald -- Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at/~pfeifer/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 2:46:21 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 02:46:19 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.189]) by hub.freebsd.org (Postfix) with SMTP id 25C0037B400 for ; Sat, 23 Dec 2000 02:46:17 -0800 (PST) Received: (qmail 59623 invoked by uid 1000); 23 Dec 2000 10:45:15 -0000 Date: Sat, 23 Dec 2000 12:45:15 +0200 From: Peter Pentchev To: Jeremy Shaffner Cc: ports@freebsd.org Subject: Re: MASTER_SITE_* (Re: How to connect additional distribution files to a port?) Message-ID: <20001223124515.B59497@ringworld.oblivion.bg> Mail-Followup-To: Jeremy Shaffner , ports@freebsd.org References: <20001208151658.D22163@B7173150.DeutschePost.de> <20001208155822.A58038@cichlids.cichlids.com> <20001208160616.G22163@B7173150.DeutschePost.de> <20001208192741.A11933@ringworld.oblivion.bg> <20001222203026.C89514@external.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001222203026.C89514@external.org>; from jeremy@external.org on Fri, Dec 22, 2000 at 08:30:27PM -0600 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Dec 22, 2000 at 08:30:27PM -0600, Jeremy Shaffner wrote: > On Fri, Dec 08, 2000 at 07:27:42PM +0200, Peter Pentchev wrote: > > On Fri, Dec 08, 2000 at 04:06:16PM +0100, J Wunsch wrote: > > > As Alexander Langer wrote: > > > > > > > What's wrong with just adding it to the DISTFILES variable and maybe > > > > setting EXTRACT_ONLY to the files that need to be extracted? > > > > > > It wouldn't have worked in the avr-libc case, where the doc file was > > > to be fetched from a totally different site. > > > > Why wouldn't it have worked? It is perfectly legal to specify more than > > one location in MASTER_SITES, and even more than one MASTER_SITE_SUBDIR. > > The ports collection Makefiles shall do the necessary magic to try to fetch > > all files from all dirs of all sites until success :) > > I realize this comes late, but I was thinking recently that it would be nice > to be able to list multiple MASTER_SITE_FOO's. As places like Sourceforge > become more popular, many distfiles are hosted not just at multiple mirrors, > but at multiple mirrors of master sites (ie, MASTER_SITE_PERL_CPAN _and_ > MASTER_SITE_SOURCEFORGE). > > Listing both would only work if the MASTER_SITE_SUBDIR for both sites > happened to be the same string, but some are not. Having (for example) a > SOURCEFORGE_SUBDIR and CPAN_SUBDIR would make it possible to list two > different MASTER_SITE_*'s. Mmm... did you actually read my message? :) You CAN specify more than one MASTER_SITE_SUBDIR, and the port makefiles shall try *all* combinations of site/subdir in turn. This might take some time with many MASTER_SITES, but it *is* guaranteed to stumble on the correct site/subdir combo eventually :) G'luck, Peter -- "yields falsehood, when appended to its quotation." yields falsehood, when appended to its quotation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 3: 2:57 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 03:02:56 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from zion.x.br (spo47-93.gvi.com.br [200.192.47.93]) by hub.freebsd.org (Postfix) with ESMTP id EF61B37B400 for ; Sat, 23 Dec 2000 03:02:54 -0800 (PST) Received: (from galmeida@localhost) by zion.x.br (8.11.1/8.11.1) id eBNB18812605 for freebsd-ports@FreeBSD.org; Sat, 23 Dec 2000 09:01:09 -0200 (BRST) (envelope-from galmeida) Date: Sat, 23 Dec 2000 09:01:07 -0200 From: Felipe Gustavo de Almeida To: freebsd-ports@FreeBSD.org Subject: XFree-4.0.2 and savage driver Message-ID: <20001223090106.A11194@linux.ime.usp.br> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org XFree-4.0.2 now includes a driver for S3 savage chips, but doing a traditinal "make" in the port tree this driver isn't compiled (nor installed) anybody else noticed it ? Or am I missing something?? Doing a dirty trick I got the driver compilled, but I want the driver compilled the right way. thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 3:40: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 03:40:04 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A566F37B402 for ; Sat, 23 Dec 2000 03:40:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNBe4A53990; Sat, 23 Dec 2000 03:40:04 -0800 (PST) (envelope-from gnats) Date: Sat, 23 Dec 2000 03:40:04 -0800 (PST) Message-Id: <200012231140.eBNBe4A53990@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: TERAMOTO Masahiro Subject: Re: ports/23713: can't make ports/japanese/gal Reply-To: TERAMOTO Masahiro Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23713; it has been noted by GNATS. From: TERAMOTO Masahiro To: freebsd-gnats-submit@FreeBSD.org, takashi@ueda.info.waseda.ac.jp Cc: Subject: Re: ports/23713: can't make ports/japanese/gal Date: Sat, 23 Dec 2000 20:31:33 +0900 Perhaps, Master ports "x11-toolkits/gal" is updated, then "patch-ac" is out-of-date. I modify "patch-ac", and "make build" is successfuly done. But I don't check that can deal Japanese. Then library version of "ja-gal-0.4.1" is "3". You have to change Makefile of "japanese/gnome". That shuold change "gal.1" to "gal.3". Good luck. --- gal.orig/widgets/e-font.c.orig Fri Dec 8 08:56:25 2000 +++ gal/widgets/e-font.c Sat Dec 23 20:00:55 2000 @@ -54,8 +54,8 @@ EFont * font; GdkFont *gdkfont; - gdkfont = gdk_font_load (name); - if (!gdkfont) gdkfont = gdk_font_load ("fixed"); + gdkfont = gdk_fontset_load("-misc-fixed-medium-r-normal--14-*-*-*-*-*-*-*"); + if (!gdkfont) gdkfont = gdk_fontset_load("-misc-fixed-medium-r-normal--14-*-*-*-*-*-*-*"); g_return_val_if_fail (gdkfont != NULL, NULL); font = e_font_from_gdk_font (gdkfont); gdk_font_unref (gdkfont); @@ -135,7 +135,7 @@ #ifdef E_FONT_VERBOSE g_print ("Trying font: %s\n", p); #endif - newfont = gdk_font_load (p); + newfont = gdk_fontset_load("-misc-fixed-medium-r-normal--14-*-*-*-*-*-*-*"); if (newfont) { #ifdef E_FONT_VERBOSE e_font_print_gdk_font_name (newfont); -- TERAMOTO Masahiro mail:markun@mb.kcom.ne.jp http://tiphreth.comm.eng.osaka-u.ac.jp/~markun/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 6: 5:58 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 06:05:56 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mail6.lig.bellsouth.net (mail6.lig.bellsouth.net [205.152.0.91]) by hub.freebsd.org (Postfix) with ESMTP id 60E0637B400 for ; Sat, 23 Dec 2000 06:05:56 -0800 (PST) Received: from coastalgeology.org (adsl-20-126-148.chs.bellsouth.net [66.20.126.148]) by mail6.lig.bellsouth.net (3.3.5alt/0.75.2) with SMTP id JAA29569 for ; Sat, 23 Dec 2000 09:05:55 -0500 (EST) Received: (qmail 99244 invoked by uid 1000); 23 Dec 2000 14:26:09 -0000 Date: Sat, 23 Dec 2000 09:26:09 -0500 From: Jonathan Pennington To: ports@freebsd.org Subject: Ports categories (Was: Unfetchable...) Message-ID: <20001223092609.A99120@coastalgeology.org> Reply-To: Jonathan Pennington Mail-Followup-To: Jonathan Pennington , ports@freebsd.org References: <200012211800.eBLI0FC87639@freefall.freebsd.org> <20001223000310.B65117@coastalgeology.org> <20001223000748.D89514@external.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001223000748.D89514@external.org>; from jeremy@external.org on Sat, Dec 23, 2000 at 12:07:49AM -0600 X-Warning: Bill Gates Controls The Matrix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Jeremy Shaffner [001223 01:31]: > > couple of geology apps right now, and there are two or three > > This brings up something that I think should be addressed, and that's > the absense of a science category that would hold everything that's > currently in biology and any other science, or at least be a virtual > category. I was going to ask this on the list a bit earlier, but I checked in the archives and it seems that our venerable Satoshi said that he could create a science category (see message: http://www.geocrawler.com/archives/3/167/2000/5/0/3704091/ ) I was just going to be patient about it. I'd assume Asami-san has quite a bit of stuff in his stocking and there's probably a good deal of work to be done in the database and such before this can happen. The geology apps I'm porting are all visualization software and libraries so they'll do fine in (graphics|devel|misc). -J -- Jonathan Pennington | http://coastalgeology.org Site Manager | Protection and stewardship CoastalGeology.Org (CGO) | through public education. john@coastalgeology.org | Join CGO, make a difference. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 6:10: 5 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 06:10:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 38CE237B400 for ; Sat, 23 Dec 2000 06:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNEA2275143; Sat, 23 Dec 2000 06:10:02 -0800 (PST) (envelope-from gnats) Date: Sat, 23 Dec 2000 06:10:02 -0800 (PST) Message-Id: <200012231410.eBNEA2275143@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: alex@big.endian.de (Alexander Langer) Subject: Re: ports/23791: New port: xtux, A Humorous Arcade game for X Reply-To: alex@big.endian.de (Alexander Langer) Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23791; it has been noted by GNATS. From: alex@big.endian.de (Alexander Langer) To: goranrunfeldt@home.se Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/23791: New port: xtux, A Humorous Arcade game for X Date: Sat, 23 Dec 2000 15:03:35 +0100 Thus spake goranrunfeldt@home.se (goranrunfeldt@home.se): > begin 644 xtux.shar ... I'm missing a Makefile Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 6:20:42 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 06:20:41 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E77237B400; Sat, 23 Dec 2000 06:20:41 -0800 (PST) Received: (from alex@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNEKep76160; Sat, 23 Dec 2000 06:20:40 -0800 (PST) (envelope-from alex) Date: Sat, 23 Dec 2000 06:20:40 -0800 (PST) From: Message-Id: <200012231420.eBNEKep76160@freefall.freebsd.org> To: esk@ira.uka.de, alex@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/21477: New port: xmms-crossfade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: xmms-crossfade State-Changed-From-To: open->closed State-Changed-By: alex State-Changed-When: Sat Dec 23 06:20:13 PST 2000 State-Changed-Why: Opsoleted by PR 22576 http://www.freebsd.org/cgi/query-pr.cgi?pr=21477 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 6:30: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 06:30:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B493537B698 for ; Sat, 23 Dec 2000 06:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNEU2b76877; Sat, 23 Dec 2000 06:30:02 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 23 Dec 2000 06:30:02 -0800 (PST) Resent-Message-Id: <200012231430.eBNEU2b76877@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, john@coastalgeology.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 20E8237B400 for ; Sat, 23 Dec 2000 06:21:32 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNELWh76212; Sat, 23 Dec 2000 06:21:32 -0800 (PST) (envelope-from nobody) Message-Id: <200012231421.eBNELWh76212@freefall.freebsd.org> Date: Sat, 23 Dec 2000 06:21:32 -0800 (PST) From: john@coastalgeology.org Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23796: Request maintainer change Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23796 >Category: ports >Synopsis: Request maintainer change >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 23 06:30:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jonathan Pennington >Release: 4.2-STABLE >Organization: >Environment: >Description: Will maintain lang/expect >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 6:30:11 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 06:30:07 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F124037B404 for ; Sat, 23 Dec 2000 06:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNEU2376886; Sat, 23 Dec 2000 06:30:02 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 23 Dec 2000 06:30:02 -0800 (PST) Resent-Message-Id: <200012231430.eBNEU2376886@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, john@coastalgeology.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1DC4837B400 for ; Sat, 23 Dec 2000 06:22:17 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNEMHx76236; Sat, 23 Dec 2000 06:22:17 -0800 (PST) (envelope-from nobody) Message-Id: <200012231422.eBNEMHx76236@freefall.freebsd.org> Date: Sat, 23 Dec 2000 06:22:17 -0800 (PST) From: john@coastalgeology.org Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23797: Request maintainer change Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23797 >Category: ports >Synopsis: Request maintainer change >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 23 06:30:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jonathan Pennington >Release: 4.2-STABLE >Organization: >Environment: >Description: Will maintain math/py-gnuplot >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 6:30:15 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 06:30:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C08837B402 for ; Sat, 23 Dec 2000 06:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNEU2576868; Sat, 23 Dec 2000 06:30:02 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 23 Dec 2000 06:30:02 -0800 (PST) Resent-Message-Id: <200012231430.eBNEU2576868@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, john@coastalgeology.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3820037B400 for ; Sat, 23 Dec 2000 06:21:15 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNELFR76205; Sat, 23 Dec 2000 06:21:15 -0800 (PST) (envelope-from nobody) Message-Id: <200012231421.eBNELFR76205@freefall.freebsd.org> Date: Sat, 23 Dec 2000 06:21:15 -0800 (PST) From: john@coastalgeology.org Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23795: Request maintainer change Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23795 >Category: ports >Synopsis: Request maintainer change >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 23 06:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jonathan Pennington >Release: 4.2-STABLE >Organization: >Environment: >Description: Will maintain graphics/py-imaging-handbook >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 6:30:15 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 06:30:11 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 135BC37B69B for ; Sat, 23 Dec 2000 06:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNEU2i76895; Sat, 23 Dec 2000 06:30:02 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 23 Dec 2000 06:30:02 -0800 (PST) Resent-Message-Id: <200012231430.eBNEU2i76895@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, john@coastalgeology.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 11CD837B400 for ; Sat, 23 Dec 2000 06:22:32 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNEMWo76249; Sat, 23 Dec 2000 06:22:32 -0800 (PST) (envelope-from nobody) Message-Id: <200012231422.eBNEMWo76249@freefall.freebsd.org> Date: Sat, 23 Dec 2000 06:22:32 -0800 (PST) From: john@coastalgeology.org Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23798: Request maintainer change Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23798 >Category: ports >Synopsis: Request maintainer change >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 23 06:30:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jonathan Pennington >Release: 4.2-STABLE >Organization: >Environment: >Description: Will maintain math/py-scientific >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 6:30:18 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 06:30:15 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4A85937B69D for ; Sat, 23 Dec 2000 06:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNEU3n76904; Sat, 23 Dec 2000 06:30:03 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 23 Dec 2000 06:30:03 -0800 (PST) Resent-Message-Id: <200012231430.eBNEU3n76904@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, john@coastalgeology.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CB6AE37B400 for ; Sat, 23 Dec 2000 06:23:00 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNEN0t76292; Sat, 23 Dec 2000 06:23:00 -0800 (PST) (envelope-from nobody) Message-Id: <200012231423.eBNEN0t76292@freefall.freebsd.org> Date: Sat, 23 Dec 2000 06:23:00 -0800 (PST) From: john@coastalgeology.org Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23799: Request maintainer change Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23799 >Category: ports >Synopsis: Request maintainer change >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 23 06:30:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jonathan Pennington >Release: 4.2-STABLE >Organization: >Environment: >Description: Will maintain math/pspp >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 6:30:25 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 06:30:16 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D0D937B69E for ; Sat, 23 Dec 2000 06:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNEU3H76913; Sat, 23 Dec 2000 06:30:03 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 23 Dec 2000 06:30:03 -0800 (PST) Resent-Message-Id: <200012231430.eBNEU3H76913@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, dirk.meyer@dinoex.sub.org Received: from net2.dinoex.sub.org (net2.dinoex.de [212.184.201.182]) by hub.freebsd.org (Postfix) with ESMTP id A6B2737B400 for ; Sat, 23 Dec 2000 06:26:09 -0800 (PST) Received: from home.dinoex.sub.org (home.dinoex.sub.de [62.157.91.196]) by net2.dinoex.sub.org (8.11.1/8.11.1) with ESMTP id eBNEPw029894 for ; Sat, 23 Dec 2000 15:25:58 +0100 (CET) (envelope-from dm@home.dinoex.sub.org) Received: (from dm@localhost) by home.dinoex.sub.org (8.11.1/8.11.1) id eBNEPbO54201; Sat, 23 Dec 2000 15:25:37 +0100 (CET) (envelope-from dm) Message-Id: <200012231425.eBNEPbO54201@home.dinoex.sub.org> Date: Sat, 23 Dec 2000 15:25:37 +0100 (CET) From: dirk.meyer@dinoex.sub.org Sender: dm@home.dinoex.sub.org Reply-To: dirk.meyer@dinoex.sub.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23800: net/licq package fails Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23800 >Category: ports >Synopsis: net/licq pacakge fails >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 23 06:30:03 PST 2000 >Closed-Date: >Last-Modified: >Originator: Dirk Meyer >Release: FreeBSD 4.2-STABLE i386 >Organization: privat >Environment: qt-2.2.3 >Description: share/licq/qt-gui/locale/ is not fulle generated anymore. share/licq/contrib/ does not exist share/licq/qt-gui/skin.*/ xpm have been converted in png >How-To-Repeat: make package: < tar: can't add file share/licq/qt-gui/skin.shale/butMenuDown.xpm : No such file or directory < tar: can't add file share/licq/qt-gui/skin.shale/butMenuFocus.xpm : No such file or directory < tar: can't add file share/licq/qt-gui/skin.shale/frame.gif : No such file or directory < tar: can't add file share/licq/qt-gui/skin.shale/status.xpm : No such file or irectory [...] Missing files: share/licq/qt-gui/locale/cs_CZ.qm share/licq/qt-gui/locale/de.qm share/licq/qt-gui/locale/es.qm share/licq/qt-gui/locale/it.qm share/licq/qt-gui/locale/pl.qm share/licq/qt-gui/locale/pt.qm share/licq/qt-gui/locale/ru_RU.KOI8-R.qm share/licq/qt-gui/locale/sv.qm share/licq/qt-gui/skin.bheart/Frame.xpm share/licq/qt-gui/skin.compact/button.xpm share/licq/qt-gui/skin.compact/frame.gif share/licq/qt-gui/skin.compact/msg.xpm share/licq/qt-gui/skin.compact/status.xpm share/licq/qt-gui/skin.dim/Frame.gif share/licq/qt-gui/skin.dim/Label-small.xpm share/licq/qt-gui/skin.dim/Label.xpm share/licq/qt-gui/skin.dim/MenuDown.xpm share/licq/qt-gui/skin.dim/MenuUpFocus.xpm share/licq/qt-gui/skin.dim/MenuUpNoFocus.xpm share/licq/qt-gui/skin.dim/Status.xpm share/licq/qt-gui/skin.dim/mask.gif share/licq/qt-gui/skin.e/butMenu.xpm share/licq/qt-gui/skin.e/butMenuDown.xpm share/licq/qt-gui/skin.e/butMenuFocus.xpm share/licq/qt-gui/skin.e/frame.gif share/licq/qt-gui/skin.e/msg.xpm share/licq/qt-gui/skin.e/status.xpm share/licq/qt-gui/skin.gradient/background.gif share/licq/qt-gui/skin.gradient/buttonLowered.xpm share/licq/qt-gui/skin.gradient/buttonRaised.xpm share/licq/qt-gui/skin.gradient/msg.xpm share/licq/qt-gui/skin.gradient/status.xpm share/licq/qt-gui/skin.gradient/background.gif share/licq/qt-gui/skin.gradient/buttonLowered.xpm share/licq/qt-gui/skin.gradient/buttonRaised.xpm share/licq/qt-gui/skin.gradient/msg.xpm share/licq/qt-gui/skin.gradient/status.xpm share/licq/qt-gui/skin.pli/Frame.gif share/licq/qt-gui/skin.pli/MenuButtonDown.xpm share/licq/qt-gui/skin.pli/MenuButtonUp.xpm share/licq/qt-gui/skin.shale/butMenu.xpm share/licq/qt-gui/skin.shale/butMenuDown.xpm share/licq/qt-gui/skin.shale/butMenuFocus.xpm share/licq/qt-gui/skin.shale/frame.gif share/licq/qt-gui/skin.shale/status.xpm share/licq/qt-gui/icons.dots/away.xpm share/licq/qt-gui/icons.dots/dnd.xpm share/licq/qt-gui/icons.dots/dots.icons share/licq/qt-gui/icons.dots/message.xpm share/licq/qt-gui/icons.dots/na.xpm share/licq/qt-gui/icons.dots/occupied.xpm share/licq/qt-gui/icons.dots/offline.xpm share/licq/qt-gui/icons.dots/online.xpm share/licq/qt-gui/icons.dots/online.xpm.d share/licq/qt-gui/icons.dots/private.xpm share/licq/contrib/licq.gicqconvert share/licq/contrib/licq.javaconvert share/licq/contrib/licq.kicqconvert share/licq/contrib/licq.micqconvert share/licq/contrib/licq.winconvert share/licq/contrib/licq.winconvert98 share/licq/contrib/licq.winconvert99a share/licq/contrib/licq.winconvert99b share/licq/contrib/licq.zicqconvert share/licq/contrib/RecreateUserList.sh share/licq/contrib/gnome-menu-install.sh share/licq/contrib/remove-null.sh share/licq/contrib/viewurl-lynx.sh share/licq/contrib/viewurl-ncftp.sh share/licq/contrib/viewurl-netscape.sh share/licq/contrib/viewurl-w3m.sh >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 7: 0:11 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 07:00:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D3A837B404 for ; Sat, 23 Dec 2000 07:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNF03279392; Sat, 23 Dec 2000 07:00:03 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 23 Dec 2000 07:00:03 -0800 (PST) Resent-Message-Id: <200012231500.eBNF03279392@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, john@coastalgeology.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A44937B402 for ; Sat, 23 Dec 2000 06:58:53 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNEwrL79202; Sat, 23 Dec 2000 06:58:53 -0800 (PST) (envelope-from nobody) Message-Id: <200012231458.eBNEwrL79202@freefall.freebsd.org> Date: Sat, 23 Dec 2000 06:58:53 -0800 (PST) From: john@coastalgeology.org Sender: nobody@FreeBSD.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/23802: Maintained ports listed as unmaintained (?) Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23802 >Category: ports >Synopsis: Maintained ports listed as unmaintained (?) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 23 07:00:02 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jonathan Pennington >Release: 4.2-STABLE >Organization: >Environment: >Description: The following ports are listed on http://people.freebsd.org/~fenner/portsurvey/ports@freebsd.org.html but seem to have a maintainer in the Makefile. math/PSPP andrew@chg.ru math/py-scientific tg@FreeBSD.org math/py-gnuplot sobomax@FreeBSD.org >How-To-Repeat: >Fix: I realize I should have checked this before submitting a change request for these ports. If listed maintainers are out of date or wrong, I will volunteer to maintain listed ports. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 7: 0:13 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 07:00:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2402037B402 for ; Sat, 23 Dec 2000 07:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNF02J79381; Sat, 23 Dec 2000 07:00:02 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 23 Dec 2000 07:00:02 -0800 (PST) Resent-Message-Id: <200012231500.eBNF02J79381@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, yoshiaki@kt.rim.or.jp Received: from mail.kt.rim.or.jp (ip39-181.fli.psinet.ne.jp [210.158.39.181]) by hub.freebsd.org (Postfix) with ESMTP id 590EF37B400 for ; Sat, 23 Dec 2000 06:52:49 -0800 (PST) Message-Id: <200012231452.eBNEqaT42742@mail.kt.rim.or.jp> Date: Sat, 23 Dec 2000 23:52:36 +0900 (JST) From: yoshiaki@kt.rim.or.jp Reply-To: yoshiaki@kt.rim.or.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/23801: ports update [math] pari/gp Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23801 >Category: ports >Synopsis: ports update [math] pari/gp >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Dec 23 07:00:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Yoshiaki Uchikawa >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD singer.tertio.atoll 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Fri Dec 22 02:55:48 JST 2000 yoshiaki@singer.tertio.atoll:/usr/src/sys/compile/VISU i386 FreeBSD 5.0-CURRENT #0: Fri Dec 22 02:55:48 JST 2000 yoshiaki@singer.tertio.atoll:/usr/src/sys/compile/VISU Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (851.93-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 real memory = 268435456 (262144K bytes) avail memory = 257064960 (251040K bytes) >Description: update pari/GP new version 2.1.0 >How-To-Repeat: >Fix: diff -ruN pari.20/Makefile pari/Makefile --- pari.20/Makefile Wed Oct 11 02:52:37 2000 +++ pari/Makefile Sat Dec 23 23:41:00 2000 @@ -6,11 +6,11 @@ # PORTNAME= pari -PORTVERSION= 2.0.20b -PORTREVISION= 1 +PORTVERSION= 2.1.0 +PORTREVISION= 0 CATEGORIES= math MASTER_SITES= ftp://www.gn-50uma.de/gn/gn-50uma.de/pari-2.0/ -DISTNAME= pari-2.0.20.beta +DISTNAME= pari-2.1.0 MAINTAINER= yoshiaki@kt.rim.or.jp diff -ruN pari.20/distinfo pari/distinfo --- pari.20/distinfo Sun Jul 16 22:58:35 2000 +++ pari/distinfo Sat Dec 23 23:14:24 2000 @@ -1 +1 @@ -MD5 (pari-2.0.20.beta.tar.gz) = d19ff1e729edfc19a64f0beb1c466784 +MD5 (pari-2.1.0.tar.gz) = 7cff208a621d2368ca0052c457b3b3cd diff -ruN pari.20/pkg-plist pari/pkg-plist --- pari.20/pkg-plist Sun Sep 24 12:38:06 2000 +++ pari/pkg-plist Sat Dec 23 23:30:27 2000 @@ -1,6 +1,6 @@ bin/Makefile bin/gp -bin/gp-2.0 +bin/gp-2.1 bin/gphelp bin/tex2mail include/pari/genpari.h @@ -18,7 +18,7 @@ include/pari/paritype.h lib/libpari.so lib/libpari.so.2 -lib/libpari.so.2.0.20 +lib/libpari.so.2.1.0 @exec /bin/mkdir -p %D/lib/pari/data lib/pari/paricfg.tex lib/pari/parimacro.tex diff -ruN pari.20/pkg-plist.emacs pari/pkg-plist.emacs --- pari.20/pkg-plist.emacs Sun Sep 24 12:38:06 2000 +++ pari/pkg-plist.emacs Sat Dec 23 23:30:35 2000 @@ -1,6 +1,6 @@ bin/Makefile bin/gp -bin/gp-2.0 +bin/gp-2.1 bin/gphelp bin/tex2mail include/pari/genpari.h @@ -18,7 +18,7 @@ include/pari/paritype.h lib/libpari.so lib/libpari.so.2 -lib/libpari.so.2.0.20 +lib/libpari.so.2.1.0 @exec /bin/mkdir -p %D/lib/pari/data lib/pari/pari-translator.el lib/pari/pari.el >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 7:12:19 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 07:12:18 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4490E37B400; Sat, 23 Dec 2000 07:12:18 -0800 (PST) Received: (from alex@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNFCIG82826; Sat, 23 Dec 2000 07:12:18 -0800 (PST) (envelope-from alex) Date: Sat, 23 Dec 2000 07:12:18 -0800 (PST) From: Message-Id: <200012231512.eBNFCIG82826@freefall.freebsd.org> To: esk@ira.uka.de, alex@FreeBSD.org, freebsd-ports@FreeBSD.org, alex@FreeBSD.org Subject: Re: ports/22576: New port: audio/xmms-crossfade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: audio/xmms-crossfade State-Changed-From-To: open->closed State-Changed-By: alex State-Changed-When: Sat Dec 23 07:11:13 PST 2000 State-Changed-Why: Added, thank you. Responsible-Changed-From-To: freebsd-ports->alex Responsible-Changed-By: alex Responsible-Changed-When: Sat Dec 23 07:11:13 PST 2000 Responsible-Changed-Why: I added it. http://www.freebsd.org/cgi/query-pr.cgi?pr=22576 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 7:20: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 07:20:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6EE3937B402 for ; Sat, 23 Dec 2000 07:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNFK2c83492; Sat, 23 Dec 2000 07:20:02 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 23 Dec 2000 07:20:02 -0800 (PST) Resent-Message-Id: <200012231520.eBNFK2c83492@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, osa@FreeBSD.org.ru Received: from freebsd.org.ru (sweet.etrust.ru [194.84.67.5]) by hub.freebsd.org (Postfix) with ESMTP id 7EB8237B400 for ; Sat, 23 Dec 2000 07:12:12 -0800 (PST) Received: by freebsd.org.ru (Postfix, from userid 1000) id 0C299F4; Sat, 23 Dec 2000 18:12:10 +0300 (MSK) Message-Id: <20001223151210.0C299F4@freebsd.org.ru> Date: Sat, 23 Dec 2000 18:12:10 +0300 (MSK) From: osa@FreeBSD.org.ru Reply-To: osa@FreeBSD.org.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23803: www/oops update from 1.5.2 to 1.5.5 (by maintainer) Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23803 >Category: ports >Synopsis: www/oops update from 1.5.2 to 1.5.5 (by maintainer) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 23 07:20:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Sergey A. Osokin >Release: FreeBSD 4.2-STABLE i386 >Organization: Russian FreeBSD Team >Environment: FreeBSD 4.2-STABLE i386 >Description: www/oops update from 1.5.2 to 1.5.5 (by maintainer) >How-To-Repeat: >Fix: diff -ruN oops.old/Makefile oops/Makefile --- oops.old/Makefile Sat Dec 23 18:08:43 2000 +++ oops/Makefile Thu Dec 21 13:51:03 2000 @@ -6,7 +6,7 @@ # PORTNAME= oops -PORTVERSION= 1.5.2 +PORTVERSION= 1.5.5 CATEGORIES= www MASTER_SITES= http://zipper.paco.net/~igor/oops/ diff -ruN oops.old/distinfo oops/distinfo --- oops.old/distinfo Sat Dec 23 18:08:43 2000 +++ oops/distinfo Thu Dec 21 13:53:17 2000 @@ -1 +1 @@ -MD5 (oops-1.5.2.tar.gz) = dee63a9433387f9911f969fbe86f2b10 +MD5 (oops-1.5.5.tar.gz) = 5f628d33b119aa601d46485f476b01d0 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 7:20:15 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 07:20:04 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C07237B400 for ; Sat, 23 Dec 2000 07:20:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNFK3o83498; Sat, 23 Dec 2000 07:20:03 -0800 (PST) (envelope-from gnats) Date: Sat, 23 Dec 2000 07:20:03 -0800 (PST) Message-Id: <200012231520.eBNFK3o83498@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: David Lebel Subject: Re: ports/23298: New port: lame-devel 3.87 Reply-To: David Lebel Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23298; it has been noted by GNATS. From: David Lebel To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: ports/23298: New port: lame-devel 3.87 Date: Sat, 23 Dec 2000 10:18:06 -0500 --VS++wcV0S1rZb1Fb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable As requested, here is a diff between the current lame and my new port. ---cut--- diff -rNu lame/Makefile lame-devel/Makefile --- lame/Makefile Sun Oct 29 19:03:01 2000 +++ lame-devel/Makefile Fri Dec 22 12:38:37 2000 @@ -1,28 +1,31 @@ -# ports collection makefile for: lame -# Date created: 11 January 1998 -# Whom: yoshiaki Uchikawa +# ports collection makefile for: lame-devel +# Date created: 16 October 2000 +# Whom: David Lebel # -# $FreeBSD: ports/audio/lame/Makefile,v 1.16 2000/10/30 00:03:23 lioux Exp= $ +# $FreeBSD$ # =20 PORTNAME=3D lame -PORTVERSION=3D 3.70 +PORTVERSION=3D 3.87 CATEGORIES=3D audio MASTER_SITES=3D http://lame.sourceforge.net/download/beta/ -DISTNAME=3D ${PORTNAME}${PORTVERSION} +DISTNAME=3D lame3.87beta =20 -MAINTAINER=3D yoshiaki@kt.rim.or.jp +MAINTAINER=3D lebel@lebel.org =20 +WRKSRC=3D ${WRKDIR}/lame3.87 USE_GMAKE=3D yes -WANT_GTK=3D yes +GNU_CONFIGURE=3D yes +CONFIGURE_ARGS=3D --enable-analyzer=3Dno ALL_TARGET=3D lame =20 MAN1=3D lame.1 =20 .include =20 -.if defined(HAVE_GTK) -USE_GTK=3D yes +.if defined(WITH_VORBIS) +LIB_DEPENDS+=3D vorbis.0:${PORTSDIR}/audio/libvorbis +CONFIGURE_ARGS+=3D --with-vorbis --with-vorbis-prefix=3D${LOCALBASE} .endif =20 do-install: diff -rNu lame/README.html lame-devel/README.html --- lame/README.html Mon Nov 20 04:52:54 2000 +++ lame-devel/README.html Wed Dec 31 19:00:00 1969 @@ -1,30 +0,0 @@ - - The FreeBSD Ports Collection (audio/lame) -

The FreeBSD Ports Collection ("audio/lame")


- - -

You are now in the directory for the port "audio/lame" (package name "l= ame-gtk-3.70"). - -

This is the one-line description for this port: - -


-ISO code based fast MP3 encoder kit -


- -

Please read the "description file" for a -longer description. - -

Go to the top of the ports tree for -a summary on how to use the ports collection. - -

-This port requires package(s) "XFree86-3.3.6_4 gettext-0.10.35 glib-1.2.8 = gmake-3.79.1 gtk-1.2.8" to build. -

-This port requires package(s) "XFree86-3.3.6_4 gettext-0.10.35 glib-1.2.8 = gtk-1.2.8" to run. - -


- Go up one level -| - Go to top of ports tree - - diff -rNu lame/distinfo lame-devel/distinfo --- lame/distinfo Sun Oct 29 08:30:17 2000 +++ lame-devel/distinfo Fri Dec 22 12:38:37 2000 @@ -1 +1 @@ -MD5 (lame3.70.tar.gz) =3D 44e29880a21535a7c935046a531e15af +MD5 (lame3.87beta.tar.gz) =3D 0c0f6f4aab5963be12509657d5dccd5c diff -rNu lame/files/patch-aa lame-devel/files/patch-aa --- lame/files/patch-aa Thu Oct 5 02:47:10 2000 +++ lame-devel/files/patch-aa Wed Dec 31 19:00:00 1969 @@ -1,26 +0,0 @@ ---- Makefile.orig Sat Jul 1 15:31:35 2000 -+++ Makefile Sat Jul 1 15:36:07 2000 -@@ -11,8 +11,8 @@ -=20 - # defaults: - PGM =3D lame --CC =3D gcc --CC_OPTS =3D -O -+CC ?=3D gcc -+CC_OPTS =3D ${CFLAGS} - GTK =3D=20 - GTKLIBS =3D=20 - SNDLIB =3D -DLAMESNDFILE -@@ -136,8 +136,10 @@ - ########################################################################## - ifeq ($(UNAME),FreeBSD) - # remove if you do not have GTK or do not want the GTK frame analyzer -- GTK =3D -DHAVEGTK `gtk12-config --cflags` -- GTKLIBS =3D `gtk12-config --libs`=20 -+ifdef HAVE_GTK -+ GTK =3D -DHAVEGTK `$(GTK_CONFIG) --cflags` -+ GTKLIBS =3D `$(GTK_CONFIG) --libs`=20 -+endif - # Comment out next 2 lines if you want to remove VBR histogram capability - BRHIST_SWITCH =3D -DBRHIST - LIBTERMCAP =3D -lncurses diff -rNu lame/files/patch-ab lame-devel/files/patch-ab --- lame/files/patch-ab Wed Jun 7 12:06:25 2000 +++ lame-devel/files/patch-ab Wed Dec 31 19:00:00 1969 @@ -1,11 +0,0 @@ ---- lame.c.orig Thu Apr 20 01:48:22 2000 -+++ lame.c Thu Apr 20 01:49:04 2000 -@@ -1196,7 +1196,7 @@ - /* - * Disable floating point exepctions - */ --#ifdef __FreeBSD__ -+#if defined(__FreeBSD__) && !defined(__alpha__) - # include - { - /* seet floating point mask to the Linux default */ diff -rNu lame/pkg-comment lame-devel/pkg-comment --- lame/pkg-comment Sat Oct 2 02:56:01 1999 +++ lame-devel/pkg-comment Fri Dec 22 12:38:37 2000 @@ -1 +1 @@ -ISO code based fast MP3 encoder kit +fully GPL'd MP3 encoder. diff -rNu lame/pkg-descr lame-devel/pkg-descr --- lame/pkg-descr Tue Oct 3 13:38:14 2000 +++ lame-devel/pkg-descr Fri Dec 22 12:38:37 2000 @@ -1,11 +1,24 @@ -LAME stands for LAME Ain't an Mp3 Encoder.=20 +LAME originally stood for LAME Ain't an Mp3 Encoder.=20 =20 -This is a patch agains the ISO MPEG1 demonstration source. The -modifications are distributed under the GNU GENERAL PUBLIC LICENSE -(see the file COPYING for details). +Following the great history of GNU naming, LAME originally stood for LAME = Ain't +an Mp3 Encoder. LAME started life as a GPL'd patch against the dist10 ISO +demonstration source, and thus was incapable of producing an mp3 stream or= even +being compiled by itself. But in May 2000, the last remnants of the ISO +source code were replaced, and now LAME is the source code for a fully GPL= 'd +MP3 encoder, with speed and quality to rival all commercial competitors. =20 -The graphical frame analyzer uses the MPGLIB decoding engine, written by: -Michael Hipp (email: Michael.Hipp@student.uni-tuebingen.de)=20 -and released under a more restrictive agreement. =20 +LAME is an educational tool to be used for learning about MP3 encoding. T= he +goal of the LAME project is to use the open source model to improve the ps= ycho +acoustics, noise shaping and speed of MP3. Another goal of the LAME proje= ct is +to use these improvements for the basis of a patent free audio compression +codec for the GNU project. + +In Beta: + MPEG 2.5 support=20 + No more patching! Full source code distribution since all ISO code = has been=20 + replaced!=20 + free format encoding and decoding=20 + Vorbis audio codec support, for both encoding and decoding.=20 + As always, more speed and better quality.=20 =20 WWW: http://lame.sourceforge.net/ diff -rNu lame/pkg-plist lame-devel/pkg-plist --- lame/pkg-plist Sat Apr 29 16:44:27 2000 +++ lame-devel/pkg-plist Fri Dec 22 12:38:37 2000 @@ -5,6 +5,7 @@ share/doc/lame/id3.html share/doc/lame/index.html share/doc/lame/lame.css +share/doc/lame/modes.html share/doc/lame/node5.html share/doc/lame/node6.html share/doc/lame/node7.html --=20 // david lebel // nobiaze' Inc. // http://www.lebel.org/ // http://www.nobiaze.com/ // pgp: 3633 6999 D47E 73ED 099F // vox: (514) 943.3045 4341 08A4 8E48 EF56 61D1 // fax: (514) 938.8881 --VS++wcV0S1rZb1Fb Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (OpenBSD) Comment: For info see http://www.gnupg.org iD8DBQE6RMIuCKSOSO9WYdERAtxqAKDChaERiH+k4ww46PkdxQ/zg+RPUgCfQj2f zMyI56ZGDIkWrNXG0U2jEN4= =Zc7O -----END PGP SIGNATURE----- --VS++wcV0S1rZb1Fb-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 7:24:24 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 07:24:18 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from gandalf.lebel.org (modemcable004.115-201-24.mtl.mc.videotron.ca [24.201.115.4]) by hub.freebsd.org (Postfix) with SMTP id D768237B400 for ; Sat, 23 Dec 2000 07:24:17 -0800 (PST) Received: (qmail 23206 invoked by uid 1001); 23 Dec 2000 15:23:41 -0000 Date: Sat, 23 Dec 2000 10:23:41 -0500 From: David Lebel To: freebsd-ports@FreeBSD.org Subject: Re: ports/23298: New port: lame-devel 3.87 Message-ID: <20001223102341.B17177@lebel.org> References: <200012231520.eBNFK3o83498@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200012231520.eBNFK3o83498@freefall.freebsd.org>; from lebel@lebel.org on Sat, Dec 23, 2000 at 07:20:03AM -0800 Organization: None whatsover. X-URL: http://www.lebel.org/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ooops. It seems my mail was sent quoted-printable. Here it is again. Sorry. ---cut--- diff -rNu lame/Makefile lame-devel/Makefile --- lame/Makefile Sun Oct 29 19:03:01 2000 +++ lame-devel/Makefile Fri Dec 22 12:38:37 2000 @@ -1,28 +1,31 @@ -# ports collection makefile for: lame -# Date created: 11 January 1998 -# Whom: yoshiaki Uchikawa +# ports collection makefile for: lame-devel +# Date created: 16 October 2000 +# Whom: David Lebel # -# $FreeBSD: ports/audio/lame/Makefile,v 1.16 2000/10/30 00:03:23 lioux Exp $ +# $FreeBSD$ # PORTNAME= lame -PORTVERSION= 3.70 +PORTVERSION= 3.87 CATEGORIES= audio MASTER_SITES= http://lame.sourceforge.net/download/beta/ -DISTNAME= ${PORTNAME}${PORTVERSION} +DISTNAME= lame3.87beta -MAINTAINER= yoshiaki@kt.rim.or.jp +MAINTAINER= lebel@lebel.org +WRKSRC= ${WRKDIR}/lame3.87 USE_GMAKE= yes -WANT_GTK= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-analyzer=no ALL_TARGET= lame MAN1= lame.1 .include -.if defined(HAVE_GTK) -USE_GTK= yes +.if defined(WITH_VORBIS) +LIB_DEPENDS+= vorbis.0:${PORTSDIR}/audio/libvorbis +CONFIGURE_ARGS+= --with-vorbis --with-vorbis-prefix=${LOCALBASE} .endif do-install: diff -rNu lame/README.html lame-devel/README.html --- lame/README.html Mon Nov 20 04:52:54 2000 +++ lame-devel/README.html Wed Dec 31 19:00:00 1969 @@ -1,30 +0,0 @@ - - The FreeBSD Ports Collection (audio/lame) -

The FreeBSD Ports Collection ("audio/lame")


- - -

You are now in the directory for the port "audio/lame" (package name "lame-gtk-3.70"). - -

This is the one-line description for this port: - -


-ISO code based fast MP3 encoder kit -


- -

Please read the "description file" for a -longer description. - -

Go to the top of the ports tree for -a summary on how to use the ports collection. - -

-This port requires package(s) "XFree86-3.3.6_4 gettext-0.10.35 glib-1.2.8 gmake-3.79.1 gtk-1.2.8" to build. -

-This port requires package(s) "XFree86-3.3.6_4 gettext-0.10.35 glib-1.2.8 gtk-1.2.8" to run. - -


- Go up one level -| - Go to top of ports tree - - diff -rNu lame/distinfo lame-devel/distinfo --- lame/distinfo Sun Oct 29 08:30:17 2000 +++ lame-devel/distinfo Fri Dec 22 12:38:37 2000 @@ -1 +1 @@ -MD5 (lame3.70.tar.gz) = 44e29880a21535a7c935046a531e15af +MD5 (lame3.87beta.tar.gz) = 0c0f6f4aab5963be12509657d5dccd5c diff -rNu lame/files/patch-aa lame-devel/files/patch-aa --- lame/files/patch-aa Thu Oct 5 02:47:10 2000 +++ lame-devel/files/patch-aa Wed Dec 31 19:00:00 1969 @@ -1,26 +0,0 @@ ---- Makefile.orig Sat Jul 1 15:31:35 2000 -+++ Makefile Sat Jul 1 15:36:07 2000 -@@ -11,8 +11,8 @@ - - # defaults: - PGM = lame --CC = gcc --CC_OPTS = -O -+CC ?= gcc -+CC_OPTS = ${CFLAGS} - GTK = - GTKLIBS = - SNDLIB = -DLAMESNDFILE -@@ -136,8 +136,10 @@ - ########################################################################## - ifeq ($(UNAME),FreeBSD) - # remove if you do not have GTK or do not want the GTK frame analyzer -- GTK = -DHAVEGTK `gtk12-config --cflags` -- GTKLIBS = `gtk12-config --libs` -+ifdef HAVE_GTK -+ GTK = -DHAVEGTK `$(GTK_CONFIG) --cflags` -+ GTKLIBS = `$(GTK_CONFIG) --libs` -+endif - # Comment out next 2 lines if you want to remove VBR histogram capability - BRHIST_SWITCH = -DBRHIST - LIBTERMCAP = -lncurses diff -rNu lame/files/patch-ab lame-devel/files/patch-ab --- lame/files/patch-ab Wed Jun 7 12:06:25 2000 +++ lame-devel/files/patch-ab Wed Dec 31 19:00:00 1969 @@ -1,11 +0,0 @@ ---- lame.c.orig Thu Apr 20 01:48:22 2000 -+++ lame.c Thu Apr 20 01:49:04 2000 -@@ -1196,7 +1196,7 @@ - /* - * Disable floating point exepctions - */ --#ifdef __FreeBSD__ -+#if defined(__FreeBSD__) && !defined(__alpha__) - # include - { - /* seet floating point mask to the Linux default */ diff -rNu lame/pkg-comment lame-devel/pkg-comment --- lame/pkg-comment Sat Oct 2 02:56:01 1999 +++ lame-devel/pkg-comment Fri Dec 22 12:38:37 2000 @@ -1 +1 @@ -ISO code based fast MP3 encoder kit +fully GPL'd MP3 encoder. diff -rNu lame/pkg-descr lame-devel/pkg-descr --- lame/pkg-descr Tue Oct 3 13:38:14 2000 +++ lame-devel/pkg-descr Fri Dec 22 12:38:37 2000 @@ -1,11 +1,24 @@ -LAME stands for LAME Ain't an Mp3 Encoder. +LAME originally stood for LAME Ain't an Mp3 Encoder. -This is a patch agains the ISO MPEG1 demonstration source. The -modifications are distributed under the GNU GENERAL PUBLIC LICENSE -(see the file COPYING for details). +Following the great history of GNU naming, LAME originally stood for LAME Ain't +an Mp3 Encoder. LAME started life as a GPL'd patch against the dist10 ISO +demonstration source, and thus was incapable of producing an mp3 stream or even +being compiled by itself. But in May 2000, the last remnants of the ISO +source code were replaced, and now LAME is the source code for a fully GPL'd +MP3 encoder, with speed and quality to rival all commercial competitors. -The graphical frame analyzer uses the MPGLIB decoding engine, written by: -Michael Hipp (email: Michael.Hipp@student.uni-tuebingen.de) -and released under a more restrictive agreement. +LAME is an educational tool to be used for learning about MP3 encoding. The +goal of the LAME project is to use the open source model to improve the psycho +acoustics, noise shaping and speed of MP3. Another goal of the LAME project is +to use these improvements for the basis of a patent free audio compression +codec for the GNU project. + +In Beta: + MPEG 2.5 support + No more patching! Full source code distribution since all ISO code has been + replaced! + free format encoding and decoding + Vorbis audio codec support, for both encoding and decoding. + As always, more speed and better quality. WWW: http://lame.sourceforge.net/ diff -rNu lame/pkg-plist lame-devel/pkg-plist --- lame/pkg-plist Sat Apr 29 16:44:27 2000 +++ lame-devel/pkg-plist Fri Dec 22 12:38:37 2000 @@ -5,6 +5,7 @@ share/doc/lame/id3.html share/doc/lame/index.html share/doc/lame/lame.css +share/doc/lame/modes.html share/doc/lame/node5.html share/doc/lame/node6.html share/doc/lame/node7.html -- // david lebel // nobiaze' Inc. // http://www.lebel.org/ // http://www.nobiaze.com/ // pgp: 3633 6999 D47E 73ED 099F // vox: (514) 943.3045 4341 08A4 8E48 EF56 61D1 // fax: (514) 938.8881 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 7:35:24 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 07:35:23 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6205637B400; Sat, 23 Dec 2000 07:35:23 -0800 (PST) Received: (from alex@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNFZMA85127; Sat, 23 Dec 2000 07:35:23 -0800 (PST) (envelope-from alex) Date: Sat, 23 Dec 2000 07:35:23 -0800 (PST) From: Message-Id: <200012231535.eBNFZMA85127@freefall.freebsd.org> To: nosuzuki@e-mail.ne.jp, alex@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22127: New port: A image viewer with thumbnail-based file selector for X Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: A image viewer with thumbnail-based file selector for X State-Changed-From-To: open->closed State-Changed-By: alex State-Changed-When: Sat Dec 23 07:34:53 PST 2000 State-Changed-Why: This has been added by kevlo, thaks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22127 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 7:50:32 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 07:50:31 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF95B37B400; Sat, 23 Dec 2000 07:50:30 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNFoUb05090; Sat, 23 Dec 2000 07:50:30 -0800 (PST) (envelope-from okazaki) Date: Sat, 23 Dec 2000 07:50:30 -0800 (PST) From: Message-Id: <200012231550.eBNFoUb05090@freefall.freebsd.org> To: okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org, okazaki@FreeBSD.org Subject: Re: ports/22752: remove qclock port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: remove qclock port Responsible-Changed-From-To: freebsd-ports->okazaki Responsible-Changed-By: okazaki Responsible-Changed-When: Sat Dec 23 07:49:53 PST 2000 Responsible-Changed-Why: I will handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=22752 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 8: 4:49 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 08:04:48 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from ns.uninet.ee (ns.uninet.ee [194.204.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 31D9537B400 for ; Sat, 23 Dec 2000 08:04:48 -0800 (PST) Received: from bender (coyote.emotion.ee [194.204.44.145]) by ns.uninet.ee (Postfix) with SMTP id C541625805 for ; Sat, 23 Dec 2000 18:04:45 +0200 (EET) From: "indrek siitan" To: Subject: IMAP server Date: Sat, 23 Dec 2000 18:04:01 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, what's the reasonable IMAP server to use on fbsd-4.2release? Rgds, Tfr --==< tfr@cafe.ee >==< http://tfr.cafe.ee/ >==< +372-50-17621 >==-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 8:11:20 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 08:11:18 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from citusc.usc.edu (citusc.usc.edu [128.125.38.123]) by hub.freebsd.org (Postfix) with ESMTP id D384137B400; Sat, 23 Dec 2000 08:11:17 -0800 (PST) Received: (from kris@localhost) by citusc.usc.edu (8.9.3/8.9.3) id IAA10462; Sat, 23 Dec 2000 08:12:35 -0800 Date: Sat, 23 Dec 2000 08:12:35 -0800 From: Kris Kennaway To: Jonathan Pennington Cc: ports@FreeBSD.ORG, asami@FreeBSD.ORG Subject: Science category (Re: Ports categories (Was: Unfetchable...)) Message-ID: <20001223081235.A10445@citusc.usc.edu> References: <200012211800.eBLI0FC87639@freefall.freebsd.org> <20001223000310.B65117@coastalgeology.org> <20001223000748.D89514@external.org> <20001223092609.A99120@coastalgeology.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="cNdxnHkX5QqsyA0e" Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20001223092609.A99120@coastalgeology.org>; from john@coastalgeology.org on Sat, Dec 23, 2000 at 09:26:09AM -0500 Sender: kris@citusc.usc.edu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --cNdxnHkX5QqsyA0e Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Dec 23, 2000 at 09:26:09AM -0500, Jonathan Pennington wrote: > * Jeremy Shaffner [001223 01:31]: > > > couple of geology apps right now, and there are two or three > >=20 > > This brings up something that I think should be addressed, and that's > > the absense of a science category that would hold everything that's > > currently in biology and any other science, or at least be a virtual > > category. >=20 > I was going to ask this on the list a bit earlier, but I checked in the > archives and it seems that our venerable Satoshi said that he > could create a science category (see message: > http://www.geocrawler.com/archives/3/167/2000/5/0/3704091/ ) Agreed..not sure why this still hasn't happened given the number of times it's come up over the years. Kris --cNdxnHkX5QqsyA0e Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE6RM7zWry0BWjoQKURAuHaAKClsRGdI8jMuVu+EYCFuliqs2IbqwCgtzq3 Tf0C0yuGb+A/zQxvi9Z2VWQ= =eNVM -----END PGP SIGNATURE----- --cNdxnHkX5QqsyA0e-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 8:15:51 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 08:15:49 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from citusc.usc.edu (citusc.usc.edu [128.125.38.123]) by hub.freebsd.org (Postfix) with ESMTP id 8B21237B400 for ; Sat, 23 Dec 2000 08:15:49 -0800 (PST) Received: (from kris@localhost) by citusc.usc.edu (8.9.3/8.9.3) id IAA10469; Sat, 23 Dec 2000 08:17:03 -0800 Date: Sat, 23 Dec 2000 08:17:03 -0800 From: Kris Kennaway To: Dag-Erling Smorgrav Cc: Jeremy Norris , ports@FreeBSD.ORG Subject: Re: XFree86-4 Port Message-ID: <20001223081703.B10445@citusc.usc.edu> References: <20001217004251.A47353@external.org> <20001218134601.A5634@FreeBSD.org> <20001219040318.B7935@babylon.merseine.nu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="St7VIuEGZ6dlpu13" Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from des@ofug.org on Tue, Dec 19, 2000 at 11:37:53AM +0100 Sender: kris@citusc.usc.edu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --St7VIuEGZ6dlpu13 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Dec 19, 2000 at 11:37:53AM +0100, Dag-Erling Smorgrav wrote: > Jeremy Norris writes: > > What about doing the following in each of the XFree86-4-subports: > > MASTERDIR=3D${PORTSDIR}/x11/XFree86-4 > > WRKDIR=3D${MASTERDIR}/work > > Then make XFree86-4 like other meta-ports, except have it fetch the > > distfiles. > >=20 > > Thus all the XFree86-4-subports could share the same working directory,= no? >=20 > No, because the ports system keeps metadata in WRKDIR. You might be > able to get away with WRKSRC=3D${MASTERDIR}/work/xc though. But it'd be > very tricky to get all the targets (especially the fetch, extract and > patch targets) for each port right. The cookie files can also be overridden, I do believe; they could have names derived from the port. Regardless, these problems can be overcome somehow, and this is the correct route to go down, IMO. Kris --St7VIuEGZ6dlpu13 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE6RM//Wry0BWjoQKURAtnQAJ9vguBCLN9YHxWXwiXS9p0n/yT5cQCfYd9R GHajSHOnPke0TcDzTgruElA= =mfA6 -----END PGP SIGNATURE----- --St7VIuEGZ6dlpu13-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 8:57:47 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 08:56:34 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from baerenklau.de.freebsd.org (baerenklau.de.freebsd.org [195.185.195.14]) by hub.freebsd.org (Postfix) with ESMTP id C4A3C37B400 for ; Sat, 23 Dec 2000 08:56:31 -0800 (PST) Received: (from uucp@localhost) by baerenklau.de.freebsd.org (8.8.8/8.8.8) with UUCP id RAA24027; Sat, 23 Dec 2000 17:56:30 +0100 (CET) (envelope-from wosch@panke.de.freebsd.org) Received: (from wosch@localhost) by paula.panke.de.freebsd.org (8.9.3/8.8.8) id RAA00442; Sat, 23 Dec 2000 17:53:19 +0100 (CET) (envelope-from wosch) Date: Sat, 23 Dec 2000 17:53:19 +0100 (CET) Message-Id: <200012231653.RAA00442@paula.panke.de.freebsd.org> From: Wolfram Schneider To: ports@freebsd.org Subject: New ports added/updated last two weeks Reply-To: ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: wosch@panke.de.freebsd.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Introduction - ------------ The FreeBSD Ports Collection offers a simple way for users and administrators to install applications. Each "port" listed here contains any patches necessary to make the original application source code compile and run on FreeBSD. Installing an application is as simple as downloading the port, unpacking it and typing make in the port directory. The Makefile automatically fetches the application source code, either from a local disk or via ftp, unpacks it on your system, applies the patches, and compiles. If all goes well, simply type make install to install the application. For more information about using ports, see the ports collection http://www.freebsd.org/handbook/ports.html and http://www.freebsd.org/ports/ There are currently 4275 ports in the FreeBSD Ports Collection. For a daily overview of changes in the ports tree, including added ports, deleted ports and security issues, you can also visit FreshPorts at http://freshports.org/ New ports added last two weeks - ------------------------------ Category archivers (http://www.freebsd.org/ports/archivers.html) ================================================================== cabextract-0.1 A program to extract Microsoft cabinet (.CAB) files Maintained by: sobomax@FreeBSD.org libcabinet-0.30 A portable library and utility to use Microsoft cabinet files (.cab) Maintained by: sobomax@FreeBSD.org p5-Archive-Tar-0.22 Perl module for creation and manipulation of tar files Maintained by: roman@xpert.com Also listed in: perl5 Requires: p5-Compress-Zlib-1.08 Category astro (http://www.freebsd.org/ports/astro.html) ================================================================== p5-GPS-0.12 Perl interface to GPS receivers Maintained by: jeremy@external.org Also listed in: perl5 sscalc-1.0 A sunrise/sunset time calculator Maintained by: kew@icehouse.net Category audio (http://www.freebsd.org/ports/audio.html) ================================================================== gsi-0.9.4 GSI - general sound interface Maintained by: ports@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1 id3el-0.05 An add-on to edit an id3 tag for mpg123-mode (mpg123.el) on Emacsen Maintained by: taoka@FreeBSD.org Also listed in: elisp Requires: mpg123-0.59r, mpg123.el-1.17 litestream-1.0.1r3 A lightweight, high-capacity MP3 streaming system. Maintained by: aaron@mutex.org Requires: gettext-0.10.35, gmake-3.79.1 mad-0.12.1b High-quality MPEG audio decoder Maintained by: jason-freebsd@mastaler.com Requires: gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1 p5-Xmms-0.10 Interactive remote control shell for xmms Maintained by: jeremy@external.org Also listed in: perl5 Requires: XFree86-3.3.6_6, esound-0.2.22, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, libaudiofile-0.1.9, libmikmod-3.1.9, libogg-20001018, libvorbis-20001018, libxml-1.8.10, p5-MP3-Info-0.80, p5-ReadLine-Perl-0.9908, p5-Term-ANSIColor-1.03, xmms-1.2.4 Category chinese (http://www.freebsd.org/ports/chinese.html) ================================================================== zh-chinput2-1.0 Another Chinese GB2312 X11 input server Maintained by: phj@cn.FreeBSD.org Also listed in: x11 Requires: XFree86-3.3.6_6, mysql-client-3.22.32 zh-emacs-20.7 GNU editing macros Maintained by: jseger@FreeBSD.org Also listed in: editors ipv6 Requires: XFree86-3.3.6_6, autoconf-2.13, db-2.7.7, gettext-0.10.35, gmake-3.79.1, m4-1.4, zh-kcfonts-1.05, zh-libtabe-0.1.9, zh-xcin-2.5.2.1 zh-enscript-a4-1.6.1 ASCII-to-PostScript filter Maintained by: kline@thought.org Requires: XFree86-3.3.6_6, freetype-1.3.1, gettext-0.10.35, ghostscript-6.01_1, gmake-3.79.1, png-1.0.8_1, zh-ghostscript-6.01, zh-ttfm-0.9.2 zh-ghostscript-6.01 Aladdin Postscript interpreter version 6 Maintained by: keith@FreeBSD.org Also listed in: print Requires: XFree86-3.3.6_6, freetype-1.3.1, ghostscript-6.01_1, png-1.0.8_1, zh-ttfm-0.9.2 zh-vflib-2.25.1 Vector font library with free vector font, BIG5 and GB supported Maintained by: keith@FreeBSD.org Also listed in: print Requires: XFree86-3.3.6_6, autoconf-2.13, freetype-1.3.1, imake-4.0.1, m4-1.4 Category comms (http://www.freebsd.org/ports/comms.html) ================================================================== comserv-1.0.1 A daemon for managing terminal server serial connections Maintained by: bsd@FreeBSD.org Also listed in: net Category converters (http://www.freebsd.org/ports/converters.html) ================================================================== cn2jp-1.4b cn2jp -- library for code translation between Chinese and Japanese Maintained by: leeym@cae.ce.ntu.edu.tw Also listed in: chinese japanese p5-Convert-TNEF-0.08 Perl module to read TNEF files Maintained by: roman@xpert.com Also listed in: perl5 Requires: p5-IO-stringy-1.216, p5-MIME-Base64-2.11, p5-MIME-Tools-5.409, p5-Mail-Tools-1.15, p5-Net-1.0703 p5-Convert-UUlib-0.11 Perl5 interface to the uulib library (a.k.a. uudeview/uuenview) Maintained by: blaz@amis.net Also listed in: perl5 Category deskutils (http://www.freebsd.org/ports/deskutils.html) ================================================================== loserjabber-2.0.1 A GTK interface to user journals on www.livejournal.com Maintained by: ryan@manunkind.org Requires: XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gtk-1.2.8 Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== avr-binutils-2.10.1 GNU binutils for Atmel AVR 8-bit RISC cross-development Maintained by: joerg@freebsd.org Requires: bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1 avr-gcc-2.95.2 FSF gcc-2.95.2 for Atmel AVR 8-bit RISC cross-development Maintained by: joerg@freebsd.org Requires: avr-binutils-2.10.1, gettext-0.10.35, gmake-3.79.1 avr-libc-20000207 a C and math library for the Atmel AVR controller family Maintained by: joerg@freebsd.org Requires: avr-binutils-2.10.1, avr-gcc-2.95.2, gettext-0.10.35, gmake-3.79.1 boaconstructor-0.0.4 A cross platform RAD GUI Building IDE for wxPython Maintained by: sobomax@FreeBSD.org Also listed in: python Requires: XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, jpeg-6b, png-1.0.8_1, py-wxPython-2.2.1_1, python-2.0, tiff-3.5.5, unzip-5.41, wxgtk-2.2.2 elib-emacs-1.0 Collection of useful routines for Emacs lisp programs Maintained by: okazaki@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.6_6, emacs-19.34b elib-emacs20-1.0 Collection of useful routines for Emacs lisp programs Maintained by: okazaki@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.6_6, emacs-20.7 gvd-1.0.1 GNU Visual Debugger, a graphical front-end to gdb and jdb Maintained by: sam@inf.enst.fr Requires: Mesa-3.2.1_1, ORBit-0.5.5, XFree86-3.3.6_6, esound-0.2.22, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnat-3.13p, gnomelibs-1.2.8_1, gtk-1.2.8, gtkada-1.2.10, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k kelp-1.3 KeLP is a software infrastructure for parallel computing Maintained by: keichii@iteration.net Requires: XFree86-3.3.6_6, gettext-0.10.35, gmake-3.79.1, mpich-1.2.1_1, tcl-8.0.5, tk-8.0.5 p5-Config-IniFiles-1.8 Perl5 module for reading .ini-style configuration files Maintained by: jeremy@external.org Also listed in: perl5 p5-File-Tail-0.97 Perl Module to read the end of a file as it's appended to Maintained by: jeremy@external.org Also listed in: perl5 Requires: p5-Time-HiRes-01.20 p5-Term-Size-0.2 A Perl5 module to handle window size changes. Maintained by: brad@kazrak.com Also listed in: perl5 pcl-cvs-emacs-2.9.9 An Emacs-based front-end to CVS Maintained by: okazaki@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.6_6, custom-emacs-1.9962, elib-emacs-1.0, emacs-19.34b pcl-cvs-emacs20-2.9.9 An Emacs-based front-end to CVS Maintained by: okazaki@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.6_6, diff-mode.el-1.8_1, elib-emacs20-1.0, emacs-20.7 py-game-0.4 A module designed to write games in Python Maintained by: sobomax@FreeBSD.org Also listed in: python Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, aalib-1.2, esound-0.2.22, freetype-1.3.1, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, jpeg-6b, libaudiofile-0.1.9, libmikmod-3.1.9, png-1.0.8_1, python-2.0, sdl-devel-1.1.6, sdl_image-1.1.0, sdl_mixer-1.0.6, sdl_ttf-1.2.2, smpeg-0.4.2, svgalib-1.4.2_1, tiff-3.5.5 Category editors (http://www.freebsd.org/ports/editors.html) ================================================================== e3-1.1 A full featured text editor written in assembler Maintained by: joseph@randomnetworks.com Requires: gettext-0.10.35, gmake-3.79.1, nasm-0.98 moleskine-0.4 A generic source code editor for the GNOME desktop Maintained by: sobomax@FreeBSD.org Also listed in: python gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gtk-1.2.8, gtkscintilla-0.2, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.15, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, py-gnome-1.0.53, py-gtk-0.6.6, py-gtkscintilla-0.1, python-2.0, scintilla-1.33, tiff-3.5.5, xpm-3.4k scite-1.33 A full-featured SCIntilla based Text Editor for GTK/GNOME Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, scintilla-1.33, tiff-3.5.5, xpm-3.4k Category emulators (http://www.freebsd.org/ports/emulators.html) ================================================================== freesci-0.3.0 A portable interpreter for SCI games, such as the Space Quest series. Maintained by: greid@ukug.uk.freebsd.org Requires: XFree86-3.3.6_6, glib-1.2.8, libggi-2.0b2.1, libgii-0.6, png-1.0.8_1 Category games (http://www.freebsd.org/ports/games.html) ================================================================== gnarr-2.0 A program for generating battle cries Maintained by: roam@FreeBSD.org nonsense-0.4 A nonsense text generator Maintained by: roam@FreeBSD.org Category german (http://www.freebsd.org/ports/german.html) ================================================================== de-citrix_ica-6.0.92 Citrix(R) client for the Microsoft Windows Terminal Server Maintained by: mb@imp.ch Also listed in: net comms linux Requires: linux_base-6.1 Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== blender-2.04 Fully functional 3D modeling/rendering/animation package Maintained by: olgeni@uli.it Requires: XFree86-3.3.6_6 geist-0.0.3 An object-based image creation/layout application Maintained by: ishmael27@home.com Requires: XFree86-3.3.6_6, edb-1.0.2, freetype-1.3.1, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, iconv-2.0_1, imlib2-1.0.0_1, jpeg-6b, libungif-4.1.0b1, libxml2-2.2.10, png-1.0.8_1, tiff-3.5.5 giblib-1.1.0 A utility library that includes a wrapper for imlib2 Maintained by: ishmael27@home.com Requires: XFree86-3.3.6_6, edb-1.0.2, freetype-1.3.1, imlib2-1.0.0_1, jpeg-6b, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 gom-0.1 A commandline text rendering utility that creates images from arbitrary text Maintained by: ishmael27@home.com Requires: XFree86-3.3.6_6, edb-1.0.2, freetype-1.3.1, giblib-1.1.0, imlib2-1.0.0_1, jpeg-6b, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 scrot-0.5 A screen capture utility that utilizes Imlib2 Maintained by: ishmael27@home.com Requires: XFree86-3.3.6_6, edb-1.0.2, freetype-1.3.1, giblib-1.1.0, imlib2-1.0.0_1, jpeg-6b, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 smpeg-xmms-0.3.3 A mpeg video plugin for XMMS Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, aalib-1.2, esound-0.2.22, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, libaudiofile-0.1.9, libmikmod-3.1.9, libogg-20001018, libtool-1.3.4_1, libvorbis-20001018, libxml-1.8.10, sdl-devel-1.1.6, smpeg-0.4.2, svgalib-1.4.2_1, xmms-1.2.4 threeDS-0.2 A Python module and viewer for loading and displaying models in 3DS format Maintained by: sobomax@FreeBSD.org Also listed in: python Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, jpeg-6b, py-imaging-1.1.1, py-numeric-17.1.2, py-opengl-1.5.6.b1, py-tkinter-2.0, python-2.0, tcl-8.3.1, tk-8.3.1 vid-1.0.1 Grab images from USB Cameras using the OV511 chipset Maintained by: roger@freebsd.org Requires: jpeg-6b, netpbm-9.9, png-1.0.8_1, tiff-3.5.5 Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-ASCIIdates98-fpw-1.0 A Japanese dictionary for PC terms in '98 ASCII Dates Book (EPWING V1 format) Maintained by: taoka@FreeBSD.org Requires: unzip-5.41 ja-CGdic-fpw-1.0 A Japanese dictionary for CG (EPWING V1 format) Maintained by: taoka@FreeBSD.org Requires: unzip-5.41 ja-bible_names-fpw-1.1.2 A dictionary for HITCHCOCK'S BIBLE NAMES (EPWING V1 format) Maintained by: taoka@FreeBSD.org Requires: unzip-5.41 ja-devil-fpw-1.0.2 Devil's dictionary (EPWING V1 format) Maintained by: taoka@FreeBSD.org Requires: unzip-5.41 ja-eijiro-fpw-1.0b EIJIRO English - Japanese Dictionary (EPWING V1 format) Maintained by: taoka@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1, ja-epwutil-1.1, ja-freepwing-1.3, ja-nkf-1.71, ja-p5-Jcode-0.60, p5-MIME-Base64-2.11, unzip-5.41 ja-epic4-0.9.13 The (E)nhanced (P)rogrammable (I)RC-II (C)lient with Japanese support Maintained by: anders@codefactory.se Also listed in: irc Requires: bzip2-1.0.1 ja-flower-fpw-1.0 A dictionary for flowers (EPWING V1 format) Maintained by: taoka@FreeBSD.org Requires: unzip-5.41 ja-fumeikai-fpw-1.0 An abbreviation (alphabet-->Japanese) dictionary (EPWING V1 format) Maintained by: taoka@FreeBSD.org Requires: unzip-5.41 ja-lsd-fpw-3.0 A Japanese - English Dictionary for Life Science (EPWING V1 format) Maintained by: taoka@FreeBSD.org Requires: unzip-5.41 ja-pejv-fpw-1.0.3 An Esperanto-Japanese dictionary (EPWING V1 format) Maintained by: taoka@FreeBSD.org Requires: unzip-5.41 ja-pips2200-1.3 Photo Image Print System for Linux -- EPSON PM-2200C (with Japanese messages) Maintained by: taoka@FreeBSD.org Also listed in: print linux Requires: ja-linux_locale-18.0, linux-gtk-1.2, linux-png-1.0.3, linux_base-6.1, pips2200-1.3_1, psutils-a4-1.17_1 ja-pips3000-1.3 Photo Image Print System for Linux -- EPSON PM-3000C (with Japanese messages) Maintained by: taoka@FreeBSD.org Also listed in: print linux Requires: ja-linux_locale-18.0, linux-gtk-1.2, linux-png-1.0.3, linux_base-6.1, pips3000-1.3_1, psutils-a4-1.17_1 ja-pips3300-1.3 Photo Image Print System for Linux -- EPSON PM-3300C (with Japanese messages) Maintained by: taoka@FreeBSD.org Also listed in: print linux Requires: ja-linux_locale-18.0, linux-gtk-1.2, linux-png-1.0.3, linux_base-6.1, pips3300-1.3_1, psutils-a4-1.17_1 ja-pips670-1.3 Photo Image Print System for Linux -- EPSON PM-670C (with Japanese messages) Maintained by: taoka@FreeBSD.org Also listed in: print linux Requires: ja-linux_locale-18.0, linux-gtk-1.2, linux-png-1.0.3, linux_base-6.1, pips670-1.3_1, psutils-a4-1.17_1 ja-pips750_2000-1.3 Photo Image Print System for Linux -- EPSON PM-750C PM-2000C (with Japanese messages) Maintained by: taoka@FreeBSD.org Also listed in: print linux Requires: ja-linux_locale-18.0, linux-gtk-1.2, linux-png-1.0.3, linux_base-6.1, pips750_2000-1.3_1, psutils-a4-1.17_1 ja-pips900-1.3 Photo Image Print System for Linux -- EPSON PM-900C (with Japanese messages) Maintained by: taoka@FreeBSD.org Also listed in: print linux Requires: ja-linux_locale-18.0, linux-gtk-1.2, linux-png-1.0.3, linux_base-6.1, pips900-1.3_1, psutils-a4-1.17_1 ja-roget-fpw-1.0.1 Roget's Thesaurus (EPWING V1 format) Maintained by: taoka@FreeBSD.org Requires: unzip-5.41 ja-ryaku-fpw-1.0.1 An abbreviation (alphabet-->Japanese) dictionary (EPWING V1 format) Maintained by: taoka@FreeBSD.org Requires: unzip-5.41 ja-wwasw-fpw-1.0.1 A biographical dictionary (EPWING V1 format) Maintained by: taoka@FreeBSD.org Requires: unzip-5.41 ja-wxg-1.0.b1 High-quality Canna-compatible Japanese input engine from A.I.SOFT Maintained by: knu@FreeBSD.org Requires: ja-Canna-3.2.2 ja-xyaku-1.3.0_1 A general dictionary/search engine front-end for X Maintained by: knu@idaemons.org Also listed in: textproc Requires: XFree86-3.3.6_6, autoconf-2.13, ja-eb-2.3.8, ja-edict-19990714, ja-ruby-eb-1.4, libtool-1.3.4_1, m4-1.4, ruby-1.6.2.p3 Category java (http://www.freebsd.org/ports/java.html) ================================================================== gnu-regexp-1.0.8 A regexp library for Java Maintained by: des@FreeBSD.org Also listed in: devel Requires: javavmwrapper-1.1, jdk-1.1.8 linux-jdk-1.3.0 Sun's Java Developers Kit Maintained by: kevlo@FreeBSD.org Also listed in: devel Requires: linux_base-6.1 Category lang (http://www.freebsd.org/ports/lang.html) ================================================================== compaq-cc-6.2.9.504 Compaq Alpha Tru64 C compiler Maintained by: obrien@FreeBSD.org Requires: bzip2-1.0.1, gettext-0.10.35, popt-1.5, rpm-3.0.6_4 gcc-2.95.2 GNU compiler suite Maintained by: obrien@FreeBSD.org Also listed in: java Requires: bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1 php-3.0.18 PHP3 stand-alone script interpreter Maintained by: roam@FreeBSD.org Also listed in: www t3x-681 A compiler for the minimum procedural language T3X Maintained by: nmh@t3x.org Also listed in: devel Category mail (http://www.freebsd.org/ports/mail.html) ================================================================== p5-Mail-IMAPClient-2.0.2 Perl5 module to talk to a IMAP4rev1 (RFC2060) server Maintained by: kaoru@kaisei.org Also listed in: perl5 stuphead-0.4.9 A lightweight MUA for X11 Maintained by: ozz@FreeBSD.org.ru Requires: ORBit-0.5.5, XFree86-3.3.6_6, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k Category math (http://www.freebsd.org/ports/math.html) ================================================================== glpk-1.1.1 A GNU Linear Programming Kit Maintained by: demon@FreeBSD.org Category misc (http://www.freebsd.org/ports/misc.html) ================================================================== ari-yahoo-1.4.1 A console Yahoo! messenger client Maintained by: greid@ukug.uk.freebsd.org Requires: gettext-0.10.35, gmake-3.79.1 ftree-1.6 A program to store and display family tree genealogy information under X Maintained by: user@unknown.nu Also listed in: linux Requires: linux_base-6.1 histring-1.0.0 A tool to highlight strings using the ANSI terminal escape sequences Maintained by: roam@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1 metatheme-0.5.0 An utility for managing "theme sets" that accomodate gtk, window manager, etc Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bonobo-0.30, bzip2-1.0.1, esound-0.2.22, gal-0.4.1, gconf-0.11, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01_1, glib-1.2.8, gmake-3.79.1, gnet-1.0.4, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gnomeprint-0.25, gnomevfs-0.4.2_1, gtk-1.2.8, gtkhtml-0.8, guile-1.4, iconv-2.0_1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.15, libtool-1.3.4_1, libungif-4.1.0b1, libunicode-0.4_2, libwww-5.3.1, libxml-1.8.10, oaf-0.6.1, png-1.0.8_1, popt-1.5, pspell-0.11.2, tiff-3.5.5, xpm-3.4k misterproper-0.3 A GNOME application designed to manage cyclic tasks Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k pybliographer-1.0.7 GUI and command-line tools for editing and searching bibliographic databases Maintained by: johann@egenetics.com Also listed in: python gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.15, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, py-gnome-1.0.53, py-gtk-0.6.6, python-2.0, recode-3.5, tiff-3.5.5, xpm-3.4k rname-1.0 Execute a program with a fake name Maintained by: roam@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1 Category net (http://www.freebsd.org/ports/net.html) ================================================================== balance-2.16 Simple but powerful generic tcp proxy with round robin features Maintained by: joseph@randomnetworks.com linpopup-1.2.0 X-Windows port of WinPopup Maintained by: roman@xpert.com Requires: XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, samba-2.0.7 netmask-2.3.3 Tool for generating terse netmasks in several common formats. Maintained by: mike@urgle.com Requires: autoconf-2.13, automake-1.4, gettext-0.10.35, gmake-3.79.1, libgnugetopt-1.1, m4-1.4 p5-Net-Jabber-1.0020 Net::Jabber provides a Perl user with access to the Jabber Instant Messaging protocol Maintained by: leeym@cae.ce.ntu.edu.tw Also listed in: perl5 Requires: expat-1.95.1_1, p5-Digest-MD5-2.12, p5-Time-100.010301, p5-Unicode-String-2.06, p5-XML-Parser-2.30, p5-XML-Stream-1.10 pdnsd-1.1.0b2 Cacheing (permanently, writes to disk on exit) DNS proxy-server Maintained by: roman@xpert.com sendip-1.3 SendIP is a commandline tool to allow sending arbitrary IP packets. Maintained by: joseph@randomnetworks.com tcpreplay-1.0.1 resend libpcap saved files (ala tcpdump -w) Maintained by: ports@freebsd.org Requires: autoconf-2.13, libnet-1.0.1b, m4-1.4 xsmbrowser-3.2 Tcl/Tk port of Windows' Network Neighborhood Maintained by: roman@xpert.com Requires: XFree86-3.3.6_6, expect-5.32.1, samba-2.0.7, tcl-8.2.3, tk-8.2.3 ymessenger-0.93.0 Yahoo! Messenger - Instant messaging client Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gtk-1.2.8 Category print (http://www.freebsd.org/ports/print.html) ================================================================== pips2200-1.3_1 Photo Image Print System for Linux --- EPSON PM-2200C Maintained by: taoka@FreeBSD.org Also listed in: linux Requires: linux-gtk-1.2, linux-png-1.0.3, linux_base-6.1, psutils-a4-1.17_1 pips3000-1.3_1 Photo Image Print System for Linux --- EPSON PM-3000C Maintained by: taoka@FreeBSD.org Also listed in: linux Requires: linux-gtk-1.2, linux-png-1.0.3, linux_base-6.1, psutils-a4-1.17_1 pips3300-1.3_1 Photo Image Print System for Linux --- EPSON PM-3300C Maintained by: taoka@FreeBSD.org Also listed in: linux Requires: linux-gtk-1.2, linux-png-1.0.3, linux_base-6.1, psutils-a4-1.17_1 pips670-1.3_1 Photo Image Print System for Linux --- EPSON PM-670C Maintained by: taoka@FreeBSD.org Also listed in: linux Requires: linux-gtk-1.2, linux-png-1.0.3, linux_base-6.1, psutils-a4-1.17_1 pips750_2000-1.3_1 Photo Image Print System for Linux --- EPSON PM-750C PM-2000C Maintained by: taoka@FreeBSD.org Also listed in: linux Requires: linux-gtk-1.2, linux-png-1.0.3, linux_base-6.1, psutils-a4-1.17_1 pips900-1.3_1 Photo Image Print System for Linux --- EPSON PM-900C Maintained by: taoka@FreeBSD.org Also listed in: linux Requires: linux-gtk-1.2, linux-png-1.0.3, linux_base-6.1, psutils-a4-1.17_1 Category security (http://www.freebsd.org/ports/security.html) ================================================================== aescrypt-0.6 A command-line AES encryption/decryption suite Maintained by: roam@FreeBSD.org cracklib-2.7 Password-checking library Maintained by: ajk@iu.edu p5-Crypt-SSLeay-0.18 Perl5 interface to allow p5-libwww LWP to make https connections Maintained by: ports@FreeBSD.org Also listed in: perl5 tea-total-0.1 Extremely small 128 bit private key based encryption/decryption system Maintained by: obrien@FreeBSD.org Category sysutils (http://www.freebsd.org/ports/sysutils.html) ================================================================== fsck_ext2fs-2.8 Ext2fs filesystem consistency check and interactive repair Maintained by: roman@xpert.com ipa-1.0.1 IP Accounting Daemon Maintained by: simon@simon.org.ua p5-Unix-Syslog-0.94 Perl5 interface to the UNIX syslog(3) calls Maintained by: blaz@amis.net Also listed in: perl5 rotate-1.1 log rotate Maintained by: kaz@kobe1995.net yawho-1.2 Simple 'w'-like program; displays connection type and login shell PID Maintained by: dannyboy@FreeBSD.org Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== sed-3.02 The GNU stream editor Maintained by: ports@FreeBSD.org p5-XML-Sablotron-0.44 a Perl interface to the Sablotron XSLT processor Maintained by: skv@protey.ru Also listed in: perl5 Requires: Sablot-0.44, expat-1.95.1_1, iconv-2.0_1 p5-XML-Stream-1.10 XML::Stream provides you with access to XML Stream Maintained by: leeym@cae.ce.ntu.edu.tw Also listed in: perl5 Requires: expat-1.95.1_1, p5-XML-Parser-2.30 p5-XML-XPath-1.02 Modules for parsing and evaluating XPath statements Maintained by: skv@protey.ru Also listed in: perl5 Requires: expat-1.95.1_1, p5-XML-Parser-2.30 p5-dTemplate-1.0 A powerful template handling logic with advanced features Maintained by: jeremy@external.org Also listed in: perl5 Sablot-0.44 Sablotron is an XSL processor fully implemented in C++ Maintained by: skv@protey.ru Requires: autoconf-2.13, expat-1.95.1_1, gettext-0.10.35, gmake-3.79.1, iconv-2.0_1, libtool-1.3.4_1, m4-1.4 Category www (http://www.freebsd.org/ports/www.html) ================================================================== bk2site-1.1.5 Transforms Netscape bookmarks into a Yahoo-like website with slashdot-like news Maintained by: clive@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4 comclear-1.1 A history cleaner for Netscape Navigator and Communicator Maintained by: roam@FreeBSD.org Requires: autoconf-2.13, automake-1.4, gettext-0.10.35, gmake-3.79.1, m4-1.4 linux-opera-4.0b4 A blazingly fast, full-featured, standards-compliant browser Maintained by: des@FreeBSD.org Also listed in: linux Requires: linux-jpeg-6b.9, linux-png-1.0.3, linux_base-6.1 mod_gzip-1.3.14.6e An Apache module that provides on-the fly gzipping for capable browsers Maintained by: mi@aldan.algebra.com Requires: apache-1.3.14 mod_layout-2.8.2 An Apache module that provides for prepending/appending HTML pages served Maintained by: mi@aldan.algebra.com Requires: apache-1.3.14 reportmagic-2.03 A web site statistics post-processor for Analog Maintained by: jeremy@external.org Requires: analog-4.11, freetype-1.3.1, gd-1.8.3, jpeg-6b, p5-Config-IniFiles-1.8, p5-GD-1.32, p5-GD-Graph-1.33, p5-GD-Graph3d-0.55, p5-GD-TextUtil-0.80, p5-HTML-Parser-3.14, png-1.0.8_1 skipstone-0.6.1 Web browser that uses Mozilla's renderer Maintained by: eric@osd.bsdi.com Requires: ORBit-0.5.5, XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, jpeg-6b, mozilla-embedded-M18, png-1.0.8_1 webresolve-0.0.1 Webresolve resolves IP addresses to host names in web log files. Maintained by: joseph@randomnetworks.com webstone-ssl-2.5 World wide web server benchmarking with SSL support Maintained by: k_nishizawa@anet.ne.jp Also listed in: benchmarks Requires: autoconf-2.13, m4-1.4 Category x11-fm (http://www.freebsd.org/ports/x11-fm.html) ================================================================== mtoolsfm-1.6 A graphical frontend to mtools Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, mtools-3.9.7_1 rox-base-0.1.29 Resources needed by several ROX desktop applications Maintained by: olgeni@uli.it rox-0.1.29 A simple and easy to use graphical file manager Maintained by: olgeni@uli.it Requires: XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, rox-base-0.1.29 Category x11-fonts (http://www.freebsd.org/ports/x11-fonts.html) ================================================================== koi8-u-gemini-x11-1.0 Ukrainian KOI8 fonts for X11R6 (koi8-u) Maintained by: mi@aldan.algebra.com Requires: XFree86-3.3.6_6 Category x11-toolkits (http://www.freebsd.org/ports/x11-toolkits.html) ================================================================== gtkada-1.2.10 Gtk binding for Ada Maintained by: sam@inf.enst.fr Requires: Mesa-3.2.1_1, ORBit-0.5.5, XFree86-3.3.6_6, autoconf-2.13, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnat-3.13p, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libungif-4.1.0b1, m4-1.4, png-1.0.8_1, tiff-3.5.5, xpm-3.4k gtkscintilla-0.2 A wrapper for the Scintilla editing component Maintained by: sobomax@FreeBSD.org Requires: XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, scintilla-1.33 py-gtkscintilla-0.1 A Python bindings for gtkscintilla library Maintained by: sobomax@FreeBSD.org Also listed in: python Requires: XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, gtkscintilla-0.2, python-2.0, scintilla-1.33 scintilla-1.33 A full-featured free source code editing component for GTK+ Maintained by: sobomax@FreeBSD.org Requires: XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8 Category x11-wm (http://www.freebsd.org/ports/x11-wm.html) ================================================================== aewm-0.9.19 ICCCM-compliant window manager based on 9wm Maintained by: trevor@FreeBSD.org Requires: XFree86-3.3.6_6, gettext-0.10.35, gmake-3.79.1 e16utils-0.16 Standalone menu and keybinding editors for enlightment 0.16 Maintained by: ports@FreeBSD.ORG Requires: XFree86-3.3.6_6, gdbm-1.8.0, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 swm-1.2.1 Window manager for low-memory systems, with title bars and shading Maintained by: trevor@FreeBSD.org Requires: XFree86-3.3.6_6, gettext-0.10.35, gmake-3.79.1 Category x11 (http://www.freebsd.org/ports/x11.html) ================================================================== buttonbox-0.03 Xlib-based application launcher Maintained by: trevor@FreeBSD.org Requires: XFree86-3.3.6_6 xvkbd-1.0 A virtual keyboard for X applications Maintained by: roam@FreeBSD.org Requires: XFree86-3.3.6_6 Updated ports last two weeks - ----------------------------------- Category archivers (http://www.freebsd.org/ports/archivers.html) ================================================================== lha-1.14i Archive files using LZW compression (.lzh files) Maintained by: ache@FreeBSD.org Category astro (http://www.freebsd.org/ports/astro.html) ================================================================== glunarclock-0.12 A GNOME applet which displays the current phase of the Moon Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k xephem-3.4 An interactive astronomical ephemeris program Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_6, open-motif-2.1.30_1, xpm-3.4k Category audio (http://www.freebsd.org/ports/audio.html) ================================================================== afsp-5.0 Audio file conversion utilities Maintained by: ginga@athena.club.ne.jp Requires: gettext-0.10.35, gmake-3.79.1 esound-0.2.22 A sound library for enlightenment package Maintained by: vanilla@FreeBSD.org Requires: libaudiofile-0.1.9, libtool-1.3.4_1 juke-0.6_1 A simple curses/ncurses based juke box program Maintained by: oyvindmo@initio.no kdemultimedia-2.0.1 Utilities for the KDE integrated X11 desktop Maintained by: kevlo@FreeBSD.org Also listed in: kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdelibs-2.0.1, kdesupport-2.0.1, lcms-1.06, libaudiofile-0.1.9, libmng-0.9.3, png-1.0.8_1, qt-2.2.3, tiff-3.5.5, xanim-2.80.2 lopster-0.9.7_1 GTK+ client for Napster Maintained by: roman@xpert.com Requires: XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8 mpg123.el-1.17 Front-end to mpg123 audio player for Emacsen Maintained by: taoka@FreeBSD.org Also listed in: elisp Requires: mpg123-0.59r spiralsynth-0.1.7 MIDI-capable synthesizer for X Maintained by: trevor@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, fltk-1.0.9 waveplay-2000.12.10 A simple wav file player Maintained by: yshd@na.rim.or.jp xhippo-2.8 A Generic music player for UNIX systems Maintained by: rod@zort.on.ca Requires: XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, mpg123-0.59r xmms-tfmx-0.3 XMMS Input plugin for playing TFMX tunes Maintained by: anders@fix.no Requires: XFree86-3.3.6_6, esound-0.2.22, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, libaudiofile-0.1.9, libmikmod-3.1.9, libogg-20001018, libtool-1.3.4_1, libvorbis-20001018, libxml-1.8.10, xmms-1.2.4 xmms-1.2.4 X Multimedia System --- An audio player with a Winamp GUI Maintained by: esk@ira.uka.de Requires: XFree86-3.3.6_6, esound-0.2.22, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, libaudiofile-0.1.9, libmikmod-3.1.9, libogg-20001018, libtool-1.3.4_1, libvorbis-20001018, libxml-1.8.10 Category benchmarks (http://www.freebsd.org/ports/benchmarks.html) ================================================================== tmetric-v0.4 A raw tool to aid in finding available bandwidth on a given pipe Maintained by: leeym@cae.ce.ntu.edu.tw Also listed in: net Category biology (http://www.freebsd.org/ports/biology.html) ================================================================== emboss-1.8.0 A collection of open source tools for genetic sequence analysis Maintained by: johann@egenetics.com Requires: XFree86-3.3.6_6, freetype-1.3.1, gd-1.8.3, gettext-0.10.35, gmake-3.79.1, jpeg-6b, libtool-1.3.4_1, png-1.0.8_1 kinemage-5.79 A molecular visualization program with special functions Maintained by: jeremy@external.org Requires: XFree86-3.3.6_6, open-motif-2.1.30_1, xpm-3.4k Category cad (http://www.freebsd.org/ports/cad.html) ================================================================== acs-0.28 A general purpose circuit simulator Maintained by: tg@FreeBSD.org xcircuit-2.1b9 An X11 drawing program [especially for circuit schematics] Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_6, bzip2-1.0.1, ghostscript-5.50a, png-1.0.8_1, xpm-3.4k Category chinese (http://www.freebsd.org/ports/chinese.html) ================================================================== zh-arphicttf-2.11_1 Four Chinese Big5/GB TrueType fonts made by Arphic Technology Maintained by: keith@FreeBSD.org Also listed in: x11-fonts Requires: XFree86-3.3.6_6, freetype-1.3.1, ja-p5-jcode.pl-2.11, perlftlib-1.2, xtt-common-1.3.0, zh-ttfm-0.9.2 zh-joe-2.8_2 Joe's own editor Maintained by: toasty@dragondata.com zh-moettf-2.0 Three Chinese BIG5 TrueType fonts: Kai LiShu Sung SungExt Maintained by: keith@FreeBSD.org Also listed in: x11-fonts Requires: XFree86-3.3.6_6, freetype-1.3.1, ja-p5-jcode.pl-2.11, perlftlib-1.2, unrar-2.50, xtt-common-1.3.0, zh-ttfm-0.9.2 zh-pine-4.31 A Program for Internet News & Email with Chinese(BIG-5) support Maintained by: avatar@mmlab.cse.yzu.edu.tw Also listed in: mail news zh-ttfm-0.9.2 A Big5/GB enhanced TrueType Font Manager Maintained by: keith@FreeBSD.org Also listed in: print Requires: freetype-1.3.1 zh-xmms-1.2.4 X Multimedia System --- An audio player with a Winamp GUI Maintained by: esk@ira.uka.de Requires: XFree86-3.3.6_6, esound-0.2.22, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, libaudiofile-0.1.9, libmikmod-3.1.9, libogg-20001018, libtool-1.3.4_1, libvorbis-20001018, libxml-1.8.10 Category converters (http://www.freebsd.org/ports/converters.html) ================================================================== fconv-1.1 Converts DOS or Mac-style files to Unix format, and vice-versa Maintained by: chris@FreeBSD.org iconv-extra-2.0 Additional charsets for the iconv library (those from the Unicode site) Maintained by: Konstantin.Chuguev@dante.org.uk Requires: iconv-2.0_1 iconv-rfc1345-2.0 Additional charset modules for the iconv library (from RFC1345) Maintained by: Konstantin.Chuguev@dante.org.uk Requires: iconv-2.0_1 iconv-2.0_1 Charset conversion library and utilities Maintained by: Konstantin.Chuguev@dante.org.uk kdesupport-2.0.1 Mime and UUENCODE/DECODE libraries for the KDE integrated X11 desktop Maintained by: kevlo@FreeBSD.org Also listed in: kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, lcms-1.06, libmng-0.9.3, png-1.0.8_1, qt-2.2.3 mule-ucs-emacs20-0.83 Universal encoding system for GNU Emacs 20 Maintained by: okazaki@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.6_6, emacs-20.7 Category databases (http://www.freebsd.org/ports/databases.html) ================================================================== gigabase-2.21 GigaBASE: Object-Relational Database Management System Maintained by: ozz@FreeBSD.org.ru Requires: gettext-0.10.35, gmake-3.79.1 mysql-client-3.23.29a Multithreaded SQL database (client) Maintained by: dirk@FreeBSD.org Requires: libtool-1.3.4_1 mysql-server-3.23.29a Multithreaded SQL database (server) Maintained by: dirk@FreeBSD.org Requires: libtool-1.3.4_1, mysql-client-3.23.29a mytop-0.5 Mytop - a top clone for MySQL Maintained by: leeym@cae.ce.ntu.edu.tw Requires: mysql-client-3.22.32, p5-DBI-1.14, p5-Data-ShowTable-3.3, p5-Mysql-modules-1.2215, p5-Term-ANSIColor-1.03, p5-Term-ReadKey-2.14 postgresql-7.0.3 A robust, next generation, object-relational DBMS Maintained by: girgen@partitur.se Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4 py-MySQLdb-0.3.0 Access a MySQL database through Python Maintained by: sobomax@FreeBSD.org Also listed in: python Requires: mysql-client-3.22.32, python-2.0 unixODBC-1.8.13 ODBC library suite for Unix Maintained by: ports@FreeBSD.org Requires: libtool-1.3.4_1 Category deskutils (http://www.freebsd.org/ports/deskutils.html) ================================================================== gnofin-0.8.4 Light-weight GNOME based financial management program Maintained by: jedgar@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k gnucash-1.4.9 Quicken-like money and finace manager Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bzip2-1.0.1, eperl-2.2.14, esound-0.2.22, freetype-1.3.1, g-wrap-0.9.12, gd-1.8.3, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gnuplot-3.7.1, gtk-1.2.8, guile-1.4, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, p5-HTML-0.6, p5-libwww-5.48, png-1.0.8_1, slib-2c9, swig-1.1p5_3, tiff-3.5.5, xpm-3.4k Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== ORBit-0.5.5 High-performance CORBA ORB with support for the C language Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: gettext-0.10.35, glib-1.2.8, gmake-3.79.1, libtool-1.3.4_1 asis-3.13p GNAT implementation of the Ada Semantic Interface Specification Maintained by: thomas@cuivre.fr.eu.org Requires: gettext-0.10.35, gmake-3.79.1, gnat-3.13p bonobo-0.30 The component and compound document system for GNOME Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01_1, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gnomeprint-0.25, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, oaf-0.6.1, png-1.0.8_1, popt-1.5, tiff-3.5.5, xpm-3.4k cvsweb-1.104.1.45 WWW CGI script to browse CVS repository trees (Zeller's version + enhancements) Maintained by: knu@FreeBSD.org Also listed in: www gnomevfs-0.4.2_1 GNOME Virtual File System Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bonobo-0.30, bzip2-1.0.1, esound-0.2.22, gconf-0.11, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01_1, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gnomeprint-0.25, gtk-1.2.8, guile-1.4, iconv-2.0_1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, oaf-0.6.1, png-1.0.8_1, popt-1.5, tiff-3.5.5, xpm-3.4k gpasm-0.8.10 GPASM is the GNU Pic 12c508 and 16c84 microcontrollers family Maintained by: sam@inf.enst.fr gperf-2.7.2 Generates perfect hash functions for sets of keywords Maintained by: dirk.meyer@dinoex.sub.org i386-rtems-chill-2.95.2_11 FSF CHILL-gcc-2.95.2 base-port for RTEMS development Maintained by: jeh@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, i386-rtems-binutils-2.10_2, i386-rtems-gcc-2.95.2_11, m4-1.4 i386-rtems-g77-2.95.2_11 FSF F77-gcc-2.95.2 base-port for RTEMS development Maintained by: jeh@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, i386-rtems-binutils-2.10_2, i386-rtems-gcc-2.95.2_11, m4-1.4 i386-rtems-gcc-2.95.2_11 FSF C/C++-gcc-2.95.2 base-port for RTEMS development Maintained by: jeh@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, i386-rtems-binutils-2.10_2, m4-1.4 i960-rtems-gcc-2.95.2_11 FSF C/C++-gcc-2.95.2 base-port for RTEMS development Maintained by: jeh@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, i960-rtems-binutils-2.10_2, m4-1.4 libglade-0.15 GNOME glade library Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, esound-0.2.22, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k libgtop-1.0.10_1 GNOME top library Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, esound-0.2.22, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomelibs-1.2.8_1, gtk-1.2.8, guile-1.4, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k libsock-1.1.0 Multi-threaded TCP/IP networking library Maintained by: jasone@FreeBSD.org Requires: cook-2.16_1, gettext-0.10.35, libstash-1.1.0 libstash-1.1.0 Library of algorithms and data structures Maintained by: jasone@FreeBSD.org Requires: cook-2.16_1, gettext-0.10.35 m68k-rtems-chill-2.95.2_11 FSF CHILL-gcc-2.95.2 base-port for RTEMS development Maintained by: jeh@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, m68k-rtems-binutils-2.10_2, m68k-rtems-gcc-2.95.2_11 m68k-rtems-g77-2.95.2_11 FSF F77-gcc-2.95.2 base-port for RTEMS development Maintained by: jeh@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, m68k-rtems-binutils-2.10_2, m68k-rtems-gcc-2.95.2_11 m68k-rtems-gcc-2.95.2_11 FSF C/C++-gcc-2.95.2 base-port for RTEMS development Maintained by: jeh@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, m68k-rtems-binutils-2.10_2 mips64orion-rtems-chill-2.95.2_11 FSF CHILL-gcc-2.95.2 base-port for RTEMS development Maintained by: jeh@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, mips64orion-rtems-binutils-2.10_2, mips64orion-rtems-gcc-2.95.2_11 mips64orion-rtems-g77-2.95.2_11 FSF F77-gcc-2.95.2 base-port for RTEMS development Maintained by: jeh@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, mips64orion-rtems-binutils-2.10_2, mips64orion-rtems-gcc-2.95.2_11 mips64orion-rtems-gcc-2.95.2_11 FSF C/C++-gcc-2.95.2 base-port for RTEMS development Maintained by: jeh@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, mips64orion-rtems-binutils-2.10_2 omniORB-3.0.2 A CORBA 2 implementation Maintained by: ejc@bazzle.com Requires: gettext-0.10.35, gmake-3.79.1, python-2.0 p5-Date-Manip-5.39 Perl5 module containing date manipulation routines Maintained by: kapr@crosswinds.net Also listed in: perl5 p5-IPC-Shareable-0.53 Share Perl variables between processes Maintained by: leeym@cae.ce.ntu.edu.tw Also listed in: perl5 Requires: p5-Storable-1.0.6 p5-Parse-RecDescent-1.79 A recursive descent parsing framework for Perl Maintained by: gehicks@cisco.com Also listed in: perl5 pharmacy-0.2.1a GNOME frontend for CVS Maintained by: jedgar@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k portlint-2.3 A verifier for FreeBSD port directory Maintained by: mharo@FreeBSD.org powerpc-rtems-chill-2.95.2_11 FSF CHILL-gcc-2.95.2 base-port for RTEMS development Maintained by: jeh@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, powerpc-rtems-binutils-2.10_2, powerpc-rtems-gcc-2.95.2_11 powerpc-rtems-g77-2.95.2_11 FSF F77-gcc-2.95.2 base-port for RTEMS development Maintained by: jeh@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, powerpc-rtems-binutils-2.10_2, powerpc-rtems-gcc-2.95.2_11 powerpc-rtems-gcc-2.95.2_11 FSF C/C++-gcc-2.95.2 base-port for RTEMS development Maintained by: jeh@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, powerpc-rtems-binutils-2.10_2 ruby-amstd-1.9.6 A collection of miscellaneous Ruby modules Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.2.p3 ruby-racc-runtime-1.3.2 Runtime libraries for Racc, an LALR(1) parser generator for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.2.p3, ruby-amstd-1.9.6 ruby-racc-1.3.2 An LALR(1) parser generator for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.2.p3, ruby-amstd-1.9.6, ruby-racc-runtime-1.3.2 ruby-slang-0.51 S-Lang extension module for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: libslang-1.4.2, ruby-1.6.2.p3 ruby-strscan-0.6.0 Fast string scanner class for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.2.p3, ruby-amstd-1.9.6 sh-rtems-chill-2.95.2_11 FSF CHILL-gcc-2.95.2 base-port for RTEMS development Maintained by: jeh@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, sh-rtems-binutils-2.10_2, sh-rtems-gcc-2.95.2_11 sh-rtems-g77-2.95.2_11 FSF F77-gcc-2.95.2 base-port for RTEMS development Maintained by: jeh@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, sh-rtems-binutils-2.10_2, sh-rtems-gcc-2.95.2_11 sh-rtems-gcc-2.95.2_11 FSF C/C++-gcc-2.95.2 base-port for RTEMS development Maintained by: jeh@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, sh-rtems-binutils-2.10_2 sparc-rtems-chill-2.95.2_11 FSF CHILL-gcc-2.95.2 base-port for RTEMS development Maintained by: jeh@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, sparc-rtems-binutils-2.10_2, sparc-rtems-gcc-2.95.2_11 sparc-rtems-g77-2.95.2_11 FSF F77-gcc-2.95.2 base-port for RTEMS development Maintained by: jeh@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, sparc-rtems-binutils-2.10_2, sparc-rtems-gcc-2.95.2_11 sparc-rtems-gcc-2.95.2_11 FSF C/C++-gcc-2.95.2 base-port for RTEMS development Maintained by: jeh@FreeBSD.org Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4, sparc-rtems-binutils-2.10_2 tclcl-1.0b10 Tcl/C++ interface used by ns and nam Maintained by: obonilla@fisicc-ufm.edu Requires: XFree86-3.3.6_6, otcl-1.0a6, tcl-8.2.3, tk-8.2.3 tcllib-0.8 A collection of utility modules for Tcl Maintained by: mi@aldan.algebra.com tkcvs-6.4 Tcl/Tk frontends to CVS and diff Maintained by: shanee@augusta.de Also listed in: tk82 Requires: XFree86-3.3.6_6, tcl-8.2.3, tk-8.2.3 Category editors (http://www.freebsd.org/ports/editors.html) ================================================================== gedit-0.9.4 A small but powerful text editor for Gnome Desktop Environment Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01_1, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gnomeprint-0.25, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.15, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k iiimecf-emacs20-0.3 Internet/Intranet Input Method Emacs Client Framework for GNU Emacs 20 Maintained by: okazaki@FreeBSD.org Also listed in: elisp Requires: XFree86-3.3.6_6, emacs-20.7, mule-ucs-emacs20-0.83 joe-2.8_2 Joe's own editor Maintained by: toasty@dragondata.com koffice-2.0.1 Office suite for KDE2 Maintained by: kevlo@FreeBSD.org Also listed in: kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, autoconf-2.13, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, iconv-2.0_1, jpeg-6b, kdelibs-2.0.1, kdesupport-2.0.1, lcms-1.06, libaudiofile-0.1.9, libmng-0.9.3, m4-1.4, png-1.0.8_1, qt-2.2.3, tiff-3.5.5 vim-lite-5.7.19 Vi "workalike", with many additional features Maintained by: obrien@FreeBSD.org vim-5.7.19 Vi "workalike", with many additional features Maintained by: obrien@FreeBSD.org Requires: XFree86-3.3.6_6, open-motif-2.1.30_1, tcl-8.0.5, xpm-3.4k vim+ruby-6.0q Vi IMproved version 6 with embedded Ruby interpreter Maintained by: obrien@FreeBSD.org Also listed in: ruby Requires: XFree86-3.3.6_6, autoconf-2.13, m4-1.4, open-motif-2.1.30_1, python-2.0, ruby-1.6.2.p3, tcl-8.0.5, xpm-3.4k vim-6.0q Vi "workalike", with many additional features Maintained by: obrien@FreeBSD.org Requires: XFree86-3.3.6_6, open-motif-2.1.30_1, python-2.0, tcl-8.0.5, xpm-3.4k xemacs-basic-mule-packages-1.2 Basic XEmacs elisp packages with Mule(basic-mule) Maintained by: kiri@FreeBSD.org Also listed in: elisp xemacs-comm-packages-2.2 XEmacs elisp packages for Communication(comm) Maintained by: kiri@FreeBSD.org Also listed in: elisp xemacs-games-packages-1.2 XEmacs elisp packages for Games(games) Maintained by: kiri@FreeBSD.org Also listed in: elisp xemacs-libs-packages-1.2 XEmacs elisp packages for Libraries(libs) Maintained by: kiri@FreeBSD.org Also listed in: elisp xemacs-mule-packages-1.1 XEmacs elisp packages for Mule(mule) Maintained by: kiri@FreeBSD.org Also listed in: elisp xemacs-oa-packages-1.2 XEmacs elisp packages for Office Automation(oa) Maintained by: kiri@FreeBSD.org Also listed in: elisp xemacs-packages-1.7 Basic XEmacs elisp packages(basic) Maintained by: kiri@FreeBSD.org Also listed in: elisp xemacs-prog-packages-2.3 XEmacs elisp packages for Programing(prog) Maintained by: kiri@FreeBSD.org Also listed in: elisp xemacs-wp-packages-1.2 XEmacs elisp packages for Word Processing(wp) Maintained by: kiri@FreeBSD.org Also listed in: elisp Category emulators (http://www.freebsd.org/ports/emulators.html) ================================================================== mtools-3.9.7_1 A collection of tools for manipulating MSDOS files Maintained by: jmz@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1 vgb-bin-20 Nintendo GameBoy(tm) emulator (closed binary version of vgb) Maintained by: lioux@FreeBSD.org Requires: XFree86-3.3.6_6 xmame-0.37b7.1 UNIX/X11 port of the Multi Arcade Machine Emulator (MAME) Maintained by: c9710216@studentmail.newcastle.edu.au Requires: XFree86-3.3.6_6, gettext-0.10.35, gmake-3.79.1, xpm-3.4k Category ftp (http://www.freebsd.org/ports/ftp.html) ================================================================== cftp-0.10 Comfortable FTP, a full screen ftp client Maintained by: ports@FreeBSD.org Also listed in: ipv6 curl-7.5.1 Non-interactive tool to get files from FTP, GOPHER, HTTP(S) servers Maintained by: roam@FreeBSD.org Also listed in: www Requires: autoconf-2.13, automake-1.4, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, m4-1.4 lftp-2.3.5 Shell-like command line ftp client Maintained by: cj@vallcom.net Also listed in: ipv6 Requires: bzip2-1.0.1, gettext-0.10.35 pavuk-gtk-0.9.27 HTTP, FTP and Gopher mirroring tool Maintained by: ports@FreeBSD.org Also listed in: www Requires: XFree86-3.3.6_6, autoconf-2.13, automake-1.4, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, m4-1.4 Category games (http://www.freebsd.org/ports/games.html) ================================================================== crossfire-0.94.3_1 Multiplayer graphical arcade and adventure game made for X-Windows Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_6, gsm-1.0.10, imake-4.0.1, rplay-3.3.2, xpm-3.4k frotz-2.40 Infocom games interpreter Maintained by: ports@FreeBSD.org gcompris-0.3.4 A simple Gnome-based education game for children starting at 3 Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, automake-1.4, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k gma-0.6 Go-moku game which learns playing the game from studying its opponent Maintained by: ijliao@csie.nctu.edu.tw HLDS-3.1.0.4 Half-Life server for Linux - includes Counterstrike Maintained by: markm@FreeBSD.org Also listed in: linux Requires: linux_base-6.1 heroes-0.8 A game of yore similar to the "Tron" and "Nibbles" Maintained by: sobomax@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, aalib-1.2, esound-0.2.22, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, libaudiofile-0.1.9, libgnugetopt-1.1, libmikmod-3.1.9, sdl-devel-1.1.6, sdl_mixer-1.0.6, smpeg-0.4.2, svgalib-1.4.2_1 kdegames-2.0.1 Games for the KDE integrated X11 desktop Maintained by: kevlo@FreeBSD.org Also listed in: kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, autoconf-2.13, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdelibs-2.0.1, kdesupport-2.0.1, lcms-1.06, libaudiofile-0.1.9, libmng-0.9.3, m4-1.4, png-1.0.8_1, qt-2.2.3, tiff-3.5.5 lbreakout-001104 A nice clone of classical Breakout game Maintained by: sobomax@FreeBSD.org Requires: XFree86-3.3.6_6, esound-0.2.22, gettext-0.10.35, gmake-3.79.1, libaudiofile-0.1.9, sdl-1.0.8_1, svgalib-1.4.2_1 ltris-001115 An another tetris clone but a good one with bunch of cool features Maintained by: sobomax@FreeBSD.org Requires: XFree86-3.3.6_6, esound-0.2.22, gettext-0.10.35, gmake-3.79.1, libaudiofile-0.1.9, sdl-1.0.8_1, svgalib-1.4.2_1 mindguard-0.0.0.3 Helpful utility for detecting and jamming harmful mind-control rays Maintained by: kris@FreeBSD.org Requires: XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gtk-1.2.8 oneko-sakura5-1.2 A cat, Sakura or Tomoyo chasing a mouse all over the screen Maintained by: hotaru@tail.net Requires: XFree86-3.3.6_6 ptkei-000906 A Python/Tk graphical client for Wolfpack Empire servers Maintained by: darius@dons.net.au Requires: XFree86-3.3.6_6, py-pmw-0.8.4, py-tkinter-2.0, python-2.0, tcl-8.3.1, tk-8.3.1 qstat-2.4.a A command line program to query game servers on the net Maintained by: darius@dons.net.au wolfpack-4.2.8 Long term multiplayer strategy game Maintained by: darius@dons.net.au xevil-2.02 A fast-action, networked, anti-social, kill-everything game Maintained by: goranrunfeldt@home.se Requires: XFree86-3.3.6_6, unzip-5.41, xpm-3.4k Category german (http://www.freebsd.org/ports/german.html) ================================================================== de-BBBike-3.01 A route-finder for cyclists in Berlin and Brandenburg (only german) Maintained by: eserte@onlineoffice.de Requires: XFree86-3.3.6_6, p5-Tk-800.021 Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== chbg-1.2 Change Background Picture with time period Maintained by: p@dancris.com Requires: ORBit-0.5.5, XFree86-3.3.6_6, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k enfle-20001011 Simple plugin-based graphics viewer Maintained by: samy@goldmoon.org Requires: XFree86-3.3.6_6, bzip2-1.0.1, jpeg-6b, libtool-1.3.4_1, png-1.0.8_1 evas-0.0.2 A highly optimized canvas library Maintained by: ishmael27@home.com Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, edb-1.0.2, freetype-1.3.1, imlib2-1.0.0_1, jpeg-6b, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 gifsicle-1.23 Manipulates GIF images and animations Maintained by: bradh@uunet.co.za Requires: XFree86-3.3.6_6 gimp-1.1.30 Developer's beta release of the GNU Image Manipulation Program Maintained by: vanilla@FreeBSD.org Also listed in: gnome Requires: XFree86-3.3.6_6, aalib-1.2, bzip2-1.0.1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, jpeg-6b, libtool-1.3.4_1, mpeg_lib-1.3.1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k giram-0.1.7 Giram is Really A Modeller Maintained by: bfoz@glue.umd.edu Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, bzip2-1.0.1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, png-1.0.8_1, povray-3.1g graphviz-1.7b Graph Visualization Software from AT&T and Bell Labs Maintained by: ports@FreeBSD.org Also listed in: tk83 Requires: XFree86-3.3.6_6, autoconf-2.13, automake-1.4, freetype-1.3.1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, libtool-1.3.4_1, m4-1.4, png-1.0.8_1, tcl-8.3.1, tk-8.3.1, xpm-3.4k kdegraphics-2.0.1 Utilities for the KDE integrated X11 desktop Maintained by: kevlo@FreeBSD.org Also listed in: kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdelibs-2.0.1, kdesupport-2.0.1, lcms-1.06, libaudiofile-0.1.9, libmng-0.9.3, libwww-5.3.1, png-1.0.8_1, qt-2.2.3, teTeX-1.0.7, tiff-3.5.5 libwmf-0.1.21 Tools and library routines for converting microsoft's wmf (windows metafile) Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_6, freetype-1.3.1, png-1.0.8_1, xpm-3.4k netpbm-9.9 A toolkit for conversion of images between different formats Maintained by: ports@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1, jpeg-6b, png-1.0.8_1, tiff-3.5.5 p5-Image-Size-2.903 Perl5 module to determine the size of images in several common formats Maintained by: ports@FreeBSD.org Also listed in: www perl5 pngcheck-1.99.3 Checks the integrity of PNG images Maintained by: ports@FreeBSD.org pngcrush-1.5.3 An optimizer for PNG files Maintained by: jedgar@FreeBSD.org py-opengl-1.5.6.b1 An OpenGL (and related library) interface for Python Maintained by: sobomax@FreeBSD.org Also listed in: python Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, jpeg-6b, py-imaging-1.1.1, py-numeric-17.1.2, py-tkinter-2.0, python-2.0, tcl-8.3.1, tk-8.3.1 sdl_image-1.1.0 A simple library to load images of various formats as SDL surfaces Maintained by: sobomax@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, aalib-1.2, esound-0.2.22, gettext-0.10.35, gmake-3.79.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, png-1.0.8_1, sdl-devel-1.1.6, svgalib-1.4.2_1, tiff-3.5.5 smpeg-0.4.2 A free MPEG1 video player library with sound support Maintained by: cpiazza@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, aalib-1.2, esound-0.2.22, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, libaudiofile-0.1.9, libtool-1.3.4_1, sdl-devel-1.1.6, svgalib-1.4.2_1 tgif-nls-4.1.40 A two-dimensional drawing tool with NLS message catalogs support Maintained by: one@netlab.is.tsukuba.ac.jp Requires: XFree86-3.3.6_6, gettext-0.10.35, jpeg-6b, netpbm-9.9, png-1.0.8_1, tiff-3.5.5 tiff2png-0.81c Converts TIFF images to PNG format Maintained by: ports@FreeBSD.org Requires: jpeg-6b, png-1.0.8_1, tiff-3.5.5 utah-glx-0.9.20001128 A hardware OpenGL support for XFree86 X-Servers Maintained by: 3d@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, autoconf-2.13, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, m4-1.4, tcl-8.3.1 xanim-2.80.2 Play most popular animation formats and show pictures Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_6 xine-0.3.2 A MPEG-1 and MPEG-2 player Maintained by: roman@xpert.com Requires: XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 xmovie-1.5.3.1 A movie player for MPEG-2 and Quicktime movies Maintained by: sanpei@FreeBSD.org Also listed in: linux Requires: XFree86-3.3.6_6, bzip2-1.0.1, gettext-0.10.35, linux-jpeg-6b.9, linux-png-1.0.3, linux_base-6.1, popt-1.5, rpm-3.0.6_4, rpm2cpio-1.0 xmps-0.1.3 X MPEG Player System - a MPEG-1 video player with a very nice GUI Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: Mesa-3.2.1_1, ORBit-0.5.5, XFree86-3.3.6_6, aalib-1.2, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, nasm-0.98, png-1.0.8_1, sdl-devel-1.1.6, smpeg-0.4.2, svgalib-1.4.2_1, tiff-3.5.5, xpm-3.4k xpaint-2.6.1 A simple paint program Maintained by: jseger@FreeBSD.org Requires: XFree86-3.3.6_6, jpeg-6b, png-1.0.8_1, tiff-3.5.5, xpm-3.4k zimg-4.4.0 Image-generator that uses ASCII input files to create PNGs/EDFs Maintained by: ports@FreeBSD.org Requires: freetype-1.3.1, gd-1.8.3, jpeg-6b, png-1.0.8_1 Category irc (http://www.freebsd.org/ports/irc.html) ================================================================== BitchX-1.0c17_1 An alternative ircII color client with optional GTK/GNOME support Maintained by: cj@vallcom.net Also listed in: gnome Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4 epic4-0.9.13 The (E)nhanced (P)rogrammable (I)RC-II (C)lient Maintained by: anders@codefactory.se Requires: bzip2-1.0.1 irssi-0.7.97 A modular IRC client with many features Maintained by: jim@FreeBSD.org Also listed in: ipv6 Requires: bzip2-1.0.1, gettext-0.10.35, glib-1.2.8 sic-0.22a Another 'Internet Relay Chat' Client Maintained by: sec@42.org xchat-1.6.2 An X11 IRC client using the GTK+ toolkit, and optionally, GNOME Maintained by: jim@FreeBSD.org Also listed in: gnome Requires: XFree86-3.3.6_6, bzip2-1.0.1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 zircon-1.18.245 An X11 interface to Internet Relay Chat Maintained by: jseger@FreeBSD.org Also listed in: tk82 Requires: XFree86-3.3.6_6, tcl-8.2.3, tk-8.2.3 Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-gal-0.4.1 A collection of widgets taken from GNOME gnumeric and evolution Maintained by: nakai@FreeBSD.org Also listed in: x11-toolkits gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bonobo-0.30, bzip2-1.0.1, esound-0.2.22, gconf-0.11, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01_1, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gnomeprint-0.25, gnomevfs-0.4.2_1, gtk-1.2.8, guile-1.4, iconv-2.0_1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.15, libtool-1.3.4_1, libungif-4.1.0b1, libunicode-0.4_2, libxml-1.8.10, oaf-0.6.1, png-1.0.8_1, popt-1.5, tiff-3.5.5, xpm-3.4k ja-gnumeric-0.60 The GNOME spreadsheet Maintained by: nakai@FreeBSD.org Also listed in: math gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bonobo-0.30, bzip2-1.0.1, esound-0.2.22, gal-0.4.1, gconf-0.11, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01_1, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomebasic-0.0.16, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gnomeprint-0.25, gnomevfs-0.4.2_1, gtk-1.2.8, guile-1.4, iconv-2.0_1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.15, libole2-0.1.7, libtool-1.3.4_1, libungif-4.1.0b1, libunicode-0.4_2, libxml-1.8.10, oaf-0.6.1, png-1.0.8_1, popt-1.5, python-2.0, tiff-3.5.5, xpm-3.4k ja-groff-0.100_1 Japanese enhancement of GNU groff Maintained by: okazaki@FreeBSD.org Also listed in: print Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4 ja-hns-2.10.0 Hyper NIKKI System, a CGI system for Electric Diary Interchange Maintained by: hnsmaster@h14m.org Also listed in: www perl5 ja-less+iso-358.254 Less + zcat + ISO-2022 - a pager similar to more and pg Maintained by: k5@cheerful.com Requires: autoconf-2.13, m4-1.4 ja-mutt-1.2.5.j2 Text-based mail client (Japanised Version) Maintained by: shuna@pop16.odn.ne.jp Also listed in: mail Requires: autoconf-2.13, automake-1.4, gettext-0.10.35, gmake-3.79.1, ja-libslang-1.4.2.j0, m4-1.4, urlview-0.9 ja-ng-canna-1.4.2.1 A very lightweight Emacs-clone with Japanese and Canna support Maintained by: honda@kashio.info.mie-u.ac.jp Also listed in: editors Requires: ja-Canna-3.2.2 ja-ng-1.4.2.1 A very light Emacs-clone with japanese support Maintained by: ginga@athena.club.ne.jp Also listed in: editors ja-postgresql-7.0.3.20001204 A robust, next generation, object-relational DBMS Maintained by: saito@a2z.co.jp Also listed in: databases Requires: gettext-0.10.35, gmake-3.79.1, patch-2.5 ja-rbnamazu-0.4 A client of the "Namazu" full-text search engine written in Ruby Maintained by: knu@FreeBSD.org Also listed in: textproc ruby Requires: ruby-1.6.2.p3, ruby-amstd-1.9.6, ruby-optparse-0.7.5, ruby-racc-runtime-1.3.2, ruby-rdtool-0.6.6, ruby-strscan-0.6.0 ja-ruby-slang-0.51 S-Lang-jp extension module for Ruby Maintained by: knu@FreeBSD.org Also listed in: devel ruby Requires: ja-libslang-1.4.2.j0, ruby-1.6.2.p3 ja-samba-2.0.7.j2.1 A free SMB and CIFS client and server for UNIX Maintained by: nakaji@jp.FreeBSD.org Also listed in: net Requires: autoconf-2.13, bzip2-1.0.1, gettext-0.10.35, m4-1.4 ja-w3m-ssl-0.1.11.p.23 A pager/text-based WWW browser with Japanese and SSL support Maintained by: nobutaka@nobutaka.com Also listed in: www ipv6 Requires: boehm-gc-5.0a4, patch-2.5 ja-w3m-0.1.11.p.23 A pager/text-based WWW browser with Japanese support Maintained by: nobutaka@nobutaka.com Also listed in: www ipv6 Requires: boehm-gc-5.0a4, patch-2.5 Category java (http://www.freebsd.org/ports/java.html) ================================================================== shujit-0.6.9 A Just In Time java bytecode compiler Maintained by: sobomax@FreeBSD.org Requires: gdbm-1.8.0, gettext-0.10.35, gmake-3.79.1, javavmwrapper-1.1, jdk-1.1.8, ruby-1.6.2.p3 Category korean (http://www.freebsd.org/ports/korean.html) ================================================================== ko-hanterm-3.1.4 An xterm hacked for managing Korean languages Maintained by: cjh@FreeBSD.org Also listed in: x11 Requires: XFree86-3.3.6_6, ko-johabfonts-3.04 Category lang (http://www.freebsd.org/ports/lang.html) ================================================================== STk-4.0.1 A scheme interpreter with full access to the Tk graphical package Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_6 dylan-2.3.4 CMU Gwydion project interpreter and compiler for the Dylan language Maintained by: housel@acm.org Requires: gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1 egcs-1.1.2 EGCS enhanced version of the GNU compiler suite Maintained by: obrien@FreeBSD.org Requires: bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1 gcc-devel-20001211 EGCS enhanced version of the GNU compiler suite (inprogress version) Maintained by: obrien@FreeBSD.org Also listed in: java Requires: bison-1.28, gettext-0.10.35, gmake-3.79.1 gnat-glade-3.13p GNU Ada distributed systems annex Maintained by: sam@inf.enst.fr Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, gnat-3.13p, m4-1.4 gnomebasic-0.0.16 Provide Visual Basic compatible functionality for GNOME, especially VBA Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k intercal-0.20 The C-INTERCAL compiler, ick, and supporting libraries Maintained by: mph@freebsd.org librep-0.13.3 An Emacs Lisp like runtime library Maintained by: sobomax@FreeBSD.org Requires: gdbm-1.8.0, gettext-0.10.35, gmake-3.79.1 mit-scheme-7.5.11 MIT Scheme: includes runtime, compiler, and edwin binaries Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_6 otcl-1.0a6 MIT Object Tcl Maintained by: obonilla@fisicc-ufm.edu Requires: XFree86-3.3.6_6, autoconf-2.13, m4-1.4, tcl-8.2.3, tk-8.2.3 p5-ExtUtils-F77-1.13 Helps link C programs with Fortran subroutines Maintained by: jmz@FreeBSD.org Also listed in: perl5 tinycobol-0.4 A tiny COBOL compiler for IA32 platforms Maintained by: patrick@freebsd.org Requires: db-2.7.7, gettext-0.10.35, gmake-3.79.1 Category mail (http://www.freebsd.org/ports/mail.html) ================================================================== balsa-1.0.1 A mail reader for the gnome interface Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01_1, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gnomeprint-0.25, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libproplist-0.10.1, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, pspell-0.11.2, tiff-3.5.5, xpm-3.4k cclient-4.8 Mark Crispen's C-client mail access routines Maintained by: ports@FreeBSD.org Also listed in: devel cyrus-1.6.24 The cyrus mail server, supporting POP3, KPOP, and IMAP4 protocols Maintained by: ports@FreeBSD.org Also listed in: tcl82 Requires: cyrus-sasl-1.5.24_4, makedepend-2000.09.07, tcl-8.2.3 evolution-0.8 An integrated mail, calendar and address book distributed suite Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bonobo-0.30, bzip2-1.0.1, esound-0.2.22, gal-0.4.1, gconf-0.11, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01_1, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gnomeprint-0.25, gnomevfs-0.4.2_1, gtk-1.2.8, gtkhtml-0.8, guile-1.4, iconv-2.0_1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.15, libtool-1.3.4_1, libungif-4.1.0b1, libunicode-0.4_2, libwww-5.3.1, libxml-1.8.10, oaf-0.6.1, openldap-1.2.11_1, png-1.0.8_1, popt-1.5, pspell-0.11.2, tiff-3.5.5, xpm-3.4k exim-3.20 High performance MTA for Unix systems on the Internet Maintained by: sheldonh@FreeBSD.org Requires: XFree86-3.3.6_6 ezmlm-web-2.1 CGI script that lets you manage ezmlm-idx mailing lists through the web Maintained by: guy-ezmlm@rucus.ru.ac.za Also listed in: www Requires: apache-1.3.14, ezmlm-idx-0.40, p5-Mail-Ezmlm-0.02.1, p5-Mail-Tools-1.15, p5-Net-1.0703, qmail-1.03 fetchmail-5.6.1 Batch mail retrieval/forwarding utility for pop2, pop3, apop, imap Maintained by: ve@sci.fi Also listed in: ipv6 Requires: gettext-0.10.35 imap-uw-4.8 University of Washington IMAP4rev1/POP2/POP3 mail servers Maintained by: ports@FreeBSD.org Requires: cclient-4.8 minimalist-2.2 A minimalistic mailing list manager Maintained by: gmarco@giovannelli.it pine-4.31 PINE(tm) -- a Program for Internet News & Email Maintained by: ports@FreeBSD.org Also listed in: news Requires: cclient-4.8 postfix-20001217 An alternative to widely-used Sendmail Maintained by: dwcjr@inethouston.net qmail-ldap-1.03.20001201_1 A SECURE, reliable, efficient, simple, and FAST MTA for UNIX systems Maintained by: lioux@FreeBSD.org Requires: openldap-1.2.11_1 qpopper-3.1.2 Berkeley POP 3 server (now maintained by Qualcomm) Maintained by: jeff@isni.net ruby-tmail-0.8.15 A mail manipulating library for Ruby, with RFC822 and MIME multipart support Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.2.p3, ruby-amstd-1.9.6, ruby-racc-runtime-1.3.2, ruby-strscan-0.6.0 sendmail-8.11.1_1 Reliable, highly configurable mail transfer agent with associated utilities Maintained by: dirk.meyer@dinoex.sub.org Also listed in: ipv6 smapi-001211 Modified Squish MSGAPI Maintained by: gonza@techline.ru teapop-0.27 Yet another RFC1939 compliant POP3 server Maintained by: jim@FreeBSD.org tkrat-2.0 A mail user agent for X with a Tcl/Tk user interface Maintained by: ports@FreeBSD.org Also listed in: tk82 Requires: XFree86-3.3.6_6, cclient-4.8, tcl-8.2.3, tk-8.2.3 wanderlust-emacs-2.4.0 Yet another message interface on Emacsen Maintained by: nobutaka@nobutaka.com Also listed in: elisp Requires: XFree86-3.3.6_6, apel-emacs-10.2, custom-emacs-1.9962, emacs-19.34b, flim-emacs-1.13.2, ja-nkf-1.71, semi-emacs-1.13.7 wanderlust-emacs20-2.4.0 Yet another message interface on Emacsen Maintained by: nobutaka@nobutaka.com Also listed in: elisp Requires: XFree86-3.3.6_6, apel-emacs20-10.2, bitmap-emacs20-8.3, bitmap-fonts-1.0.p1, emacs-20.7, flim-emacs20-1.13.2, semi-emacs20-1.13.7 wanderlust-mule-2.4.0 Yet another message interface on Emacsen Maintained by: nobutaka@nobutaka.com Also listed in: elisp Requires: XFree86-3.3.6_6, apel-mule-10.2, bitmap-fonts-1.0.p1, bitmap-mule-8.3, custom-mule-1.9962, flim-mule-1.13.2, mule-2.3, mule-common-2.3, semi-mule-1.13.7 wanderlust-xemacs20-2.4.0 Yet another message interface on Emacsen Maintained by: nobutaka@nobutaka.com Also listed in: elisp Requires: XFree86-3.3.6_6, apel-xemacs20-10.2, flim-xemacs20-1.13.2, ja-nkf-1.71, jpeg-6b, png-1.0.8_1, semi-xemacs20-1.13.7, xemacs-20.4, xpm-3.4k wanderlust-xemacs21-mule-2.4.0 Yet another message interface on Emacsen Maintained by: nobutaka@nobutaka.com Also listed in: elisp Requires: XFree86-3.3.6_6, apel-xemacs21-mule-10.2, faces-1.6.1, flim-xemacs21-mule-1.13.2, gettext-0.10.35, jpeg-6b, png-1.0.8_1, semi-xemacs21-mule-1.13.7, tiff-3.5.5, xemacs-basic-mule-packages-1.2, xemacs-mule-21.1.12, xemacs-mule-common-21.1.12, xemacs-packages-1.7, xpm-3.4k xc-mail-20001216 Mail client for X which supports POP and PGP Maintained by: trevor@FreeBSD.org Requires: XFree86-3.3.6_6, gettext-0.10.35, gmake-3.79.1, xclasses-1.1.0, xpm-3.4k Category math (http://www.freebsd.org/ports/math.html) ================================================================== abs-0.8 A free spreadsheet with graphical user interface Maintained by: gmarco@giovannelli.it Requires: XFree86-3.3.6_6, xpm-3.4k freefem-3.5.1 A language for the Finite Element Method Maintained by: ports@FreeBSD.org Also listed in: cad Requires: XFree86-3.3.6_6, libtool-1.3.4_1 gnumeric-0.60 The GNOME spreadsheet Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bonobo-0.30, bzip2-1.0.1, esound-0.2.22, gal-0.4.1, gconf-0.11, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01_1, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomebasic-0.0.16, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gnomeprint-0.25, gnomevfs-0.4.2_1, gtk-1.2.8, guile-1.4, iconv-2.0_1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.15, libole2-0.1.7, libtool-1.3.4_1, libungif-4.1.0b1, libunicode-0.4_2, libxml-1.8.10, oaf-0.6.1, png-1.0.8_1, popt-1.5, python-2.0, tiff-3.5.5, xpm-3.4k py-numeric-17.1.2 The Numeric Extension to Python Maintained by: tg@FreeBSD.org Also listed in: python Requires: python-2.0 oleo-1.99.14 The GNU spreadsheet for X11 and terminals Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_6, autoconf-2.13, gettext-0.10.35, m4-1.4 scigraphica-0.6.1 A scientific application for data analysis and technical graphics Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gtk-1.2.8, gtkextra-0.99.12, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, py-numeric-17.1.2, python-2.0, tiff-3.5.5, xpm-3.4k spin-3.4.2 An on-the-fly verification system for asynchronous concurrent systems Maintained by: jhanna@home.com Category misc (http://www.freebsd.org/ports/misc.html) ================================================================== amanda-2.3.0.4 The Advanced Maryland Automatic Network Disk Archiver Maintained by: ports@FreeBSD.org diction-0.9 GNU diction and style Maintained by: ports@FreeBSD.org Requires: autoconf-2.13, m4-1.4 kdeutils-2.0.1 Utilities for the KDE integrated X11 desktop Maintained by: kevlo@FreeBSD.org Also listed in: kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdelibs-2.0.1, kdesupport-2.0.1, lcms-1.06, libaudiofile-0.1.9, libmng-0.9.3, png-1.0.8_1, qt-2.2.3, tiff-3.5.5 qhacc-0.6.5 Simple QT2-based financial manager Maintained by: ports@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, jpeg-6b, lcms-1.06, libmng-0.9.3, png-1.0.8_1, qt-2.2.3 screen-3.9.8_4 A multi-screen window manager Maintained by: ache@FreeBSD.org yaunc-0.05 Yet Another uptimes.net client Maintained by: ports@FreeBSD.org ytree-1.71 DOS-XTREE(tm) look-a-like file manager Maintained by: ports@FreeBSD.org Category net (http://www.freebsd.org/ports/net.html) ================================================================== bind-9.0.1_2 The Berkeley Internet Name Daemon, an implementation of DNS Maintained by: ports@FreeBSD.org Also listed in: ipv6 centericq-3.13.3 ICQ client with a useful ncurses menu and window-based interface Maintained by: ijliao@csie.nctu.edu.tw Requires: gettext-0.10.35, gmake-3.79.1 citrix_ica-6.0.908 Citrix(R) client for the Microsoft Windows Terminal Server Maintained by: mb@imp.ch Also listed in: comms linux Requires: linux_base-6.1 dante-1.1.6 A circuit-level firewall/proxy Maintained by: anders@fix.no Also listed in: security Requires: libtool-1.3.4_1 etherboot-4.6.10 Netboot FreeBSD a.out/ELF kernels Maintained by: ambrisko@whistle.com Requires: gettext-0.10.35, gmake-3.79.1, nasm-0.98 gaim-0.11.0pre3 Gtk+ open-source 'clone' of AOL's Instant Messenger client Maintained by: jim@FreeBSD.org Requires: XFree86-3.3.6_6, bzip2-1.0.1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, libtool-1.3.4_1 gale-0.99a_1 A secure instant messaging system Maintained by: peterh@sapros.com Requires: adns-1.0, boehm-gc-5.0a4, libwww-5.3.1, rsaref-2.0 gnet-1.0.4 A simple network library built upon Glib Maintained by: nakai@FreeBSD.org Requires: glib-1.2.8, libtool-1.3.4_1 isc-dhcp3-3.0.b2.11 ISC Dynamic Host Configuration Protocol client and server code Maintained by: obrien@FreeBSD.org kdenetwork-2.0.1 Network modules for KDE2 Maintained by: kevlo@FreeBSD.org Also listed in: news kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, autoconf-2.13, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdelibs-2.0.1, kdesupport-2.0.1, lcms-1.06, libaudiofile-0.1.9, libmng-0.9.3, m4-1.4, png-1.0.8_1, qt-2.2.3, tiff-3.5.5, uulib-0.5.13 licq-1.0.2 X11 and QT-based ICQ-compatible program Maintained by: green@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, autoconf-2.13, automake-1.4, gettext-0.10.35, gmake-3.79.1, jpeg-6b, lcms-1.06, libmng-0.9.3, m4-1.4, png-1.0.8_1, qt-2.2.3 mrtg-2.9.6 The multi-router traffic grapher Maintained by: demon@FreeBSD.org Requires: freetype-1.3.1, gd-1.8.3, jpeg-6b, png-1.0.8_1 nam-1.0a9 The UCB/LBNL Network Animator Maintained by: obonilla@fisicc-ufm.edu Requires: XFree86-3.3.6_6, otcl-1.0a6, tcl-8.2.3, tclcl-1.0b10, tk-8.2.3 ncat-1.1.0 Like cat, but input or output is via a TCP/IP socket Maintained by: jasone@FreeBSD.org Requires: cook-2.16_1, gettext-0.10.35 ns-2.1.b7 The UCB/LBNL Network Simulator Version 2 Maintained by: obonilla@fisicc-ufm.edu Requires: XFree86-3.3.6_6, otcl-1.0a6, tcl-8.2.3, tclcl-1.0b10, tk-8.2.3 p5-Net-Daemon-0.33 Perl5 extension for portable daemons Maintained by: vanilla@FreeBSD.ORG Also listed in: perl5 proxy-1.1.0 Transparent logging TCP/IP proxy Maintained by: jasone@FreeBSD.org Requires: cook-2.16_1, gettext-0.10.35 radius-basic-3.6B_1 A remote authentication server Maintained by: ports@FreeBSD.org ruby-drb-1.3 Distributed Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.2.p3, ruby-acl-1.0 rwhois-1.5.7 The Internic referral whois server Maintained by: ports@FreeBSD.org Also listed in: ipv6 tn5250-0.16.0 5250 Telnet protocol and Terminal Maintained by: ports@FreeBSD.org Requires: autoconf-2.13, automake-1.4, libtool-1.3.4_1, m4-1.4 ttt-1.6 Tele Traffic Tapper, a network traffic monitoring tool Maintained by: kjc@csl.sony.co.jp Also listed in: tk83 ipv6 Requires: XFree86-3.3.6_6, blt-2.4u, tcl-8.3.1, tk-8.3.1 Category news (http://www.freebsd.org/ports/news.html) ================================================================== fidogate-4.4.2 Fido-Internet Gateway and Tosser Maintained by: dirk.meyer@dinoex.sub.org Also listed in: mail Requires: gettext-0.10.35, gmake-3.79.1, ifmail-2.15 leafnode-1.9.17 USENET software package designed for small sites Maintained by: brian@Awfulhak.org pan-0.9.2 Threaded GNOME newsreader based on Agent for Windows Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01_1, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gnomeprint-0.25, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, uulib-0.5.13, xpm-3.4k Category print (http://www.freebsd.org/ports/print.html) ================================================================== freetype2-2.0.1 A free and portable TrueType font rendering engine Maintained by: jseger@FreeBSD.org Requires: bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1 ghostscript-6.01_1 Aladdin Postscript interpreter version 6 Maintained by: andreas@FreeBSD.org Requires: XFree86-3.3.6_6, gettext-0.10.35, gmake-3.79.1, jpeg-6b, png-1.0.8_1 pips760-1.2_1 Photo Image Print System for Linux --- EPSON PM-760C Maintained by: taoka@FreeBSD.org Also listed in: linux Requires: linux-gtk-1.2, linux_base-6.1, psutils-a4-1.17_1 pips770-1.2_1 Photo Image Print System for Linux --- EPSON PM-770C Maintained by: taoka@FreeBSD.org Also listed in: linux Requires: linux-gtk-1.2, linux_base-6.1, psutils-a4-1.17_1 pips800-1.2_1 Photo Image Print System for Linux --- EPSON PM-800C Maintained by: taoka@FreeBSD.org Also listed in: linux Requires: linux-gtk-1.2, linux_base-6.1, psutils-a4-1.17_1 pips820_3300-1.2_1 Photo Image Print System for Linux --- EPSON PM-820C PM-3300C Maintained by: taoka@FreeBSD.org Also listed in: linux Requires: linux-gtk-1.2, linux_base-6.1, psutils-a4-1.17_1 transfig-3.2.3c Tools to convert Xfig's .fig files Maintained by: chuckr@FreeBSD.org Requires: XFree86-3.3.6_6, jpeg-6b, netpbm-9.9, png-1.0.8_1, tiff-3.5.5, xpm-3.4k xtem-8.00 Tcl/Tk-based development menu (environment?) for TeX Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_6, tcl-8.2.3, tk-8.2.3 Category russian (http://www.freebsd.org/ports/russian.html) ================================================================== ru-apache+mod_ssl-1.3.14+30.0+2.7.1 The Russian Apache webserver with SSL/TLS functionality Maintained by: demon@FreeBSD.org Also listed in: www security Requires: mm-1.1.3 Category security (http://www.freebsd.org/ports/security.html) ================================================================== firewalk-0.99.1 A network auditing tool Maintained by: shipley@dis.org Requires: libnet-1.0.1b gnupg-1.0.4_2 The GNU Privacy Guard Maintained by: kuriyama@FreeBSD.org heimdal-0.3d A re-implementation of Kerberos V Maintained by: nectar@FreeBSD.ORG Also listed in: ipv6 Requires: XFree86-3.3.6_6 mhash-0.8.4 Library provides an easy way to access strong hashes such as MD5 and SHA1 Maintained by: roam@FreeBSD.org Requires: libtool-1.3.4_1 nessus-libnasl-1.0.6_1 Nessus Attack Scripting Language Maintained by: olgeni@uli.it Requires: libtool-1.3.4_1, nessus-libraries-1.0.6_1 nessus-libraries-1.0.6_1 Libraries for Nessus, the security scanner Maintained by: olgeni@uli.it Requires: libtool-1.3.4_1 nessus-plugins-1.0.6_1 Plugins for Nessus, the security scanner Maintained by: olgeni@uli.it Requires: XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, lynx-2.8.3.1, nessus-1.0.6_1, nessus-libnasl-1.0.6_1, nessus-libraries-1.0.6_1, nmap-2.53 nessus-1.0.6_1 A security scanner: looks for vulnerabilities in a given network Maintained by: olgeni@uli.it Requires: XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, libtool-1.3.4_1, nessus-libnasl-1.0.6_1, nessus-libraries-1.0.6_1 saint-3.1.1 Security Administrator's Integrated Network Tool Maintained by: cj@vallcom.net Requires: nmap-2.53 stunnel-3.10 SSL encryption wrapper for standard network daemons Maintained by: martti.kuparinen@ericsson.com Requires: autoconf-2.13, m4-1.4 uvscan_dat-4110 AntiVirus DAT file for uvscan Maintained by: kris@FreeBSD.org xinetd-2.1.8.9pre13 Replacement for inetd with control and logging Maintained by: vanilla@FreeBSD.org Category shells (http://www.freebsd.org/ports/shells.html) ================================================================== es-0.9.b1_1 An extensible shell, derived from plan9's rc Maintained by: ljrittle@acm.org tcsh-6.10.00 An extended C-shell with many useful features Maintained by: ports@FreeBSD.org Category sysutils (http://www.freebsd.org/ports/sysutils.html) ================================================================== LPRng-3.6.26 An Enhanced Printer Spooler Maintained by: desmo@bandwidth.org Also listed in: print Requires: gettext-0.10.35, gmake-3.79.1 gnomecontrolcenter-1.2.2_1 Control center for GNOME project Maintained by: vanilla@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k lsof-4.53.2 Lists information about open files (similar to fstat(1)) Maintained by: obrien@FreeBSD.org syslog-ng-1.4.10 A powerfull syslogd replacement Maintained by: vince@blue-box.net Requires: libol-0.2.20 webmin-0.83 Web-based interface for system administration for Unix Maintained by: olgeni@uli.it Requires: p5-Net-SSLeay-1.05 wmbattery-1.13 Window Maker dockapp that displays info about your battery Maintained by: ports@FreeBSD.org Also listed in: windowmaker Requires: XFree86-3.3.6_6, xpm-3.4k Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== antiword-0.31 An application to display Microsoft(tm) Word files Maintained by: leeym@cae.ce.ntu.edu.tw cocoon-1.8 100% pure Java publishing framework servlet Maintained by: kuriyama@FreeBSD.org Also listed in: www java Requires: apache-1.3.14, apache-jserv-1.1.2, javavmwrapper-1.1, jdk-1.1.8, jsdk-2.0 diff-mode.el-1.8_1 A mode for viewing/editing context diffs in Emacsen Maintained by: okazaki@FreeBSD.org Also listed in: elisp dsssl-docbook-modular-1.60 DSSSL stylesheets for the DocBook DTD by Norman Walsh Maintained by: kuriyama@FreeBSD.org Requires: docbook-3.0, iso8879-1986, mkcatalog-1.1, unzip-5.41 eruby-0.1.3 Interprets Ruby code embedded in a text file like PHP/ePerl/ASP/JSP Maintained by: knu@FreeBSD.org Also listed in: www ruby Requires: ruby-1.6.2.p3 gxditview-1.16.1 An X11 based previewer for groff output Maintained by: dom@myrddin.demon.co.uk Requires: XFree86-3.3.6_6 latex2html-99.2b8 Convert LaTeX documents to HTML Maintained by: brett@peloton.runet.edu Requires: XFree86-3.3.6_6, ghostscript-5.50a, jpeg-6b, libwww-5.3.1, netpbm-9.9, png-1.0.8_1, teTeX-1.0.7, tiff-3.5.5 libxml2-2.2.10 Xml parser library for GNOME Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: gettext-0.10.35, gmake-3.79.1, iconv-2.0_1, libtool-1.3.4_1 mkcatalog-1.1 A maintainance utility for sgml catalog files Maintained by: shige@FreeBSD.org py-martel-0.4_1,1 A parser generator for regular languages, written in Python Maintained by: johann@egenetics.com Also listed in: biology python Requires: py-mxTextTools-1.1.1, python-2.0 Category www (http://www.freebsd.org/ports/www.html) ================================================================== apache_fp-1.3.14 The Apache webserver with w/MS Frontpage 2000 Extentions Maintained by: hetzels@westbend.net asp2php-gtk-0.75.11 Converts ASP scripts to PHP Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gtk-1.2.8 encompass-0.3.0 A lightweight web browser for the Gnome Desktop Environment Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bonobo-0.30, bzip2-1.0.1, esound-0.2.22, gal-0.4.1, gconf-0.11, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01_1, glib-1.2.8, glibwww-0.2, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gnomeprint-0.25, gnomevfs-0.4.2_1, gtk-1.2.8, gtkhtml-0.8, guile-1.4, iconv-2.0_1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.15, libungif-4.1.0b1, libunicode-0.4_2, libwww-5.3.1, libxml-1.8.10, oaf-0.6.1, png-1.0.8_1, popt-1.5, pspell-0.11.2, tiff-3.5.5, xpm-3.4k evg-1.3.1 Create index pages in HTML for photo galleries Maintained by: demon@FreeBSD.org Requires: ImageMagick-5.2.3, XFree86-3.3.6_6, bzip2-1.0.1, freetype-1.3.1, ghostscript-5.50a, hdf-4.1r3, jbigkit-1.2, jpeg-6b, mpeg2codec-1.2, netpbm-9.9, png-1.0.8_1, python-2.0, tiff-3.5.5, transfig-3.2.3c, xpm-3.4k, xv-3.10a gtkhtml-0.8 Lightweight HTML rendering/printing/editing engine Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bonobo-0.30, bzip2-1.0.1, esound-0.2.22, gal-0.4.1, gconf-0.11, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01_1, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gnomeprint-0.25, gnomevfs-0.4.2_1, gtk-1.2.8, guile-1.4, iconv-2.0_1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.15, libtool-1.3.4_1, libungif-4.1.0b1, libunicode-0.4_2, libwww-5.3.1, libxml-1.8.10, oaf-0.6.1, png-1.0.8_1, popt-1.5, pspell-0.11.2, tiff-3.5.5, xpm-3.4k libghttp-1.0.8 GNOME http client library Maintained by: vanilla@FreeBSD.org Also listed in: gnome Requires: libtool-1.3.4_1 links-0.93 Lynx-like text WWW browser Maintained by: demon@FreeBSD.org lynx-2.8.4d14 A non-graphical, text-based World-Wide Web client Maintained by: ache@FreeBSD.org Also listed in: ipv6 Requires: bzip2-1.0.1, gettext-0.10.35 mod_php-3.0.18 PHP3 module for Apache Maintained by: dirk@FreeBSD.org Requires: apache-1.3.14 mod_php-4.0.4 PHP4 module for Apache Maintained by: dirk@FreeBSD.org Requires: apache-1.3.14, libtool-1.3.4_1 mozilla-M18_1 The mozilla ver 0.0 communicator web-surfboard Maintained by: reg@FreeBSD.org Requires: ORBit-0.5.5, XFree86-3.3.6_6, bzip2-1.0.1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, jpeg-6b, png-1.0.8_1 oops-1.5.2 A caching web proxy server Maintained by: ozz@FreeBSD.org.ru Requires: gigabase-2.21 p5-HTML-Embperl-1.3.0 A module to allow embedded perl in HTML documents Maintained by: kapr@crosswinds.net Also listed in: perl5 Requires: p5-Apache-1.24 p5-HTML-Mason-0.89.5 High-performance, dynamic web site authoring system Maintained by: dsh@vlink.ru Also listed in: perl5 Requires: p5-MLDBM-2.00 p5-HTML-Parser-3.14 Perl5 module for parse HTML tag Maintained by: demon@FreeBSD.org Also listed in: perl5 Requires: p5-HTML-Tagset-3.03 w3m-ssl-0.1.11.p.23 A pager/text-based WWW browser with SSL support Maintained by: nobutaka@nobutaka.com Also listed in: ipv6 Requires: boehm-gc-5.0a4, patch-2.5 w3m-0.1.11.p.23 A pager/text-based WWW browser Maintained by: nobutaka@nobutaka.com Also listed in: ipv6 Requires: boehm-gc-5.0a4, patch-2.5 webfs-1.6 A simple http server for static content Maintained by: jedgar@FreeBSD.org xswallow-1.0.18 A general-purpose, user-configurable plugin for Netscape Maintained by: conrads@home.com Requires: XFree86-3.3.6_6 zope-2.2.4 An object-based web application platform with database access Maintained by: nbm@FreeBSD.org Also listed in: python Requires: python-1.5.2 Category x11-fonts (http://www.freebsd.org/ports/x11-fonts.html) ================================================================== XFree86-fontDefaultBitmaps-4.0.1 X11R6.4/XFree86-4.0 default bitmap fonts Maintained by: taguchi@tohoku.iij.ad.jp Requires: XFree86-clients-4.0.1, XFree86-fontEncodings-4.0.1, XFree86-libraries-4.0.1_2, imake-4.0.1 nucleus-0.77_1 Another font package for X Maintained by: olgeni@uli.it Requires: XFree86-3.3.6_6 Category x11-toolkits (http://www.freebsd.org/ports/x11-toolkits.html) ================================================================== bakery-0.4.0 A C++ Application Framework for use with Gnome-- Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gnomemm-1.1.12, gtk-1.2.8, gtkmm-1.2.3_1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libsigc++-1.0.1, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k blt-2.4u A Tk extension (with shared libs) Maintained by: kjc@csl.sony.co.jp Also listed in: tk83 Requires: XFree86-3.3.6_6, tcl-8.3.1, tk-8.3.1 clean-theme-gtk-200011261817 The Clean GTK theme engine Maintained by: sobomax@FreeBSD.org Requires: XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, libtool-1.3.4_1 eazel-themes-0.0.01211 A nice GTK+ and Sawfish themes created by Eazel Maintained by: sobomax@altavista.net Requires: XFree86-3.3.6_6, bzip2-1.0.1, gdbm-1.8.0, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, gtk-engines-0.10, imlib-1.9.8.1, jpeg-6b, librep-0.13.3, libungif-4.1.0b1, png-1.0.8_1, rep-gtk-0.15, sawfish-0.34_1, tiff-3.5.5 gal-0.4.1 A collection of widgets taken from GNOME gnumeric and evolution Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bonobo-0.30, bzip2-1.0.1, esound-0.2.22, gconf-0.11, gdk-pixbuf-0.9.0, gettext-0.10.35, ghostscript-6.01_1, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gnomeprint-0.25, gnomevfs-0.4.2_1, gtk-1.2.8, guile-1.4, iconv-2.0_1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libglade-0.15, libtool-1.3.4_1, libungif-4.1.0b1, libunicode-0.4_2, libxml-1.8.10, oaf-0.6.1, png-1.0.8_1, popt-1.5, tiff-3.5.5, xpm-3.4k py-wxPython-2.2.1_1 Python bindings for the wxWindows/GTK GUI toolkit Maintained by: nectar@FreeBSD.ORG Also listed in: python Requires: XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, jpeg-6b, png-1.0.8_1, python-2.0, tiff-3.5.5, wxgtk-2.2.2 qt-2.2.3 A C++ X GUI toolkit Maintained by: will@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, gettext-0.10.35, gmake-3.79.1, jpeg-6b, lcms-1.06, libmng-0.9.3, png-1.0.8_1 rep-gtk-0.15 GTK+ binding for rep Lisp interpreter Maintained by: sobomax@FreeBSD.org Requires: XFree86-3.3.6_6, gdbm-1.8.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, librep-0.13.3 xenostep-200011270836 A GTK+ theme engine based on the Xenophilia and Interface theme engines Maintained by: sobomax@FreeBSD.org Requires: XFree86-3.3.6_6, gettext-0.10.35, glib-1.2.8, gtk-1.2.8 Category x11-wm (http://www.freebsd.org/ports/x11-wm.html) ================================================================== gwm-1.8d Generic Window Manager Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_6, xpm-3.4k sawfish-0.34_1 Lisp configurable window manager Maintained by: sobomax@FreeBSD.org Requires: XFree86-3.3.6_6, autoconf-2.13, gdbm-1.8.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, librep-0.13.3, libungif-4.1.0b1, m4-1.4, png-1.0.8_1, rep-gtk-0.15, tiff-3.5.5 xfce-3.6.3 CDE like desktop with GTK Maintained by: nakai@FreeBSD.org Requires: XFree86-3.3.6_6, esound-0.2.22, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k Category x11 (http://www.freebsd.org/ports/x11.html) ================================================================== XFree86-4.0.2 X11R6.4/XFree86 core distribution Maintained by: jmz@FreeBSD.org XFree86-3.3.6_6 X11R6.3/XFree86 core distribution Maintained by: jmz@FreeBSD.org finder-0.80.4 A small program that creates a finder bar on your Gnome system Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.5, XFree86-3.3.6_6, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_1, gnomecore-1.2.4, gnomelibs-1.2.8_1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.1.9, libungif-4.1.0b1, libxml-1.8.10, png-1.0.8_1, tiff-3.5.5, xpm-3.4k kde-2.0.1 The "meta-port" for KDE 2 Maintained by: kevlo@FreeBSD.org Also listed in: kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, gettext-0.10.35, iconv-2.0_1, jpeg-6b, kdebase-2.0.1, kdegames-2.0.1, kdegraphics-2.0.1, kdelibs-2.0.1, kdemultimedia-2.0.1, kdenetwork-2.0.1, kdesupport-2.0.1, kdeutils-2.0.1, koffice-2.0.1, lcms-1.06, libaudiofile-0.1.9, libmng-0.9.3, libwww-5.3.1, png-1.0.8_1, qt-2.2.3, teTeX-1.0.7, tiff-3.5.5, uulib-0.5.13, xanim-2.80.2, xpm-3.4k kdebase-2.0.1 Base modules for the KDE integrated X11 desktop Maintained by: kevlo@FreeBSD.org Also listed in: kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, autoconf-2.13, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdelibs-2.0.1, kdesupport-2.0.1, lcms-1.06, libaudiofile-0.1.9, libmng-0.9.3, m4-1.4, png-1.0.8_1, qt-2.2.3, tiff-3.5.5, xpm-3.4k kdelibs-2.0.1 Libraries for KDE2 Maintained by: kevlo@FreeBSD.org Also listed in: kde Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdesupport-2.0.1, lcms-1.06, libaudiofile-0.1.9, libmng-0.9.3, png-1.0.8_1, qt-2.2.3, tiff-3.5.5 login.app-2.0.0.a7 Nice looking login interface to your favorite X-Server Maintained by: sobomax@FreeBSD.org Also listed in: windowmaker Requires: XFree86-3.3.6_6, gettext-0.10.35, jpeg-6b, libproplist-0.10.1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5, windowmaker-0.62.1, xpm-3.4k xlockmore-5.00 Like XLock session locker/screen saver, but just more Maintained by: tg@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_6, xpm-3.4k _________________________________________________________________ © 1996-2000 by Wolfram Schneider. All rights reserved. Please direct questions about this service to www@FreeBSD.org General questions about FreeBSD ports should be sent to ports@FreeBSD.org Last database update: 2000-12-22 02:54:22 UTC; based on revision 1.314 _________________________________________________________________ This information was produced by http://www.freebsd.org/cgi/ports.cgi -----BEGIN PGP SIGNATURE----- Version: 2.6.3ia Charset: noconv iQCVAwUBOkTYUjmN/mkrcYGtAQFE8AQAj36uypQpuB6CrpWRLYNnZm9ZVO/TSbTT Gac/vNkGZgQuuFwaW+SrvG40mOvKrPaB8K7bQtpyWfuYpWtuJjGALCARMN+646nY /C9dUNO3jSreUtkGfwCfEJ5th/8GTYBGvgpvI7N9QE1GDYgBF5PJZGFzvaXc15FR TSo+WVOfIYY= =gyYY -----END PGP SIGNATURE----- -- Wolfram Schneider http://wolfram.schneider.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 9:10: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 09:10:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1998237B402 for ; Sat, 23 Dec 2000 09:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNHA2R71197; Sat, 23 Dec 2000 09:10:02 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 23 Dec 2000 09:10:02 -0800 (PST) Resent-Message-Id: <200012231710.eBNHA2R71197@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, joseph@randomnetworks.com Received: from rodan.randomnetworks.com (cc994333-a.rcrdva1.ca.home.com [24.176.177.42]) by hub.freebsd.org (Postfix) with ESMTP id 21A5D37B400 for ; Sat, 23 Dec 2000 09:09:07 -0800 (PST) Received: (from scottj@localhost) by rodan.randomnetworks.com (8.11.1/8.11.1) id eBNH75M47555; Sat, 23 Dec 2000 09:07:05 -0800 (PST) (envelope-from scottj) Message-Id: <200012231707.eBNH75M47555@rodan.randomnetworks.com> Date: Sat, 23 Dec 2000 09:07:05 -0800 (PST) From: joseph@randomnetworks.com Sender: scottj@rodan.randomnetworks.com Reply-To: joseph@randomnetworks.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23804: [PORT - PLIST CORRECTION] databases/pgaccess Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23804 >Category: ports >Synopsis: [PORT - PLIST CORRECTION] databases/pgaccess >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 23 09:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Joseph Scott >Release: FreeBSD 4.2-STABLE i386 >Organization: randomnetworks.com >Environment: install/deinstall of pgaccess >Description: The plist for pgaccess was missing to files. >How-To-Repeat: install and deinstall pgaccess and you'll see there are two files left behind that shouldn't be. >Fix: This diff was generated by : diff -ruN pgaccess pgaccess.new From : /usr/ports/databases --------------------------------------------------------------- diff -ruN pgaccess/pkg-plist pgaccess.new/pkg-plist --- pgaccess/pkg-plist Sat Mar 25 06:32:52 2000 +++ pgaccess.new/pkg-plist Sat Dec 23 08:48:51 2000 @@ -97,10 +97,12 @@ share/pgaccess/lib/visualqb.tcl share/pgaccess/lib/forms.tcl share/pgaccess/lib/reports.tcl +share/pgaccess/lib/languages/czech share/pgaccess/lib/languages/deutsch share/pgaccess/lib/languages/francais share/pgaccess/lib/languages/italiano share/pgaccess/lib/languages/magyar +share/pgaccess/lib/languages/nederlands share/pgaccess/lib/languages/portugues share/pgaccess/lib/languages/romana share/pgaccess/lib/languages/russian.koi8r >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 9:36:15 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 09:36:13 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mail.westbend.net (ns1.westbend.net [209.224.254.131]) by hub.freebsd.org (Postfix) with ESMTP id 29EAF37B400 for ; Sat, 23 Dec 2000 09:36:13 -0800 (PST) Received: from admin.westbend.net (admin.westbend.net [209.224.254.141]) (authenticated) by mail.westbend.net (8.11.1/8.11.1) with ESMTP id eBNHa5M97006; Sat, 23 Dec 2000 11:36:05 -0600 (CST) (envelope-from hetzels@westbend.net) Message-ID: <00a801c06d06$ad15eae0$8dfee0d1@westbend.net> From: "Scot W. Hetzel" To: "David Lebel" , References: <200012231520.eBNFK3o83498@freefall.freebsd.org> <20001223102341.B17177@lebel.org> Subject: Re: ports/23298: New port: lame-devel 3.87 Date: Sat, 23 Dec 2000 11:34:45 -0600 Organization: West Bend Interent 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 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From: "David Lebel" > Ooops. It seems my mail was sent quoted-printable. Here it is again. > > Sorry. > You may want to send it again, as you are not supposed to change these lines. > diff -rNu lame/Makefile lame-devel/Makefile > --- lame/Makefile Sun Oct 29 19:03:01 2000 > +++ lame-devel/Makefile Fri Dec 22 12:38:37 2000 > @@ -1,28 +1,31 @@ > -# ports collection makefile for: lame > -# Date created: 11 January 1998 > -# Whom: yoshiaki Uchikawa > +# ports collection makefile for: lame-devel > +# Date created: 16 October 2000 > +# Whom: David Lebel > # > -# $FreeBSD: ports/audio/lame/Makefile,v 1.16 2000/10/30 00:03:23 lioux Exp $ > +# $FreeBSD$ > # Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 10:40:19 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 10:40:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E3D5337B404 for ; Sat, 23 Dec 2000 10:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNIe1j80579; Sat, 23 Dec 2000 10:40:01 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 23 Dec 2000 10:40:01 -0800 (PST) Resent-Message-Id: <200012231840.eBNIe1j80579@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, leeym@bsd.ce.ntu.edu.tw Received: from utopia.leeym.yi.org (utopia.Leeym.yi.org [211.72.162.194]) by hub.freebsd.org (Postfix) with ESMTP id 6C65437B400 for ; Sat, 23 Dec 2000 10:34:19 -0800 (PST) Received: (from leeym@localhost) by utopia.leeym.yi.org (8.11.1/8.11.1) id eBNIYCg30316; Sun, 24 Dec 2000 02:34:12 +0800 (CST) (envelope-from leeym) Message-Id: <200012231834.eBNIYCg30316@utopia.leeym.yi.org> Date: Sun, 24 Dec 2000 02:34:12 +0800 (CST) From: leeym@bsd.ce.ntu.edu.tw Sender: leeym@utopia.leeym.yi.org Reply-To: leeym@bsd.ce.ntu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23806: update port: fix some mtree problem Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23806 >Category: ports >Synopsis: update port: fix some mtree problem >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 23 10:40:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: 4.x-STABLE FreeBSD box without X11R6 >Description: remove some extra directories and files for the ports without MAINTAINER. >How-To-Repeat: http://people.freebsd.org/~fenner/errorlogs/ports@freebsd.org.html >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # devel_p5-C-Scan.patch # games_smacx.patch # misc_amanda.patch # news_slurp.patch # print_tr2latex.patch # russian_cyrproxy.patch # security_p5-Crypt-DES.patch # security_p5-Crypt-IDEA.patch # textproc_gsed.patch # www_fxhtml.patch # echo x - devel_p5-C-Scan.patch sed 's/^X//' >devel_p5-C-Scan.patch << 'END-of-devel_p5-C-Scan.patch' Xdiff -ruN /usr/ports/devel/p5-C-Scan/pkg-plist devel/p5-C-Scan/pkg-plist X--- /usr/ports/devel/p5-C-Scan/pkg-plist Mon Jan 11 23:33:40 1999 X+++ devel/p5-C-Scan/pkg-plist Sun Dec 24 01:42:20 2000 X@@ -1,3 +1,5 @@ X lib/perl5/site_perl/%%PERL_VER%%/C/Scan.pm X lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/C/Scan/.packlist X @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/C/Scan X+@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/C X+@dirrm lib/perl5/site_perl/%%PERL_VER%%/C END-of-devel_p5-C-Scan.patch echo x - games_smacx.patch sed 's/^X//' >games_smacx.patch << 'END-of-games_smacx.patch' Xdiff -ruN /usr/ports/games/smacx/pkg-plist games/smacx/pkg-plist X--- /usr/ports/games/smacx/pkg-plist Sun Oct 29 14:42:58 2000 X+++ games/smacx/pkg-plist Sun Dec 24 01:44:42 2000 X@@ -591,3 +591,4 @@ X @dirrm games/smacx/data/facs X @dirrm games/smacx/data X @dirrm games/smacx X+@dirrm games END-of-games_smacx.patch echo x - misc_amanda.patch sed 's/^X//' >misc_amanda.patch << 'END-of-misc_amanda.patch' Xdiff -ruN /usr/ports/misc/amanda/pkg-plist misc/amanda/pkg-plist X--- /usr/ports/misc/amanda/pkg-plist Sun Dec 3 07:19:21 2000 X+++ misc/amanda/pkg-plist Sun Dec 24 01:51:54 2000 X@@ -1,3 +1,17 @@ X+bin/amadmin X+bin/amcheck X+bin/amcheckdb X+bin/amcleanup X+bin/amdump X+bin/amflush X+bin/amlabel X+bin/amoverview X+bin/amrecover X+bin/amrestore X+bin/amrmtape X+bin/amtape X+bin/amtoc X+bin/amverify X libexec/amanda/amandad X libexec/amanda/amgetidx X libexec/amanda/amidxtaped X@@ -15,32 +29,19 @@ X libexec/amanda/patch-system X libexec/amanda/planner X libexec/amanda/reporter X-libexec/amanda/rth-changer X+libexec/amanda/rth-changer X libexec/amanda/rundump X libexec/amanda/runtar X libexec/amanda/selfcheck X libexec/amanda/sendbackup-dump X-libexec/amanda/sendbackup-gnutar X+libexec/amanda/sendbackup-gnutar X libexec/amanda/sendindex X libexec/amanda/sendsize X libexec/amanda/taper X libexec/amanda/versionsuffix X-bin/amadmin X-bin/amcheck X-bin/amcheckdb X-bin/amcleanup X-bin/amdump X-bin/amflush X-bin/amlabel X-bin/amoverview X-bin/amrecover X-bin/amrestore X-bin/amrmtape X-bin/amtape X-bin/amtoc X-bin/amverify X share/examples/amanda/amanda.conf X share/examples/amanda/chg-generic.conf X share/examples/amanda/disklist X @dirrm share/examples/amanda X @dirrm libexec/amanda X+@dirrm etc/amanda END-of-misc_amanda.patch echo x - news_slurp.patch sed 's/^X//' >news_slurp.patch << 'END-of-news_slurp.patch' Xdiff -ruN /usr/ports/news/slurp/pkg-plist news/slurp/pkg-plist X--- /usr/ports/news/slurp/pkg-plist Thu Aug 20 02:38:09 1998 X+++ news/slurp/pkg-plist Sun Dec 24 02:06:30 2000 X@@ -1,2 +1,5 @@ X news/bin/slurp X news/lib/slurp.sys X+@dirrm news/lib X+@dirrm news/bin X+@dirrm news END-of-news_slurp.patch echo x - print_tr2latex.patch sed 's/^X//' >print_tr2latex.patch << 'END-of-print_tr2latex.patch' Xdiff -ruN /usr/ports/print/tr2latex/pkg-plist print/tr2latex/pkg-plist X--- /usr/ports/print/tr2latex/pkg-plist Thu Aug 20 02:50:23 1998 X+++ print/tr2latex/pkg-plist Sun Dec 24 02:04:32 2000 X@@ -1,3 +1,7 @@ X bin/tr2latex X share/texmf/tex/latex/misc/troffman.sty X share/texmf/tex/latex/misc/troffms.sty X+@dirrm share/texmf/tex/latex/misc X+@dirrm share/texmf/tex/latex X+@dirrm share/texmf/tex X+@dirrm share/texmf END-of-print_tr2latex.patch echo x - russian_cyrproxy.patch sed 's/^X//' >russian_cyrproxy.patch << 'END-of-russian_cyrproxy.patch' Xdiff -ruN /usr/ports/russian/cyrproxy/pkg-plist russian/cyrproxy/pkg-plist X--- /usr/ports/russian/cyrproxy/pkg-plist Thu Oct 23 21:38:46 1997 X+++ russian/cyrproxy/pkg-plist Sun Dec 24 02:06:05 2000 X@@ -23,3 +23,5 @@ X www/cgi-bin/cyrwww X @dirrm share/cyrproxy X @dirrm share/doc/cyrproxy X+@dirrm www/cgi-bin X+@dirrm www END-of-russian_cyrproxy.patch echo x - security_p5-Crypt-DES.patch sed 's/^X//' >security_p5-Crypt-DES.patch << 'END-of-security_p5-Crypt-DES.patch' Xdiff -ruN /usr/ports/security/p5-Crypt-DES/Makefile security/p5-Crypt-DES/Makefile X--- /usr/ports/security/p5-Crypt-DES/Makefile Tue Oct 24 05:03:06 2000 X+++ security/p5-Crypt-DES/Makefile Sun Dec 24 02:08:03 2000 X@@ -6,7 +6,7 @@ X # X X PORTNAME= Crypt-DES X-PORTVERSION= 1.01 X+PORTVERSION= 2.03 X CATEGORIES= security perl5 X MASTER_SITES= ${MASTER_SITE_PERL_CPAN} X MASTER_SITE_SUBDIR= Crypt X@@ -16,13 +16,9 @@ X X RESTRICTED= "Crypto; export-controlled" X X-USE_PERL5= yes X+PERL_CONFIGURE= yes X X MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} X MAN3= Crypt::DES.3 X- X-do-configure: X- @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL \ X- CC="${CC}" CCFLAGS="${CFLAGS}" X X .include Xdiff -ruN /usr/ports/security/p5-Crypt-DES/distinfo security/p5-Crypt-DES/distinfo X--- /usr/ports/security/p5-Crypt-DES/distinfo Sun Apr 23 06:10:48 2000 X+++ security/p5-Crypt-DES/distinfo Sun Dec 24 02:08:22 2000 X@@ -1 +1 @@ X-MD5 (Crypt-DES-1.01.tar.gz) = d7f5bc456daccd5607550754db647c0f X+MD5 (Crypt-DES-2.03.tar.gz) = 1b9a84e14214e74e71dd80f906a3db96 Xdiff -ruN /usr/ports/security/p5-Crypt-DES/pkg-plist security/p5-Crypt-DES/pkg-plist X--- /usr/ports/security/p5-Crypt-DES/pkg-plist Mon Jan 11 23:34:38 1999 X+++ security/p5-Crypt-DES/pkg-plist Sun Dec 24 02:09:55 2000 X@@ -1,6 +1,7 @@ X lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Crypt/DES.pm X-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Crypt/DES.pod X+lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt/DES/.packlist X lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt/DES/DES.bs X lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt/DES/DES.so X-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt/DES/.packlist X @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt/DES X+@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt X+@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Crypt END-of-security_p5-Crypt-DES.patch echo x - security_p5-Crypt-IDEA.patch sed 's/^X//' >security_p5-Crypt-IDEA.patch << 'END-of-security_p5-Crypt-IDEA.patch' Xdiff -ruN /usr/ports/security/p5-Crypt-IDEA/Makefile security/p5-Crypt-IDEA/Makefile X--- /usr/ports/security/p5-Crypt-IDEA/Makefile Tue Oct 24 05:03:06 2000 X+++ security/p5-Crypt-IDEA/Makefile Sun Dec 24 02:11:33 2000 X@@ -16,13 +16,9 @@ X X RESTRICTED= "Crypto; export-controlled" X X-USE_PERL5= yes X+PERL_CONFIGURE= yes X X MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} X MAN3= Crypt::IDEA.3 X- X-do-configure: X- @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL \ X- CC="${CC}" CCFLAGS="${CFLAGS}" X X .include Xdiff -ruN /usr/ports/security/p5-Crypt-IDEA/pkg-plist security/p5-Crypt-IDEA/pkg-plist X--- /usr/ports/security/p5-Crypt-IDEA/pkg-plist Mon Jan 11 23:34:39 1999 X+++ security/p5-Crypt-IDEA/pkg-plist Sun Dec 24 02:12:39 2000 X@@ -1,6 +1,8 @@ X lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Crypt/IDEA.pm X lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Crypt/IDEA.pod X+lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt/IDEA/.packlist X lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt/IDEA/IDEA.bs X lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt/IDEA/IDEA.so X-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt/IDEA/.packlist X @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt/IDEA X+@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Crypt X+@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Crypt END-of-security_p5-Crypt-IDEA.patch echo x - textproc_gsed.patch sed 's/^X//' >textproc_gsed.patch << 'END-of-textproc_gsed.patch' Xdiff -ruN /usr/ports/textproc/gsed/pkg-plist textproc/gsed/pkg-plist X--- /usr/ports/textproc/gsed/pkg-plist Tue Dec 19 16:13:28 2000 X+++ textproc/gsed/pkg-plist Sun Dec 24 02:16:06 2000 X@@ -1,5 +1,6 @@ X bin/gsed X share/examples/gsed/dc.sed X+@dirrm share/examples/gsed X @unexec install-info --delete %D/info/sed.info %D/info/dir X info/sed.info X @exec install-info %D/info/sed.info %D/info/dir END-of-textproc_gsed.patch echo x - www_fxhtml.patch sed 's/^X//' >www_fxhtml.patch << 'END-of-www_fxhtml.patch' Xdiff -ruN /usr/ports/www/fxhtml/pkg-plist www/fxhtml/pkg-plist X--- /usr/ports/www/fxhtml/pkg-plist Wed Jun 4 15:04:27 1997 X+++ www/fxhtml/pkg-plist Sun Dec 24 02:22:46 2000 X@@ -1,2 +1,5 @@ X www/data/demo.fx X www/cgi-bin/fxhtml X+@dirrm www/data X+@dirrm www/cgi-bin X+@dirrm www END-of-www_fxhtml.patch exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 10:50:12 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 10:50:03 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B773D37B400 for ; Sat, 23 Dec 2000 10:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNIo2P81462; Sat, 23 Dec 2000 10:50:02 -0800 (PST) (envelope-from gnats) Date: Sat, 23 Dec 2000 10:50:02 -0800 (PST) Message-Id: <200012231850.eBNIo2P81462@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: David Lebel Subject: Re: ports/23298: New port: lame-devel 3.87 Reply-To: David Lebel Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/23298; it has been noted by GNATS. From: David Lebel To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: ports/23298: New port: lame-devel 3.87 Date: Sat, 23 Dec 2000 13:42:20 -0500 Well, I hope this is the last patch, and this time, I made it right. Ciao, ...David ---cut--- diff -rNu lame/Makefile lame-devel/Makefile --- lame/Makefile Sun Oct 29 19:03:01 2000 +++ lame-devel/Makefile Sat Dec 23 13:39:40 2000 @@ -6,23 +6,26 @@ # PORTNAME= lame -PORTVERSION= 3.70 +PORTVERSION= 3.87 CATEGORIES= audio -MASTER_SITES= http://lame.sourceforge.net/download/beta/ -DISTNAME= ${PORTNAME}${PORTVERSION} +MASTER_SITES= ftp://lame.sourceforge.net/pub/lame/src/ +DISTNAME= lame3.87beta -MAINTAINER= yoshiaki@kt.rim.or.jp +MAINTAINER= lebel@lebel.org +WRKSRC= ${WRKDIR}/lame3.87 USE_GMAKE= yes -WANT_GTK= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-analyzer=no ALL_TARGET= lame MAN1= lame.1 .include -.if defined(HAVE_GTK) -USE_GTK= yes +.if defined(WITH_VORBIS) +LIB_DEPENDS+= vorbis.0:${PORTSDIR}/audio/libvorbis +CONFIGURE_ARGS+= --with-vorbis --with-vorbis-prefix=${LOCALBASE} .endif do-install: diff -rNu lame/README.html lame-devel/README.html --- lame/README.html Mon Nov 20 04:52:54 2000 +++ lame-devel/README.html Wed Dec 31 19:00:00 1969 @@ -1,30 +0,0 @@ - - The FreeBSD Ports Collection (audio/lame) -

The FreeBSD Ports Collection ("audio/lame")


- - -

You are now in the directory for the port "audio/lame" (package name "lame-gtk-3.70"). - -

This is the one-line description for this port: - -


-ISO code based fast MP3 encoder kit -


- -

Please read the "description file" for a -longer description. - -

Go to the top of the ports tree for -a summary on how to use the ports collection. - -

-This port requires package(s) "XFree86-3.3.6_4 gettext-0.10.35 glib-1.2.8 gmake-3.79.1 gtk-1.2.8" to build. -

-This port requires package(s) "XFree86-3.3.6_4 gettext-0.10.35 glib-1.2.8 gtk-1.2.8" to run. - -


- Go up one level -| - Go to top of ports tree - - diff -rNu lame/distinfo lame-devel/distinfo --- lame/distinfo Sun Oct 29 08:30:17 2000 +++ lame-devel/distinfo Fri Dec 22 12:38:37 2000 @@ -1 +1 @@ -MD5 (lame3.70.tar.gz) = 44e29880a21535a7c935046a531e15af +MD5 (lame3.87beta.tar.gz) = 0c0f6f4aab5963be12509657d5dccd5c diff -rNu lame/files/patch-aa lame-devel/files/patch-aa --- lame/files/patch-aa Thu Oct 5 02:47:10 2000 +++ lame-devel/files/patch-aa Wed Dec 31 19:00:00 1969 @@ -1,26 +0,0 @@ ---- Makefile.orig Sat Jul 1 15:31:35 2000 -+++ Makefile Sat Jul 1 15:36:07 2000 -@@ -11,8 +11,8 @@ - - # defaults: - PGM = lame --CC = gcc --CC_OPTS = -O -+CC ?= gcc -+CC_OPTS = ${CFLAGS} - GTK = - GTKLIBS = - SNDLIB = -DLAMESNDFILE -@@ -136,8 +136,10 @@ - ########################################################################## - ifeq ($(UNAME),FreeBSD) - # remove if you do not have GTK or do not want the GTK frame analyzer -- GTK = -DHAVEGTK `gtk12-config --cflags` -- GTKLIBS = `gtk12-config --libs` -+ifdef HAVE_GTK -+ GTK = -DHAVEGTK `$(GTK_CONFIG) --cflags` -+ GTKLIBS = `$(GTK_CONFIG) --libs` -+endif - # Comment out next 2 lines if you want to remove VBR histogram capability - BRHIST_SWITCH = -DBRHIST - LIBTERMCAP = -lncurses diff -rNu lame/files/patch-ab lame-devel/files/patch-ab --- lame/files/patch-ab Wed Jun 7 12:06:25 2000 +++ lame-devel/files/patch-ab Wed Dec 31 19:00:00 1969 @@ -1,11 +0,0 @@ ---- lame.c.orig Thu Apr 20 01:48:22 2000 -+++ lame.c Thu Apr 20 01:49:04 2000 -@@ -1196,7 +1196,7 @@ - /* - * Disable floating point exepctions - */ --#ifdef __FreeBSD__ -+#if defined(__FreeBSD__) && !defined(__alpha__) - # include - { - /* seet floating point mask to the Linux default */ diff -rNu lame/pkg-comment lame-devel/pkg-comment --- lame/pkg-comment Sat Oct 2 02:56:01 1999 +++ lame-devel/pkg-comment Fri Dec 22 12:38:37 2000 @@ -1 +1 @@ -ISO code based fast MP3 encoder kit +fully GPL'd MP3 encoder. diff -rNu lame/pkg-descr lame-devel/pkg-descr --- lame/pkg-descr Tue Oct 3 13:38:14 2000 +++ lame-devel/pkg-descr Fri Dec 22 12:38:37 2000 @@ -1,11 +1,24 @@ -LAME stands for LAME Ain't an Mp3 Encoder. +LAME originally stood for LAME Ain't an Mp3 Encoder. -This is a patch agains the ISO MPEG1 demonstration source. The -modifications are distributed under the GNU GENERAL PUBLIC LICENSE -(see the file COPYING for details). +Following the great history of GNU naming, LAME originally stood for LAME Ain't +an Mp3 Encoder. LAME started life as a GPL'd patch against the dist10 ISO +demonstration source, and thus was incapable of producing an mp3 stream or even +being compiled by itself. But in May 2000, the last remnants of the ISO +source code were replaced, and now LAME is the source code for a fully GPL'd +MP3 encoder, with speed and quality to rival all commercial competitors. -The graphical frame analyzer uses the MPGLIB decoding engine, written by: -Michael Hipp (email: Michael.Hipp@student.uni-tuebingen.de) -and released under a more restrictive agreement. +LAME is an educational tool to be used for learning about MP3 encoding. The +goal of the LAME project is to use the open source model to improve the psycho +acoustics, noise shaping and speed of MP3. Another goal of the LAME project is +to use these improvements for the basis of a patent free audio compression +codec for the GNU project. + +In Beta: + MPEG 2.5 support + No more patching! Full source code distribution since all ISO code has been + replaced! + free format encoding and decoding + Vorbis audio codec support, for both encoding and decoding. + As always, more speed and better quality. WWW: http://lame.sourceforge.net/ diff -rNu lame/pkg-plist lame-devel/pkg-plist --- lame/pkg-plist Sat Apr 29 16:44:27 2000 +++ lame-devel/pkg-plist Fri Dec 22 12:38:37 2000 @@ -5,6 +5,7 @@ share/doc/lame/id3.html share/doc/lame/index.html share/doc/lame/lame.css +share/doc/lame/modes.html share/doc/lame/node5.html share/doc/lame/node6.html share/doc/lame/node7.html ---cut--- -- // david lebel // nobiaze' Inc. // http://www.lebel.org/ // http://www.nobiaze.com/ // pgp: 3633 6999 D47E 73ED 099F // vox: (514) 943.3045 4341 08A4 8E48 EF56 61D1 // fax: (514) 938.8881 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 11:20:11 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 11:20:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E850537B402 for ; Sat, 23 Dec 2000 11:20:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNJK0G86248; Sat, 23 Dec 2000 11:20:00 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 23 Dec 2000 11:20:00 -0800 (PST) Resent-Message-Id: <200012231920.eBNJK0G86248@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, leeym@bsd.ce.ntu.edu.tw Received: from utopia.leeym.yi.org (utopia.Leeym.yi.org [211.72.162.194]) by hub.freebsd.org (Postfix) with ESMTP id A2A4B37B400 for ; Sat, 23 Dec 2000 11:14:03 -0800 (PST) Received: (from leeym@localhost) by utopia.leeym.yi.org (8.11.1/8.11.1) id eBNJE1T49384; Sun, 24 Dec 2000 03:14:01 +0800 (CST) (envelope-from leeym) Message-Id: <200012231914.eBNJE1T49384@utopia.leeym.yi.org> Date: Sun, 24 Dec 2000 03:14:01 +0800 (CST) From: leeym@bsd.ce.ntu.edu.tw Sender: leeym@utopia.leeym.yi.org Reply-To: leeym@bsd.ce.ntu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23807: update ports: fix some checksum problem Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23807 >Category: ports >Synopsis: update ports: fix some checksum problem >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 23 11:20:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: 4.x-STABLE >Description: fix checksum problem for the ports without MAINTAINER. >How-To-Repeat: http://people.freebsd.org/~fenner/errorlogs/ports@freebsd.org.html >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # games_nethack-gtk.patch # games_powerpak.patch # mail_imap-uw.patch # mail_listmanager.patch # net_cnet.patch # echo x - games_nethack-gtk.patch sed 's/^X//' >games_nethack-gtk.patch << 'END-of-games_nethack-gtk.patch' Xdiff -ruN /usr/ports/games/nethack-gtk/distinfo games/nethack-gtk/distinfo X--- /usr/ports/games/nethack-gtk/distinfo Mon Jul 10 11:31:34 2000 X+++ games/nethack-gtk/distinfo Sun Dec 24 02:47:55 2000 X@@ -1,3 +1,3 @@ X-MD5 (nethack-3.2.2.tar.gz) = c85de4d14453b3a2d182d1dfc2ca04df X+MD5 (nethack-3.2.2.tar.gz) = 2571a63135b4d0aa910d52c386b669a6 X MD5 (nh-3.2.2-3.2.3.diff) = 440141990df326d5a973d890179cffae X MD5 (nethack-gtk-1.1.5-nethack-3.2.3.patch.gz) = a9e75005f23a5eea2a4879237ac851d4 END-of-games_nethack-gtk.patch echo x - games_powerpak.patch sed 's/^X//' >games_powerpak.patch << 'END-of-games_powerpak.patch' Xdiff -ruN /usr/ports/games/powerpak/distinfo games/powerpak/distinfo X--- /usr/ports/games/powerpak/distinfo Thu Feb 3 12:54:41 2000 X+++ games/powerpak/distinfo Sun Dec 24 02:49:36 2000 X@@ -1 +1 @@ X-MD5 (PowerPak.tar.gz) = ed08055d130c75b5a5b33a299738be46 X+MD5 (PowerPak.tar.gz) = 775cabf11ba2bb0bac057060db25b318 END-of-games_powerpak.patch echo x - mail_imap-uw.patch sed 's/^X//' >mail_imap-uw.patch << 'END-of-mail_imap-uw.patch' Xdiff -ruN /usr/ports/mail/imap-uw/distinfo mail/imap-uw/distinfo X--- /usr/ports/mail/imap-uw/distinfo Tue Dec 19 00:14:45 2000 X+++ mail/imap-uw/distinfo Sun Dec 24 02:50:31 2000 X@@ -1,2 +1,2 @@ X MD5 (imap-2000a.tar.Z) = d642c114b55ffe2e172b8e1bef6a1a52 X-MD5 (imap-utils.tar.Z) = 24df2e1530eba56407f1c035acb60bb6 X+MD5 (imap-utils.tar.Z) = a6453029f201b32e9ed761e662c47b0f END-of-mail_imap-uw.patch echo x - mail_listmanager.patch sed 's/^X//' >mail_listmanager.patch << 'END-of-mail_listmanager.patch' Xdiff -ruN /usr/ports/mail/listmanager/distinfo mail/listmanager/distinfo X--- /usr/ports/mail/listmanager/distinfo Mon Oct 30 06:38:07 2000 X+++ mail/listmanager/distinfo Sun Dec 24 02:51:27 2000 X@@ -1,4 +1,4 @@ X-MD5 (listmanager.freebsd35) = f9bd672b891a387084b921f5308b8d40 X+MD5 (listmanager.freebsd35) = bbdd8a2cdff9da438c6f7a10a1bcd4b8 X MD5 (help.tar.gz) = ebe42dbd6d3a529f2aa136d3c70aa22d X MD5 (listmanager.8) = 7bd9021c1d4b1d1c9c397de36b1ef6e5 X MD5 (ack) = 9c35b02b889c69278f7cac1c6b22bab3 END-of-mail_listmanager.patch echo x - net_cnet.patch sed 's/^X//' >net_cnet.patch << 'END-of-net_cnet.patch' Xdiff -ruN /usr/ports/net/cnet/distinfo net/cnet/distinfo X--- /usr/ports/net/cnet/distinfo Wed Nov 1 20:51:01 2000 X+++ net/cnet/distinfo Sun Dec 24 03:00:59 2000 X@@ -1 +1 @@ X-MD5 (cnet-1.6.tar.gz) = a5b84c916197ddbee89f0f7b8165cce8 X+MD5 (cnet-1.6.tar.gz) = f4268137fe841a06dc90b5c8aa9b669c END-of-net_cnet.patch exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 11:26:25 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 11:26:24 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 22A5C37B400; Sat, 23 Dec 2000 11:26:24 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNJQOh87216; Sat, 23 Dec 2000 11:26:24 -0800 (PST) (envelope-from obrien) Date: Sat, 23 Dec 2000 11:26:24 -0800 (PST) From: Message-Id: <200012231926.eBNJQOh87216@freefall.freebsd.org> To: obrien@FreeBSD.org, obrien@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22981: UPDATE - net/dlint (1.3.3 -> 1.4.0) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: UPDATE - net/dlint (1.3.3 -> 1.4.0) Responsible-Changed-From-To: obrien->freebsd-ports Responsible-Changed-By: obrien Responsible-Changed-When: Sat Dec 23 11:25:58 PST 2000 Responsible-Changed-Why: droped as maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=22981 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 11:29:39 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 11:29:37 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mercure.IRO.UMontreal.CA (mercure.IRO.UMontreal.CA [132.204.24.67]) by hub.freebsd.org (Postfix) with ESMTP id 9123A37B400; Sat, 23 Dec 2000 11:29:36 -0800 (PST) Received: from localhost.anarcat.yi.org (IDENT:beaupran@phobos.IRO.UMontreal.CA [132.204.20.20]) by mercure.IRO.UMontreal.CA (8.11.1/8.11.1) with ESMTP id eBNJTRv13198; Sat, 23 Dec 2000 14:29:29 -0500 Full-Name: Antoine Beaupre Date: Sat, 23 Dec 2000 14:29:51 -0500 Message-ID: <8766kb7x74.wl@localhost.anarcat.yi.org> From: Anarcat To: gnats-admin@freebsd.org Cc: freebsd-ports@freebsd.org Subject: Re: ports/23779: New port (audio/qtecasound): Graphical user-interface for ecasound. In-Reply-To: In your message of "Fri, 22 Dec 2000 15:40:02 -0800 (PST)" <200012222340.eBMNe2v68457@freefall.freebsd.org> References: <20001222233900.DCA8242C@shall.anarcat.yi.org> <200012222340.eBMNe2v68457@freefall.freebsd.org> User-Agent: Wanderlust/1.1.1 (Purple Rain) WEMI/1.13.7 (Shimada) FLIM/1.13.2 (Kasanui) MULE XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd) Organization: Nada, Inc MIME-Version: 1.0 (generated by WEMI 1.13.7 - "Shimada") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Please note that the MASTER_SITES are the same for the 3 packages from the eca suite. Sorry for the inconvenience. A. At Fri, 22 Dec 2000 15:40:02 -0800 (PST), gnats-admin@FreeBSD.org wrote: > > Thank you very much for your problem report. > It has the internal identification `ports/23779'. > The individual assigned to look at your > report is: freebsd-ports. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=23779 > > >Category: ports > >Responsible: freebsd-ports > >Synopsis: New port (audio/qtecasound): Graphical user-interface for ecasound. > >Arrival-Date: Fri Dec 22 15:40:02 PST 2000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 11:33: 1 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 11:32:58 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0EB9C37B698; Sat, 23 Dec 2000 11:32:58 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNJWw387982; Sat, 23 Dec 2000 11:32:58 -0800 (PST) (envelope-from obrien) Date: Sat, 23 Dec 2000 11:32:58 -0800 (PST) From: Message-Id: <200012231932.eBNJWw387982@freefall.freebsd.org> To: obrien@FreeBSD.org, obrien@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/11048: variable not initialized in fwtk-lib leads to syslog coredump Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: variable not initialized in fwtk-lib leads to syslog coredump Responsible-Changed-From-To: obrien->freebsd-ports Responsible-Changed-By: obrien Responsible-Changed-When: Sat Dec 23 11:32:46 PST 2000 Responsible-Changed-Why: drop maintainship http://www.freebsd.org/cgi/query-pr.cgi?pr=11048 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 11:33:30 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 11:33:28 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 33FDA37B404; Sat, 23 Dec 2000 11:33:28 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNJXSO88108; Sat, 23 Dec 2000 11:33:28 -0800 (PST) (envelope-from obrien) Date: Sat, 23 Dec 2000 11:33:28 -0800 (PST) From: Message-Id: <200012231933.eBNJXSO88108@freefall.freebsd.org> To: obrien@FreeBSD.org, obrien@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/14826: security/fwtk smapd calls sendmail with wrong flags Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: security/fwtk smapd calls sendmail with wrong flags Responsible-Changed-From-To: obrien->freebsd-ports Responsible-Changed-By: obrien Responsible-Changed-When: Sat Dec 23 11:33:14 PST 2000 Responsible-Changed-Why: drop maintainership http://www.freebsd.org/cgi/query-pr.cgi?pr=14826 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 11:36:56 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 11:36:52 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mercure.IRO.UMontreal.CA (mercure.IRO.UMontreal.CA [132.204.24.67]) by hub.freebsd.org (Postfix) with ESMTP id 7006E37B400 for ; Sat, 23 Dec 2000 11:36:52 -0800 (PST) Received: from localhost.anarcat.yi.org (IDENT:beaupran@phobos.IRO.UMontreal.CA [132.204.20.20]) by mercure.IRO.UMontreal.CA (8.11.1/8.11.1) with ESMTP id eBNJafv13661; Sat, 23 Dec 2000 14:36:43 -0500 Full-Name: Antoine Beaupre Date: Sat, 23 Dec 2000 14:37:04 -0500 Message-ID: <874rzv7wv3.wl@localhost.anarcat.yi.org> From: Anarcat To: will@physics.purdue.edu Cc: beaupran@IRO.UMontreal.CA, freebsd-ports@FreeBSD.ORG Subject: Re: Porting ecasound suite to FreeBSD In-Reply-To: In your message of "Sat, 23 Dec 2000 01:13:05 -0500" <20001223011305.U328@argon.firepipe.net> References: <87puilbdwu.wl@localhost.anarcat.yi.org> <20001221224539.J328@argon.firepipe.net> <874rzwidpz.wl@localhost.anarcat.yi.org> <20001223011305.U328@argon.firepipe.net> User-Agent: Wanderlust/1.1.1 (Purple Rain) WEMI/1.13.7 (Shimada) FLIM/1.13.2 (Kasanui) MULE XEmacs/21.1 (patch 12) (Channel Islands) (i386--freebsd) Organization: Nada, Inc MIME-Version: 1.0 (generated by WEMI 1.13.7 - "Shimada") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Sat, 23 Dec 2000 01:13:05 -0500, Will Andrews wrote: > > On Fri, Dec 22, 2000 at 12:10:32PM -0500, Anarcat wrote: > > Humm.. I agree. But FreeBSD way is kinda strange. Why doesn't it use > > the '-lpthread' syntax? Autoconf has "problems" detecting libs that > > are not link with -l. Actually, it's more a problem of not > > having the good macro available.. > > I don't really know why it does it that way. You'll have to ask Jason > Evans, the pthread (libc_r) maintainer. I've never really understood > why pthread was put in a library called "c_r" instead of "pthread", > among a few other things. To a certain extent, I really don't care. :) The Only "problem" is that autoconf script, "out of the box", are designed to test for a library 'y' by using '-ly'. This is hard-coded. So to test the library 'pthread' using '-pthread' is kinda akward... > > But I fixed the scripts. Unfortunatly, since my fixes go back to > > ecasound's main source it has to be in LICQ's style: > > > > case "$host" ... > > freebsd) > > CFLAGS... > > > > This is annoying. Is there a better way? > > perl -pi -e "s@-lpthread@-pthread@g" ${WRKSRC}/configure > in your port Makefile. Sure, it's a hack, but it works (usually). The > configure script should have the necessary autoconf hooks to check for > -pthread on FreeBSD.. some projects already have this sort of thing. I prefer my hack. :) I think I should write a generic autoconf macro to test for libs without having '-l' hardcoded... > > I know it's there. The problem occurs upon link. > > It would be nice to see the exact error. Sorry (that is before the "no -lc_r" fix but it doesn't change anything..): c++ -O2 -D_REENTRANT -DNDEBUG -ffast-math -fstrict-aliasing -funroll-loops -pthread -o ecasound eca-text.o textdebug.o -lncurses -L../libecasound/.libs -lecasound -L../kvutils/.libs -lkvutils -lhistory -lreadline -lc_r -lm ../libecasound/.libs/libecasound.so: warning: tmpnam() possibly used unsafely; consider using mkstemp() /usr/lib/libc.so.4: WARNING! setkey(3) not present in the system! /usr/lib/libc.so.4: warning: this program uses gets(), which is unsafe. /usr/lib/libc.so.4: warning: mktemp() possibly used unsafely; consider using mkstemp() /usr/lib/libc.so.4: WARNING! des_setkey(3) not present in the system! /usr/lib/libc.so.4: WARNING! encrypt(3) not present in the system! /usr/lib/libc.so.4: warning: this program uses f_prealloc(), which is stupid. /usr/lib/libc.so.4: WARNING! des_cipher(3) not present in the system! /usr/lib/libc.so.4: warning: tempnam() possibly used unsafely; consider using mkstemp() ../libecasound/.libs/libecasound.so: undefined reference to `mlockall' > > Also, there's no mlockall man page. Is there a reason (e.g. "secret > > function" :)? > > There are plenty of undocumented function calls in FreeBSD, just like > any other operating system. Interesting. > > Well-well-well.. It seems you're right! I have no idea how their > > libtool stuff works, in fact, I know *nothing* about libtool. One > > thing I know though... libtool is installed on my system > > (/usr/local/bin/libtool) and the makefiles are usings the package's > > libtool! And this one adds annoying -lc and -lc_r libs! > > > > Fixed. > > Yeah, libtool is pretty stupid when it comes to FreeBSD. Thankfully, > this problem is not usually caused by libtool. Sometimes it is, > usually not. Well.. The libtool supplied with the package was _really_ stupid. /usr/local/bin/libtool wasn't that bad. At least it did not put -lc and -lc_r. For a program designed to make porting shared libs easy, frankly, that sucks. :) > > Ah-ah! I knew there was something I was missing. This is the first > > "major" port I do (pthreads, libtool, messy dependencies...), so I > > knew I was missing some stuff. > > Quite an experience, isn't it? Mad. I spent about 15 hours on this thing. > > Thanks a lot for your help, you can expect a port to pop up in PRs > > soon enough. :) > > Sure. It's there alright.. with no MASTER_SITES! Yeah... That's the last of the 15 hours... :)) Anyways, thanks for everything A. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 11:59: 3 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 11:59:00 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from elvis.mu.org (elvis.mu.org [207.154.226.10]) by hub.freebsd.org (Postfix) with ESMTP id D4D0637B400; Sat, 23 Dec 2000 11:58:56 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1098) id 8771F2B273; Sat, 23 Dec 2000 13:58:56 -0600 (CST) Date: Sat, 23 Dec 2000 13:58:56 -0600 From: Bill Fumerola To: David O'Brien Cc: Kris Kennaway , ports@FreeBSD.org Subject: Re: cvs commit: ports/x11/XFree86-aoutlibs Makefile Message-ID: <20001223135856.B72273@elvis.mu.org> References: <200012210319.eBL3JEE44842@freefall.freebsd.org> <20001221122440.F628@tao.org.uk> <20001221060557.C26775@citusc.usc.edu> <20001223110328.C33365@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001223110328.C33365@dragon.nuxi.com>; from obrien@FreeBSD.org on Sat, Dec 23, 2000 at 11:03:28AM -0800 X-Operating-System: FreeBSD 4.2-FEARSOME-20001103 i386 Sender: billf@elvis.mu.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [ moved to ports from cvs-* ] On Sat, Dec 23, 2000 at 11:03:28AM -0800, David O'Brien wrote: > Are you going to take responsibility of getting this done? In this case, > I think marking these libs forbidden is really, really the wrong thing to > do. We should have learned from Micro$oft that the apps drive people to > the OS, not the otherway around. You are now removing what some may say > is the most important application today from running on FreeBSD. Maybe > that would be the last straw to send a user to another version of Unix? I think the port [the aoutlibs for XFree86, for those of you just tuning in] should have a warning, but not be marked forbidden. -- Bill Fumerola - security yahoo / Yahoo! inc. - fumerola@yahoo-inc.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 12:10: 9 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 12:10:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 810A337B402 for ; Sat, 23 Dec 2000 12:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNKA1b93195; Sat, 23 Dec 2000 12:10:01 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 23 Dec 2000 12:10:01 -0800 (PST) Resent-Message-Id: <200012232010.eBNKA1b93195@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, olgeni@uli.it Received: from vega.uli.it (vega.uli.it [62.212.0.2]) by hub.freebsd.org (Postfix) with ESMTP id 1E58037B400 for ; Sat, 23 Dec 2000 12:07:47 -0800 (PST) Received: from olgeni.localdomain.net (olgeni.uli.it [62.212.0.22]) by vega.uli.it (Postfix) with ESMTP id 045C732E9F for ; Sat, 23 Dec 2000 21:07:42 +0100 (CET) Received: (from olgeni@localhost) by olgeni.localdomain.net (8.11.1/8.11.1) id eBNK7vf51369; Sat, 23 Dec 2000 21:07:57 +0100 (CET) (envelope-from olgeni) Message-Id: <200012232007.eBNK7vf51369@olgeni.localdomain.net> Date: Sat, 23 Dec 2000 21:07:57 +0100 (CET) From: olgeni@uli.it Reply-To: olgeni@uli.it To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23808: security/nessus (maintainer): add support for text-only client Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23808 >Category: ports >Synopsis: security/nessus (maintainer): add support for text-only client >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 23 12:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Jimmy Olgeni >Release: FreeBSD 4.2-STABLE i386 >Organization: Colby >Environment: FreeBSD olgeni.localdomain.net 4.2-STABLE FreeBSD 4.2-STABLE #0: Sat Dec 23 03:43:17 CET 2000 root@olgeni.localdomain.net:/usr/local/storage/obj/usr/src/sys/BSDBOX i386 >Description: This patch enables the compilation of a text-only nessus client. If compiled with "make -DWITHOUT_GTK", the port won't require GTK to build the X11 user interface (useful for server only installations). Makefile: * add check WITHOUT_GTK; if enabled, append --disable-gtk to CONFIGURE_ARGS, else leave CONFIGURE_ENV as it was before. Credits: James Raftery , who came up with the text-only issue. >How-To-Repeat: >Fix: diff -ruN nessus.1/Makefile nessus.2/Makefile --- nessus.1/Makefile Thu Nov 9 21:55:28 2000 +++ nessus.2/Makefile Sat Dec 23 14:44:06 2000 @@ -27,9 +27,13 @@ DIST_SUBDIR= nessus WRKSRC= ${WRKDIR}/nessus-core +.if defined(WITHOUT_GTK) +CONFIGURE_ARGS+= --disable-gtk +.else USE_GTK= yes -USE_LIBTOOL= yes CONFIGURE_ENV= GTKCONFIG="${GTK_CONFIG}" +.endif +USE_LIBTOOL= yes MAN1= nessus.1 MAN8= nessusd.8 nessus-adduser.8 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 12:22:35 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 12:22:33 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C106B37B400; Sat, 23 Dec 2000 12:22:33 -0800 (PST) Received: (from demon@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNKMWk94638; Sat, 23 Dec 2000 12:22:32 -0800 (PST) (envelope-from demon) Date: Sat, 23 Dec 2000 12:22:32 -0800 (PST) From: Message-Id: <200012232022.eBNKMWk94638@freefall.freebsd.org> To: osa@FreeBSD.org.ru, demon@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23803: www/oops update from 1.5.2 to 1.5.5 (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: www/oops update from 1.5.2 to 1.5.5 (by maintainer) State-Changed-From-To: open->closed State-Changed-By: demon State-Changed-When: Sat Dec 23 12:21:21 PST 2000 State-Changed-Why: Update committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=23803 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 12:41:44 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 12:41:43 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 20D4B37B400; Sat, 23 Dec 2000 12:41:43 -0800 (PST) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNKfgD96752; Sat, 23 Dec 2000 12:41:42 -0800 (PST) (envelope-from dannyboy) Date: Sat, 23 Dec 2000 12:41:42 -0800 (PST) From: Message-Id: <200012232041.eBNKfgD96752@freefall.freebsd.org> To: joseph@randomnetworks.com, dannyboy@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22981: UPDATE - net/dlint (1.3.3 -> 1.4.0) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: UPDATE - net/dlint (1.3.3 -> 1.4.0) State-Changed-From-To: open->closed State-Changed-By: dannyboy State-Changed-When: Sat Dec 23 12:41:28 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=22981 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 12:53:37 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 12:53:36 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 25E1237B400; Sat, 23 Dec 2000 12:53:36 -0800 (PST) Received: (from demon@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNKraL97708; Sat, 23 Dec 2000 12:53:36 -0800 (PST) (envelope-from demon) Date: Sat, 23 Dec 2000 12:53:36 -0800 (PST) From: Message-Id: <200012232053.eBNKraL97708@freefall.freebsd.org> To: dwcjr@inethouston.net, demon@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23744: Update www/oops Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update www/oops State-Changed-From-To: open->closed State-Changed-By: demon State-Changed-When: Sat Dec 23 12:52:27 PST 2000 State-Changed-Why: Update committed. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23744 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 13:30:48 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 13:30:46 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from nietzsche.webcaribe.net (unknown [209.88.252.106]) by hub.freebsd.org (Postfix) with ESMTP id 4A08137B400 for ; Sat, 23 Dec 2000 13:30:43 -0800 (PST) Received: (from nobody@localhost) by nietzsche.webcaribe.net (8.9.3/8.9.3) id QAA20574; Sat, 23 Dec 2000 16:31:23 -0500 (COT) (envelope-from fmirand@webcaribe.net) X-Authentication-Warning: nietzsche.webcaribe.net: nobody set sender to fmirand@correo.webcaribe.net using -f Received: from 209.88.252.106 (proxying for 192.168.0.7) (SquirrelMail authenticated user fmirand) by correo.webcaribe.net with HTTP; Sat, 23 Dec 2000 16:31:23 -0500 (COT) Message-ID: <4061.209.88.252.106.977607083.squirrel@correo.webcaribe.net> Date: Sat, 23 Dec 2000 16:31:23 -0500 (COT) Subject: postgresql-7.0.3.tar.gz From: "Fabio Miranda" To: ports@freebsd.org X-Mailer: SquirrelMail (version 1.0pre1) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hi, When i try to download the package form postgresql-7.0.3.tar.gz the server says 404: not found? where is it? -- ----- WebCaribe: La presencia Web de la costa caribe Departamento de sistemas Calle 81 # 67 - 36 L2 - Barranquilla - Colombia Tel: 57-5-3789671/3789167 - http://www.webcaribe.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 13:40:11 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 13:40:02 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0FA6537B402 for ; Sat, 23 Dec 2000 13:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNLe2T03449; Sat, 23 Dec 2000 13:40:02 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 23 Dec 2000 13:40:02 -0800 (PST) Resent-Message-Id: <200012232140.eBNLe2T03449@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, mb@imp.ch Received: from fuchur.lan.attic.ch (fuchur.lan.attic.ch [194.235.47.21]) by hub.freebsd.org (Postfix) with ESMTP id 24F0837B400 for ; Sat, 23 Dec 2000 13:31:18 -0800 (PST) Received: (from root@localhost) by fuchur.lan.attic.ch (8.11.1/8.11.1) id eBNLXID17122; Sat, 23 Dec 2000 22:33:18 +0100 (CET) (envelope-from mblapp) Message-Id: <200012232133.eBNLXID17122@fuchur.lan.attic.ch> Date: Sat, 23 Dec 2000 22:33:18 +0100 (CET) From: mb@imp.ch Sender: mblapp@fuchur.lan.attic.ch Reply-To: mb@imp.ch To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23809: [PATCH] Addition to PR 23783, 23784, 23785 Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23809 >Category: ports >Synopsis: MD5 Checksum for SunSolve patch 109939-02 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Dec 23 13:40:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Martin Blapp >Release: FreeBSD 4.2-STABLE i386 >Organization: Improware AG >Environment: FreeBSD fuchur.lan.attic.ch 4.2-STABLE FreeBSD 4.2-STABLE #5: Sun Dec 10 11:00:08 CET 2000 root@fuchur.lan.attic.ch:/usr/src/sys/compile/FURCHUR i386 FreeBSD ports-tree for STABLE and CURRENT >Description: Add missing distinfo md5 checksum for SunSolve Patch 109939-02 >How-To-Repeat: >Fix: -------------------------------------------------------------------------------- possible Commit message: ------------------------ Add missing distinfo md5 checksum for SunSolve Patch 109939-02 -------------------------------------------------------------------------------- location of port: ----------------- ports/german/staroffice52 ports/french/staroffice52 ports/editors/staroffice52 -------------------------------------------------------------------------------- [PATCH] normal -------------- german ------ --- distinfo.old Thu Aug 24 21:29:30 2000 +++ distinfo Sat Dec 23 22:22:39 2000 @@ -1,2 +1,3 @@ MD5 (staroffice52/so-5_2-ga-bin-linux-de.bin) = 1abb5b67108f0c5eaa832bca32a32913 MD5 (staroffice52/soa-5_2-ga-bin-linux-de.bin) = ee6e4fe81ac663835195cb756234b804 +MD5 (staroffice52/109939-02.tar.Z) = f2a32aec9b4c223fbb2829e496ad84b6 french ------ --- distinfo.old Sat Dec 23 22:25:28 2000 +++ distinfo Sat Dec 23 22:25:36 2000 @@ -1,2 +1,3 @@ MD5 (staroffice52/so-5_2-ga-bin-linux-fr.bin) = 848e03d4feeef0112e7d2f16407d4431 MD5 (staroffice52/soa-5_2-ga-bin-linux-fr.bin) = ab303af54dafbe5b308a06c92bc51133 +MD5 (staroffice52/109939-02.tar.Z) = f2a32aec9b4c223fbb2829e496ad84b6 english ------- --- distinfo.old Sat Dec 23 22:25:00 2000 +++ distinfo Sat Dec 23 22:24:42 2000 @@ -1,2 +1,3 @@ MD5 (staroffice52/soa-5_2-ga-bin-linux-en.bin) = 8f36a55d7cefd919febdefb502ae986d MD5 (staroffice52/so-5_2-ga-bin-linux-en.bin) = 1f03de10b6127772ba87567d334aeb4d +MD5 (staroffice52/109939-02.tar.Z) = f2a32aec9b4c223fbb2829e496ad84b6 -------------------------------------------------------------------------------- [PATCH] uuencoded ----------------- german ------ begin 644 distinfo.diff.uu M+2TM(&1I"UD92YB:6XI M(#T@964V931F93@Q86,V-C,X,S4Q.35C8C"UF"UE;BYB:6XI M(#T@,68P,V1E,3!B-C$R-SRelease-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 14:20:51 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 14:20:50 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id 4631437B400; Sat, 23 Dec 2000 14:20:49 -0800 (PST) Received: from deneb (deneb [128.130.111.2]) by vexpert.dbai.tuwien.ac.at (8.11.1/8.11.1) with ESMTP id eBNMKlp26942; Sat, 23 Dec 2000 23:20:47 +0100 (MET) Date: Sat, 23 Dec 2000 23:20:46 +0100 (CET) From: Gerald Pfeifer To: Cc: Subject: Re: ports/23786: Update the Wine port to 2000-12-02 (by maintainer) In-Reply-To: <200012230319.eBN3J6j94466@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 22 Dec 2000 jmz@freebsd.org wrote: > Synopsis: Update the Wine port to 2000-12-02 (by maintainer) > > State-Changed-From-To: open->closed > State-Changed-By: jmz Thanks! I'm afraid you forgot to commit the new patch, that was part of that update. Without this patch the port most probably will fail to build: | Install the patch below, which will also create a new port-specific | patch file files/patch-gf. Remove /files/patch-gd. Gerald -- Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at/~pfeifer/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 14:25:33 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 14:25:32 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DF49E37B400; Sat, 23 Dec 2000 14:25:31 -0800 (PST) Received: (from dannyboy@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNMPUu08861; Sat, 23 Dec 2000 14:25:30 -0800 (PST) (envelope-from dannyboy) Date: Sat, 23 Dec 2000 14:25:30 -0800 (PST) From: Message-Id: <200012232225.eBNMPUu08861@freefall.freebsd.org> To: greid@dogma.freebsd-uk.eu.org, dannyboy@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23730: [PATCH] benchmarks/postmark has unfetchable distfile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] benchmarks/postmark has unfetchable distfile State-Changed-From-To: open->closed State-Changed-By: dannyboy State-Changed-When: Sat Dec 23 14:24:54 PST 2000 State-Changed-Why: Patch by roam in followup committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=23730 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 15:21:38 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 15:21:36 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.146]) by hub.freebsd.org (Postfix) with ESMTP id 3D5E237B400; Sat, 23 Dec 2000 15:21:36 -0800 (PST) Received: from localhost (trevor@localhost) by blues.jpj.net (8.11.1/8.10.0) with ESMTP id eBNNLZ323210; Sat, 23 Dec 2000 18:21:35 -0500 (EST) Date: Sat, 23 Dec 2000 18:21:35 -0500 (EST) From: Trevor Johnson To: "David O'Brien" Cc: Kris Kennaway , Subject: Re: cvs commit: ports/x11/XFree86-aoutlibs Makefile In-Reply-To: <20001223110328.C33365@dragon.nuxi.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org David O'Brien wrote: > On Thu, Dec 21, 2000 at 06:05:57AM -0800, Kris Kennaway wrote: > > Yes. A solution would be to roll our own copy of the XFree86 3.3.3 > > libraries + security patches. > > Are you going to take responsibility of getting this done? In this case, > I think marking these libs forbidden is really, really the wrong thing to > do. I'd like to see the old versions of Netscape--everything but 4.76 and 6.0--forbidden too, with mention of http://www.guninski.com/netscape.html and http://netscape.com/security/ . > We should have learned from Micro$oft that the apps drive people to > the OS, not the otherway around. For most of the applications in the ports collection, it is the other way around: few of them run only on FreeBSD. Netscape is a good example. People who want it, but don't care about the quality of the underlying OS, probably run it on some other platform. :) > You are now removing what some may say is the most important > application today from running on FreeBSD. The last I heard, the 4.76 Linux version of Netscape in the ports collection ran fine. > Maybe that would be the last straw to send a user to another version > of Unix? When a port is marked FORBIDDEN, the user (after--I hope--understanding why it was forbidden) can still install it by editing the makefile in the port skeleton, then building it. The editing should only take a few seconds. Of course, if the user wanted a pre-compiled package, the time spent compiling is "wasted" (this doesn't apply to the a.out libraries, of course). Not warning the user increases the chance that the user will not know about the problem, and that that user's FreeBSD box will get compromised. Compared to having to do a little editing and compiling, getting owned strikes me as a more likely reason for someone to switch to another OS. -- Trevor Johnson http://jpj.net/~trevor/gpgkey.txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 15:50: 7 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 15:50:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E904137B402 for ; Sat, 23 Dec 2000 15:50:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBNNo0716258; Sat, 23 Dec 2000 15:50:00 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 23 Dec 2000 15:50:00 -0800 (PST) Resent-Message-Id: <200012232350.eBNNo0716258@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, mkamm@gmx.net Received: from ns1.tu-graz.ac.at (ns1.tu-graz.ac.at [129.27.2.3]) by hub.freebsd.org (Postfix) with ESMTP id 3039A37B400 for ; Sat, 23 Dec 2000 15:43:59 -0800 (PST) Received: from localhost.tu-graz.ac.at (isdn112.tu-graz.ac.at [129.27.240.112]) by ns1.tu-graz.ac.at (8.9.3/8.9.3) with ESMTP id AAA15463 for ; Sun, 24 Dec 2000 00:43:56 +0100 (MET) Received: (from mkamm@localhost) by localhost.tu-graz.ac.at (8.11.0/8.11.0) id eBNN0bK00738; Sun, 24 Dec 2000 00:00:37 +0100 (CET) (envelope-from mkamm) Message-Id: <200012232300.eBNN0bK00738@localhost.tu-graz.ac.at> Date: Sun, 24 Dec 2000 00:00:37 +0100 (CET) From: mkamm@gmx.net Sender: mkamm@ns1.tu-graz.ac.at Reply-To: mkamm@gmx.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23810: port www/junkbuster-zlib has buggy startup script Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23810 >Category: ports >Synopsis: port www/junkbuster-zlib has buggy startup script >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 23 15:50:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Martin Kammerhofer >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: The junkbuster-zlib installs the binary as /usr/local/sbin/junkbuster-zlib. However the installed startup script /usr/local/etc/rc.d/junkbuster-zlib.sh tries to start the binary as /usr/local/sbin/junkbuster. (Without the "-zlib" suffix. BTW rc.d/junkbuster-zlib.sh is poorly written. >How-To-Repeat: Install the port or package. >Fix: --- junkbuster-zlib.sh Sun Dec 17 19:10:37 2000 +++ /usr/local/etc/rc.d/junkbuster-zlib.sh Sat Dec 23 23:36:41 2000 @@ -1,14 +1,24 @@ #!/bin/sh +# $CVSHeader$ case $1 in start) - test -d /usr/local/etc/junkbuster-zlib -a -x /usr/local/sbin/junkbuster -a -f /usr/local/etc/junkbuster-zlib/configfile || exit 1 + if [ -d /usr/local/etc/junkbuster-zlib \ + -a -x /usr/local/sbin/junkbuster-zlib \ + -a -f /usr/local/etc/junkbuster-zlib/configfile ]; then + : seems OK + else + echo >&2 "$0: missing files!" + exit 1 + fi cd /usr/local/etc/junkbuster-zlib - su -m nobody -c "/usr/local/sbin/junkbuster configfile &" - echo -n " junkbuster" + su -m nobody -c "/usr/local/sbin/junkbuster-zlib configfile &" \ + >/dev/null \ + && echo -n " junkbuster" \ + || echo " junkbuster FAILED TO START" ;; stop) - killall junkbuster && echo -n " junkbuster" + killall junkbuster-zlib && echo -n " junkbuster" ;; *) echo "Usage: `basename $0` {start|stop}" >&2 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 17: 8:23 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 17:08:21 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (poynting.physics.purdue.edu [128.210.146.58]) by hub.freebsd.org (Postfix) with ESMTP id 9282337B400 for ; Sat, 23 Dec 2000 17:08:21 -0800 (PST) Received: from argon.firepipe.net (pm007-009.dialup.bignet.net [64.79.81.41]) by puck.firepipe.net (Postfix) with ESMTP id 7840A19EA; Sat, 23 Dec 2000 20:08:15 -0500 (EST) Received: by argon.firepipe.net (Postfix, from userid 1000) id 795AE1911; Sat, 23 Dec 2000 20:03:29 -0500 (EST) Date: Sat, 23 Dec 2000 20:03:29 -0500 From: Will Andrews To: Gerald Pfeifer Cc: Will Andrews , freebsd-ports@freebsd.org Subject: Re: USE_GMAKE=yes only effects build, not install? Message-ID: <20001223200329.A15046@argon.firepipe.net> Reply-To: Will Andrews References: <20001223010333.S328@argon.firepipe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from pfeifer@dbai.tuwien.ac.at on Sat, Dec 23, 2000 at 11:34:27AM +0100 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: will@argon.firepipe.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Dec 23, 2000 at 11:34:27AM +0100, Gerald Pfeifer wrote: > to ports/emulators/wine/Makefile and issued `make x`. The output was > "--make--", not "--gmake--"! > > This is why I had to revert to using ${GMAKE} in the Makefile of the > wine port. Sorry, I misunderstood your question.. I thought you were talking about having to do this on all the Makefiles in wine. But yes, that is how you do it with ports. So nothing is broken. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 18:10: 8 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 18:10:01 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A1F1137B402 for ; Sat, 23 Dec 2000 18:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBO2A1p33250; Sat, 23 Dec 2000 18:10:01 -0800 (PST) (envelope-from gnats) Resent-Date: Sat, 23 Dec 2000 18:10:01 -0800 (PST) Resent-Message-Id: <200012240210.eBO2A1p33250@freefall.freebsd.org> Resent-From: gnats-admin@FreeBSD.org (GNATS Management) Resent-To: freebsd-ports@FreeBSD.org Resent-Reply-To: gnats-admin@FreeBSD.org, imp@bsdimp.com Received: from rover.village.org (rover.village.org [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 223B137B400 for ; Sat, 23 Dec 2000 18:04:50 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.0/8.11.0) with ESMTP id eBO24ns47742 for ; Sat, 23 Dec 2000 19:04:49 -0700 (MST) (envelope-from imp@harmony.village.org) Received: (from imp@localhost) by harmony.village.org (8.9.3/8.8.3) id TAA41096; Sat, 23 Dec 2000 19:04:48 -0700 (MST) Message-Id: <200012240204.TAA41096@harmony.village.org> Date: Sat, 23 Dec 2000 19:04:48 -0700 (MST) From: Warner Losh Sender: imp@harmony.village.org Reply-To: imp@bsdimp.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/23812: gogo won't build. Resent-Sender: gnats@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 23812 >Category: ports >Synopsis: gogo won't build. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Dec 23 18:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Warner Losh >Release: FreeBSD 4.1-STABLE i386 >Organization: FreeBSD >Environment: Any >Description: gogo 2.36 is no longer available. gogo 2.39a seems to be. >How-To-Repeat: cd /usr/ports/audio/gogo make >Fix: Apply the following patch. Our nasm doesn't grok the 3dnow extensions so turn off using them. Index: Makefile =================================================================== RCS file: /home/imp/FreeBSD/CVS/ports/audio/gogo/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- Makefile 2000/11/01 21:56:06 1.23 +++ Makefile 2000/12/24 01:43:21 @@ -6,10 +6,10 @@ # PORTNAME= gogo -PORTVERSION= 2.36 +PORTVERSION= 2.39a CATEGORIES= audio MASTER_SITES= http://homepage1.nifty.com/herumi/soft/gogo2/src/ -DISTNAME= gogo236 +DISTNAME= gogo239a EXTRACT_SUFX= .tgz MAINTAINER= nakai@FreeBSD.org Index: distinfo =================================================================== RCS file: /home/imp/FreeBSD/CVS/ports/audio/gogo/distinfo,v retrieving revision 1.13 diff -u -r1.13 distinfo --- distinfo 2000/11/01 21:56:06 1.13 +++ distinfo 2000/12/24 01:44:14 @@ -1 +1 @@ -MD5 (gogo236.tgz) = 5f825fb64d059e39699182f4edaa72a0 +MD5 (gogo239a.tgz) = 3ada555c708767ed950708b9edd3a89b Index: files/patch-ac =================================================================== RCS file: /home/imp/FreeBSD/CVS/ports/audio/gogo/files/patch-ac,v retrieving revision 1.2 diff -u -r1.2 patch-ac --- files/patch-ac 2000/07/05 07:52:12 1.2 +++ files/patch-ac 2000/12/24 02:01:09 @@ -1,5 +1,14 @@ ---- Makefile.orig Fri Apr 28 13:11:32 2000 -+++ Makefile Mon Jul 3 01:49:47 2000 +--- Makefile.orig Fri Dec 15 01:35:55 2000 ++++ Makefile Sat Dec 23 18:56:22 2000 +@@ -5,7 +5,7 @@ + + #use Enhanced 3D Now! + #you need modified NASM to use this option +-USE_E3DN=yes ++#USE_E3DN=yes + + #use VBR + USE_VBR =yes @@ -30,15 +30,15 @@ endif >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 20:17:15 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 20:17:13 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A53437B400; Sat, 23 Dec 2000 20:17:13 -0800 (PST) Received: (from nakai@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBO4HD047132; Sat, 23 Dec 2000 20:17:13 -0800 (PST) (envelope-from nakai) Date: Sat, 23 Dec 2000 20:17:13 -0800 (PST) From: Message-Id: <200012240417.eBO4HD047132@freefall.freebsd.org> To: nakai@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/22616: new port of GQmpeg (devel version) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port of GQmpeg (devel version) State-Changed-From-To: open->closed State-Changed-By: nakai State-Changed-When: Sat Dec 23 20:16:49 PST 2000 State-Changed-Why: Merged into the gqmpeg tree, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=22616 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 20:57:34 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 20:57:33 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 791AA37B400; Sat, 23 Dec 2000 20:57:33 -0800 (PST) Received: (from nakai@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBO4vXh50307; Sat, 23 Dec 2000 20:57:33 -0800 (PST) (envelope-from nakai) Date: Sat, 23 Dec 2000 20:57:33 -0800 (PST) From: Message-Id: <200012240457.eBO4vXh50307@freefall.freebsd.org> To: imp@bsdimp.com, nakai@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23812: gogo won't build. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: gogo won't build. State-Changed-From-To: open->closed State-Changed-By: nakai State-Changed-When: Sat Dec 23 20:57:20 PST 2000 State-Changed-Why: Update commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23812 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 22: 3:32 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 22:03:31 2000 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 798DF37B400; Sat, 23 Dec 2000 22:03:31 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBO63VW57545; Sat, 23 Dec 2000 22:03:31 -0800 (PST) (envelope-from kevlo) Date: Sat, 23 Dec 2000 22:03:31 -0800 (PST) From: Message-Id: <200012240603.eBO63VW57545@freefall.freebsd.org> To: jeremy@external.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23718: Update Port: devel/p5-Config-Inifiles to 2.13 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update Port: devel/p5-Config-Inifiles to 2.13 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sat Dec 23 22:03:18 PST 2000 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=23718 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 23: 7:55 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 23:07:54 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from daedalus.cs.brandeis.edu (daedalus.cs.brandeis.edu [129.64.3.179]) by hub.freebsd.org (Postfix) with ESMTP id 370B837B400 for ; Sat, 23 Dec 2000 23:07:50 -0800 (PST) Received: from localhost (meshko@localhost) by daedalus.cs.brandeis.edu (8.9.3/8.9.3) with ESMTP id CAA04097 for ; Sun, 24 Dec 2000 02:07:44 -0500 Date: Sun, 24 Dec 2000 02:07:43 -0500 (EST) From: Mikhail Kruk To: Subject: qt2 vs qt, moc2 vs moc Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: meshko@daedalus.cs.brandeis.edu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, it seems that many programs expect to have moc from qt2 called just moc, however freebsd port has moc from qt2 called moc2 which makes installing programs slightly more painfull that it could be. Is there any reason for that? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 23:16:42 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 23:16:41 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (poynting.physics.purdue.edu [128.210.146.58]) by hub.freebsd.org (Postfix) with ESMTP id D369B37B400 for ; Sat, 23 Dec 2000 23:16:40 -0800 (PST) Received: from argon.firepipe.net (pm004-026.dialup.bignet.net [64.79.80.170]) by puck.firepipe.net (Postfix) with ESMTP id F37AF1A55; Sun, 24 Dec 2000 02:16:39 -0500 (EST) Received: by argon.firepipe.net (Postfix, from userid 1000) id 255731911; Sun, 24 Dec 2000 02:12:13 -0500 (EST) Date: Sun, 24 Dec 2000 02:12:12 -0500 From: Will Andrews To: Mikhail Kruk Cc: freebsd-ports@FreeBSD.ORG Subject: Re: qt2 vs qt, moc2 vs moc Message-ID: <20001224021212.A305@argon.firepipe.net> Reply-To: Will Andrews References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from meshko@cs.brandeis.edu on Sun, Dec 24, 2000 at 02:07:43AM -0500 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: will@argon.firepipe.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Dec 24, 2000 at 02:07:43AM -0500, Mikhail Kruk wrote: > it seems that many programs expect to have moc from qt2 called just moc, > however freebsd port has moc from qt2 called moc2 which makes installing > programs slightly more painfull that it could be. Is there any reason for > that? Yes. QT thinks everything it installs should go under a prefix, rather than splitting up files in their proper directories as hier(7) dictates, and so we have to rename the moc binary to something else to prevent conflicts between QT 1.x and QT 2.x. Unfortunately that is the prevalent design used by many software projects. Their installation just isn't flexible enough. GTK had the right idea with GTK_CONFIG though.. at least only one hack would have to be used. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Dec 23 23:44: 3 2000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 23 23:44:01 2000 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 46B1637B400 for ; Sat, 23 Dec 2000 23:43:58 -0800 (PST) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id JAA09946; Sun, 24 Dec 2000 09:43:48 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.11.1/8.11.1) id eBO7hjr00854; Sat, 23 Dec 2000 23:43:45 -0800 (PST) (envelope-from reg) Date: Sat, 23 Dec 2000 23:43:45 -0800 From: Jeremy Lea To: Will Andrews Cc: Mikhail Kruk , freebsd-ports@FreeBSD.ORG Subject: Re: qt2 vs qt, moc2 vs moc Message-ID: <20001223234345.A388@shale.csir.co.za> Mail-Followup-To: Jeremy Lea , Will Andrews , Mikhail Kruk , freebsd-ports@FreeBSD.ORG References: <20001224021212.A305@argon.firepipe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20001224021212.A305@argon.firepipe.net>; from will@physics.purdue.edu on Sun, Dec 24, 2000 at 02:12:12AM -0500 Sender: reg@shale.csir.co.za Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Sun, Dec 24, 2000 at 02:12:12AM -0500, Will Andrews wrote: > just isn't flexible enough. GTK had the right idea with GTK_CONFIG > though.. at least only one hack would have to be used. Or none if people follow the rules, and always use ${GTK_CONFIG} from the environment... -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message